From owner-freebsd-ports-bugs@FreeBSD.ORG Wed Aug 6 18:20: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 F34D637B401 for ; Wed, 6 Aug 2003 18:20:19 -0700 (PDT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id E494643FBD for ; Wed, 6 Aug 2003 18:20:18 -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 h771KIUp087230 for ; Wed, 6 Aug 2003 18:20:18 -0700 (PDT) (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.9/8.12.9/Submit) id h771KIMp087229; Wed, 6 Aug 2003 18:20:18 -0700 (PDT) Resent-Date: Wed, 6 Aug 2003 18:20:18 -0700 (PDT) Resent-Message-Id: <200308070120.h771KIMp087229@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, Alexander Nedotsukov Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 30F7E37B401; Wed, 6 Aug 2003 18:15:43 -0700 (PDT) Received: from bbnest.dyndns.org (m203064.ap.plala.or.jp [219.164.203.64]) by mx1.FreeBSD.org (Postfix) with ESMTP id 055EC43FB1; Wed, 6 Aug 2003 18:15:42 -0700 (PDT) (envelope-from bland@mail.ru) Received: from bbnest.dyndns.org (bland@localhost [127.0.0.1]) by bbnest.dyndns.org (8.12.9/8.12.9) with ESMTP id h771FemX091971; Thu, 7 Aug 2003 10:15:40 +0900 (JST) (envelope-from bland@mail.ru) Received: (from bland@localhost) by bbnest.dyndns.org (8.12.9/8.12.9/Submit) id h771FdHN091970; Thu, 7 Aug 2003 10:15:39 +0900 (JST) (envelope-from bland) Message-Id: <200308070115.h771FdHN091970@bbnest.dyndns.org> Date: Thu, 7 Aug 2003 10:15:39 +0900 (JST) From: Alexander Nedotsukov To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 cc: marcus@FreeBSD.org Subject: ports/55330: make building of mozilla's XMLTerm module optional X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list Reply-To: Alexander Nedotsukov List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 07 Aug 2003 01:20:20 -0000 >Number: 55330 >Category: ports >Synopsis: make building of mozilla's XMLTerm module optional >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Wed Aug 06 18:20:18 PDT 2003 >Closed-Date: >Last-Modified: >Originator: Alexander Nedotsukov >Release: FreeBSD 5.1-CURRENT i386 >Organization: >Environment: System: FreeBSD bbnest.dyndns.org 5.1-CURRENT FreeBSD 5.1-CURRENT #2: Mon Aug 4 21:54:29 JST 2003 bland@bbnest.dyndns.org:/usr/obj/usr/src/sys/SU i386 >Description: At the moment building of XMLTerm extension module is unconditional wich is not always what expected to be. New WITHOUT_XMLTERM option supposed to resolve the situation. Smilar change may be reasonable for mozilla-devel port as well. >How-To-Repeat: >Fix: Apply the patch attached --- Makefile.patch begins here --- --- Makefile.orig Thu Aug 7 09:46:41 2003 +++ Makefile Thu Aug 7 10:04:43 2003 @@ -108,12 +108,14 @@ CONFIGURE_ARGS+= --enable-ldap --enable-mailnews .endif .endif - +MOZ_EXTENSIONS= default .if !defined(WITHOUT_CHATZILLA) -CONFIGURE_ARGS+= --enable-extensions=default,irc,xmlterm -.else -CONFIGURE_ARGS+= --enable-extensions=default,xmlterm +MOZ_EXTENSIONS:= ${MOZ_EXTENSIONS},irc +.endif +.if !defined(WITHOUT_XMLTERM) +MOZ_EXTENSIONS:= ${MOZ_EXTENSIONS},xmlterm .endif +CONFIGURE_ARGS+= --enable-extensions=${MOZ_EXTENSIONS} CONFIGURE_ENV= MOZ_INTERNAL_LIBART_LGPL=1 .if defined(WITH_JAVASCRIPT_DEBUGGER) @@ -179,6 +181,7 @@ @${ECHO_MSG} " WITHOUT_COMPOSER=yes Disables the HTML Composer module" @${ECHO_MSG} " WITHOUT_LDAP=yes Disables LDAP support within the Mailnews module" @${ECHO_MSG} " WITHOUT_CHATZILLA=yes Disable the Chatzilla IRC module" + @${ECHO_MSG} " WITHOUT_XMLTERM=yes Disable the XMLTerm module" @${ECHO_MSG} " WITH_JAVASCRIPT_DEBUGGER=yes Enable the DTD and JavaScript debuggers" @${ECHO_MSG} " WITH_OPTIMIZED_CFLAGS=yes Enable -O2 optimization" @${ECHO_MSG} "" --- Makefile.patch ends here --- >Release-Note: >Audit-Trail: >Unformatted: