mirror of
https://github.com/FirebirdSQL/firebird.git
synced 2025-01-22 20:03:02 +01:00
Fix compile error in sort.cpp
This commit is contained in:
parent
b6ec349a82
commit
d34f8b80a1
@ -376,6 +376,7 @@ AC_HEADER_TIME
|
|||||||
AC_CHECK_HEADERS(sys/timeb.h)
|
AC_CHECK_HEADERS(sys/timeb.h)
|
||||||
AC_CHECK_HEADERS(sys/param.h)
|
AC_CHECK_HEADERS(sys/param.h)
|
||||||
AC_CHECK_HEADERS(sys/ioctl.h)
|
AC_CHECK_HEADERS(sys/ioctl.h)
|
||||||
|
AC_CHECK_HEADERS(limits.h)
|
||||||
AC_CHECK_HEADERS(setjmp.h)
|
AC_CHECK_HEADERS(setjmp.h)
|
||||||
AC_CHECK_HEADERS(stdarg.h)
|
AC_CHECK_HEADERS(stdarg.h)
|
||||||
AC_CHECK_HEADERS(stdlib.h)
|
AC_CHECK_HEADERS(stdlib.h)
|
||||||
|
@ -83,6 +83,7 @@
|
|||||||
#define HAVE_MATH_H
|
#define HAVE_MATH_H
|
||||||
#undef HAVE_PTHREAD_H
|
#undef HAVE_PTHREAD_H
|
||||||
#undef HAVE_SYS_TYPES_H
|
#undef HAVE_SYS_TYPES_H
|
||||||
|
#undef HAVE_LIMITS_H
|
||||||
#define HAVE_SYS_STAT_H
|
#define HAVE_SYS_STAT_H
|
||||||
#undef HAVE_SYS_UIO_H
|
#undef HAVE_SYS_UIO_H
|
||||||
#undef HAVE_SYS_WAIT_H
|
#undef HAVE_SYS_WAIT_H
|
||||||
|
@ -49,6 +49,10 @@
|
|||||||
#include <sys/types.h>
|
#include <sys/types.h>
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
#ifdef HAVE_LIMITS_H
|
||||||
|
#include <limits.h> /* On some systems for ULONG_MAX */
|
||||||
|
#endif
|
||||||
|
|
||||||
#ifdef HAVE_SYS_UIO_H
|
#ifdef HAVE_SYS_UIO_H
|
||||||
#include <sys/uio.h>
|
#include <sys/uio.h>
|
||||||
#endif
|
#endif
|
||||||
|
Loading…
Reference in New Issue
Block a user