Mercurial > sdl-ios-xcode
annotate README.HG @ 5084:4c3c2599559b SDL-1.2
Fixed bug #1080
Markus Rathgeb 2011-01-23 14:34:23 PST
With kernel 2.6.31 the struct input_absinfo defined in linux/input.h changed.
A field "__s32 resolution" was added at the end of the struct.
Because the macro EVIOCGABS(abs) is using the struct input_absinfo, it would be
better (IMHO) to change the declaration of variable values to
"int values[sizeof(struct input_absinfo) / sizeof(int)];" or using "struct
input_absinfo" directly.
author | Sam Lantinga <slouken@libsdl.org> |
---|---|
date | Mon, 24 Jan 2011 14:31:32 -0800 |
parents | e5bdd0a79e5e |
children |
rev | line source |
---|---|
1652
dc219ba4cf45
Info on Subversion repository access.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
1 |
4422
e5bdd0a79e5e
Replaced README.SVN with Mercurial information, for 1.2 branch.
Ryan C. Gordon <icculus@icculus.org>
parents:
4146
diff
changeset
|
2 The latest development version of SDL is available via Mercurial. |
e5bdd0a79e5e
Replaced README.SVN with Mercurial information, for 1.2 branch.
Ryan C. Gordon <icculus@icculus.org>
parents:
4146
diff
changeset
|
3 Mercurial allows you to get up-to-the-minute fixes and enhancements; |
e5bdd0a79e5e
Replaced README.SVN with Mercurial information, for 1.2 branch.
Ryan C. Gordon <icculus@icculus.org>
parents:
4146
diff
changeset
|
4 as a developer works on a source tree, you can use "hg" to mirror that |
1652
dc219ba4cf45
Info on Subversion repository access.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
5 source tree instead of waiting for an official release. Please look |
4422
e5bdd0a79e5e
Replaced README.SVN with Mercurial information, for 1.2 branch.
Ryan C. Gordon <icculus@icculus.org>
parents:
4146
diff
changeset
|
6 at the Mercurial website ( http://mercurial.selenic.com/ ) for more |
e5bdd0a79e5e
Replaced README.SVN with Mercurial information, for 1.2 branch.
Ryan C. Gordon <icculus@icculus.org>
parents:
4146
diff
changeset
|
7 information on using hg, where you can also download software for |
e5bdd0a79e5e
Replaced README.SVN with Mercurial information, for 1.2 branch.
Ryan C. Gordon <icculus@icculus.org>
parents:
4146
diff
changeset
|
8 Mac OS X, Windows, and Unix systems. |
1652
dc219ba4cf45
Info on Subversion repository access.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
9 |
4422
e5bdd0a79e5e
Replaced README.SVN with Mercurial information, for 1.2 branch.
Ryan C. Gordon <icculus@icculus.org>
parents:
4146
diff
changeset
|
10 hg clone -u SDL-1.2 http://hg.libsdl.org/SDL |
1652
dc219ba4cf45
Info on Subversion repository access.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
11 |
1759
724cca1bda2d
Added instructions for copying SDL_config.h
Sam Lantinga <slouken@libsdl.org>
parents:
1652
diff
changeset
|
12 If you are building SDL with an IDE, you will need to copy the file |
724cca1bda2d
Added instructions for copying SDL_config.h
Sam Lantinga <slouken@libsdl.org>
parents:
1652
diff
changeset
|
13 include/SDL_config.h.default to include/SDL_config.h before building. |
1652
dc219ba4cf45
Info on Subversion repository access.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
14 |
1759
724cca1bda2d
Added instructions for copying SDL_config.h
Sam Lantinga <slouken@libsdl.org>
parents:
1652
diff
changeset
|
15 If you are building SDL via configure, you will need to run autogen.sh |
724cca1bda2d
Added instructions for copying SDL_config.h
Sam Lantinga <slouken@libsdl.org>
parents:
1652
diff
changeset
|
16 before running configure. |
1652
dc219ba4cf45
Info on Subversion repository access.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
17 |
1759
724cca1bda2d
Added instructions for copying SDL_config.h
Sam Lantinga <slouken@libsdl.org>
parents:
1652
diff
changeset
|
18 There is a web interface to the subversion repository at: |
4422
e5bdd0a79e5e
Replaced README.SVN with Mercurial information, for 1.2 branch.
Ryan C. Gordon <icculus@icculus.org>
parents:
4146
diff
changeset
|
19 http://hg.libsdl.org/SDL/ |
1759
724cca1bda2d
Added instructions for copying SDL_config.h
Sam Lantinga <slouken@libsdl.org>
parents:
1652
diff
changeset
|
20 |
4146
dc726b233f5f
Merged r3674:3675 from trunk: comment in README about svn RSS feed.
Ryan C. Gordon <icculus@icculus.org>
parents:
4041
diff
changeset
|
21 There is an RSS feed available at that URL, for those that want to |
dc726b233f5f
Merged r3674:3675 from trunk: comment in README about svn RSS feed.
Ryan C. Gordon <icculus@icculus.org>
parents:
4041
diff
changeset
|
22 track commits in real time. |
dc726b233f5f
Merged r3674:3675 from trunk: comment in README about svn RSS feed.
Ryan C. Gordon <icculus@icculus.org>
parents:
4041
diff
changeset
|
23 |