]> granicus.if.org Git - postgresql/commitdiff
Add comments on bsd/os handling.
authorBruce Momjian <bruce@momjian.us>
Wed, 23 Oct 2002 20:59:03 +0000 (20:59 +0000)
committerBruce Momjian <bruce@momjian.us>
Wed, 23 Oct 2002 20:59:03 +0000 (20:59 +0000)
configure
configure.in

index d4b1134f3ac1107414a071050b13b869a7a02de0..70e18ea7d5a0678a1f2a963a21f30354a6adb7c1 100755 (executable)
--- a/configure
+++ b/configure
 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*)
 ac_cv_func_fseeko=yes
 esac
+
 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
 if test "${ac_cv_sys_largefile_source+set}" = set; then
index 1fd159c36b23fed02901cbff4e130aedf0e81ba4..1ca21844c5e00a379a3ef03fdbf2ee7a0073a67f 100644 (file)
@@ -1,5 +1,5 @@
 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 Developers, please strive to achieve this order:
 dnl
@@ -903,9 +903,12 @@ AC_CHECK_FUNCS(atexit, [],
                [AC_CHECK_FUNCS(on_exit, [],
                                [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*)
 ac_cv_func_fseeko=yes
 esac
+
 AC_FUNC_FSEEKO