* configure.ac: --enable-exec-path should be a 'with'. Fix 'no' cases of

--with-exec-path and --with-photo-viewer.
This commit is contained in:
David Shaw 2002-07-04 14:37:40 +00:00
parent a811246420
commit 5d74fb31d8
2 changed files with 14 additions and 9 deletions

View File

@ -1,5 +1,8 @@
2002-07-04 David Shaw <dshaw@jabberwocky.com>
* configure.ac: --enable-exec-path should be a 'with'. Fix 'no'
cases of --with-exec-path and --with-photo-viewer.
* README: Document --disable-exec, --disable-photo-viewers,
--disable-keyserver-helpers, --enable-exec-path, and
--with-photo-viewer.

View File

@ -131,15 +131,15 @@ fi
if test "$use_exec" = yes ; then
AC_MSG_CHECKING([whether to use a restricted exec-path])
AC_ARG_ENABLE(exec-path,
[ --enable-exec-path=PATH restrict exec-path to PATH],
[if test "$enableval" = yes ; then
enableval=no
else
AC_DEFINE_UNQUOTED(USE_EXEC_PATH,"$enableval",
AC_ARG_WITH(exec-path,
[ --with-exec-path=PATH restrict exec-path to PATH],
[if test "$withval" = yes ; then
withval=no
elif test "$withval" != no ; then
AC_DEFINE_UNQUOTED(FIXED_EXEC_PATH,"$withval",
[if set, restrict exec-path to this value])
fi],enableval=no)
AC_MSG_RESULT($enableval)
fi],withval=no)
AC_MSG_RESULT($withval)
AC_MSG_CHECKING([whether to enable photo ID viewing])
AC_ARG_ENABLE(photo-viewers,
@ -154,7 +154,9 @@ if test "$use_exec" = yes ; then
AC_MSG_CHECKING([whether to use a fixed photo ID viewer])
AC_ARG_WITH(photo-viewer,
[ --with-photo-viewer=FIXED_VIEWER set a fixed photo ID viewer],
[if test "$withval" != yes ; then
[if test "$withval" = yes ; then
withval=no
elif test "$withval" != no ; then
AC_DEFINE_UNQUOTED(FIXED_PHOTO_VIEWER,"$withval",
[if set, restrict photo-viewer to this])
fi],withval=no)