1
0
mirror of https://github.com/postgres/postgres.git synced 2025-07-28 23:42:10 +03:00

Add fseeko for NetBSD.

This commit is contained in:
Bruce Momjian
2002-10-24 03:11:05 +00:00
parent d36caf103b
commit 4668d54f0b
4 changed files with 24 additions and 12 deletions

5
configure vendored
View File

@ -10543,9 +10543,10 @@ done
# BSD/OS has a custom fseeko/ftello built on fsetpos/fgetpos
# BSD/OS & NetBSD use 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*)
# OS tests are also done in include/c.h and port/fseeko.c
case $host_os in bsdi*|netbsd*)
ac_cv_func_fseeko=yes
esac