Mercurial > sdl-ios-xcode
annotate sdl-config.in @ 1746:a0ddae8b43cf
Disable the XRandR extension by default, since KDE maximizes windows which are larger than the new resolution, and then doesn't restore their size and positition when the old resolution is restored.
The extension can be enabled with the environment variable SDL_VIDEO_X11_XRANDR=1
author | Sam Lantinga <slouken@libsdl.org> |
---|---|
date | Sat, 29 Apr 2006 17:54:32 +0000 |
parents | 2af911d41a08 |
children | 21f13c787b46 |
rev | line source |
---|---|
0 | 1 #!/bin/sh |
2 | |
3 prefix=@prefix@ | |
4 exec_prefix=@exec_prefix@ | |
5 exec_prefix_set=no | |
6 | |
1647
2af911d41a08
Date: Thu, 20 Apr 2006 10:13:34 +0200
Sam Lantinga <slouken@libsdl.org>
parents:
1548
diff
changeset
|
7 @ENABLE_STATIC_FALSE@usage="\ |
2af911d41a08
Date: Thu, 20 Apr 2006 10:13:34 +0200
Sam Lantinga <slouken@libsdl.org>
parents:
1548
diff
changeset
|
8 @ENABLE_STATIC_FALSE@Usage: sdl-config [--prefix[=DIR]] [--exec-prefix[=DIR]] [--version] [--cflags] [--libs]" |
2af911d41a08
Date: Thu, 20 Apr 2006 10:13:34 +0200
Sam Lantinga <slouken@libsdl.org>
parents:
1548
diff
changeset
|
9 @ENABLE_STATIC_TRUE@usage="\ |
2af911d41a08
Date: Thu, 20 Apr 2006 10:13:34 +0200
Sam Lantinga <slouken@libsdl.org>
parents:
1548
diff
changeset
|
10 @ENABLE_STATIC_TRUE@Usage: sdl-config [--prefix[=DIR]] [--exec-prefix[=DIR]] [--version] [--cflags] [--libs] [--static-libs]" |
0 | 11 |
12 if test $# -eq 0; then | |
13 echo "${usage}" 1>&2 | |
14 exit 1 | |
15 fi | |
16 | |
17 while test $# -gt 0; do | |
18 case "$1" in | |
19 -*=*) optarg=`echo "$1" | sed 's/[-_a-zA-Z0-9]*=//'` ;; | |
20 *) optarg= ;; | |
21 esac | |
22 | |
23 case $1 in | |
24 --prefix=*) | |
25 prefix=$optarg | |
26 if test $exec_prefix_set = no ; then | |
27 exec_prefix=$optarg | |
28 fi | |
29 ;; | |
30 --prefix) | |
31 echo $prefix | |
32 ;; | |
33 --exec-prefix=*) | |
34 exec_prefix=$optarg | |
35 exec_prefix_set=yes | |
36 ;; | |
37 --exec-prefix) | |
38 echo $exec_prefix | |
39 ;; | |
40 --version) | |
41 echo @SDL_VERSION@ | |
42 ;; | |
43 --cflags) | |
490
7e53d17ec798
The portable way of including SDL is #include "SDL.h"
Sam Lantinga <slouken@libsdl.org>
parents:
296
diff
changeset
|
44 echo -I@includedir@/SDL @SDL_CFLAGS@ |
0 | 45 ;; |
46 @ENABLE_SHARED_TRUE@ --libs) | |
1548
a77c022733fe
EXTRA_LDFLAGS are the linker flags and libraries needed to build SDL.
Sam Lantinga <slouken@libsdl.org>
parents:
1361
diff
changeset
|
47 @ENABLE_SHARED_TRUE@ echo -L@libdir@ @SDL_RLD_FLAGS@ @SDL_LIBS@ |
0 | 48 @ENABLE_SHARED_TRUE@ ;; |
49 @ENABLE_STATIC_TRUE@@ENABLE_SHARED_TRUE@ --static-libs) | |
50 @ENABLE_STATIC_TRUE@@ENABLE_SHARED_FALSE@ --libs|--static-libs) | |
1548
a77c022733fe
EXTRA_LDFLAGS are the linker flags and libraries needed to build SDL.
Sam Lantinga <slouken@libsdl.org>
parents:
1361
diff
changeset
|
51 @ENABLE_STATIC_TRUE@ echo -L@libdir@ @SDL_RLD_FLAGS@ @SDL_STATIC_LIBS@ |
0 | 52 @ENABLE_STATIC_TRUE@ ;; |
53 *) | |
54 echo "${usage}" 1>&2 | |
55 exit 1 | |
56 ;; | |
57 esac | |
58 shift | |
59 done |