* Bumped version number to 0.5.0

* Updated copyright notice to the upcoming year
* Some s/DBus/D-Bus/g in the comments
* Updated TODO list
* Removed hardcoded version number from output file names
* Added --enable-debug switch to ./configure (debug mode is now off by default)
* Reordered autogen.sh (Robert Schwebel)
* Removed autogenerated files (Robert Schwebel)
* Fixed 'make maintainer-clean' (Robert Schebel)


git-svn-id: http://dev.openwengo.org/svn/openwengo/wengophone-ng/branches/wengophone-dbus-api/libs/dbus@9042 30a43799-04e7-0310-8b2b-ea0d24f86d0e
This commit is contained in:
pdurante 2006-12-31 02:03:53 +00:00
parent d74a45890a
commit 12266bd407
82 changed files with 178 additions and 120069 deletions

View file

@ -1,7 +1,7 @@
# Autojunk script for libdbus++
# Autojunk script for libdbus-c++
AC_PREREQ(2.59)
AC_INIT([libdbus-c++], 0.3.0, [shackan@gmail.com])
AC_INIT([libdbus-c++], 0.5.0, [shackan@gmail.com])
AM_INIT_AUTOMAKE(AC_PACKAGE_NAME, AC_PACKAGE_VERSION)
AM_CONFIG_HEADER([include/dbus-c++/config.h])
@ -11,13 +11,18 @@ AC_CANONICAL_HOST
# Set configuration options
AC_ARG_ENABLE(debug,
AS_HELP_STRING([--enable-debug],
[enable debugging support]),
enable_debug=$enableval,enable_debug=auto
)
AC_ARG_ENABLE(doxygen-docs,
AS_HELP_STRING([--enable-doxygen-docs],
[build DOXYGEN documentation (requires Doxygen)]),
enable_doxygen_docs=$enableval,enable_doxygen_docs=auto
)
# Check for programs
AC_LANG_CPLUSPLUS
@ -25,8 +30,6 @@ AC_LANG_CPLUSPLUS
AC_PROG_CC
AC_PROG_CXX
#AM_ENABLE_STATIC
#AM_DISABLE_SHARED
AM_PROG_LIBTOOL
PKG_PROG_PKG_CONFIG
@ -57,10 +60,11 @@ xml_LIBS=-lexpat
AC_SUBST(xml_CFLAGS)
AC_SUBST(xml_LIBS)
CXXFLAGS="-ggdb -O0 -DDEBUG -Wall"
#CXXFLAGS="-O3 -DDEBUG -Wall"
AC_SUBST(DEBUG_FLAGS)
if test x$enable_debug = xyes ; then
CXXFLAGS="-Wall -ggdb -O0 -DDEBUG"
else
CXXFLAGS="-Wall -O3 -DDEBUG"
fi
# Doxygen Documentation
@ -79,7 +83,7 @@ if test x$enable_doxygen_docs = xauto ; then
enable_doxygen_docs=no
fi
if test x$enable_doxygen_docs = xyes; then
if test x$enable_doxygen_docs = xyes ; then
if test x$have_doxygen = xno; then
AC_MSG_ERROR([Building Doxygen docs explicitly required, but Doxygen not found])
fi
@ -101,5 +105,5 @@ AC_OUTPUT(
examples/properties/Makefile
examples/echo/Makefile
examples/hal/Makefile
dbus-c++-0.3.pc
dbus-c++.pc
)