diff options
author | Lars Wendler <polynomial-c@gentoo.org> | 2018-03-12 13:03:33 +0100 |
---|---|---|
committer | Lars Wendler <polynomial-c@gentoo.org> | 2018-03-12 13:03:48 +0100 |
commit | ba4d46417428070b3eddcc998d1fc82e18ac71d4 (patch) | |
tree | c4ededb18e2067db4f380fc79e9ea5292f9b9ec6 /net-misc/nx | |
parent | net-misc/asterisk: amd64 stable wrt bug #650008 (diff) | |
download | gentoo-ba4d46417428070b3eddcc998d1fc82e18ac71d4.tar.gz gentoo-ba4d46417428070b3eddcc998d1fc82e18ac71d4.tar.bz2 gentoo-ba4d46417428070b3eddcc998d1fc82e18ac71d4.zip |
net-misc/nx: Disable polling for nx libs.
Once again, big thanks to Ionic!
Package-Manager: Portage-2.3.24, Repoman-2.3.6
Diffstat (limited to 'net-misc/nx')
-rw-r--r-- | net-misc/nx/nx-3.5.99.15.ebuild | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/net-misc/nx/nx-3.5.99.15.ebuild b/net-misc/nx/nx-3.5.99.15.ebuild index bbb4663dc606..75aa788486f6 100644 --- a/net-misc/nx/nx-3.5.99.15.ebuild +++ b/net-misc/nx/nx-3.5.99.15.ebuild @@ -36,7 +36,7 @@ src_prepare() { # have quilt installed. sed 's@which quilt@false@' -i mesa-quilt || die - # run autoreconf in all neeed folders + # run autoreconf in all needed folders for i in nxcomp nx-X11/lib nxcompshad nxproxy ; do pushd ${i} || die eautoreconf @@ -57,11 +57,15 @@ src_prepare() { } src_configure() { - for i in nxcomp nx-X11/lib nxcompshad nxproxy ; do + for i in nxcomp nxcompshad nxproxy ; do pushd ${i} || die econf popd || die done + + pushd "nx-X11/lib" || die + econf --disable-poll + popd || die } src_compile() { |