New command -launch_frontend
This commit is contained in:
@ -376,6 +376,38 @@ then
|
||||
AC_DEFINE([Xorriso_allow_extf_suiD], [])
|
||||
fi
|
||||
|
||||
AH_TEMPLATE([Xorriso_allow_launch_frontenD], [Define to allow xorriso command -launch_frontend])
|
||||
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
|
||||
if test x$LFRONT_DEF = x-DXorriso_allow_launch_frontenD
|
||||
then
|
||||
AC_DEFINE([Xorriso_allow_launch_frontenD], [])
|
||||
fi
|
||||
|
||||
AH_TEMPLATE([Xorriso_allow_extf_suiD], [Define to allow xorriso command -launch_frontend when running under setuid])
|
||||
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
|
||||
if test x$LFRONT_SUID_DEF = x-DXorriso_allow_extf_suiD
|
||||
then
|
||||
AC_DEFINE([Xorriso_allow_extf_suiD], [])
|
||||
fi
|
||||
|
||||
|
||||
AH_TEMPLATE([Xorriso_dvd_obs_default_64K], [Define to make 64 KB default size for DVD/BD writing])
|
||||
AC_ARG_ENABLE(dvd-obs-64k,
|
||||
|
Reference in New Issue
Block a user