diff options
author | Stephen Gallagher <sgallagh@redhat.com> | 2009-05-21 09:03:01 -0400 |
---|---|---|
committer | Simo Sorce <ssorce@redhat.com> | 2009-05-26 09:10:45 -0400 |
commit | 419d4579bcb84a3b10d8b5048df2087a3f55544f (patch) | |
tree | e36310049957f423bc9afa0d9ec7a1f056ac3274 /sss_client | |
parent | 23cb08ee2f1e3b597742281e475350039247d9d8 (diff) | |
download | sssd-419d4579bcb84a3b10d8b5048df2087a3f55544f.tar.gz sssd-419d4579bcb84a3b10d8b5048df2087a3f55544f.tar.bz2 sssd-419d4579bcb84a3b10d8b5048df2087a3f55544f.zip |
Clean up automake build to work on older versions of libtool
LT_INIT is supported only on Libtool >= 2.0, so I reverted it to
using AC_PROG_LIBTOOL.
Also reorganized how the common libraries were being built. Now
they are treated as libtool convenience libraries instead of
installable libraries (the --with-singlelib configure flag can
still be used to generate a combined, installable DSO)
I cleaned up the set of files being installed by automake, so the
list of things we need to remove before packaging the RPM is now
only the .la files associated with our own plugins.
Diffstat (limited to 'sss_client')
-rw-r--r-- | sss_client/Makefile.am | 1 | ||||
-rw-r--r-- | sss_client/configure.ac | 3 |
2 files changed, 3 insertions, 1 deletions
diff --git a/sss_client/Makefile.am b/sss_client/Makefile.am index a17248d4..6347eab9 100644 --- a/sss_client/Makefile.am +++ b/sss_client/Makefile.am @@ -34,3 +34,4 @@ pam_sss_la_LDFLAGS = \ noinst_PROGRAMS = pam_test_client pam_test_client_SOURCES = pam_test_client.c pam_test_client_LDFLAGS = -lpam -lpam_misc + diff --git a/sss_client/configure.ac b/sss_client/configure.ac index c9bb9412..c75ba208 100644 --- a/sss_client/configure.ac +++ b/sss_client/configure.ac @@ -5,7 +5,8 @@ AC_CONFIG_HEADER(config.h) AC_CONFIG_AUX_DIR([build]) AM_INIT_AUTOMAKE([-Wall foreign subdir-objects]) AM_PROG_CC_C_O -LT_INIT([disable-static]) +AC_DISABLE_STATIC +AC_PROG_LIBTOOL AC_CONFIG_MACRO_DIR([m4]) AC_SUBST(PAM_LIBS) |