mirror of https://github.com/BOINC/boinc.git
*** empty log message ***
svn path=/trunk/boinc/; revision=6227
This commit is contained in:
parent
6f4fe1379f
commit
75c0ab74c0
|
@ -6952,3 +6952,11 @@ David 22 May 2005
|
||||||
|
|
||||||
api/
|
api/
|
||||||
boinc_api.C
|
boinc_api.C
|
||||||
|
|
||||||
|
Rom 23 May 2005
|
||||||
|
- Modify the configure.ac script to explicitly state which combination
|
||||||
|
of wxWidget libraries we need to link against, otherwise it will
|
||||||
|
fall back to a default which may cause more harm than good.
|
||||||
|
|
||||||
|
/
|
||||||
|
configure.ac
|
||||||
|
|
15
configure.ac
15
configure.ac
|
@ -361,12 +361,21 @@ AM_OPTIONS_WXCONFIG
|
||||||
|
|
||||||
dnl check for wxWidgets
|
dnl check for wxWidgets
|
||||||
|
|
||||||
if test "${enable_debug}" = yes ; then
|
if test "${enable_client_release}" = yes ; then
|
||||||
AM_PATH_WXCONFIG([2.6.0], [wxWin=1], [wxWin=0], --debug)
|
if test "${enable_debug}" = yes ; then
|
||||||
|
AM_PATH_WXCONFIG([2.6.0], [wxWin=1], [wxWin=0], --static=yes --unicode=no --debug=yes)
|
||||||
|
else
|
||||||
|
AM_PATH_WXCONFIG([2.6.0], [wxWin=1], [wxWin=0], --static=yes --unicode=no --debug=no)
|
||||||
|
fi
|
||||||
else
|
else
|
||||||
AM_PATH_WXCONFIG([2.6.0], [wxWin=1], [wxWin=0])
|
if test "${enable_debug}" = yes ; then
|
||||||
|
AM_PATH_WXCONFIG([2.6.0], [wxWin=1], [wxWin=0], --unicode=no --debug=yes)
|
||||||
|
else
|
||||||
|
AM_PATH_WXCONFIG([2.6.0], [wxWin=1], [wxWin=0], --unicode=no --debug=no)
|
||||||
|
fi
|
||||||
fi
|
fi
|
||||||
|
|
||||||
|
|
||||||
if ( test "${enable_client}" = yes ) && ( test "$wxWin" != 1 ); then
|
if ( test "${enable_client}" = yes ) && ( test "$wxWin" != 1 ); then
|
||||||
AC_MSG_WARN([
|
AC_MSG_WARN([
|
||||||
================================================================================
|
================================================================================
|
||||||
|
|
Loading…
Reference in New Issue