disabled boost and ICU library detection temporarily, as they don't work
This commit is contained in:
parent
a54bf4e601
commit
4d6982ebfa
|
@ -21,7 +21,7 @@ dnl Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
||||||
dnl
|
dnl
|
||||||
dnl
|
dnl
|
||||||
dnl Author : $Author: fgerlits $
|
dnl Author : $Author: fgerlits $
|
||||||
dnl Version : $Revision: 1.6 $
|
dnl Version : $Revision: 1.7 $
|
||||||
dnl Location : $Source: /home/paul/cvs2svn-livesupport/newcvsrepo/livesupport/etc/configure.ac,v $
|
dnl Location : $Source: /home/paul/cvs2svn-livesupport/newcvsrepo/livesupport/etc/configure.ac,v $
|
||||||
dnl-----------------------------------------------------------------------------
|
dnl-----------------------------------------------------------------------------
|
||||||
|
|
||||||
|
@ -35,7 +35,7 @@ dnl-----------------------------------------------------------------------------
|
||||||
AC_INIT(LiveSupport, 1.0, bugs@campware.org)
|
AC_INIT(LiveSupport, 1.0, bugs@campware.org)
|
||||||
AC_PREREQ(2.59)
|
AC_PREREQ(2.59)
|
||||||
AC_COPYRIGHT([Copyright (c) 2004 Media Development Loan Fund under the GNU GPL])
|
AC_COPYRIGHT([Copyright (c) 2004 Media Development Loan Fund under the GNU GPL])
|
||||||
AC_REVISION($Revision: 1.6 $)
|
AC_REVISION($Revision: 1.7 $)
|
||||||
|
|
||||||
AC_CONFIG_SRCDIR(../products/scheduler/src/main.cxx)
|
AC_CONFIG_SRCDIR(../products/scheduler/src/main.cxx)
|
||||||
|
|
||||||
|
@ -275,7 +275,11 @@ if test "$BOOST_DATE_TIME_LIB" = "" ; then
|
||||||
AC_MSG_RESULT([not found boost library of sufficient version, will compile from our own])
|
AC_MSG_RESULT([not found boost library of sufficient version, will compile from our own])
|
||||||
COMPILE_BOOST="yes"
|
COMPILE_BOOST="yes"
|
||||||
else
|
else
|
||||||
COMPILE_BOOST="no"
|
dnl COMPILE_BOOST="no"
|
||||||
|
dnl force compilation of boost, as recognizing a pre-existing version
|
||||||
|
dnl does not seem to work -- fgerlits, 2005-08-08
|
||||||
|
AC_MSG_RESULT([found boost library, but recompiling anyway])
|
||||||
|
COMPILE_BOOST="yes"
|
||||||
fi
|
fi
|
||||||
|
|
||||||
|
|
||||||
|
@ -306,8 +310,12 @@ PKG_CHECK_MODULES(GTKMM,[gtkmm-2.4 >= 2.5.5],
|
||||||
dnl check for ICU 3.0 or more recent
|
dnl check for ICU 3.0 or more recent
|
||||||
AC_CHECK_ICU(3.0,
|
AC_CHECK_ICU(3.0,
|
||||||
[
|
[
|
||||||
AC_MSG_RESULT([using ICU found on the system])
|
dnl AC_MSG_RESULT([using ICU found on the system])
|
||||||
COMPILE_ICU="no"
|
dnl COMPILE_ICU="no"
|
||||||
|
dnl force compilation of ICU, as recognizing a pre-existing version
|
||||||
|
dnl does not seem to work -- fgerlits, 2005-08-08
|
||||||
|
AC_MSG_RESULT([found ICU on the system, but recompiling anyway])
|
||||||
|
COMPILE_ICU="yes"
|
||||||
],
|
],
|
||||||
[
|
[
|
||||||
AC_MSG_RESULT([not found ICU of sufficient version, will compile from our own])
|
AC_MSG_RESULT([not found ICU of sufficient version, will compile from our own])
|
||||||
|
|
Loading…
Reference in New Issue