From owner-freebsd-ports Fri May 11 8:50:16 2001 Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 9F91437B424 for ; Fri, 11 May 2001 08:50:03 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id f4BFo3L09180; Fri, 11 May 2001 08:50:03 -0700 (PDT) (envelope-from gnats) Received: from taygeta.dbai.tuwien.ac.at (taygeta.dbai.tuwien.ac.at [128.130.111.77]) by hub.freebsd.org (Postfix) with ESMTP id CD05237B423 for ; Fri, 11 May 2001 08:42:52 -0700 (PDT) (envelope-from pfeifer@taygeta.dbai.tuwien.ac.at) Received: (from pfeifer@localhost) by taygeta.dbai.tuwien.ac.at (8.11.3/8.11.3) id f4BFges68031; Fri, 11 May 2001 17:42:40 +0200 (CEST) (envelope-from pfeifer) Message-Id: <200105111542.f4BFges68031@taygeta.dbai.tuwien.ac.at> Date: Fri, 11 May 2001 17:42:40 +0200 (CEST) From: pfeifer@dbai.tuwien.ac.at (Gerald Pfeifer) To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.113 Subject: ports/27271: Update the Wine port to 2000-05-10 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 27271 >Category: ports >Synopsis: Update the Wine port to 2000-05-10 >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports >State: open >Quarter: >Keywords: >Date-Required: >Class: maintainer-update >Submitter-Id: current-users >Arrival-Date: Fri May 11 08:50:01 PDT 2001 >Closed-Date: >Last-Modified: >Originator: >Release: FreeBSD 4.3-RELEASE i386 >Organization: >Environment: System: FreeBSD taygeta.dbai.tuwien.ac.at 4.3-RELEASE FreeBSD 4.3-RELEASE #0: Wed May 9 12:46:22 CEST 2001 root@agena.dbai.tuwien.ac.at:/usr/src/sys/compile/KERNEL_4.3 i386 >Description: This is an update of the Wine port to 2000-05-10. >How-To-Repeat: >Fix: Install this patch. ;-) (Note the new file files/patch-gg which I need to work around a Linuxism that will be fixed in the Wine tree shortly.) Index: Makefile =================================================================== RCS file: /sw/FreeBSD/CVSUP/ports/emulators/wine/Makefile,v retrieving revision 1.107 diff -u -3 -p -r1.107 Makefile --- Makefile 2001/05/04 11:25:26 1.107 +++ Makefile 2001/05/11 09:05:24 @@ -7,7 +7,7 @@ # PORTNAME= wine -PORTVERSION= 2001.04.18 +PORTVERSION= 2001.05.10 CATEGORIES= emulators MASTER_SITES= ${MASTER_SITE_SUNSITE} MASTER_SITE_SUBDIR= ALPHA/wine/development Index: distinfo =================================================================== RCS file: /sw/FreeBSD/CVSUP/ports/emulators/wine/distinfo,v retrieving revision 1.61 diff -u -3 -p -r1.61 distinfo --- distinfo 2001/05/04 11:25:26 1.61 +++ distinfo 2001/05/11 09:26:16 @@ -1 +1 @@ -MD5 (Wine-20010418.tar.gz) = d773c35c57579ac78f8926c5a7f9a1ec +MD5 (Wine-20010510.tar.gz) = 6e1840a294845fa0db85704b1fc6728e Index: pkg-plist =================================================================== RCS file: /sw/FreeBSD/CVSUP/ports/emulators/wine/pkg-plist,v retrieving revision 1.22 diff -u -3 -p -r1.22 pkg-plist --- pkg-plist 2001/05/04 11:25:26 1.22 +++ pkg-plist 2001/05/11 14:28:18 @@ -50,6 +50,7 @@ include/wine/mapi.h include/wine/mapidefs.h include/wine/mciavi.h include/wine/mcx.h +include/wine/minmax.h include/wine/mmreg.h include/wine/mmsystem.h include/wine/msacm.h --- /dev/null Fri May 11 17:38:29 2001 +++ files/patch-gg Fri May 11 14:01:09 2001 @@ -0,0 +1,38 @@ +--- dlls/wineps/afm.c 2001/05/09 17:11:59 1.13 ++++ dlls/wineps/afm.c 2001/05/11 11:51:52 +@@ -683,7 +683,7 @@ static BOOL SortFontMetrics() + + qsort(aglCopy, PSDRV_AdobeGlyphList.size, + sizeof(UNICODEGLYPH), +- (__compar_fn_t)UnicodeGlyphByNameIndex); ++ UnicodeGlyphByNameIndex); + } + + for (i = 0; i < afm->NumofMetrics; ++i) +@@ -695,7 +695,7 @@ static BOOL SortFontMetrics() + + pug = bsearch(&ug, aglCopy, PSDRV_AdobeGlyphList.size, + sizeof(UNICODEGLYPH), +- (__compar_fn_t)UnicodeGlyphByNameIndex); ++ UnicodeGlyphByNameIndex); + if (pug == NULL) + { + WARN("Glyph '%s' in font '%s' does not have a UV\n", +@@ -715,7 +715,7 @@ static BOOL SortFontMetrics() + + /* typecast avoids compiler warning */ + qsort((void *)(afm->Encoding->glyphs), afm->Encoding->size, +- sizeof(UNICODEGLYPH), (__compar_fn_t)UnicodeGlyphByUV); ++ sizeof(UNICODEGLYPH), UnicodeGlyphByUV); + + for (i = 0; i < afm->Encoding->size; ++i) + if (afm->Encoding->glyphs[i].UV >= 0) +@@ -726,7 +726,7 @@ static BOOL SortFontMetrics() + } + + qsort(afm->Metrics, afm->NumofMetrics, sizeof(AFMMETRICS), +- (__compar_fn_t)AFMMetricsByUV); ++ AFMMetricsByUV); + + for (i = 0; i < afm->NumofMetrics; ++i) + if (afm->Metrics[i].UV >= 0) >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message