diff options
author | marcus <marcus@df743ca5-7f9a-e211-a948-0013205c9059> | 2008-01-23 04:34:59 +0800 |
---|---|---|
committer | marcus <marcus@df743ca5-7f9a-e211-a948-0013205c9059> | 2008-01-23 04:34:59 +0800 |
commit | 3798b20dbd9b9a3d86e336fd81a6701824c3cf03 (patch) | |
tree | fcb2050b78d1be6aa3e27962d65bd8833b39ea17 /devel | |
parent | fea7feea772f39a807bcc26e7943d774e8065fb7 (diff) | |
download | marcuscom-ports-3798b20dbd9b9a3d86e336fd81a6701824c3cf03.tar marcuscom-ports-3798b20dbd9b9a3d86e336fd81a6701824c3cf03.tar.gz marcuscom-ports-3798b20dbd9b9a3d86e336fd81a6701824c3cf03.tar.bz2 marcuscom-ports-3798b20dbd9b9a3d86e336fd81a6701824c3cf03.tar.lz marcuscom-ports-3798b20dbd9b9a3d86e336fd81a6701824c3cf03.tar.xz marcuscom-ports-3798b20dbd9b9a3d86e336fd81a6701824c3cf03.tar.zst marcuscom-ports-3798b20dbd9b9a3d86e336fd81a6701824c3cf03.zip |
Remove PIE linker flags to fix the build on amd64 with GCC 4.2.1. This
has been reported as https://bugs.freedesktop.org/show_bug.cgi?id=14204.
git-svn-id: svn://creme-brulee.marcuscom.com/ports/trunk@10216 df743ca5-7f9a-e211-a948-0013205c9059
Diffstat (limited to 'devel')
-rw-r--r-- | devel/dbus/files/patch-bus_Makefile.in | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/devel/dbus/files/patch-bus_Makefile.in b/devel/dbus/files/patch-bus_Makefile.in new file mode 100644 index 000000000..b55c5dc79 --- /dev/null +++ b/devel/dbus/files/patch-bus_Makefile.in @@ -0,0 +1,20 @@ +--- bus/Makefile.in.orig 2008-01-22 14:45:58.000000000 -0500 ++++ bus/Makefile.in 2008-01-22 15:24:26.000000000 -0500 +@@ -412,7 +412,7 @@ target_vendor = @target_vendor@ + top_builddir = @top_builddir@ + top_srcdir = @top_srcdir@ + configdir = $(sysconfdir)/dbus-1 +-INCLUDES = -I$(top_srcdir) $(DBUS_BUS_CFLAGS) @PIE_CFLAGS@ \ ++INCLUDES = -I$(top_srcdir) $(DBUS_BUS_CFLAGS) \ + -DDBUS_SYSTEM_CONFIG_FILE=\""$(configdir)/system.conf"\" \ + -DDAEMON_NAME=\"dbus-daemon\" -DDBUS_COMPILATION + +@@ -476,7 +476,7 @@ dbus_daemon_LDADD = \ + $(DBUS_BUS_LIBS) \ + $(top_builddir)/dbus/libdbus-convenience.la + +-dbus_daemon_LDFLAGS = @R_DYNAMIC_LDFLAG@ @SECTION_LDFLAGS@ @PIE_LDFLAGS@ ++dbus_daemon_LDFLAGS = @R_DYNAMIC_LDFLAG@ @SECTION_LDFLAGS@ + LAUNCH_HELPER_SOURCES = \ + $(XML_SOURCES) \ + config-parser-common.c \ |