annotate src/main/macosx/Info.plist.in @ 1157:baf35853ad54

Date: Mon, 10 Oct 2005 13:09:32 +0300 From: Tommi Kyntola <tommi.kyntola@ray.fi> To: sdl@libsdl.org Subject: [SDL] [RFC] get_ticks broken on linux It uses gettimeofday to calculate the timedifference. Gettimeofday returns current time which is seldom monotonous. This breaks SDL timer subsystem. (time callbacks and all that get borked when the time difference ms is suddenly ~ 2^32) I posted a message about this earlier but got no response. Some thoughts on this matter would be appreciated. (Or even an explanation for the lack of interest.) A patch below would use the posix timers that have been around since posix 93 and do provide a good source of monotonous time on linux boxes (and on few others too). The following patch is also availabe at: http://www.hut.fi/u/tkyntola/SDL-1.2.9-clockfix.patch It's against 1.2.9, but I can easily rediffit against the cvs branch is needed. cheers, Tommi Kyntola tommi.kyntola@ray.fi
author Ryan C. Gordon <icculus@icculus.org>
date Tue, 11 Oct 2005 18:16:12 +0000
parents ba9e0fcc2ae2
children
rev   line source
176
c9bc7f33d56f *** empty log message ***
Sam Lantinga <slouken@libsdl.org>
parents:
diff changeset
1 <?xml version="1.0" encoding="UTF-8"?>
c9bc7f33d56f *** empty log message ***
Sam Lantinga <slouken@libsdl.org>
parents:
diff changeset
2 <!DOCTYPE plist SYSTEM "file://localhost/System/Library/DTDs/PropertyList.dtd">
c9bc7f33d56f *** empty log message ***
Sam Lantinga <slouken@libsdl.org>
parents:
diff changeset
3 <plist version="0.9">
c9bc7f33d56f *** empty log message ***
Sam Lantinga <slouken@libsdl.org>
parents:
diff changeset
4 <dict>
c9bc7f33d56f *** empty log message ***
Sam Lantinga <slouken@libsdl.org>
parents:
diff changeset
5 <key>CFBundleDevelopmentRegion</key>
c9bc7f33d56f *** empty log message ***
Sam Lantinga <slouken@libsdl.org>
parents:
diff changeset
6 <string>English</string>
c9bc7f33d56f *** empty log message ***
Sam Lantinga <slouken@libsdl.org>
parents:
diff changeset
7 <key>CFBundleExecutable</key>
c9bc7f33d56f *** empty log message ***
Sam Lantinga <slouken@libsdl.org>
parents:
diff changeset
8 <string>@EXECUTABLE_NAME@</string>
c9bc7f33d56f *** empty log message ***
Sam Lantinga <slouken@libsdl.org>
parents:
diff changeset
9 <key>CFBundleInfoDictionaryVersion</key>
c9bc7f33d56f *** empty log message ***
Sam Lantinga <slouken@libsdl.org>
parents:
diff changeset
10 <string>6.0</string>
c9bc7f33d56f *** empty log message ***
Sam Lantinga <slouken@libsdl.org>
parents:
diff changeset
11 <key>CFBundleName</key>
c9bc7f33d56f *** empty log message ***
Sam Lantinga <slouken@libsdl.org>
parents:
diff changeset
12 <string>@PACKAGE@</string>
c9bc7f33d56f *** empty log message ***
Sam Lantinga <slouken@libsdl.org>
parents:
diff changeset
13 <key>CFBundlePackageType</key>
c9bc7f33d56f *** empty log message ***
Sam Lantinga <slouken@libsdl.org>
parents:
diff changeset
14 <string>APPL</string>
c9bc7f33d56f *** empty log message ***
Sam Lantinga <slouken@libsdl.org>
parents:
diff changeset
15 <key>CFBundleShortVersionString</key>
c9bc7f33d56f *** empty log message ***
Sam Lantinga <slouken@libsdl.org>
parents:
diff changeset
16 <string>@VERSION@</string>
c9bc7f33d56f *** empty log message ***
Sam Lantinga <slouken@libsdl.org>
parents:
diff changeset
17 <key>CFBundleSignature</key>
c9bc7f33d56f *** empty log message ***
Sam Lantinga <slouken@libsdl.org>
parents:
diff changeset
18 <string>????</string>
c9bc7f33d56f *** empty log message ***
Sam Lantinga <slouken@libsdl.org>
parents:
diff changeset
19 <key>NSMainNibFile</key>
194
ba9e0fcc2ae2 Oops, back out that SDL_main -> SDLMain conversion
Sam Lantinga <slouken@libsdl.org>
parents: 191
diff changeset
20 <string>SDLMain.nib</string>
176
c9bc7f33d56f *** empty log message ***
Sam Lantinga <slouken@libsdl.org>
parents:
diff changeset
21 <key>NSPrincipalClass</key>
c9bc7f33d56f *** empty log message ***
Sam Lantinga <slouken@libsdl.org>
parents:
diff changeset
22 <string>NSApplication</string>
c9bc7f33d56f *** empty log message ***
Sam Lantinga <slouken@libsdl.org>
parents:
diff changeset
23 </dict>
c9bc7f33d56f *** empty log message ***
Sam Lantinga <slouken@libsdl.org>
parents:
diff changeset
24 </plist>