forked from Lainports/freebsd-ports
- Enable the squid_kerb_auth helper as in www/squid PR: 129913 Submitted by: Thomas-Martin Seck <tmseck@web.de> (maintainer)
468 lines
16 KiB
Text
468 lines
16 KiB
Text
This file contains various patches that in general try to enable the
|
|
compilation of the squid_kerb_auth authentication helper program on
|
|
all versions of FreeBSD that are currently supported by the FreeBSD
|
|
ports framework where Heimdal is part of the base system.
|
|
|
|
--- configure.orig 2008-12-23 05:19:34.000000000 +0100
|
|
+++ configure 2008-12-24 15:05:33.000000000 +0100
|
|
@@ -964,6 +964,9 @@
|
|
NTLM_AUTH_HELPERS
|
|
NEGOTIATE_AUTH_HELPERS
|
|
DIGEST_AUTH_HELPERS
|
|
+KRB5CONFIG
|
|
+KERBLIBS
|
|
+KERBINC
|
|
EXTERNAL_ACL_HELPERS
|
|
LIBSASL
|
|
ENABLE_UNLINKD_TRUE
|
|
@@ -23261,6 +23264,368 @@
|
|
fi
|
|
|
|
|
|
+
|
|
+if `echo "$NEGOTIATE_AUTH_HELPERS" | grep -q squid_kerb_auth`; then
|
|
+ # Extract the first word of "krb5-config", so it can be a program name with args.
|
|
+set dummy krb5-config; ac_word=$2
|
|
+{ $as_echo "$as_me:$LINENO: checking for $ac_word" >&5
|
|
+$as_echo_n "checking for $ac_word... " >&6; }
|
|
+if test "${ac_cv_path_KRB5CONFIG+set}" = set; then
|
|
+ $as_echo_n "(cached) " >&6
|
|
+else
|
|
+ case $KRB5CONFIG in
|
|
+ [\\/]* | ?:[\\/]*)
|
|
+ ac_cv_path_KRB5CONFIG="$KRB5CONFIG" # Let the user override the test with a path.
|
|
+ ;;
|
|
+ *)
|
|
+ as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
|
|
+for as_dir in $PATH
|
|
+do
|
|
+ IFS=$as_save_IFS
|
|
+ test -z "$as_dir" && as_dir=.
|
|
+ for ac_exec_ext in '' $ac_executable_extensions; do
|
|
+ if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then
|
|
+ ac_cv_path_KRB5CONFIG="$as_dir/$ac_word$ac_exec_ext"
|
|
+ $as_echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5
|
|
+ break 2
|
|
+ fi
|
|
+done
|
|
+done
|
|
+IFS=$as_save_IFS
|
|
+
|
|
+ test -z "$ac_cv_path_KRB5CONFIG" && ac_cv_path_KRB5CONFIG="false"
|
|
+ ;;
|
|
+esac
|
|
+fi
|
|
+KRB5CONFIG=$ac_cv_path_KRB5CONFIG
|
|
+if test -n "$KRB5CONFIG"; then
|
|
+ { $as_echo "$as_me:$LINENO: result: $KRB5CONFIG" >&5
|
|
+$as_echo "$KRB5CONFIG" >&6; }
|
|
+else
|
|
+ { $as_echo "$as_me:$LINENO: result: no" >&5
|
|
+$as_echo "no" >&6; }
|
|
+fi
|
|
+
|
|
+
|
|
+ if test -z "$KRB5CONFIG"; then
|
|
+ { { $as_echo "$as_me:$LINENO: error: sorry" >&5
|
|
+$as_echo "$as_me: error: sorry" >&2;}
|
|
+ { (exit need krb5-config to determine compilation settings); exit need krb5-config to determine compilation settings; }; }
|
|
+ else
|
|
+ KERBLIBS=`$KRB5CONFIG --libs gssapi`
|
|
+ KERBINC=`$KRB5CONFIG --cflags`
|
|
+
|
|
+
|
|
+ fi
|
|
+
|
|
+for ac_header in gssapi/gssapi.h
|
|
+do
|
|
+as_ac_Header=`$as_echo "ac_cv_header_$ac_header" | $as_tr_sh`
|
|
+if { as_var=$as_ac_Header; eval "test \"\${$as_var+set}\" = set"; }; then
|
|
+ { $as_echo "$as_me:$LINENO: checking for $ac_header" >&5
|
|
+$as_echo_n "checking for $ac_header... " >&6; }
|
|
+if { as_var=$as_ac_Header; eval "test \"\${$as_var+set}\" = set"; }; then
|
|
+ $as_echo_n "(cached) " >&6
|
|
+fi
|
|
+ac_res=`eval 'as_val=${'$as_ac_Header'}
|
|
+ $as_echo "$as_val"'`
|
|
+ { $as_echo "$as_me:$LINENO: result: $ac_res" >&5
|
|
+$as_echo "$ac_res" >&6; }
|
|
+else
|
|
+ # Is the header compilable?
|
|
+{ $as_echo "$as_me:$LINENO: checking $ac_header usability" >&5
|
|
+$as_echo_n "checking $ac_header usability... " >&6; }
|
|
+cat >conftest.$ac_ext <<_ACEOF
|
|
+/* confdefs.h. */
|
|
+_ACEOF
|
|
+cat confdefs.h >>conftest.$ac_ext
|
|
+cat >>conftest.$ac_ext <<_ACEOF
|
|
+/* end confdefs.h. */
|
|
+$ac_includes_default
|
|
+#include <$ac_header>
|
|
+_ACEOF
|
|
+rm -f conftest.$ac_objext
|
|
+if { (ac_try="$ac_compile"
|
|
+case "(($ac_try" in
|
|
+ *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
|
|
+ *) ac_try_echo=$ac_try;;
|
|
+esac
|
|
+eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\""
|
|
+$as_echo "$ac_try_echo") >&5
|
|
+ (eval "$ac_compile") 2>conftest.er1
|
|
+ ac_status=$?
|
|
+ grep -v '^ *+' conftest.er1 >conftest.err
|
|
+ rm -f conftest.er1
|
|
+ cat conftest.err >&5
|
|
+ $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5
|
|
+ (exit $ac_status); } && {
|
|
+ test -z "$ac_c_werror_flag" ||
|
|
+ test ! -s conftest.err
|
|
+ } && test -s conftest.$ac_objext; then
|
|
+ ac_header_compiler=yes
|
|
+else
|
|
+ $as_echo "$as_me: failed program was:" >&5
|
|
+sed 's/^/| /' conftest.$ac_ext >&5
|
|
+
|
|
+ ac_header_compiler=no
|
|
+fi
|
|
+
|
|
+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext
|
|
+{ $as_echo "$as_me:$LINENO: result: $ac_header_compiler" >&5
|
|
+$as_echo "$ac_header_compiler" >&6; }
|
|
+
|
|
+# Is the header present?
|
|
+{ $as_echo "$as_me:$LINENO: checking $ac_header presence" >&5
|
|
+$as_echo_n "checking $ac_header presence... " >&6; }
|
|
+cat >conftest.$ac_ext <<_ACEOF
|
|
+/* confdefs.h. */
|
|
+_ACEOF
|
|
+cat confdefs.h >>conftest.$ac_ext
|
|
+cat >>conftest.$ac_ext <<_ACEOF
|
|
+/* end confdefs.h. */
|
|
+#include <$ac_header>
|
|
+_ACEOF
|
|
+if { (ac_try="$ac_cpp conftest.$ac_ext"
|
|
+case "(($ac_try" in
|
|
+ *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
|
|
+ *) ac_try_echo=$ac_try;;
|
|
+esac
|
|
+eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\""
|
|
+$as_echo "$ac_try_echo") >&5
|
|
+ (eval "$ac_cpp conftest.$ac_ext") 2>conftest.er1
|
|
+ ac_status=$?
|
|
+ grep -v '^ *+' conftest.er1 >conftest.err
|
|
+ rm -f conftest.er1
|
|
+ cat conftest.err >&5
|
|
+ $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5
|
|
+ (exit $ac_status); } >/dev/null && {
|
|
+ test -z "$ac_c_preproc_warn_flag$ac_c_werror_flag" ||
|
|
+ test ! -s conftest.err
|
|
+ }; then
|
|
+ ac_header_preproc=yes
|
|
+else
|
|
+ $as_echo "$as_me: failed program was:" >&5
|
|
+sed 's/^/| /' conftest.$ac_ext >&5
|
|
+
|
|
+ ac_header_preproc=no
|
|
+fi
|
|
+
|
|
+rm -f conftest.err conftest.$ac_ext
|
|
+{ $as_echo "$as_me:$LINENO: result: $ac_header_preproc" >&5
|
|
+$as_echo "$ac_header_preproc" >&6; }
|
|
+
|
|
+# So? What about this header?
|
|
+case $ac_header_compiler:$ac_header_preproc:$ac_c_preproc_warn_flag in
|
|
+ yes:no: )
|
|
+ { $as_echo "$as_me:$LINENO: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&5
|
|
+$as_echo "$as_me: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&2;}
|
|
+ { $as_echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the compiler's result" >&5
|
|
+$as_echo "$as_me: WARNING: $ac_header: proceeding with the compiler's result" >&2;}
|
|
+ ac_header_preproc=yes
|
|
+ ;;
|
|
+ no:yes:* )
|
|
+ { $as_echo "$as_me:$LINENO: WARNING: $ac_header: present but cannot be compiled" >&5
|
|
+$as_echo "$as_me: WARNING: $ac_header: present but cannot be compiled" >&2;}
|
|
+ { $as_echo "$as_me:$LINENO: WARNING: $ac_header: check for missing prerequisite headers?" >&5
|
|
+$as_echo "$as_me: WARNING: $ac_header: check for missing prerequisite headers?" >&2;}
|
|
+ { $as_echo "$as_me:$LINENO: WARNING: $ac_header: see the Autoconf documentation" >&5
|
|
+$as_echo "$as_me: WARNING: $ac_header: see the Autoconf documentation" >&2;}
|
|
+ { $as_echo "$as_me:$LINENO: WARNING: $ac_header: section \"Present But Cannot Be Compiled\"" >&5
|
|
+$as_echo "$as_me: WARNING: $ac_header: section \"Present But Cannot Be Compiled\"" >&2;}
|
|
+ { $as_echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the preprocessor's result" >&5
|
|
+$as_echo "$as_me: WARNING: $ac_header: proceeding with the preprocessor's result" >&2;}
|
|
+ { $as_echo "$as_me:$LINENO: WARNING: $ac_header: in the future, the compiler will take precedence" >&5
|
|
+$as_echo "$as_me: WARNING: $ac_header: in the future, the compiler will take precedence" >&2;}
|
|
+ ( cat <<\_ASBOX
|
|
+## ----------------------------------------------- ##
|
|
+## Report this to http://www.squid-cache.org/bugs/ ##
|
|
+## ----------------------------------------------- ##
|
|
+_ASBOX
|
|
+ ) | sed "s/^/$as_me: WARNING: /" >&2
|
|
+ ;;
|
|
+esac
|
|
+{ $as_echo "$as_me:$LINENO: checking for $ac_header" >&5
|
|
+$as_echo_n "checking for $ac_header... " >&6; }
|
|
+if { as_var=$as_ac_Header; eval "test \"\${$as_var+set}\" = set"; }; then
|
|
+ $as_echo_n "(cached) " >&6
|
|
+else
|
|
+ eval "$as_ac_Header=\$ac_header_preproc"
|
|
+fi
|
|
+ac_res=`eval 'as_val=${'$as_ac_Header'}
|
|
+ $as_echo "$as_val"'`
|
|
+ { $as_echo "$as_me:$LINENO: result: $ac_res" >&5
|
|
+$as_echo "$ac_res" >&6; }
|
|
+
|
|
+fi
|
|
+if test `eval 'as_val=${'$as_ac_Header'}
|
|
+ $as_echo "$as_val"'` = yes; then
|
|
+ cat >>confdefs.h <<_ACEOF
|
|
+#define `$as_echo "HAVE_$ac_header" | $as_tr_cpp` 1
|
|
+_ACEOF
|
|
+
|
|
+fi
|
|
+
|
|
+done
|
|
+
|
|
+ if test x"$ac_cv_header_gssapi_gssapi_h" != x"yes"; then
|
|
+
|
|
+for ac_header in gssapi.h
|
|
+do
|
|
+as_ac_Header=`$as_echo "ac_cv_header_$ac_header" | $as_tr_sh`
|
|
+if { as_var=$as_ac_Header; eval "test \"\${$as_var+set}\" = set"; }; then
|
|
+ { $as_echo "$as_me:$LINENO: checking for $ac_header" >&5
|
|
+$as_echo_n "checking for $ac_header... " >&6; }
|
|
+if { as_var=$as_ac_Header; eval "test \"\${$as_var+set}\" = set"; }; then
|
|
+ $as_echo_n "(cached) " >&6
|
|
+fi
|
|
+ac_res=`eval 'as_val=${'$as_ac_Header'}
|
|
+ $as_echo "$as_val"'`
|
|
+ { $as_echo "$as_me:$LINENO: result: $ac_res" >&5
|
|
+$as_echo "$ac_res" >&6; }
|
|
+else
|
|
+ # Is the header compilable?
|
|
+{ $as_echo "$as_me:$LINENO: checking $ac_header usability" >&5
|
|
+$as_echo_n "checking $ac_header usability... " >&6; }
|
|
+cat >conftest.$ac_ext <<_ACEOF
|
|
+/* confdefs.h. */
|
|
+_ACEOF
|
|
+cat confdefs.h >>conftest.$ac_ext
|
|
+cat >>conftest.$ac_ext <<_ACEOF
|
|
+/* end confdefs.h. */
|
|
+$ac_includes_default
|
|
+#include <$ac_header>
|
|
+_ACEOF
|
|
+rm -f conftest.$ac_objext
|
|
+if { (ac_try="$ac_compile"
|
|
+case "(($ac_try" in
|
|
+ *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
|
|
+ *) ac_try_echo=$ac_try;;
|
|
+esac
|
|
+eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\""
|
|
+$as_echo "$ac_try_echo") >&5
|
|
+ (eval "$ac_compile") 2>conftest.er1
|
|
+ ac_status=$?
|
|
+ grep -v '^ *+' conftest.er1 >conftest.err
|
|
+ rm -f conftest.er1
|
|
+ cat conftest.err >&5
|
|
+ $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5
|
|
+ (exit $ac_status); } && {
|
|
+ test -z "$ac_c_werror_flag" ||
|
|
+ test ! -s conftest.err
|
|
+ } && test -s conftest.$ac_objext; then
|
|
+ ac_header_compiler=yes
|
|
+else
|
|
+ $as_echo "$as_me: failed program was:" >&5
|
|
+sed 's/^/| /' conftest.$ac_ext >&5
|
|
+
|
|
+ ac_header_compiler=no
|
|
+fi
|
|
+
|
|
+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext
|
|
+{ $as_echo "$as_me:$LINENO: result: $ac_header_compiler" >&5
|
|
+$as_echo "$ac_header_compiler" >&6; }
|
|
+
|
|
+# Is the header present?
|
|
+{ $as_echo "$as_me:$LINENO: checking $ac_header presence" >&5
|
|
+$as_echo_n "checking $ac_header presence... " >&6; }
|
|
+cat >conftest.$ac_ext <<_ACEOF
|
|
+/* confdefs.h. */
|
|
+_ACEOF
|
|
+cat confdefs.h >>conftest.$ac_ext
|
|
+cat >>conftest.$ac_ext <<_ACEOF
|
|
+/* end confdefs.h. */
|
|
+#include <$ac_header>
|
|
+_ACEOF
|
|
+if { (ac_try="$ac_cpp conftest.$ac_ext"
|
|
+case "(($ac_try" in
|
|
+ *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
|
|
+ *) ac_try_echo=$ac_try;;
|
|
+esac
|
|
+eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\""
|
|
+$as_echo "$ac_try_echo") >&5
|
|
+ (eval "$ac_cpp conftest.$ac_ext") 2>conftest.er1
|
|
+ ac_status=$?
|
|
+ grep -v '^ *+' conftest.er1 >conftest.err
|
|
+ rm -f conftest.er1
|
|
+ cat conftest.err >&5
|
|
+ $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5
|
|
+ (exit $ac_status); } >/dev/null && {
|
|
+ test -z "$ac_c_preproc_warn_flag$ac_c_werror_flag" ||
|
|
+ test ! -s conftest.err
|
|
+ }; then
|
|
+ ac_header_preproc=yes
|
|
+else
|
|
+ $as_echo "$as_me: failed program was:" >&5
|
|
+sed 's/^/| /' conftest.$ac_ext >&5
|
|
+
|
|
+ ac_header_preproc=no
|
|
+fi
|
|
+
|
|
+rm -f conftest.err conftest.$ac_ext
|
|
+{ $as_echo "$as_me:$LINENO: result: $ac_header_preproc" >&5
|
|
+$as_echo "$ac_header_preproc" >&6; }
|
|
+
|
|
+# So? What about this header?
|
|
+case $ac_header_compiler:$ac_header_preproc:$ac_c_preproc_warn_flag in
|
|
+ yes:no: )
|
|
+ { $as_echo "$as_me:$LINENO: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&5
|
|
+$as_echo "$as_me: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&2;}
|
|
+ { $as_echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the compiler's result" >&5
|
|
+$as_echo "$as_me: WARNING: $ac_header: proceeding with the compiler's result" >&2;}
|
|
+ ac_header_preproc=yes
|
|
+ ;;
|
|
+ no:yes:* )
|
|
+ { $as_echo "$as_me:$LINENO: WARNING: $ac_header: present but cannot be compiled" >&5
|
|
+$as_echo "$as_me: WARNING: $ac_header: present but cannot be compiled" >&2;}
|
|
+ { $as_echo "$as_me:$LINENO: WARNING: $ac_header: check for missing prerequisite headers?" >&5
|
|
+$as_echo "$as_me: WARNING: $ac_header: check for missing prerequisite headers?" >&2;}
|
|
+ { $as_echo "$as_me:$LINENO: WARNING: $ac_header: see the Autoconf documentation" >&5
|
|
+$as_echo "$as_me: WARNING: $ac_header: see the Autoconf documentation" >&2;}
|
|
+ { $as_echo "$as_me:$LINENO: WARNING: $ac_header: section \"Present But Cannot Be Compiled\"" >&5
|
|
+$as_echo "$as_me: WARNING: $ac_header: section \"Present But Cannot Be Compiled\"" >&2;}
|
|
+ { $as_echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the preprocessor's result" >&5
|
|
+$as_echo "$as_me: WARNING: $ac_header: proceeding with the preprocessor's result" >&2;}
|
|
+ { $as_echo "$as_me:$LINENO: WARNING: $ac_header: in the future, the compiler will take precedence" >&5
|
|
+$as_echo "$as_me: WARNING: $ac_header: in the future, the compiler will take precedence" >&2;}
|
|
+ ( cat <<\_ASBOX
|
|
+## ----------------------------------------------- ##
|
|
+## Report this to http://www.squid-cache.org/bugs/ ##
|
|
+## ----------------------------------------------- ##
|
|
+_ASBOX
|
|
+ ) | sed "s/^/$as_me: WARNING: /" >&2
|
|
+ ;;
|
|
+esac
|
|
+{ $as_echo "$as_me:$LINENO: checking for $ac_header" >&5
|
|
+$as_echo_n "checking for $ac_header... " >&6; }
|
|
+if { as_var=$as_ac_Header; eval "test \"\${$as_var+set}\" = set"; }; then
|
|
+ $as_echo_n "(cached) " >&6
|
|
+else
|
|
+ eval "$as_ac_Header=\$ac_header_preproc"
|
|
+fi
|
|
+ac_res=`eval 'as_val=${'$as_ac_Header'}
|
|
+ $as_echo "$as_val"'`
|
|
+ { $as_echo "$as_me:$LINENO: result: $ac_res" >&5
|
|
+$as_echo "$ac_res" >&6; }
|
|
+
|
|
+fi
|
|
+if test `eval 'as_val=${'$as_ac_Header'}
|
|
+ $as_echo "$as_val"'` = yes; then
|
|
+ cat >>confdefs.h <<_ACEOF
|
|
+#define `$as_echo "HAVE_$ac_header" | $as_tr_cpp` 1
|
|
+_ACEOF
|
|
+
|
|
+else
|
|
+ { { $as_echo "$as_me:$LINENO: error: neither <gssapi/gssapi.h> nor <gssapi.h> found" >&5
|
|
+$as_echo "$as_me: error: neither <gssapi/gssapi.h> nor <gssapi.h> found" >&2;}
|
|
+ { (exit 1); exit 1; }; }
|
|
+
|
|
+fi
|
|
+
|
|
+done
|
|
+
|
|
+ fi
|
|
+fi
|
|
+
|
|
# Check whether --enable-ntlm-fail-open was given.
|
|
if test "${enable_ntlm_fail_open+set}" = set; then
|
|
enableval=$enable_ntlm_fail_open; if test "$enableval" = "yes" ; then
|
|
--- include/autoconf.h.in.orig 2008-12-23 05:19:29.000000000 +0100
|
|
+++ include/autoconf.h.in 2008-12-24 15:05:33.000000000 +0100
|
|
@@ -188,6 +188,12 @@
|
|
/* Define to 1 if you have the `htole16' function. */
|
|
#undef HAVE_HTOLE16
|
|
|
|
+/* Define to 1 if you have the <gssapi/gssapi.h> header file. */
|
|
+#undef HAVE_GSSAPI_GSSAPI_H
|
|
+
|
|
+/* Define to 1 if you have the <gssapi.h> header file. */
|
|
+#undef HAVE_GSSAPI_H
|
|
+
|
|
/* Define to 1 if you have the `initgroups' function. */
|
|
#undef HAVE_INITGROUPS
|
|
|
|
--- helpers/negotiate_auth/squid_kerb_auth/Makefile.in.orig 2008-12-23 05:19:26.000000000 +0100
|
|
+++ helpers/negotiate_auth/squid_kerb_auth/Makefile.in 2008-12-24 15:05:33.000000000 +0100
|
|
@@ -154,6 +154,18 @@
|
|
INSTALL_PROGRAM = @INSTALL_PROGRAM@
|
|
INSTALL_SCRIPT = @INSTALL_SCRIPT@
|
|
INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@
|
|
+#-L$(top_builddir)/lib -lmiscutil $(XTRA_LIBS)
|
|
+
|
|
+# HEIMDAL
|
|
+#KERBINC = -DHEIMDAL -I/usr/include/heimdal
|
|
+#KERBLIBS = -lgssapi -lkrb5 -lcom_err -lasn1 -lroken
|
|
+
|
|
+# MIT
|
|
+#KERBINC =
|
|
+#KERBLIBS = -lgssapi_krb5 -lkrb5 -lcom_err
|
|
+KERBINC = -DHEIMDAL @KERBINC@
|
|
+KERBLIBS = @KERBLIBS@
|
|
+KRB5CONFIG = @KRB5CONFIG@
|
|
LDFLAGS = @LDFLAGS@
|
|
LIBADD_DL = @LIBADD_DL@
|
|
LIBOBJS = @LIBOBJS@
|
|
@@ -305,15 +317,6 @@
|
|
squid_kerb_auth_SOURCES = $(SOURCE) $(SPNEGO)
|
|
#-I$(top_srcdir)/include -I$(top_srcdir)/src
|
|
LDADD = $(KERBLIBS)
|
|
-#-L$(top_builddir)/lib -lmiscutil $(XTRA_LIBS)
|
|
-
|
|
-# HEIMDAL
|
|
-#KERBINC = -DHEIMDAL -I/usr/include/heimdal
|
|
-#KERBLIBS = -lgssapi -lkrb5 -lcom_err -lasn1 -lroken
|
|
-
|
|
-# MIT
|
|
-KERBINC =
|
|
-KERBLIBS = -lgssapi_krb5 -lkrb5 -lcom_err
|
|
all: all-am
|
|
|
|
.SUFFIXES:
|
|
--- helpers/negotiate_auth/squid_kerb_auth/squid_kerb_auth.c.orig 2008-12-23 05:19:29.000000000 +0100
|
|
+++ helpers/negotiate_auth/squid_kerb_auth/squid_kerb_auth.c 2008-12-24 15:05:33.000000000 +0100
|
|
@@ -24,6 +24,7 @@
|
|
/*
|
|
* Hosted at http://sourceforge.net/projects/squidkerbauth
|
|
*/
|
|
+#include "config.h"
|
|
#include <string.h>
|
|
#include <stdio.h>
|
|
#include <stdlib.h>
|
|
@@ -31,6 +32,7 @@
|
|
#include <unistd.h>
|
|
#include <time.h>
|
|
#include <sys/time.h>
|
|
+#include <sys/param.h>
|
|
|
|
#include "base64.h"
|
|
#ifndef HAVE_SPNEGO
|
|
@@ -51,7 +53,11 @@
|
|
#define PROGRAM "squid_kerb_auth"
|
|
|
|
#ifdef HEIMDAL
|
|
+#ifdef HAVE_GSSAPI_GSSAPI_H
|
|
+#include <gssapi/gssapi.h>
|
|
+#else
|
|
#include <gssapi.h>
|
|
+#endif
|
|
#define gss_nt_service_name GSS_C_NT_HOSTBASED_SERVICE
|
|
#else
|
|
#include <gssapi/gssapi.h>
|