Fossil SCM
Link the SSL and CRYPTO libraries in a different order for FreeBSD. Ticket [c68457bff8b1].
Commit
42a964c585fe40cca2ce12584cc16b9de613640a
Parent
4276853ef88cdf5…
1 file changed
+1
-1
M
Makefile
+1
-1
| --- Makefile | ||
| +++ Makefile | ||
| @@ -46,11 +46,11 @@ | ||
| 46 | 46 | # Solaris 10 needs: |
| 47 | 47 | # LIB += -lsocket -lnsl |
| 48 | 48 | # My assumption is that the Sol10 flags will work for Sol8/9 and possibly 11. |
| 49 | 49 | # |
| 50 | 50 | # If using FOSSIL_ENABLE_SSL, also enable the following: |
| 51 | -LIB += -lcrypto -lssl | |
| 51 | +LIB += -lssl -lcrypto | |
| 52 | 52 | |
| 53 | 53 | #### Tcl shell for use in running the fossil testsuite. |
| 54 | 54 | # |
| 55 | 55 | TCLSH = tclsh |
| 56 | 56 | |
| 57 | 57 |
| --- Makefile | |
| +++ Makefile | |
| @@ -46,11 +46,11 @@ | |
| 46 | # Solaris 10 needs: |
| 47 | # LIB += -lsocket -lnsl |
| 48 | # My assumption is that the Sol10 flags will work for Sol8/9 and possibly 11. |
| 49 | # |
| 50 | # If using FOSSIL_ENABLE_SSL, also enable the following: |
| 51 | LIB += -lcrypto -lssl |
| 52 | |
| 53 | #### Tcl shell for use in running the fossil testsuite. |
| 54 | # |
| 55 | TCLSH = tclsh |
| 56 | |
| 57 |
| --- Makefile | |
| +++ Makefile | |
| @@ -46,11 +46,11 @@ | |
| 46 | # Solaris 10 needs: |
| 47 | # LIB += -lsocket -lnsl |
| 48 | # My assumption is that the Sol10 flags will work for Sol8/9 and possibly 11. |
| 49 | # |
| 50 | # If using FOSSIL_ENABLE_SSL, also enable the following: |
| 51 | LIB += -lssl -lcrypto |
| 52 | |
| 53 | #### Tcl shell for use in running the fossil testsuite. |
| 54 | # |
| 55 | TCLSH = tclsh |
| 56 | |
| 57 |