Diff
Not logged in

Differences From:

File Makefile part of check-in [1bceafc4d0] - LIB is now += LDFLAGS so that i can link on OpenSolaris (need -lsocket) by stephan on 2008-04-25 21:49:25. [view]

To:

File Makefile part of check-in [7dddab2fbe] - added comments about necessary link flags for Solaris 10 + OpenSolaris by stephan on 2008-09-18 11:21:29. Also file Makefile part of check-in [651c75c5b7] - merge trunk into creole by robert on 2009-10-05 10:08:05. [view]

@@ -34,11 +34,13 @@
 #    so that we can build a static executable that will run in a
 #    chroot jail.
 #
 LIB = -lz $(LDFLAGS)
-# If you're on OpenSolaris, and probably other Solaris versions,
-# you'll need:
-# LIB += -lsocket
+# If you're on OpenSolaris:
+# LIB += lsocket
+# Solaris 10 needs:
+# LIB += -lsocket -lnsl
+# My assumption is that the Sol10 flags will work for Sol8/9 and possibly 11.
 
 
 #### Tcl shell for use in running the fossil testsuite.
 #