mirror of
https://github.com/postgres/postgres.git
synced 2025-04-22 23:02:54 +03:00
Add comments on bsd/os handling.
This commit is contained in:
parent
dc4d18e056
commit
c9984ab79d
3
configure
vendored
3
configure
vendored
@ -11471,9 +11471,12 @@ fi
|
|||||||
done
|
done
|
||||||
|
|
||||||
|
|
||||||
|
# BSD/OS has a custom fseeko/ftello built on fsetpos/fgetpos
|
||||||
|
# We override the previous test that said fseeko/ftello didn't exist
|
||||||
case $host_os in bsdi*)
|
case $host_os in bsdi*)
|
||||||
ac_cv_func_fseeko=yes
|
ac_cv_func_fseeko=yes
|
||||||
esac
|
esac
|
||||||
|
|
||||||
echo "$as_me:$LINENO: checking for _LARGEFILE_SOURCE value needed for large files" >&5
|
echo "$as_me:$LINENO: checking for _LARGEFILE_SOURCE value needed for large files" >&5
|
||||||
echo $ECHO_N "checking for _LARGEFILE_SOURCE value needed for large files... $ECHO_C" >&6
|
echo $ECHO_N "checking for _LARGEFILE_SOURCE value needed for large files... $ECHO_C" >&6
|
||||||
if test "${ac_cv_sys_largefile_source+set}" = set; then
|
if test "${ac_cv_sys_largefile_source+set}" = set; then
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
dnl Process this file with autoconf to produce a configure script.
|
dnl Process this file with autoconf to produce a configure script.
|
||||||
dnl $Header: /cvsroot/pgsql/configure.in,v 1.212 2002/10/23 20:56:24 momjian Exp $
|
dnl $Header: /cvsroot/pgsql/configure.in,v 1.213 2002/10/23 20:59:03 momjian Exp $
|
||||||
dnl
|
dnl
|
||||||
dnl Developers, please strive to achieve this order:
|
dnl Developers, please strive to achieve this order:
|
||||||
dnl
|
dnl
|
||||||
@ -903,9 +903,12 @@ AC_CHECK_FUNCS(atexit, [],
|
|||||||
[AC_CHECK_FUNCS(on_exit, [],
|
[AC_CHECK_FUNCS(on_exit, [],
|
||||||
[AC_MSG_ERROR([neither atexit() nor on_exit() found])])])
|
[AC_MSG_ERROR([neither atexit() nor on_exit() found])])])
|
||||||
|
|
||||||
|
# BSD/OS has a custom fseeko/ftello built on fsetpos/fgetpos
|
||||||
|
# We override the previous test that said fseeko/ftello didn't exist
|
||||||
case $host_os in bsdi*)
|
case $host_os in bsdi*)
|
||||||
ac_cv_func_fseeko=yes
|
ac_cv_func_fseeko=yes
|
||||||
esac
|
esac
|
||||||
|
|
||||||
AC_FUNC_FSEEKO
|
AC_FUNC_FSEEKO
|
||||||
|
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user