From f87ecbd2d429d54c2c87c4af9c4b4fb4d935a8e4 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 5dadcbd44e..526c927ed8 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 4a37afbb19..3b97524363 100755 --- a/configure +++ b/configure @@ -14663,6 +14663,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 0ddadff551..6677f9b384 100644 --- a/configure.in +++ b/configure.in @@ -1113,6 +1113,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