Re-enable bsdauth support. Reported and tested by ajacoutot@

This commit is contained in:
matthieu 2007-04-07 17:58:02 +00:00
parent 9bb4a809a9
commit 18ce9e9e14
2 changed files with 12 additions and 1 deletions

View File

@ -1,4 +1,4 @@
# $OpenBSD: Makefile.bsd-wrapper,v 1.10 2007/03/26 12:15:47 matthieu Exp $
# $OpenBSD: Makefile.bsd-wrapper,v 1.11 2007/04/07 17:58:02 matthieu Exp $
PIXMAPDIR=/etc/X11/xdm/pixmaps
@ -10,6 +10,7 @@ DEFAULT_VT= --with-default-vt=vt02
.endif
CONFIGURE_ARGS= --enable-privsep \
--enable-bsdauth \
$(DEFAULT_VT) \
--disable-dynamic-greeter \
--with-xdmlibdir=/etc/X11/xdm \

View File

@ -193,6 +193,16 @@ if test x$ENABLE_PRIVSEP = xyes ; then
AC_DEFINE(X_PRIVSEP, 1, [Use X server privilege separation])
fi
#
# BSD auth
AC_ARG_ENABLE(bsdauth,
AC_HELP_STRING([--enable-bsdauth],
[Build support for BSD authentification (default is NO)]),
[ENABLE_BSDAUTH="$enableval"], [ENABLE_BSDAUTH="no"])
if test x$ENABLE_BSDAUTH = xyes ; then
AC_DEFINE(USE_BSDAUTH, 1, [Use BSD authentification])
fi
# Figure out where everything goes in the filesystem
AC_ARG_WITH(xdmlibdir,