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

Commit ca07a6e

Browse files
committed
Update configure for ab969a376
Commit ab969a376 updated configure.ac but neglected to update the actual configure script. Fix that. Pointed out by Tom Lane
1 parent 1c77de9 commit ca07a6e

File tree

1 file changed

+13
-13
lines changed

1 file changed

+13
-13
lines changed

configure

+13-13
Original file line numberDiff line numberDiff line change
@@ -12635,9 +12635,9 @@ fi
1263512635

1263612636
if test "$with_gssapi" = yes ; then
1263712637
if test "$PORTNAME" != "win32"; then
12638-
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for library containing gss_init_sec_context" >&5
12639-
$as_echo_n "checking for library containing gss_init_sec_context... " >&6; }
12640-
if ${ac_cv_search_gss_init_sec_context+:} false; then :
12638+
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for library containing gss_store_cred_into" >&5
12639+
$as_echo_n "checking for library containing gss_store_cred_into... " >&6; }
12640+
if ${ac_cv_search_gss_store_cred_into+:} false; then :
1264112641
$as_echo_n "(cached) " >&6
1264212642
else
1264312643
ac_func_search_save_LIBS=$LIBS
@@ -12650,11 +12650,11 @@ cat confdefs.h - <<_ACEOF >conftest.$ac_ext
1265012650
#ifdef __cplusplus
1265112651
extern "C"
1265212652
#endif
12653-
char gss_init_sec_context ();
12653+
char gss_store_cred_into ();
1265412654
int
1265512655
main ()
1265612656
{
12657-
return gss_init_sec_context ();
12657+
return gss_store_cred_into ();
1265812658
;
1265912659
return 0;
1266012660
}
@@ -12667,30 +12667,30 @@ for ac_lib in '' gssapi_krb5 gss 'gssapi -lkrb5 -lcrypto'; do
1266712667
LIBS="-l$ac_lib $ac_func_search_save_LIBS"
1266812668
fi
1266912669
if ac_fn_c_try_link "$LINENO"; then :
12670-
ac_cv_search_gss_init_sec_context=$ac_res
12670+
ac_cv_search_gss_store_cred_into=$ac_res
1267112671
fi
1267212672
rm -f core conftest.err conftest.$ac_objext \
1267312673
conftest$ac_exeext
12674-
if ${ac_cv_search_gss_init_sec_context+:} false; then :
12674+
if ${ac_cv_search_gss_store_cred_into+:} false; then :
1267512675
break
1267612676
fi
1267712677
done
12678-
if ${ac_cv_search_gss_init_sec_context+:} false; then :
12678+
if ${ac_cv_search_gss_store_cred_into+:} false; then :
1267912679

1268012680
else
12681-
ac_cv_search_gss_init_sec_context=no
12681+
ac_cv_search_gss_store_cred_into=no
1268212682
fi
1268312683
rm conftest.$ac_ext
1268412684
LIBS=$ac_func_search_save_LIBS
1268512685
fi
12686-
{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_search_gss_init_sec_context" >&5
12687-
$as_echo "$ac_cv_search_gss_init_sec_context" >&6; }
12688-
ac_res=$ac_cv_search_gss_init_sec_context
12686+
{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_search_gss_store_cred_into" >&5
12687+
$as_echo "$ac_cv_search_gss_store_cred_into" >&6; }
12688+
ac_res=$ac_cv_search_gss_store_cred_into
1268912689
if test "$ac_res" != no; then :
1269012690
test "$ac_res" = "none required" || LIBS="$ac_res $LIBS"
1269112691

1269212692
else
12693-
as_fn_error $? "could not find function 'gss_init_sec_context' required for GSSAPI" "$LINENO" 5
12693+
as_fn_error $? "could not find function 'gss_store_cred_into' required for GSSAPI" "$LINENO" 5
1269412694
fi
1269512695

1269612696
else

0 commit comments

Comments
 (0)