*** empty log message ***

svn path=/trunk/boinc/; revision=10707
This commit is contained in:
Rom Walton 2006-07-20 22:39:27 +00:00
parent 41a7ebad78
commit dd7e33f5d9
1 changed files with 14 additions and 7 deletions

View File

@ -17,12 +17,6 @@ AC_ARG_ENABLE(debug,
[enable_debug=yes],
[])
AC_ARG_ENABLE(unicode,
AS_HELP_STRING([--enable-unicode],
[enable building the manager with unicode support]),
[enable_unicode=yes],
[])
AC_ARG_ENABLE(server,
AS_HELP_STRING([--disable-server],
[disable building the scheduling server]),
@ -35,6 +29,12 @@ AC_ARG_ENABLE(client,
[],
[enable_client=yes])
AC_ARG_ENABLE(unicode,
AS_HELP_STRING([--disable-unicode],
[disable building the manager with unicode support]),
[],
[enable_unicode=yes])
m4_divert_once([HELP_ENABLE],
AS_HELP_STRING([], [Default: --enable-server --enable-client:
builds both server and client]))
@ -473,31 +473,38 @@ AM_OPTIONS_WXCONFIG
dnl check for wxWidgets
if test "${enable_client_release}" = yes ; then
echo 'Portable client-build: checking for *static* wx-libs ...'
if test "${enable_debug}" = yes ; then
if test "${enable_unicode}" = yes ; then
echo 'Portable client-build: checking for debug unicode wx-libs ...'
AM_PATH_WXCONFIG([2.6.0], [wxWin=1], [wxWin=0], --static=yes --unicode=yes --debug=yes)
else
echo 'Portable client-build: checking for debug wx-libs ...'
AM_PATH_WXCONFIG([2.6.0], [wxWin=1], [wxWin=0], --static=yes --unicode=no --debug=yes)
fi
else
if test "${enable_unicode}" = yes ; then
echo 'Portable client-build: checking for unicode wx-libs ...'
AM_PATH_WXCONFIG([2.6.0], [wxWin=1], [wxWin=0], --static=yes --unicode=yes --debug=no)
else
echo 'Portable client-build: checking for wx-libs ...'
AM_PATH_WXCONFIG([2.6.0], [wxWin=1], [wxWin=0], --static=yes --unicode=no --debug=no)
fi
fi
else
if test "${enable_debug}" = yes ; then
if test "${enable_unicode}" = yes ; then
echo 'checking for debug unicode wx-libs ...'
AM_PATH_WXCONFIG([2.6.0], [wxWin=1], [wxWin=0], --unicode=yes --debug=yes)
else
echo 'checking for debug wx-libs ...'
AM_PATH_WXCONFIG([2.6.0], [wxWin=1], [wxWin=0], --unicode=no --debug=yes)
fi
else
if test "${enable_unicode}" = yes ; then
echo 'checking for unicode wx-libs ...'
AM_PATH_WXCONFIG([2.6.0], [wxWin=1], [wxWin=0], --unicode=yes --debug=no)
else
echo 'checking for wx-libs ...'
AM_PATH_WXCONFIG([2.6.0], [wxWin=1], [wxWin=0], --unicode=no --debug=no)
fi
fi