diff options
author | Tom Lane <tgl@sss.pgh.pa.us> | 2003-08-07 21:38:55 +0000 |
---|---|---|
committer | Tom Lane <tgl@sss.pgh.pa.us> | 2003-08-07 21:38:55 +0000 |
commit | 31773533bd008bc0e87c7e5b4f16e3656027ee07 (patch) | |
tree | 13c63d26888342f38835f0522c350fd1a13eb66c | |
parent | 33ab177a56b6fe751e70123cf1aa80448d9ca253 (diff) |
Fix typo.
-rwxr-xr-x | configure | 2 | ||||
-rw-r--r-- | configure.in | 4 |
2 files changed, 3 insertions, 3 deletions
diff --git a/configure b/configure index ea4876c9647..75948fc3d09 100755 --- a/configure +++ b/configure @@ -10388,7 +10388,7 @@ else #line $LINENO "configure" #include "confdefs.h" #ifdef HAVE_GETOPT_H -include <getopt.h> +#include <getopt.h> #endif #ifdef F77_DUMMY_MAIN diff --git a/configure.in b/configure.in index 19056138843..ae683fb266d 100644 --- a/configure.in +++ b/configure.in @@ -1,5 +1,5 @@ dnl Process this file with autoconf to produce a configure script. -dnl $Header: /cvsroot/pgsql/configure.in,v 1.278 2003/08/07 21:11:57 tgl Exp $ +dnl $Header: /cvsroot/pgsql/configure.in,v 1.279 2003/08/07 21:38:55 tgl Exp $ dnl dnl Developers, please strive to achieve this order: dnl @@ -782,7 +782,7 @@ AC_CHECK_TYPES([struct cmsgcred, struct fcred, struct sockcred], [], [], AC_CHECK_TYPES([struct option], [], [], [#ifdef HAVE_GETOPT_H -include <getopt.h> +#include <getopt.h> #endif]) if test "$with_zlib" = yes; then |