# HG changeset patch # User Sam Lantinga # Date 999645743 0 # Node ID 9427fb48592a4eef053b3e90f882332b60dbb464 # Parent 8039a5b760b956c1cc7ceb492b8d87ac3f3a3900 *** empty log message *** diff -r 8039a5b760b9 -r 9427fb48592a test/acinclude.m4 --- a/test/acinclude.m4 Tue Sep 04 23:21:20 2001 +0000 +++ b/test/acinclude.m4 Tue Sep 04 23:22:23 2001 +0000 @@ -58,6 +58,17 @@ dnl checks the results of sdl-config to some extent dnl rm -f conf.sdltest + case "$target" in + *-*-darwin*) + cp -r `$SDL_CONFIG --nib` . + dnl create an Info.plist file, unless one exists + if test -f Info.plist ; then + : + else + cp `$SDL_CONFIG --plist` . + fi + ;; + esac AC_TRY_RUN([ #include #include @@ -169,5 +180,11 @@ fi AC_SUBST(SDL_CFLAGS) AC_SUBST(SDL_LIBS) + case "$target" in + *-*-darwin*) + SDL_APPLE_CREATOR="????" + AC_SUBST(SDL_APPLE_CREATOR) + ;; + esac rm -f conf.sdltest ])