Skip to content
Snippets Groups Projects
Commit 43a38263 authored by Emmanuel Milou's avatar Emmanuel Milou
Browse files

Merge branch 'stable' into sip_dev

Conflicts:

	.gitignore
	configure.ac
	src/Makefile.am
parents c2c032f6 1b59c10a
Branches
Tags
No related merge requests found
...@@ -16,6 +16,8 @@ Makefile.in ...@@ -16,6 +16,8 @@ Makefile.in
# Binary translation files # Binary translation files
*.mo *.mo
libtool libtool
# The test binary
*Tester
# Ignore rendered docs # Ignore rendered docs
doc/doxygen/core-doc doc/doxygen/core-doc
...@@ -53,7 +55,6 @@ doc/*.html ...@@ -53,7 +55,6 @@ doc/*.html
/libs/dbus-c++/autom4te* /libs/dbus-c++/autom4te*
/libs/dbus-c++/config.log /libs/dbus-c++/config.log
/libs/dbus-c++/config.status /libs/dbus-c++/config.status
/libs/dbus-c++/config.status
/libs/dbus-c++/configure /libs/dbus-c++/configure
/libs/dbus-c++/tools/dbus-c++xx-* /libs/dbus-c++/tools/dbus-c++xx-*
/libs/dbus-c++/tools/dbusxx-* /libs/dbus-c++/tools/dbusxx-*
......
# Makefile.am # Makefile.am
unittest:
@(cd test; make)
@echo ""
@echo "NOTICE: Unitary tests successfully build"
@echo "Go in the test directory to run them"
@echo ""
ACLOCAL_AMFLAGS = -I m4 ACLOCAL_AMFLAGS = -I m4
SUBDIRS = libs src ringtones po SUBDIRS = libs src ringtones po
EXTRA_DIST = m4/*.m4 tools/*.sh platform/* images/* README.gentoo EXTRA_DIST = m4/*.m4 tools/*.sh platform/* images/* README.gentoo
...@@ -39,6 +39,10 @@ AC_CONFIG_FILES([src/Makefile \ ...@@ -39,6 +39,10 @@ AC_CONFIG_FILES([src/Makefile \
src/dbus/Makefile \ src/dbus/Makefile \
src/zeroconf/Makefile]) src/zeroconf/Makefile])
dnl Unitary test section
AC_CONFIG_FILES([test/Makefile])
AC_CONFIG_FILES([po/Makefile \ AC_CONFIG_FILES([po/Makefile \
ringtones/Makefile]) ringtones/Makefile])
...@@ -109,7 +113,9 @@ AC_HEADER_TIME ...@@ -109,7 +113,9 @@ AC_HEADER_TIME
AC_C_VOLATILE AC_C_VOLATILE
AC_CHECK_TYPES([ptrdiff_t]) AC_CHECK_TYPES([ptrdiff_t])
dnl Check for library functions dnl ********************************
dnl Check for needed functions
dnl ********************************
AC_FUNC_CHOWN AC_FUNC_CHOWN
AC_FUNC_ERROR_AT_LINE AC_FUNC_ERROR_AT_LINE
AC_FUNC_FORK AC_FUNC_FORK
...@@ -126,46 +132,65 @@ AC_CHECK_FUNCS([bzero floor gethostbyname gethrtime gettimeofday \ ...@@ -126,46 +132,65 @@ AC_CHECK_FUNCS([bzero floor gethostbyname gethrtime gettimeofday \
inet_ntoa memset mkdir pathconf pow regcomp select setlocale socket \ inet_ntoa memset mkdir pathconf pow regcomp select setlocale socket \
strchr strdup strerror strrchr strstr strtol utime]) strchr strdup strerror strrchr strstr strtol utime])
dnl *****************************************
dnl Check for header files
dnl *****************************************
dnl Check for exosip2
LP_CHECK_EXOSIP2
SFLPHONE_LIBS="$SFLPHONE_LIBS" SFLPHONE_LIBS="$SFLPHONE_LIBS"
dnl Check for GNU ccRTP dnl Check for GNU ccRTP
PKG_PROG_PKG_CONFIG PKG_PROG_PKG_CONFIG
#Trying to set PJSIP using pkg-config #Trying to set PJSIP using pkg-config
PKG_CHECK_MODULES(PJSIP, libpj, have_libpj=true, have_libpj=false) PKG_CHECK_MODULES(SIP, libpj, have_libpj=true, have_libpj=false)
if test "x${have_libpj}" = "xfalse" ; then if test "x${have_libpj}" = "xfalse" ; then
AC_MSG_ERROR([PJSIP not found. http://www.pjsip.org/download.htm]) AC_MSG_ERROR([PJSIP not found. http://www.pjsip.org/download.htm])
fi fi
AC_SUBST(SIP_CFLAGS)
dnl Check for alsa development package - name: libasound2-dev
LIBASOUND2_MIN_VERSION=1.0 LIBASOUND2_MIN_VERSION=1.0
PKG_CHECK_MODULES(alsa, alsa >= ${LIBASOUND2_MIN_VERSION}) PKG_CHECK_MODULES(ALSA, alsa >= ${LIBASOUND2_MIN_VERSION})
SFLPHONE_CFLAGS="$SFLPHONE_CFLAGS $libasound2_CFLAGS" AC_SUBST(ALSA_CFLAGS)
SFLPHONE_LIBS="$SFLPHONE_LIBS $libasound2_LIBS" AC_SUBST(ALSA_LIBS)
LIBSAMPLERATE_MIN_VERSION=0.1.1 dnl Check for pulseaudio development package - name: libpulse-dev
PKG_CHECK_MODULES(samplerate, samplerate >= ${LIBSAMPLERATE_MIN_VERSION}) LIBPULSE_MIN_VERSION=0.9.6
SFLPHONE_CFLAGS="$SFLPHONE_CFLAGS $samplerate_CFLAGS" PKG_CHECK_MODULES(PULSEAUDIO, libpulse >= ${LIBPULSE_MIN_VERSION})
SFLPHONE_LIBS="$SFLPHONE_LIBS $samplerate_LIBS" AC_SUBST(PULSEAUDIO_LIBS)
AC_SUBST(PULSEAUDIO_CFLAGS)
dnl Check for the samplerate development package - name: libsamplerate0-dev
LIBSAMPLERATE_MIN_VERSION=0.1.2
PKG_CHECK_MODULES(SAMPLERATE, samplerate >= ${LIBSAMPLERATE_MIN_VERSION})
AC_SUBST(SAMPLERATE_LIBS)
AC_SUBST(SAMPLERATE_CFLAGS)
LIBCCGNU2_MIN_VERSION=1.3.1 LIBCCGNU2_MIN_VERSION=1.3.1
PKG_CHECK_MODULES(libccgnu2, libccgnu2 >= ${LIBCCGNU2_MIN_VERSION}) PKG_CHECK_MODULES(CCGNU2, libccgnu2 >= ${LIBCCGNU2_MIN_VERSION})
SFLPHONE_CFLAGS="$SFLPHONE_CFLAGS $libccgnu2_CFLAGS" AC_SUBST(CCGNU2_LIBS)
SFLPHONE_LIBS="$SFLPHONE_LIBS $libccgnu2_LIBS" AC_SUBST(CCGNU2_FLAGS)
LIBCCEXT2_MIN_VERSION=1.3.1 LIBCCEXT2_MIN_VERSION=1.3.1
PKG_CHECK_MODULES(libccext2, libccext2 >= ${LIBCCEXT2_MIN_VERSION}) PKG_CHECK_MODULES(CCEXT2, libccext2 >= ${LIBCCEXT2_MIN_VERSION})
SFLPHONE_CFLAGS="$SFLPHONE_CFLAGS $libccext2_CFLAGS" AC_SUBST(CCEXT2_LIBS)
SFLPHONE_LIBS="$SFLPHONE_LIBS $libccext2_LIBS" AC_SUBST(CCEXT2_CFLAGS)
LIBCCRT_MIN_VERSION=1.3.0 LIBCCRT_MIN_VERSION=1.3.0
PKG_CHECK_MODULES(libccrtp1, libccrtp1 >= ${LIBCCRT_MIN_VERSION}) PKG_CHECK_MODULES(CCRTP, libccrtp1 >= ${LIBCCRT_MIN_VERSION})
SFLPHONE_CFLAGS="$SFLPHONE_CFLAGS $libccrtp1_CFLAGS" AC_SUBST(CCRTP_LIBS)
SFLPHONE_LIBS="$SFLPHONE_LIBS $libccrtp1_LIBS" AC_SUBST(CCRTP_CFLAGS)
LIBDBUSCPP_MIN_VERSION=0.5 LIBDBUSCPP_MIN_VERSION=0.5
PKG_CHECK_MODULES(libdbuscpp, dbus-c++-1 >= ${LIBDBUSCPP_MIN_VERSION}) PKG_CHECK_MODULES(DBUSCPP, dbus-c++-1 >= ${LIBDBUSCPP_MIN_VERSION})
SFLPHONE_CFLAGS="$SFLPHONE_CFLAGS $libdbuscpp_CFLAGS" AC_SUBST(DBUSCPP_LIBS)
SFLPHONE_LIBS="$SFLPHONE_LIBS $libdbuscpp_LIBS" AC_SUBST(DBUSCPP_CFLAGS)
dnl Check for libcppunit-dev
CPPUNIT_MIN_VERSION=1.12
PKG_CHECK_MODULES(CPPUNIT, cppunit >= ${CPPUNIT_MIN_VERSION})
AC_SUBST(CPPUNIT_LIBS)
# check for libgsm1 (doesn't use pkg-config) # check for libgsm1 (doesn't use pkg-config)
dnl Check for libgsm dnl Check for libgsm
......
# Global variables
src=$(top_srcdir)
sflcodecdir=$(libdir)/sflphone/codecs
# Preprocessor flags
AM_CPPFLAGS = \
-I$(src)/libs \
-I$(src)/src \
-DPREFIX=\"$(prefix)\" \
-DPROGSHAREDIR=\"${datadir}/sflphone\" \
$(ZEROCONFFLAGS) \
$(IAX_FLAGS) \
@SIP_CFLAGS@ \
@DBUSCPP_CFLAGS@ \
-DCODECS_DIR=\""$(sflcodecdir)"\" \
-DENABLE_TRACE
# This file was generated by Autom4te Sat Apr 28 03:44:04 GMT 2007.
# It contains the lists of macros which have been traced.
# It can be safely removed.
@request = (
bless( [
'0',
1,
[
'/usr/share/autoconf'
],
[
'/usr/share/autoconf/autoconf/autoconf.m4f',
'/usr/share/aclocal/libtool.m4',
'/usr/share/aclocal/pkg.m4',
'/usr/share/aclocal-1.9/amversion.m4',
'/usr/share/aclocal-1.9/auxdir.m4',
'/usr/share/aclocal-1.9/cond.m4',
'/usr/share/aclocal-1.9/depend.m4',
'/usr/share/aclocal-1.9/depout.m4',
'/usr/share/aclocal-1.9/header.m4',
'/usr/share/aclocal-1.9/init.m4',
'/usr/share/aclocal-1.9/install-sh.m4',
'/usr/share/aclocal-1.9/lead-dot.m4',
'/usr/share/aclocal-1.9/make.m4',
'/usr/share/aclocal-1.9/missing.m4',
'/usr/share/aclocal-1.9/mkdirp.m4',
'/usr/share/aclocal-1.9/options.m4',
'/usr/share/aclocal-1.9/runlog.m4',
'/usr/share/aclocal-1.9/sanity.m4',
'/usr/share/aclocal-1.9/strip.m4',
'/usr/share/aclocal-1.9/tar.m4',
'configure.ac'
],
{
'_LT_AC_TAGCONFIG' => 1,
'AM_ENABLE_STATIC' => 1,
'm4_pattern_forbid' => 1,
'AC_LIBTOOL_COMPILER_OPTION' => 1,
'AC_LIBTOOL_LANG_RC_CONFIG' => 1,
'_LT_AC_SHELL_INIT' => 1,
'AC_DISABLE_SHARED' => 1,
'AC_DEFUN' => 1,
'_LT_COMPILER_BOILERPLATE' => 1,
'AC_PROG_LIBTOOL' => 1,
'AC_LIBTOOL_SETUP' => 1,
'AC_LIBTOOL_WIN32_DLL' => 1,
'_LT_AC_LANG_CXX_CONFIG' => 1,
'AM_PROG_MKDIR_P' => 1,
'AC_PROG_LD_RELOAD_FLAG' => 1,
'AM_AUTOMAKE_VERSION' => 1,
'AM_MISSING_HAS_RUN' => 1,
'AM_MISSING_PROG' => 1,
'AC_LIBTOOL_DLOPEN_SELF' => 1,
'AC_LIBTOOL_PROG_LD_HARDCODE_LIBPATH' => 1,
'_LT_AC_LANG_C_CONFIG' => 1,
'AC_LIBTOOL_PROG_LD_SHLIBS' => 1,
'AM_PROG_INSTALL_STRIP' => 1,
'_PKG_SHORT_ERRORS_SUPPORTED' => 1,
'_m4_warn' => 1,
'AC_LIBTOOL_OBJDIR' => 1,
'AM_SANITY_CHECK' => 1,
'AC_LIBTOOL_LINKER_OPTION' => 1,
'PKG_CHECK_EXISTS' => 1,
'AC_LIBTOOL_PROG_COMPILER_PIC' => 1,
'AC_LIBTOOL_LANG_GCJ_CONFIG' => 1,
'_LT_AC_CHECK_DLFCN' => 1,
'AC_LIBTOOL_SYS_GLOBAL_SYMBOL_PIPE' => 1,
'LT_AC_PROG_RC' => 1,
'AC_LIBTOOL_CXX' => 1,
'_AM_PROG_TAR' => 1,
'AC_LIBTOOL_GCJ' => 1,
'LT_AC_PROG_GCJ' => 1,
'AM_DEP_TRACK' => 1,
'_LT_AC_PROG_CXXCPP' => 1,
'AM_DISABLE_STATIC' => 1,
'_AC_PROG_LIBTOOL' => 1,
'AM_CONFIG_HEADER' => 1,
'_LT_AC_LANG_F77' => 1,
'AC_LIBTOOL_CONFIG' => 1,
'_AM_IF_OPTION' => 1,
'AC_PATH_TOOL_PREFIX' => 1,
'AC_LIBTOOL_F77' => 1,
'm4_pattern_allow' => 1,
'AM_DISABLE_SHARED' => 1,
'AM_SET_LEADING_DOT' => 1,
'AM_PROG_LIBTOOL' => 1,
'_LT_AC_LANG_CXX' => 1,
'_AM_DEPENDENCIES' => 1,
'_LT_AC_FILE_LTDLL_C' => 1,
'AM_PROG_LD' => 1,
'AC_LIBTOOL_LANG_C_CONFIG' => 1,
'_LT_AC_SYS_COMPILER' => 1,
'AM_PROG_NM' => 1,
'PKG_CHECK_MODULES' => 1,
'AU_DEFUN' => 1,
'AC_PROG_NM' => 1,
'AC_LIBTOOL_DLOPEN' => 1,
'AC_PROG_LD' => 1,
'AC_LIBLTDL_CONVENIENCE' => 1,
'AC_ENABLE_FAST_INSTALL' => 1,
'AC_PROG_LD_GNU' => 1,
'AC_DEPLIBS_CHECK_METHOD' => 1,
'AM_SET_CURRENT_AUTOMAKE_VERSION' => 1,
'AC_LIBLTDL_INSTALLABLE' => 1,
'AC_LIBTOOL_SYS_DYNAMIC_LINKER' => 1,
'_AM_SET_OPTION' => 1,
'_LT_LINKER_BOILERPLATE' => 1,
'AC_LIBTOOL_PROG_CC_C_O' => 1,
'AC_LIBTOOL_LANG_CXX_CONFIG' => 1,
'AM_INIT_AUTOMAKE' => 1,
'AC_DISABLE_STATIC' => 1,
'AM_OUTPUT_DEPENDENCY_COMMANDS' => 1,
'AC_DEFUN_ONCE' => 1,
'_LT_AC_LOCK' => 1,
'_LT_AC_LANG_RC_CONFIG' => 1,
'_LT_AC_LANG_GCJ' => 1,
'AC_LIBTOOL_RC' => 1,
'_LT_AC_PROG_ECHO_BACKSLASH' => 1,
'AC_DISABLE_FAST_INSTALL' => 1,
'AC_LIBTOOL_POSTDEP_PREDEP' => 1,
'_LT_AC_TRY_DLOPEN_SELF' => 1,
'_LT_AC_SYS_LIBPATH_AIX' => 1,
'include' => 1,
'LT_AC_PROG_SED' => 1,
'AM_ENABLE_SHARED' => 1,
'AM_AUX_DIR_EXPAND' => 1,
'_LT_AC_LANG_GCJ_CONFIG' => 1,
'AC_ENABLE_SHARED' => 1,
'AC_LIBTOOL_PROG_COMPILER_NO_RTTI' => 1,
'_LT_AC_LANG_F77_CONFIG' => 1,
'_AM_SET_OPTIONS' => 1,
'AM_RUN_LOG' => 1,
'_AM_OUTPUT_DEPENDENCY_COMMANDS' => 1,
'AC_LIBTOOL_PICMODE' => 1,
'_LT_REQUIRED_DARWIN_CHECKS' => 1,
'AC_ENABLE_STATIC' => 1,
'AC_LIBTOOL_SYS_HARD_LINK_LOCKS' => 1,
'AC_CHECK_LIBM' => 1,
'_LT_AC_TAGVAR' => 1,
'AC_LIBTOOL_SYS_LIB_STRIP' => 1,
'_AM_MANGLE_OPTION' => 1,
'AC_LIBTOOL_LANG_F77_CONFIG' => 1,
'AM_CONDITIONAL' => 1,
'AC_LIBTOOL_SYS_MAX_CMD_LEN' => 1,
'AM_SET_DEPDIR' => 1,
'_LT_CC_BASENAME' => 1,
'AM_PROG_INSTALL_SH' => 1,
'PKG_PROG_PKG_CONFIG' => 1,
'm4_include' => 1,
'AC_PROG_EGREP' => 1,
'AC_PATH_MAGIC' => 1,
'_AC_AM_CONFIG_HEADER_HOOK' => 1,
'AM_MAKE_INCLUDE' => 1
}
], 'Autom4te::Request' ),
bless( [
'1',
1,
[
'/usr/share/autoconf'
],
[
'/usr/share/autoconf/autoconf/autoconf.m4f',
'aclocal.m4',
'configure.ac'
],
{
'_LT_AC_TAGCONFIG' => 1,
'AM_PROG_F77_C_O' => 1,
'AC_INIT' => 1,
'm4_pattern_forbid' => 1,
'AC_CANONICAL_TARGET' => 1,
'AC_SUBST' => 1,
'AC_CONFIG_LIBOBJ_DIR' => 1,
'AC_FC_SRCEXT' => 1,
'AC_CANONICAL_HOST' => 1,
'AC_PROG_LIBTOOL' => 1,
'AM_INIT_AUTOMAKE' => 1,
'AC_CONFIG_SUBDIRS' => 1,
'AM_AUTOMAKE_VERSION' => 1,
'LT_CONFIG_LTDL_DIR' => 1,
'AC_REQUIRE_AUX_FILE' => 1,
'AC_CONFIG_LINKS' => 1,
'm4_sinclude' => 1,
'LT_SUPPORTED_TAG' => 1,
'AM_MAINTAINER_MODE' => 1,
'AM_GNU_GETTEXT_INTL_SUBDIR' => 1,
'_m4_warn' => 1,
'AM_PROG_CXX_C_O' => 1,
'AM_ENABLE_MULTILIB' => 1,
'AC_CONFIG_FILES' => 1,
'include' => 1,
'LT_INIT' => 1,
'AM_GNU_GETTEXT' => 1,
'AC_LIBSOURCE' => 1,
'AM_PROG_FC_C_O' => 1,
'AC_CANONICAL_BUILD' => 1,
'AC_FC_FREEFORM' => 1,
'AH_OUTPUT' => 1,
'_AM_SUBST_NOTMAKE' => 1,
'AC_CONFIG_AUX_DIR' => 1,
'sinclude' => 1,
'AM_PROG_CC_C_O' => 1,
'm4_pattern_allow' => 1,
'AC_CANONICAL_SYSTEM' => 1,
'AM_CONDITIONAL' => 1,
'AC_CONFIG_HEADERS' => 1,
'AC_DEFINE_TRACE_LITERAL' => 1,
'm4_include' => 1,
'AC_SUBST_TRACE' => 1
}
], 'Autom4te::Request' )
);
This file contains any messages produced by compilers while
running configure, to aid debugging if configure makes a mistake.
It was created by libdbus-c++ configure 0.5.0, which was
generated by GNU Autoconf 2.61. Invocation command line was
$ ./configure --prefix=/usr --enable-debug
## --------- ##
## Platform. ##
## --------- ##
hostname = sulfur
uname -m = i686
uname -r = 2.6.24-19-generic
uname -s = Linux
uname -v = #1 SMP Wed Aug 20 22:56:21 UTC 2008
/usr/bin/uname -p = unknown
/bin/uname -X = unknown
/bin/arch = unknown
/usr/bin/arch -k = unknown
/usr/convex/getsysinfo = unknown
/usr/bin/hostinfo = unknown
/bin/machine = unknown
/usr/bin/oslevel = unknown
/bin/universe = unknown
PATH: /usr/local/sbin
PATH: /usr/local/bin
PATH: /usr/sbin
PATH: /usr/bin
PATH: /sbin
PATH: /bin
PATH: /usr/games
PATH: /usr/local/share/OpenSceneGraph/bin
## ----------- ##
## Core tests. ##
## ----------- ##
configure:2020: checking for a BSD-compatible install
configure:2076: result: /usr/bin/install -c
configure:2087: checking whether build environment is sane
configure:2130: result: yes
configure:2195: checking for gawk
configure:2211: found /usr/bin/gawk
configure:2222: result: gawk
configure:2233: checking whether make sets $(MAKE)
configure:2254: result: yes
configure:2447: checking build system type
configure:2465: result: i686-pc-linux-gnu
configure:2487: checking host system type
configure:2502: result: i686-pc-linux-gnu
configure:2614: checking for gcc
configure:2630: found /usr/bin/gcc
configure:2641: result: gcc
configure:2879: checking for C compiler version
configure:2886: gcc --version >&5
gcc (GCC) 4.2.3 (Ubuntu 4.2.3-2ubuntu7)
Copyright (C) 2007 Free Software Foundation, Inc.
This is free software; see the source for copying conditions. There is NO
warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
configure:2889: $? = 0
configure:2896: gcc -v >&5
Using built-in specs.
Target: i486-linux-gnu
Configured with: ../src/configure -v --enable-languages=c,c++,fortran,objc,obj-c++,treelang --prefix=/usr --enable-shared --with-system-zlib --libexecdir=/usr/lib --without-included-gettext --enable-threads=posix --enable-nls --with-gxx-include-dir=/usr/include/c++/4.2 --program-suffix=-4.2 --enable-clocale=gnu --enable-libstdcxx-debug --enable-objc-gc --enable-mpfr --enable-targets=all --enable-checking=release --build=i486-linux-gnu --host=i486-linux-gnu --target=i486-linux-gnu
Thread model: posix
gcc version 4.2.3 (Ubuntu 4.2.3-2ubuntu7)
configure:2899: $? = 0
configure:2906: gcc -V >&5
gcc: '-V' option must have argument
configure:2909: $? = 1
configure:2932: checking for C compiler default output file name
configure:2959: gcc conftest.c >&5
configure:2962: $? = 0
configure:3000: result: a.out
configure:3017: checking whether the C compiler works
configure:3027: ./a.out
configure:3030: $? = 0
configure:3047: result: yes
configure:3054: checking whether we are cross compiling
configure:3056: result: no
configure:3059: checking for suffix of executables
configure:3066: gcc -o conftest conftest.c >&5
configure:3069: $? = 0
configure:3093: result:
configure:3099: checking for suffix of object files
configure:3125: gcc -c conftest.c >&5
configure:3128: $? = 0
configure:3151: result: o
configure:3155: checking whether we are using the GNU C compiler
configure:3184: gcc -c conftest.c >&5
configure:3190: $? = 0
configure:3207: result: yes
configure:3212: checking whether gcc accepts -g
configure:3242: gcc -c -g conftest.c >&5
configure:3248: $? = 0
configure:3347: result: yes
configure:3364: checking for gcc option to accept ISO C89
configure:3438: gcc -c -g -O2 conftest.c >&5
configure:3444: $? = 0
configure:3467: result: none needed
configure:3496: checking for style of include used by make
configure:3524: result: GNU
configure:3552: checking dependency style of gcc
configure:3642: result: gcc3
configure:3717: checking for g++
configure:3733: found /usr/bin/g++
configure:3744: result: g++
configure:3775: checking for C++ compiler version
configure:3782: g++ --version >&5
g++ (GCC) 4.2.3 (Ubuntu 4.2.3-2ubuntu7)
Copyright (C) 2007 Free Software Foundation, Inc.
This is free software; see the source for copying conditions. There is NO
warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
configure:3785: $? = 0
configure:3792: g++ -v >&5
Using built-in specs.
Target: i486-linux-gnu
Configured with: ../src/configure -v --enable-languages=c,c++,fortran,objc,obj-c++,treelang --prefix=/usr --enable-shared --with-system-zlib --libexecdir=/usr/lib --without-included-gettext --enable-threads=posix --enable-nls --with-gxx-include-dir=/usr/include/c++/4.2 --program-suffix=-4.2 --enable-clocale=gnu --enable-libstdcxx-debug --enable-objc-gc --enable-mpfr --enable-targets=all --enable-checking=release --build=i486-linux-gnu --host=i486-linux-gnu --target=i486-linux-gnu
Thread model: posix
gcc version 4.2.3 (Ubuntu 4.2.3-2ubuntu7)
configure:3795: $? = 0
configure:3802: g++ -V >&5
g++: '-V' option must have argument
configure:3805: $? = 1
configure:3808: checking whether we are using the GNU C++ compiler
configure:3837: g++ -c conftest.cpp >&5
configure:3843: $? = 0
configure:3860: result: yes
configure:3865: checking whether g++ accepts -g
configure:3895: g++ -c -g conftest.cpp >&5
configure:3901: $? = 0
configure:4000: result: yes
configure:4025: checking dependency style of g++
configure:4115: result: gcc3
configure:4208: checking for a sed that does not truncate output
configure:4264: result: /bin/sed
configure:4267: checking for grep that handles long lines and -e
configure:4341: result: /bin/grep
configure:4346: checking for egrep
configure:4424: result: /bin/grep -E
configure:4440: checking for ld used by gcc
configure:4507: result: /usr/bin/ld
configure:4516: checking if the linker (/usr/bin/ld) is GNU ld
configure:4531: result: yes
configure:4536: checking for /usr/bin/ld option to reload object files
configure:4543: result: -r
configure:4561: checking for BSD-compatible nm
configure:4610: result: /usr/bin/nm -B
configure:4614: checking whether ln -s works
configure:4618: result: yes
configure:4625: checking how to recognize dependent libraries
configure:4811: result: pass_all
configure:5057: checking how to run the C preprocessor
configure:5097: gcc -E conftest.c
configure:5103: $? = 0
configure:5134: gcc -E conftest.c
conftest.c:10:28: error: ac_nonexistent.h: No such file or directory
configure:5140: $? = 1
configure: failed program was:
| /* confdefs.h. */
| #define PACKAGE_NAME "libdbus-c++"
| #define PACKAGE_TARNAME "libdbus-c--"
| #define PACKAGE_VERSION "0.5.0"
| #define PACKAGE_STRING "libdbus-c++ 0.5.0"
| #define PACKAGE_BUGREPORT "shackan@gmail.com"
| #define PACKAGE "libdbus-c++"
| #define VERSION "0.5.0"
| /* end confdefs.h. */
| #include <ac_nonexistent.h>
configure:5173: result: gcc -E
configure:5202: gcc -E conftest.c
configure:5208: $? = 0
configure:5239: gcc -E conftest.c
conftest.c:10:28: error: ac_nonexistent.h: No such file or directory
configure:5245: $? = 1
configure: failed program was:
| /* confdefs.h. */
| #define PACKAGE_NAME "libdbus-c++"
| #define PACKAGE_TARNAME "libdbus-c--"
| #define PACKAGE_VERSION "0.5.0"
| #define PACKAGE_STRING "libdbus-c++ 0.5.0"
| #define PACKAGE_BUGREPORT "shackan@gmail.com"
| #define PACKAGE "libdbus-c++"
| #define VERSION "0.5.0"
| /* end confdefs.h. */
| #include <ac_nonexistent.h>
configure:5283: checking for ANSI C header files
configure:5313: gcc -c -g -O2 conftest.c >&5
configure:5319: $? = 0
configure:5418: gcc -o conftest -g -O2 conftest.c >&5
configure:5421: $? = 0
configure:5427: ./conftest
configure:5430: $? = 0
configure:5447: result: yes
configure:5471: checking for sys/types.h
configure:5492: gcc -c -g -O2 conftest.c >&5
configure:5498: $? = 0
configure:5514: result: yes
configure:5471: checking for sys/stat.h
configure:5492: gcc -c -g -O2 conftest.c >&5
configure:5498: $? = 0
configure:5514: result: yes
configure:5471: checking for stdlib.h
configure:5492: gcc -c -g -O2 conftest.c >&5
configure:5498: $? = 0
configure:5514: result: yes
configure:5471: checking for string.h
configure:5492: gcc -c -g -O2 conftest.c >&5
configure:5498: $? = 0
configure:5514: result: yes
configure:5471: checking for memory.h
configure:5492: gcc -c -g -O2 conftest.c >&5
configure:5498: $? = 0
configure:5514: result: yes
configure:5471: checking for strings.h
configure:5492: gcc -c -g -O2 conftest.c >&5
configure:5498: $? = 0
configure:5514: result: yes
configure:5471: checking for inttypes.h
configure:5492: gcc -c -g -O2 conftest.c >&5
configure:5498: $? = 0
configure:5514: result: yes
configure:5471: checking for stdint.h
configure:5492: gcc -c -g -O2 conftest.c >&5
configure:5498: $? = 0
configure:5514: result: yes
configure:5471: checking for unistd.h
configure:5492: gcc -c -g -O2 conftest.c >&5
configure:5498: $? = 0
configure:5514: result: yes
configure:5541: checking dlfcn.h usability
configure:5558: gcc -c -g -O2 conftest.c >&5
configure:5564: $? = 0
configure:5578: result: yes
configure:5582: checking dlfcn.h presence
configure:5597: gcc -E conftest.c
configure:5603: $? = 0
configure:5617: result: yes
configure:5650: checking for dlfcn.h
configure:5658: result: yes
configure:5681: checking how to run the C++ preprocessor
configure:5717: g++ -E conftest.cpp
configure:5723: $? = 0
configure:5754: g++ -E conftest.cpp
conftest.cpp:21:28: error: ac_nonexistent.h: No such file or directory
configure:5760: $? = 1
configure: failed program was:
| /* confdefs.h. */
| #define PACKAGE_NAME "libdbus-c++"
| #define PACKAGE_TARNAME "libdbus-c--"
| #define PACKAGE_VERSION "0.5.0"
| #define PACKAGE_STRING "libdbus-c++ 0.5.0"
| #define PACKAGE_BUGREPORT "shackan@gmail.com"
| #define PACKAGE "libdbus-c++"
| #define VERSION "0.5.0"
| #define STDC_HEADERS 1
| #define HAVE_SYS_TYPES_H 1
| #define HAVE_SYS_STAT_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_STRING_H 1
| #define HAVE_MEMORY_H 1
| #define HAVE_STRINGS_H 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_UNISTD_H 1
| #define HAVE_DLFCN_H 1
| /* end confdefs.h. */
| #include <ac_nonexistent.h>
configure:5793: result: g++ -E
configure:5822: g++ -E conftest.cpp
configure:5828: $? = 0
configure:5859: g++ -E conftest.cpp
conftest.cpp:21:28: error: ac_nonexistent.h: No such file or directory
configure:5865: $? = 1
configure: failed program was:
| /* confdefs.h. */
| #define PACKAGE_NAME "libdbus-c++"
| #define PACKAGE_TARNAME "libdbus-c--"
| #define PACKAGE_VERSION "0.5.0"
| #define PACKAGE_STRING "libdbus-c++ 0.5.0"
| #define PACKAGE_BUGREPORT "shackan@gmail.com"
| #define PACKAGE "libdbus-c++"
| #define VERSION "0.5.0"
| #define STDC_HEADERS 1
| #define HAVE_SYS_TYPES_H 1
| #define HAVE_SYS_STAT_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_STRING_H 1
| #define HAVE_MEMORY_H 1
| #define HAVE_STRINGS_H 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_UNISTD_H 1
| #define HAVE_DLFCN_H 1
| /* end confdefs.h. */
| #include <ac_nonexistent.h>
configure:5957: checking for g77
configure:5987: result: no
configure:5957: checking for xlf
configure:5987: result: no
configure:5957: checking for f77
configure:5987: result: no
configure:5957: checking for frt
configure:5987: result: no
configure:5957: checking for pgf77
configure:5987: result: no
configure:5957: checking for cf77
configure:5987: result: no
configure:5957: checking for fort77
configure:5987: result: no
configure:5957: checking for fl32
configure:5987: result: no
configure:5957: checking for af77
configure:5987: result: no
configure:5957: checking for xlf90
configure:5987: result: no
configure:5957: checking for f90
configure:5987: result: no
configure:5957: checking for pgf90
configure:5987: result: no
configure:5957: checking for pghpf
configure:5987: result: no
configure:5957: checking for epcf90
configure:5987: result: no
configure:5957: checking for gfortran
configure:5987: result: no
configure:5957: checking for g95
configure:5987: result: no
configure:5957: checking for xlf95
configure:5987: result: no
configure:5957: checking for f95
configure:5987: result: no
configure:5957: checking for fort
configure:5987: result: no
configure:5957: checking for ifort
configure:5987: result: no
configure:5957: checking for ifc
configure:5987: result: no
configure:5957: checking for efc
configure:5987: result: no
configure:5957: checking for pgf95
configure:5987: result: no
configure:5957: checking for lf95
configure:5987: result: no
configure:5957: checking for ftn
configure:5987: result: no
configure:6014: checking for Fortran 77 compiler version
configure:6021: --version >&5
./configure: line 6022: --version: command not found
configure:6024: $? = 127
configure:6031: -v >&5
./configure: line 6032: -v: command not found
configure:6034: $? = 127
configure:6041: -V >&5
./configure: line 6042: -V: command not found
configure:6044: $? = 127
configure:6052: checking whether we are using the GNU Fortran 77 compiler
configure:6071: -c conftest.F >&5
./configure: line 6072: -c: command not found
configure:6077: $? = 127
configure: failed program was:
| program main
| #ifndef __GNUC__
| choke me
| #endif
|
| end
configure:6094: result: no
configure:6100: checking whether accepts -g
configure:6117: -c -g conftest.f >&5
./configure: line 6118: -c: command not found
configure:6123: $? = 127
configure: failed program was:
| program main
|
| end
configure:6139: result: no
configure:6168: checking the maximum length of command line arguments
configure:6280: result: 98304
configure:6292: checking command to parse /usr/bin/nm -B output from gcc object
configure:6397: g++ -c -g -O2 conftest.cpp >&5
configure:6400: $? = 0
configure:6404: /usr/bin/nm -B conftest.o \| sed -n -e 's/^.*[ ]\([ABCDGIRSTW][ABCDGIRSTW]*\)[ ][ ]*\([_A-Za-z][_A-Za-z0-9]*\)$/\1 \2 \2/p' \> conftest.nm
configure:6407: $? = 0
configure:6459: g++ -o conftest -g -O2 conftest.cpp conftstm.o >&5
configure:6462: $? = 0
configure:6500: result: ok
configure:6504: checking for objdir
configure:6519: result: .libs
configure:6611: checking for ar
configure:6627: found /usr/bin/ar
configure:6638: result: ar
configure:6707: checking for ranlib
configure:6723: found /usr/bin/ranlib
configure:6734: result: ranlib
configure:6803: checking for strip
configure:6819: found /usr/bin/strip
configure:6830: result: strip
configure:7428: checking if gcc supports -fno-rtti -fno-exceptions
configure:7446: gcc -c -g -O2 -fno-rtti -fno-exceptions conftest.c >&5
cc1: warning: command line option "-fno-rtti" is valid for C++/ObjC++ but not for C
configure:7450: $? = 0
configure:7463: result: no
configure:7478: checking for gcc option to produce PIC
configure:7710: result: -fPIC
configure:7718: checking if gcc PIC flag -fPIC works
configure:7736: gcc -c -g -O2 -fPIC -DPIC conftest.c >&5
configure:7740: $? = 0
configure:7753: result: yes
configure:7781: checking if gcc static flag -static works
configure:7809: result: yes
configure:7819: checking if gcc supports -c -o file.o
configure:7840: gcc -c -g -O2 -o out/conftest2.o conftest.c >&5
configure:7844: $? = 0
configure:7866: result: yes
configure:7892: checking whether the gcc linker (/usr/bin/ld) supports shared libraries
configure:8873: result: yes
configure:8894: checking whether -lc should be explicitly linked in
configure:8899: gcc -c -g -O2 conftest.c >&5
configure:8902: $? = 0
configure:8917: gcc -shared conftest.o -v -Wl,-soname -Wl,conftest -o conftest 2\>\&1 \| grep -lc \>/dev/null 2\>\&1
configure:8920: $? = 0
configure:8932: result: no
configure:8940: checking dynamic linker characteristics
configure:9554: result: GNU/Linux ld.so
configure:9578: checking how to hardcode library paths into programs
configure:9603: result: immediate
configure:9617: checking whether stripping libraries is possible
configure:9622: result: yes
configure:10424: checking if libtool supports shared libraries
configure:10426: result: yes
configure:10429: checking whether to build shared libraries
configure:10450: result: yes
configure:10453: checking whether to build static libraries
configure:10457: result: yes
configure:10551: creating libtool
configure:11144: checking for ld used by g++
configure:11211: result: /usr/bin/ld
configure:11220: checking if the linker (/usr/bin/ld) is GNU ld
configure:11235: result: yes
configure:11286: checking whether the g++ linker (/usr/bin/ld) supports shared libraries
configure:12232: result: yes
configure:12249: g++ -c -g -O2 conftest.cpp >&5
configure:12252: $? = 0
configure:12408: checking for g++ option to produce PIC
configure:12692: result: -fPIC
configure:12700: checking if g++ PIC flag -fPIC works
configure:12718: g++ -c -g -O2 -fPIC -DPIC conftest.cpp >&5
configure:12722: $? = 0
configure:12735: result: yes
configure:12763: checking if g++ static flag -static works
configure:12791: result: yes
configure:12801: checking if g++ supports -c -o file.o
configure:12822: g++ -c -g -O2 -o out/conftest2.o conftest.cpp >&5
configure:12826: $? = 0
configure:12848: result: yes
configure:12874: checking whether the g++ linker (/usr/bin/ld) supports shared libraries
configure:12903: result: yes
configure:12970: checking dynamic linker characteristics
configure:13532: result: GNU/Linux ld.so
configure:13556: checking how to hardcode library paths into programs
configure:13581: result: immediate
configure:19878: checking for pkg-config
configure:19896: found /usr/bin/pkg-config
configure:19908: result: /usr/bin/pkg-config
configure:19937: checking pkg-config is at least version 0.9.0
configure:19940: result: yes
configure:19951: checking whether g++ supports symbol visibility
configure:19957: result: yes
configure:19977: checking for dbus
configure:19985: $PKG_CONFIG --exists --print-errors "dbus-1 >= $DBUS_REQUIRED_VERSION"
configure:19988: $? = 0
configure:20003: $PKG_CONFIG --exists --print-errors "dbus-1 >= $DBUS_REQUIRED_VERSION"
configure:20006: $? = 0
configure:20052: result: yes
configure:20061: $PKG_CONFIG --exists --print-errors "dbus-1 < $DBUS_API_STABLE_VERSION"
Requested 'dbus-1 < 1.0.0' but version of dbus is 1.1.20
configure:20064: $? = 1
configure:20076: $PKG_CONFIG --exists --print-errors "dbus-1 >= $DBUS_THREADS_INIT_DEFAULT_VERSION"
configure:20079: $? = 0
configure:20091: $PKG_CONFIG --exists --print-errors "dbus-1 >= $DBUS_RECURSIVE_MUTEX_VERSION"
configure:20094: $? = 0
configure:20355: checking for XML_ParserCreate_MM in -lexpat
configure:20390: g++ -o conftest -fvisibility=hidden conftest.cpp -lexpat >&5
configure:20396: $? = 0
configure:20414: result: yes
configure:20432: checking expat.h usability
configure:20449: g++ -c -fvisibility=hidden conftest.cpp >&5
configure:20455: $? = 0
configure:20469: result: yes
configure:20473: checking expat.h presence
configure:20488: g++ -E conftest.cpp
configure:20494: $? = 0
configure:20508: result: yes
configure:20541: checking for expat.h
configure:20549: result: yes
configure:20583: checking for pthread_create in -lpthread
configure:20618: g++ -o conftest -fvisibility=hidden conftest.cpp -lpthread >&5
configure:20624: $? = 0
configure:20642: result: yes
configure:20660: checking pthread.h usability
configure:20677: g++ -c -fvisibility=hidden conftest.cpp >&5
configure:20683: $? = 0
configure:20697: result: yes
configure:20701: checking pthread.h presence
configure:20716: g++ -E conftest.cpp
configure:20722: $? = 0
configure:20736: result: yes
configure:20769: checking for pthread.h
configure:20777: result: yes
configure:20814: checking for doxygen
configure:20832: found /usr/bin/doxygen
configure:20845: result: /usr/bin/doxygen
configure:20854: checking whether to build Doxygen documentation
configure:21091: creating ./config.status
## ---------------------- ##
## Running config.status. ##
## ---------------------- ##
This file was extended by libdbus-c++ config.status 0.5.0, which was
generated by GNU Autoconf 2.61. Invocation command line was
CONFIG_FILES =
CONFIG_HEADERS =
CONFIG_LINKS =
CONFIG_COMMANDS =
$ ./config.status
on sulfur
config.status:695: creating Makefile
config.status:695: creating src/Makefile
config.status:695: creating tools/Makefile
config.status:695: creating data/Makefile
config.status:695: creating doc/Makefile
config.status:695: creating doc/Doxyfile
config.status:695: creating examples/Makefile
config.status:695: creating examples/properties/Makefile
config.status:695: creating examples/echo/Makefile
config.status:695: creating examples/hal/Makefile
config.status:695: creating examples/glib/Makefile
config.status:695: creating dbus-c++-1.pc
config.status:695: creating dbus-c++-1-uninstalled.pc
config.status:695: creating libdbus-c++.spec
config.status:695: creating include/dbus-c++/config.h
config.status:921: include/dbus-c++/config.h is unchanged
config.status:967: executing depfiles commands
## ---------------- ##
## Cache variables. ##
## ---------------- ##
ac_cv_build=i686-pc-linux-gnu
ac_cv_c_compiler_gnu=yes
ac_cv_cxx_compiler_gnu=yes
ac_cv_env_CCC_set=
ac_cv_env_CCC_value=
ac_cv_env_CC_set=
ac_cv_env_CC_value=
ac_cv_env_CFLAGS_set=
ac_cv_env_CFLAGS_value=
ac_cv_env_CPPFLAGS_set=
ac_cv_env_CPPFLAGS_value=
ac_cv_env_CPP_set=
ac_cv_env_CPP_value=
ac_cv_env_CXXCPP_set=
ac_cv_env_CXXCPP_value=
ac_cv_env_CXXFLAGS_set=
ac_cv_env_CXXFLAGS_value=
ac_cv_env_CXX_set=
ac_cv_env_CXX_value=
ac_cv_env_F77_set=
ac_cv_env_F77_value=
ac_cv_env_FFLAGS_set=
ac_cv_env_FFLAGS_value=
ac_cv_env_LDFLAGS_set=
ac_cv_env_LDFLAGS_value=
ac_cv_env_LIBS_set=
ac_cv_env_LIBS_value=
ac_cv_env_PKG_CONFIG_set=
ac_cv_env_PKG_CONFIG_value=
ac_cv_env_build_alias_set=
ac_cv_env_build_alias_value=
ac_cv_env_dbus_CFLAGS_set=
ac_cv_env_dbus_CFLAGS_value=
ac_cv_env_dbus_LIBS_set=
ac_cv_env_dbus_LIBS_value=
ac_cv_env_glib_CFLAGS_set=
ac_cv_env_glib_CFLAGS_value=
ac_cv_env_glib_LIBS_set=
ac_cv_env_glib_LIBS_value=
ac_cv_env_gtkmm_CFLAGS_set=
ac_cv_env_gtkmm_CFLAGS_value=
ac_cv_env_gtkmm_LIBS_set=
ac_cv_env_gtkmm_LIBS_value=
ac_cv_env_host_alias_set=
ac_cv_env_host_alias_value=
ac_cv_env_target_alias_set=
ac_cv_env_target_alias_value=
ac_cv_f77_compiler_gnu=no
ac_cv_header_dlfcn_h=yes
ac_cv_header_expat_h=yes
ac_cv_header_inttypes_h=yes
ac_cv_header_memory_h=yes
ac_cv_header_pthread_h=yes
ac_cv_header_stdc=yes
ac_cv_header_stdint_h=yes
ac_cv_header_stdlib_h=yes
ac_cv_header_string_h=yes
ac_cv_header_strings_h=yes
ac_cv_header_sys_stat_h=yes
ac_cv_header_sys_types_h=yes
ac_cv_header_unistd_h=yes
ac_cv_host=i686-pc-linux-gnu
ac_cv_lib_expat_XML_ParserCreate_MM=yes
ac_cv_lib_pthread_pthread_create=yes
ac_cv_objext=o
ac_cv_path_DOXYGEN=/usr/bin/doxygen
ac_cv_path_EGREP='/bin/grep -E'
ac_cv_path_GREP=/bin/grep
ac_cv_path_ac_pt_PKG_CONFIG=/usr/bin/pkg-config
ac_cv_path_install='/usr/bin/install -c'
ac_cv_prog_AWK=gawk
ac_cv_prog_CPP='gcc -E'
ac_cv_prog_CXXCPP='g++ -E'
ac_cv_prog_ac_ct_AR=ar
ac_cv_prog_ac_ct_CC=gcc
ac_cv_prog_ac_ct_CXX=g++
ac_cv_prog_ac_ct_RANLIB=ranlib
ac_cv_prog_ac_ct_STRIP=strip
ac_cv_prog_cc_c89=
ac_cv_prog_cc_g=yes
ac_cv_prog_cxx_g=yes
ac_cv_prog_f77_g=no
ac_cv_prog_make_make_set=yes
am_cv_CC_dependencies_compiler_type=gcc3
am_cv_CXX_dependencies_compiler_type=gcc3
lt_cv_deplibs_check_method=pass_all
lt_cv_file_magic_cmd='$MAGIC_CMD'
lt_cv_file_magic_test_file=
lt_cv_ld_reload_flag=-r
lt_cv_objdir=.libs
lt_cv_path_LD=/usr/bin/ld
lt_cv_path_LDCXX=/usr/bin/ld
lt_cv_path_NM='/usr/bin/nm -B'
lt_cv_path_SED=/bin/sed
lt_cv_prog_compiler_c_o=yes
lt_cv_prog_compiler_c_o_CXX=yes
lt_cv_prog_compiler_pic_works=yes
lt_cv_prog_compiler_pic_works_CXX=yes
lt_cv_prog_compiler_rtti_exceptions=no
lt_cv_prog_compiler_static_works=yes
lt_cv_prog_compiler_static_works_CXX=yes
lt_cv_prog_gnu_ld=yes
lt_cv_prog_gnu_ldcxx=yes
lt_cv_sys_global_symbol_pipe='sed -n -e '\''s/^.*[ ]\([ABCDGIRSTW][ABCDGIRSTW]*\)[ ][ ]*\([_A-Za-z][_A-Za-z0-9]*\)$/\1 \2 \2/p'\'''
lt_cv_sys_global_symbol_to_c_name_address='sed -n -e '\''s/^: \([^ ]*\) $/ {\"\1\", (lt_ptr) 0},/p'\'' -e '\''s/^[BCDEGRST] \([^ ]*\) \([^ ]*\)$/ {"\2", (lt_ptr) \&\2},/p'\'''
lt_cv_sys_global_symbol_to_cdecl='sed -n -e '\''s/^. .* \(.*\)$/extern int \1;/p'\'''
lt_cv_sys_lib_dlsearch_path_spec='/lib /usr/lib /lib/i486-linux-gnu /usr/lib/i486-linux-gnu /usr/lib/kde4/lib /usr/local/lib '
lt_cv_sys_lib_search_path_spec='/usr/lib/gcc/i486-linux-gnu/4.2.3 /usr/lib /lib'
lt_cv_sys_max_cmd_len=98304
lt_lt_cv_prog_compiler_c_o='"yes"'
lt_lt_cv_prog_compiler_c_o_CXX='"yes"'
lt_lt_cv_sys_global_symbol_pipe='"sed -n -e '\''s/^.*[ ]\\([ABCDGIRSTW][ABCDGIRSTW]*\\)[ ][ ]*\\([_A-Za-z][_A-Za-z0-9]*\\)\$/\\1 \\2 \\2/p'\''"'
lt_lt_cv_sys_global_symbol_to_c_name_address='"sed -n -e '\''s/^: \\([^ ]*\\) \$/ {\\\"\\1\\\", (lt_ptr) 0},/p'\'' -e '\''s/^[BCDEGRST] \\([^ ]*\\) \\([^ ]*\\)\$/ {\"\\2\", (lt_ptr) \\&\\2},/p'\''"'
lt_lt_cv_sys_global_symbol_to_cdecl='"sed -n -e '\''s/^. .* \\(.*\\)\$/extern int \\1;/p'\''"'
pkg_cv_dbus_CFLAGS='-I/usr/include/dbus-1.0 -I/usr/lib/dbus-1.0/include '
pkg_cv_dbus_LIBS='-ldbus-1 '
## ----------------- ##
## Output variables. ##
## ----------------- ##
ACLOCAL='${SHELL} /home-local/manu/dev/sfl/dbus-c++/missing --run aclocal-1.9'
AMDEPBACKSLASH='\'
AMDEP_FALSE='#'
AMDEP_TRUE=''
AMTAR='${SHELL} /home-local/manu/dev/sfl/dbus-c++/missing --run tar'
AR='ar'
AUTOCONF='${SHELL} /home-local/manu/dev/sfl/dbus-c++/missing --run autoconf'
AUTOHEADER='${SHELL} /home-local/manu/dev/sfl/dbus-c++/missing --run autoheader'
AUTOMAKE='${SHELL} /home-local/manu/dev/sfl/dbus-c++/missing --run automake-1.9'
AWK='gawk'
BUILD_LIBDBUS_CXX_DIR='$(top_builddir)'
CC='gcc'
CCDEPMODE='depmode=gcc3'
CFLAGS='-g -O2'
CPP='gcc -E'
CPPFLAGS=''
CROSS_COMPILING_FALSE=''
CROSS_COMPILING_TRUE='#'
CXX='g++'
CXXCPP='g++ -E'
CXXDEPMODE='depmode=gcc3'
CXXFLAGS='-fvisibility=hidden -Wall -ggdb -O0 -DDEBUG -Wfatal-errors -Werror'
CXX_FOR_BUILD='g++'
CYGPATH_W='echo'
DBUS_DOXYGEN_DOCS_ENABLED_FALSE=''
DBUS_DOXYGEN_DOCS_ENABLED_TRUE='#'
DEFS='-DHAVE_CONFIG_H'
DEPDIR='.deps'
DOXYGEN='/usr/bin/doxygen'
DSYMUTIL=''
ECHO='echo'
ECHO_C=''
ECHO_N='-n'
ECHO_T=''
EGREP='/bin/grep -E'
ENABLE_GLIB_FALSE=''
ENABLE_GLIB_TRUE='#'
EXEEXT=''
F77=''
FFLAGS=''
GREP='/bin/grep'
HAVE_GTKMM_FALSE=''
HAVE_GTKMM_TRUE='#'
INSTALL_DATA='${INSTALL} -m 644'
INSTALL_PROGRAM='${INSTALL}'
INSTALL_SCRIPT='${INSTALL}'
INSTALL_STRIP_PROGRAM='${SHELL} $(install_sh) -c -s'
LDFLAGS=''
LIBOBJS=''
LIBS=''
LIBTOOL='$(SHELL) $(top_builddir)/libtool'
LN_S='ln -s'
LTLIBOBJS=''
MAKEINFO='${SHELL} /home-local/manu/dev/sfl/dbus-c++/missing --run makeinfo'
NMEDIT=''
OBJEXT='o'
PACKAGE='libdbus-c++'
PACKAGE_BUGREPORT='shackan@gmail.com'
PACKAGE_NAME='libdbus-c++'
PACKAGE_STRING='libdbus-c++ 0.5.0'
PACKAGE_TARNAME='libdbus-c--'
PACKAGE_VERSION='0.5.0'
PATH_SEPARATOR=':'
PKG_CONFIG='/usr/bin/pkg-config'
RANLIB='ranlib'
SED='/bin/sed'
SET_MAKE=''
SHELL='/bin/bash'
STRIP='strip'
VERSION='0.5.0'
ac_ct_CC='gcc'
ac_ct_CXX='g++'
ac_ct_F77=''
am__fastdepCC_FALSE='#'
am__fastdepCC_TRUE=''
am__fastdepCXX_FALSE='#'
am__fastdepCXX_TRUE=''
am__include='include'
am__leading_dot='.'
am__quote=''
am__tar='${AMTAR} chof - "$$tardir"'
am__untar='${AMTAR} xf -'
bindir='${exec_prefix}/bin'
build='i686-pc-linux-gnu'
build_alias=''
build_cpu='i686'
build_os='linux-gnu'
build_vendor='pc'
datadir='${datarootdir}'
datarootdir='${prefix}/share'
dbus_CFLAGS='-I/usr/include/dbus-1.0 -I/usr/lib/dbus-1.0/include '
dbus_LIBS='-ldbus-1 '
docdir='${datarootdir}/doc/${PACKAGE_TARNAME}'
dvidir='${docdir}'
exec_prefix='${prefix}'
glib_CFLAGS=''
glib_LIBS=''
gtkmm_CFLAGS=''
gtkmm_LIBS=''
host='i686-pc-linux-gnu'
host_alias=''
host_cpu='i686'
host_os='linux-gnu'
host_vendor='pc'
htmldir='${docdir}'
includedir='${prefix}/include'
infodir='${datarootdir}/info'
install_sh='/home-local/manu/dev/sfl/dbus-c++/install-sh'
libdir='${exec_prefix}/lib'
libexecdir='${exec_prefix}/libexec'
localedir='${datarootdir}/locale'
localstatedir='${prefix}/var'
mandir='${datarootdir}/man'
mkdir_p='mkdir -p --'
oldincludedir='/usr/include'
pdfdir='${docdir}'
prefix='/usr'
program_transform_name='s,x,x,'
psdir='${docdir}'
sbindir='${exec_prefix}/sbin'
sharedstatedir='${prefix}/com'
sysconfdir='${prefix}/etc'
target_alias=''
xml_CFLAGS=''
xml_LIBS='-lexpat'
## ----------- ##
## confdefs.h. ##
## ----------- ##
#define PACKAGE_NAME "libdbus-c++"
#define PACKAGE_TARNAME "libdbus-c--"
#define PACKAGE_VERSION "0.5.0"
#define PACKAGE_STRING "libdbus-c++ 0.5.0"
#define PACKAGE_BUGREPORT "shackan@gmail.com"
#define PACKAGE "libdbus-c++"
#define VERSION "0.5.0"
#define STDC_HEADERS 1
#define HAVE_SYS_TYPES_H 1
#define HAVE_SYS_STAT_H 1
#define HAVE_STDLIB_H 1
#define HAVE_STRING_H 1
#define HAVE_MEMORY_H 1
#define HAVE_STRINGS_H 1
#define HAVE_INTTYPES_H 1
#define HAVE_STDINT_H 1
#define HAVE_UNISTD_H 1
#define HAVE_DLFCN_H 1
#define GCC_HASCLASSVISIBILITY 1
#define DBUS_HAS_THREADS_INIT_DEFAULT
#define DBUS_HAS_RECURSIVE_MUTEX
#define HAVE_EXPAT_H 1
#define HAVE_PTHREAD_H 1
configure: exit 0
#! /bin/bash
# Generated by configure.
# Run this file to recreate the current configuration.
# Compiler output produced by configure, useful for debugging
# configure, is in config.log if it exists.
debug=false
ac_cs_recheck=false
ac_cs_silent=false
SHELL=${CONFIG_SHELL-/bin/bash}
## --------------------- ##
## M4sh Initialization. ##
## --------------------- ##
# Be more Bourne compatible
DUALCASE=1; export DUALCASE # for MKS sh
if test -n "${ZSH_VERSION+set}" && (emulate sh) >/dev/null 2>&1; then
emulate sh
NULLCMD=:
# Zsh 3.x and 4.x performs word splitting on ${1+"$@"}, which
# is contrary to our usage. Disable this feature.
alias -g '${1+"$@"}'='"$@"'
setopt NO_GLOB_SUBST
else
case `(set -o) 2>/dev/null` in
*posix*) set -o posix ;;
esac
fi
# PATH needs CR
# Avoid depending upon Character Ranges.
as_cr_letters='abcdefghijklmnopqrstuvwxyz'
as_cr_LETTERS='ABCDEFGHIJKLMNOPQRSTUVWXYZ'
as_cr_Letters=$as_cr_letters$as_cr_LETTERS
as_cr_digits='0123456789'
as_cr_alnum=$as_cr_Letters$as_cr_digits
# The user is always right.
if test "${PATH_SEPARATOR+set}" != set; then
echo "#! /bin/sh" >conf$$.sh
echo "exit 0" >>conf$$.sh
chmod +x conf$$.sh
if (PATH="/nonexistent;."; conf$$.sh) >/dev/null 2>&1; then
PATH_SEPARATOR=';'
else
PATH_SEPARATOR=:
fi
rm -f conf$$.sh
fi
# Support unset when possible.
if ( (MAIL=60; unset MAIL) || exit) >/dev/null 2>&1; then
as_unset=unset
else
as_unset=false
fi
# IFS
# We need space, tab and new line, in precisely that order. Quoting is
# there to prevent editors from complaining about space-tab.
# (If _AS_PATH_WALK were called with IFS unset, it would disable word
# splitting by setting IFS to empty value.)
as_nl='
'
IFS=" "" $as_nl"
# Find who we are. Look in the path if we contain no directory separator.
case $0 in
*[\\/]* ) as_myself=$0 ;;
*) as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
for as_dir in $PATH
do
IFS=$as_save_IFS
test -z "$as_dir" && as_dir=.
test -r "$as_dir/$0" && as_myself=$as_dir/$0 && break
done
IFS=$as_save_IFS
;;
esac
# We did not find ourselves, most probably we were run as `sh COMMAND'
# in which case we are not to be found in the path.
if test "x$as_myself" = x; then
as_myself=$0
fi
if test ! -f "$as_myself"; then
echo "$as_myself: error: cannot find myself; rerun with an absolute file name" >&2
{ (exit 1); exit 1; }
fi
# Work around bugs in pre-3.0 UWIN ksh.
for as_var in ENV MAIL MAILPATH
do ($as_unset $as_var) >/dev/null 2>&1 && $as_unset $as_var
done
PS1='$ '
PS2='> '
PS4='+ '
# NLS nuisances.
for as_var in \
LANG LANGUAGE LC_ADDRESS LC_ALL LC_COLLATE LC_CTYPE LC_IDENTIFICATION \
LC_MEASUREMENT LC_MESSAGES LC_MONETARY LC_NAME LC_NUMERIC LC_PAPER \
LC_TELEPHONE LC_TIME
do
if (set +x; test -z "`(eval $as_var=C; export $as_var) 2>&1`"); then
eval $as_var=C; export $as_var
else
($as_unset $as_var) >/dev/null 2>&1 && $as_unset $as_var
fi
done
# Required to use basename.
if expr a : '\(a\)' >/dev/null 2>&1 &&
test "X`expr 00001 : '.*\(...\)'`" = X001; then
as_expr=expr
else
as_expr=false
fi
if (basename -- /) >/dev/null 2>&1 && test "X`basename -- / 2>&1`" = "X/"; then
as_basename=basename
else
as_basename=false
fi
# Name of the executable.
as_me=`$as_basename -- "$0" ||
$as_expr X/"$0" : '.*/\([^/][^/]*\)/*$' \| \
X"$0" : 'X\(//\)$' \| \
X"$0" : 'X\(/\)' \| . 2>/dev/null ||
echo X/"$0" |
sed '/^.*\/\([^/][^/]*\)\/*$/{
s//\1/
q
}
/^X\/\(\/\/\)$/{
s//\1/
q
}
/^X\/\(\/\).*/{
s//\1/
q
}
s/.*/./; q'`
# CDPATH.
$as_unset CDPATH
as_lineno_1=$LINENO
as_lineno_2=$LINENO
test "x$as_lineno_1" != "x$as_lineno_2" &&
test "x`expr $as_lineno_1 + 1`" = "x$as_lineno_2" || {
# Create $as_me.lineno as a copy of $as_myself, but with $LINENO
# uniformly replaced by the line number. The first 'sed' inserts a
# line-number line after each line using $LINENO; the second 'sed'
# does the real work. The second script uses 'N' to pair each
# line-number line with the line containing $LINENO, and appends
# trailing '-' during substitution so that $LINENO is not a special
# case at line end.
# (Raja R Harinath suggested sed '=', and Paul Eggert wrote the
# scripts with optimization help from Paolo Bonzini. Blame Lee
# E. McMahon (1931-1989) for sed's syntax. :-)
sed -n '
p
/[$]LINENO/=
' <$as_myself |
sed '
s/[$]LINENO.*/&-/
t lineno
b
:lineno
N
:loop
s/[$]LINENO\([^'$as_cr_alnum'_].*\n\)\(.*\)/\2\1\2/
t loop
s/-\n.*//
' >$as_me.lineno &&
chmod +x "$as_me.lineno" ||
{ echo "$as_me: error: cannot create $as_me.lineno; rerun with a POSIX shell" >&2
{ (exit 1); exit 1; }; }
# Don't try to exec as it changes $[0], causing all sort of problems
# (the dirname of $[0] is not the place where we might find the
# original and so on. Autoconf is especially sensitive to this).
. "./$as_me.lineno"
# Exit status is that of the last command.
exit
}
if (as_dir=`dirname -- /` && test "X$as_dir" = X/) >/dev/null 2>&1; then
as_dirname=dirname
else
as_dirname=false
fi
ECHO_C= ECHO_N= ECHO_T=
case `echo -n x` in
-n*)
case `echo 'x\c'` in
*c*) ECHO_T=' ';; # ECHO_T is single tab character.
*) ECHO_C='\c';;
esac;;
*)
ECHO_N='-n';;
esac
if expr a : '\(a\)' >/dev/null 2>&1 &&
test "X`expr 00001 : '.*\(...\)'`" = X001; then
as_expr=expr
else
as_expr=false
fi
rm -f conf$$ conf$$.exe conf$$.file
if test -d conf$$.dir; then
rm -f conf$$.dir/conf$$.file
else
rm -f conf$$.dir
mkdir conf$$.dir
fi
echo >conf$$.file
if ln -s conf$$.file conf$$ 2>/dev/null; then
as_ln_s='ln -s'
# ... but there are two gotchas:
# 1) On MSYS, both `ln -s file dir' and `ln file dir' fail.
# 2) DJGPP < 2.04 has no symlinks; `ln -s' creates a wrapper executable.
# In both cases, we have to default to `cp -p'.
ln -s conf$$.file conf$$.dir 2>/dev/null && test ! -f conf$$.exe ||
as_ln_s='cp -p'
elif ln conf$$.file conf$$ 2>/dev/null; then
as_ln_s=ln
else
as_ln_s='cp -p'
fi
rm -f conf$$ conf$$.exe conf$$.dir/conf$$.file conf$$.file
rmdir conf$$.dir 2>/dev/null
if mkdir -p . 2>/dev/null; then
as_mkdir_p=:
else
test -d ./-p && rmdir ./-p
as_mkdir_p=false
fi
if test -x / >/dev/null 2>&1; then
as_test_x='test -x'
else
if ls -dL / >/dev/null 2>&1; then
as_ls_L_option=L
else
as_ls_L_option=
fi
as_test_x='
eval sh -c '\''
if test -d "$1"; then
test -d "$1/.";
else
case $1 in
-*)set "./$1";;
esac;
case `ls -ld'$as_ls_L_option' "$1" 2>/dev/null` in
???[sx]*):;;*)false;;esac;fi
'\'' sh
'
fi
as_executable_p=$as_test_x
# Sed expression to map a string onto a valid CPP name.
as_tr_cpp="eval sed 'y%*$as_cr_letters%P$as_cr_LETTERS%;s%[^_$as_cr_alnum]%_%g'"
# Sed expression to map a string onto a valid variable name.
as_tr_sh="eval sed 'y%*+%pp%;s%[^_$as_cr_alnum]%_%g'"
exec 6>&1
# Save the log message, to keep $[0] and so on meaningful, and to
# report actual input values of CONFIG_FILES etc. instead of their
# values after options handling.
ac_log="
This file was extended by libdbus-c++ $as_me 0.5.0, which was
generated by GNU Autoconf 2.61. Invocation command line was
CONFIG_FILES = $CONFIG_FILES
CONFIG_HEADERS = $CONFIG_HEADERS
CONFIG_LINKS = $CONFIG_LINKS
CONFIG_COMMANDS = $CONFIG_COMMANDS
$ $0 $@
on `(hostname || uname -n) 2>/dev/null | sed 1q`
"
# Files that config.status was made for.
config_files=" Makefile src/Makefile tools/Makefile data/Makefile doc/Makefile doc/Doxyfile examples/Makefile examples/properties/Makefile examples/echo/Makefile examples/hal/Makefile examples/glib/Makefile dbus-c++-1.pc dbus-c++-1-uninstalled.pc libdbus-c++.spec"
config_headers=" include/dbus-c++/config.h"
config_commands=" depfiles"
ac_cs_usage="\
\`$as_me' instantiates files from templates according to the
current configuration.
Usage: $0 [OPTIONS] [FILE]...
-h, --help print this help, then exit
-V, --version print version number and configuration settings, then exit
-q, --quiet do not print progress messages
-d, --debug don't remove temporary files
--recheck update $as_me by reconfiguring in the same conditions
--file=FILE[:TEMPLATE]
instantiate the configuration file FILE
--header=FILE[:TEMPLATE]
instantiate the configuration header FILE
Configuration files:
$config_files
Configuration headers:
$config_headers
Configuration commands:
$config_commands
Report bugs to <bug-autoconf@gnu.org>."
ac_cs_version="\
libdbus-c++ config.status 0.5.0
configured by ./configure, generated by GNU Autoconf 2.61,
with options \"'--prefix=/usr' '--enable-debug'\"
Copyright (C) 2006 Free Software Foundation, Inc.
This config.status script is free software; the Free Software Foundation
gives unlimited permission to copy, distribute and modify it."
ac_pwd='/home-local/manu/dev/sfl/dbus-c++'
srcdir='.'
INSTALL='/usr/bin/install -c'
# If no file are specified by the user, then we need to provide default
# value. By we need to know if files were specified by the user.
ac_need_defaults=:
while test $# != 0
do
case $1 in
--*=*)
ac_option=`expr "X$1" : 'X\([^=]*\)='`
ac_optarg=`expr "X$1" : 'X[^=]*=\(.*\)'`
ac_shift=:
;;
*)
ac_option=$1
ac_optarg=$2
ac_shift=shift
;;
esac
case $ac_option in
# Handling of the options.
-recheck | --recheck | --rechec | --reche | --rech | --rec | --re | --r)
ac_cs_recheck=: ;;
--version | --versio | --versi | --vers | --ver | --ve | --v | -V )
echo "$ac_cs_version"; exit ;;
--debug | --debu | --deb | --de | --d | -d )
debug=: ;;
--file | --fil | --fi | --f )
$ac_shift
CONFIG_FILES="$CONFIG_FILES $ac_optarg"
ac_need_defaults=false;;
--header | --heade | --head | --hea )
$ac_shift
CONFIG_HEADERS="$CONFIG_HEADERS $ac_optarg"
ac_need_defaults=false;;
--he | --h)
# Conflict between --help and --header
{ echo "$as_me: error: ambiguous option: $1
Try \`$0 --help' for more information." >&2
{ (exit 1); exit 1; }; };;
--help | --hel | -h )
echo "$ac_cs_usage"; exit ;;
-q | -quiet | --quiet | --quie | --qui | --qu | --q \
| -silent | --silent | --silen | --sile | --sil | --si | --s)
ac_cs_silent=: ;;
# This is an error.
-*) { echo "$as_me: error: unrecognized option: $1
Try \`$0 --help' for more information." >&2
{ (exit 1); exit 1; }; } ;;
*) ac_config_targets="$ac_config_targets $1"
ac_need_defaults=false ;;
esac
shift
done
ac_configure_extra_args=
if $ac_cs_silent; then
exec 6>/dev/null
ac_configure_extra_args="$ac_configure_extra_args --silent"
fi
if $ac_cs_recheck; then
echo "running CONFIG_SHELL=/bin/bash /bin/bash ./configure " '--prefix=/usr' '--enable-debug' $ac_configure_extra_args " --no-create --no-recursion" >&6
CONFIG_SHELL=/bin/bash
export CONFIG_SHELL
exec /bin/bash "./configure" '--prefix=/usr' '--enable-debug' $ac_configure_extra_args --no-create --no-recursion
fi
exec 5>>config.log
{
echo
sed 'h;s/./-/g;s/^.../## /;s/...$/ ##/;p;x;p;x' <<_ASBOX
## Running $as_me. ##
_ASBOX
echo "$ac_log"
} >&5
#
# INIT-COMMANDS
#
AMDEP_TRUE="" ac_aux_dir="."
# Handling of arguments.
for ac_config_target in $ac_config_targets
do
case $ac_config_target in
"include/dbus-c++/config.h") CONFIG_HEADERS="$CONFIG_HEADERS include/dbus-c++/config.h" ;;
"depfiles") CONFIG_COMMANDS="$CONFIG_COMMANDS depfiles" ;;
"Makefile") CONFIG_FILES="$CONFIG_FILES Makefile" ;;
"src/Makefile") CONFIG_FILES="$CONFIG_FILES src/Makefile" ;;
"tools/Makefile") CONFIG_FILES="$CONFIG_FILES tools/Makefile" ;;
"data/Makefile") CONFIG_FILES="$CONFIG_FILES data/Makefile" ;;
"doc/Makefile") CONFIG_FILES="$CONFIG_FILES doc/Makefile" ;;
"doc/Doxyfile") CONFIG_FILES="$CONFIG_FILES doc/Doxyfile" ;;
"examples/Makefile") CONFIG_FILES="$CONFIG_FILES examples/Makefile" ;;
"examples/properties/Makefile") CONFIG_FILES="$CONFIG_FILES examples/properties/Makefile" ;;
"examples/echo/Makefile") CONFIG_FILES="$CONFIG_FILES examples/echo/Makefile" ;;
"examples/hal/Makefile") CONFIG_FILES="$CONFIG_FILES examples/hal/Makefile" ;;
"examples/glib/Makefile") CONFIG_FILES="$CONFIG_FILES examples/glib/Makefile" ;;
"dbus-c++-1.pc") CONFIG_FILES="$CONFIG_FILES dbus-c++-1.pc" ;;
"dbus-c++-1-uninstalled.pc") CONFIG_FILES="$CONFIG_FILES dbus-c++-1-uninstalled.pc" ;;
"libdbus-c++.spec") CONFIG_FILES="$CONFIG_FILES libdbus-c++.spec" ;;
*) { { echo "$as_me:$LINENO: error: invalid argument: $ac_config_target" >&5
echo "$as_me: error: invalid argument: $ac_config_target" >&2;}
{ (exit 1); exit 1; }; };;
esac
done
# If the user did not use the arguments to specify the items to instantiate,
# then the envvar interface is used. Set only those that are not.
# We use the long form for the default assignment because of an extremely
# bizarre bug on SunOS 4.1.3.
if $ac_need_defaults; then
test "${CONFIG_FILES+set}" = set || CONFIG_FILES=$config_files
test "${CONFIG_HEADERS+set}" = set || CONFIG_HEADERS=$config_headers
test "${CONFIG_COMMANDS+set}" = set || CONFIG_COMMANDS=$config_commands
fi
# Have a temporary directory for convenience. Make it in the build tree
# simply because there is no reason against having it here, and in addition,
# creating and moving files from /tmp can sometimes cause problems.
# Hook for its removal unless debugging.
# Note that there is a small window in which the directory will not be cleaned:
# after its creation but before its name has been assigned to `$tmp'.
$debug ||
{
tmp=
trap 'exit_status=$?
{ test -z "$tmp" || test ! -d "$tmp" || rm -fr "$tmp"; } && exit $exit_status
' 0
trap '{ (exit 1); exit 1; }' 1 2 13 15
}
# Create a (secure) tmp directory for tmp files.
{
tmp=`(umask 077 && mktemp -d "./confXXXXXX") 2>/dev/null` &&
test -n "$tmp" && test -d "$tmp"
} ||
{
tmp=./conf$$-$RANDOM
(umask 077 && mkdir "$tmp")
} ||
{
echo "$me: cannot create a temporary directory in ." >&2
{ (exit 1); exit 1; }
}
#
# Set up the sed scripts for CONFIG_FILES section.
#
# No need to generate the scripts if there are no CONFIG_FILES.
# This happens for instance when ./config.status config.h
if test -n "$CONFIG_FILES"; then
cat >"$tmp/subs-1.sed" <<\CEOF
/@[a-zA-Z_][a-zA-Z_0-9]*@/!b
s,@SHELL@,|#_!!_#|/bin/bash,g
s,@PATH_SEPARATOR@,|#_!!_#|:,g
s,@PACKAGE_NAME@,|#_!!_#|libdbus-c++,g
s,@PACKAGE_TARNAME@,|#_!!_#|libdbus-c--,g
s,@PACKAGE_VERSION@,|#_!!_#|0.5.0,g
s,@PACKAGE_STRING@,|#_!!_#|libdbus-c++ 0.5.0,g
s,@PACKAGE_BUGREPORT@,|#_!!_#|shackan@|#_!!_#|gmail.com,g
s,@exec_prefix@,|#_!!_#|${prefix},g
s,@prefix@,|#_!!_#|/usr,g
s,@program_transform_name@,|#_!!_#|s\,x\,x\,,g
s,@bindir@,|#_!!_#|${exec_prefix}/bin,g
s,@sbindir@,|#_!!_#|${exec_prefix}/sbin,g
s,@libexecdir@,|#_!!_#|${exec_prefix}/libexec,g
s,@datarootdir@,|#_!!_#|${prefix}/share,g
s,@datadir@,|#_!!_#|${datarootdir},g
s,@sysconfdir@,|#_!!_#|${prefix}/etc,g
s,@sharedstatedir@,|#_!!_#|${prefix}/com,g
s,@localstatedir@,|#_!!_#|${prefix}/var,g
s,@includedir@,|#_!!_#|${prefix}/include,g
s,@oldincludedir@,|#_!!_#|/usr/include,g
s,@docdir@,|#_!!_#|${datarootdir}/doc/${PACKAGE_TARNAME},g
s,@infodir@,|#_!!_#|${datarootdir}/info,g
s,@htmldir@,|#_!!_#|${docdir},g
s,@dvidir@,|#_!!_#|${docdir},g
s,@pdfdir@,|#_!!_#|${docdir},g
s,@psdir@,|#_!!_#|${docdir},g
s,@libdir@,|#_!!_#|${exec_prefix}/lib,g
s,@localedir@,|#_!!_#|${datarootdir}/locale,g
s,@mandir@,|#_!!_#|${datarootdir}/man,g
s,@DEFS@,|#_!!_#|-DHAVE_CONFIG_H,g
s,@ECHO_C@,|#_!!_#|,g
s,@ECHO_N@,|#_!!_#|-n,g
s,@ECHO_T@,|#_!!_#|,g
s,@LIBS@,|#_!!_#|,g
s,@build_alias@,|#_!!_#|,g
s,@host_alias@,|#_!!_#|,g
s,@target_alias@,|#_!!_#|,g
s,@INSTALL_PROGRAM@,|#_!!_#|${INSTALL},g
s,@INSTALL_SCRIPT@,|#_!!_#|${INSTALL},g
s,@INSTALL_DATA@,|#_!!_#|${INSTALL} -m 644,g
s,@CYGPATH_W@,|#_!!_#|echo,g
s,@PACKAGE@,|#_!!_#|libdbus-c++,g
s,@VERSION@,|#_!!_#|0.5.0,g
s,@ACLOCAL@,|#_!!_#|${SHELL} /home-local/manu/dev/sfl/dbus-c++/missing --run aclocal-1.9,g
s,@AUTOCONF@,|#_!!_#|${SHELL} /home-local/manu/dev/sfl/dbus-c++/missing --run autoconf,g
s,@AUTOMAKE@,|#_!!_#|${SHELL} /home-local/manu/dev/sfl/dbus-c++/missing --run automake-1.9,g
s,@AUTOHEADER@,|#_!!_#|${SHELL} /home-local/manu/dev/sfl/dbus-c++/missing --run autoheader,g
s,@MAKEINFO@,|#_!!_#|${SHELL} /home-local/manu/dev/sfl/dbus-c++/missing --run makeinfo,g
s,@install_sh@,|#_!!_#|/home-local/manu/dev/sfl/dbus-c++/install-sh,g
s,@STRIP@,|#_!!_#|strip,g
s,@INSTALL_STRIP_PROGRAM@,|#_!!_#|${SHELL} $(install_sh) -c -s,g
s,@mkdir_p@,|#_!!_#|mkdir -p --,g
s,@AWK@,|#_!!_#|gawk,g
s,@SET_MAKE@,|#_!!_#|,g
s,@am__leading_dot@,|#_!!_#|.,g
s,@AMTAR@,|#_!!_#|${SHELL} /home-local/manu/dev/sfl/dbus-c++/missing --run tar,g
s,@am__tar@,|#_!!_#|${AMTAR} chof - "$$tardir",g
s,@am__untar@,|#_!!_#|${AMTAR} xf -,g
s,@build@,|#_!!_#|i686-pc-linux-gnu,g
s,@build_cpu@,|#_!!_#|i686,g
s,@build_vendor@,|#_!!_#|pc,g
s,@build_os@,|#_!!_#|linux-gnu,g
s,@host@,|#_!!_#|i686-pc-linux-gnu,g
s,@host_cpu@,|#_!!_#|i686,g
s,@host_vendor@,|#_!!_#|pc,g
s,@host_os@,|#_!!_#|linux-gnu,g
s,@CC@,|#_!!_#|gcc,g
s,@CFLAGS@,|#_!!_#|-g -O2,g
s,@LDFLAGS@,|#_!!_#|,g
s,@CPPFLAGS@,|#_!!_#|,g
s,@ac_ct_CC@,|#_!!_#|gcc,g
s,@EXEEXT@,|#_!!_#|,g
s,@OBJEXT@,|#_!!_#|o,g
s,@DEPDIR@,|#_!!_#|.deps,g
s,@am__include@,|#_!!_#|include,g
s,@am__quote@,|#_!!_#|,g
s,@AMDEP_TRUE@,|#_!!_#|,g
s,@AMDEP_FALSE@,|#_!!_#|#,g
s,@AMDEPBACKSLASH@,|#_!!_#|\\,g
s,@CCDEPMODE@,|#_!!_#|depmode=gcc3,g
s,@am__fastdepCC_TRUE@,|#_!!_#|,g
s,@am__fastdepCC_FALSE@,|#_!!_#|#,g
s,@CXX@,|#_!!_#|g++,g
s,@CXXFLAGS@,|#_!!_#|-fvisibility=hidden -Wall -ggdb -O0 -DDEBUG -Wfatal-errors -Werror,g
s,@ac_ct_CXX@,|#_!!_#|g++,g
s,@CXXDEPMODE@,|#_!!_#|depmode=gcc3,g
s,@am__fastdepCXX_TRUE@,|#_!!_#|,g
s,@am__fastdepCXX_FALSE@,|#_!!_#|#,g
s,@CXX_FOR_BUILD@,|#_!!_#|g++,g
s,@SED@,|#_!!_#|/bin/sed,g
s,@GREP@,|#_!!_#|/bin/grep,g
s,@EGREP@,|#_!!_#|/bin/grep -E,g
s,@LN_S@,|#_!!_#|ln -s,g
s,@ECHO@,|#_!!_#|echo,g
s,@AR@,|#_!!_#|ar,g
s,@RANLIB@,|#_!!_#|ranlib,g
s,@DSYMUTIL@,|#_!!_#|,g
CEOF
cat >"$tmp/subs-2.sed" <<\CEOF
/@[a-zA-Z_][a-zA-Z_0-9]*@/!b end
s,@NMEDIT@,|#_!!_#|,g
s,@CPP@,|#_!!_#|gcc -E,g
s,@CXXCPP@,|#_!!_#|g++ -E,g
s,@F77@,|#_!!_#|,g
s,@FFLAGS@,|#_!!_#|,g
s,@ac_ct_F77@,|#_!!_#|,g
s,@LIBTOOL@,|#_!!_#|$(SHELL) $(top_builddir)/libtool,g
s,@PKG_CONFIG@,|#_!!_#|/usr/bin/pkg-config,g
s,@dbus_CFLAGS@,|#_!!_#|-I/usr/include/dbus-1.0 -I/usr/lib/dbus-1.0/include ,g
s,@dbus_LIBS@,|#_!!_#|-ldbus-1 ,g
s,@glib_CFLAGS@,|#_!!_#|,g
s,@glib_LIBS@,|#_!!_#|,g
s,@ENABLE_GLIB_TRUE@,|#_!!_#|#,g
s,@ENABLE_GLIB_FALSE@,|#_!!_#|,g
s,@HAVE_GTKMM_TRUE@,|#_!!_#|#,g
s,@HAVE_GTKMM_FALSE@,|#_!!_#|,g
s,@gtkmm_CFLAGS@,|#_!!_#|,g
s,@gtkmm_LIBS@,|#_!!_#|,g
s,@xml_CFLAGS@,|#_!!_#|,g
s,@xml_LIBS@,|#_!!_#|-lexpat,g
s,@DOXYGEN@,|#_!!_#|/usr/bin/doxygen,g
s,@DBUS_DOXYGEN_DOCS_ENABLED_TRUE@,|#_!!_#|#,g
s,@DBUS_DOXYGEN_DOCS_ENABLED_FALSE@,|#_!!_#|,g
s,@CROSS_COMPILING_TRUE@,|#_!!_#|#,g
s,@CROSS_COMPILING_FALSE@,|#_!!_#|,g
s,@BUILD_LIBDBUS_CXX_DIR@,|#_!!_#|$(top_builddir),g
s,@LIBOBJS@,|#_!!_#|,g
s,@LTLIBOBJS@,|#_!!_#|,g
:end
s/|#_!!_#|//g
CEOF
fi # test -n "$CONFIG_FILES"
for ac_tag in :F $CONFIG_FILES :H $CONFIG_HEADERS :C $CONFIG_COMMANDS
do
case $ac_tag in
:[FHLC]) ac_mode=$ac_tag; continue;;
esac
case $ac_mode$ac_tag in
:[FHL]*:*);;
:L* | :C*:*) { { echo "$as_me:$LINENO: error: Invalid tag $ac_tag." >&5
echo "$as_me: error: Invalid tag $ac_tag." >&2;}
{ (exit 1); exit 1; }; };;
:[FH]-) ac_tag=-:-;;
:[FH]*) ac_tag=$ac_tag:$ac_tag.in;;
esac
ac_save_IFS=$IFS
IFS=:
set x $ac_tag
IFS=$ac_save_IFS
shift
ac_file=$1
shift
case $ac_mode in
:L) ac_source=$1;;
:[FH])
ac_file_inputs=
for ac_f
do
case $ac_f in
-) ac_f="$tmp/stdin";;
*) # Look for the file first in the build tree, then in the source tree
# (if the path is not absolute). The absolute path cannot be DOS-style,
# because $ac_f cannot contain `:'.
test -f "$ac_f" ||
case $ac_f in
[\\/$]*) false;;
*) test -f "$srcdir/$ac_f" && ac_f="$srcdir/$ac_f";;
esac ||
{ { echo "$as_me:$LINENO: error: cannot find input file: $ac_f" >&5
echo "$as_me: error: cannot find input file: $ac_f" >&2;}
{ (exit 1); exit 1; }; };;
esac
ac_file_inputs="$ac_file_inputs $ac_f"
done
# Let's still pretend it is `configure' which instantiates (i.e., don't
# use $as_me), people would be surprised to read:
# /* config.h. Generated by config.status. */
configure_input="Generated from "`IFS=:
echo $* | sed 's|^[^:]*/||;s|:[^:]*/|, |g'`" by configure."
if test x"$ac_file" != x-; then
configure_input="$ac_file. $configure_input"
{ echo "$as_me:$LINENO: creating $ac_file" >&5
echo "$as_me: creating $ac_file" >&6;}
fi
case $ac_tag in
*:-:* | *:-) cat >"$tmp/stdin";;
esac
;;
esac
ac_dir=`$as_dirname -- "$ac_file" ||
$as_expr X"$ac_file" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \
X"$ac_file" : 'X\(//\)[^/]' \| \
X"$ac_file" : 'X\(//\)$' \| \
X"$ac_file" : 'X\(/\)' \| . 2>/dev/null ||
echo X"$ac_file" |
sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{
s//\1/
q
}
/^X\(\/\/\)[^/].*/{
s//\1/
q
}
/^X\(\/\/\)$/{
s//\1/
q
}
/^X\(\/\).*/{
s//\1/
q
}
s/.*/./; q'`
{ as_dir="$ac_dir"
case $as_dir in #(
-*) as_dir=./$as_dir;;
esac
test -d "$as_dir" || { $as_mkdir_p && mkdir -p "$as_dir"; } || {
as_dirs=
while :; do
case $as_dir in #(
*\'*) as_qdir=`echo "$as_dir" | sed "s/'/'\\\\\\\\''/g"`;; #(
*) as_qdir=$as_dir;;
esac
as_dirs="'$as_qdir' $as_dirs"
as_dir=`$as_dirname -- "$as_dir" ||
$as_expr X"$as_dir" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \
X"$as_dir" : 'X\(//\)[^/]' \| \
X"$as_dir" : 'X\(//\)$' \| \
X"$as_dir" : 'X\(/\)' \| . 2>/dev/null ||
echo X"$as_dir" |
sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{
s//\1/
q
}
/^X\(\/\/\)[^/].*/{
s//\1/
q
}
/^X\(\/\/\)$/{
s//\1/
q
}
/^X\(\/\).*/{
s//\1/
q
}
s/.*/./; q'`
test -d "$as_dir" && break
done
test -z "$as_dirs" || eval "mkdir $as_dirs"
} || test -d "$as_dir" || { { echo "$as_me:$LINENO: error: cannot create directory $as_dir" >&5
echo "$as_me: error: cannot create directory $as_dir" >&2;}
{ (exit 1); exit 1; }; }; }
ac_builddir=.
case "$ac_dir" in
.) ac_dir_suffix= ac_top_builddir_sub=. ac_top_build_prefix= ;;
*)
ac_dir_suffix=/`echo "$ac_dir" | sed 's,^\.[\\/],,'`
# A ".." for each directory in $ac_dir_suffix.
ac_top_builddir_sub=`echo "$ac_dir_suffix" | sed 's,/[^\\/]*,/..,g;s,/,,'`
case $ac_top_builddir_sub in
"") ac_top_builddir_sub=. ac_top_build_prefix= ;;
*) ac_top_build_prefix=$ac_top_builddir_sub/ ;;
esac ;;
esac
ac_abs_top_builddir=$ac_pwd
ac_abs_builddir=$ac_pwd$ac_dir_suffix
# for backward compatibility:
ac_top_builddir=$ac_top_build_prefix
case $srcdir in
.) # We are building in place.
ac_srcdir=.
ac_top_srcdir=$ac_top_builddir_sub
ac_abs_top_srcdir=$ac_pwd ;;
[\\/]* | ?:[\\/]* ) # Absolute name.
ac_srcdir=$srcdir$ac_dir_suffix;
ac_top_srcdir=$srcdir
ac_abs_top_srcdir=$srcdir ;;
*) # Relative name.
ac_srcdir=$ac_top_build_prefix$srcdir$ac_dir_suffix
ac_top_srcdir=$ac_top_build_prefix$srcdir
ac_abs_top_srcdir=$ac_pwd/$srcdir ;;
esac
ac_abs_srcdir=$ac_abs_top_srcdir$ac_dir_suffix
case $ac_mode in
:F)
#
# CONFIG_FILE
#
case $INSTALL in
[\\/$]* | ?:[\\/]* ) ac_INSTALL=$INSTALL ;;
*) ac_INSTALL=$ac_top_build_prefix$INSTALL ;;
esac
# If the template does not know about datarootdir, expand it.
# FIXME: This hack should be removed a few years after 2.60.
ac_datarootdir_hack=; ac_datarootdir_seen=
case `sed -n '/datarootdir/ {
p
q
}
/@datadir@/p
/@docdir@/p
/@infodir@/p
/@localedir@/p
/@mandir@/p
' $ac_file_inputs` in
*datarootdir*) ac_datarootdir_seen=yes;;
*@datadir@*|*@docdir@*|*@infodir@*|*@localedir@*|*@mandir@*)
{ echo "$as_me:$LINENO: WARNING: $ac_file_inputs seems to ignore the --datarootdir setting" >&5
echo "$as_me: WARNING: $ac_file_inputs seems to ignore the --datarootdir setting" >&2;}
ac_datarootdir_hack='
s&@datadir@&${datarootdir}&g
s&@docdir@&${datarootdir}/doc/${PACKAGE_TARNAME}&g
s&@infodir@&${datarootdir}/info&g
s&@localedir@&${datarootdir}/locale&g
s&@mandir@&${datarootdir}/man&g
s&\${datarootdir}&${prefix}/share&g' ;;
esac
sed "/^[ ]*VPATH[ ]*=/{
s/:*\$(srcdir):*/:/
s/:*\${srcdir}:*/:/
s/:*@srcdir@:*/:/
s/^\([^=]*=[ ]*\):*/\1/
s/:*$//
s/^[^=]*=[ ]*$//
}
:t
/@[a-zA-Z_][a-zA-Z_0-9]*@/!b
s&@configure_input@&$configure_input&;t t
s&@top_builddir@&$ac_top_builddir_sub&;t t
s&@srcdir@&$ac_srcdir&;t t
s&@abs_srcdir@&$ac_abs_srcdir&;t t
s&@top_srcdir@&$ac_top_srcdir&;t t
s&@abs_top_srcdir@&$ac_abs_top_srcdir&;t t
s&@builddir@&$ac_builddir&;t t
s&@abs_builddir@&$ac_abs_builddir&;t t
s&@abs_top_builddir@&$ac_abs_top_builddir&;t t
s&@INSTALL@&$ac_INSTALL&;t t
$ac_datarootdir_hack
" $ac_file_inputs | sed -f "$tmp/subs-1.sed" | sed -f "$tmp/subs-2.sed" >$tmp/out
test -z "$ac_datarootdir_hack$ac_datarootdir_seen" &&
{ ac_out=`sed -n '/\${datarootdir}/p' "$tmp/out"`; test -n "$ac_out"; } &&
{ ac_out=`sed -n '/^[ ]*datarootdir[ ]*:*=/p' "$tmp/out"`; test -z "$ac_out"; } &&
{ echo "$as_me:$LINENO: WARNING: $ac_file contains a reference to the variable \`datarootdir'
which seems to be undefined. Please make sure it is defined." >&5
echo "$as_me: WARNING: $ac_file contains a reference to the variable \`datarootdir'
which seems to be undefined. Please make sure it is defined." >&2;}
rm -f "$tmp/stdin"
case $ac_file in
-) cat "$tmp/out"; rm -f "$tmp/out";;
*) rm -f "$ac_file"; mv "$tmp/out" $ac_file;;
esac
;;
:H)
#
# CONFIG_HEADER
#
# First, check the format of the line:
cat >"$tmp/defines.sed" <<\CEOF
/^[ ]*#[ ]*undef[ ][ ]*[_abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ][_abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789]*[ ]*$/b def
/^[ ]*#[ ]*define[ ][ ]*[_abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ][_abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789]*[( ]/b def
b
:def
s/$/ /
s,^\([ #]*\)[^ ]*\([ ]*PACKAGE_NAME\)[ (].*,\1define\2 "libdbus-c++" ,
s,^\([ #]*\)[^ ]*\([ ]*PACKAGE_TARNAME\)[ (].*,\1define\2 "libdbus-c--" ,
s,^\([ #]*\)[^ ]*\([ ]*PACKAGE_VERSION\)[ (].*,\1define\2 "0.5.0" ,
s,^\([ #]*\)[^ ]*\([ ]*PACKAGE_STRING\)[ (].*,\1define\2 "libdbus-c++ 0.5.0" ,
s,^\([ #]*\)[^ ]*\([ ]*PACKAGE_BUGREPORT\)[ (].*,\1define\2 "shackan@gmail.com" ,
s,^\([ #]*\)[^ ]*\([ ]*PACKAGE\)[ (].*,\1define\2 "libdbus-c++" ,
s,^\([ #]*\)[^ ]*\([ ]*VERSION\)[ (].*,\1define\2 "0.5.0" ,
s,^\([ #]*\)[^ ]*\([ ]*STDC_HEADERS\)[ (].*,\1define\2 1 ,
s,^\([ #]*\)[^ ]*\([ ]*HAVE_SYS_TYPES_H\)[ (].*,\1define\2 1 ,
s,^\([ #]*\)[^ ]*\([ ]*HAVE_SYS_STAT_H\)[ (].*,\1define\2 1 ,
s,^\([ #]*\)[^ ]*\([ ]*HAVE_STDLIB_H\)[ (].*,\1define\2 1 ,
s,^\([ #]*\)[^ ]*\([ ]*HAVE_STRING_H\)[ (].*,\1define\2 1 ,
s,^\([ #]*\)[^ ]*\([ ]*HAVE_MEMORY_H\)[ (].*,\1define\2 1 ,
s,^\([ #]*\)[^ ]*\([ ]*HAVE_STRINGS_H\)[ (].*,\1define\2 1 ,
s,^\([ #]*\)[^ ]*\([ ]*HAVE_INTTYPES_H\)[ (].*,\1define\2 1 ,
s,^\([ #]*\)[^ ]*\([ ]*HAVE_STDINT_H\)[ (].*,\1define\2 1 ,
s,^\([ #]*\)[^ ]*\([ ]*HAVE_UNISTD_H\)[ (].*,\1define\2 1 ,
s,^\([ #]*\)[^ ]*\([ ]*HAVE_DLFCN_H\)[ (].*,\1define\2 1 ,
s,^\([ #]*\)[^ ]*\([ ]*GCC_HASCLASSVISIBILITY\)[ (].*,\1define\2 1 ,
s,^\([ #]*\)[^ ]*\([ ]*DBUS_HAS_THREADS_INIT_DEFAULT\)[ (].*,\1define\2 ,
s,^\([ #]*\)[^ ]*\([ ]*DBUS_HAS_RECURSIVE_MUTEX\)[ (].*,\1define\2 ,
s,^\([ #]*\)[^ ]*\([ ]*HAVE_EXPAT_H\)[ (].*,\1define\2 1 ,
s,^\([ #]*\)[^ ]*\([ ]*HAVE_PTHREAD_H\)[ (].*,\1define\2 1 ,
s/ $//
s,^[ #]*u.*,/* & */,
CEOF
sed -f "$tmp/defines.sed" $ac_file_inputs >"$tmp/out1"
ac_result="$tmp/out1"
if test x"$ac_file" != x-; then
echo "/* $configure_input */" >"$tmp/config.h"
cat "$ac_result" >>"$tmp/config.h"
if diff $ac_file "$tmp/config.h" >/dev/null 2>&1; then
{ echo "$as_me:$LINENO: $ac_file is unchanged" >&5
echo "$as_me: $ac_file is unchanged" >&6;}
else
rm -f $ac_file
mv "$tmp/config.h" $ac_file
fi
else
echo "/* $configure_input */"
cat "$ac_result"
fi
rm -f "$tmp/out12"
# Compute $ac_file's index in $config_headers.
_am_stamp_count=1
for _am_header in $config_headers :; do
case $_am_header in
$ac_file | $ac_file:* )
break ;;
* )
_am_stamp_count=`expr $_am_stamp_count + 1` ;;
esac
done
echo "timestamp for $ac_file" >`$as_dirname -- $ac_file ||
$as_expr X$ac_file : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \
X$ac_file : 'X\(//\)[^/]' \| \
X$ac_file : 'X\(//\)$' \| \
X$ac_file : 'X\(/\)' \| . 2>/dev/null ||
echo X$ac_file |
sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{
s//\1/
q
}
/^X\(\/\/\)[^/].*/{
s//\1/
q
}
/^X\(\/\/\)$/{
s//\1/
q
}
/^X\(\/\).*/{
s//\1/
q
}
s/.*/./; q'`/stamp-h$_am_stamp_count
;;
:C) { echo "$as_me:$LINENO: executing $ac_file commands" >&5
echo "$as_me: executing $ac_file commands" >&6;}
;;
esac
case $ac_file$ac_mode in
"depfiles":C) test x"$AMDEP_TRUE" != x"" || for mf in $CONFIG_FILES; do
# Strip MF so we end up with the name of the file.
mf=`echo "$mf" | sed -e 's/:.*$//'`
# Check whether this is an Automake generated Makefile or not.
# We used to match only the files named `Makefile.in', but
# some people rename them; so instead we look at the file content.
# Grep'ing the first line is not enough: some people post-process
# each Makefile.in and add a new line on top of each file to say so.
# So let's grep whole file.
if grep '^#.*generated by automake' $mf > /dev/null 2>&1; then
dirpart=`$as_dirname -- "$mf" ||
$as_expr X"$mf" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \
X"$mf" : 'X\(//\)[^/]' \| \
X"$mf" : 'X\(//\)$' \| \
X"$mf" : 'X\(/\)' \| . 2>/dev/null ||
echo X"$mf" |
sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{
s//\1/
q
}
/^X\(\/\/\)[^/].*/{
s//\1/
q
}
/^X\(\/\/\)$/{
s//\1/
q
}
/^X\(\/\).*/{
s//\1/
q
}
s/.*/./; q'`
else
continue
fi
# Extract the definition of DEPDIR, am__include, and am__quote
# from the Makefile without running `make'.
DEPDIR=`sed -n 's/^DEPDIR = //p' < "$mf"`
test -z "$DEPDIR" && continue
am__include=`sed -n 's/^am__include = //p' < "$mf"`
test -z "am__include" && continue
am__quote=`sed -n 's/^am__quote = //p' < "$mf"`
# When using ansi2knr, U may be empty or an underscore; expand it
U=`sed -n 's/^U = //p' < "$mf"`
# Find all dependency output files, they are included files with
# $(DEPDIR) in their names. We invoke sed twice because it is the
# simplest approach to changing $(DEPDIR) to its actual value in the
# expansion.
for file in `sed -n "
s/^$am__include $am__quote\(.*(DEPDIR).*\)$am__quote"'$/\1/p' <"$mf" | \
sed -e 's/\$(DEPDIR)/'"$DEPDIR"'/g' -e 's/\$U/'"$U"'/g'`; do
# Make sure the directory exists.
test -f "$dirpart/$file" && continue
fdir=`$as_dirname -- "$file" ||
$as_expr X"$file" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \
X"$file" : 'X\(//\)[^/]' \| \
X"$file" : 'X\(//\)$' \| \
X"$file" : 'X\(/\)' \| . 2>/dev/null ||
echo X"$file" |
sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{
s//\1/
q
}
/^X\(\/\/\)[^/].*/{
s//\1/
q
}
/^X\(\/\/\)$/{
s//\1/
q
}
/^X\(\/\).*/{
s//\1/
q
}
s/.*/./; q'`
{ as_dir=$dirpart/$fdir
case $as_dir in #(
-*) as_dir=./$as_dir;;
esac
test -d "$as_dir" || { $as_mkdir_p && mkdir -p "$as_dir"; } || {
as_dirs=
while :; do
case $as_dir in #(
*\'*) as_qdir=`echo "$as_dir" | sed "s/'/'\\\\\\\\''/g"`;; #(
*) as_qdir=$as_dir;;
esac
as_dirs="'$as_qdir' $as_dirs"
as_dir=`$as_dirname -- "$as_dir" ||
$as_expr X"$as_dir" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \
X"$as_dir" : 'X\(//\)[^/]' \| \
X"$as_dir" : 'X\(//\)$' \| \
X"$as_dir" : 'X\(/\)' \| . 2>/dev/null ||
echo X"$as_dir" |
sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{
s//\1/
q
}
/^X\(\/\/\)[^/].*/{
s//\1/
q
}
/^X\(\/\/\)$/{
s//\1/
q
}
/^X\(\/\).*/{
s//\1/
q
}
s/.*/./; q'`
test -d "$as_dir" && break
done
test -z "$as_dirs" || eval "mkdir $as_dirs"
} || test -d "$as_dir" || { { echo "$as_me:$LINENO: error: cannot create directory $as_dir" >&5
echo "$as_me: error: cannot create directory $as_dir" >&2;}
{ (exit 1); exit 1; }; }; }
# echo "creating $dirpart/$file"
echo '# dummy' > "$dirpart/$file"
done
done
;;
esac
done # for ac_tag
{ (exit 0); exit 0; }
prefix=
exec_prefix=
libdir=src
includedir=include
Name: libdbus-c++
Description: Native C++ bindings for D-Bus, Not Installed
Version: 0.5.0
Requires:
Conflicts:
Libs: ${pcfiledir}/${libdir}/libdbus-c++-1.la
Cflags: -I${pcfiledir}/${includedir}
prefix=/usr
exec_prefix=${prefix}
libdir=${exec_prefix}/lib
includedir=${prefix}/include
Name: dbus-c++
Description: Native C++ bindings for D-Bus.
Requires: dbus-1
Version: 0.5.0
Libs: -L${libdir} -ldbus-c++-1
Cflags: -I${includedir}/dbus-c++-1 -DDBUS_API_SUBJECT_TO_CHANGE
sflcodecdir = $(libdir)/sflphone/codecs include ../globals.mak
bin_PROGRAMS = sflphoned
bin_PROGRAMS = sflphoned
if USE_ZEROCONF if USE_ZEROCONF
ZEROCONFDIR = zeroconf ZEROCONFDIR = zeroconf
...@@ -14,27 +14,20 @@ endif ...@@ -14,27 +14,20 @@ endif
if USE_IAX if USE_IAX
# Use the global instead of locally built # Use the global instead of locally built
#IAX_LIBS =
IAX_FLAGS = -DUSE_IAX IAX_FLAGS = -DUSE_IAX
#IAX_CFLAGS = -I$(top_srcdir)/libs/libiax2/src/
IAX_CFLAGS =
IAXSOURCES = iaxaccount.cpp iaxvoiplink.cpp iaxcall.cpp IAXSOURCES = iaxaccount.cpp iaxvoiplink.cpp iaxcall.cpp
IAXHEADERS = iaxaccount.h iaxvoiplink.h iaxcall.h IAXHEADERS = iaxaccount.h iaxvoiplink.h iaxcall.h
else else
IAX_LIBS =
IAX_FLAGS = IAX_FLAGS =
IAX_CFLAGS =
IAXSOURCES = IAXSOURCES =
IAXHEADERS = IAXHEADERS =
endif endif
ALSAFLAG= -lasound SUBDIRS = audio config dbus $(ZEROCONFDIR)
PULSEAUDIO_LIBS=-lpulse
PJSIP_LIBS = -L/usr/local/lib -lpjnath -lpjsua -lpjsip -lpjmedia -lpjsip-simple -lpjsip-ua -lpjmedia-codec -lpjlib-util -lpj
SUBDIRS = audio config dbus $(ZEROCONFDIR) #contact memmanager video mixer PJSIP_LIBS = -lpjnath -lpjsua -lpjsip -lpjmedia -lpjsip-simple -lpjsip-ua -lpjmedia-codec -lpjlib-util -lpj
# Add here the cpp files to be build with sflphone
sflphoned_SOURCES = \ sflphoned_SOURCES = \
eventthread.cpp \ eventthread.cpp \
main.cpp \ main.cpp \
...@@ -51,28 +44,28 @@ sflphoned_SOURCES = \ ...@@ -51,28 +44,28 @@ sflphoned_SOURCES = \
$(IAXSOURCES) \ $(IAXSOURCES) \
useragent.cpp useragent.cpp
sflphoned_CXXFLAGS = -DPREFIX=\"$(prefix)\" -DPROGSHAREDIR=\"${datadir}/sflphone\" $(ZEROCONFFLAGS) $(IAX_FLAGS) $(SFLPHONE_CFLAGS) $(SIP_CFLAGS) sflphoned_CXXFLAGS = \
-DPREFIX=\"$(prefix)\" -DPROGSHAREDIR=\"${datadir}/sflphone\" \
$(ZEROCONFFLAGS) \
$(IAX_FLAGS)
#sflphoned_LDFLAGS = -static
sflphoned_LDADD = ./libsflphone.la $(SFLPHONE_LIBS) $(ZEROCONFLIB) $(LIB_DNSSD) $(IAX_LIBS) $(ALSAFLAG) $(PULSEAUDIO_LIBS) $(PJSIP_LIBS)
AM_CPPFLAGS = -I$(top_srcdir)/include -I$(top_srcdir)/libs $(libccext2_CFLAGS) $(libccgnu2_CFLAGS) $(IAX_CFLAGS) $(USER_INCLUDES) $(libdbuscpp_CFLAGS)
-DCODECS_DIR=\""$(sflcodecdir)"\"
-DENABLE_TRACE
# Add here the dynamic libraries sflphoned should be linked against
# libsflphone_la_LDFLAGS= -version-info 0:1:0 sflphoned_LDADD = \
libsflphone_la_LIBADD = \ ./libsflphone.la \
$(top_builddir)/libs/stund/libstun.la \ @CCGNU2_LIBS@ \
$(top_builddir)/libs/utilspp/libutilspp.la \ @CCEXT2_LIBS@ \
./audio/libaudio.la \ $(ZEROCONFLIB) \
./dbus/libdbus.la \
./config/libconfig.la \
$(IAX_LIBS) \ $(IAX_LIBS) \
$(PJSIP_LIBS) $(PJSIP_LIBS) \
@DBUSCPP_LIBS@ \
libsflphone_la_SOURCES = @CCRTP_LIBS@ \
@ALSA_LIBS@ \
@PULSEAUDIO_LIBS@ \
@SAMPLERATE_LIBS@
noinst_LTLIBRARIES = libsflphone.la noinst_LTLIBRARIES = libsflphone.la
noinst_HEADERS = \ noinst_HEADERS = \
managerimpl.h \ managerimpl.h \
manager.h \ manager.h \
...@@ -88,6 +81,14 @@ noinst_HEADERS = \ ...@@ -88,6 +81,14 @@ noinst_HEADERS = \
sipvoiplink.h \ sipvoiplink.h \
call.h \ call.h \
sipcall.h \ sipcall.h \
$(IAXHEADERS) \
useragent.h useragent.h
libsflphone_la_LIBADD = \
$(src)/libs/stund/libstun.la \
$(src)/libs/utilspp/libutilspp.la \
./audio/libaudio.la \
./dbus/libdbus.la \
./config/libconfig.la \
$(IAX_LIBS)
libsflphone_la_SOURCES =
sflcodecdir = $(libdir)/sflphone/codecs include $(top_srcdir)/globals.mak
noinst_LTLIBRARIES = libaudio.la noinst_LTLIBRARIES = libaudio.la
...@@ -22,16 +22,40 @@ endif ...@@ -22,16 +22,40 @@ endif
SUBDIRS = codecs SUBDIRS = codecs
libaudio_la_SOURCES = audiofile.cpp tonelist.cpp \ libaudio_la_SOURCES = \
audiortp.cpp audiostream.cpp dtmf.cpp tone.cpp alsalayer.cpp pulselayer.cpp audiodevice.cpp dtmfgenerator.cpp \ audiofile.cpp \
tonegenerator.cpp codecDescriptor.cpp samplecache.cpp\ tonelist.cpp \
audioloop.cpp ringbuffer.cpp $(SPEEX_SOURCES_CPP) audiortp.cpp \
audiostream.cpp \
AM_CXXFLAGS = -I$(top_srcdir)/include -I$(top_srcdir)/libs $(libccext2_CFLAGS) $(libdbuscpp_CFLAGS) $(libccrtp1_CFLAGS) $(USER_INCLUDES) \ dtmf.cpp \
-DCODECS_DIR=\""$(sflcodecdir)"\" $(SPEEX_FLAG) $(GSM_FLAG) $(ILBC_FLAG) tone.cpp \
alsalayer.cpp \
noinst_HEADERS = audioloop.h audiostream.h common.h ringbuffer.h audiofile.h \ pulselayer.cpp \
tonelist.h audiortp.h audiolayer.h alsalayer.h pulselayer.h audiodevice.h \ audiodevice.cpp \
dtmfgenerator.h tonegenerator.h samplecache.h \ dtmfgenerator.cpp \
codecDescriptor.h dtmf.h tone.h tonegenerator.cpp \
codecDescriptor.cpp \
samplecache.cpp \
audioloop.cpp \
ringbuffer.cpp \
$(SPEEX_SOURCES_CPP)
noinst_HEADERS = \
audioloop.h \
audiostream.h \
common.h \
ringbuffer.h \
audiofile.h \
tonelist.h \
audiortp.h \
audiolayer.h \
alsalayer.h \
pulselayer.h \
audiodevice.h \
dtmfgenerator.h \
tonegenerator.h \
samplecache.h \
codecDescriptor.h \
dtmf.h \
tone.h
...@@ -27,8 +27,8 @@ ...@@ -27,8 +27,8 @@
#include <vector> #include <vector>
#include <dirent.h> #include <dirent.h>
#include "../global.h" #include "global.h"
#include "../user_cfg.h" #include "user_cfg.h"
#include "codecs/audiocodec.h" #include "codecs/audiocodec.h"
/** Enumeration that contains known audio payloads */ /** Enumeration that contains known audio payloads */
......
sflcodecdir = $(libdir)/sflphone/codecs include $(top_srcdir)/globals.mak
if BUILD_GSM if BUILD_GSM
GSM_LIB = libcodec_gsm.so GSM_LIB = libcodec_gsm.so
libcodec_gsm_so_SOURCES = gsmcodec.cpp libcodec_gsm_so_SOURCES = gsmcodec.cpp
......
SUBDIRS = include $(top_srcdir)/globals.mak
EXTRA_DIST = *.xml README EXTRA_DIST = *.xml README
...@@ -12,7 +12,7 @@ libdbus_la_SOURCES = \ ...@@ -12,7 +12,7 @@ libdbus_la_SOURCES = \
dbusmanagerimpl.cpp dbusmanagerimpl.cpp
libdbus_la_CXXFLAGS = -DPREFIX=\"$(prefix)\" -DPROGSHAREDIR=\"${datadir}/sflphone\" libdbus_la_CXXFLAGS = -DPREFIX=\"$(prefix)\" -DPROGSHAREDIR=\"${datadir}/sflphone\"
libdbus_la_CPPFLAGS = -I$(top_srcdir)/libs -I$(top_srcdir)/src $(libccext2_CFLAGS) $(libdbuscpp_CFLAGS)
libdbus_la_LIBADD = libdbus_la_LIBADD =
noinst_HEADERS = \ noinst_HEADERS = \
......
include ../globals.mak
bin_PROGRAMS = configurationTester
OBJECT_FILES= \
../src/sflphoned-managerimpl.o \
../src/sflphoned-accountcreator.o \
../src/sflphoned-call.o \
../src/sflphoned-sipcall.o \
../src/sflphoned-iaxcall.o \
../src/sflphoned-voiplink.o \
../src/sflphoned-sipvoiplink.o \
../src/sflphoned-iaxvoiplink.o \
../src/sflphoned-account.o \
../src/sflphoned-sipaccount.o \
../src/sflphoned-iaxaccount.o \
../src/sflphoned-eventthread.o \
../src/sflphoned-samplerateconverter.o
configurationTester_SOURCES = \
configurationTest.cpp \
TestMain.cpp
configurationTester_LDADD = \
../src/libsflphone.la \
$(SFLPHONE_LIBS) $(ZEROCONFLIB) $(LIB_DNSSD) $(IAX_LIBS) $(EXOSIP_LIBS) \
@ALSA_LIBS@ \
@PULSEAUDIO_LIBS@ \
@CPPUNIT_LIBS@ \
@CCEXT2_LIBS@ \
@CCGNU2_LIBS@ \
@CCRTP_LIBS@ \
@DBUSCPP_LIBS@ \
@SAMPLERATE_LIBS@ \
$(OBJECT_FILES)
#include <cppunit/TextTestRunner.h>
#include <cppunit/extensions/TestFactoryRegistry.h>
int main(int argc, const char* argv[])
{
CppUnit::TextTestRunner runner;
runner.addTest(CppUnit::TestFactoryRegistry::getRegistry().makeTest());
runner.run();
return 0;
}
#include <cppunit/extensions/HelperMacros.h>
#include <cppunit/TestCaller.h>
#include <cppunit/TestCase.h>
#include <cppunit/TestSuite.h>
#include <assert.h>
#include "manager.h"
#include "global.h"
// Cppunit import
class ConfigurationTest : public CppUnit::TestCase {
CPPUNIT_TEST_SUITE( ConfigurationTest );
CPPUNIT_TEST( testDefaultValueAudio );
CPPUNIT_TEST( testTheTest );
CPPUNIT_TEST_SUITE_END();
public:
ConfigurationTest() : CppUnit::TestCase("Configuration Tests") {}
void testDefaultValueAudio(){
CPPUNIT_ASSERT( Manager::instance().getConfigString( AUDIO, ALSA_PLUGIN ) == "default" );
}
void testTheTest(){
CPPUNIT_ASSERT( 3 == 2 );
}
void setUp(){
}
void tearDown(){
}
};
CPPUNIT_TEST_SUITE_REGISTRATION( ConfigurationTest );
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment