diff options
author | Matthias Andree <matthias.andree@gmx.de> | 2005-07-31 14:14:32 +0000 |
---|---|---|
committer | Matthias Andree <matthias.andree@gmx.de> | 2005-07-31 14:14:32 +0000 |
commit | cc2cad965d93b5b4e4c39081cee0bafd04a0ff0e (patch) | |
tree | 3f3cc8565318007b4f3d61ce1e16f3a14f03b9c5 /configure.ac | |
parent | f194002467938d3f4d4cc6ff4dc4fe442d4aba11 (diff) | |
download | fetchmail-cc2cad965d93b5b4e4c39081cee0bafd04a0ff0e.tar.gz fetchmail-cc2cad965d93b5b4e4c39081cee0bafd04a0ff0e.tar.bz2 fetchmail-cc2cad965d93b5b4e4c39081cee0bafd04a0ff0e.zip |
Get rid of alloca() in fetchmail.
svn path=/trunk/; revision=4209
Diffstat (limited to 'configure.ac')
-rw-r--r-- | configure.ac | 8 |
1 files changed, 1 insertions, 7 deletions
diff --git a/configure.ac b/configure.ac index ace8bad7..f6bde8b7 100644 --- a/configure.ac +++ b/configure.ac @@ -28,7 +28,7 @@ AC_TYPE_SIZE_T AC_TYPE_PID_T AC_TYPE_SIGNAL AC_CHECK_HEADERS([unistd.h termios.h termio.h sgtty.h stdarg.h \ - alloca.h sys/itimer.h fcntl.h sys/fcntl.h memory.h sys/wait.h \ + sys/itimer.h fcntl.h sys/fcntl.h memory.h sys/wait.h \ arpa/inet.h arpa/nameser.h netinet/in.h net/socket.h \ sys/select.h sys/socket.h sys/time.h langinfo.h]) AC_CHECK_HEADERS([resolv.h],,,[ @@ -47,8 +47,6 @@ AM_PROG_LEX AC_PROG_MAKE_SET AC_PROG_YACC -AC_FUNC_ALLOCA - # Check for LynxOS special case: -lbsd needed (at least on 2.3.0) and -s # not working. if test `uname` = "LynxOS" @@ -113,10 +111,6 @@ AC_CHECK_FUNC(getopt_long, [], EXTRAOBJ="$EXTRAOBJ getopt.\$(OBJEXT) getopt1.\$(OBJEXT)"]) AC_FUNC_VPRINTF -if test -n "$ALLOCA" -then - EXTRAOBJ="$EXTRAOBJ alloca.\$(OBJEXT)" -fi AC_SUBST(EXTRAOBJ) |