Fossil SCM
Commented out the -lm option added to Makefile.classic recently: libm doesn't exist on all platforms.
Commit
729360ecc6d9ce1a4a963357f1e7ec7a90beeb04ddfc251cef9cd5c8824d10ce
Parent
f08a09ca0dcd7ce…
1 file changed
+3
-2
+3
-2
| --- Makefile.classic | ||
| +++ Makefile.classic | ||
| @@ -75,12 +75,13 @@ | ||
| 75 | 75 | |
| 76 | 76 | # If using HTTPS: |
| 77 | 77 | LIB += -lcrypto -lssl |
| 78 | 78 | |
| 79 | 79 | # Many platforms put cos() needed by src/piechart.c in libm, rather than |
| 80 | -# in libc. | |
| 81 | -LIB += -lm | |
| 80 | +# in libc. We cannot enable this by default because libm doesn't exist | |
| 81 | +# everywhere. | |
| 82 | +#LIB += -lm | |
| 82 | 83 | |
| 83 | 84 | #### Tcl shell for use in running the fossil testsuite. If you do not |
| 84 | 85 | # care about testing the end result, this can be blank. |
| 85 | 86 | # |
| 86 | 87 | TCLSH = tclsh |
| 87 | 88 |
| --- Makefile.classic | |
| +++ Makefile.classic | |
| @@ -75,12 +75,13 @@ | |
| 75 | |
| 76 | # If using HTTPS: |
| 77 | LIB += -lcrypto -lssl |
| 78 | |
| 79 | # Many platforms put cos() needed by src/piechart.c in libm, rather than |
| 80 | # in libc. |
| 81 | LIB += -lm |
| 82 | |
| 83 | #### Tcl shell for use in running the fossil testsuite. If you do not |
| 84 | # care about testing the end result, this can be blank. |
| 85 | # |
| 86 | TCLSH = tclsh |
| 87 |
| --- Makefile.classic | |
| +++ Makefile.classic | |
| @@ -75,12 +75,13 @@ | |
| 75 | |
| 76 | # If using HTTPS: |
| 77 | LIB += -lcrypto -lssl |
| 78 | |
| 79 | # Many platforms put cos() needed by src/piechart.c in libm, rather than |
| 80 | # in libc. We cannot enable this by default because libm doesn't exist |
| 81 | # everywhere. |
| 82 | #LIB += -lm |
| 83 | |
| 84 | #### Tcl shell for use in running the fossil testsuite. If you do not |
| 85 | # care about testing the end result, this can be blank. |
| 86 | # |
| 87 | TCLSH = tclsh |
| 88 |