diff options
author | Guenter Bartsch <guenter@users.sourceforge.net> | 2001-10-14 16:26:32 +0000 |
---|---|---|
committer | Guenter Bartsch <guenter@users.sourceforge.net> | 2001-10-14 16:26:32 +0000 |
commit | beb35f4eb78812d18c5e2f36081c33b0bcdfbb69 (patch) | |
tree | 7882e7c40c9b6aa960fba1acdca0f9289c189d99 | |
parent | 2016ca41e23e23ff600f11f6c781b705bc680665 (diff) | |
download | xine-lib-beb35f4eb78812d18c5e2f36081c33b0bcdfbb69.tar.gz xine-lib-beb35f4eb78812d18c5e2f36081c33b0bcdfbb69.tar.bz2 |
ia64 and s390 support (unfinished), contributed by Stefan Reinauer <stepan@suse.de>
CVS patchset: 801
CVS date: 2001/10/14 16:26:32
-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 |