mirror of
https://github.com/alsa-project/alsa-tools.git
synced 2025-11-03 09:01:51 -05:00
Removed acconfig.h by Pavel Roskin <proski@gnu.org>
This commit is contained in:
parent
5d57366f1b
commit
163c302a6a
2 changed files with 5 additions and 15 deletions
|
|
@ -1,10 +0,0 @@
|
||||||
@BOTTOM@
|
|
||||||
|
|
||||||
/* Architecture defines */
|
|
||||||
#undef __i386__
|
|
||||||
#undef __alpha__
|
|
||||||
#undef __ppc__
|
|
||||||
#undef __sparc__
|
|
||||||
|
|
||||||
/* Big-Endian */
|
|
||||||
#undef WORDS_BIGENDIAN
|
|
||||||
|
|
@ -19,11 +19,11 @@ AM_PATH_ALSA(0.9.0)
|
||||||
|
|
||||||
dnl Set the appropriate architecture define
|
dnl Set the appropriate architecture define
|
||||||
case "$host" in
|
case "$host" in
|
||||||
i?86-*) AC_DEFINE(__i386__);;
|
i?86-*) AC_DEFINE(__i386__, 1, [Using i386 architecture]);;
|
||||||
alpha*-*) AC_DEFINE(__alpha__);;
|
alpha*-*) AC_DEFINE(__alpha__, 1, [Using Alpha architecture]);;
|
||||||
sparc-*) AC_DEFINE(__sparc__);;
|
sparc-*) AC_DEFINE(__sparc__, 1, [Using SPARC architecture]);;
|
||||||
ppc-*|powerpc-*) AC_DEFINE(__ppc__);;
|
ppc-*|powerpc-*) AC_DEFINE(__ppc__, 1, [Using PowerPC architecture]);;
|
||||||
ia64-*) AC_DEFINE(__ia64__);;
|
ia64-*) AC_DEFINE(__ia64__, 1, [Using IA-64 architecture]);;
|
||||||
*) echo "$host is not currently supported by ac3dec"; exit 1;;
|
*) echo "$host is not currently supported by ac3dec"; exit 1;;
|
||||||
esac
|
esac
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue