- don't ignore autogen.sh (included in tarball).

- removed the unnecessary host detection.
This commit is contained in:
Takashi Iwai 2003-11-03 19:07:51 +00:00
parent e33cfeb2ff
commit a66f2e98b6

View file

@ -18,13 +18,13 @@ AC_C_BIGENDIAN
AM_PATH_ALSA(0.9.0) AM_PATH_ALSA(0.9.0)
dnl Set the appropriate architecture define dnl Set the appropriate architecture define
case "$host" in dnl case "$host" in
i?86-*) AC_DEFINE(__i386__, 1, [Using i386 architecture]);; dnl i?86-*) AC_DEFINE(__i386__, 1, [Using i386 architecture]);;
alpha*-*) AC_DEFINE(__alpha__, 1, [Using Alpha architecture]);; dnl alpha*-*) AC_DEFINE(__alpha__, 1, [Using Alpha architecture]);;
sparc-*) AC_DEFINE(__sparc__, 1, [Using SPARC architecture]);; dnl sparc-*) AC_DEFINE(__sparc__, 1, [Using SPARC architecture]);;
ppc-*|powerpc-*) AC_DEFINE(__ppc__, 1, [Using PowerPC architecture]);; dnl ppc-*|powerpc-*) AC_DEFINE(__ppc__, 1, [Using PowerPC architecture]);;
ia64-*) AC_DEFINE(__ia64__, 1, [Using IA-64 architecture]);; dnl ia64-*) AC_DEFINE(__ia64__, 1, [Using IA-64 architecture]);;
*) echo "$host is not currently supported by ac3dec"; exit 1;; dnl *) echo "$host is not currently supported by ac3dec"; exit 1;;
esac dnl esac
AC_OUTPUT(libac3/Makefile tools/Makefile test/Makefile Makefile ) AC_OUTPUT(libac3/Makefile tools/Makefile test/Makefile Makefile )