summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSamuli Suominen <ssuominen@gentoo.org>2008-12-10 07:04:38 +0000
committerSamuli Suominen <ssuominen@gentoo.org>2008-12-10 07:04:38 +0000
commitf743e7cb6229f9c44310f067cb60aa3b8cf9ed73 (patch)
tree97048529cb6f4ae885ccba9761893919056338c2 /media-libs/openexr/files
parentclean up (diff)
downloadgentoo-2-f743e7cb6229f9c44310f067cb60aa3b8cf9ed73.tar.gz
gentoo-2-f743e7cb6229f9c44310f067cb60aa3b8cf9ed73.tar.bz2
gentoo-2-f743e7cb6229f9c44310f067cb60aa3b8cf9ed73.zip
old
(Portage version: 2.1.6/cvs/Linux 2.6.27.7 i686)
Diffstat (limited to 'media-libs/openexr/files')
-rw-r--r--media-libs/openexr/files/openexr-1.4.0a-asneeded.patch11
-rw-r--r--media-libs/openexr/files/openexr-1.4.0a-nvidia-automagic.patch18
2 files changed, 0 insertions, 29 deletions
diff --git a/media-libs/openexr/files/openexr-1.4.0a-asneeded.patch b/media-libs/openexr/files/openexr-1.4.0a-asneeded.patch
deleted file mode 100644
index 70d856f15c89..000000000000
--- a/media-libs/openexr/files/openexr-1.4.0a-asneeded.patch
+++ /dev/null
@@ -1,11 +0,0 @@
---- openexr-1.4.0/IlmThread/Makefile.am.old 2006-11-08 08:10:18.000000000 +0100
-+++ openexr-1.4.0/IlmThread/Makefile.am 2006-11-08 08:10:24.000000000 +0100
-@@ -11,7 +11,7 @@
- IlmThreadMutexPosix.cpp
-
- libIlmThread_la_LDFLAGS = -version-info @LIBTOOL_VERSION@ -no-undefined
--libIlmThread_la_LIBADD = ../Iex/libIex.la
-+libIlmThread_la_LIBADD = ../Iex/libIex.la -lpthread
-
- libIlmThreadincludedir = $(includedir)/OpenEXR
-
diff --git a/media-libs/openexr/files/openexr-1.4.0a-nvidia-automagic.patch b/media-libs/openexr/files/openexr-1.4.0a-nvidia-automagic.patch
deleted file mode 100644
index 98feae8a06eb..000000000000
--- a/media-libs/openexr/files/openexr-1.4.0a-nvidia-automagic.patch
+++ /dev/null
@@ -1,18 +0,0 @@
-Index: openexr-1.4.0/configure.ac
-===================================================================
---- openexr-1.4.0.orig/configure.ac
-+++ openexr-1.4.0/configure.ac
-@@ -45,7 +45,12 @@ AM_PATH_FLTK(have_fltk=yes, have_fltk=no
- dnl
- dnl check for Cg
- dnl
--if test "${have_fltk}" = yes; then
-+AC_ARG_ENABLE(nvidia,
-+ AC_HELP_STRING([--enable-nvidia],
-+ [enable nvidia cg support [[default=check]]]),
-+ [want_nvidia="${enableval}"], [want_nvidia=yes])
-+
-+if test "${have_fltk}" = yes -a "${want_nvidia}" != "no"; then
- AM_PATH_CG(have_cg=yes, have_cg=no)
- if test "${have_cg}" = yes; then
- AC_DEFINE(HAVE_FRAGMENT_SHADERS)