diff options
author | 2017-03-22 11:52:01 -0700 | |
---|---|---|
committer | 2017-03-22 11:52:01 -0700 | |
commit | 494143c3b4921a5c8b8596d58f2c8b98296bf688 (patch) | |
tree | f57504f40f311e51af1ec2558627775acf37bb03 /net-misc/ntp/files | |
parent | app-portage/gentoolkit: Block gentoolkit-dev completely (diff) | |
download | gentoo-494143c3b4921a5c8b8596d58f2c8b98296bf688.tar.gz gentoo-494143c3b4921a5c8b8596d58f2c8b98296bf688.tar.bz2 gentoo-494143c3b4921a5c8b8596d58f2c8b98296bf688.zip |
net-misc/ntp: Add patch to fix build with gcc-4.9
Upstream somehow dropped -fPIC on the ntpq libraries, this breaks build
with gcc-4.9 (current stable). This adds the calculated NTP_HARD_CFLAGS
to the CFLAGS for ntpq, which includes -fPIC if configure decides it's
needed.
Package-Manager: Portage-2.3.5, Repoman-2.3.2
Diffstat (limited to 'net-misc/ntp/files')
-rw-r--r-- | net-misc/ntp/files/ntp-4.2.8_p10-ntpq-fpic.patch | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/net-misc/ntp/files/ntp-4.2.8_p10-ntpq-fpic.patch b/net-misc/ntp/files/ntp-4.2.8_p10-ntpq-fpic.patch new file mode 100644 index 000000000000..dcf75d25bf94 --- /dev/null +++ b/net-misc/ntp/files/ntp-4.2.8_p10-ntpq-fpic.patch @@ -0,0 +1,11 @@ +--- ntp-4.2.8p10.orig/ntpq/Makefile.am 2017-03-21 06:04:21.000000000 -0700 ++++ ntp-4.2.8p10/ntpq/Makefile.am 2017-03-22 11:45:48.946630492 -0700 +@@ -23,7 +23,7 @@ + ntpq_LDADD += $(LDADD_NTP) + noinst_HEADERS= ntpq.h + noinst_LIBRARIES= libntpq.a +-libntpq_a_CFLAGS= -DNO_MAIN_ALLOWED -DBUILD_AS_LIB ++libntpq_a_CFLAGS= $(NTP_HARD_CFLAGS) -DNO_MAIN_ALLOWED -DBUILD_AS_LIB + CLEANFILES= + DISTCLEANFILES= .version version.c config.log $(man_MANS) + ETAGS_ARGS= Makefile.am |