mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2024-11-10 23:32:09 +00:00
make compile with gcc 3.0
This commit is contained in:
parent
83db5c0194
commit
bcd54926b4
2 changed files with 10 additions and 1 deletions
|
@ -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,
|
||||
|
|
|
@ -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"
|
||||
|
|
Loading…
Reference in a new issue