Fix quoting of tested strings

git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@19764 a592a061-630c-0410-9148-cb99ea01b6c8
This commit is contained in:
Enrico Forestieri 2007-08-23 22:18:40 +00:00
parent 09b0a337ca
commit 8518086ebe

View File

@ -410,49 +410,49 @@ AC_ARG_ENABLE(monolithic-boost,
AC_HELP_STRING([--enable-monolithic-boost], AC_HELP_STRING([--enable-monolithic-boost],
[Use monolithic boost compilations]),, [Use monolithic boost compilations]),,
[enable_monolithic_boost=no]) [enable_monolithic_boost=no])
AM_CONDITIONAL(MONOLITHIC_BOOST, test $enable_monolithic_boost = yes) AM_CONDITIONAL(MONOLITHIC_BOOST, test "$enable_monolithic_boost" = "yes")
AC_ARG_ENABLE(monolithic-client, AC_ARG_ENABLE(monolithic-client,
AC_HELP_STRING([--enable-monolithic-client], AC_HELP_STRING([--enable-monolithic-client],
[Use monolithic client compilations]),, [Use monolithic client compilations]),,
[enable_monolithic_client=no]) [enable_monolithic_client=no])
AM_CONDITIONAL(MONOLITHIC_CLIENT, test $enable_monolithic_client = yes) AM_CONDITIONAL(MONOLITHIC_CLIENT, test "$enable_monolithic_client" = "yes")
AC_ARG_ENABLE(monolithic-controllers, AC_ARG_ENABLE(monolithic-controllers,
AC_HELP_STRING([--enable-monolithic-controllers], AC_HELP_STRING([--enable-monolithic-controllers],
[Use monolithic controllers compilations]),, [Use monolithic controllers compilations]),,
[enable_monolithic_controllers=no]) [enable_monolithic_controllers=no])
AM_CONDITIONAL(MONOLITHIC_CONTROLLERS, test $enable_monolithic_controllers = yes) AM_CONDITIONAL(MONOLITHIC_CONTROLLERS, test "$enable_monolithic_controllers" = "yes")
AC_ARG_ENABLE(monolithic-insets, AC_ARG_ENABLE(monolithic-insets,
AC_HELP_STRING([--enable-monolithic-insets], AC_HELP_STRING([--enable-monolithic-insets],
[Use monolithic insets compilations]),, [Use monolithic insets compilations]),,
[enable_monolithic_insets=no]) [enable_monolithic_insets=no])
AM_CONDITIONAL(MONOLITHIC_INSETS, test $enable_monolithic_insets = yes) AM_CONDITIONAL(MONOLITHIC_INSETS, test "$enable_monolithic_insets" = "yes")
AC_ARG_ENABLE(monolithic-mathed, AC_ARG_ENABLE(monolithic-mathed,
AC_HELP_STRING([--enable-monolithic-mathed], AC_HELP_STRING([--enable-monolithic-mathed],
[Use monolithic mathed compilations]),, [Use monolithic mathed compilations]),,
[enable_monolithic_mathed=no]) [enable_monolithic_mathed=no])
AM_CONDITIONAL(MONOLITHIC_MATHED, test $enable_monolithic_mathed = yes) AM_CONDITIONAL(MONOLITHIC_MATHED, test "$enable_monolithic_mathed" = "yes")
AC_ARG_ENABLE(monolithic-core, AC_ARG_ENABLE(monolithic-core,
AC_HELP_STRING([--enable-monolithic-core], AC_HELP_STRING([--enable-monolithic-core],
[Use monolithic core files compilations]),, [Use monolithic core files compilations]),,
[enable_monolithic_core=no]) [enable_monolithic_core=no])
AM_CONDITIONAL(MONOLITHIC_CORE, test $enable_monolithic_core = yes) AM_CONDITIONAL(MONOLITHIC_CORE, test "$enable_monolithic_core" = "yes")
AC_ARG_ENABLE(monolithic-tex2lyx, AC_ARG_ENABLE(monolithic-tex2lyx,
AC_HELP_STRING([--enable-monolithic-tex2lyx], AC_HELP_STRING([--enable-monolithic-tex2lyx],
[Use monolithic tex2lyx compilations]),, [Use monolithic tex2lyx compilations]),,
[enable_monolithic_tex2lyx=no]) [enable_monolithic_tex2lyx=no])
AM_CONDITIONAL(MONOLITHIC_TEX2LYX, test $enable_monolithic_tex2lyx = yes) AM_CONDITIONAL(MONOLITHIC_TEX2LYX, test "$enable_monolithic_tex2lyx" = "yes")
AC_ARG_ENABLE(monolithic-frontend-qt4, AC_ARG_ENABLE(monolithic-frontend-qt4,
AC_HELP_STRING([--enable-monolithic-frontend-qt4], AC_HELP_STRING([--enable-monolithic-frontend-qt4],
[Use monolithic compilation of the Qt 4 frontend. Only recommended with > 512 MB of RAM]),, [Use monolithic compilation of the Qt 4 frontend. Only recommended with > 512 MB of RAM]),,
[enable_monolithic_frontend_qt4=no]) [enable_monolithic_frontend_qt4=no])
AM_CONDITIONAL(MONOLITHIC_FRONTEND_QT4, test $enable_monolithic_frontend_qt4 = yes) AM_CONDITIONAL(MONOLITHIC_FRONTEND_QT4, test "$enable_monolithic_frontend_qt4" = "yes")
AC_DEFINE_UNQUOTED([LYX_DATE],"$LYX_DATE",[Date of release]) AC_DEFINE_UNQUOTED([LYX_DATE],"$LYX_DATE",[Date of release])
AC_DEFINE_UNQUOTED([VERSION_INFO],"$VERSION_INFO",[Full version info]) AC_DEFINE_UNQUOTED([VERSION_INFO],"$VERSION_INFO",[Full version info])