Author: mikael
Date: 2007-02-27 07:53:33 -0500 (Tue, 27 Feb 2007)
New Revision: 2545
Modified:
openpbx/branches/openpbx-1.2/cdr/Makefile.am
openpbx/branches/openpbx-1.2/configure.ac
Log:
Added cdr_manager.c to 1.2
Modified: openpbx/branches/openpbx-1.2/cdr/Makefile.am
============================================================
=======
--- openpbx/branches/openpbx-1.2/cdr/Makefile.am 2007-02-23
06:47:14 UTC (rev 2544)
+++ openpbx/branches/openpbx-1.2/cdr/Makefile.am 2007-02-27
12:53:33 UTC (rev 2545)
 -33,6
+33,14 
cdr_pgsql_la_LIBADD = PQLIBPATH -lpq
$/corelib/libopenpbx.la
endif WANT_CDR_PGSQL
+if WANT_CDR_MANAGER
+opbxmod_LTLIBRARIES += cdr_manager.la
+cdr_manager_la_SOURCES = cdr_manager.c
+cdr_manager_la_CFLAGS = $(AM_CFLAGS) PQINCPATH
+cdr_manager_la_LDFLAGS = -module -avoid-version
-no-undefined
+cdr_manager_la_LIBADD =
$/corelib/libopenpbx.la
+endif WANT_CDR_MANAGER
+
opbxmod_LTLIBRARIES += cdr_sqlite3.la
cdr_sqlite3_la_SOURCES = cdr_sqlite3.c
cdr_sqlite3_la_LDFLAGS = -module -avoid-version
-no-undefined
Modified: openpbx/branches/openpbx-1.2/configure.ac
============================================================
=======
--- openpbx/branches/openpbx-1.2/configure.ac 2007-02-23
06:47:14 UTC (rev 2544)
+++ openpbx/branches/openpbx-1.2/configure.ac 2007-02-27
12:53:33 UTC (rev 2545)
 -771,6
+771,15 
dnl
############################################################
###############
+AC_ARG_WITH([cdr_manager],
+ [AC_HELP_STRING([--with-cdr_manager],[Build and
install cdr_manager (default=yes)])],,
+ [with_cdr_manager="yes"])
+
+AM_CONDITIONAL([WANT_CDR_MANAGER],[test
"$" = "yes"])
+
+
+dnl
############################################################
###############
+
AC_ARG_ENABLE([postgresql],
[AC_HELP_STRING([--enable-postgresql],[Enable support for
PostgreSQL.
(default=no)])],,[enable_postgresql="no"])
_______________________________________________
Openpbx-svn mailing list
Openpbx-svn openpbx.org
http://lists.openpbx.org/mailman/listinfo/openpbx-svn
|