Skip site navigation (1)Skip section navigation (2)
Date:      Mon, 23 Feb 2004 20:37:00 -0800 (PST)
From:      Gene Hsu <gene@hsufarm.com>
To:        FreeBSD-gnats-submit@FreeBSD.org
Subject:   ports/63295: port www/linx Allow the use of default colors for lynx
Message-ID:  <20040224043700.D5B0030@pollux.hsufarm.com>
Resent-Message-ID: <200402240440.i1O4e7h4035161@freefall.freebsd.org>

next in thread | raw e-mail | index | archive | help

>Number:         63295
>Category:       ports
>Synopsis:       port www/linx Allow the use of default colors for lynx
>Confidential:   no
>Severity:       non-critical
>Priority:       low
>Responsible:    freebsd-ports-bugs
>State:          open
>Quarter:        
>Keywords:       
>Date-Required:
>Class:          update
>Submitter-Id:   current-users
>Arrival-Date:   Mon Feb 23 20:40:07 PST 2004
>Closed-Date:
>Last-Modified:
>Originator:     Gene Hsu
>Release:        FreeBSD 4.9-STABLE i386
>Organization:
>Environment:
System: FreeBSD pollux.hsufarm.com 4.9-STABLE FreeBSD 4.9-STABLE #0: Fri Dec 12 12:18:16 PST 2003 root@pollux.hsufarm.com:/usr/obj/usr/src/sys/HSUFARM i386


>Description:
	Allow the use of --enable-default-colors flag configuration option
	This will allow the use of default terminal colors for both the
	background and foreground instead of forcing the use of a built-in
	color scheme
>How-To-Repeat:
>Fix:
To make this a default solution:

--- Makefile    Thu Feb 19 03:35:10 2004
+++ Makefile.new        Thu Feb 19 17:46:20 2004
@@ -25,7 +25,7 @@
 GNU_CONFIGURE= yes
 CONFIGURE_ARGS+=--with-screen=ncurses --with-zlib --libdir="${L_LIB}" \
                --enable-nsl-fork --enable-persistent-cookies \
-               --enable-ipv6
+               --enable-ipv6 --enable-default-colors
 MAKE_ARGS=     helpdir=${L_HELP} docdir=${DOCSDIR}
 MAKEFILE=      makefile
 INSTALL_TARGET=        install-full

To make this a port option, perhaps by setting an ENABLE_DEFAULT_COLORS
flag:

--- Makefile    Thu Feb 19 03:35:10 2004
+++ Makefile.new        Mon Feb 23 20:35:47 2004
@@ -26,6 +26,11 @@
 CONFIGURE_ARGS+=--with-screen=ncurses --with-zlib --libdir="${L_LIB}" \
                --enable-nsl-fork --enable-persistent-cookies \
                --enable-ipv6
+
+.if defined(ENABLE_DEFAULT_COLORS)
+CONFIGURE_ARGS+=--enable-default-colors
+.endif
+
 MAKE_ARGS=     helpdir=${L_HELP} docdir=${DOCSDIR}
 MAKEFILE=      makefile
 INSTALL_TARGET=        install-full


>Release-Note:
>Audit-Trail:
>Unformatted:



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?20040224043700.D5B0030>