Fossil SCM
Remove GNU-isms from the Makefile. Ticket [1927cbd979].
Commit
fcd7ecb7f1d7d4e86e468725009cfdc3f7531248
Parent
f312587a650ad4d…
1 file changed
+1
-7
M
Makefile
+1
-7
| --- Makefile | ||
| +++ Makefile | ||
| @@ -29,15 +29,11 @@ | ||
| 29 | 29 | # for building intermediate code-generator tools. |
| 30 | 30 | # |
| 31 | 31 | #TCC = gcc -O6 |
| 32 | 32 | #TCC = gcc -g -O0 -Wall -fprofile-arcs -ftest-coverage |
| 33 | 33 | TCC = gcc -g -Os -Wall |
| 34 | - | |
| 35 | -# With HTTPS support | |
| 36 | -ifdef FOSSIL_ENABLE_SSL | |
| 37 | -TCC += -DFOSSIL_ENABLE_SSL=1 | |
| 38 | -endif | |
| 34 | +TCC = gcc -g -Os -Wall -DFOSSIL_ENABLE_SSL | |
| 39 | 35 | |
| 40 | 36 | #### Extra arguments for linking the finished binary. Fossil needs |
| 41 | 37 | # to link against the Z-Lib compression library. There are no |
| 42 | 38 | # other dependencies. We sometimes add the -static option here |
| 43 | 39 | # so that we can build a static executable that will run in a |
| @@ -49,13 +45,11 @@ | ||
| 49 | 45 | # Solaris 10 needs: |
| 50 | 46 | # LIB += -lsocket -lnsl |
| 51 | 47 | # My assumption is that the Sol10 flags will work for Sol8/9 and possibly 11. |
| 52 | 48 | # |
| 53 | 49 | # OpenSSL: |
| 54 | -ifdef FOSSIL_ENABLE_SSL | |
| 55 | 50 | LIB += -lcrypto -lssl |
| 56 | -endif | |
| 57 | 51 | |
| 58 | 52 | #### Tcl shell for use in running the fossil testsuite. |
| 59 | 53 | # |
| 60 | 54 | TCLSH = tclsh |
| 61 | 55 | |
| 62 | 56 |
| --- Makefile | |
| +++ Makefile | |
| @@ -29,15 +29,11 @@ | |
| 29 | # for building intermediate code-generator tools. |
| 30 | # |
| 31 | #TCC = gcc -O6 |
| 32 | #TCC = gcc -g -O0 -Wall -fprofile-arcs -ftest-coverage |
| 33 | TCC = gcc -g -Os -Wall |
| 34 | |
| 35 | # With HTTPS support |
| 36 | ifdef FOSSIL_ENABLE_SSL |
| 37 | TCC += -DFOSSIL_ENABLE_SSL=1 |
| 38 | endif |
| 39 | |
| 40 | #### Extra arguments for linking the finished binary. Fossil needs |
| 41 | # to link against the Z-Lib compression library. There are no |
| 42 | # other dependencies. We sometimes add the -static option here |
| 43 | # so that we can build a static executable that will run in a |
| @@ -49,13 +45,11 @@ | |
| 49 | # Solaris 10 needs: |
| 50 | # LIB += -lsocket -lnsl |
| 51 | # My assumption is that the Sol10 flags will work for Sol8/9 and possibly 11. |
| 52 | # |
| 53 | # OpenSSL: |
| 54 | ifdef FOSSIL_ENABLE_SSL |
| 55 | LIB += -lcrypto -lssl |
| 56 | endif |
| 57 | |
| 58 | #### Tcl shell for use in running the fossil testsuite. |
| 59 | # |
| 60 | TCLSH = tclsh |
| 61 | |
| 62 |
| --- Makefile | |
| +++ Makefile | |
| @@ -29,15 +29,11 @@ | |
| 29 | # for building intermediate code-generator tools. |
| 30 | # |
| 31 | #TCC = gcc -O6 |
| 32 | #TCC = gcc -g -O0 -Wall -fprofile-arcs -ftest-coverage |
| 33 | TCC = gcc -g -Os -Wall |
| 34 | TCC = gcc -g -Os -Wall -DFOSSIL_ENABLE_SSL |
| 35 | |
| 36 | #### Extra arguments for linking the finished binary. Fossil needs |
| 37 | # to link against the Z-Lib compression library. There are no |
| 38 | # other dependencies. We sometimes add the -static option here |
| 39 | # so that we can build a static executable that will run in a |
| @@ -49,13 +45,11 @@ | |
| 45 | # Solaris 10 needs: |
| 46 | # LIB += -lsocket -lnsl |
| 47 | # My assumption is that the Sol10 flags will work for Sol8/9 and possibly 11. |
| 48 | # |
| 49 | # OpenSSL: |
| 50 | LIB += -lcrypto -lssl |
| 51 | |
| 52 | #### Tcl shell for use in running the fossil testsuite. |
| 53 | # |
| 54 | TCLSH = tclsh |
| 55 | |
| 56 |