]> git.alsa-project.org Git - alsa-lib.git/commitdiff
allow building out of tree (sort of)
authorMike Frysinger <vapier@gentoo.org>
Wed, 4 Oct 2006 15:30:26 +0000 (17:30 +0200)
committerTakashi Iwai <tiwai@suse.de>
Wed, 4 Oct 2006 15:30:26 +0000 (17:30 +0200)
the current configure script assumes that it will be run in the srcdir ... i
often build things out of tree so you can quickly punt all the generated
files:
mkdir build
cd build
../configure
cd ..
rm -r build
clean!

this tweaks the configure script in a few places to use the correct variable
instead of assuming that configure is always in $PWD ...

i say "sort of" in the subject because there is still the issues of the pcm
symbols list being generated in $builddir instead of $srcdir and the alsa
include symlink, but these doesnt really concern me for what i need ;)

Signed-off-by: Mike Frysinger <vapier@gentoo.org>
configure.in

index 6a513d6d0ede94e7d68260c1c1a8700760eb5a7f..3cad3322f28864db6393895f2630b5142d3c4584 100644 (file)
@@ -84,7 +84,7 @@ AC_ARG_WITH(versioned,
   versioned="$withval", versioned="yes")
 if test "$versioned" = "yes"; then
   # it seems that GNU ld versions since 2.10 are not broken
-  xres=`grep '^VERSION=' $ac_aux_dir/libtool | cut -d = -f 2 | cut -d \" -f 2`
+  xres=`grep '^VERSION=' libtool | cut -d = -f 2 | cut -d \" -f 2`
   major=`echo $xres | cut -d . -f 1`
   minor=`echo $xres | cut -d . -f 2`
   pass=0
@@ -368,18 +368,18 @@ fi
 
 
 dnl Create PCM plugin symbol list for static library
-rm -f src/pcm/pcm_symbols_list.c
+rm -f "$srcdir"/src/pcm/pcm_symbols_list.c
 for t in $PCM_PLUGIN_LIST; do
   if eval test \$build_pcm_$t = yes; then
-    echo \&_snd_module_pcm_$t, >> src/pcm/pcm_symbols_list.c
+    echo \&_snd_module_pcm_$t, >> "$srcdir"/src/pcm/pcm_symbols_list.c
   fi
 done
 
 dnl Make a symlink for inclusion of alsa/xxx.h
-if test ! -L include/alsa ; then
+if test ! -L "$srcdir"/include/alsa ; then
   echo "Making a symlink include/alsa"
-  rm -f include/alsa
-  ln -sf . include/alsa
+  rm -f "$srcdir"/include/alsa
+  ln -sf . "$srcdir"/include/alsa
 fi
 
 AC_OUTPUT(Makefile doc/Makefile doc/pictures/Makefile include/Makefile