summaryrefslogtreecommitdiffstats
path: root/common
diff options
context:
space:
mode:
authorStephen Gallagher <sgallagh@redhat.com>2009-05-12 11:56:27 -0400
committerSimo Sorce <ssorce@redhat.com>2009-05-14 11:34:04 -0400
commit50c10e1f61a1bef93a7f768ad6edb28989f1761b (patch)
treea0d44730681e5fccaeafa5cc9b8d8fb150182b96 /common
parent798af224b66e25b694569f70e86262f7867917cf (diff)
downloadsssd-50c10e1f61a1bef93a7f768ad6edb28989f1761b.tar.gz
sssd-50c10e1f61a1bef93a7f768ad6edb28989f1761b.tar.xz
sssd-50c10e1f61a1bef93a7f768ad6edb28989f1761b.zip
Enable building a single libsssd_utils.so from common
Diffstat (limited to 'common')
-rw-r--r--common/Makefile.am19
-rw-r--r--common/collection/Makefile.am8
-rw-r--r--common/configure.ac17
3 files changed, 38 insertions, 6 deletions
diff --git a/common/Makefile.am b/common/Makefile.am
index 276bbb2a1..47d7c4a99 100644
--- a/common/Makefile.am
+++ b/common/Makefile.am
@@ -1,2 +1,19 @@
-SUBDIRS = collection ini trace dhash
ACLOCAL_AMFLAGS = -I m4
+
+if SINGLELIB
+# Build all components as a single shared library
+lib_LTLIBRARIES = libsssd_util.la
+libsssd_util_la_SOURCES = \
+ collection/collection.c \
+ collection/collection_tools.c \
+ ini/ini_config.c \
+ dhash/dhash.c
+libsssd_util_la_CFLAGS = $(AM_CFLAGS) \
+ -I ./collection \
+ -I ./ini \
+ -I ./dhash \
+ -I ./trace
+else
+SUBDIRS = collection ini trace dhash
+endif
+
diff --git a/common/collection/Makefile.am b/common/collection/Makefile.am
index 1d8f93738..37d3ddf6a 100644
--- a/common/collection/Makefile.am
+++ b/common/collection/Makefile.am
@@ -11,7 +11,13 @@ pkgconfig_DATA = collection.pc
# Build library
lib_LTLIBRARIES = libcollection.la
-libcollection_la_SOURCES = collection.c collection_tools.c collection_tools.h collection_class.h
+libcollection_la_SOURCES = \
+ collection.c \
+ collection_tools.c
+
+noinst_HEADERS = \
+ collection_priv.h
+
include_HEADERS = collection.h collection_tools.h
# Build unit test
diff --git a/common/configure.ac b/common/configure.ac
index a5fa3d547..e32139967 100644
--- a/common/configure.ac
+++ b/common/configure.ac
@@ -23,8 +23,17 @@ AC_CONFIG_FILES([Makefile
AC_CONFIG_SUBDIRS([collection dhash ini])
-AC_OUTPUT
-
-
-
+AC_DEFUN([WITH_SINGLELIB],
+ [ AC_ARG_WITH([singlelib],
+ [AC_HELP_STRING([--with-singlelib],
+ [Whether to build a shared object containing all sssd_utils [no]]
+ )
+ ],
+ [],
+ with_singlelib=yes
+ )
+ ])
+
+AM_CONDITIONAL([SINGLELIB], [test x$with_singlelib = xyes ])
+AC_OUTPUT