New command -launch_frontend
This commit is contained in:
@ -268,6 +268,32 @@ else
|
||||
fi
|
||||
AC_SUBST(EXTF_SUID_DEF)
|
||||
|
||||
|
||||
AC_ARG_ENABLE(launch-frontend,
|
||||
[ --enable-launch-frontend Enable start of piped frontend program by xorriso, default=yes],
|
||||
, enable_launch_frontend=yes)
|
||||
if test x"$enable_launch_frontend" = xyes; then
|
||||
LFRONT_DEF="-DXorriso_allow_launch_frontenD"
|
||||
echo "enabled xorriso command -launch_frontend"
|
||||
else
|
||||
LFRONT_DEF=
|
||||
echo "disabled xorriso command -launch_frontend"
|
||||
fi
|
||||
AC_SUBST(LFRONT_DEF)
|
||||
|
||||
AC_ARG_ENABLE(launch-frontend-setuid,
|
||||
[ --enable-launch-frontend-setuid Enable start of piped frontend program under setuid, default=no],
|
||||
, enable_launch_frontend_setuid=no)
|
||||
if test x$enable_launch_frontend_setuid = xyes; then
|
||||
LFRONT_SUID_DEF="-DXorriso_allow_extf_suiD"
|
||||
echo "enabled xorriso command -launch_frontend under setuid"
|
||||
else
|
||||
LFRONT_SUID_DEF=
|
||||
echo "disabled xorriso command -launch_frontend under setuid"
|
||||
fi
|
||||
AC_SUBST(LFRONT_SUID_DEF)
|
||||
|
||||
|
||||
AC_ARG_ENABLE(dvd-obs-64k,
|
||||
[ --enable-dvd-obs-64k 64 KB default size for xorriso DVD/BD writing, default=no],
|
||||
, enable_dvd_obs_64=no)
|
||||
@ -370,7 +396,7 @@ else
|
||||
CFLAGS="-DDEBUG $CFLAGS"
|
||||
fi
|
||||
|
||||
CFLAGS="$READLINE_DEF $LIBACL_DEF $XATTR_DEF $EXTF_DEF $EXTF_SUID_DEF $ZLIB_DEF $LIBJTE_DEF $XORRISO_DVD_OBS_64K $CFLAGS"
|
||||
CFLAGS="$READLINE_DEF $LIBACL_DEF $XATTR_DEF $EXTF_DEF $EXTF_SUID_DEF $LFRONT_DEF $LFRONT_SUID_DEF $ZLIB_DEF $LIBJTE_DEF $XORRISO_DVD_OBS_64K $CFLAGS"
|
||||
|
||||
AC_CONFIG_FILES([
|
||||
Makefile
|
||||
|
Reference in New Issue
Block a user