diff options
author | Takashi Iwai <tiwai@suse.de> | 2008-06-27 16:20:00 +0200 |
---|---|---|
committer | Takashi Iwai <tiwai@suse.de> | 2008-06-27 16:20:00 +0200 |
commit | 7d53b9d293d79b16c8ed93cb81388f2365e9aaf6 (patch) | |
tree | 3d0e2b1e78e0503542947f604a14e151aadd7d44 | |
parent | 0fd4c0793ef166f54c0a2d53221bfa600b974b53 (diff) |
Fix invalid withval in configure script
Should be enableval instead.
Signed-off-by: Takashi Iwai <tiwai@suse.de>
-rw-r--r-- | configure.in | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/configure.in b/configure.in index 4ba8063..08bd1c4 100644 --- a/configure.in +++ b/configure.in @@ -27,13 +27,13 @@ AM_CONDITIONAL(HAVE_SAMPLERATE, test x$HAVE_SAMPLERATE = xyes) AC_ARG_ENABLE([maemo-plugin], AS_HELP_STRING([--enable-maemo-plugin], [Build Maemo DSP plugin]), - [HAVE_MAEMO_PLUGIN="$withval"], [HAVE_MAEMO_PLUGIN="no"]) + [HAVE_MAEMO_PLUGIN="$enableval"], [HAVE_MAEMO_PLUGIN="no"]) AM_CONDITIONAL(HAVE_MAEMO_PLUGIN, test x$HAVE_MAEMO_PLUGIN = xyes) AC_ARG_ENABLE([maemo-resource-manager], AS_HELP_STRING([--enable-maemo-resource-manager], [Use Maemo resource manager]), - [use_maemo_rm="$withval"], [use_maemo_rm="no"]) + [use_maemo_rm="$enableval"], [use_maemo_rm="no"]) if test "$use_maemo_rm" = "yes"; then PKG_CHECK_MODULES(DBUS, [dbus-1], [HAVE_DBUS=yes], [HAVE_DBUS=no]) |