Differences From Artifact [af02db7477]:
- File
kitsh/buildsrc/kitsh-0.0/configure.ac
— part of check-in
[56c3d5d022]
at
2010-09-26 04:40:43
on branch trunk
— Cleaned up LDFLAGS settings
Fixed issue with "--with-zlib" wiping out LDFLAGS (user: rkeene, size: 1117) [annotate] [blame] [check-ins using]
To Artifact [dc10e35060]:
- File kitsh/buildsrc/kitsh-0.0/configure.ac — part of check-in [580c833532] at 2010-09-26 04:42:52 on branch trunk — Updated to try to link statically to zlib (user: rkeene, size: 1207) [annotate] [blame] [check-ins using]
︙ | ︙ | |||
28 29 30 31 32 33 34 | LIBS="${SAVE_LIBS}" dnl Find zlib AC_ARG_WITH(zlib, AC_HELP_STRING([--with-zlib], [directory containing zlib]), [ CFLAGS="${CFLAGS} -I${with_zlib}/include -I${with_zlib}" LDFLAGS="${LDFLAGS} -L${with_zlib}/lib -L${with_zlib}" ]) | > > | > > > > | 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 | LIBS="${SAVE_LIBS}" dnl Find zlib AC_ARG_WITH(zlib, AC_HELP_STRING([--with-zlib], [directory containing zlib]), [ CFLAGS="${CFLAGS} -I${with_zlib}/include -I${with_zlib}" LDFLAGS="${LDFLAGS} -L${with_zlib}/lib -L${with_zlib}" ]) DC_DO_STATIC_LINK_LIB(zlib, -lz,, [ DC_DO_STATIC_LINK_LIB(zlib, -lzlib,, [ AC_SEARCH_LIBS(inflate, z zlib,, [ AC_MSG_WARN([Couldn't find inflate (normally in zlib)!]) ]) ]) ]) dnl Produce output AC_OUTPUT(Makefile) |