mirror of
https://github.com/samba-team/samba.git
synced 2024-12-27 03:21:53 +03:00
d9ad17f945
This should only be used for testing and when you're
absolutly sure the installed heimdal libraries
support the features we need.
(E.g. heimdal-1.2 or lower should NOT work)
metze
(This used to be commit 66b76b018d
)
24 lines
526 B
Plaintext
24 lines
526 B
Plaintext
|
|
external_heimdal=no
|
|
AC_MSG_CHECKING([Whether to use external heimdal libraries])
|
|
AC_ARG_ENABLE(external-heimdal,
|
|
[ --enable-external-heimdal Enable external heimdal libraries (experimental,default=no)],
|
|
[ external_heimdal=$enableval ],
|
|
[ external_heimdal=no ])
|
|
AC_MSG_RESULT($external_heimdal)
|
|
|
|
if test x"$external_heimdal" = x"yes"; then
|
|
|
|
# external_heimdal_start
|
|
m4_include(heimdal_build/external.m4)
|
|
# external_heimdal_end
|
|
|
|
else
|
|
|
|
# internal_heimdal_start
|
|
m4_include(heimdal_build/internal.m4)
|
|
# internal_heimdal_end
|
|
|
|
fi
|
|
|