comparison configure.ac @ 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 d22d28e52b58
children 40e2d429a1f1
comparison
equal deleted inserted replaced
1744:feb638a29462 1745:225d3ee03de8
1 dnl Process this file with autoconf to produce a configure script. 1 dnl Process this file with autoconf to produce a configure script.
2 2
3 AC_INIT(audacious, 1.2.0) 3 AC_INIT([audacious], [1.2.0], [bugs+audacious@atheme.org])
4 AC_PREREQ([2.59]) 4 AC_PREREQ([2.59])
5 5
6 AC_CANONICAL_HOST 6 AC_CANONICAL_HOST
7 AC_CANONICAL_TARGET 7 AC_CANONICAL_TARGET
8 8
75 75
76 AC_ARG_ENABLE(user-plugin-dir, 76 AC_ARG_ENABLE(user-plugin-dir,
77 [ --disable-user-plugin-dir disable per-user plugin dir], 77 [ --disable-user-plugin-dir disable per-user plugin dir],
78 [enable_user_plugin_dir=$enableval], 78 [enable_user_plugin_dir=$enableval],
79 [enable_user_plugin_dir=yes] 79 [enable_user_plugin_dir=yes]
80 )
81
82 AC_ARG_WITH(dev-dsp,
83 [ --with-dev-dsp=path Path to OSS DSP data pipe, default is /dev/dsp.],
84 [dev_dsp=$withval],
85 [dev_dsp=/dev/dsp]
86 )
87 AC_DEFINE_UNQUOTED(DEV_DSP, "$dev_dsp",
88 [Path to OSS DSP, really just a data pipe, default is /dev/dsp.]
89 )
90
91 AC_ARG_WITH(dev-mixer,
92 [ --with-dev-mixer=path Path to OSS sound mixer, default is /dev/mixer.],
93 [dev_mixer=$withval],
94 [dev_mixer=/dev/mixer]
95 )
96 AC_DEFINE_UNQUOTED(DEV_MIXER, "$dev_mixer",
97 [Path to OSS mixer, default is /dev/mixer.]
98 )
99
100 AC_ARG_WITH(cdda-device,
101 [ --with-cdda-device=path Path to default cdaudio device.],
102 [AC_DEFINE_UNQUOTED(CDDA_DEVICE, "$withval",
103 [Path to default cdaudio device.]
104 )
105 ]
106 )
107
108 AC_ARG_WITH(cdda-dir,
109 [ --with-cdda-dir=path Path to default cdaudio directory.],
110 [AC_DEFINE_UNQUOTED(CDDA_DIRECTORY, "$withval",
111 [Path to default cdaudio directory.]
112 )
113 ]
114 ) 80 )
115 81
116 dnl Check for GTK/GLib/GThread/Pango 82 dnl Check for GTK/GLib/GThread/Pango
117 83
118 PKG_CHECK_MODULES(GTK, [glib-2.0 >= 2.6.0 gtk+-2.0 >= 2.6.0 gthread-2.0 pango], 84 PKG_CHECK_MODULES(GTK, [glib-2.0 >= 2.6.0 gtk+-2.0 >= 2.6.0 gthread-2.0 pango],
533 echo 499 echo
534 echo "If you don't want two copies of Audacious installed, rerun configure with" 500 echo "If you don't want two copies of Audacious installed, rerun configure with"
535 echo "the --prefix option set to the location of the old Audacious, or uninstall" 501 echo "the --prefix option set to the location of the old Audacious, or uninstall"
536 echo "the old Audacious." 502 echo "the old Audacious."
537 fi 503 fi
538
539 if test "x$ap_disable_timidity" = "xyes" && test "x$enable_timidity" = "xno"; then
540 echo "Note: an ALSA-supported hardware midi synth or a FluidSynth software synth"
541 echo "was detected in configuration; in order to use it, the amidi-plug input"
542 echo "plugin will be compiled in place of timidity. If you wish to compile timidity"
543 echo "anyway, simply use --enable-timidity in configuration."
544 echo ""
545 fi