changeset 1420:0aa4bee03747 trunk

[svn] - ok, move this fix down a little
author nenolod
date Tue, 18 Jul 2006 12:33:34 -0700
parents 25110f034157
children fe6d04a4019a
files ChangeLog configure.ac
diffstat 2 files changed, 14 insertions(+), 5 deletions(-) [+]
line wrap: on
line diff
--- a/ChangeLog	Tue Jul 18 11:59:43 2006 -0700
+++ b/ChangeLog	Tue Jul 18 12:33:34 2006 -0700
@@ -1,3 +1,12 @@
+2006-07-18 18:59:43 +0000  William Pitcock <nenolod@nenolod.net>
+  revision [1752]
+  - workaround another autoconf bug
+  
+
+  Changes:        Modified:
+  +4 -0           trunk/configure.ac  
+
+
 2006-07-18 15:49:50 +0000  William Pitcock <nenolod@nenolod.net>
   revision [1750]
   - work around a possible autoconf bug causing datadir to be blank
--- a/configure.ac	Tue Jul 18 11:59:43 2006 -0700
+++ b/configure.ac	Tue Jul 18 12:33:34 2006 -0700
@@ -1,7 +1,7 @@
 dnl Process this file with autoconf to produce a configure script.
 
 AC_INIT(audacious, 1.1.1)
-AC_PREREQ(2.5)
+AC_PREREQ([2.59])
 
 AC_CANONICAL_HOST
 AC_CANONICAL_TARGET
@@ -24,10 +24,6 @@
 
 AM_INIT_AUTOMAKE
 
-if [ "$prefix" = "NONE" ]; then
-        prefix="${ac_default_prefix}"
-fi
-
 dnl GNU gettext
 
 AM_GNU_GETTEXT
@@ -119,6 +115,10 @@
 
 dnl These plugins are always built.
 
+if [ "$prefix" = "NONE" ]; then
+        prefix="${ac_default_prefix}"
+fi
+
 INPUT_PLUGINS="cdaudio tonegen console sexypsf wav"
 OUTPUT_PLUGINS="disk_writer"
 EFFECT_PLUGINS="audiocompress ladspa voice_removal"