diff options
author | Bruce Momjian <bruce@momjian.us> | 2002-10-28 00:00:25 +0000 |
---|---|---|
committer | Bruce Momjian <bruce@momjian.us> | 2002-10-28 00:00:25 +0000 |
commit | 323e03aed4ba10f9da30efc963ea80361f70a132 (patch) | |
tree | 6c6808830b6f6576aa6a72d670c256043c6aebcc | |
parent | bb5f8918c4bdd42e765bc39e8c1be21f06e49f66 (diff) | |
download | postgresql-323e03aed4ba10f9da30efc963ea80361f70a132.tar.gz postgresql-323e03aed4ba10f9da30efc963ea80361f70a132.zip |
fseeko NetBSD fix.
-rw-r--r-- | src/port/fseeko.c | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/src/port/fseeko.c b/src/port/fseeko.c index 69240b74a87..14984ad7b7a 100644 --- a/src/port/fseeko.c +++ b/src/port/fseeko.c @@ -8,12 +8,16 @@ * * * IDENTIFICATION - * $Header: /cvsroot/pgsql/src/port/fseeko.c,v 1.6 2002/10/24 04:48:08 momjian Exp $ + * $Header: /cvsroot/pgsql/src/port/fseeko.c,v 1.7 2002/10/28 00:00:25 momjian Exp $ * *------------------------------------------------------------------------- */ -#if defined(bsdi) || defined(netbsd) +/* + * We have to use the native defines here because configure hasn't + * completed yet. + */ +#if defined(__bsdi__) || defined(__NetBSD__) #include "c.h" |