comparison test/testplatform.c @ 4215:d83830711a5b SDL-1.2

Fixed bug #615 Scott McCreary 2008-08-21 10:48:14 PDT This patch adds support for Haiku. http://ports.haiku-files.org/browser/haikuports/trunk/media-libs/libsdl/SDL-1.2.13-haiku.diff Haiku is an open-source recreation of BeOS. It has better POSIX compliance than beOS did, and other improved features, which in some cases causes us to have to "undo" previous BeOS workarounds. Here's our port log entry for it, showing the steps to force the changes into configure and Makefile: http://ports.haiku-files.org/wiki/media-libs/libsdl/1.2.13/1 Note that this was only tried on 1.2.13 stable so far. Haiku is using a newer config.guess / config.sub that doesn't yet seem to be in the released libtool, so we are having to copy it in for now. http://haiku-files.org/files/optional-packages/
author Sam Lantinga <slouken@libsdl.org>
date Mon, 21 Sep 2009 09:18:42 +0000
parents 7a4c511c980a
children
comparison
equal deleted inserted replaced
4214:4250beeb5ad1 4215:d83830711a5b
152 } 152 }
153 if ( verbose ) { 153 if ( verbose ) {
154 printf("This system is running %s\n", 154 printf("This system is running %s\n",
155 #if __AIX__ 155 #if __AIX__
156 "AIX" 156 "AIX"
157 #elif __HAIKU__
158 /* Haiku must appear here before BeOS, since it also defines __BEOS__ */
159 "Haiku"
157 #elif __BEOS__ 160 #elif __BEOS__
158 "BeOS" 161 "BeOS"
159 #elif __BSDI__ 162 #elif __BSDI__
160 "BSDI" 163 "BSDI"
161 #elif __DREAMCAST__ 164 #elif __DREAMCAST__
162 "Dreamcast" 165 "Dreamcast"
163 #elif __FREEBSD__ 166 #elif __FREEBSD__
164 "FreeBSD" 167 "FreeBSD"
165 #elif __HAIKU__
166 "Haiku"
167 #elif __HPUX__ 168 #elif __HPUX__
168 "HP-UX" 169 "HP-UX"
169 #elif __IRIX__ 170 #elif __IRIX__
170 "Irix" 171 "Irix"
171 #elif __LINUX__ 172 #elif __LINUX__