diff options
-rw-r--r-- | configure.ac | 2 | ||||
-rw-r--r-- | src/Makefile.am | 8 |
2 files changed, 5 insertions, 5 deletions
diff --git a/configure.ac b/configure.ac index 60b80d0..bb12ff0 100644 --- a/configure.ac +++ b/configure.ac @@ -1,5 +1,5 @@ AC_PREREQ([2.59]) -AC_INIT([libdnsldap], [0.1.0a1], [mnagy@redhat.com]) +AC_INIT([bind-dyndb-ldap], [0.1.0a1], [mnagy@redhat.com]) AM_INIT_AUTOMAKE([-Wall foreign dist-bzip2]) diff --git a/src/Makefile.am b/src/Makefile.am index c15e1cb..8049c1c 100644 --- a/src/Makefile.am +++ b/src/Makefile.am @@ -1,4 +1,4 @@ -bindplugin_LTLIBRARIES = libdnsldap.la +bindplugin_LTLIBRARIES = ldap.la bindplugindir=$(libdir)/bind HDRS = \ @@ -14,7 +14,7 @@ HDRS = \ util.h \ zone_manager.h -libdnsldap_la_SOURCES = \ +ldap_la_SOURCES = \ $(HDRS) \ acl.c \ cache.c \ @@ -28,6 +28,6 @@ libdnsldap_la_SOURCES = \ str.c \ zone_manager.c -libdnsldap_la_CFLAGS = -Wall -Wextra -pedantic -std=c99 +ldap_la_CFLAGS = -Wall -Wextra -pedantic -std=c99 -libdnsldap_la_LDFLAGS = -avoid-version +ldap_la_LDFLAGS = -module -avoid-version |