|
@@ -0,0 +1,35 @@
|
|
|
|
+From 2336fa7901733a434c38637bf39f3e282e78e1c1 Mon Sep 17 00:00:00 2001
|
|
|
|
+From: Romain Naour <romain.naour@openwide.fr>
|
|
|
|
+Date: Wed, 27 Aug 2014 22:44:21 +0200
|
|
|
|
+Subject: [PATCH 1/1] driver: fix linking with lintl
|
|
|
|
+
|
|
|
|
+The libintl is missing during xscreensaver build if
|
|
|
|
+glib2 was build with gettext.
|
|
|
|
+
|
|
|
|
+xscreensaver.o: In function `main':
|
|
|
|
+undefined reference to `libintl_bindtextdomain'
|
|
|
|
+undefined reference to `libintl_textdomain'
|
|
|
|
+
|
|
|
|
+Backport a patch applied in 5.28
|
|
|
|
+
|
|
|
|
+Signed-off-by: Romain Naour <romain.naour@openwide.fr>
|
|
|
|
+---
|
|
|
|
+ driver/Makefile.in | 2 +-
|
|
|
|
+ 1 file changed, 1 insertion(+), 1 deletion(-)
|
|
|
|
+
|
|
|
|
+diff --git a/driver/Makefile.in b/driver/Makefile.in
|
|
|
|
+index af077ca..ce7055c 100644
|
|
|
|
+--- a/driver/Makefile.in
|
|
|
|
++++ b/driver/Makefile.in
|
|
|
|
+@@ -776,7 +776,7 @@ XScreenSaver_Xm_ad.h: XScreenSaver-Xm.ad
|
|
|
|
+ # The executables linked in this directory.
|
|
|
|
+ #
|
|
|
|
+ xscreensaver: $(SAVER_OBJS)
|
|
|
|
+- $(CC) $(LDFLAGS) -o $@ $(SAVER_OBJS) $(SAVER_LIBS)
|
|
|
|
++ $(CC) $(LDFLAGS) -o $@ $(SAVER_OBJS) $(SAVER_LIBS) $(INTL_LIBS)
|
|
|
|
+
|
|
|
|
+ xscreensaver-command: $(CMD_OBJS)
|
|
|
|
+ $(CC) $(LDFLAGS) -o $@ $(CMD_OBJS) $(CMD_LIBS)
|
|
|
|
+--
|
|
|
|
+1.9.3
|
|
|
|
+
|