summaryrefslogtreecommitdiffstats
path: root/common
diff options
context:
space:
mode:
authorStephen Gallagher <sgallagh@redhat.com>2010-01-22 14:07:51 -0500
committerStephen Gallagher <sgallagh@redhat.com>2010-02-03 10:35:16 -0500
commit04960af31ba8e532dd463ae7fe07c89d402430b6 (patch)
treec79beaed6ed766f9617b74e9c9631374b6504f66 /common
parent8e09e179f66df39bcef07cbc61a22d349ed304f4 (diff)
downloadsssd-04960af31ba8e532dd463ae7fe07c89d402430b6.tar.gz
sssd-04960af31ba8e532dd463ae7fe07c89d402430b6.tar.xz
sssd-04960af31ba8e532dd463ae7fe07c89d402430b6.zip
Split off libpath_utils into a shared library
Diffstat (limited to 'common')
-rw-r--r--common/path_utils/Makefile.am16
-rw-r--r--common/path_utils/README1
-rw-r--r--common/path_utils/configure.ac2
3 files changed, 11 insertions, 8 deletions
diff --git a/common/path_utils/Makefile.am b/common/path_utils/Makefile.am
index b738c3e69..8539ffd12 100644
--- a/common/path_utils/Makefile.am
+++ b/common/path_utils/Makefile.am
@@ -8,13 +8,15 @@ endif
ACLOCAL_AMFLAGS = -I m4
pkgconfigdir = $(libdir)/pkgconfig
-dist_noinst_DATA = \
- path_utils.pc \
- m4
+dist_pkgconfig_DATA = path_utils.pc
-noinst_LTLIBRARIES = libpath_utils.la
-libpath_utils_la_SOURCES = \
- path_utils.c \
- path_utils.h
+dist_include_HEADERS = path_utils.h
+
+dist_noinst_DATA = m4
+
+lib_LTLIBRARIES = libpath_utils.la
+libpath_utils_la_SOURCES = path_utils.c
+libpath_utils_la_LDFLAGS = \
+ -version-info 1:0:0
tests: all $(check_PROGRAMS)
diff --git a/common/path_utils/README b/common/path_utils/README
new file mode 100644
index 000000000..2ccc3dc93
--- /dev/null
+++ b/common/path_utils/README
@@ -0,0 +1 @@
+Documentation for libpath_utils can be found in path_utils.h
diff --git a/common/path_utils/configure.ac b/common/path_utils/configure.ac
index 9207a075b..87dd6150a 100644
--- a/common/path_utils/configure.ac
+++ b/common/path_utils/configure.ac
@@ -1,4 +1,4 @@
-AC_INIT([path_utils], [0.1], [jdennis@redhat.com])
+AC_INIT([path_utils], [0.2.0], [jdennis@redhat.com])
AC_CONFIG_SRCDIR([path_utils.c])
AC_CONFIG_AUX_DIR([build])
AM_INIT_AUTOMAKE([-Wall -Werror foreign])