8
0
mirror of https://github.com/FirebirdSQL/firebird.git synced 2025-01-22 16:43:03 +01:00

Fix compile error in sort.cpp

This commit is contained in:
kkuznetsov 2006-07-25 13:03:11 +00:00
parent b6ec349a82
commit d34f8b80a1
3 changed files with 6 additions and 0 deletions

View File

@ -376,6 +376,7 @@ AC_HEADER_TIME
AC_CHECK_HEADERS(sys/timeb.h)
AC_CHECK_HEADERS(sys/param.h)
AC_CHECK_HEADERS(sys/ioctl.h)
AC_CHECK_HEADERS(limits.h)
AC_CHECK_HEADERS(setjmp.h)
AC_CHECK_HEADERS(stdarg.h)
AC_CHECK_HEADERS(stdlib.h)

View File

@ -83,6 +83,7 @@
#define HAVE_MATH_H
#undef HAVE_PTHREAD_H
#undef HAVE_SYS_TYPES_H
#undef HAVE_LIMITS_H
#define HAVE_SYS_STAT_H
#undef HAVE_SYS_UIO_H
#undef HAVE_SYS_WAIT_H

View File

@ -49,6 +49,10 @@
#include <sys/types.h>
#endif
#ifdef HAVE_LIMITS_H
#include <limits.h> /* On some systems for ULONG_MAX */
#endif
#ifdef HAVE_SYS_UIO_H
#include <sys/uio.h>
#endif