diff options
author | Patrick McLean <chutzpah@gentoo.org> | 2017-03-22 11:52:01 -0700 |
---|---|---|
committer | Patrick McLean <chutzpah@gentoo.org> | 2017-03-22 11:52:01 -0700 |
commit | 494143c3b4921a5c8b8596d58f2c8b98296bf688 (patch) | |
tree | f57504f40f311e51af1ec2558627775acf37bb03 /net-misc/ntp | |
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')
-rw-r--r-- | net-misc/ntp/files/ntp-4.2.8_p10-ntpq-fpic.patch | 11 | ||||
-rw-r--r-- | net-misc/ntp/ntp-4.2.8_p10.ebuild | 1 |
2 files changed, 12 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 diff --git a/net-misc/ntp/ntp-4.2.8_p10.ebuild b/net-misc/ntp/ntp-4.2.8_p10.ebuild index 89b01a6058f3..31948a88e5bf 100644 --- a/net-misc/ntp/ntp-4.2.8_p10.ebuild +++ b/net-misc/ntp/ntp-4.2.8_p10.ebuild @@ -39,6 +39,7 @@ S=${WORKDIR}/${MY_P} PATCHES=( "${FILESDIR}"/${PN}-4.2.8-ipc-caps.patch #533966 "${FILESDIR}"/${PN}-4.2.8-sntp-test-pthreads.patch #563922 + "${FILESDIR}"/${PN}-4.2.8_p10-ntpq-fpic.patch ) pkg_setup() { |