- properly handle some "--disable-*" configure options

This commit is contained in:
Thomas Ries
2009-02-28 22:30:38 +00:00
parent a6f2429c0f
commit 61ff15fa21
2 changed files with 7 additions and 3 deletions
+1
View File
@@ -1,6 +1,7 @@
0.7.2
=====
28-Feb-2009: - make install: install docu as well
- properly handle some "--disable-*" configure options
22-Feb-2009: - Reworked handling of plugin mechanism (libltdl "static"
inclusion of plugins should work now). Building under
Windows (with Cygwin) does work (build with
+6 -3
View File
@@ -147,8 +147,8 @@ dnl
AC_MSG_CHECKING(link statically against libosip2)
AC_ARG_ENABLE(static-libosip2,
[ --enable-static-libosip2 link statically against libosip2],
build_static_libosip="yes";
AC_MSG_RESULT(yes), AC_MSG_RESULT(no))
build_static_libosip="$enableval";
AC_MSG_RESULT($enableval), AC_MSG_RESULT(no))
dnl **********************************************
@@ -160,8 +160,11 @@ dnl --enable-dmalloc
AC_MSG_CHECKING(building with DMALLOC support)
AC_ARG_ENABLE(dmalloc,
[ --enable-dmalloc build with DMALLOC support],
dmalloc="$enableval";
AC_MSG_RESULT($enableval), AC_MSG_RESULT(no))
if test "x$dmalloc" = "xyes"; then
CFLAGS="$CFLAGS -DDMALLOC ";LIBS="-ldmallocth $LIBS";
AC_MSG_RESULT(yes), AC_MSG_RESULT(no))
fi
dnl