diff options
author | Stephen Gallagher <sgallagh@redhat.com> | 2009-06-01 10:09:38 -0400 |
---|---|---|
committer | Simo Sorce <ssorce@redhat.com> | 2009-06-01 11:07:38 -0400 |
commit | eb7ec3e0b713c43d83ea299f6cc90652a4b2243b (patch) | |
tree | 120a9c9b146f66e21727bd599e96190e120f50f8 | |
parent | 1838e40aed71e1c3de9464f5b29406c602749251 (diff) | |
download | sssd_unused-eb7ec3e0b713c43d83ea299f6cc90652a4b2243b.tar.gz sssd_unused-eb7ec3e0b713c43d83ea299f6cc90652a4b2243b.tar.xz sssd_unused-eb7ec3e0b713c43d83ea299f6cc90652a4b2243b.zip |
Do not statically link data provider plugins
-rw-r--r-- | server/Makefile.am | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/server/Makefile.am b/server/Makefile.am index 31173a0e..5fdec42f 100644 --- a/server/Makefile.am +++ b/server/Makefile.am @@ -238,6 +238,7 @@ sssd_be_SOURCES = \ providers/data_provider_be.c \ $(SSSD_UTIL_OBJ) sssd_be_LDADD = $(SSSD_LIBS) +sssd_be_LDFLAGS = -export-dynamic if BUILD_POLICYKIT sssd_pk_SOURCES = \ @@ -357,8 +358,7 @@ endif #BUILD_TESTS #################### libsss_ldap_la_SOURCES = \ providers/ldap/ldap_id.c \ - providers/ldap/ldap_auth.c \ - $(SSSD_UTIL_OBJ) + providers/ldap/ldap_auth.c libsss_ldap_la_CFLAGS = \ $(AM_CFLAGS) \ $(LDAP_CFLAGS) @@ -370,8 +370,7 @@ libsss_ldap_la_LDFLAGS = \ -module libsss_proxy_la_SOURCES = \ - providers/proxy.c \ - $(SSSD_UTIL_OBJ) + providers/proxy.c libsss_proxy_la_CFLAGS = \ $(AM_CFLAGS) libsss_proxy_la_LIBADD = \ |