1856541 Members
4860 Online
104113 Solutions
New Discussion

gAIM 0.78

 
SOLVED
Go to solution
Edgar Arroyo
Regular Advisor

gAIM 0.78

Has anybody compiled gAIM 0.78 yet? I can't seem to be able to compile, anybody come up with a .DEPOT with all the required libraries and programs to compile regular linux stuff? Whenever I do ./configure and something is missing, I go to the HP-UX website that has the libraries and programs needed, install them but I still get errors. A .DEPOT with every library and program needed would be a nice thinig to have around.
8 REPLIES 8
harry d brown jr
Honored Contributor
Solution

Re: gAIM 0.78

Install these in this order (use the DEPOTS)

http://hpux.cs.utah.edu/hppd/hpux/Gnu/make-3.80/
http://hpux.cs.utah.edu/hppd/hpux/Gnu/bison-1.875/
http://hpux.cs.utah.edu/hppd/hpux/Gnu/flex-2.5.4a/
http://hpux.cs.utah.edu/hppd/hpux/Gnu/texinfo-4.7/
http://hpux.cs.utah.edu/hppd/hpux/Gnu/gettext-0.14.1/
http://hpux.cs.utah.edu/hppd/hpux/Development/Libraries/libiconv-1.9.2/
http://hpux.cs.utah.edu/hppd/hpux/Languages/m4-1.4/
http://hpux.cs.utah.edu/hppd/hpux/Gnu/gawk-3.1.3/
http://hpux.cs.utah.edu/hppd/hpux/Gnu/gettext-0.14.1/
http://hpux.cs.utah.edu/hppd/hpux/Development/Tools/db-4.2.52/
http://hpux.cs.utah.edu/hppd/hpux/Languages/perl-5.8.3/
http://hpux.cs.utah.edu/hppd/hpux/Gnu/autoconf-2.59/
http://hpux.cs.utah.edu/hppd/hpux/Gnu/gcc-3.3.2/

http://hpux.cs.utah.edu/hppd/hpux/Gtk/pkgconfig-0.15.0/
http://hpux.cs.utah.edu/hppd/hpux/Gtk/Development/glib2-2.2.2/
http://hpux.cs.utah.edu/hppd/hpux/Gtk/atk-1.2.4/
http://hpux.cs.utah.edu/hppd/hpux/Development/Tools/expat-1.95.7/
http://hpux.cs.utah.edu/hppd/hpux/Misc/zlib-1.2.1/
http://hpux.cs.utah.edu/hppd/hpux/Development/Libraries/freetype-2.1.4/
http://hpux.cs.utah.edu/hppd/hpux/Gtk/Development/fontconfig-2.2.0/
http://hpux.cs.utah.edu/hppd/hpux/Gtk/Development/glib-1.2.10/
http://hpux.cs.utah.edu/hppd/hpux/Gtk/Development/glib2-2.2.2/
http://hpux.cs.utah.edu/hppd/hpux/X11/Graphics/jpeg-6b/
http://hpux.cs.utah.edu/hppd/hpux/X11/Graphics/libpng-1.2.5/
http://hpux.cs.utah.edu/hppd/hpux/Gtk/pango-1.2.3/
http://hpux.cs.utah.edu/hppd/hpux/X11/Graphics/tiff-3.5.7/
http://hpux.cs.utah.edu/hppd/hpux/X11/Graphics/xpm-3.4k/
http://hpux.cs.utah.edu/hppd/hpux/Gtk/Development/gtk+2-2.2.2/


added the following lines to /usr/include/sys/socket.h at line 484
# ifndef _BSIZE_T
# define _BSIZE_T
# if defined(_APP32_64BIT_OFF_T) || defined(_KERNEL)
typedef int64_t sbsize_t; /* signed length in bytes */
typedef uint64_t bsize_t; /* unsigned length in bytes */
# else
typedef long sbsize_t;
typedef unsigned long bsize_t;
# endif
# endif /* _BSIZE_T */

should go just before:

extern sbsize_t sendfile __((int, int, off_t, bsize_t,
const struct iovec *, int));
extern sbsize_t sendpath __((int, char *, off_t, bsize_t,
const struct iovec *, int));
#if defined(_LARGEFILE64_SOURCE)

commented out line 32 of ./src/protocols/gg/libgg.h that references /* #include */ as they are defined in sys/types.h


I ran configure like this:
CPPFLAGS="-I/usr/local/include -D_INCLUDE_XOPEN_SOURCE_EXTENDED" LDFLAGS=-s ./configure

and then ran gmake and then gmake install

and it works!

live free or die
harry

Live Free or Die
Edgar Arroyo
Regular Advisor

Re: gAIM 0.78

Hmmm, gmake? I got it to compile but I was using "make" instead of "gmake" and when I ran the compiled file it would just sit there... Is gmake what makes it work under GNOME?

Thanks.
Edgar Arroyo
Regular Advisor

Re: gAIM 0.78

Oh, and I downloaded the HP-UX Developer's Kit from HP's website, which included the headers and stuff needed... This was before it compiled... I will try the gmake today to see if that's why it doesn't run on my Gnome...
Edgar Arroyo
Regular Advisor

Re: gAIM 0.78

I tried the "gmake" and "gmake install" and I even compiled it with the CPPFLAGS you specified and I get same results...

It just sits there....
harry d brown jr
Honored Contributor

Re: gAIM 0.78

do a

gmake distclean

then rerun configure

Did you load the depots and install them in the order I showed?

You are using 11.00 or 11.11, correct?

live free or die
harry
Live Free or Die
Edgar Arroyo
Regular Advisor

Re: gAIM 0.78

Yes, HP-UX 11.11

Do I have to install several of those twice?
harry d brown jr
Honored Contributor

Re: gAIM 0.78

No. No need to install twice, but make sure that you have the right versions as listed.

I'm not sure about why it doesn't work with gnome, as I use Exceed on my windoze machine to display X.

live free or die
harry
Live Free or Die
Edgar Arroyo
Regular Advisor

Re: gAIM 0.78

I will try to run it under VNC and using CDE to see if it loads up on it, but I know it's not working under Gnome.