Fossil SCM
added comments about necessary link flags for Solaris 10 + OpenSolaris
Commit
7dddab2fbe365927fbb6af30cc6edeb3a2204420
Parent
aeeba751c4d8b70…
1 file changed
+5
-3
M
Makefile
+5
-3
| --- Makefile | ||
| +++ Makefile | ||
| @@ -33,13 +33,15 @@ | ||
| 33 | 33 | # other dependencies. We sometimes add the -static option here |
| 34 | 34 | # so that we can build a static executable that will run in a |
| 35 | 35 | # chroot jail. |
| 36 | 36 | # |
| 37 | 37 | LIB = -lz $(LDFLAGS) |
| 38 | -# If you're on OpenSolaris, and probably other Solaris versions, | |
| 39 | -# you'll need: | |
| 40 | -# LIB += -lsocket | |
| 38 | +# If you're on OpenSolaris: | |
| 39 | +# LIB += lsocket | |
| 40 | +# Solaris 10 needs: | |
| 41 | +# LIB += -lsocket -lnsl | |
| 42 | +# My assumption is that the Sol10 flags will work for Sol8/9 and possibly 11. | |
| 41 | 43 | |
| 42 | 44 | |
| 43 | 45 | #### Tcl shell for use in running the fossil testsuite. |
| 44 | 46 | # |
| 45 | 47 | TCLSH = tclsh |
| 46 | 48 |
| --- Makefile | |
| +++ Makefile | |
| @@ -33,13 +33,15 @@ | |
| 33 | # other dependencies. We sometimes add the -static option here |
| 34 | # so that we can build a static executable that will run in a |
| 35 | # chroot jail. |
| 36 | # |
| 37 | LIB = -lz $(LDFLAGS) |
| 38 | # If you're on OpenSolaris, and probably other Solaris versions, |
| 39 | # you'll need: |
| 40 | # LIB += -lsocket |
| 41 | |
| 42 | |
| 43 | #### Tcl shell for use in running the fossil testsuite. |
| 44 | # |
| 45 | TCLSH = tclsh |
| 46 |
| --- Makefile | |
| +++ Makefile | |
| @@ -33,13 +33,15 @@ | |
| 33 | # other dependencies. We sometimes add the -static option here |
| 34 | # so that we can build a static executable that will run in a |
| 35 | # chroot jail. |
| 36 | # |
| 37 | LIB = -lz $(LDFLAGS) |
| 38 | # If you're on OpenSolaris: |
| 39 | # LIB += lsocket |
| 40 | # Solaris 10 needs: |
| 41 | # LIB += -lsocket -lnsl |
| 42 | # My assumption is that the Sol10 flags will work for Sol8/9 and possibly 11. |
| 43 | |
| 44 | |
| 45 | #### Tcl shell for use in running the fossil testsuite. |
| 46 | # |
| 47 | TCLSH = tclsh |
| 48 |