From 6f3ccd507b2dcd095baf4dbcd004b06088f77ad7 Mon Sep 17 00:00:00 2001 From: Johanna Amann Date: Fri, 1 Jun 2018 12:48:38 -0700 Subject: [PATCH] Allow setting KRB5 root dir in configure --- configure | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/configure b/configure index cf1c901449..ed4cbf3d6e 100755 --- a/configure +++ b/configure @@ -72,6 +72,7 @@ Usage: $0 [OPTION]... [VAR=VALUE]... Optional Packages in Non-Standard Locations: --with-geoip=PATH path to the libGeoIP install root + --with-krb5=PATH path to krb5 install root --with-perftools=PATH path to Google Perftools install root --with-jemalloc=PATH path to jemalloc install root --with-python-lib=PATH path to libpython @@ -250,6 +251,9 @@ while [ $# -ne 0 ]; do --with-geoip=*) append_cache_entry LibGeoIP_ROOT_DIR PATH $optarg ;; + --with-krb5=*) + append_cache_entry LibKrb5_ROOT_DIR PATH $optarg + ;; --with-perftools=*) append_cache_entry GooglePerftools_ROOT_DIR PATH $optarg ;;