summaryrefslogtreecommitdiffstats
path: root/configure.ac
diff options
context:
space:
mode:
authorStephen Gallagher <sgallagh@redhat.com>2009-05-12 11:51:20 -0400
committerSimo Sorce <ssorce@redhat.com>2009-05-14 11:34:04 -0400
commite54ce04c11c4a6ff8b5c7bbbd738f70e3da4e101 (patch)
treec2f1993b7192d9b8dd2b8c6c3e96de6884362743 /configure.ac
parent5d237157deefb39db63acdd950bd67c7809415f6 (diff)
downloadding-libs-e54ce04c11c4a6ff8b5c7bbbd738f70e3da4e101.tar.gz
ding-libs-e54ce04c11c4a6ff8b5c7bbbd738f70e3da4e101.tar.xz
ding-libs-e54ce04c11c4a6ff8b5c7bbbd738f70e3da4e101.zip
Enable modular build of common SSSD libraries
Allow configuration and build of individual SSSD utility libraries from their own subdirectories. Building all utilities is still possible recursively from the common root.
Diffstat (limited to 'configure.ac')
-rw-r--r--configure.ac11
1 files changed, 6 insertions, 5 deletions
diff --git a/configure.ac b/configure.ac
index 120d103..a5fa3d5 100644
--- a/configure.ac
+++ b/configure.ac
@@ -1,9 +1,10 @@
-AC_INIT([elapi], [0.0], [dpal@redhat.com])
-AC_CONFIG_SRCDIR([collection/collection.c])
+AC_INIT([sssd_libs], [0.3.3], [sgallagh@redhat.com])
+AC_CONFIG_SRCDIR([README])
AC_CONFIG_AUX_DIR([build])
AM_INIT_AUTOMAKE([-Wall -Werror foreign])
AC_PROG_CC
AC_PROG_LIBTOOL
+AC_CONFIG_MACRO_DIR([m4])
AC_PROG_INSTALL
AC_CONFIG_HEADERS([config.h])
@@ -18,10 +19,10 @@ AS_IF([test ["$trace_level" -gt "0"] -a ["$trace_level" -lt "8"] ],[AC_SUBST([TR
AC_CONFIG_FILES([Makefile
- collection/Makefile collection/collection.pc
- dhash/Makefile dhash/dhash.pc
- ini/Makefile ini/ini_config.pc
trace/Makefile])
+
+AC_CONFIG_SUBDIRS([collection dhash ini])
+
AC_OUTPUT