diff options
author | Matthias Hopf <mat@mshopf.de> | 2001-07-16 19:36:00 +0000 |
---|---|---|
committer | Matthias Hopf <mat@mshopf.de> | 2001-07-16 19:36:00 +0000 |
commit | 0bb6f834ae95cd434110ab1612563994112d75ac (patch) | |
tree | 2cc2b29482da412356c3c8cab8474879d66f47f8 /cvscompile.sh | |
parent | 65d473e411929996584d8841790a9e583db6781d (diff) | |
download | xine-lib-0bb6f834ae95cd434110ab1612563994112d75ac.tar.gz xine-lib-0bb6f834ae95cd434110ab1612563994112d75ac.tar.bz2 |
IRIX / mips port. Audio and CD support are not implemented yet.
Nuked BUILD_LIB_STATIC.
Changed some architecture dependend code to feature dependend code.
Autoconf'ing CD / DVD ioctl() support.
CVS patchset: 288
CVS date: 2001/07/16 19:36:00
Diffstat (limited to 'cvscompile.sh')
-rwxr-xr-x | cvscompile.sh | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/cvscompile.sh b/cvscompile.sh index ebbdc4be5..23e57daaa 100755 --- a/cvscompile.sh +++ b/cvscompile.sh @@ -1,20 +1,20 @@ #!/bin/sh # Run this to generate all the initial Makefiles, etc. -m4_files="_xine.m4 alsa.m4 arts.m4 esd.m4 aa.m4" -if test -d m4; then +srcdir=`dirname $0` +test -z "$srcdir" && srcdir=. + +#m4_files="_xine.m4 alsa.m4 arts.m4 esd.m4 aa.m4 irixal.m4" +if test -d $srcdir/m4; then rm -f acinclude.m4 - for m4f in $m4_files; do - cat m4/$m4f >> acinclude.m4 + for m4f in $srcdir/m4/*.m4; do + cat $m4f >> acinclude.m4 done else echo "Directory 'm4' is missing." exit 1 fi -srcdir=`dirname $0` -test -z "$srcdir" && srcdir=. - (test -f $srcdir/configure.in) || { echo -n "*** Error ***: Directory "\`$srcdir\'" does not look like the" echo " top-level directory" |