asio version 1.2.0 released

This commit is contained in:
chris_kohlhoff 2008-08-14 11:03:18 +00:00
parent 8c4141dd08
commit e539867bd4
3 changed files with 14 additions and 9 deletions

View File

@ -1,4 +1,4 @@
asio version 1.1.1
Released Thursday, 3 July 2008.
asio version 1.2.0
Released Thursday, 14 August 2008.
See doc/index.html for API documentation and a tutorial.

View File

@ -1,4 +1,4 @@
AC_INIT(asio, [1.1.1])
AC_INIT(asio, [1.2.0])
AC_CONFIG_SRCDIR(include/asio.hpp)
AM_MAINTAINER_MODE
AM_INIT_AUTOMAKE([tar-ustar])
@ -17,6 +17,10 @@ AC_ARG_WITH(boost,
CPPFLAGS="$CPPFLAGS -I${withval}"
],
[
BOOSTDIR="`pwd`/../boost_1_36_0"
if test -d "${BOOSTDIR}"; then
CPPFLAGS="$CPPFLAGS -I${BOOSTDIR}"
else
BOOSTDIR="`pwd`/../boost_1_35_0"
if test -d "${BOOSTDIR}"; then
CPPFLAGS="$CPPFLAGS -I${BOOSTDIR}"
@ -41,6 +45,7 @@ AC_ARG_WITH(boost,
fi
fi
fi
fi
])
AC_CHECK_HEADER([boost/noncopyable.hpp],,

View File

@ -18,6 +18,6 @@
// ASIO_VERSION % 100 is the sub-minor version
// ASIO_VERSION / 100 % 1000 is the minor version
// ASIO_VERSION / 100000 is the major version
#define ASIO_VERSION 100101 // 1.1.1
#define ASIO_VERSION 100200 // 1.2.0
#endif // ASIO_VERSION_HPP