make compile with gcc 3.0

This commit is contained in:
Bill Currie 2001-09-28 03:58:51 +00:00
parent 83db5c0194
commit bcd54926b4
2 changed files with 10 additions and 1 deletions

View File

@ -34,7 +34,7 @@ dnl Checks for libraries.
dnl Checks for header files.
AC_HEADER_STDC
AC_CHECK_HEADERS(sys/types.h sys/wait.h unistd.h)
AC_CHECK_HEADERS(string.h strings.h sys/types.h sys/wait.h unistd.h)
dnl Checks for typedefs, structures, and compiler characteristics.
AC_ARG_ENABLE(profile,

View File

@ -1,3 +1,12 @@
#ifdef HAVE_CONFIG_H
# include "config.h"
#endif
#ifdef HAVE_STRING_H
# include <string.h>
#endif
#ifdef HAVE_STRINGS_H
# include <strings.h>
#endif
#include <QF/hash.h>
#include "def.h"