Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
ISC Open Source Projects
BIND
Commits
3ec6b563
Commit
3ec6b563
authored
Aug 17, 2000
by
Brian Wellington
Browse files
--with-gssapi=PATH support.
parent
c9e998ea
Changes
2
Expand all
Show whitespace changes
Inline
Side-by-side
configure
View file @
3ec6b563
This diff is collapsed.
Click to expand it.
configure.in
View file @
3ec6b563
...
...
@@ -18,7 +18,7 @@ AC_DIVERT_PUSH(AC_DIVERSION_NOTICE)dnl
esyscmd([sed "s/^/# /" COPYRIGHT])dnl
AC_DIVERT_POP()dnl
AC_REVISION($Revision: 1.17
5
$)
AC_REVISION($Revision: 1.17
6
$)
AC_INIT(lib/dns/name.c)
AC_PREREQ(2.13)
...
...
@@ -229,6 +229,36 @@ AC_SUBST(DST_OPENSSL_OBJS)
AC_SUBST(DNS_OPENSSL_LIBS)
#
# was --with-gssapi specified?
#
AC_MSG_CHECKING(for GSSAPI library)
AC_ARG_WITH(gssapi,
[ --with-gssapi=PATH Specify path for system-supplied GSSAPI],
use_gssapi="$withval", use_gssapi="no")
case "$use_gssapi" in
no)
USE_GSSAPI=''
DST_GSSAPI_INC=''
DNS_GSSAPI_LIBS=''
AC_MSG_RESULT(none found)
;;
yes)
AC_MSG_ERROR([--with-gssapi must specify a path])
;;
*)
USE_GSSAPI='-DGSSAPI'
DST_GSSAPI_INC="-I$use_gssapi/include"
DNS_GSSAPI_LIBS="-L$use_gssapi/lib -lgssapi_krb5"
AC_MSG_RESULT(using gssapi from $use_gssapi/lib and $use_gssapi/include)
;;
esac
AC_SUBST(USE_GSSAPI)
AC_SUBST(DST_GSSAPI_INC)
AC_SUBST(DNS_GSSAPI_LIBS)
#
# NetBSD has multiple pthreads implementations. The recommended
# one to use is "unproven-pthreads". The older "mit-pthreads"
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment