Bug 89312

Summary: Semantic error in configure
Product: kdemultimedia Reporter: Frederick Alexander Thomssen <mail>
Component: generalAssignee: Multimedia Developers <kde-multimedia>
Status: RESOLVED FIXED    
Severity: normal    
Priority: NOR    
Version: unspecified   
Target Milestone: ---   
Platform: Compiled Sources   
OS: Linux   
Latest Commit: Version Fixed In:

Description Frederick Alexander Thomssen 2004-09-11 20:35:59 UTC
Version:            (using KDE Devel)
Installed from:    Compiled sources
Compiler:          gcc (GCC) 3.4.1 20040831 (Red Hat 3.4.1-10) from Fedora Core development tree
OS:                Linux

When starting "./configure --help" there is this line:

--without-arts-alsa        enable aRts ALSA support

But something here is wrong - either the option or the description... or I misunderstood the option...
Comment 1 Michael Pyne 2004-09-11 22:31:52 UTC
CVS commit by mpyne: 

Fix misnamed option in kdemultimedia's configure script.  --without-arts-alsa actually enables alsa support.

CCMAIL:89312-done@bugs.kde.org


  M +1 -1      configure.in.in   1.15


--- kdemultimedia/arts/configure.in.in  #1.14:1.15
@@ -65,5 +65,5 @@
 dnl they should not interfere with what kmidi and kmix do  -- stw
 
-AC_ARG_WITH(alsa, [  --without-arts-alsa        enable aRts ALSA support],
+AC_ARG_WITH(alsa, [  --with-arts-alsa        enable aRts ALSA support],
 [arts_with_alsa=$withval], [arts_with_alsa=yes])