summaryrefslogtreecommitdiff
path: root/multimedia/mpegedit/files/patch-ah
diff options
context:
space:
mode:
authorMartin Wilke <miwi@FreeBSD.org>2009-03-23 20:53:42 +0000
committerMartin Wilke <miwi@FreeBSD.org>2009-03-23 20:53:42 +0000
commit5e535e782212b88c5653bcdf5b479068766cccd3 (patch)
tree383e4760b87c61a4d7ed195e85cffa507c0ebb80 /multimedia/mpegedit/files/patch-ah
parent- Actually, klamav doesn't install docs, it just installs kde stuffs on (diff)
2009-03-22 emulators/dlx: unmaintained, does not work with current versions of GCC, needs gcc295 which has been failing to build for months
2009-03-22 java/javel: unmaintained, does not work with current versions of GCC, needs gcc295 which has been failing to build for months 2009-03-22 java/guavac: unmaintained, does not work with current versions of GCC, needs gcc295 which has been failing to build for months 2009-03-22 graphics/xrml: unmaintained, does not work with current versions of GCC, needs gcc295 which has been failing to build for months 2009-03-22 graphics/renderpark: unmaintained, does not work with current versions of GCC, needs gcc295 which has been failing to build for months 2009-03-22 games/jumpnbump: tcl8.0 support is going to be dropped 2009-03-17 irc/blackened: Broken and abandonware 2009-03-22 devel/libg++: unmaintained, does not work with current versions of GCC, needs gcc295 which has been failing to build for months 2009-03-22 devel/freescope: unmaintained, does not work with current versions of GCC, needs gcc295 which has been failing to build for months 2009-03-22 misc/menushki: unmaintained, does not work with current versions of GCC, needs gcc295 which has been failing to build for months 2009-03-22 misc/vbidecode: unmaintained, does not work with current versions of GCC, needs gcc295 which has been failing to build for months 2009-03-22 lang/wamcc: unmaintained, does not work with current versions of GCC, needs gcc295 which has been failing to build for months 2009-03-22 multimedia/mpegedit: unmaintained, does not work with current versions of GCC, needs gcc295 which has been failing to build for months 2009-03-22 mail/dkimap4: unmaintained, does not work with current versions of GCC, needs gcc295 which has been failing to build for months 2009-03-22 net-mgmt/oproute: unmaintained, does not work with current versions of GCC, needs gcc295 which has been failing to build for months 2009-03-22 x11/tkgoodstuff: tcl8.0 support is going to be dropped 2009-02-11 x11-toolkits/inti: not maintain by upstream for more than five years and no port depend on this
Notes
Notes: svn path=/head/; revision=230793
Diffstat (limited to 'multimedia/mpegedit/files/patch-ah')
-rw-r--r--multimedia/mpegedit/files/patch-ah47
1 files changed, 0 insertions, 47 deletions
diff --git a/multimedia/mpegedit/files/patch-ah b/multimedia/mpegedit/files/patch-ah
deleted file mode 100644
index 4e523734127b..000000000000
--- a/multimedia/mpegedit/files/patch-ah
+++ /dev/null
@@ -1,47 +0,0 @@
---- editor/colour_window.C.orig Tue May 9 21:41:30 1995
-+++ editor/colour_window.C Thu Feb 3 21:35:30 2000
-@@ -24,6 +24,8 @@
- #include <assert.h>
- #include <stdlib.h>
-
-+extern "C" int XShmGetEventBase(Display *);
-+
- ColourWindow::ColourWindow(UI_Globals *parent,world_c x,world_c y,
- unsigned int height,unsigned int width,
- void (*cb)(void) )
-@@ -137,7 +139,7 @@
-
- ximage=XCreateImage(DispPointer(),None,8,ZPixmap,0,&dummy,
- width,height,8,0);
-- ximage->data = new byte[ximage->bytes_per_line*height];
-+ ximage->data = (char *) new byte[ximage->bytes_per_line*height];
- assert(ximage->data!=NULL);
- #ifdef SH_MEM
- }
-@@ -158,7 +160,7 @@
- for(j = 0; j < ncolors; j ++)
- {
- tmp_pixel = col_array[j];
-- XFreeColors(DispPointer(), Colourmap, &tmp_pixel, 1, 0);
-+ XFreeColors(DispPointer(), Colourmap, (unsigned long int *) &tmp_pixel, 1, 0);
- }
-
- XFreeGC(DispPointer(),gc);
-@@ -253,7 +255,7 @@
- for(int j = 0; j < i; j ++)
- {
- tmp_pixel = col_array[j];
-- XFreeColors(DispPointer(), Colourmap, &tmp_pixel, 1, 0);
-+ XFreeColors(DispPointer(), Colourmap, (unsigned long int *) &tmp_pixel, 1, 0);
- }
- cerr << "Unable to allocate the colours required to make the\n"
- << "colour window. Please re-run with the option -private cols\n";
-@@ -359,7 +361,7 @@
- {
- assert(Frame.width()==ximage->width);
- assert(Frame.height()==ximage->height);
-- DitherImage(Frame.lum_ptr(),Frame.Cr_ptr(),Frame.Cb_ptr(),ximage->data,
-+ DitherImage(Frame.lum_ptr(),Frame.Cr_ptr(),Frame.Cb_ptr(),(unsigned char *)ximage->data,
- Frame.width(),Frame.height());
- if(nicely)
- {