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
|