diff options
author | Mikko Koppanen <mkoppanen@php.net> | 2010-11-17 15:09:06 +0100 |
---|---|---|
committer | Martin Sustrik <sustrik@250bpm.com> | 2010-11-17 15:09:06 +0100 |
commit | c86375831d4002ac58501bacebb3fd12d5c651b8 (patch) | |
tree | 164a1ce536fab41b636a3de599dc665cacacf530 | |
parent | b83d0a1bc077fdcc481fee40dcf4780669c3f3d2 (diff) |
Remove unneeded substitutions
Couldn't find a place where these substs were actually used
Signed-off-by: Mikko Koppanen <mkoppanen@php.net>
-rw-r--r-- | configure.in | 15 |
1 files changed, 0 insertions, 15 deletions
diff --git a/configure.in b/configure.in index dd594ce..e06cdbf 100644 --- a/configure.in +++ b/configure.in @@ -263,17 +263,6 @@ AC_HEADER_TIME AC_TYPE_UINT32_T AC_C_VOLATILE -# Substs -stdint="0" -if test "x$HAVE_STDINT_H" = "xyes"; then - stdint="1" -fi - -inttypes="0" -if test "x$HAVE_INTTYPES_H" = "xyes"; then - inttypes="1" -fi - # PGM extension pgm_ext="no" @@ -361,15 +350,11 @@ fi AM_CONDITIONAL(BUILD_PGM, test "x$pgm_ext" = "xyes") AM_CONDITIONAL(ON_MINGW, test "x$on_mingw32" = "xyes") -AC_SUBST(stdint) -AC_SUBST(inttypes) - # Subst LIBZMQ_EXTRA_CFLAGS & CXXFLAGS & LDFLAGS AC_SUBST(LIBZMQ_EXTRA_CFLAGS) AC_SUBST(LIBZMQ_EXTRA_CXXFLAGS) AC_SUBST(LIBZMQ_EXTRA_LDFLAGS) - # Checks for library functions. AC_TYPE_SIGNAL AC_CHECK_FUNCS(perror gettimeofday memset socket getifaddrs freeifaddrs) |