build fix for sparc-sun-solaris2.8; i think the dependencies should be
authorNathan Bryant <loanshark@uncensored.citadel.org>
Thu, 6 Sep 2001 03:32:41 +0000 (03:32 +0000)
committerNathan Bryant <loanshark@uncensored.citadel.org>
Thu, 6 Sep 2001 03:32:41 +0000 (03:32 +0000)
set up properly for all platforms now.

citadel/ChangeLog
citadel/Makefile.in

index 9f2ee19f493eceda590027ea05be85a26e1a8f45..8cf81c12e28535f136d76f512593e4cc88d5b9d0 100644 (file)
@@ -1,4 +1,8 @@
  $Log$
+ Revision 580.34  2001/09/06 03:32:41  nbryant
+ build fix for sparc-sun-solaris2.8; i think the dependencies should be
+ set up properly for all platforms now.
+
  Revision 580.33  2001/09/06 02:55:27  nbryant
  build fix for Linux
 
@@ -2715,3 +2719,4 @@ Sat Jul 11 00:20:48 EDT 1998 Nathan Bryant <bryant@cs.usm.maine.edu>
 
 Fri Jul 10 1998 Art Cancro <ajc@uncensored.citadel.org>
        * Initial CVS import 
+
index 03a7f7469785027c8cccc938c8e457ce6ebffc76..d04dba2a2be7b6c0f369e567aaec8ab1b872039d 100644 (file)
@@ -145,12 +145,12 @@ LIBSERV_OBJS = user_ops.lo citserver.lo sysdep.lo dynloader.lo tools.lo $(DATABA
        parsedate.lo genstamp.lo clientsocket.lo $(AUTH) $(LIBOBJS:.o=.lo)
 
 libcitserver.la: $(LIBSERV_OBJS)
-       $(LIBTOOL) $(CC) -rpath $(prefix) -no-undefined -avoid-version \
-       -o libcitserver.la $(LIBSERV_OBJS) $(GDBM) $(LIBS)
+       $(LIBTOOL) $(CC) $(LDFLAGS) -rpath $(prefix) -no-undefined -avoid-version \
+       -o libcitserver.la $(LIBSERV_OBJS) $(GDBM) $(LIBS) $(PTHREAD_LIBS) $(NETLIBS) $(RESOLV)
 
 citserver: $(SERV_OBJS) $(LIBTOOL) libcitserver.la
-       $(LIBTOOL) --mode=link $(CC) $(SERV_OBJS) $(LDFLAGS) $(PTHREAD_LIBS) \
-       $(LIBS) $(NETLIBS) $(RESOLV) libcitserver.la -o citserver
+       $(LIBTOOL) --mode=link $(CC) $(SERV_OBJS) $(LDFLAGS) libcitserver.la -o \
+       citserver $(PTHREAD_LIBS)
 
 .c.ro:
        $(CC) $(CFLAGS) $(CPPFLAGS) $(DEFS) $(PTHREAD_DEFS) -c $< -o $@