diff options
Diffstat (limited to 'ext/db')
-rw-r--r-- | ext/db/Makefile.am | 5 | ||||
-rw-r--r-- | ext/db/Makefile.in | 10 | ||||
-rw-r--r-- | ext/db/config.m4 | 8 |
3 files changed, 14 insertions, 9 deletions
diff --git a/ext/db/Makefile.am b/ext/db/Makefile.am deleted file mode 100644 index 7dc6e32d07..0000000000 --- a/ext/db/Makefile.am +++ /dev/null @@ -1,5 +0,0 @@ -# $Id$ - -noinst_LTLIBRARIES=libphpext_db.la -libphpext_db_la_SOURCES=db.c - diff --git a/ext/db/Makefile.in b/ext/db/Makefile.in new file mode 100644 index 0000000000..a2856cdfc3 --- /dev/null +++ b/ext/db/Makefile.in @@ -0,0 +1,10 @@ + +DEPTH = ../.. +topsrcdir = @topsrcdir@ +srcdir = @srcdir@ +VPATH = @srcdir@ + +LTLIBRARY_NAME = libdb.la +LTLIBRARY_SOURCES = db.c + +include $(topsrcdir)/build/ltlib.mk diff --git a/ext/db/config.m4 b/ext/db/config.m4 index 319174dd51..a7042d141b 100644 --- a/ext/db/config.m4 +++ b/ext/db/config.m4 @@ -2,7 +2,7 @@ dnl $Id$ dnl config.m4 for extension db dnl don't forget to call PHP_EXTENSION(db) -divert(1) +divert(2)dnl AC_CHECK_HEADERS(db1/ndbm.h) @@ -21,13 +21,13 @@ AC_DEFUN(AC_PREFERRED_DB_LIB,[ else AC_MSG_RESULT($DBM_TYPE chosen) fi - AC_SUBST(DBM_LIB) - AC_SUBST(DBM_TYPE) + PHP_SUBST(DBM_LIB) + PHP_SUBST(DBM_TYPE) ]) AC_PREFERRED_DB_LIB -divert(3) +divert(4)dnl if test "$DBM_LIB" = "-lgdbm"; then AC_CHECK_HEADER(gdbm.h, [ GDBM_INCLUDE="" ], [ |