summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDavid Zeuthen <davidz@redhat.com>2009-06-17 15:31:28 -0400
committerDavid Zeuthen <davidz@redhat.com>2009-06-17 15:31:28 -0400
commit12dd5b03aea31a37b608cb1f07b595685a31d59f (patch)
treecf571e77c680c8d897a5cbbffda320e0cc736e89
parent201f5bb94ed0f7ddcab6a2d44cbaadaa2915c08b (diff)
GIO modules need to be prefix with lib
For some weird reason.
-rw-r--r--src/nullbackend/Makefile.am10
-rw-r--r--src/programs/Makefile.am10
2 files changed, 10 insertions, 10 deletions
diff --git a/src/nullbackend/Makefile.am b/src/nullbackend/Makefile.am
index 82de8ce..2a81ec1 100644
--- a/src/nullbackend/Makefile.am
+++ b/src/nullbackend/Makefile.am
@@ -18,26 +18,26 @@ INCLUDES = \
$(NULL)
polkitmodulesdir = $(libdir)/polkit-1/extensions
-polkitmodules_LTLIBRARIES = nullbackend.la
+polkitmodules_LTLIBRARIES = libnullbackend.la
-nullbackend_la_SOURCES = \
+libnullbackend_la_SOURCES = \
nullbackend.c \
polkitbackendnullauthority.c polkitbackendnullauthority.h \
$(NULL)
-nullbackend_la_CFLAGS = \
+libnullbackend_la_CFLAGS = \
-DPOLKIT_BACKEND_I_KNOW_API_IS_SUBJECT_TO_CHANGE \
-DG_LOG_DOMAIN=\"PolkitNullBackend\" \
$(GLIB_CFLAGS) \
$(NULL)
-nullbackend_la_LDFLAGS = \
+libnullbackend_la_LDFLAGS = \
$(module_flags) \
$(GLIB_LDADD) \
$(top_builddir)/src/polkitbackend/libpolkit-backend-1.la \
$(NULL)
-nullbackend_la_LIBADD = \
+libnullbackend_la_LIBADD = \
$(NULL)
nullconfigdir = $(sysconfdir)/polkit-1/nullbackend.conf.d
diff --git a/src/programs/Makefile.am b/src/programs/Makefile.am
index c504889..074fb39 100644
--- a/src/programs/Makefile.am
+++ b/src/programs/Makefile.am
@@ -33,24 +33,24 @@ pkexec_LDADD = \
$(NULL)
polkitmodulesdir = $(libdir)/polkit-1/extensions
-polkitmodules_LTLIBRARIES = pkexec-action-lookup.la
+polkitmodules_LTLIBRARIES = libpkexec-action-lookup.la
-pkexec_action_lookup_la_SOURCES = \
+libpkexec_action_lookup_la_SOURCES = \
pkexec-action-lookup.c \
$(NULL)
-pkexec_action_lookup_la_CFLAGS = \
+libpkexec_action_lookup_la_CFLAGS = \
-DPOLKIT_BACKEND_I_KNOW_API_IS_SUBJECT_TO_CHANGE \
-DG_LOG_DOMAIN=\"pkexec-action-lookup\" \
$(GLIB_CFLAGS) \
$(NULL)
-pkexec_action_lookup_la_LDFLAGS = \
+libpkexec_action_lookup_la_LDFLAGS = \
-export_dynamic -avoid-version -module -no-undefined \
-export-symbols-regex '^g_io_module_(load|unload)' \
$(NULL)
-pkexec_action_lookup_la_LIBADD = \
+libpkexec_action_lookup_la_LIBADD = \
$(top_builddir)/src/polkitbackend/libpolkit-backend-1.la \
$(NULL)