Differences From Artifact [d4c560883c]:
- File
kitsh/buildsrc/kitsh-0.0/configure.ac
— part of check-in
[8ef7a1eb1a]
at
2010-09-26 04:40:40
on branch trunk
— Updated to statically link against libstdc++ on HP/UX
Added patch to metakit to not call "autoconf"
Fixed issue with sh on HP/UX (source versus ".")
Added support for statically linking to libgcc (user: rkeene, size: 1116) [annotate] [blame] [check-ins using]
To 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]
| ︙ | ︙ | |||
26 27 28 29 30 31 32 |
LIBS="${ARCHS} ${LIBS}"
AC_CHECK_FUNCS(Tcl_SetStartupScript TclSetStartupScriptPath)
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}"
| | | 26 27 28 29 30 31 32 33 34 35 36 37 38 |
LIBS="${ARCHS} ${LIBS}"
AC_CHECK_FUNCS(Tcl_SetStartupScript TclSetStartupScriptPath)
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}"
])
AC_SEARCH_LIBS(inflate, z zlib,, [ AC_MSG_WARN([Couldn't find inflate (normally in zlib)!]) ])
dnl Produce output
AC_OUTPUT(Makefile)
|