From a5be0bbbe49eb274d67cb0a6b7ae7907e8a35bbd Mon Sep 17 00:00:00 2001 From: Mark Andrews Date: Tue, 12 Nov 2013 11:38:06 +1100 Subject: [PATCH] 3669. [port] freebsd: --with-gssapi needs -lhx509. [RT #35001] (cherry picked from commit b564c8503d4377f6b423fcd67a5ce60798d8123e) --- CHANGES | 2 ++ configure | 1 + configure.in | 1 + 3 files changed, 4 insertions(+) diff --git a/CHANGES b/CHANGES index 0c9a521434..5437e7c62f 100644 --- a/CHANGES +++ b/CHANGES @@ -1,3 +1,5 @@ +3669. [port] freebsd: --with-gssapi needs -lhx509. [RT #35001] + 3668. [bug] Fix cast in lex.c which could see 0xff treated as eof. [RT #34993] diff --git a/configure b/configure index 04e37a7bbe..a98780efc5 100755 --- a/configure +++ b/configure @@ -14439,6 +14439,7 @@ done "-lgssapi" \ "-lgssapi -lkrb5 -ldes -lcrypt -lasn1 -lroken -lcom_err" \ "-lgssapi -lkrb5 -lcrypto -lcrypt -lasn1 -lroken -lcom_err" \ + "-lgssapi -lkrb5 -lhx509 -lcrypto -lcrypt -lasn1 -lroken -lcom_err" \ "-lgss -lkrb5" do # Note that this does not include $saved_libs, because diff --git a/configure.in b/configure.in index 912713e240..49c8a9b9f8 100644 --- a/configure.in +++ b/configure.in @@ -1013,6 +1013,7 @@ case "$use_gssapi" in "-lgssapi" \ "-lgssapi -lkrb5 -ldes -lcrypt -lasn1 -lroken -lcom_err" \ "-lgssapi -lkrb5 -lcrypto -lcrypt -lasn1 -lroken -lcom_err" \ + "-lgssapi -lkrb5 -lhx509 -lcrypto -lcrypt -lasn1 -lroken -lcom_err" \ "-lgss -lkrb5" do # Note that this does not include $saved_libs, because