Use boost 1.33.1 by default.

This commit is contained in:
chris_kohlhoff 2005-12-09 05:55:12 +00:00
parent 2eaa2423fb
commit 02b41da000
4 changed files with 9 additions and 4 deletions

View File

@ -16,10 +16,15 @@ AC_ARG_WITH(boost,
CPPFLAGS="$CPPFLAGS -I${withval}"
],
[
BOOSTDIR="`pwd`/../boost_1_33_1"
if test -d "${BOOSTDIR}"; then
CPPFLAGS="$CPPFLAGS -I${BOOSTDIR}"
else
BOOSTDIR="`pwd`/../boost_1_33_0"
if test -d "${BOOSTDIR}"; then
CPPFLAGS="$CPPFLAGS -I${BOOSTDIR}"
fi
fi
])
AC_CHECK_HEADER([boost/noncopyable.hpp],,

View File

@ -1,5 +1,5 @@
!ifndef BOOSTDIR
BOOSTDIR = ../../boost_1_33_0
BOOSTDIR = ../../boost_1_33_1
!endif
CXXFLAGS = -q -O2 -v -vi -y -a8 -b -Ve- -Vx- -tWM -tWR -tWC -w-inl -w-par -I../include -I$(BOOSTDIR)

View File

@ -1,5 +1,5 @@
ifndef BOOSTDIR
BOOSTDIR = ../../boost_1_33_0
BOOSTDIR = ../../boost_1_33_1
endif
CXXFLAGS = -g -O2 -Wall -mthreads -I../include -I$(BOOSTDIR)

View File

@ -1,5 +1,5 @@
!ifndef BOOSTDIR
BOOSTDIR = ../../boost_1_33_0
BOOSTDIR = ../../boost_1_33_1
!endif
COMMON_CXXFLAGS = -nologo -EHac -GR -MT -I. -I../include -I$(BOOSTDIR)