On April 7, 2007 6:29 PM I wrote: > > I consulted: > > http://sourceware.org/ml/automake/2004-01/msg00162.html > > which seems to include the necessary Autoconf magic. > > Indeed adding -lsocket to > > gcc session.o -o ../../target/i386-pc-solaris2.10/lib/session > -L/export/home0/wspage/axiom-test/src/lib -lspad -lsocket -o > ../../target/i386-pc-solaris2.10/lib/session > > seemed to do the trick. >
Build completes normally after the following patch (tested by applying the equivalent patch to my out-of-source build directory axiom-test/src/sman/Makefile): -bash-3.00$ gdiff -au build-improvements/src/sman/Makefile.in.orig build-improvements/src/sman/Makefile.in --- build-improvements/src/sman/Makefile.in.orig 2007-04-07 18:35:02.262911000 -0400 +++ build-improvements/src/sman/Makefile.in 2007-04-07 18:35:38.674866000 -0400 @@ -23,13 +23,13 @@ spadclient_sources = spadclient.c spadclient_SOURCES = $(addsuffix .pamphlet, $(spadclient_sources)) spadclient_objects = $(spadclient_sources:.c=.$(OBJEXT)) -spadclient_LDADD = -L$(build_libdir) -lspad +spadclient_LDADD = -L$(build_libdir) -lspad -lsocket spadclient_DEPENDENCIES = sman_sources = sman.c sman_SOURCES = $(addsuffix .pamphlet, $(sman_sources)) sman_objects = $(sman_sources:.c=.$(OBJEXT)) -sman_LDADD = -L$(build_libdir) -lspad +sman_LDADD = -L$(build_libdir) -lspad -lsocket sman_DEPENDENCIES = -------- Does this make sense to you? If so, I will retry the build from zero with this patch. Regards, Bill Page. _______________________________________________ Axiom-developer mailing list [email protected] http://lists.nongnu.org/mailman/listinfo/axiom-developer
