Re: Solaris and socket library

2004-01-16 Thread jling
Thank you for sharing your configuration. I will definitely look more closely at these macros. John Ling - Original Message - From: Russ Allbery <[EMAIL PROTECTED]> Date: Friday, January 16, 2004 6:55 pm Subject: Re: Solaris and socket library > John Ling <[EMAIL PROTECTED]> writes: >

Re: Solaris and socket library

2004-01-16 Thread jling
Thank you Bob for that very useful bit of knowledge. John Ling - Original Message - From: Bob Friesenhahn <[EMAIL PROTECTED]> Date: Friday, January 16, 2004 5:14 pm Subject: Re: Solaris and socket library > This is an Autoconf issue, not Automake. Adding the following > line to > your

Re: Solaris and socket library

2004-01-16 Thread Russ Allbery
John Ling <[EMAIL PROTECTED]> writes: > Now the solution was to add a -lsocket to the linking options. But, > should this not be something that autoconf or automake suite of tools > detect and automatically handle for me? Do I need to manually add this > only when I run on Solaris? I use this:

Re: utility programs used during build

2004-01-16 Thread Ralf Corsepius
On Fri, 2004-01-16 at 21:00, Tom Tromey wrote: > > "Ralf" == Ralf Corsepius <[EMAIL PROTECTED]> writes: > > >> > If you want a clean way, you'd have to split buildtools and > >> > host-packages into separate (sub) packages and write a costomized > >> > toplevel configure-script to parse and se

Re: Solaris and socket library

2004-01-16 Thread Bob Friesenhahn
This is an Autoconf issue, not Automake. Adding the following line to your configure.ac file will likely resolve the problem: AC_SEARCH_LIBS([connect],[socket],[],[],[]) It should add -lsocket to LIBS if necessary. Bob On Fri, 16 Jan 2004, John Ling wrote: > I am running on Solaris and I wa

Solaris and socket library

2004-01-16 Thread John Ling
I am running on Solaris and I was trying to compile an application that used the libmysqlclient.a library. I encountered an error: Undefined first referenced symbol in file socket /usr/local/mysql4/lib/libmysqlclient

Re: utility programs used during build

2004-01-16 Thread Tom Tromey
> "Ralf" == Ralf Corsepius <[EMAIL PROTECTED]> writes: >> > If you want a clean way, you'd have to split buildtools and >> > host-packages into separate (sub) packages and write a costomized >> > toplevel configure-script to parse and set the configure options for >> > build- and host- compile

Safe & Natural for the New Year

2004-01-16 Thread Ollie Cooper

Re: fortran FC patch

2004-01-16 Thread Norman Gray
Greetings, In , Michael Nolta offered a simple patch for `fc' support, and Alexandre's reply suggested that there was unlikely to be a problem including this. This appears not to be in the current CVS sources (on the head, after "cvs -

EXTRA_DIST and external or outside directories

2004-01-16 Thread jling
Is there a way to include a directory which is external or outside of the $(top_srcdir) and which is not involved in the build process? I tried putting the following in my Makefile.am: EXTRA_DIST = $(top_srcdir)/../../perl $(top_srcdir)/../../java But, when I do a 'make dist' it does not attemp