From owner-freebsd-gecko@FreeBSD.ORG Sat Sep 8 09:33:26 2012 Return-Path: Delivered-To: freebsd-gecko@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 7FCB71065747 for ; Sat, 8 Sep 2012 09:33:26 +0000 (UTC) (envelope-from svn-freebsd-gecko@chruetertee.ch) Received: from trillian.chruetertee.ch (trillian.chruetertee.ch [217.150.245.56]) by mx1.freebsd.org (Postfix) with ESMTP id E3F8C8FC08 for ; Sat, 8 Sep 2012 09:33:25 +0000 (UTC) Received: from trillian.chruetertee.ch (trillian [217.150.245.56]) by trillian.chruetertee.ch (8.14.4/8.14.3) with ESMTP id q889XO0q014162 for ; Sat, 8 Sep 2012 09:33:24 GMT (envelope-from svn-freebsd-gecko@chruetertee.ch) Received: (from www@localhost) by trillian.chruetertee.ch (8.14.4/8.14.3/Submit) id q889XJSR013970 for freebsd-gecko@freebsd.org; Sat, 8 Sep 2012 09:33:19 GMT (envelope-from svn-freebsd-gecko@chruetertee.ch) Date: Sat, 8 Sep 2012 09:33:19 GMT Message-Id: <201209080933.q889XJSR013970@trillian.chruetertee.ch> X-Authentication-Warning: trillian.chruetertee.ch: www set sender to svn-freebsd-gecko@chruetertee.ch using -f From: svn-freebsd-gecko@chruetertee.ch To: freebsd-gecko@freebsd.org MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Subject: [SVN-Commit] r1005 - trunk/Mk X-BeenThere: freebsd-gecko@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: freebsd-gecko@freebsd.org List-Id: Gecko Rendering Engine issues List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 08 Sep 2012 09:33:26 -0000 Author: beat Date: Sat Sep 8 09:33:19 2012 New Revision: 1005 Log: - Update comments for libxul19 Modified: trunk/Mk/bsd.gecko.mk Modified: trunk/Mk/bsd.gecko.mk ============================================================================== --- trunk/Mk/bsd.gecko.mk Sat Sep 8 08:51:51 2012 (r1004) +++ trunk/Mk/bsd.gecko.mk Sat Sep 8 09:33:19 2012 (r1005) @@ -36,9 +36,8 @@ # Users should use the following syntax: # -# WITH_GECKO= libxul libxul-devel -# Use libxul whenever a port supports it, falling back on libxul-devel. -# Note: libxul-devel does not exist at the moment! +# WITH_GECKO= libxul libxul19 +# Use libxul whenever a port supports it, falling back on libxul19. # WITH_GECKO= libxul # Sets your preferred backend. With this example, libxul will always # be chosen, unless the port doesn't support a libxul backend. In that @@ -48,20 +47,19 @@ # # Ports should use the following: # -# USE_GECKO= libxul libxul-devel +# USE_GECKO= libxul libxul19 # The list of gecko backends that the port supports. Unless the user # overrides it with WITH_GECKO, the first gecko listed in USE_GECKO # will be the default. In the above example, www/libxul will be used -# as a gecko backend unless WITH_GECKO=libxul-devel is defined by the -# user. Note: libxul-devel does not exist at the moment! +# as a gecko backend unless WITH_GECKO=libxul19 is defined by the +# user. # -# USE_GECKO= libxul-devel<->libxul -# This will sed -e 's/libxul/libxul-devel/' on Makefile.in's and configure -# if ${GECKO}=="libxul-devel" +# USE_GECKO= libxul19<->libxul +# This will sed -e 's/libxul/libxul19/' on Makefile.in's and configure +# if ${GECKO}=="libxul19" # # Example: -# USE_GECKO= libxul libxul-devel -# Note: libxul-devel does not exist at the moment! +# USE_GECKO= libxul libxul19 # # post-patch: # @${REINPALCE_CMD} -e 's|mozilla-|${GECKO}-|' \ @@ -71,11 +69,10 @@ # has been chosen. # # Example: -# USE_GECKO= libxul libxul-devel -# Note: libxul-devel does not exist at the moment! +# USE_GECKO= libxul libxul19 # # post-patch: -# .if ${GECKO}=="libxul-devel" +# .if ${GECKO}=="libxul19" # @${REINPLACE_CMD} -e 's|mozilla-|libxul-|' \ # ${MOZSRC}/configure # .endif