summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSamuli Suominen <ssuominen@gentoo.org>2013-03-12 21:45:36 +0000
committerSamuli Suominen <ssuominen@gentoo.org>2013-03-12 21:45:36 +0000
commitbf13cfcac4dc8a7e79a8a7ee5bf95ede821e8f9b (patch)
tree76fc275cd315534c227f56ed22a05256f9c2dff1 /media-gfx/openexr_viewers/files
parentUnmask the abi_x86_32 support due to freetype and friends being unmasked. (diff)
downloadhistorical-bf13cfcac4dc8a7e79a8a7ee5bf95ede821e8f9b.tar.gz
historical-bf13cfcac4dc8a7e79a8a7ee5bf95ede821e8f9b.tar.bz2
historical-bf13cfcac4dc8a7e79a8a7ee5bf95ede821e8f9b.zip
Version bump.
Package-Manager: portage-2.2.0_alpha166/cvs/Linux x86_64 RepoMan-Options: --force Manifest-Sign-Key: 0x4868F14D
Diffstat (limited to 'media-gfx/openexr_viewers/files')
-rw-r--r--media-gfx/openexr_viewers/files/openexr_viewers-2.0.0-nvidia-automagic.patch14
1 files changed, 14 insertions, 0 deletions
diff --git a/media-gfx/openexr_viewers/files/openexr_viewers-2.0.0-nvidia-automagic.patch b/media-gfx/openexr_viewers/files/openexr_viewers-2.0.0-nvidia-automagic.patch
new file mode 100644
index 000000000000..1ea9f869a671
--- /dev/null
+++ b/media-gfx/openexr_viewers/files/openexr_viewers-2.0.0-nvidia-automagic.patch
@@ -0,0 +1,14 @@
+--- configure.ac
++++ configure.ac
+@@ -192,7 +192,10 @@
+ dnl
+ dnl check for Cg
+ dnl
+-if test "${have_fltk}" = yes; then
++AC_ARG_ENABLE(cg, AC_HELP_STRING([--enable-cg],
++ [enable nvidia cg support [[default=check]]]), [want_cg="${enableval}"], [want_cg=yes])
++
++if test "${have_fltk}" = yes -a "${want_cg}" != "no"; then
+ AM_PATH_CG(have_cg=yes, have_cg=no)
+ if test "${have_cg}" = yes; then
+ AC_DEFINE(HAVE_FRAGMENT_SHADERS)