summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKent Fredric <kentnl@gentoo.org>2020-04-16 01:07:40 +1200
committerKent Fredric <kentnl@gentoo.org>2020-04-16 01:08:02 +1200
commitd742f12a0435de00248aeee8b6cb17a8746b7769 (patch)
treeb370015d78816cec002e2d172f4d76bd91cd6d48 /dev-perl/OpenGL/files
parentdev-perl/Ogg-Vorbis-Header: Remove old 0.30.0-r2 (diff)
downloadgentoo-d742f12a0435de00248aeee8b6cb17a8746b7769.tar.gz
gentoo-d742f12a0435de00248aeee8b6cb17a8746b7769.tar.bz2
gentoo-d742f12a0435de00248aeee8b6cb17a8746b7769.zip
dev-perl/OpenGL: Remove old 0.670.400
Package-Manager: Portage-2.3.97, Repoman-2.3.22 Signed-off-by: Kent Fredric <kentnl@gentoo.org>
Diffstat (limited to 'dev-perl/OpenGL/files')
-rw-r--r--dev-perl/OpenGL/files/OpenGL-0.66-no-display.patch50
1 files changed, 0 insertions, 50 deletions
diff --git a/dev-perl/OpenGL/files/OpenGL-0.66-no-display.patch b/dev-perl/OpenGL/files/OpenGL-0.66-no-display.patch
deleted file mode 100644
index 6bdc334ba0b1..000000000000
--- a/dev-perl/OpenGL/files/OpenGL-0.66-no-display.patch
+++ /dev/null
@@ -1,50 +0,0 @@
-Don't check current display for extensions, build all.
-
-diff -up OpenGL-0.62/Makefile.PL.dist OpenGL-0.62/Makefile.PL
---- OpenGL-0.62/Makefile.PL.dist 2009-12-11 01:10:00.000000000 +0100
-+++ OpenGL-0.62/Makefile.PL 2010-01-07 13:00:26.000000000 +0100
-@@ -579,9 +579,9 @@ my $build_config =
- {
- FILES =>
- "Config.pm ".
-- "utils/glversion.txt ".
-- "utils/glversion$Config{exe_ext} ".
-- "utils/glversion$Config{obj_ext}"
-+ "utils/glversion.txt "
-+ #"utils/glversion$Config{exe_ext} ".
-+ #"utils/glversion$Config{obj_ext}"
- }
- };
-
-@@ -790,6 +790,7 @@ sub get_extensions
- print "GLUT not found\n";
- }
-
-+=cut
- # Platform-specific makefiles for glversion
- my $make_ver;
- if ($IS_MINGW)
-@@ -848,7 +849,9 @@ sub get_extensions
- print "get_extensions: no extensions found in $glv_file\n" if $verbose;
- return '';
- }
--
-+=cut
-+ use Config;
-+ my $gldata = { };
-
- # Parse glext_procs.h file
- return '' if (!open(GLEXT,"glext_procs.h"));
-@@ -867,10 +870,12 @@ sub get_extensions
-
- # Create gl_exclude.h
- die "Unable to write to $exc_file\n" if (!open(GLEXC,">$exc_file"));
-+=cut
- print GLEXC "// OpenGL Extension Exclusions - may be modified before building.\n";
- print GLEXC "//\n";
- print GLEXC "// Generated for ".$gldata->{VENDOR}.", ".$gldata->{RENDERER}."\n";
- print GLEXC "// OpenGL v".$gldata->{VERSION}.", using ";
-+=cut
-
- # Fix GLUT flags based on results
- if ($gldata->{GLUT} > 0)