1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-11-27 00:57:50 +00:00
This commit is contained in:
Justin M. Seger 1999-04-22 22:32:56 +00:00
parent 05c91b5a82
commit 0ec70205ed
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=18092
2 changed files with 29 additions and 3 deletions

View File

@ -3,7 +3,7 @@
# Date created: Dec 1 1995
# Whom: ache
#
# $Id: Makefile,v 1.14 1999/01/23 07:05:20 vanilla Exp $
# $Id: Makefile,v 1.15 1999/02/13 00:45:40 asami Exp $
#
DISTNAME= arena-CJK-beta3a
@ -16,8 +16,6 @@ MAINTAINER= ache@FreeBSD.ORG
LIB_DEPENDS+= jpeg.9:${PORTSDIR}/graphics/jpeg
LIB_DEPENDS+= png.3:${PORTSDIR}/graphics/png
BROKEN= png upgrade
USE_XLIB= yes
WRKSRC= ${WRKDIR}/WWW

28
www/arena/files/patch-ab Normal file
View File

@ -0,0 +1,28 @@
--- Arena/Implementation/png.c.orig Tue Aug 20 02:38:23 1996
+++ Arena/Implementation/png.c Thu Apr 22 15:24:44 1999
@@ -65,25 +65,6 @@
}
}
-void
-png_error(png_struct *png_ptr, char *message)
-{
- fprintf(stderr,"libpng error: %s\n", message);
- /* Warn("libpng error: %s\n", message); */
- longjmp(png_ptr->jmpbuf, 1);
-}
-
-void
-png_warning(png_struct *png_ptr, char *message)
-{
- if (!png_ptr)
- return;
-
- fprintf(stderr,"libpng warning: %s\n", message);
- /* Warn("libpng warning: %s\n", message); */
-}
-
-
/* Read image into displays 1,2 or 4 bit deep */
unsigned char *ReadPNGImage_1_2_4(png_struct *png_ptr, png_info *info_ptr, png_byte *png_image)
{