From owner-freebsd-ports-bugs@FreeBSD.ORG Sat Jul 5 03:30:20 2003 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 03C9237B404 for ; Sat, 5 Jul 2003 03:30:20 -0700 (PDT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id E5B8743FE3 for ; Sat, 5 Jul 2003 03:30:17 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.9/8.12.9) with ESMTP id h65AUHUp073197 for ; Sat, 5 Jul 2003 03:30:17 -0700 (PDT) (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.9/8.12.9/Submit) id h65AUHs9073196; Sat, 5 Jul 2003 03:30:17 -0700 (PDT) Resent-Date: Sat, 5 Jul 2003 03:30:17 -0700 (PDT) Resent-Message-Id: <200307051030.h65AUHs9073196@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Oliver Eikemeier Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 95F7437B401 for ; Sat, 5 Jul 2003 03:24:15 -0700 (PDT) Received: from mx1.fillmore-labs.com (nuuk.fillmore-labs.com [62.138.193.82]) by mx1.FreeBSD.org (Postfix) with ESMTP id 5BE0B44008 for ; Sat, 5 Jul 2003 03:24:14 -0700 (PDT) (envelope-from root@fillmore-labs.com) Received: from root by mx1.fillmore-labs.com with local (Exim 4.20) id 19YkDE-000E6L-1F; Sat, 05 Jul 2003 12:24:12 +0200 Message-Id: Date: Sat, 05 Jul 2003 12:24:12 +0200 From: Oliver Eikemeier To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 cc: eikemeier@fillmore-labs.com Subject: ports/54122: [MAINTAINER PATCH] fix warnings and potential crash on 64 bit platforms X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list Reply-To: Oliver Eikemeier List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 05 Jul 2003 10:30:20 -0000 >Number: 54122 >Category: ports >Synopsis: [MAINTAINER PATCH] fix warnings and potential crash on 64 bit platforms >Confidential: no >Severity: non-critical >Priority: medium >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: maintainer-update >Submitter-Id: current-users >Arrival-Date: Sat Jul 05 03:30:17 PDT 2003 >Closed-Date: >Last-Modified: >Originator: Oliver Eikemeier >Release: FreeBSD 4.8-STABLE i386 >Organization: Fillmore Labs - http://www.fillmore-labs.com >Environment: System: FreeBSD nuuk.fillmore-labs.com 4.8-STABLE >Description: - fix warnings and potential crash on 64 bit platforms see http://www.OpenLDAP.org/its/index.cgi?findid=2630 - switch spanish mirror to red iris see http://www.openldap.org/its/index.cgi?findid=2629 - bump portrevision >How-To-Repeat: >Fix: --- openldap22-2.2.0a_1.patch begins here --- diff -Nur openldap22.orig/Makefile openldap22/Makefile --- openldap22.orig/Makefile Wed Jul 2 16:49:56 2003 +++ openldap22/Makefile Sat Jul 5 12:16:07 2003 @@ -7,6 +7,7 @@ PORTNAME= openldap PORTVERSION= ${OPENLDAP_VERSION}.a +PORTREVISION= 1 CATEGORIES= net databases MASTER_SITES= ftp://ftp.OpenLDAP.org/pub/OpenLDAP/%SUBDIR%/ \ http://public.planetmirror.com/pub/openldap/%SUBDIR%/ \ @@ -18,7 +19,7 @@ ftp://ftp.holywar.net/pub/OpenLDAP/%SUBDIR%/ \ ftp://ftp.nl.uu.net/pub/unix/db/openldap/%SUBDIR%/ \ ftp://ftp.linux.pt/pub/mirrors/OpenLDAP/%SUBDIR%/ \ - ftp://ftp.si.uniovi.es/mirror/OpenLDAP/%SUBDIR%/ \ + ftp://ftp.rediris.es/mirror/OpenLDAP/%SUBDIR%/ \ ftp://sunsite.cnlab-switch.ch/mirror/OpenLDAP/%SUBDIR%/ \ http://openldap.cdpa.nsysu.edu.tw/OpenLDAP/%SUBDIR%/ \ ftp://ftp.u-aizu.ac.jp/pub/net/openldap/%SUBDIR%/ \ diff -Nur openldap22.orig/files/patch-libraries::liblunicode::ucstr.c openldap22/files/patch-libraries::liblunicode::ucstr.c --- openldap22.orig/files/patch-libraries::liblunicode::ucstr.c Thu Jan 1 01:00:00 1970 +++ openldap22/files/patch-libraries::liblunicode::ucstr.c Sat Jul 5 10:53:58 2003 @@ -0,0 +1,11 @@ +--- libraries/liblunicode/ucstr.c.orig Fri Apr 11 03:57:10 2003 ++++ libraries/liblunicode/ucstr.c Sat Jul 5 10:53:04 2003 +@@ -15,6 +15,8 @@ + #include + #include + ++#include "lber_pvt.h" ++ + #define malloc(x) ber_memalloc_x(x,ctx) + #define realloc(x,y) ber_memrealloc_x(x,y,ctx) + #define free(x) ber_memfree_x(x,ctx) --- openldap22-2.2.0a_1.patch ends here --- >Release-Note: >Audit-Trail: >Unformatted: