diff options
-rw-r--r-- | AUTHORS | 3 | ||||
-rw-r--r-- | configure.in | 12 |
2 files changed, 15 insertions, 0 deletions
@@ -144,6 +144,9 @@ Contributions Andrew Meredith <andrew@anvil.org> Snapshot feature + Stefan Reinauer <stepan@suse.de> + ia64, s/390 patches + (let us know if we've forgotten anyone) diff --git a/configure.in b/configure.in index 8719d32f1..e1322a14e 100644 --- a/configure.in +++ b/configure.in @@ -573,6 +573,18 @@ case "$host_or_hostalias" in AC_DEFINE(FPM_DEFAULT) ;; + ia64*) + GLOBAL_CFLAGS="$GLOBAL_CFLAGS -O3" + DEBUG_CFLAGS="$DEBUG_CFLAGS -O3" + AC_DEFINE(FPM_64BIT) + ;; + + s390*) + GLOBAL_CFLAGS="$GLOBAL_CFLAGS -O3" + DEBUG_CFLAGS="$DEBUG_CFLAGS -O3" + AC_DEFINE(FPM_DEFAULT) + ;; + *) echo "Host type '$host' ($host_alias) is currently not supported by xine" exit 1 |