Mercurial > sdl-ios-xcode
comparison configure.in @ 873:89666943c598
Date: Sun, 07 Mar 2004 22:54:11 +0900
From: Hayashi Naoyuki
Subject: Tru64 cdrom and pthread option fix
SDL-1.2.7/src/cdrom/osf/SDL_syscdrom.c Fixes
Some CD-ROM drives(ex. TEAC CD-532E) cannot play
first 150 frames(aka gap).
CheckDrive() fix.
The end of comment is "* /" in AddDrive().
SDL-1.2.7/configure.in Fixes
Add *-*-osf pthread option and
delete line SDL_LIBS="$SDL_LIBS -lrt".
author | Sam Lantinga <slouken@libsdl.org> |
---|---|
date | Sun, 07 Mar 2004 16:40:15 +0000 |
parents | e805075f6d94 |
children | 20d3a599f601 |
comparison
equal
deleted
inserted
replaced
872:e7be95d758e8 | 873:89666943c598 |
---|---|
1215 ;; | 1215 ;; |
1216 *-*-qnx*) | 1216 *-*-qnx*) |
1217 pthread_cflags="" | 1217 pthread_cflags="" |
1218 pthread_lib="" | 1218 pthread_lib="" |
1219 ;; | 1219 ;; |
1220 *-*-osf*) | |
1221 if test x$ac_cv_prog_gcc = xyes; then | |
1222 pthread_cflags="-D_REENTRANT" | |
1223 pthread_lib="-lpthread -lrt" | |
1224 else | |
1225 pthread_cflags="-pthread" | |
1226 pthread_lib="-lpthread -lrt" | |
1227 fi | |
1228 ;; | |
1220 *) | 1229 *) |
1221 pthread_cflags="-D_REENTRANT" | 1230 pthread_cflags="-D_REENTRANT" |
1222 pthread_lib="-lpthread" | 1231 pthread_lib="-lpthread" |
1223 ;; | 1232 ;; |
1224 esac | 1233 esac |
2266 CheckGGI | 2275 CheckGGI |
2267 CheckAAlib | 2276 CheckAAlib |
2268 CheckOpenGL | 2277 CheckOpenGL |
2269 CheckPTHREAD | 2278 CheckPTHREAD |
2270 CheckSIGACTION | 2279 CheckSIGACTION |
2271 SDL_LIBS="$SDL_LIBS -lrt" | |
2272 # Set up files for the audio library | 2280 # Set up files for the audio library |
2273 if test x$enable_audio = xyes; then | 2281 if test x$enable_audio = xyes; then |
2274 CFLAGS="$CFLAGS -I/usr/include/mme -DMMEAUDIO_SUPPORT" | 2282 CFLAGS="$CFLAGS -I/usr/include/mme -DMMEAUDIO_SUPPORT" |
2275 SYSTEM_LIBS="$SYSTEM_LIBS -lmme" | 2283 SYSTEM_LIBS="$SYSTEM_LIBS -lmme" |
2276 AUDIO_SUBDIRS="$AUDIO_SUBDIRS mme" | 2284 AUDIO_SUBDIRS="$AUDIO_SUBDIRS mme" |