diff options
author | Siggi Langauf <siggi@users.sourceforge.net> | 2001-11-03 20:34:59 +0000 |
---|---|---|
committer | Siggi Langauf <siggi@users.sourceforge.net> | 2001-11-03 20:34:59 +0000 |
commit | 928607122b42ed0a5504b802d040c3093206676d (patch) | |
tree | b5a7668c8bae34c7f3f620f509d1e29ae8d812a1 | |
parent | 7a691152f632c86a0bdee47768cab6affeaaaf69 (diff) | |
download | xine-lib-928607122b42ed0a5504b802d040c3093206676d.tar.gz xine-lib-928607122b42ed0a5504b802d040c3093206676d.tar.bz2 |
Added a default to the architecture switch, so people are encouraged to try
porting and report useful portability bugs (instead of "configure says I'm
not supported :-(")
CVS patchset: 941
CVS date: 2001/11/03 20:34:59
-rw-r--r-- | configure.in | 18 |
1 files changed, 17 insertions, 1 deletions
diff --git a/configure.in b/configure.in index 504450d65..4bbcc42ad 100644 --- a/configure.in +++ b/configure.in @@ -597,8 +597,24 @@ case "$host_or_hostalias" in ;; *) + echo + echo "****************************** WARNING ******************************" + echo echo "Host type '$host' ($host_alias) is currently not supported by xine" - exit 1 + echo + echo "Assuming that -O3 makes the compiler produce useful code." + echo + echo "You might experience problems with this, so please report your" + echo "architecture and, if possible, known good optimization flags for" + echo "your compiler to <xine-devel@lists.sf.net>"\! + echo + echo "*********************************************************************" + echo "(sleeping one minute so you can read this...)" + sleep 60 + + GLOBAL_CFLAGS="$GLOBAL_CFLAGS -O3" + DEBUG_CFLAGS="$DEBUG_CFLAGS -O" + AC_DEFINE(FPM_DEFAULT) ;; esac |