Module: sip-router
Branch: janakj/bdb
Commit: 986445fbfdfd58dfb21992a9a098adda3be7a396
URL:
http://git.sip-router.org/cgi-bin/gitweb.cgi/sip-router/?a=commit;h=986445f…
Author: Jan Janak <jan(a)iptel.org>
Committer: Jan Janak <jan(a)iptel.org>
Date: Sun Feb 15 15:54:00 2009 +0100
Fixed wrong order of directives in modules Makefile.
Some of the directives in the Makefile of the module were listed in a
wrong order and as a result they had no effect.
---
modules/db_berkeley/Makefile | 6 +++---
1 files changed, 3 insertions(+), 3 deletions(-)
diff --git a/modules/db_berkeley/Makefile b/modules/db_berkeley/Makefile
index 5671867..851d961 100644
--- a/modules/db_berkeley/Makefile
+++ b/modules/db_berkeley/Makefile
@@ -4,6 +4,9 @@
#
#
# WARNING: do not run this directly, it should be run by the master Makefile
+include ../../Makefile.defs
+auto_gen=
+NAME=db_berkeley.so
# extra debug messages
# -DBDB_EXTRA_DEBUG is optional
@@ -11,9 +14,6 @@ DEFS +=-I$(LOCALBASE)/include -I$(LOCALBASE)/BerkeleyDB.4.6/include \
-I$(SYSBASE)/include
-include ../../Makefile.defs
-auto_gen=
-NAME=db_berkeley.so
LIBS=-L$(LOCALBASE)/lib -L$(SYSBASE)/lib -L$(LOCALBASE)/BerkeleyDB.4.6/lib -ldb
include ../../Makefile.modules