changeset 1745:225d3ee03de8 trunk

[svn] - add a bugs@ address for audacious - remove some unused --with/--enable arguments
author nenolod
date Mon, 18 Sep 2006 12:59:14 -0700
parents feb638a29462
children 40e2d429a1f1
files ChangeLog configure.ac
diffstat 2 files changed, 10 insertions(+), 43 deletions(-) [+]
line wrap: on
line diff
--- a/ChangeLog	Mon Sep 18 03:20:15 2006 -0700
+++ b/ChangeLog	Mon Sep 18 12:59:14 2006 -0700
@@ -1,3 +1,12 @@
+2006-09-18 10:20:15 +0000  William Pitcock <nenolod@nenolod.net>
+  revision [2425]
+  - add -D_AUDACIOUS_CORE here
+  
+
+  Changes:        Modified:
+  +1 -0           trunk/audacious/widgets/Makefile  
+
+
 2006-09-18 09:51:11 +0000  William Pitcock <nenolod@nenolod.net>
   revision [2423]
   - remove plugins from the core distribution
--- a/configure.ac	Mon Sep 18 03:20:15 2006 -0700
+++ b/configure.ac	Mon Sep 18 12:59:14 2006 -0700
@@ -1,6 +1,6 @@
 dnl Process this file with autoconf to produce a configure script.
 
-AC_INIT(audacious, 1.2.0)
+AC_INIT([audacious], [1.2.0], [bugs+audacious@atheme.org])
 AC_PREREQ([2.59])
 
 AC_CANONICAL_HOST
@@ -79,40 +79,6 @@
     [enable_user_plugin_dir=yes]
 )
 
-AC_ARG_WITH(dev-dsp,
-    [  --with-dev-dsp=path            Path to OSS DSP data pipe, default is /dev/dsp.],
-    [dev_dsp=$withval],
-    [dev_dsp=/dev/dsp]
-)
-AC_DEFINE_UNQUOTED(DEV_DSP, "$dev_dsp",
-    [Path to OSS DSP, really just a data pipe, default is /dev/dsp.]
-)
-
-AC_ARG_WITH(dev-mixer,
-    [  --with-dev-mixer=path          Path to OSS sound mixer, default is /dev/mixer.],
-    [dev_mixer=$withval],
-    [dev_mixer=/dev/mixer]
-)
-AC_DEFINE_UNQUOTED(DEV_MIXER, "$dev_mixer",
-    [Path to OSS mixer, default is /dev/mixer.]
-)
-
-AC_ARG_WITH(cdda-device,
-    [  --with-cdda-device=path        Path to default cdaudio device.],
-    [AC_DEFINE_UNQUOTED(CDDA_DEVICE, "$withval",
-         [Path to default cdaudio device.]
-     )
-    ]
-)
-
-AC_ARG_WITH(cdda-dir,
-    [  --with-cdda-dir=path           Path to default cdaudio directory.],
-    [AC_DEFINE_UNQUOTED(CDDA_DIRECTORY, "$withval",
-         [Path to default cdaudio directory.]
-     )
-    ]
-)
-
 dnl Check for GTK/GLib/GThread/Pango
 
 PKG_CHECK_MODULES(GTK, [glib-2.0 >= 2.6.0 gtk+-2.0 >= 2.6.0 gthread-2.0 pango],
@@ -535,11 +501,3 @@
     echo "the --prefix option set to the location of the old Audacious, or uninstall"
     echo "the old Audacious."
 fi
-
-if test "x$ap_disable_timidity" = "xyes" && test "x$enable_timidity" = "xno"; then
-    echo "Note: an ALSA-supported hardware midi synth or a FluidSynth software synth"
-    echo "was detected in configuration; in order to use it, the amidi-plug input"
-    echo "plugin will be compiled in place of timidity. If you wish to compile timidity"
-    echo "anyway, simply use --enable-timidity in configuration."
-    echo ""
-fi