diff options
Diffstat (limited to 'media-gfx/shotwell/files/shotwell-0.13.1-ldflags.patch')
-rw-r--r-- | media-gfx/shotwell/files/shotwell-0.13.1-ldflags.patch | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/media-gfx/shotwell/files/shotwell-0.13.1-ldflags.patch b/media-gfx/shotwell/files/shotwell-0.13.1-ldflags.patch new file mode 100644 index 000000000000..97a9956bf52d --- /dev/null +++ b/media-gfx/shotwell/files/shotwell-0.13.1-ldflags.patch @@ -0,0 +1,28 @@ +Respect LDFLAGS when building C files. Bug #435048 +Patch hasn't been sent upstream yet. +Index: shotwell-0.13.1/Makefile +=================================================================== +--- shotwell-0.13.1.orig/Makefile ++++ shotwell-0.13.1/Makefile +@@ -697,7 +697,7 @@ $(EXPANDED_C_FILES): $(VALA_STAMP) + @ + + $(EXPANDED_OBJ_FILES): %.o: %.c $(CONFIG_IN) Makefile +- $(CC) -c $(VALA_CFLAGS) $(CFLAGS) -o $@ $< ++ $(CC) -c $(VALA_CFLAGS) $(CFLAGS) $(LDFLAGS) -o $@ $< + + $(PROGRAM): $(EXPANDED_OBJ_FILES) $(RESOURCES) $(LANG_STAMP) $(THUMBNAILER_BIN) + $(CC) $(EXPANDED_OBJ_FILES) $(CFLAGS) $(LDFLAGS) $(RESOURCES) $(VALA_LDFLAGS) $(EXPORT_FLAGS) -o $@ +Index: shotwell-0.13.1/plugins/Makefile.plugin.mk +=================================================================== +--- shotwell-0.13.1.orig/plugins/Makefile.plugin.mk ++++ shotwell-0.13.1/plugins/Makefile.plugin.mk +@@ -54,7 +54,7 @@ $(CFILES): .stamp + @ + + $(OFILES): %.o: %.c $(CFILES) +- $(CC) -c $(CFLAGS) $(DEFINES) -I../.. $(CFILES) ++ $(CC) -c $(CFLAGS) $(LDFLAGS) $(DEFINES) -I../.. $(CFILES) + + $(PLUGIN).so: $(OFILES) + $(CC) $(CFLAGS) $(LDFLAGS) -shared $(OFILES) $(LIBS) -o $@ |