Bug 89312 - Semantic error in configure
Summary: Semantic error in configure
Status: RESOLVED FIXED
Alias: None
Product: kdemultimedia
Classification: Miscellaneous
Component: general (show other bugs)
Version: unspecified
Platform: Compiled Sources Linux
: NOR normal
Target Milestone: ---
Assignee: Multimedia Developers
URL:
Keywords:
Depends on:
Blocks:
 
Reported: 2004-09-11 20:35 UTC by Frederick Alexander Thomssen
Modified: 2004-09-11 22:31 UTC (History)
0 users

See Also:
Latest Commit:
Version Fixed In:


Attachments

Note You need to log in before you can comment on or make changes to this bug.
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])