Fix misspelling.
authorTom Lane <tgl@sss.pgh.pa.us>
Tue, 10 Jul 2007 16:41:01 +0000 (16:41 +0000)
committerTom Lane <tgl@sss.pgh.pa.us>
Tue, 10 Jul 2007 16:41:01 +0000 (16:41 +0000)
configure
configure.in
src/include/pg_config.h.in

index 84db9ee1c3b60b1895423c05ed60fe0020ede47b..6e9dfe698838fbe2949d18ce6116b499fb9fd4b3 100755 (executable)
--- a/configure
+++ b/configure
@@ -3923,8 +3923,8 @@ echo "${ECHO_T}$with_python" >&6
 #
 # GSSAPI
 #
-echo "$as_me:$LINENO: checking wether to build with GSSAPI support" >&5
-echo $ECHO_N "checking wether to build with GSSAPI support... $ECHO_C" >&6
+echo "$as_me:$LINENO: checking whether to build with GSSAPI support" >&5
+echo $ECHO_N "checking whether to build with GSSAPI support... $ECHO_C" >&6
 
 pgac_args="$pgac_args with_gssapi"
 
@@ -3963,7 +3963,6 @@ echo "$as_me:$LINENO: result: $with_gssapi" >&5
 echo "${ECHO_T}$with_gssapi" >&6
 
 
-
 #
 # Kerberos 5
 #
@@ -6765,7 +6764,7 @@ fi
 
 if test "$with_gssapi" = yes ; then
   if test "$PORTNAME" != "win32"; then
-       echo "$as_me:$LINENO: checking for library containing gss_init_sec_context" >&5
+    echo "$as_me:$LINENO: checking for library containing gss_init_sec_context" >&5
 echo $ECHO_N "checking for library containing gss_init_sec_context... $ECHO_C" >&6
 if test "${ac_cv_search_gss_init_sec_context+set}" = set; then
   echo $ECHO_N "(cached) $ECHO_C" >&6
index ffe4b2bf069d887bfb49c4528894839394683f59..d3bec75e6c6b4556f33e602dea1b298a7b514089 100644 (file)
@@ -1,5 +1,5 @@
 dnl Process this file with autoconf to produce a configure script.
-dnl $PostgreSQL: pgsql/configure.in,v 1.517 2007/07/10 13:14:20 mha Exp $
+dnl $PostgreSQL: pgsql/configure.in,v 1.518 2007/07/10 16:41:01 tgl Exp $
 dnl
 dnl Developers, please strive to achieve this order:
 dnl
@@ -465,7 +465,7 @@ AC_SUBST(with_python)
 #
 # GSSAPI
 #
-AC_MSG_CHECKING([wether to build with GSSAPI support])
+AC_MSG_CHECKING([whether to build with GSSAPI support])
 PGAC_ARG_BOOL(with, gssapi, no, [  --with-gssapi           build with GSSAPI support],
 [
   AC_DEFINE(ENABLE_GSS, 1, [Define to build with GSSAPI support. (--with-gssapi)])
@@ -474,7 +474,6 @@ PGAC_ARG_BOOL(with, gssapi, no, [  --with-gssapi           build with GSSAPI sup
 AC_MSG_RESULT([$with_gssapi])
 AC_SUBST(with_gssapi)
 
-
 #
 # Kerberos 5
 #
@@ -768,8 +767,8 @@ fi
 
 if test "$with_gssapi" = yes ; then
   if test "$PORTNAME" != "win32"; then
-       AC_SEARCH_LIBS(gss_init_sec_context, [gssapi_krb5], [],
-                                 [AC_MSG_ERROR([could not find function 'gss_init_sec_context' required for GSSAPI])])
+    AC_SEARCH_LIBS(gss_init_sec_context, [gssapi_krb5], [],
+                  [AC_MSG_ERROR([could not find function 'gss_init_sec_context' required for GSSAPI])])
   else
     LIBS="$LIBS -lgssapi32"
   fi
index 64b4473ea3a061d580d987ed248abc03166c1a79..2381c20da1798a7447f3a0cd36df72adb6a99c72 100644 (file)
@@ -39,6 +39,9 @@
 /* Define to 1 to enable DTrace support. (--enable-dtrace) */
 #undef ENABLE_DTRACE
 
+/* Define to build with GSSAPI support. (--with-gssapi) */
+#undef ENABLE_GSS
+
 /* Define to 1 if you want National Language Support. (--enable-nls) */
 #undef ENABLE_NLS
 
 /* Define to the appropriate snprintf format for 64-bit ints, if any. */
 #undef INT64_FORMAT
 
-/* Define to build with GSSAPI support. (--with-gssapi) */
-#undef ENABLE_GSS
-
 /* Define to build with Kerberos 5 support. (--with-krb5) */
 #undef KRB5