From owner-freebsd-ports-bugs@FreeBSD.ORG Fri Mar 24 11:10:22 2006 Return-Path: X-Original-To: freebsd-ports-bugs@hub.freebsd.org 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 7580416A422; Fri, 24 Mar 2006 11:10:22 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id D2EC143D45; Fri, 24 Mar 2006 11:10:21 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.4/8.13.4) with ESMTP id k2OBALBg080446; Fri, 24 Mar 2006 11:10:21 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id k2OBALpD080445; Fri, 24 Mar 2006 11:10:21 GMT (envelope-from gnats) Resent-Date: Fri, 24 Mar 2006 11:10:21 GMT Resent-Message-Id: <200603241110.k2OBALpD080445@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Cc: mat@FreeBSD.org, ronvdaal@n1x.nl Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Mathieu Arnold Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 98F2C16A440 for ; Fri, 24 Mar 2006 11:03:41 +0000 (UTC) (envelope-from mat@aragorn-old.in.absolight.net) Received: from plouf.absolight.net (plouf.absolight.net [193.30.224.136]) by mx1.FreeBSD.org (Postfix) with ESMTP id 3431143D49 for ; Fri, 24 Mar 2006 11:03:33 +0000 (GMT) (envelope-from mat@aragorn-old.in.absolight.net) Received: from gw.in.absolight.net (gw.in.absolight.net [193.30.224.94]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (Client did not present a certificate) by plouf.absolight.net (Postfix) with ESMTP id 9F1CC4B2E33 for ; Fri, 24 Mar 2006 12:03:31 +0100 (CET) Received: from aragorn-old.in.absolight.net (aragorn-old.in.absolight.net [193.30.224.86]) by gw.in.absolight.net (Postfix) with ESMTP id A5C0860DA for ; Fri, 24 Mar 2006 12:03:29 +0100 (CET) Received: by aragorn-old.in.absolight.net (Postfix, from userid 1000) id 6E2017CB0; Fri, 24 Mar 2006 12:03:27 +0100 (CET) Message-Id: <20060324110327.6E2017CB0@aragorn-old.in.absolight.net> Date: Fri, 24 Mar 2006 12:03:27 +0100 (CET) From: Mathieu Arnold To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 X-GNATS-Notify: mat@FreeBSD.org, ronvdaal@n1x.nl Cc: Subject: ports/94905: Change GraphicsMagick so that it's symbols don't clash with other libs X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: Mathieu Arnold List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 24 Mar 2006 11:10:22 -0000 >Number: 94905 >Category: ports >Synopsis: Change GraphicsMagick so that it's symbols don't clash with other libs >Confidential: no >Severity: serious >Priority: medium >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Fri Mar 24 11:10:15 GMT 2006 >Closed-Date: >Last-Modified: >Originator: Mathieu Arnold >Release: FreeBSD 4.8-RELEASE i386 >Organization: Absolight >Environment: System: FreeBSD aragorn-old.in.absolight.net 4.8-RELEASE FreeBSD 4.8-RELEASE #0: Wed Sep 3 12:54:37 CEST 2003 root@aragorn.reaumur.absolight.net:/usr/src/sys/compile/ARAGORN i386 >Description: If you try to use a program with both libGraphicsMagick and libtidy, you'll have problems because both of them export a GetToken symbol. The easiest way to prevent this from happening is to use this which makes all GraphicsMagick symbols be prefixed with Gm. It would require a not in UPDATING because all depending software will have to be recompiled. >How-To-Repeat: >Fix: --- GraphicsMagick-nox11-1.1.6_2.diff begins here --- Index: Makefile =================================================================== RCS file: /opt/freebsd/ports/graphics/GraphicsMagick/Makefile,v retrieving revision 1.4 diff -u -r1.4 Makefile --- Makefile 23 Feb 2006 10:36:46 -0000 1.4 +++ Makefile 24 Mar 2006 10:57:52 -0000 @@ -7,7 +7,7 @@ PORTNAME= GraphicsMagick PORTVERSION= 1.1.6 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= graphics MASTER_SITES= ${MASTER_SITE_SOURCEFORGE} \ ftp://ftp.graphicsmagick.org/pub/GraphicsMagick/ @@ -46,7 +46,8 @@ CONFIGURE_TARGET=--build=${MACHINE_ARCH}-portbld-freebsd${OSREL} CONFIGURE_ARGS= --without-perl --with-windows-font-dir=${WINDOWS_FONT_DIR} \ - --enable-shared --enable-static --without-threads + --enable-shared --enable-static --without-threads \ + --enable-symbol-prefix INSTALLS_SHLIB= yes .if !defined(NOPORTDOCS) --- GraphicsMagick-nox11-1.1.6_2.diff ends here --- >Release-Note: >Audit-Trail: >Unformatted: