diff options
author | Thomas Vander Stichele <thomas@apestaart.org> | 2005-12-16 17:30:27 +0000 |
---|---|---|
committer | Thomas Vander Stichele <thomas@apestaart.org> | 2005-12-16 17:30:27 +0000 |
commit | 14377200ccbba1f366ce2c2746c8cd70f61b9840 (patch) | |
tree | dea3385fe58b9234fdf93563c954a7ba31f314f4 | |
parent | 4edc214072fe07d2aade96bc336493425654d7b4 (diff) |
define HOST_CPU
Original commit message from CVS:
define HOST_CPU
-rw-r--r-- | ChangeLog | 5 | ||||
-rw-r--r-- | m4/gst-arch.m4 | 2 |
2 files changed, 7 insertions, 0 deletions
@@ -1,3 +1,8 @@ +2005-12-16 Thomas Vander Stichele <thomas at apestaart dot org> + + * m4/gst-arch.m4: + define HOST_CPU + 2005-11-29 Thomas Vander Stichele <thomas at apestaart dot org> * check.mak: diff --git a/m4/gst-arch.m4 b/m4/gst-arch.m4 index d446c87..338ea62 100644 --- a/m4/gst-arch.m4 +++ b/m4/gst-arch.m4 @@ -1,6 +1,7 @@ dnl GST_ARCH dnl sets up defines and automake conditionals for host architecture dnl checks endianness +dnl defines HOST_CPU AC_DEFUN([GST_ARCH], [ @@ -106,4 +107,5 @@ int main(int argc, char **argv) AC_DEFINE_UNQUOTED(HAVE_UNALIGNED_ACCESS, 1, [defined if unaligned memory access works correctly]) fi + AC_DEFINE_UNQUOTED(HOST_CPU, "$host_cpu", [the host CPU]) ]) |