44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
|
# If you're on OpenSolaris:
# LIB += lsocket
# Solaris 10 needs:
# LIB += -lsocket -lnsl
# My assumption is that the Sol10 flags will work for Sol8/9 and possibly 11.
#
# If using FOSSIL_ENABLE_SSL, also enable the following:
LIB += -lcrypto -lssl
#### Tcl shell for use in running the fossil testsuite.
#
TCLSH = tclsh
# You should not need to change anything below this line
###############################################################################
|
|
|
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
|
# If you're on OpenSolaris:
# LIB += lsocket
# Solaris 10 needs:
# LIB += -lsocket -lnsl
# My assumption is that the Sol10 flags will work for Sol8/9 and possibly 11.
#
# If using FOSSIL_ENABLE_SSL, also enable the following:
LIB += -lssl -lcrypto
#### Tcl shell for use in running the fossil testsuite.
#
TCLSH = tclsh
# You should not need to change anything below this line
###############################################################################
|