aboutsummaryrefslogtreecommitdiff
path: root/multimedia/mpeg2codec/files
diff options
context:
space:
mode:
Diffstat (limited to 'multimedia/mpeg2codec/files')
-rw-r--r--multimedia/mpeg2codec/files/patch-aa41
-rw-r--r--multimedia/mpeg2codec/files/patch-ab23
2 files changed, 0 insertions, 64 deletions
diff --git a/multimedia/mpeg2codec/files/patch-aa b/multimedia/mpeg2codec/files/patch-aa
deleted file mode 100644
index 1da259b9a47d..000000000000
--- a/multimedia/mpeg2codec/files/patch-aa
+++ /dev/null
@@ -1,41 +0,0 @@
---- Makefile.old Mon Nov 29 18:32:05 1999
-+++ Makefile Mon Nov 29 18:35:26 1999
-@@ -30,31 +30,32 @@
- # uncomment the following two lines if you want to include X11 support
- # (mpeg2decode)
-
--#USE_DISP = -DDISPLAY
-+USE_DISP = -DDISPLAY
- #LIBS = -lX11
-
- # uncomment the following two lines if you want to use shared memory
- # (faster display if server and client run on the same machine)
- # (mpeg2decode)
-
--#USE_SHMEM = -DSH_MEM
--#LIBS = -lXext -lX11
-+USE_SHMEM = -DSH_MEM
-+LIBS = -lXext -lX11
-
- # if your X11 include files / libraries are in a non standard location:
- # set INCLUDEDIR to -I followed by the appropriate include file path and
- # set LIBRARYDIR to -L followed by the appropriate library path
- # (mpeg2decode)
-
--#INCLUDEDIR = -I/usr/openwin/include
--#LIBRARYDIR = -L/usr/openwin/lib
-+INCLUDEDIR = -I${X11BASE}/include
-+LIBRARYDIR = -L${X11BASE}/lib
-
- # select one of the following CC CFLAGS settings
-
- #
- # GNU gcc
- #
-+.ifndef CC
- CC = gcc
--CFLAGS = -O2
-+.endif
-
- all: mpeg2decode mpeg2encode
-
diff --git a/multimedia/mpeg2codec/files/patch-ab b/multimedia/mpeg2codec/files/patch-ab
deleted file mode 100644
index b0f6df0ce9fb..000000000000
--- a/multimedia/mpeg2codec/files/patch-ab
+++ /dev/null
@@ -1,23 +0,0 @@
---- ./src/mpeg2enc/mpeg2enc.c 1996/11/25 21:18:23 1.1
-+++ ./src/mpeg2enc/mpeg2enc.c 1996/11/25 21:22:40
-@@ -29,6 +29,7 @@
-
- #include <stdio.h>
- #include <stdlib.h>
-+#include <floatingpoint.h>
-
- #define GLOBAL /* used by global.h */
- #include "config.h"
-@@ -50,6 +51,12 @@
- printf("Usage: mpeg2encode in.par out.m2v\n");
- exit(0);
- }
-+
-+ /*
-+ * this prevents a floating point exception in calcSNR (stats.c) when
-+ * working on black and white images (charnier@lirmm.fr)
-+ */
-+ fpsetmask(0);
-
- /* read parameter file */
- readparmfile(argv[1]);