diff options
author | Yaakov Selkowitz <[email protected]> | 2012-12-25 21:50:14 -0600 |
---|---|---|
committer | Stefano Karapetsas <[email protected]> | 2013-01-04 17:29:50 +0100 |
commit | 61d109a6e5794cf393d1f9d5bebda10f8efce902 (patch) | |
tree | 308bbb77ef752ad600020bb77a59d542d854f26b /src/themes | |
parent | 2f0f21bde5e00fc0abb3379ffb9f23574e9508ad (diff) | |
download | mate-notification-daemon-61d109a6e5794cf393d1f9d5bebda10f8efce902.tar.bz2 mate-notification-daemon-61d109a6e5794cf393d1f9d5bebda10f8efce902.tar.xz |
Fix engine loading portability
Use GModule APIs for determining engine filenames. Also, link with
the -no-undefined flag, required on PE platforms.
Diffstat (limited to 'src/themes')
-rw-r--r-- | src/themes/coco/Makefile.am | 2 | ||||
-rw-r--r-- | src/themes/nodoka/Makefile.am | 2 | ||||
-rw-r--r-- | src/themes/slider/Makefile.am | 2 | ||||
-rw-r--r-- | src/themes/standard/Makefile.am | 2 |
4 files changed, 4 insertions, 4 deletions
diff --git a/src/themes/coco/Makefile.am b/src/themes/coco/Makefile.am index bdfa229..52f7a6f 100644 --- a/src/themes/coco/Makefile.am +++ b/src/themes/coco/Makefile.am @@ -5,5 +5,5 @@ engine_LTLIBRARIES = libcoco.la libcoco_la_SOURCES = coco-theme.c -libcoco_la_LDFLAGS = -module -avoid-version +libcoco_la_LDFLAGS = -module -avoid-version -no-undefined libcoco_la_LIBADD = $(THEME_LIBS) diff --git a/src/themes/nodoka/Makefile.am b/src/themes/nodoka/Makefile.am index 71ab399..38b797c 100644 --- a/src/themes/nodoka/Makefile.am +++ b/src/themes/nodoka/Makefile.am @@ -5,5 +5,5 @@ engine_LTLIBRARIES = libnodoka.la libnodoka_la_SOURCES = nodoka-theme.c -libnodoka_la_LDFLAGS = -module -avoid-version +libnodoka_la_LDFLAGS = -module -avoid-version -no-undefined libnodoka_la_LIBADD = $(THEME_LIBS) diff --git a/src/themes/slider/Makefile.am b/src/themes/slider/Makefile.am index a94ceaa..46dcdd2 100644 --- a/src/themes/slider/Makefile.am +++ b/src/themes/slider/Makefile.am @@ -7,7 +7,7 @@ AM_CPPFLAGS = $(THEME_CFLAGS) libslider_la_SOURCES = theme.c -libslider_la_LDFLAGS = -module -avoid-version +libslider_la_LDFLAGS = -module -avoid-version -no-undefined libslider_la_LIBADD = \ $(THEME_LIBS) \ $(NULL) diff --git a/src/themes/standard/Makefile.am b/src/themes/standard/Makefile.am index 9d6a6ae..d5b4a2a 100644 --- a/src/themes/standard/Makefile.am +++ b/src/themes/standard/Makefile.am @@ -3,7 +3,7 @@ enginedir = $(libdir)/mate-notification-daemon/engines engine_LTLIBRARIES = libstandard.la libstandard_la_SOURCES = theme.c -libstandard_la_LDFLAGS = -module -avoid-version +libstandard_la_LDFLAGS = -module -avoid-version -no-undefined libstandard_la_LIBADD = $(NOTIFICATION_DAEMON_LIBS) INCLUDES = $(NOTIFICATION_DAEMON_CFLAGS) |