summaryrefslogtreecommitdiffstats
path: root/src/aclocal.m4
diff options
context:
space:
mode:
authorKen Raeburn <raeburn@mit.edu>2002-09-03 23:18:41 +0000
committerKen Raeburn <raeburn@mit.edu>2002-09-03 23:18:41 +0000
commitf7c4a6f160688185e96c2d7bb34512a34bdcd088 (patch)
treeba3cf8ca588061fc1e0aac1f664d50b634f286cf /src/aclocal.m4
parente19c6792f4ebecc6063edf661fb93b8025ef179e (diff)
downloadkrb5-f7c4a6f160688185e96c2d7bb34512a34bdcd088.tar.gz
krb5-f7c4a6f160688185e96c2d7bb34512a34bdcd088.tar.xz
krb5-f7c4a6f160688185e96c2d7bb34512a34bdcd088.zip
Support SS_LIB=... at configure time
git-svn-id: svn://anonsvn.mit.edu/krb5/trunk@14828 dc483132-0cff-0310-8789-dd5450dbe970
Diffstat (limited to 'src/aclocal.m4')
-rw-r--r--src/aclocal.m46
1 files changed, 5 insertions, 1 deletions
diff --git a/src/aclocal.m4 b/src/aclocal.m4
index 51bd0b7e7e..b54b07c4be 100644
--- a/src/aclocal.m4
+++ b/src/aclocal.m4
@@ -1435,11 +1435,15 @@ AC_SUBST(COM_ERR_VERSION)
AC_DEFUN([KRB5_AC_CHOOSE_SS],[
AC_ARG_WITH(system-ss,
AC_HELP_STRING(--with-system-ss,use system -lss and mk_cmds @<:@default: use a private version@:>@))
+AC_ARG_VAR(SS_LIB,[system libraries for 'ss' package, if --with-system-ss was specified [-lss]])
if test "x$with_system_ss" = xyes ; then
SS_VERSION=sys
- # check for various libraries we might need
+ # todo: check for various libraries we might need
+ # in the meantime...
+ test "x${SS_LIB+set}" = xset || SS_LIB=-lss
else
SS_VERSION=k5
fi
+AC_SUBST(SS_LIB)
AC_SUBST(SS_VERSION)
])