Location via proxy:   [ UP ]  
[Report a bug]   [Manage cookies]                
Skip to content

Commit 14ba9fd

Browse files
committed
Fix ill-advised whitespace prettification, per buildfarm.
1 parent 125a5b9 commit 14ba9fd

File tree

2 files changed

+3
-5
lines changed

2 files changed

+3
-5
lines changed

configure

+1-2
Original file line numberDiff line numberDiff line change
@@ -8252,8 +8252,7 @@ return com_err ();
82528252
return 0;
82538253
}
82548254
_ACEOF
8255-
for ac_lib in '' krb5 'krb5 -lcrypto -ldes -lasn1 -lroken'
8256-
com_err 'com_err -lssl -lcrypto'; do
8255+
for ac_lib in '' krb5 'krb5 -lcrypto -ldes -lasn1 -lroken' com_err 'com_err -lssl -lcrypto'; do
82578256
if test -z "$ac_lib"; then
82588257
ac_res="none required"
82598258
else

configure.in

+2-3
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
dnl Process this file with autoconf to produce a configure script.
2-
dnl $PostgreSQL: pgsql/configure.in,v 1.598 2009/06/10 21:24:10 tgl Exp $
2+
dnl $PostgreSQL: pgsql/configure.in,v 1.599 2009/06/10 23:03:32 tgl Exp $
33
dnl
44
dnl Developers, please strive to achieve this order:
55
dnl
@@ -913,8 +913,7 @@ fi
913913

914914
if test "$with_krb5" = yes ; then
915915
if test "$PORTNAME" != "win32"; then
916-
AC_SEARCH_LIBS(com_err, [krb5 'krb5 -lcrypto -ldes -lasn1 -lroken'
917-
com_err 'com_err -lssl -lcrypto'], [],
916+
AC_SEARCH_LIBS(com_err, [krb5 'krb5 -lcrypto -ldes -lasn1 -lroken' com_err 'com_err -lssl -lcrypto'], [],
918917
[AC_MSG_ERROR([could not find function 'com_err' required for Kerberos 5])])
919918
AC_SEARCH_LIBS(krb5_sendauth, [krb5 'krb5 -lcrypto -ldes -lasn1 -lroken'], [],
920919
[AC_MSG_ERROR([could not find function 'krb5_sendauth' required for Kerberos 5])])

0 commit comments

Comments
 (0)