Fossil

Check-in [729360ec]
Login

Many hyperlinks are disabled.
Use anonymous login to enable hyperlinks.

Overview
Comment:Commented out the -lm option added to Makefile.classic recently: libm doesn't exist on all platforms.
Downloads: Tarball | ZIP archive
Timelines: family | ancestors | descendants | both | trunk
Files: files | file ages | folders
SHA3-256: 729360ecc6d9ce1a4a963357f1e7ec7a90beeb04ddfc251cef9cd5c8824d10ce
User & Date: wyoung 2018-10-04 06:20:39.863
Context
2018-10-04
07:13
Fixed an off-by-one error affecting "fossil grep" when the final argument was left off. ... (check-in: f6502e8c user: wyoung tags: trunk)
06:20
Commented out the -lm option added to Makefile.classic recently: libm doesn't exist on all platforms. ... (check-in: 729360ec user: wyoung tags: trunk)
2018-10-03
22:23
Checkin [15e1dcd058b5b3e1] had no useful effect: we need to set this flag at the "make" level, not as a C preprocessor flag. Not backing it out because the change is harmless as well as useless. ... (check-in: f08a09ca user: wyoung tags: trunk)
Changes
Unified Diff Ignore Whitespace Patch
Changes to Makefile.classic.
73
74
75
76
77
78
79
80

81
82
83
84
85
86
87
88
# If using zlib:
LIB += $(ZLIB_LIB.$(FOSSIL_ENABLE_MINIZ)) $(LDFLAGS)

# If using HTTPS:
LIB += -lcrypto -lssl

# Many platforms put cos() needed by src/piechart.c in libm, rather than
# in libc.

LIB += -lm

#### Tcl shell for use in running the fossil testsuite.  If you do not
#    care about testing the end result, this can be blank.
#
TCLSH = tclsh

# You should not need to change anything below this line







|
>
|







73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
# If using zlib:
LIB += $(ZLIB_LIB.$(FOSSIL_ENABLE_MINIZ)) $(LDFLAGS)

# If using HTTPS:
LIB += -lcrypto -lssl

# Many platforms put cos() needed by src/piechart.c in libm, rather than
# in libc.  We cannot enable this by default because libm doesn't exist
# everywhere.
#LIB += -lm

#### Tcl shell for use in running the fossil testsuite.  If you do not
#    care about testing the end result, this can be blank.
#
TCLSH = tclsh

# You should not need to change anything below this line