Fossil

Check-in [1bceafc4d0]
Login

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

Overview
Comment:LIB is now += LDFLAGS so that i can link on OpenSolaris (need -lsocket)
Downloads: Tarball | ZIP archive
Timelines: family | ancestors | descendants | both | trunk
Files: files | file ages | folders
SHA1: 1bceafc4d0c563636bcc079b330fd14be78210b8
User & Date: stephan 2008-04-25 21:49:25.000
Context
2008-04-25
22:31
initial checkin: quick hack to generate a .deb package of fossil. ... (check-in: adaa8411d9 user: stephan tags: trunk)
21:49
LIB is now += LDFLAGS so that i can link on OpenSolaris (need -lsocket) ... (check-in: 1bceafc4d0 user: stephan tags: trunk)
21:45
s/strnlen/strnlen_/g for the local strnlen impementation because the name fataly collides with a func from standard headers in some gcc versions (e.g. GnuSolaris/Nexenta w/ gcc 4.0.x). ... (check-in: 0c78ba2eb4 user: stephan tags: trunk)
Changes
Unified Diff Ignore Whitespace Patch
Changes to Makefile.
30
31
32
33
34
35
36
37




38
39
40
41
42
43
44

#### Extra arguments for linking the finished binary.  Fossil needs
#    to link against the Z-Lib compression library.  There are no
#    other dependencies.  We sometimes add the -static option here
#    so that we can build a static executable that will run in a
#    chroot jail.
#
LIB = -lz





#### Tcl shell for use in running the fossil testsuite.
#
TCLSH = tclsh

# You should not need to change anything below this line
###############################################################################







|
>
>
>
>







30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48

#### Extra arguments for linking the finished binary.  Fossil needs
#    to link against the Z-Lib compression library.  There are no
#    other dependencies.  We sometimes add the -static option here
#    so that we can build a static executable that will run in a
#    chroot jail.
#
LIB = -lz $(LDFLAGS)
# If you're on OpenSolaris, and probably other Solaris versions,
# you'll need:
# LIB += -lsocket


#### Tcl shell for use in running the fossil testsuite.
#
TCLSH = tclsh

# You should not need to change anything below this line
###############################################################################