Note: This bug is displayed in read-only format because the product is no longer active in Red Hat Bugzilla.

Bug 2370

Summary: Mutt is not compiled with color support
Product: [Retired] Red Hat Raw Hide Reporter: Jan "Yenya" Kasprzak <kas>
Component: muttAssignee: Bill Nottingham <notting>
Status: CLOSED CURRENTRELEASE QA Contact:
Severity: medium Docs Contact:
Priority: medium    
Version: 1.0CC: kas, notting, rvokal
Target Milestone: ---   
Target Release: ---   
Hardware: All   
OS: Linux   
Whiteboard:
Fixed In Version: Doc Type: Bug Fix
Doc Text:
Story Points: ---
Clone Of: Environment:
Last Closed: 1999-04-26 17:00:42 UTC Type: ---
Regression: --- Mount Type: ---
Documentation: --- CRM:
Verified Versions: Category: ---
oVirt Team: --- RHEL 7.3 requirements from Atomic Host:
Cloudforms Team: --- Target Upstream Version:
Embargoed:

Description Jan "Yenya" Kasprzak 1999-04-26 13:18:28 UTC
The mutt-0.95.4us-4.src.rpm package in Starbuck
and RawHide is not compiled with color support
(one of the main features of mutt). The --with-color
should be added to ./configure's command line.

The second minor bug is that the spec file does not
build mutt with $RPM_OPT_FLAGS. It seems that mutt's
./configure does not set these flags from the environment,
so it should be added on make's command line as well.

The pseudo-patch to the spec file follows:

 #automake
 autoconf
 CFLAGS="$RPM_OPT_FLAGS -I/usr/include/slang" LDFLAGS=-s
./configure \
-	--prefix=/usr --with-sharedir=/etc --sysconfdir=/etc
--enable-pop --enable-imap \
+	--prefix=/usr --with-sharedir=/etc --sysconfdir=/etc
--enable-pop \
+	--enable-imap --with-color \
 	--disable-warnings --with-slang --disable-domain
-make
+make CFLAGS="$RPM_OPT_FLAGS -I/usr/include/slang"
LDFLAGS=-s
 %install
 rm -rf $RPM_BUILD_ROOT
 make prefix=$RPM_BUILD_ROOT/usr
sharedir=$RPM_BUILD_ROOT/etc \

Comment 1 Bill Nottingham 1999-04-26 14:34:59 UTC
Color support is working fine here. What sort of terminal
are you using? (also, AFAICT, --with-color isn't even an
option to configure) I'll add the OPT_FLAGS stuff in the next
build here...

------- Email Received From  Jan Kasprzak <kas.cz> 04/26/99 10:51 -------

Comment 2 Bill Nottingham 1999-04-26 17:00:59 UTC
fixed in mutt-0.95.5us-2. If you manage to make it
not rerun auto*, the CFLAGS that are passed to configure
get passed through OK.