Mercurial > sdl-ios-xcode
annotate configure.in @ 3696:47d923feedb0
Fixed bug #935
Patrice Mandin
Hello,
I originally added pth support for threads in SDL 1.2 because on the Atari
platform we did not have any thread library.
I think pth support could be removed from SDL 1.3 for two reasons:
- Atari platform removed
- pth does not provides real (preemptive) threads, because it is user space,
and expect the application to call one of its function to give CPU to another
thread. So it is not exactly useful for applications, that expect threads to
run simultaneously.
author | Sam Lantinga <slouken@libsdl.org> |
---|---|
date | Sun, 24 Jan 2010 20:47:20 +0000 |
parents | be6fe5f0b1db |
children | 1bceff8f008f |
rev | line source |
---|---|
0 | 1 dnl Process this file with autoconf to produce a configure script. |
2 AC_INIT(README) | |
1341
d02b552e5304
Configure dynamically generates SDL_config.h
Sam Lantinga <slouken@libsdl.org>
parents:
1330
diff
changeset
|
3 AC_CONFIG_HEADER(include/SDL_config.h) |
1353
7ba544e2888d
Started the process of improving configure support, and merging C types
Sam Lantinga <slouken@libsdl.org>
parents:
1352
diff
changeset
|
4 AC_GNU_SOURCE |
3085
4800979de337
Updated libtool from version 1.5.22 to 2.2.6a, so it works on current QNX
Sam Lantinga <slouken@libsdl.org>
parents:
3083
diff
changeset
|
5 AC_CONFIG_AUX_DIRS($srcdir/build-scripts) |
0 | 6 |
3382
294fb5e6f301
A better solution to making the default build optimization -O3
Sam Lantinga <slouken@libsdl.org>
parents:
3372
diff
changeset
|
7 dnl Save the CFLAGS to see whether they were passed in or generated |
294fb5e6f301
A better solution to making the default build optimization -O3
Sam Lantinga <slouken@libsdl.org>
parents:
3372
diff
changeset
|
8 orig_CFLAGS="$CFLAGS" |
294fb5e6f301
A better solution to making the default build optimization -O3
Sam Lantinga <slouken@libsdl.org>
parents:
3372
diff
changeset
|
9 |
0 | 10 dnl Set various version strings - taken gratefully from the GTk sources |
11 # | |
12 # Making releases: | |
13 # Edit include/SDL/SDL_version.h and change the version, then: | |
14 # SDL_MICRO_VERSION += 1; | |
15 # SDL_INTERFACE_AGE += 1; | |
16 # SDL_BINARY_AGE += 1; | |
17 # if any functions have been added, set SDL_INTERFACE_AGE to 0. | |
18 # if backwards compatibility has been broken, | |
19 # set SDL_BINARY_AGE and SDL_INTERFACE_AGE to 0. | |
20 # | |
21 SDL_MAJOR_VERSION=1 | |
1895
c121d94672cb
SDL 1.2 is moving to a branch, and SDL 1.3 is becoming the head.
Sam Lantinga <slouken@libsdl.org>
parents:
1891
diff
changeset
|
22 SDL_MINOR_VERSION=3 |
c121d94672cb
SDL 1.2 is moving to a branch, and SDL 1.3 is becoming the head.
Sam Lantinga <slouken@libsdl.org>
parents:
1891
diff
changeset
|
23 SDL_MICRO_VERSION=0 |
1886
44635227a939
Updated the version to 1.2.11
Sam Lantinga <slouken@libsdl.org>
parents:
1879
diff
changeset
|
24 SDL_INTERFACE_AGE=0 |
1895
c121d94672cb
SDL 1.2 is moving to a branch, and SDL 1.3 is becoming the head.
Sam Lantinga <slouken@libsdl.org>
parents:
1891
diff
changeset
|
25 SDL_BINARY_AGE=0 |
0 | 26 SDL_VERSION=$SDL_MAJOR_VERSION.$SDL_MINOR_VERSION.$SDL_MICRO_VERSION |
27 | |
28 AC_SUBST(SDL_MAJOR_VERSION) | |
29 AC_SUBST(SDL_MINOR_VERSION) | |
30 AC_SUBST(SDL_MICRO_VERSION) | |
31 AC_SUBST(SDL_INTERFACE_AGE) | |
32 AC_SUBST(SDL_BINARY_AGE) | |
33 AC_SUBST(SDL_VERSION) | |
34 | |
35 # libtool versioning | |
3085
4800979de337
Updated libtool from version 1.5.22 to 2.2.6a, so it works on current QNX
Sam Lantinga <slouken@libsdl.org>
parents:
3083
diff
changeset
|
36 LT_INIT([win32-dll]) |
4800979de337
Updated libtool from version 1.5.22 to 2.2.6a, so it works on current QNX
Sam Lantinga <slouken@libsdl.org>
parents:
3083
diff
changeset
|
37 |
0 | 38 LT_RELEASE=$SDL_MAJOR_VERSION.$SDL_MINOR_VERSION |
39 LT_CURRENT=`expr $SDL_MICRO_VERSION - $SDL_INTERFACE_AGE` | |
40 LT_REVISION=$SDL_INTERFACE_AGE | |
41 LT_AGE=`expr $SDL_BINARY_AGE - $SDL_INTERFACE_AGE` | |
3368 | 42 m4_pattern_allow([^LT_]) |
0 | 43 |
44 AC_SUBST(LT_RELEASE) | |
45 AC_SUBST(LT_CURRENT) | |
46 AC_SUBST(LT_REVISION) | |
47 AC_SUBST(LT_AGE) | |
48 | |
1550 | 49 dnl Detect the canonical build and host environments |
3368 | 50 dnl AC_CANONICAL_HOST |
0 | 51 |
3332
da1cb54d74ef
You should check for the C compiler before you set CFLAGS. :)
Sam Lantinga <slouken@libsdl.org>
parents:
3307
diff
changeset
|
52 dnl Check for tools |
da1cb54d74ef
You should check for the C compiler before you set CFLAGS. :)
Sam Lantinga <slouken@libsdl.org>
parents:
3307
diff
changeset
|
53 AC_PROG_LIBTOOL |
da1cb54d74ef
You should check for the C compiler before you set CFLAGS. :)
Sam Lantinga <slouken@libsdl.org>
parents:
3307
diff
changeset
|
54 AC_PROG_CC |
da1cb54d74ef
You should check for the C compiler before you set CFLAGS. :)
Sam Lantinga <slouken@libsdl.org>
parents:
3307
diff
changeset
|
55 AC_PROG_CXX |
da1cb54d74ef
You should check for the C compiler before you set CFLAGS. :)
Sam Lantinga <slouken@libsdl.org>
parents:
3307
diff
changeset
|
56 AC_PROG_INSTALL |
da1cb54d74ef
You should check for the C compiler before you set CFLAGS. :)
Sam Lantinga <slouken@libsdl.org>
parents:
3307
diff
changeset
|
57 AC_PROG_MAKE_SET |
da1cb54d74ef
You should check for the C compiler before you set CFLAGS. :)
Sam Lantinga <slouken@libsdl.org>
parents:
3307
diff
changeset
|
58 if test -z "$host_alias"; then |
da1cb54d74ef
You should check for the C compiler before you set CFLAGS. :)
Sam Lantinga <slouken@libsdl.org>
parents:
3307
diff
changeset
|
59 hostaliaswindres= |
da1cb54d74ef
You should check for the C compiler before you set CFLAGS. :)
Sam Lantinga <slouken@libsdl.org>
parents:
3307
diff
changeset
|
60 else |
da1cb54d74ef
You should check for the C compiler before you set CFLAGS. :)
Sam Lantinga <slouken@libsdl.org>
parents:
3307
diff
changeset
|
61 hostaliaswindres="$host_alias-windres" |
da1cb54d74ef
You should check for the C compiler before you set CFLAGS. :)
Sam Lantinga <slouken@libsdl.org>
parents:
3307
diff
changeset
|
62 fi |
da1cb54d74ef
You should check for the C compiler before you set CFLAGS. :)
Sam Lantinga <slouken@libsdl.org>
parents:
3307
diff
changeset
|
63 AC_CHECK_PROGS(WINDRES, [windres $hostaliaswindres $host_os-windres]) |
da1cb54d74ef
You should check for the C compiler before you set CFLAGS. :)
Sam Lantinga <slouken@libsdl.org>
parents:
3307
diff
changeset
|
64 |
1389
ce65f014190a
Fixed X11 library detection
Sam Lantinga <slouken@libsdl.org>
parents:
1384
diff
changeset
|
65 dnl Set up the compiler and linker flags |
1571
0160eb7cccee
Add /usr/local to the build paths by default
Sam Lantinga <slouken@libsdl.org>
parents:
1569
diff
changeset
|
66 INCLUDE="-I$srcdir/include" |
1373
04499d3e1b6b
*** empty log message ***
Sam Lantinga <slouken@libsdl.org>
parents:
1370
diff
changeset
|
67 if test x$srcdir != x.; then |
1742
af4352da64d8
Fixed bug #206, fatbuild.sh works flawlessly on Intel Macs
Sam Lantinga <slouken@libsdl.org>
parents:
1648
diff
changeset
|
68 # Remove SDL_config.h from the source directory, since it's the |
af4352da64d8
Fixed bug #206, fatbuild.sh works flawlessly on Intel Macs
Sam Lantinga <slouken@libsdl.org>
parents:
1648
diff
changeset
|
69 # default one, and we want to include the one that we generate. |
af4352da64d8
Fixed bug #206, fatbuild.sh works flawlessly on Intel Macs
Sam Lantinga <slouken@libsdl.org>
parents:
1648
diff
changeset
|
70 if test -f $srcdir/include/SDL_config.h; then |
af4352da64d8
Fixed bug #206, fatbuild.sh works flawlessly on Intel Macs
Sam Lantinga <slouken@libsdl.org>
parents:
1648
diff
changeset
|
71 rm $srcdir/include/SDL_config.h |
af4352da64d8
Fixed bug #206, fatbuild.sh works flawlessly on Intel Macs
Sam Lantinga <slouken@libsdl.org>
parents:
1648
diff
changeset
|
72 fi |
1571
0160eb7cccee
Add /usr/local to the build paths by default
Sam Lantinga <slouken@libsdl.org>
parents:
1569
diff
changeset
|
73 INCLUDE="-Iinclude $INCLUDE" |
1373
04499d3e1b6b
*** empty log message ***
Sam Lantinga <slouken@libsdl.org>
parents:
1370
diff
changeset
|
74 fi |
1550 | 75 case "$host" in |
1389
ce65f014190a
Fixed X11 library detection
Sam Lantinga <slouken@libsdl.org>
parents:
1384
diff
changeset
|
76 *-*-cygwin*) |
ce65f014190a
Fixed X11 library detection
Sam Lantinga <slouken@libsdl.org>
parents:
1384
diff
changeset
|
77 # We build SDL on cygwin without the UNIX emulation layer |
1521
9b9212e4810c
CFLAGS are separate from EXTRA_CFLAGS
Sam Lantinga <slouken@libsdl.org>
parents:
1520
diff
changeset
|
78 BASE_CFLAGS="-I/usr/include/mingw -mno-cygwin" |
9b9212e4810c
CFLAGS are separate from EXTRA_CFLAGS
Sam Lantinga <slouken@libsdl.org>
parents:
1520
diff
changeset
|
79 BASE_LDFLAGS="-mno-cygwin" |
1389
ce65f014190a
Fixed X11 library detection
Sam Lantinga <slouken@libsdl.org>
parents:
1384
diff
changeset
|
80 ;; |
ce65f014190a
Fixed X11 library detection
Sam Lantinga <slouken@libsdl.org>
parents:
1384
diff
changeset
|
81 *) |
3604 | 82 BASE_CFLAGS="" |
1521
9b9212e4810c
CFLAGS are separate from EXTRA_CFLAGS
Sam Lantinga <slouken@libsdl.org>
parents:
1520
diff
changeset
|
83 BASE_LDFLAGS="" |
1389
ce65f014190a
Fixed X11 library detection
Sam Lantinga <slouken@libsdl.org>
parents:
1384
diff
changeset
|
84 ;; |
ce65f014190a
Fixed X11 library detection
Sam Lantinga <slouken@libsdl.org>
parents:
1384
diff
changeset
|
85 esac |
1648
9f59d4c5aaea
Mac OS X fat build works! :)
Sam Lantinga <slouken@libsdl.org>
parents:
1640
diff
changeset
|
86 BUILD_CFLAGS="$CFLAGS $CPPFLAGS" |
3382
294fb5e6f301
A better solution to making the default build optimization -O3
Sam Lantinga <slouken@libsdl.org>
parents:
3372
diff
changeset
|
87 # The default optimization for SDL 1.3 is -O3 (Bug #31) |
294fb5e6f301
A better solution to making the default build optimization -O3
Sam Lantinga <slouken@libsdl.org>
parents:
3372
diff
changeset
|
88 if test x$orig_CFLAGS = x; then |
294fb5e6f301
A better solution to making the default build optimization -O3
Sam Lantinga <slouken@libsdl.org>
parents:
3372
diff
changeset
|
89 BUILD_CFLAGS=`echo $BUILD_CFLAGS | sed 's/-O2/-O3/'` |
294fb5e6f301
A better solution to making the default build optimization -O3
Sam Lantinga <slouken@libsdl.org>
parents:
3372
diff
changeset
|
90 fi |
1521
9b9212e4810c
CFLAGS are separate from EXTRA_CFLAGS
Sam Lantinga <slouken@libsdl.org>
parents:
1520
diff
changeset
|
91 EXTRA_CFLAGS="$INCLUDE $BASE_CFLAGS" |
9b9212e4810c
CFLAGS are separate from EXTRA_CFLAGS
Sam Lantinga <slouken@libsdl.org>
parents:
1520
diff
changeset
|
92 BUILD_LDFLAGS="$LDFLAGS" |
9b9212e4810c
CFLAGS are separate from EXTRA_CFLAGS
Sam Lantinga <slouken@libsdl.org>
parents:
1520
diff
changeset
|
93 EXTRA_LDFLAGS="$BASE_LDFLAGS" |
2163
5f96cf74b782
NAS dynamic loading is going to be have to looked at... *sigh*
Sam Lantinga <slouken@libsdl.org>
parents:
2158
diff
changeset
|
94 ## These are common directories to find software packages |
5f96cf74b782
NAS dynamic loading is going to be have to looked at... *sigh*
Sam Lantinga <slouken@libsdl.org>
parents:
2158
diff
changeset
|
95 #for path in /usr/freeware /usr/pkg /usr/X11R6 /usr/local; do |
1823
d2b0f8b18ab8
Whoops, need a space after dnl to make it meaningful. :)
Sam Lantinga <slouken@libsdl.org>
parents:
1822
diff
changeset
|
96 # if test -d $path/include; then |
d2b0f8b18ab8
Whoops, need a space after dnl to make it meaningful. :)
Sam Lantinga <slouken@libsdl.org>
parents:
1822
diff
changeset
|
97 # EXTRA_CFLAGS="$EXTRA_CFLAGS -I$path/include" |
d2b0f8b18ab8
Whoops, need a space after dnl to make it meaningful. :)
Sam Lantinga <slouken@libsdl.org>
parents:
1822
diff
changeset
|
98 # fi |
d2b0f8b18ab8
Whoops, need a space after dnl to make it meaningful. :)
Sam Lantinga <slouken@libsdl.org>
parents:
1822
diff
changeset
|
99 # if test -d $path/lib; then |
d2b0f8b18ab8
Whoops, need a space after dnl to make it meaningful. :)
Sam Lantinga <slouken@libsdl.org>
parents:
1822
diff
changeset
|
100 # EXTRA_LDFLAGS="$EXTRA_LDFLAGS -L$path/lib" |
d2b0f8b18ab8
Whoops, need a space after dnl to make it meaningful. :)
Sam Lantinga <slouken@libsdl.org>
parents:
1822
diff
changeset
|
101 # fi |
d2b0f8b18ab8
Whoops, need a space after dnl to make it meaningful. :)
Sam Lantinga <slouken@libsdl.org>
parents:
1822
diff
changeset
|
102 #done |
1521
9b9212e4810c
CFLAGS are separate from EXTRA_CFLAGS
Sam Lantinga <slouken@libsdl.org>
parents:
1520
diff
changeset
|
103 SDL_CFLAGS="$BASE_CFLAGS" |
9b9212e4810c
CFLAGS are separate from EXTRA_CFLAGS
Sam Lantinga <slouken@libsdl.org>
parents:
1520
diff
changeset
|
104 SDL_LIBS="-lSDL $BASE_LDFLAGS" |
9b9212e4810c
CFLAGS are separate from EXTRA_CFLAGS
Sam Lantinga <slouken@libsdl.org>
parents:
1520
diff
changeset
|
105 CPPFLAGS="$CPPFLAGS $EXTRA_CFLAGS" |
9b9212e4810c
CFLAGS are separate from EXTRA_CFLAGS
Sam Lantinga <slouken@libsdl.org>
parents:
1520
diff
changeset
|
106 CFLAGS="$CFLAGS $EXTRA_CFLAGS" |
9b9212e4810c
CFLAGS are separate from EXTRA_CFLAGS
Sam Lantinga <slouken@libsdl.org>
parents:
1520
diff
changeset
|
107 LDFLAGS="$LDFLAGS $EXTRA_LDFLAGS" |
1373
04499d3e1b6b
*** empty log message ***
Sam Lantinga <slouken@libsdl.org>
parents:
1370
diff
changeset
|
108 |
3391
188fc5ecc58c
Simplify and improve dynamic library detection, taken from SDL_image
Sam Lantinga <slouken@libsdl.org>
parents:
3390
diff
changeset
|
109 dnl set this to use on systems that use lib64 instead of lib |
188fc5ecc58c
Simplify and improve dynamic library detection, taken from SDL_image
Sam Lantinga <slouken@libsdl.org>
parents:
3390
diff
changeset
|
110 base_libdir=`echo \${libdir} | sed 's/.*\/\(.*\)/\1/; q'` |
188fc5ecc58c
Simplify and improve dynamic library detection, taken from SDL_image
Sam Lantinga <slouken@libsdl.org>
parents:
3390
diff
changeset
|
111 |
188fc5ecc58c
Simplify and improve dynamic library detection, taken from SDL_image
Sam Lantinga <slouken@libsdl.org>
parents:
3390
diff
changeset
|
112 dnl Function to find a library in the compiler search path |
188fc5ecc58c
Simplify and improve dynamic library detection, taken from SDL_image
Sam Lantinga <slouken@libsdl.org>
parents:
3390
diff
changeset
|
113 find_lib() |
188fc5ecc58c
Simplify and improve dynamic library detection, taken from SDL_image
Sam Lantinga <slouken@libsdl.org>
parents:
3390
diff
changeset
|
114 { |
188fc5ecc58c
Simplify and improve dynamic library detection, taken from SDL_image
Sam Lantinga <slouken@libsdl.org>
parents:
3390
diff
changeset
|
115 gcc_bin_path=[`$CC -print-search-dirs 2>/dev/null | fgrep programs: | sed 's/[^=]*=\(.*\)/\1/' | sed 's/:/ /g'`] |
188fc5ecc58c
Simplify and improve dynamic library detection, taken from SDL_image
Sam Lantinga <slouken@libsdl.org>
parents:
3390
diff
changeset
|
116 gcc_lib_path=[`$CC -print-search-dirs 2>/dev/null | fgrep libraries: | sed 's/[^=]*=\(.*\)/\1/' | sed 's/:/ /g'`] |
188fc5ecc58c
Simplify and improve dynamic library detection, taken from SDL_image
Sam Lantinga <slouken@libsdl.org>
parents:
3390
diff
changeset
|
117 env_lib_path=[`echo $LIBS $LDFLAGS $* | sed 's/-L[ ]*//g'`] |
188fc5ecc58c
Simplify and improve dynamic library detection, taken from SDL_image
Sam Lantinga <slouken@libsdl.org>
parents:
3390
diff
changeset
|
118 if test "$cross_compiling" = yes; then |
188fc5ecc58c
Simplify and improve dynamic library detection, taken from SDL_image
Sam Lantinga <slouken@libsdl.org>
parents:
3390
diff
changeset
|
119 host_lib_path="" |
188fc5ecc58c
Simplify and improve dynamic library detection, taken from SDL_image
Sam Lantinga <slouken@libsdl.org>
parents:
3390
diff
changeset
|
120 else |
188fc5ecc58c
Simplify and improve dynamic library detection, taken from SDL_image
Sam Lantinga <slouken@libsdl.org>
parents:
3390
diff
changeset
|
121 host_lib_path="/usr/$base_libdir /usr/local/$base_libdir" |
188fc5ecc58c
Simplify and improve dynamic library detection, taken from SDL_image
Sam Lantinga <slouken@libsdl.org>
parents:
3390
diff
changeset
|
122 fi |
188fc5ecc58c
Simplify and improve dynamic library detection, taken from SDL_image
Sam Lantinga <slouken@libsdl.org>
parents:
3390
diff
changeset
|
123 for path in $gcc_bin_path $gcc_lib_path $env_lib_path $host_lib_path; do |
188fc5ecc58c
Simplify and improve dynamic library detection, taken from SDL_image
Sam Lantinga <slouken@libsdl.org>
parents:
3390
diff
changeset
|
124 lib=[`ls -- $path/$1 2>/dev/null | sort | sed 's/.*\/\(.*\)/\1/; q'`] |
188fc5ecc58c
Simplify and improve dynamic library detection, taken from SDL_image
Sam Lantinga <slouken@libsdl.org>
parents:
3390
diff
changeset
|
125 if test x$lib != x; then |
188fc5ecc58c
Simplify and improve dynamic library detection, taken from SDL_image
Sam Lantinga <slouken@libsdl.org>
parents:
3390
diff
changeset
|
126 echo $lib |
188fc5ecc58c
Simplify and improve dynamic library detection, taken from SDL_image
Sam Lantinga <slouken@libsdl.org>
parents:
3390
diff
changeset
|
127 return |
188fc5ecc58c
Simplify and improve dynamic library detection, taken from SDL_image
Sam Lantinga <slouken@libsdl.org>
parents:
3390
diff
changeset
|
128 fi |
188fc5ecc58c
Simplify and improve dynamic library detection, taken from SDL_image
Sam Lantinga <slouken@libsdl.org>
parents:
3390
diff
changeset
|
129 done |
188fc5ecc58c
Simplify and improve dynamic library detection, taken from SDL_image
Sam Lantinga <slouken@libsdl.org>
parents:
3390
diff
changeset
|
130 } |
188fc5ecc58c
Simplify and improve dynamic library detection, taken from SDL_image
Sam Lantinga <slouken@libsdl.org>
parents:
3390
diff
changeset
|
131 |
1353
7ba544e2888d
Started the process of improving configure support, and merging C types
Sam Lantinga <slouken@libsdl.org>
parents:
1352
diff
changeset
|
132 dnl Check for compiler characteristics |
1341
d02b552e5304
Configure dynamically generates SDL_config.h
Sam Lantinga <slouken@libsdl.org>
parents:
1330
diff
changeset
|
133 AC_C_CONST |
d02b552e5304
Configure dynamically generates SDL_config.h
Sam Lantinga <slouken@libsdl.org>
parents:
1330
diff
changeset
|
134 AC_C_INLINE |
1353
7ba544e2888d
Started the process of improving configure support, and merging C types
Sam Lantinga <slouken@libsdl.org>
parents:
1352
diff
changeset
|
135 AC_C_VOLATILE |
7ba544e2888d
Started the process of improving configure support, and merging C types
Sam Lantinga <slouken@libsdl.org>
parents:
1352
diff
changeset
|
136 |
3647
c5925cd41955
First pass at Ryan's assertion code, minor tweaks to come.
Sam Lantinga <slouken@libsdl.org>
parents:
3639
diff
changeset
|
137 dnl See whether we want assertions for debugging/sanity checking SDL itself. |
c5925cd41955
First pass at Ryan's assertion code, minor tweaks to come.
Sam Lantinga <slouken@libsdl.org>
parents:
3639
diff
changeset
|
138 AC_ARG_ENABLE(assertions, |
c5925cd41955
First pass at Ryan's assertion code, minor tweaks to come.
Sam Lantinga <slouken@libsdl.org>
parents:
3639
diff
changeset
|
139 AC_HELP_STRING([--enable-assertions], |
3654
336f3df1578d
Allow configure to override assertion settings, but by default this comes from the build optimization level.
Sam Lantinga <slouken@libsdl.org>
parents:
3649
diff
changeset
|
140 [Enable internal sanity checks (auto/disabled/release/enabled/paranoid) [[default=auto]]]), |
336f3df1578d
Allow configure to override assertion settings, but by default this comes from the build optimization level.
Sam Lantinga <slouken@libsdl.org>
parents:
3649
diff
changeset
|
141 , enable_assertions=auto) |
336f3df1578d
Allow configure to override assertion settings, but by default this comes from the build optimization level.
Sam Lantinga <slouken@libsdl.org>
parents:
3649
diff
changeset
|
142 case "$enable_assertions" in |
336f3df1578d
Allow configure to override assertion settings, but by default this comes from the build optimization level.
Sam Lantinga <slouken@libsdl.org>
parents:
3649
diff
changeset
|
143 auto) # Use optimization settings to determine assertion level |
336f3df1578d
Allow configure to override assertion settings, but by default this comes from the build optimization level.
Sam Lantinga <slouken@libsdl.org>
parents:
3649
diff
changeset
|
144 ;; |
336f3df1578d
Allow configure to override assertion settings, but by default this comes from the build optimization level.
Sam Lantinga <slouken@libsdl.org>
parents:
3649
diff
changeset
|
145 disabled) |
336f3df1578d
Allow configure to override assertion settings, but by default this comes from the build optimization level.
Sam Lantinga <slouken@libsdl.org>
parents:
3649
diff
changeset
|
146 AC_DEFINE(SDL_DEFAULT_ASSERT_LEVEL, 0) |
336f3df1578d
Allow configure to override assertion settings, but by default this comes from the build optimization level.
Sam Lantinga <slouken@libsdl.org>
parents:
3649
diff
changeset
|
147 ;; |
336f3df1578d
Allow configure to override assertion settings, but by default this comes from the build optimization level.
Sam Lantinga <slouken@libsdl.org>
parents:
3649
diff
changeset
|
148 release) |
336f3df1578d
Allow configure to override assertion settings, but by default this comes from the build optimization level.
Sam Lantinga <slouken@libsdl.org>
parents:
3649
diff
changeset
|
149 AC_DEFINE(SDL_DEFAULT_ASSERT_LEVEL, 1) |
336f3df1578d
Allow configure to override assertion settings, but by default this comes from the build optimization level.
Sam Lantinga <slouken@libsdl.org>
parents:
3649
diff
changeset
|
150 ;; |
336f3df1578d
Allow configure to override assertion settings, but by default this comes from the build optimization level.
Sam Lantinga <slouken@libsdl.org>
parents:
3649
diff
changeset
|
151 enabled) |
336f3df1578d
Allow configure to override assertion settings, but by default this comes from the build optimization level.
Sam Lantinga <slouken@libsdl.org>
parents:
3649
diff
changeset
|
152 AC_DEFINE(SDL_DEFAULT_ASSERT_LEVEL, 2) |
336f3df1578d
Allow configure to override assertion settings, but by default this comes from the build optimization level.
Sam Lantinga <slouken@libsdl.org>
parents:
3649
diff
changeset
|
153 ;; |
336f3df1578d
Allow configure to override assertion settings, but by default this comes from the build optimization level.
Sam Lantinga <slouken@libsdl.org>
parents:
3649
diff
changeset
|
154 paranoid) |
336f3df1578d
Allow configure to override assertion settings, but by default this comes from the build optimization level.
Sam Lantinga <slouken@libsdl.org>
parents:
3649
diff
changeset
|
155 AC_DEFINE(SDL_DEFAULT_ASSERT_LEVEL, 3) |
336f3df1578d
Allow configure to override assertion settings, but by default this comes from the build optimization level.
Sam Lantinga <slouken@libsdl.org>
parents:
3649
diff
changeset
|
156 ;; |
336f3df1578d
Allow configure to override assertion settings, but by default this comes from the build optimization level.
Sam Lantinga <slouken@libsdl.org>
parents:
3649
diff
changeset
|
157 *) |
336f3df1578d
Allow configure to override assertion settings, but by default this comes from the build optimization level.
Sam Lantinga <slouken@libsdl.org>
parents:
3649
diff
changeset
|
158 AC_MSG_ERROR([*** unknown assertion level. stop.]) |
336f3df1578d
Allow configure to override assertion settings, but by default this comes from the build optimization level.
Sam Lantinga <slouken@libsdl.org>
parents:
3649
diff
changeset
|
159 ;; |
336f3df1578d
Allow configure to override assertion settings, but by default this comes from the build optimization level.
Sam Lantinga <slouken@libsdl.org>
parents:
3649
diff
changeset
|
160 esac |
3647
c5925cd41955
First pass at Ryan's assertion code, minor tweaks to come.
Sam Lantinga <slouken@libsdl.org>
parents:
3639
diff
changeset
|
161 |
3354 | 162 dnl See whether we can use gcc style dependency tracking |
163 AC_ARG_ENABLE(dependency-tracking, | |
164 AC_HELP_STRING([--enable-dependency-tracking], | |
165 [Use gcc -MMD -MT dependency tracking [[default=yes]]]), | |
166 , enable_dependency_tracking=yes) | |
167 if test x$enable_dependency_tracking = xyes; then | |
168 have_gcc_mmd_mt=no | |
169 AC_MSG_CHECKING(for GCC -MMD -MT option) | |
170 AC_TRY_COMPILE([ | |
171 #if !defined(__GNUC__) || __GNUC__ < 3 | |
172 #error Dependency tracking requires GCC 3.0 or newer | |
173 #endif | |
174 ],[ | |
175 ],[ | |
176 have_gcc_mmd_mt=yes | |
177 ]) | |
178 AC_MSG_RESULT($have_gcc_mmd_mt) | |
179 | |
180 if test x$have_gcc_mmd_mt = xyes; then | |
181 DEPENDENCY_TRACKING_OPTIONS="-MMD -MT \$@" | |
182 fi | |
183 fi | |
184 | |
1361
19418e4422cb
New configure-based build system. Still work in progress, but much improved
Sam Lantinga <slouken@libsdl.org>
parents:
1354
diff
changeset
|
185 dnl See whether we are allowed to use the system C library |
19418e4422cb
New configure-based build system. Still work in progress, but much improved
Sam Lantinga <slouken@libsdl.org>
parents:
1354
diff
changeset
|
186 AC_ARG_ENABLE(libc, |
1637
9ba366b919c7
Date: Fri, 31 Mar 2006 18:28:55 -0500
Sam Lantinga <slouken@libsdl.org>
parents:
1632
diff
changeset
|
187 AC_HELP_STRING([--enable-libc], [Use the system C library [[default=yes]]]), |
1361
19418e4422cb
New configure-based build system. Still work in progress, but much improved
Sam Lantinga <slouken@libsdl.org>
parents:
1354
diff
changeset
|
188 , enable_libc=yes) |
19418e4422cb
New configure-based build system. Still work in progress, but much improved
Sam Lantinga <slouken@libsdl.org>
parents:
1354
diff
changeset
|
189 if test x$enable_libc = xyes; then |
19418e4422cb
New configure-based build system. Still work in progress, but much improved
Sam Lantinga <slouken@libsdl.org>
parents:
1354
diff
changeset
|
190 AC_DEFINE(HAVE_LIBC) |
19418e4422cb
New configure-based build system. Still work in progress, but much improved
Sam Lantinga <slouken@libsdl.org>
parents:
1354
diff
changeset
|
191 |
19418e4422cb
New configure-based build system. Still work in progress, but much improved
Sam Lantinga <slouken@libsdl.org>
parents:
1354
diff
changeset
|
192 dnl Check for C library headers |
19418e4422cb
New configure-based build system. Still work in progress, but much improved
Sam Lantinga <slouken@libsdl.org>
parents:
1354
diff
changeset
|
193 AC_HEADER_STDC |
1501
73dc5d39bbf8
Added UTF-8 <-> UTF-16 <-> UTF-32 <-> UCS-2 <-> UCS-4 conversion capability
Sam Lantinga <slouken@libsdl.org>
parents:
1477
diff
changeset
|
194 AC_CHECK_HEADERS(sys/types.h stdio.h stdlib.h stddef.h stdarg.h malloc.h memory.h string.h strings.h inttypes.h stdint.h ctype.h math.h iconv.h signal.h) |
1353
7ba544e2888d
Started the process of improving configure support, and merging C types
Sam Lantinga <slouken@libsdl.org>
parents:
1352
diff
changeset
|
195 |
1361
19418e4422cb
New configure-based build system. Still work in progress, but much improved
Sam Lantinga <slouken@libsdl.org>
parents:
1354
diff
changeset
|
196 dnl Check for typedefs, structures, etc. |
19418e4422cb
New configure-based build system. Still work in progress, but much improved
Sam Lantinga <slouken@libsdl.org>
parents:
1354
diff
changeset
|
197 AC_TYPE_SIZE_T |
19418e4422cb
New configure-based build system. Still work in progress, but much improved
Sam Lantinga <slouken@libsdl.org>
parents:
1354
diff
changeset
|
198 if test x$ac_cv_header_inttypes_h = xyes -o x$ac_cv_header_stdint_h = xyes; then |
19418e4422cb
New configure-based build system. Still work in progress, but much improved
Sam Lantinga <slouken@libsdl.org>
parents:
1354
diff
changeset
|
199 AC_CHECK_TYPE(int64_t) |
19418e4422cb
New configure-based build system. Still work in progress, but much improved
Sam Lantinga <slouken@libsdl.org>
parents:
1354
diff
changeset
|
200 if test x$ac_cv_type_int64_t = xyes; then |
19418e4422cb
New configure-based build system. Still work in progress, but much improved
Sam Lantinga <slouken@libsdl.org>
parents:
1354
diff
changeset
|
201 AC_DEFINE(SDL_HAS_64BIT_TYPE) |
19418e4422cb
New configure-based build system. Still work in progress, but much improved
Sam Lantinga <slouken@libsdl.org>
parents:
1354
diff
changeset
|
202 fi |
19418e4422cb
New configure-based build system. Still work in progress, but much improved
Sam Lantinga <slouken@libsdl.org>
parents:
1354
diff
changeset
|
203 have_inttypes=yes |
1353
7ba544e2888d
Started the process of improving configure support, and merging C types
Sam Lantinga <slouken@libsdl.org>
parents:
1352
diff
changeset
|
204 fi |
1361
19418e4422cb
New configure-based build system. Still work in progress, but much improved
Sam Lantinga <slouken@libsdl.org>
parents:
1354
diff
changeset
|
205 |
3012
7e30c2dc7783
Fixed Visual C++ release build for Visual C++ 2005
Sam Lantinga <slouken@libsdl.org>
parents:
3007
diff
changeset
|
206 dnl Check for defines |
7e30c2dc7783
Fixed Visual C++ release build for Visual C++ 2005
Sam Lantinga <slouken@libsdl.org>
parents:
3007
diff
changeset
|
207 AC_CHECK_DEFINE(M_PI, math.h) |
7e30c2dc7783
Fixed Visual C++ release build for Visual C++ 2005
Sam Lantinga <slouken@libsdl.org>
parents:
3007
diff
changeset
|
208 |
1361
19418e4422cb
New configure-based build system. Still work in progress, but much improved
Sam Lantinga <slouken@libsdl.org>
parents:
1354
diff
changeset
|
209 dnl Checks for library functions. |
2079 | 210 case "$host" in |
211 *-*-cygwin* | *-*-mingw32*) | |
212 ;; | |
213 *) | |
214 AC_FUNC_ALLOCA | |
215 ;; | |
216 esac | |
217 | |
1361
19418e4422cb
New configure-based build system. Still work in progress, but much improved
Sam Lantinga <slouken@libsdl.org>
parents:
1354
diff
changeset
|
218 AC_FUNC_MEMCMP |
19418e4422cb
New configure-based build system. Still work in progress, but much improved
Sam Lantinga <slouken@libsdl.org>
parents:
1354
diff
changeset
|
219 if test x$ac_cv_func_memcmp_working = xyes; then |
19418e4422cb
New configure-based build system. Still work in progress, but much improved
Sam Lantinga <slouken@libsdl.org>
parents:
1354
diff
changeset
|
220 AC_DEFINE(HAVE_MEMCMP) |
19418e4422cb
New configure-based build system. Still work in progress, but much improved
Sam Lantinga <slouken@libsdl.org>
parents:
1354
diff
changeset
|
221 fi |
19418e4422cb
New configure-based build system. Still work in progress, but much improved
Sam Lantinga <slouken@libsdl.org>
parents:
1354
diff
changeset
|
222 AC_FUNC_STRTOD |
19418e4422cb
New configure-based build system. Still work in progress, but much improved
Sam Lantinga <slouken@libsdl.org>
parents:
1354
diff
changeset
|
223 if test x$ac_cv_func_strtod = xyes; then |
19418e4422cb
New configure-based build system. Still work in progress, but much improved
Sam Lantinga <slouken@libsdl.org>
parents:
1354
diff
changeset
|
224 AC_DEFINE(HAVE_STRTOD) |
19418e4422cb
New configure-based build system. Still work in progress, but much improved
Sam Lantinga <slouken@libsdl.org>
parents:
1354
diff
changeset
|
225 fi |
3405
d5f2dd33f4eb
Merged improvements to SDL_SoftStretch() from SDL 1.2
Sam Lantinga <slouken@libsdl.org>
parents:
3394
diff
changeset
|
226 AC_CHECK_FUNC(mprotect, |
d5f2dd33f4eb
Merged improvements to SDL_SoftStretch() from SDL 1.2
Sam Lantinga <slouken@libsdl.org>
parents:
3394
diff
changeset
|
227 AC_TRY_COMPILE([ |
d5f2dd33f4eb
Merged improvements to SDL_SoftStretch() from SDL 1.2
Sam Lantinga <slouken@libsdl.org>
parents:
3394
diff
changeset
|
228 #include <sys/types.h> |
d5f2dd33f4eb
Merged improvements to SDL_SoftStretch() from SDL 1.2
Sam Lantinga <slouken@libsdl.org>
parents:
3394
diff
changeset
|
229 #include <sys/mman.h> |
d5f2dd33f4eb
Merged improvements to SDL_SoftStretch() from SDL 1.2
Sam Lantinga <slouken@libsdl.org>
parents:
3394
diff
changeset
|
230 ],[ |
d5f2dd33f4eb
Merged improvements to SDL_SoftStretch() from SDL 1.2
Sam Lantinga <slouken@libsdl.org>
parents:
3394
diff
changeset
|
231 ],[ |
d5f2dd33f4eb
Merged improvements to SDL_SoftStretch() from SDL 1.2
Sam Lantinga <slouken@libsdl.org>
parents:
3394
diff
changeset
|
232 AC_DEFINE(HAVE_MPROTECT) |
d5f2dd33f4eb
Merged improvements to SDL_SoftStretch() from SDL 1.2
Sam Lantinga <slouken@libsdl.org>
parents:
3394
diff
changeset
|
233 ]), |
d5f2dd33f4eb
Merged improvements to SDL_SoftStretch() from SDL 1.2
Sam Lantinga <slouken@libsdl.org>
parents:
3394
diff
changeset
|
234 ) |
3586
b6758aee0dd4
Added support for querying the number of CPUs available on Linux. This also happens to work on Mac OS X.
Sam Lantinga <slouken@libsdl.org>
parents:
3581
diff
changeset
|
235 AC_CHECK_FUNCS(malloc calloc realloc free getenv setenv putenv unsetenv qsort abs bcopy memset memcpy memmove strlen strlcpy strlcat strdup _strrev _strupr _strlwr strchr strrchr strstr itoa _ltoa _uitoa _ultoa strtol strtoul _i64toa _ui64toa strtoll strtoull atoi atof strcmp strncmp _stricmp strcasecmp _strnicmp strncasecmp sscanf snprintf vsnprintf sigaction setjmp nanosleep sysconf sysctlbyname) |
1373
04499d3e1b6b
*** empty log message ***
Sam Lantinga <slouken@libsdl.org>
parents:
1370
diff
changeset
|
236 |
3014
cacb282192a1
Check for functions after including the libraries that they might be in.
Sam Lantinga <slouken@libsdl.org>
parents:
3012
diff
changeset
|
237 AC_CHECK_LIB(m, pow, [LIBS="$LIBS -lm"; EXTRA_LDFLAGS="$EXTRA_LDFLAGS -lm"]) |
3032 | 238 AC_CHECK_FUNCS(ceil copysign cos cosf fabs floor log pow scalbn sin sinf sqrt) |
3014
cacb282192a1
Check for functions after including the libraries that they might be in.
Sam Lantinga <slouken@libsdl.org>
parents:
3012
diff
changeset
|
239 |
cacb282192a1
Check for functions after including the libraries that they might be in.
Sam Lantinga <slouken@libsdl.org>
parents:
3012
diff
changeset
|
240 AC_CHECK_LIB(iconv, libiconv_open, [LIBS="$LIBS -liconv"; EXTRA_LDFLAGS="$EXTRA_LDFLAGS -liconv"]) |
cacb282192a1
Check for functions after including the libraries that they might be in.
Sam Lantinga <slouken@libsdl.org>
parents:
3012
diff
changeset
|
241 AC_CHECK_FUNCS(iconv) |
1361
19418e4422cb
New configure-based build system. Still work in progress, but much improved
Sam Lantinga <slouken@libsdl.org>
parents:
1354
diff
changeset
|
242 fi |
19418e4422cb
New configure-based build system. Still work in progress, but much improved
Sam Lantinga <slouken@libsdl.org>
parents:
1354
diff
changeset
|
243 |
3180
77d6336711fc
First commit for SDL atomic operations.
Bob Pendleton <bob@pendleton.com>
parents:
3173
diff
changeset
|
244 AC_CHECK_SIZEOF(void*) |
1361
19418e4422cb
New configure-based build system. Still work in progress, but much improved
Sam Lantinga <slouken@libsdl.org>
parents:
1354
diff
changeset
|
245 if test x$have_inttypes != xyes; then |
1353
7ba544e2888d
Started the process of improving configure support, and merging C types
Sam Lantinga <slouken@libsdl.org>
parents:
1352
diff
changeset
|
246 AC_CHECK_SIZEOF(char, 1) |
7ba544e2888d
Started the process of improving configure support, and merging C types
Sam Lantinga <slouken@libsdl.org>
parents:
1352
diff
changeset
|
247 AC_CHECK_SIZEOF(short, 2) |
7ba544e2888d
Started the process of improving configure support, and merging C types
Sam Lantinga <slouken@libsdl.org>
parents:
1352
diff
changeset
|
248 AC_CHECK_SIZEOF(int, 4) |
7ba544e2888d
Started the process of improving configure support, and merging C types
Sam Lantinga <slouken@libsdl.org>
parents:
1352
diff
changeset
|
249 AC_CHECK_SIZEOF(long, 4) |
7ba544e2888d
Started the process of improving configure support, and merging C types
Sam Lantinga <slouken@libsdl.org>
parents:
1352
diff
changeset
|
250 AC_CHECK_SIZEOF(long long, 8) |
7ba544e2888d
Started the process of improving configure support, and merging C types
Sam Lantinga <slouken@libsdl.org>
parents:
1352
diff
changeset
|
251 if test x$ac_cv_sizeof_char = x1; then |
7ba544e2888d
Started the process of improving configure support, and merging C types
Sam Lantinga <slouken@libsdl.org>
parents:
1352
diff
changeset
|
252 AC_DEFINE(int8_t, signed char) |
7ba544e2888d
Started the process of improving configure support, and merging C types
Sam Lantinga <slouken@libsdl.org>
parents:
1352
diff
changeset
|
253 AC_DEFINE(uint8_t, unsigned char) |
7ba544e2888d
Started the process of improving configure support, and merging C types
Sam Lantinga <slouken@libsdl.org>
parents:
1352
diff
changeset
|
254 fi |
7ba544e2888d
Started the process of improving configure support, and merging C types
Sam Lantinga <slouken@libsdl.org>
parents:
1352
diff
changeset
|
255 if test x$ac_cv_sizeof_short = x2; then |
7ba544e2888d
Started the process of improving configure support, and merging C types
Sam Lantinga <slouken@libsdl.org>
parents:
1352
diff
changeset
|
256 AC_DEFINE(int16_t, signed short) |
7ba544e2888d
Started the process of improving configure support, and merging C types
Sam Lantinga <slouken@libsdl.org>
parents:
1352
diff
changeset
|
257 AC_DEFINE(uint16_t, unsigned short) |
7ba544e2888d
Started the process of improving configure support, and merging C types
Sam Lantinga <slouken@libsdl.org>
parents:
1352
diff
changeset
|
258 else |
7ba544e2888d
Started the process of improving configure support, and merging C types
Sam Lantinga <slouken@libsdl.org>
parents:
1352
diff
changeset
|
259 if test x$ac_cv_sizeof_int = x2; then |
7ba544e2888d
Started the process of improving configure support, and merging C types
Sam Lantinga <slouken@libsdl.org>
parents:
1352
diff
changeset
|
260 AC_DEFINE(int16_t, signed int) |
7ba544e2888d
Started the process of improving configure support, and merging C types
Sam Lantinga <slouken@libsdl.org>
parents:
1352
diff
changeset
|
261 AC_DEFINE(uint16_t, unsigned int) |
7ba544e2888d
Started the process of improving configure support, and merging C types
Sam Lantinga <slouken@libsdl.org>
parents:
1352
diff
changeset
|
262 fi |
7ba544e2888d
Started the process of improving configure support, and merging C types
Sam Lantinga <slouken@libsdl.org>
parents:
1352
diff
changeset
|
263 fi |
7ba544e2888d
Started the process of improving configure support, and merging C types
Sam Lantinga <slouken@libsdl.org>
parents:
1352
diff
changeset
|
264 if test x$ac_cv_sizeof_int = x4; then |
7ba544e2888d
Started the process of improving configure support, and merging C types
Sam Lantinga <slouken@libsdl.org>
parents:
1352
diff
changeset
|
265 AC_DEFINE(int32_t, signed int) |
7ba544e2888d
Started the process of improving configure support, and merging C types
Sam Lantinga <slouken@libsdl.org>
parents:
1352
diff
changeset
|
266 AC_DEFINE(uint32_t, unsigned int) |
7ba544e2888d
Started the process of improving configure support, and merging C types
Sam Lantinga <slouken@libsdl.org>
parents:
1352
diff
changeset
|
267 else |
7ba544e2888d
Started the process of improving configure support, and merging C types
Sam Lantinga <slouken@libsdl.org>
parents:
1352
diff
changeset
|
268 if test x$ac_cv_sizeof_long = x4; then |
7ba544e2888d
Started the process of improving configure support, and merging C types
Sam Lantinga <slouken@libsdl.org>
parents:
1352
diff
changeset
|
269 AC_DEFINE(int32_t, signed long) |
7ba544e2888d
Started the process of improving configure support, and merging C types
Sam Lantinga <slouken@libsdl.org>
parents:
1352
diff
changeset
|
270 AC_DEFINE(uint32_t, unsigned long) |
7ba544e2888d
Started the process of improving configure support, and merging C types
Sam Lantinga <slouken@libsdl.org>
parents:
1352
diff
changeset
|
271 fi |
7ba544e2888d
Started the process of improving configure support, and merging C types
Sam Lantinga <slouken@libsdl.org>
parents:
1352
diff
changeset
|
272 fi |
7ba544e2888d
Started the process of improving configure support, and merging C types
Sam Lantinga <slouken@libsdl.org>
parents:
1352
diff
changeset
|
273 if test x$ac_cv_sizeof_long = x8; then |
7ba544e2888d
Started the process of improving configure support, and merging C types
Sam Lantinga <slouken@libsdl.org>
parents:
1352
diff
changeset
|
274 AC_DEFINE(int64_t, signed long) |
7ba544e2888d
Started the process of improving configure support, and merging C types
Sam Lantinga <slouken@libsdl.org>
parents:
1352
diff
changeset
|
275 AC_DEFINE(uint64_t, unsigned long) |
7ba544e2888d
Started the process of improving configure support, and merging C types
Sam Lantinga <slouken@libsdl.org>
parents:
1352
diff
changeset
|
276 AC_DEFINE(SDL_HAS_64BIT_TYPE) |
7ba544e2888d
Started the process of improving configure support, and merging C types
Sam Lantinga <slouken@libsdl.org>
parents:
1352
diff
changeset
|
277 else |
7ba544e2888d
Started the process of improving configure support, and merging C types
Sam Lantinga <slouken@libsdl.org>
parents:
1352
diff
changeset
|
278 if test x$ac_cv_sizeof_long_long = x8; then |
7ba544e2888d
Started the process of improving configure support, and merging C types
Sam Lantinga <slouken@libsdl.org>
parents:
1352
diff
changeset
|
279 AC_DEFINE(int64_t, signed long long) |
7ba544e2888d
Started the process of improving configure support, and merging C types
Sam Lantinga <slouken@libsdl.org>
parents:
1352
diff
changeset
|
280 AC_DEFINE(uint64_t, unsigned long long) |
7ba544e2888d
Started the process of improving configure support, and merging C types
Sam Lantinga <slouken@libsdl.org>
parents:
1352
diff
changeset
|
281 AC_DEFINE(SDL_HAS_64BIT_TYPE) |
7ba544e2888d
Started the process of improving configure support, and merging C types
Sam Lantinga <slouken@libsdl.org>
parents:
1352
diff
changeset
|
282 fi |
7ba544e2888d
Started the process of improving configure support, and merging C types
Sam Lantinga <slouken@libsdl.org>
parents:
1352
diff
changeset
|
283 fi |
1361
19418e4422cb
New configure-based build system. Still work in progress, but much improved
Sam Lantinga <slouken@libsdl.org>
parents:
1354
diff
changeset
|
284 AC_DEFINE(size_t, unsigned int) |
19418e4422cb
New configure-based build system. Still work in progress, but much improved
Sam Lantinga <slouken@libsdl.org>
parents:
1354
diff
changeset
|
285 AC_DEFINE(uintptr_t, unsigned long) |
1353
7ba544e2888d
Started the process of improving configure support, and merging C types
Sam Lantinga <slouken@libsdl.org>
parents:
1352
diff
changeset
|
286 fi |
1341
d02b552e5304
Configure dynamically generates SDL_config.h
Sam Lantinga <slouken@libsdl.org>
parents:
1330
diff
changeset
|
287 |
1361
19418e4422cb
New configure-based build system. Still work in progress, but much improved
Sam Lantinga <slouken@libsdl.org>
parents:
1354
diff
changeset
|
288 # Standard C sources |
19418e4422cb
New configure-based build system. Still work in progress, but much improved
Sam Lantinga <slouken@libsdl.org>
parents:
1354
diff
changeset
|
289 SOURCES="$SOURCES $srcdir/src/*.c" |
19418e4422cb
New configure-based build system. Still work in progress, but much improved
Sam Lantinga <slouken@libsdl.org>
parents:
1354
diff
changeset
|
290 SOURCES="$SOURCES $srcdir/src/audio/*.c" |
19418e4422cb
New configure-based build system. Still work in progress, but much improved
Sam Lantinga <slouken@libsdl.org>
parents:
1354
diff
changeset
|
291 SOURCES="$SOURCES $srcdir/src/cpuinfo/*.c" |
19418e4422cb
New configure-based build system. Still work in progress, but much improved
Sam Lantinga <slouken@libsdl.org>
parents:
1354
diff
changeset
|
292 SOURCES="$SOURCES $srcdir/src/events/*.c" |
19418e4422cb
New configure-based build system. Still work in progress, but much improved
Sam Lantinga <slouken@libsdl.org>
parents:
1354
diff
changeset
|
293 SOURCES="$SOURCES $srcdir/src/file/*.c" |
19418e4422cb
New configure-based build system. Still work in progress, but much improved
Sam Lantinga <slouken@libsdl.org>
parents:
1354
diff
changeset
|
294 SOURCES="$SOURCES $srcdir/src/stdlib/*.c" |
19418e4422cb
New configure-based build system. Still work in progress, but much improved
Sam Lantinga <slouken@libsdl.org>
parents:
1354
diff
changeset
|
295 SOURCES="$SOURCES $srcdir/src/thread/*.c" |
19418e4422cb
New configure-based build system. Still work in progress, but much improved
Sam Lantinga <slouken@libsdl.org>
parents:
1354
diff
changeset
|
296 SOURCES="$SOURCES $srcdir/src/timer/*.c" |
19418e4422cb
New configure-based build system. Still work in progress, but much improved
Sam Lantinga <slouken@libsdl.org>
parents:
1354
diff
changeset
|
297 SOURCES="$SOURCES $srcdir/src/video/*.c" |
19418e4422cb
New configure-based build system. Still work in progress, but much improved
Sam Lantinga <slouken@libsdl.org>
parents:
1354
diff
changeset
|
298 |
0 | 299 dnl Enable/disable various subsystems of the SDL library |
300 | |
3199
3e1bf2b8bd81
This check in updates SDL_atomic.h to reflect the new set of atomic operations in 32 and 64 bit form.
Bob Pendleton <bob@pendleton.com>
parents:
3180
diff
changeset
|
301 AC_ARG_ENABLE(atomic, |
3e1bf2b8bd81
This check in updates SDL_atomic.h to reflect the new set of atomic operations in 32 and 64 bit form.
Bob Pendleton <bob@pendleton.com>
parents:
3180
diff
changeset
|
302 AC_HELP_STRING([--enable-atomic], [Enable the atomic operations subsystem [[default=yes]]]), |
3e1bf2b8bd81
This check in updates SDL_atomic.h to reflect the new set of atomic operations in 32 and 64 bit form.
Bob Pendleton <bob@pendleton.com>
parents:
3180
diff
changeset
|
303 , enable_atomic=yes) |
3e1bf2b8bd81
This check in updates SDL_atomic.h to reflect the new set of atomic operations in 32 and 64 bit form.
Bob Pendleton <bob@pendleton.com>
parents:
3180
diff
changeset
|
304 if test x$enable_atomic != xyes; then |
3e1bf2b8bd81
This check in updates SDL_atomic.h to reflect the new set of atomic operations in 32 and 64 bit form.
Bob Pendleton <bob@pendleton.com>
parents:
3180
diff
changeset
|
305 AC_DEFINE(SDL_ATOMIC_DISABLED) |
3e1bf2b8bd81
This check in updates SDL_atomic.h to reflect the new set of atomic operations in 32 and 64 bit form.
Bob Pendleton <bob@pendleton.com>
parents:
3180
diff
changeset
|
306 fi |
0 | 307 AC_ARG_ENABLE(audio, |
1637
9ba366b919c7
Date: Fri, 31 Mar 2006 18:28:55 -0500
Sam Lantinga <slouken@libsdl.org>
parents:
1632
diff
changeset
|
308 AC_HELP_STRING([--enable-audio], [Enable the audio subsystem [[default=yes]]]), |
0 | 309 , enable_audio=yes) |
1361
19418e4422cb
New configure-based build system. Still work in progress, but much improved
Sam Lantinga <slouken@libsdl.org>
parents:
1354
diff
changeset
|
310 if test x$enable_audio != xyes; then |
19418e4422cb
New configure-based build system. Still work in progress, but much improved
Sam Lantinga <slouken@libsdl.org>
parents:
1354
diff
changeset
|
311 AC_DEFINE(SDL_AUDIO_DISABLED) |
0 | 312 fi |
313 AC_ARG_ENABLE(video, | |
1637
9ba366b919c7
Date: Fri, 31 Mar 2006 18:28:55 -0500
Sam Lantinga <slouken@libsdl.org>
parents:
1632
diff
changeset
|
314 AC_HELP_STRING([--enable-video], [Enable the video subsystem [[default=yes]]]), |
0 | 315 , enable_video=yes) |
1361
19418e4422cb
New configure-based build system. Still work in progress, but much improved
Sam Lantinga <slouken@libsdl.org>
parents:
1354
diff
changeset
|
316 if test x$enable_video != xyes; then |
19418e4422cb
New configure-based build system. Still work in progress, but much improved
Sam Lantinga <slouken@libsdl.org>
parents:
1354
diff
changeset
|
317 AC_DEFINE(SDL_VIDEO_DISABLED) |
0 | 318 fi |
319 AC_ARG_ENABLE(events, | |
1637
9ba366b919c7
Date: Fri, 31 Mar 2006 18:28:55 -0500
Sam Lantinga <slouken@libsdl.org>
parents:
1632
diff
changeset
|
320 AC_HELP_STRING([--enable-events], [Enable the events subsystem [[default=yes]]]), |
0 | 321 , enable_events=yes) |
1361
19418e4422cb
New configure-based build system. Still work in progress, but much improved
Sam Lantinga <slouken@libsdl.org>
parents:
1354
diff
changeset
|
322 if test x$enable_events != xyes; then |
19418e4422cb
New configure-based build system. Still work in progress, but much improved
Sam Lantinga <slouken@libsdl.org>
parents:
1354
diff
changeset
|
323 AC_DEFINE(SDL_EVENTS_DISABLED) |
0 | 324 fi |
325 AC_ARG_ENABLE(joystick, | |
1637
9ba366b919c7
Date: Fri, 31 Mar 2006 18:28:55 -0500
Sam Lantinga <slouken@libsdl.org>
parents:
1632
diff
changeset
|
326 AC_HELP_STRING([--enable-joystick], [Enable the joystick subsystem [[default=yes]]]), |
0 | 327 , enable_joystick=yes) |
1361
19418e4422cb
New configure-based build system. Still work in progress, but much improved
Sam Lantinga <slouken@libsdl.org>
parents:
1354
diff
changeset
|
328 if test x$enable_joystick != xyes; then |
19418e4422cb
New configure-based build system. Still work in progress, but much improved
Sam Lantinga <slouken@libsdl.org>
parents:
1354
diff
changeset
|
329 AC_DEFINE(SDL_JOYSTICK_DISABLED) |
2103
4a010418f3b9
Merged r3009:3011 from branches/SDL-1.2: Skip subsystem on --disable-joysticks.
Ryan C. Gordon <icculus@icculus.org>
parents:
2093
diff
changeset
|
330 else |
4a010418f3b9
Merged r3009:3011 from branches/SDL-1.2: Skip subsystem on --disable-joysticks.
Ryan C. Gordon <icculus@icculus.org>
parents:
2093
diff
changeset
|
331 SOURCES="$SOURCES $srcdir/src/joystick/*.c" |
0 | 332 fi |
2713
0906692aa6a4
Final merge of Google Summer of Code 2008 work...
Sam Lantinga <slouken@libsdl.org>
parents:
2710
diff
changeset
|
333 AC_ARG_ENABLE(haptic, |
0906692aa6a4
Final merge of Google Summer of Code 2008 work...
Sam Lantinga <slouken@libsdl.org>
parents:
2710
diff
changeset
|
334 AC_HELP_STRING([--enable-haptic], [Enable the haptic (force feedback) subsystem [[default=yes]]]), |
0906692aa6a4
Final merge of Google Summer of Code 2008 work...
Sam Lantinga <slouken@libsdl.org>
parents:
2710
diff
changeset
|
335 , enable_haptic=yes) |
0906692aa6a4
Final merge of Google Summer of Code 2008 work...
Sam Lantinga <slouken@libsdl.org>
parents:
2710
diff
changeset
|
336 if test x$enable_haptic != xyes; then |
0906692aa6a4
Final merge of Google Summer of Code 2008 work...
Sam Lantinga <slouken@libsdl.org>
parents:
2710
diff
changeset
|
337 AC_DEFINE(SDL_HAPTIC_DISABLED) |
0906692aa6a4
Final merge of Google Summer of Code 2008 work...
Sam Lantinga <slouken@libsdl.org>
parents:
2710
diff
changeset
|
338 else |
0906692aa6a4
Final merge of Google Summer of Code 2008 work...
Sam Lantinga <slouken@libsdl.org>
parents:
2710
diff
changeset
|
339 SOURCES="$SOURCES $srcdir/src/haptic/*.c" |
0906692aa6a4
Final merge of Google Summer of Code 2008 work...
Sam Lantinga <slouken@libsdl.org>
parents:
2710
diff
changeset
|
340 fi |
3170
b7a48f533966
Initial work on power subsystem for SDL 1.3.
Ryan C. Gordon <icculus@icculus.org>
parents:
3168
diff
changeset
|
341 AC_ARG_ENABLE(power, |
b7a48f533966
Initial work on power subsystem for SDL 1.3.
Ryan C. Gordon <icculus@icculus.org>
parents:
3168
diff
changeset
|
342 AC_HELP_STRING([--enable-power], [Enable the power subsystem [[default=yes]]]), |
b7a48f533966
Initial work on power subsystem for SDL 1.3.
Ryan C. Gordon <icculus@icculus.org>
parents:
3168
diff
changeset
|
343 , enable_power=yes) |
b7a48f533966
Initial work on power subsystem for SDL 1.3.
Ryan C. Gordon <icculus@icculus.org>
parents:
3168
diff
changeset
|
344 if test x$enable_power != xyes; then |
b7a48f533966
Initial work on power subsystem for SDL 1.3.
Ryan C. Gordon <icculus@icculus.org>
parents:
3168
diff
changeset
|
345 AC_DEFINE(SDL_POWER_DISABLED) |
b7a48f533966
Initial work on power subsystem for SDL 1.3.
Ryan C. Gordon <icculus@icculus.org>
parents:
3168
diff
changeset
|
346 else |
b7a48f533966
Initial work on power subsystem for SDL 1.3.
Ryan C. Gordon <icculus@icculus.org>
parents:
3168
diff
changeset
|
347 SOURCES="$SOURCES $srcdir/src/power/*.c" |
b7a48f533966
Initial work on power subsystem for SDL 1.3.
Ryan C. Gordon <icculus@icculus.org>
parents:
3168
diff
changeset
|
348 fi |
0 | 349 AC_ARG_ENABLE(threads, |
1637
9ba366b919c7
Date: Fri, 31 Mar 2006 18:28:55 -0500
Sam Lantinga <slouken@libsdl.org>
parents:
1632
diff
changeset
|
350 AC_HELP_STRING([--enable-threads], [Enable the threading subsystem [[default=yes]]]), |
0 | 351 , enable_threads=yes) |
352 if test x$enable_threads != xyes; then | |
1361
19418e4422cb
New configure-based build system. Still work in progress, but much improved
Sam Lantinga <slouken@libsdl.org>
parents:
1354
diff
changeset
|
353 AC_DEFINE(SDL_THREADS_DISABLED) |
0 | 354 fi |
355 AC_ARG_ENABLE(timers, | |
1637
9ba366b919c7
Date: Fri, 31 Mar 2006 18:28:55 -0500
Sam Lantinga <slouken@libsdl.org>
parents:
1632
diff
changeset
|
356 AC_HELP_STRING([--enable-timers], [Enable the timer subsystem [[default=yes]]]), |
0 | 357 , enable_timers=yes) |
1361
19418e4422cb
New configure-based build system. Still work in progress, but much improved
Sam Lantinga <slouken@libsdl.org>
parents:
1354
diff
changeset
|
358 if test x$enable_timers != xyes; then |
19418e4422cb
New configure-based build system. Still work in progress, but much improved
Sam Lantinga <slouken@libsdl.org>
parents:
1354
diff
changeset
|
359 AC_DEFINE(SDL_TIMERS_DISABLED) |
0 | 360 fi |
361 AC_ARG_ENABLE(file, | |
1637
9ba366b919c7
Date: Fri, 31 Mar 2006 18:28:55 -0500
Sam Lantinga <slouken@libsdl.org>
parents:
1632
diff
changeset
|
362 AC_HELP_STRING([--enable-file], [Enable the file subsystem [[default=yes]]]), |
0 | 363 , enable_file=yes) |
1361
19418e4422cb
New configure-based build system. Still work in progress, but much improved
Sam Lantinga <slouken@libsdl.org>
parents:
1354
diff
changeset
|
364 if test x$enable_file != xyes; then |
19418e4422cb
New configure-based build system. Still work in progress, but much improved
Sam Lantinga <slouken@libsdl.org>
parents:
1354
diff
changeset
|
365 AC_DEFINE(SDL_FILE_DISABLED) |
19418e4422cb
New configure-based build system. Still work in progress, but much improved
Sam Lantinga <slouken@libsdl.org>
parents:
1354
diff
changeset
|
366 fi |
19418e4422cb
New configure-based build system. Still work in progress, but much improved
Sam Lantinga <slouken@libsdl.org>
parents:
1354
diff
changeset
|
367 AC_ARG_ENABLE(loadso, |
1637
9ba366b919c7
Date: Fri, 31 Mar 2006 18:28:55 -0500
Sam Lantinga <slouken@libsdl.org>
parents:
1632
diff
changeset
|
368 AC_HELP_STRING([--enable-loadso], [Enable the shared object loading subsystem [[default=yes]]]), |
1361
19418e4422cb
New configure-based build system. Still work in progress, but much improved
Sam Lantinga <slouken@libsdl.org>
parents:
1354
diff
changeset
|
369 , enable_loadso=yes) |
19418e4422cb
New configure-based build system. Still work in progress, but much improved
Sam Lantinga <slouken@libsdl.org>
parents:
1354
diff
changeset
|
370 if test x$enable_loadso != xyes; then |
19418e4422cb
New configure-based build system. Still work in progress, but much improved
Sam Lantinga <slouken@libsdl.org>
parents:
1354
diff
changeset
|
371 AC_DEFINE(SDL_LOADSO_DISABLED) |
0 | 372 fi |
740
e70f80e98f60
Actually hook the cpuinfo module into the library. :)
Sam Lantinga <slouken@libsdl.org>
parents:
739
diff
changeset
|
373 AC_ARG_ENABLE(cpuinfo, |
1637
9ba366b919c7
Date: Fri, 31 Mar 2006 18:28:55 -0500
Sam Lantinga <slouken@libsdl.org>
parents:
1632
diff
changeset
|
374 AC_HELP_STRING([--enable-cpuinfo], [Enable the cpuinfo subsystem [[default=yes]]]), |
740
e70f80e98f60
Actually hook the cpuinfo module into the library. :)
Sam Lantinga <slouken@libsdl.org>
parents:
739
diff
changeset
|
375 , enable_cpuinfo=yes) |
1361
19418e4422cb
New configure-based build system. Still work in progress, but much improved
Sam Lantinga <slouken@libsdl.org>
parents:
1354
diff
changeset
|
376 if test x$enable_cpuinfo != xyes; then |
19418e4422cb
New configure-based build system. Still work in progress, but much improved
Sam Lantinga <slouken@libsdl.org>
parents:
1354
diff
changeset
|
377 AC_DEFINE(SDL_CPUINFO_DISABLED) |
19418e4422cb
New configure-based build system. Still work in progress, but much improved
Sam Lantinga <slouken@libsdl.org>
parents:
1354
diff
changeset
|
378 fi |
1402
d910939febfa
Use consistent identifiers for the various platforms we support.
Sam Lantinga <slouken@libsdl.org>
parents:
1399
diff
changeset
|
379 AC_ARG_ENABLE(assembly, |
1637
9ba366b919c7
Date: Fri, 31 Mar 2006 18:28:55 -0500
Sam Lantinga <slouken@libsdl.org>
parents:
1632
diff
changeset
|
380 AC_HELP_STRING([--enable-assembly], [Enable assembly routines [[default=yes]]]), |
1402
d910939febfa
Use consistent identifiers for the various platforms we support.
Sam Lantinga <slouken@libsdl.org>
parents:
1399
diff
changeset
|
381 , enable_assembly=yes) |
d910939febfa
Use consistent identifiers for the various platforms we support.
Sam Lantinga <slouken@libsdl.org>
parents:
1399
diff
changeset
|
382 if test x$enable_assembly = xyes; then |
d910939febfa
Use consistent identifiers for the various platforms we support.
Sam Lantinga <slouken@libsdl.org>
parents:
1399
diff
changeset
|
383 AC_DEFINE(SDL_ASSEMBLY_ROUTINES) |
2247
93994f65c74c
Removed hermes since it's LGPL and not compatible with a commercial license.
Sam Lantinga <slouken@libsdl.org>
parents:
2238
diff
changeset
|
384 |
2856
c765f5fa4a2c
Default SSE2 off on iX86, since gcc will use it for floating point operations
Sam Lantinga <slouken@libsdl.org>
parents:
2820
diff
changeset
|
385 # Make sure that we don't generate floating point code that would |
c765f5fa4a2c
Default SSE2 off on iX86, since gcc will use it for floating point operations
Sam Lantinga <slouken@libsdl.org>
parents:
2820
diff
changeset
|
386 # cause illegal instruction exceptions on older processors |
c765f5fa4a2c
Default SSE2 off on iX86, since gcc will use it for floating point operations
Sam Lantinga <slouken@libsdl.org>
parents:
2820
diff
changeset
|
387 case "$host" in |
c765f5fa4a2c
Default SSE2 off on iX86, since gcc will use it for floating point operations
Sam Lantinga <slouken@libsdl.org>
parents:
2820
diff
changeset
|
388 *-*-darwin*) |
c765f5fa4a2c
Default SSE2 off on iX86, since gcc will use it for floating point operations
Sam Lantinga <slouken@libsdl.org>
parents:
2820
diff
changeset
|
389 # Don't need to worry about Apple hardware, it's all SSE capable |
c765f5fa4a2c
Default SSE2 off on iX86, since gcc will use it for floating point operations
Sam Lantinga <slouken@libsdl.org>
parents:
2820
diff
changeset
|
390 default_ssemath=yes |
c765f5fa4a2c
Default SSE2 off on iX86, since gcc will use it for floating point operations
Sam Lantinga <slouken@libsdl.org>
parents:
2820
diff
changeset
|
391 ;; |
c765f5fa4a2c
Default SSE2 off on iX86, since gcc will use it for floating point operations
Sam Lantinga <slouken@libsdl.org>
parents:
2820
diff
changeset
|
392 *64-*-*) |
c765f5fa4a2c
Default SSE2 off on iX86, since gcc will use it for floating point operations
Sam Lantinga <slouken@libsdl.org>
parents:
2820
diff
changeset
|
393 # x86 64-bit architectures all have SSE instructions |
c765f5fa4a2c
Default SSE2 off on iX86, since gcc will use it for floating point operations
Sam Lantinga <slouken@libsdl.org>
parents:
2820
diff
changeset
|
394 default_ssemath=yes |
c765f5fa4a2c
Default SSE2 off on iX86, since gcc will use it for floating point operations
Sam Lantinga <slouken@libsdl.org>
parents:
2820
diff
changeset
|
395 ;; |
3392
efc22582afc5
Only show the dynamic audio libraries if we'll be dynamically loading them
Sam Lantinga <slouken@libsdl.org>
parents:
3391
diff
changeset
|
396 *) |
2856
c765f5fa4a2c
Default SSE2 off on iX86, since gcc will use it for floating point operations
Sam Lantinga <slouken@libsdl.org>
parents:
2820
diff
changeset
|
397 default_ssemath=no |
c765f5fa4a2c
Default SSE2 off on iX86, since gcc will use it for floating point operations
Sam Lantinga <slouken@libsdl.org>
parents:
2820
diff
changeset
|
398 ;; |
c765f5fa4a2c
Default SSE2 off on iX86, since gcc will use it for floating point operations
Sam Lantinga <slouken@libsdl.org>
parents:
2820
diff
changeset
|
399 esac |
c765f5fa4a2c
Default SSE2 off on iX86, since gcc will use it for floating point operations
Sam Lantinga <slouken@libsdl.org>
parents:
2820
diff
changeset
|
400 AC_ARG_ENABLE(ssemath, |
c765f5fa4a2c
Default SSE2 off on iX86, since gcc will use it for floating point operations
Sam Lantinga <slouken@libsdl.org>
parents:
2820
diff
changeset
|
401 AC_HELP_STRING([--enable-ssemath], [Allow GCC to use SSE floating point math [[default=no]]]), |
c765f5fa4a2c
Default SSE2 off on iX86, since gcc will use it for floating point operations
Sam Lantinga <slouken@libsdl.org>
parents:
2820
diff
changeset
|
402 , enable_ssemath=$default_ssemath) |
c765f5fa4a2c
Default SSE2 off on iX86, since gcc will use it for floating point operations
Sam Lantinga <slouken@libsdl.org>
parents:
2820
diff
changeset
|
403 if test x$enable_ssemath = xno; then |
c765f5fa4a2c
Default SSE2 off on iX86, since gcc will use it for floating point operations
Sam Lantinga <slouken@libsdl.org>
parents:
2820
diff
changeset
|
404 if test x$have_gcc_sse = xyes -o x$have_gcc_sse2 = xyes; then |
c765f5fa4a2c
Default SSE2 off on iX86, since gcc will use it for floating point operations
Sam Lantinga <slouken@libsdl.org>
parents:
2820
diff
changeset
|
405 EXTRA_CFLAGS="$EXTRA_CFLAGS -mfpmath=387" |
c765f5fa4a2c
Default SSE2 off on iX86, since gcc will use it for floating point operations
Sam Lantinga <slouken@libsdl.org>
parents:
2820
diff
changeset
|
406 fi |
c765f5fa4a2c
Default SSE2 off on iX86, since gcc will use it for floating point operations
Sam Lantinga <slouken@libsdl.org>
parents:
2820
diff
changeset
|
407 fi |
c765f5fa4a2c
Default SSE2 off on iX86, since gcc will use it for floating point operations
Sam Lantinga <slouken@libsdl.org>
parents:
2820
diff
changeset
|
408 |
2247
93994f65c74c
Removed hermes since it's LGPL and not compatible with a commercial license.
Sam Lantinga <slouken@libsdl.org>
parents:
2238
diff
changeset
|
409 dnl Check for various instruction support |
93994f65c74c
Removed hermes since it's LGPL and not compatible with a commercial license.
Sam Lantinga <slouken@libsdl.org>
parents:
2238
diff
changeset
|
410 AC_ARG_ENABLE(mmx, |
93994f65c74c
Removed hermes since it's LGPL and not compatible with a commercial license.
Sam Lantinga <slouken@libsdl.org>
parents:
2238
diff
changeset
|
411 AC_HELP_STRING([--enable-mmx], [use MMX assembly routines [[default=yes]]]), |
93994f65c74c
Removed hermes since it's LGPL and not compatible with a commercial license.
Sam Lantinga <slouken@libsdl.org>
parents:
2238
diff
changeset
|
412 , enable_mmx=yes) |
93994f65c74c
Removed hermes since it's LGPL and not compatible with a commercial license.
Sam Lantinga <slouken@libsdl.org>
parents:
2238
diff
changeset
|
413 if test x$enable_mmx = xyes; then |
93994f65c74c
Removed hermes since it's LGPL and not compatible with a commercial license.
Sam Lantinga <slouken@libsdl.org>
parents:
2238
diff
changeset
|
414 save_CFLAGS="$CFLAGS" |
93994f65c74c
Removed hermes since it's LGPL and not compatible with a commercial license.
Sam Lantinga <slouken@libsdl.org>
parents:
2238
diff
changeset
|
415 have_gcc_mmx=no |
93994f65c74c
Removed hermes since it's LGPL and not compatible with a commercial license.
Sam Lantinga <slouken@libsdl.org>
parents:
2238
diff
changeset
|
416 AC_MSG_CHECKING(for GCC -mmmx option) |
93994f65c74c
Removed hermes since it's LGPL and not compatible with a commercial license.
Sam Lantinga <slouken@libsdl.org>
parents:
2238
diff
changeset
|
417 mmx_CFLAGS="-mmmx" |
93994f65c74c
Removed hermes since it's LGPL and not compatible with a commercial license.
Sam Lantinga <slouken@libsdl.org>
parents:
2238
diff
changeset
|
418 CFLAGS="$save_CFLAGS $mmx_CFLAGS" |
93994f65c74c
Removed hermes since it's LGPL and not compatible with a commercial license.
Sam Lantinga <slouken@libsdl.org>
parents:
2238
diff
changeset
|
419 |
93994f65c74c
Removed hermes since it's LGPL and not compatible with a commercial license.
Sam Lantinga <slouken@libsdl.org>
parents:
2238
diff
changeset
|
420 AC_TRY_COMPILE([ |
93994f65c74c
Removed hermes since it's LGPL and not compatible with a commercial license.
Sam Lantinga <slouken@libsdl.org>
parents:
2238
diff
changeset
|
421 #include <mmintrin.h> |
2261
c20476d7d7b3
Enabled 3DNow! intrinsic support
Sam Lantinga <slouken@libsdl.org>
parents:
2247
diff
changeset
|
422 #ifndef __MMX__ |
c20476d7d7b3
Enabled 3DNow! intrinsic support
Sam Lantinga <slouken@libsdl.org>
parents:
2247
diff
changeset
|
423 #error Assembler CPP flag not enabled |
c20476d7d7b3
Enabled 3DNow! intrinsic support
Sam Lantinga <slouken@libsdl.org>
parents:
2247
diff
changeset
|
424 #endif |
2247
93994f65c74c
Removed hermes since it's LGPL and not compatible with a commercial license.
Sam Lantinga <slouken@libsdl.org>
parents:
2238
diff
changeset
|
425 ],[ |
93994f65c74c
Removed hermes since it's LGPL and not compatible with a commercial license.
Sam Lantinga <slouken@libsdl.org>
parents:
2238
diff
changeset
|
426 ],[ |
93994f65c74c
Removed hermes since it's LGPL and not compatible with a commercial license.
Sam Lantinga <slouken@libsdl.org>
parents:
2238
diff
changeset
|
427 have_gcc_mmx=yes |
93994f65c74c
Removed hermes since it's LGPL and not compatible with a commercial license.
Sam Lantinga <slouken@libsdl.org>
parents:
2238
diff
changeset
|
428 ]) |
93994f65c74c
Removed hermes since it's LGPL and not compatible with a commercial license.
Sam Lantinga <slouken@libsdl.org>
parents:
2238
diff
changeset
|
429 AC_MSG_RESULT($have_gcc_mmx) |
2290
323a5af2924b
Christian Walther fixed bug #530
Sam Lantinga <slouken@libsdl.org>
parents:
2271
diff
changeset
|
430 CFLAGS="$save_CFLAGS" |
2247
93994f65c74c
Removed hermes since it's LGPL and not compatible with a commercial license.
Sam Lantinga <slouken@libsdl.org>
parents:
2238
diff
changeset
|
431 |
93994f65c74c
Removed hermes since it's LGPL and not compatible with a commercial license.
Sam Lantinga <slouken@libsdl.org>
parents:
2238
diff
changeset
|
432 if test x$have_gcc_mmx = xyes; then |
93994f65c74c
Removed hermes since it's LGPL and not compatible with a commercial license.
Sam Lantinga <slouken@libsdl.org>
parents:
2238
diff
changeset
|
433 EXTRA_CFLAGS="$EXTRA_CFLAGS $mmx_CFLAGS" |
93994f65c74c
Removed hermes since it's LGPL and not compatible with a commercial license.
Sam Lantinga <slouken@libsdl.org>
parents:
2238
diff
changeset
|
434 fi |
93994f65c74c
Removed hermes since it's LGPL and not compatible with a commercial license.
Sam Lantinga <slouken@libsdl.org>
parents:
2238
diff
changeset
|
435 fi |
93994f65c74c
Removed hermes since it's LGPL and not compatible with a commercial license.
Sam Lantinga <slouken@libsdl.org>
parents:
2238
diff
changeset
|
436 |
2261
c20476d7d7b3
Enabled 3DNow! intrinsic support
Sam Lantinga <slouken@libsdl.org>
parents:
2247
diff
changeset
|
437 AC_ARG_ENABLE(3dnow, |
c20476d7d7b3
Enabled 3DNow! intrinsic support
Sam Lantinga <slouken@libsdl.org>
parents:
2247
diff
changeset
|
438 AC_HELP_STRING([--enable-3dnow], [use MMX assembly routines [[default=yes]]]), |
c20476d7d7b3
Enabled 3DNow! intrinsic support
Sam Lantinga <slouken@libsdl.org>
parents:
2247
diff
changeset
|
439 , enable_3dnow=yes) |
c20476d7d7b3
Enabled 3DNow! intrinsic support
Sam Lantinga <slouken@libsdl.org>
parents:
2247
diff
changeset
|
440 if test x$enable_3dnow = xyes; then |
c20476d7d7b3
Enabled 3DNow! intrinsic support
Sam Lantinga <slouken@libsdl.org>
parents:
2247
diff
changeset
|
441 save_CFLAGS="$CFLAGS" |
c20476d7d7b3
Enabled 3DNow! intrinsic support
Sam Lantinga <slouken@libsdl.org>
parents:
2247
diff
changeset
|
442 have_gcc_3dnow=no |
c20476d7d7b3
Enabled 3DNow! intrinsic support
Sam Lantinga <slouken@libsdl.org>
parents:
2247
diff
changeset
|
443 AC_MSG_CHECKING(for GCC -m3dnow option) |
c20476d7d7b3
Enabled 3DNow! intrinsic support
Sam Lantinga <slouken@libsdl.org>
parents:
2247
diff
changeset
|
444 amd3dnow_CFLAGS="-m3dnow" |
c20476d7d7b3
Enabled 3DNow! intrinsic support
Sam Lantinga <slouken@libsdl.org>
parents:
2247
diff
changeset
|
445 CFLAGS="$save_CFLAGS $amd3dnow_CFLAGS" |
c20476d7d7b3
Enabled 3DNow! intrinsic support
Sam Lantinga <slouken@libsdl.org>
parents:
2247
diff
changeset
|
446 |
c20476d7d7b3
Enabled 3DNow! intrinsic support
Sam Lantinga <slouken@libsdl.org>
parents:
2247
diff
changeset
|
447 AC_TRY_COMPILE([ |
c20476d7d7b3
Enabled 3DNow! intrinsic support
Sam Lantinga <slouken@libsdl.org>
parents:
2247
diff
changeset
|
448 #include <mm3dnow.h> |
c20476d7d7b3
Enabled 3DNow! intrinsic support
Sam Lantinga <slouken@libsdl.org>
parents:
2247
diff
changeset
|
449 #ifndef __3dNOW__ |
c20476d7d7b3
Enabled 3DNow! intrinsic support
Sam Lantinga <slouken@libsdl.org>
parents:
2247
diff
changeset
|
450 #error Assembler CPP flag not enabled |
c20476d7d7b3
Enabled 3DNow! intrinsic support
Sam Lantinga <slouken@libsdl.org>
parents:
2247
diff
changeset
|
451 #endif |
c20476d7d7b3
Enabled 3DNow! intrinsic support
Sam Lantinga <slouken@libsdl.org>
parents:
2247
diff
changeset
|
452 ],[ |
c20476d7d7b3
Enabled 3DNow! intrinsic support
Sam Lantinga <slouken@libsdl.org>
parents:
2247
diff
changeset
|
453 ],[ |
c20476d7d7b3
Enabled 3DNow! intrinsic support
Sam Lantinga <slouken@libsdl.org>
parents:
2247
diff
changeset
|
454 have_gcc_3dnow=yes |
c20476d7d7b3
Enabled 3DNow! intrinsic support
Sam Lantinga <slouken@libsdl.org>
parents:
2247
diff
changeset
|
455 ]) |
c20476d7d7b3
Enabled 3DNow! intrinsic support
Sam Lantinga <slouken@libsdl.org>
parents:
2247
diff
changeset
|
456 AC_MSG_RESULT($have_gcc_3dnow) |
2290
323a5af2924b
Christian Walther fixed bug #530
Sam Lantinga <slouken@libsdl.org>
parents:
2271
diff
changeset
|
457 CFLAGS="$save_CFLAGS" |
2261
c20476d7d7b3
Enabled 3DNow! intrinsic support
Sam Lantinga <slouken@libsdl.org>
parents:
2247
diff
changeset
|
458 |
c20476d7d7b3
Enabled 3DNow! intrinsic support
Sam Lantinga <slouken@libsdl.org>
parents:
2247
diff
changeset
|
459 if test x$have_gcc_3dnow = xyes; then |
c20476d7d7b3
Enabled 3DNow! intrinsic support
Sam Lantinga <slouken@libsdl.org>
parents:
2247
diff
changeset
|
460 EXTRA_CFLAGS="$EXTRA_CFLAGS $amd3dnow_CFLAGS" |
c20476d7d7b3
Enabled 3DNow! intrinsic support
Sam Lantinga <slouken@libsdl.org>
parents:
2247
diff
changeset
|
461 fi |
c20476d7d7b3
Enabled 3DNow! intrinsic support
Sam Lantinga <slouken@libsdl.org>
parents:
2247
diff
changeset
|
462 fi |
c20476d7d7b3
Enabled 3DNow! intrinsic support
Sam Lantinga <slouken@libsdl.org>
parents:
2247
diff
changeset
|
463 |
2247
93994f65c74c
Removed hermes since it's LGPL and not compatible with a commercial license.
Sam Lantinga <slouken@libsdl.org>
parents:
2238
diff
changeset
|
464 AC_ARG_ENABLE(sse, |
93994f65c74c
Removed hermes since it's LGPL and not compatible with a commercial license.
Sam Lantinga <slouken@libsdl.org>
parents:
2238
diff
changeset
|
465 AC_HELP_STRING([--enable-sse], [use SSE assembly routines [[default=yes]]]), |
93994f65c74c
Removed hermes since it's LGPL and not compatible with a commercial license.
Sam Lantinga <slouken@libsdl.org>
parents:
2238
diff
changeset
|
466 , enable_sse=yes) |
93994f65c74c
Removed hermes since it's LGPL and not compatible with a commercial license.
Sam Lantinga <slouken@libsdl.org>
parents:
2238
diff
changeset
|
467 if test x$enable_sse = xyes; then |
93994f65c74c
Removed hermes since it's LGPL and not compatible with a commercial license.
Sam Lantinga <slouken@libsdl.org>
parents:
2238
diff
changeset
|
468 save_CFLAGS="$CFLAGS" |
93994f65c74c
Removed hermes since it's LGPL and not compatible with a commercial license.
Sam Lantinga <slouken@libsdl.org>
parents:
2238
diff
changeset
|
469 have_gcc_sse=no |
93994f65c74c
Removed hermes since it's LGPL and not compatible with a commercial license.
Sam Lantinga <slouken@libsdl.org>
parents:
2238
diff
changeset
|
470 AC_MSG_CHECKING(for GCC -msse option) |
93994f65c74c
Removed hermes since it's LGPL and not compatible with a commercial license.
Sam Lantinga <slouken@libsdl.org>
parents:
2238
diff
changeset
|
471 sse_CFLAGS="-msse" |
93994f65c74c
Removed hermes since it's LGPL and not compatible with a commercial license.
Sam Lantinga <slouken@libsdl.org>
parents:
2238
diff
changeset
|
472 CFLAGS="$save_CFLAGS $sse_CFLAGS" |
93994f65c74c
Removed hermes since it's LGPL and not compatible with a commercial license.
Sam Lantinga <slouken@libsdl.org>
parents:
2238
diff
changeset
|
473 |
93994f65c74c
Removed hermes since it's LGPL and not compatible with a commercial license.
Sam Lantinga <slouken@libsdl.org>
parents:
2238
diff
changeset
|
474 AC_TRY_COMPILE([ |
93994f65c74c
Removed hermes since it's LGPL and not compatible with a commercial license.
Sam Lantinga <slouken@libsdl.org>
parents:
2238
diff
changeset
|
475 #include <xmmintrin.h> |
2261
c20476d7d7b3
Enabled 3DNow! intrinsic support
Sam Lantinga <slouken@libsdl.org>
parents:
2247
diff
changeset
|
476 #ifndef __SSE__ |
c20476d7d7b3
Enabled 3DNow! intrinsic support
Sam Lantinga <slouken@libsdl.org>
parents:
2247
diff
changeset
|
477 #error Assembler CPP flag not enabled |
c20476d7d7b3
Enabled 3DNow! intrinsic support
Sam Lantinga <slouken@libsdl.org>
parents:
2247
diff
changeset
|
478 #endif |
2247
93994f65c74c
Removed hermes since it's LGPL and not compatible with a commercial license.
Sam Lantinga <slouken@libsdl.org>
parents:
2238
diff
changeset
|
479 ],[ |
93994f65c74c
Removed hermes since it's LGPL and not compatible with a commercial license.
Sam Lantinga <slouken@libsdl.org>
parents:
2238
diff
changeset
|
480 ],[ |
93994f65c74c
Removed hermes since it's LGPL and not compatible with a commercial license.
Sam Lantinga <slouken@libsdl.org>
parents:
2238
diff
changeset
|
481 have_gcc_sse=yes |
93994f65c74c
Removed hermes since it's LGPL and not compatible with a commercial license.
Sam Lantinga <slouken@libsdl.org>
parents:
2238
diff
changeset
|
482 ]) |
93994f65c74c
Removed hermes since it's LGPL and not compatible with a commercial license.
Sam Lantinga <slouken@libsdl.org>
parents:
2238
diff
changeset
|
483 AC_MSG_RESULT($have_gcc_sse) |
2290
323a5af2924b
Christian Walther fixed bug #530
Sam Lantinga <slouken@libsdl.org>
parents:
2271
diff
changeset
|
484 CFLAGS="$save_CFLAGS" |
2247
93994f65c74c
Removed hermes since it's LGPL and not compatible with a commercial license.
Sam Lantinga <slouken@libsdl.org>
parents:
2238
diff
changeset
|
485 |
93994f65c74c
Removed hermes since it's LGPL and not compatible with a commercial license.
Sam Lantinga <slouken@libsdl.org>
parents:
2238
diff
changeset
|
486 if test x$have_gcc_sse = xyes; then |
93994f65c74c
Removed hermes since it's LGPL and not compatible with a commercial license.
Sam Lantinga <slouken@libsdl.org>
parents:
2238
diff
changeset
|
487 EXTRA_CFLAGS="$EXTRA_CFLAGS $sse_CFLAGS" |
93994f65c74c
Removed hermes since it's LGPL and not compatible with a commercial license.
Sam Lantinga <slouken@libsdl.org>
parents:
2238
diff
changeset
|
488 fi |
93994f65c74c
Removed hermes since it's LGPL and not compatible with a commercial license.
Sam Lantinga <slouken@libsdl.org>
parents:
2238
diff
changeset
|
489 fi |
93994f65c74c
Removed hermes since it's LGPL and not compatible with a commercial license.
Sam Lantinga <slouken@libsdl.org>
parents:
2238
diff
changeset
|
490 |
2264 | 491 AC_ARG_ENABLE(sse2, |
2856
c765f5fa4a2c
Default SSE2 off on iX86, since gcc will use it for floating point operations
Sam Lantinga <slouken@libsdl.org>
parents:
2820
diff
changeset
|
492 AC_HELP_STRING([--enable-sse2], [use SSE2 assembly routines [[default=no]]]), |
c765f5fa4a2c
Default SSE2 off on iX86, since gcc will use it for floating point operations
Sam Lantinga <slouken@libsdl.org>
parents:
2820
diff
changeset
|
493 , enable_sse2=$default_ssemath) |
2264 | 494 if test x$enable_sse2 = xyes; then |
495 save_CFLAGS="$CFLAGS" | |
496 have_gcc_sse2=no | |
497 AC_MSG_CHECKING(for GCC -msse2 option) | |
498 sse2_CFLAGS="-msse2" | |
499 CFLAGS="$save_CFLAGS $sse2_CFLAGS" | |
500 | |
501 AC_TRY_COMPILE([ | |
502 #include <emmintrin.h> | |
503 #ifndef __SSE2__ | |
504 #error Assembler CPP flag not enabled | |
505 #endif | |
506 ],[ | |
507 ],[ | |
508 have_gcc_sse2=yes | |
509 ]) | |
510 AC_MSG_RESULT($have_gcc_sse2) | |
2290
323a5af2924b
Christian Walther fixed bug #530
Sam Lantinga <slouken@libsdl.org>
parents:
2271
diff
changeset
|
511 CFLAGS="$save_CFLAGS" |
2264 | 512 |
513 if test x$have_gcc_sse2 = xyes; then | |
514 EXTRA_CFLAGS="$EXTRA_CFLAGS $sse2_CFLAGS" | |
515 fi | |
516 fi | |
517 | |
2247
93994f65c74c
Removed hermes since it's LGPL and not compatible with a commercial license.
Sam Lantinga <slouken@libsdl.org>
parents:
2238
diff
changeset
|
518 AC_ARG_ENABLE(altivec, |
93994f65c74c
Removed hermes since it's LGPL and not compatible with a commercial license.
Sam Lantinga <slouken@libsdl.org>
parents:
2238
diff
changeset
|
519 AC_HELP_STRING([--enable-altivec], [use Altivec assembly routines [[default=yes]]]), |
93994f65c74c
Removed hermes since it's LGPL and not compatible with a commercial license.
Sam Lantinga <slouken@libsdl.org>
parents:
2238
diff
changeset
|
520 , enable_altivec=yes) |
93994f65c74c
Removed hermes since it's LGPL and not compatible with a commercial license.
Sam Lantinga <slouken@libsdl.org>
parents:
2238
diff
changeset
|
521 if test x$enable_altivec = xyes; then |
93994f65c74c
Removed hermes since it's LGPL and not compatible with a commercial license.
Sam Lantinga <slouken@libsdl.org>
parents:
2238
diff
changeset
|
522 save_CFLAGS="$CFLAGS" |
93994f65c74c
Removed hermes since it's LGPL and not compatible with a commercial license.
Sam Lantinga <slouken@libsdl.org>
parents:
2238
diff
changeset
|
523 have_gcc_altivec=no |
3390
802e5d85b90c
Debian patch: 050_altivec_detection.diff
Sam Lantinga <slouken@libsdl.org>
parents:
3388
diff
changeset
|
524 have_altivec_h_hdr=no |
2247
93994f65c74c
Removed hermes since it's LGPL and not compatible with a commercial license.
Sam Lantinga <slouken@libsdl.org>
parents:
2238
diff
changeset
|
525 altivec_CFLAGS="-maltivec" |
93994f65c74c
Removed hermes since it's LGPL and not compatible with a commercial license.
Sam Lantinga <slouken@libsdl.org>
parents:
2238
diff
changeset
|
526 CFLAGS="$save_CFLAGS $altivec_CFLAGS" |
93994f65c74c
Removed hermes since it's LGPL and not compatible with a commercial license.
Sam Lantinga <slouken@libsdl.org>
parents:
2238
diff
changeset
|
527 |
3390
802e5d85b90c
Debian patch: 050_altivec_detection.diff
Sam Lantinga <slouken@libsdl.org>
parents:
3388
diff
changeset
|
528 AC_MSG_CHECKING(for Altivec with GCC altivec.h and -maltivec option) |
802e5d85b90c
Debian patch: 050_altivec_detection.diff
Sam Lantinga <slouken@libsdl.org>
parents:
3388
diff
changeset
|
529 AC_TRY_COMPILE([ |
802e5d85b90c
Debian patch: 050_altivec_detection.diff
Sam Lantinga <slouken@libsdl.org>
parents:
3388
diff
changeset
|
530 #include <altivec.h> |
802e5d85b90c
Debian patch: 050_altivec_detection.diff
Sam Lantinga <slouken@libsdl.org>
parents:
3388
diff
changeset
|
531 vector unsigned int vzero() { |
802e5d85b90c
Debian patch: 050_altivec_detection.diff
Sam Lantinga <slouken@libsdl.org>
parents:
3388
diff
changeset
|
532 return vec_splat_u32(0); |
802e5d85b90c
Debian patch: 050_altivec_detection.diff
Sam Lantinga <slouken@libsdl.org>
parents:
3388
diff
changeset
|
533 } |
802e5d85b90c
Debian patch: 050_altivec_detection.diff
Sam Lantinga <slouken@libsdl.org>
parents:
3388
diff
changeset
|
534 ],[ |
802e5d85b90c
Debian patch: 050_altivec_detection.diff
Sam Lantinga <slouken@libsdl.org>
parents:
3388
diff
changeset
|
535 ],[ |
802e5d85b90c
Debian patch: 050_altivec_detection.diff
Sam Lantinga <slouken@libsdl.org>
parents:
3388
diff
changeset
|
536 have_gcc_altivec=yes |
802e5d85b90c
Debian patch: 050_altivec_detection.diff
Sam Lantinga <slouken@libsdl.org>
parents:
3388
diff
changeset
|
537 have_altivec_h_hdr=yes |
802e5d85b90c
Debian patch: 050_altivec_detection.diff
Sam Lantinga <slouken@libsdl.org>
parents:
3388
diff
changeset
|
538 ]) |
802e5d85b90c
Debian patch: 050_altivec_detection.diff
Sam Lantinga <slouken@libsdl.org>
parents:
3388
diff
changeset
|
539 AC_MSG_RESULT($have_gcc_altivec) |
802e5d85b90c
Debian patch: 050_altivec_detection.diff
Sam Lantinga <slouken@libsdl.org>
parents:
3388
diff
changeset
|
540 |
802e5d85b90c
Debian patch: 050_altivec_detection.diff
Sam Lantinga <slouken@libsdl.org>
parents:
3388
diff
changeset
|
541 if test x$have_gcc_altivec = xno; then |
802e5d85b90c
Debian patch: 050_altivec_detection.diff
Sam Lantinga <slouken@libsdl.org>
parents:
3388
diff
changeset
|
542 AC_MSG_CHECKING(for Altivec with GCC -maltivec option) |
802e5d85b90c
Debian patch: 050_altivec_detection.diff
Sam Lantinga <slouken@libsdl.org>
parents:
3388
diff
changeset
|
543 AC_TRY_COMPILE([ |
802e5d85b90c
Debian patch: 050_altivec_detection.diff
Sam Lantinga <slouken@libsdl.org>
parents:
3388
diff
changeset
|
544 vector unsigned int vzero() { |
802e5d85b90c
Debian patch: 050_altivec_detection.diff
Sam Lantinga <slouken@libsdl.org>
parents:
3388
diff
changeset
|
545 return vec_splat_u32(0); |
802e5d85b90c
Debian patch: 050_altivec_detection.diff
Sam Lantinga <slouken@libsdl.org>
parents:
3388
diff
changeset
|
546 } |
802e5d85b90c
Debian patch: 050_altivec_detection.diff
Sam Lantinga <slouken@libsdl.org>
parents:
3388
diff
changeset
|
547 ],[ |
802e5d85b90c
Debian patch: 050_altivec_detection.diff
Sam Lantinga <slouken@libsdl.org>
parents:
3388
diff
changeset
|
548 ],[ |
802e5d85b90c
Debian patch: 050_altivec_detection.diff
Sam Lantinga <slouken@libsdl.org>
parents:
3388
diff
changeset
|
549 have_gcc_altivec=yes |
802e5d85b90c
Debian patch: 050_altivec_detection.diff
Sam Lantinga <slouken@libsdl.org>
parents:
3388
diff
changeset
|
550 ]) |
802e5d85b90c
Debian patch: 050_altivec_detection.diff
Sam Lantinga <slouken@libsdl.org>
parents:
3388
diff
changeset
|
551 AC_MSG_RESULT($have_gcc_altivec) |
2247
93994f65c74c
Removed hermes since it's LGPL and not compatible with a commercial license.
Sam Lantinga <slouken@libsdl.org>
parents:
2238
diff
changeset
|
552 fi |
93994f65c74c
Removed hermes since it's LGPL and not compatible with a commercial license.
Sam Lantinga <slouken@libsdl.org>
parents:
2238
diff
changeset
|
553 |
93994f65c74c
Removed hermes since it's LGPL and not compatible with a commercial license.
Sam Lantinga <slouken@libsdl.org>
parents:
2238
diff
changeset
|
554 if test x$have_gcc_altivec = xno; then |
3390
802e5d85b90c
Debian patch: 050_altivec_detection.diff
Sam Lantinga <slouken@libsdl.org>
parents:
3388
diff
changeset
|
555 AC_MSG_CHECKING(for Altivec with GCC altivec.h and -faltivec option) |
802e5d85b90c
Debian patch: 050_altivec_detection.diff
Sam Lantinga <slouken@libsdl.org>
parents:
3388
diff
changeset
|
556 altivec_CFLAGS="-faltivec" |
802e5d85b90c
Debian patch: 050_altivec_detection.diff
Sam Lantinga <slouken@libsdl.org>
parents:
3388
diff
changeset
|
557 CFLAGS="$save_CFLAGS $altivec_CFLAGS" |
802e5d85b90c
Debian patch: 050_altivec_detection.diff
Sam Lantinga <slouken@libsdl.org>
parents:
3388
diff
changeset
|
558 AC_TRY_COMPILE([ |
802e5d85b90c
Debian patch: 050_altivec_detection.diff
Sam Lantinga <slouken@libsdl.org>
parents:
3388
diff
changeset
|
559 #include <altivec.h> |
802e5d85b90c
Debian patch: 050_altivec_detection.diff
Sam Lantinga <slouken@libsdl.org>
parents:
3388
diff
changeset
|
560 vector unsigned int vzero() { |
802e5d85b90c
Debian patch: 050_altivec_detection.diff
Sam Lantinga <slouken@libsdl.org>
parents:
3388
diff
changeset
|
561 return vec_splat_u32(0); |
802e5d85b90c
Debian patch: 050_altivec_detection.diff
Sam Lantinga <slouken@libsdl.org>
parents:
3388
diff
changeset
|
562 } |
802e5d85b90c
Debian patch: 050_altivec_detection.diff
Sam Lantinga <slouken@libsdl.org>
parents:
3388
diff
changeset
|
563 ],[ |
802e5d85b90c
Debian patch: 050_altivec_detection.diff
Sam Lantinga <slouken@libsdl.org>
parents:
3388
diff
changeset
|
564 ],[ |
802e5d85b90c
Debian patch: 050_altivec_detection.diff
Sam Lantinga <slouken@libsdl.org>
parents:
3388
diff
changeset
|
565 have_gcc_altivec=yes |
802e5d85b90c
Debian patch: 050_altivec_detection.diff
Sam Lantinga <slouken@libsdl.org>
parents:
3388
diff
changeset
|
566 have_altivec_h_hdr=yes |
802e5d85b90c
Debian patch: 050_altivec_detection.diff
Sam Lantinga <slouken@libsdl.org>
parents:
3388
diff
changeset
|
567 ]) |
802e5d85b90c
Debian patch: 050_altivec_detection.diff
Sam Lantinga <slouken@libsdl.org>
parents:
3388
diff
changeset
|
568 AC_MSG_RESULT($have_gcc_altivec) |
3392
efc22582afc5
Only show the dynamic audio libraries if we'll be dynamically loading them
Sam Lantinga <slouken@libsdl.org>
parents:
3391
diff
changeset
|
569 fi |
3390
802e5d85b90c
Debian patch: 050_altivec_detection.diff
Sam Lantinga <slouken@libsdl.org>
parents:
3388
diff
changeset
|
570 |
802e5d85b90c
Debian patch: 050_altivec_detection.diff
Sam Lantinga <slouken@libsdl.org>
parents:
3388
diff
changeset
|
571 if test x$have_gcc_altivec = xno; then |
2247
93994f65c74c
Removed hermes since it's LGPL and not compatible with a commercial license.
Sam Lantinga <slouken@libsdl.org>
parents:
2238
diff
changeset
|
572 AC_MSG_CHECKING(for Altivec with GCC -faltivec option) |
3390
802e5d85b90c
Debian patch: 050_altivec_detection.diff
Sam Lantinga <slouken@libsdl.org>
parents:
3388
diff
changeset
|
573 AC_TRY_COMPILE([ |
802e5d85b90c
Debian patch: 050_altivec_detection.diff
Sam Lantinga <slouken@libsdl.org>
parents:
3388
diff
changeset
|
574 vector unsigned int vzero() { |
802e5d85b90c
Debian patch: 050_altivec_detection.diff
Sam Lantinga <slouken@libsdl.org>
parents:
3388
diff
changeset
|
575 return vec_splat_u32(0); |
802e5d85b90c
Debian patch: 050_altivec_detection.diff
Sam Lantinga <slouken@libsdl.org>
parents:
3388
diff
changeset
|
576 } |
802e5d85b90c
Debian patch: 050_altivec_detection.diff
Sam Lantinga <slouken@libsdl.org>
parents:
3388
diff
changeset
|
577 ],[ |
802e5d85b90c
Debian patch: 050_altivec_detection.diff
Sam Lantinga <slouken@libsdl.org>
parents:
3388
diff
changeset
|
578 ],[ |
802e5d85b90c
Debian patch: 050_altivec_detection.diff
Sam Lantinga <slouken@libsdl.org>
parents:
3388
diff
changeset
|
579 have_gcc_altivec=yes |
802e5d85b90c
Debian patch: 050_altivec_detection.diff
Sam Lantinga <slouken@libsdl.org>
parents:
3388
diff
changeset
|
580 ]) |
802e5d85b90c
Debian patch: 050_altivec_detection.diff
Sam Lantinga <slouken@libsdl.org>
parents:
3388
diff
changeset
|
581 AC_MSG_RESULT($have_gcc_altivec) |
2247
93994f65c74c
Removed hermes since it's LGPL and not compatible with a commercial license.
Sam Lantinga <slouken@libsdl.org>
parents:
2238
diff
changeset
|
582 fi |
93994f65c74c
Removed hermes since it's LGPL and not compatible with a commercial license.
Sam Lantinga <slouken@libsdl.org>
parents:
2238
diff
changeset
|
583 CFLAGS="$save_CFLAGS" |
93994f65c74c
Removed hermes since it's LGPL and not compatible with a commercial license.
Sam Lantinga <slouken@libsdl.org>
parents:
2238
diff
changeset
|
584 |
93994f65c74c
Removed hermes since it's LGPL and not compatible with a commercial license.
Sam Lantinga <slouken@libsdl.org>
parents:
2238
diff
changeset
|
585 if test x$have_gcc_altivec = xyes; then |
93994f65c74c
Removed hermes since it's LGPL and not compatible with a commercial license.
Sam Lantinga <slouken@libsdl.org>
parents:
2238
diff
changeset
|
586 AC_DEFINE(SDL_ALTIVEC_BLITTERS) |
93994f65c74c
Removed hermes since it's LGPL and not compatible with a commercial license.
Sam Lantinga <slouken@libsdl.org>
parents:
2238
diff
changeset
|
587 if test x$have_altivec_h_hdr = xyes; then |
93994f65c74c
Removed hermes since it's LGPL and not compatible with a commercial license.
Sam Lantinga <slouken@libsdl.org>
parents:
2238
diff
changeset
|
588 AC_DEFINE(HAVE_ALTIVEC_H) |
93994f65c74c
Removed hermes since it's LGPL and not compatible with a commercial license.
Sam Lantinga <slouken@libsdl.org>
parents:
2238
diff
changeset
|
589 fi |
93994f65c74c
Removed hermes since it's LGPL and not compatible with a commercial license.
Sam Lantinga <slouken@libsdl.org>
parents:
2238
diff
changeset
|
590 EXTRA_CFLAGS="$EXTRA_CFLAGS $altivec_CFLAGS" |
93994f65c74c
Removed hermes since it's LGPL and not compatible with a commercial license.
Sam Lantinga <slouken@libsdl.org>
parents:
2238
diff
changeset
|
591 fi |
93994f65c74c
Removed hermes since it's LGPL and not compatible with a commercial license.
Sam Lantinga <slouken@libsdl.org>
parents:
2238
diff
changeset
|
592 fi |
740
e70f80e98f60
Actually hook the cpuinfo module into the library. :)
Sam Lantinga <slouken@libsdl.org>
parents:
739
diff
changeset
|
593 fi |
0 | 594 |
595 dnl See if the OSS audio interface is supported | |
596 CheckOSS() | |
597 { | |
598 AC_ARG_ENABLE(oss, | |
1637
9ba366b919c7
Date: Fri, 31 Mar 2006 18:28:55 -0500
Sam Lantinga <slouken@libsdl.org>
parents:
1632
diff
changeset
|
599 AC_HELP_STRING([--enable-oss], [support the OSS audio API [[default=yes]]]), |
0 | 600 , enable_oss=yes) |
601 if test x$enable_audio = xyes -a x$enable_oss = xyes; then | |
602 AC_MSG_CHECKING(for OSS audio support) | |
603 have_oss=no | |
94
ae6e6b73333f
Cleaned up the OpenBSD port, thanks to Peter Valchev
Sam Lantinga <slouken@lokigames.com>
parents:
86
diff
changeset
|
604 if test x$have_oss != xyes; then |
ae6e6b73333f
Cleaned up the OpenBSD port, thanks to Peter Valchev
Sam Lantinga <slouken@lokigames.com>
parents:
86
diff
changeset
|
605 AC_TRY_COMPILE([ |
ae6e6b73333f
Cleaned up the OpenBSD port, thanks to Peter Valchev
Sam Lantinga <slouken@lokigames.com>
parents:
86
diff
changeset
|
606 #include <sys/soundcard.h> |
ae6e6b73333f
Cleaned up the OpenBSD port, thanks to Peter Valchev
Sam Lantinga <slouken@lokigames.com>
parents:
86
diff
changeset
|
607 ],[ |
ae6e6b73333f
Cleaned up the OpenBSD port, thanks to Peter Valchev
Sam Lantinga <slouken@lokigames.com>
parents:
86
diff
changeset
|
608 int arg = SNDCTL_DSP_SETFRAGMENT; |
ae6e6b73333f
Cleaned up the OpenBSD port, thanks to Peter Valchev
Sam Lantinga <slouken@lokigames.com>
parents:
86
diff
changeset
|
609 ],[ |
ae6e6b73333f
Cleaned up the OpenBSD port, thanks to Peter Valchev
Sam Lantinga <slouken@lokigames.com>
parents:
86
diff
changeset
|
610 have_oss=yes |
ae6e6b73333f
Cleaned up the OpenBSD port, thanks to Peter Valchev
Sam Lantinga <slouken@lokigames.com>
parents:
86
diff
changeset
|
611 ]) |
ae6e6b73333f
Cleaned up the OpenBSD port, thanks to Peter Valchev
Sam Lantinga <slouken@lokigames.com>
parents:
86
diff
changeset
|
612 fi |
ae6e6b73333f
Cleaned up the OpenBSD port, thanks to Peter Valchev
Sam Lantinga <slouken@lokigames.com>
parents:
86
diff
changeset
|
613 if test x$have_oss != xyes; then |
ae6e6b73333f
Cleaned up the OpenBSD port, thanks to Peter Valchev
Sam Lantinga <slouken@lokigames.com>
parents:
86
diff
changeset
|
614 AC_TRY_COMPILE([ |
ae6e6b73333f
Cleaned up the OpenBSD port, thanks to Peter Valchev
Sam Lantinga <slouken@lokigames.com>
parents:
86
diff
changeset
|
615 #include <soundcard.h> |
ae6e6b73333f
Cleaned up the OpenBSD port, thanks to Peter Valchev
Sam Lantinga <slouken@lokigames.com>
parents:
86
diff
changeset
|
616 ],[ |
ae6e6b73333f
Cleaned up the OpenBSD port, thanks to Peter Valchev
Sam Lantinga <slouken@lokigames.com>
parents:
86
diff
changeset
|
617 int arg = SNDCTL_DSP_SETFRAGMENT; |
ae6e6b73333f
Cleaned up the OpenBSD port, thanks to Peter Valchev
Sam Lantinga <slouken@lokigames.com>
parents:
86
diff
changeset
|
618 ],[ |
ae6e6b73333f
Cleaned up the OpenBSD port, thanks to Peter Valchev
Sam Lantinga <slouken@lokigames.com>
parents:
86
diff
changeset
|
619 have_oss=yes |
1361
19418e4422cb
New configure-based build system. Still work in progress, but much improved
Sam Lantinga <slouken@libsdl.org>
parents:
1354
diff
changeset
|
620 AC_DEFINE(SDL_AUDIO_DRIVER_OSS_SOUNDCARD_H) |
94
ae6e6b73333f
Cleaned up the OpenBSD port, thanks to Peter Valchev
Sam Lantinga <slouken@lokigames.com>
parents:
86
diff
changeset
|
621 ]) |
ae6e6b73333f
Cleaned up the OpenBSD port, thanks to Peter Valchev
Sam Lantinga <slouken@lokigames.com>
parents:
86
diff
changeset
|
622 fi |
0 | 623 AC_MSG_RESULT($have_oss) |
624 if test x$have_oss = xyes; then | |
1361
19418e4422cb
New configure-based build system. Still work in progress, but much improved
Sam Lantinga <slouken@libsdl.org>
parents:
1354
diff
changeset
|
625 AC_DEFINE(SDL_AUDIO_DRIVER_OSS) |
19418e4422cb
New configure-based build system. Still work in progress, but much improved
Sam Lantinga <slouken@libsdl.org>
parents:
1354
diff
changeset
|
626 SOURCES="$SOURCES $srcdir/src/audio/dsp/*.c" |
19418e4422cb
New configure-based build system. Still work in progress, but much improved
Sam Lantinga <slouken@libsdl.org>
parents:
1354
diff
changeset
|
627 SOURCES="$SOURCES $srcdir/src/audio/dma/*.c" |
19418e4422cb
New configure-based build system. Still work in progress, but much improved
Sam Lantinga <slouken@libsdl.org>
parents:
1354
diff
changeset
|
628 have_audio=yes |
19418e4422cb
New configure-based build system. Still work in progress, but much improved
Sam Lantinga <slouken@libsdl.org>
parents:
1354
diff
changeset
|
629 |
1565 | 630 # We may need to link with ossaudio emulation library |
1550 | 631 case "$host" in |
1383 | 632 *-*-openbsd*|*-*-netbsd*) |
1521
9b9212e4810c
CFLAGS are separate from EXTRA_CFLAGS
Sam Lantinga <slouken@libsdl.org>
parents:
1520
diff
changeset
|
633 EXTRA_LDFLAGS="$EXTRA_LDFLAGS -lossaudio";; |
1361
19418e4422cb
New configure-based build system. Still work in progress, but much improved
Sam Lantinga <slouken@libsdl.org>
parents:
1354
diff
changeset
|
634 esac |
0 | 635 fi |
636 fi | |
637 } | |
638 | |
639 dnl See if the ALSA audio interface is supported | |
640 CheckALSA() | |
641 { | |
642 AC_ARG_ENABLE(alsa, | |
1637
9ba366b919c7
Date: Fri, 31 Mar 2006 18:28:55 -0500
Sam Lantinga <slouken@libsdl.org>
parents:
1632
diff
changeset
|
643 AC_HELP_STRING([--enable-alsa], [support the ALSA audio API [[default=yes]]]), |
0 | 644 , enable_alsa=yes) |
645 if test x$enable_audio = xyes -a x$enable_alsa = xyes; then | |
948
ac488ad4ef1d
Don't fail if we don't have ALSA available
Sam Lantinga <slouken@libsdl.org>
parents:
939
diff
changeset
|
646 AM_PATH_ALSA(0.9.0, have_alsa=yes, have_alsa=no) |
1009
027688378762
No really, don't link with the ALSA library!
Sam Lantinga <slouken@libsdl.org>
parents:
991
diff
changeset
|
647 # Restore all flags from before the ALSA detection runs |
027688378762
No really, don't link with the ALSA library!
Sam Lantinga <slouken@libsdl.org>
parents:
991
diff
changeset
|
648 CFLAGS="$alsa_save_CFLAGS" |
027688378762
No really, don't link with the ALSA library!
Sam Lantinga <slouken@libsdl.org>
parents:
991
diff
changeset
|
649 LDFLAGS="$alsa_save_LDFLAGS" |
027688378762
No really, don't link with the ALSA library!
Sam Lantinga <slouken@libsdl.org>
parents:
991
diff
changeset
|
650 LIBS="$alsa_save_LIBS" |
354
30935e76acb5
Updated ALSA audio support for ALSA 0.9
Sam Lantinga <slouken@libsdl.org>
parents:
350
diff
changeset
|
651 if test x$have_alsa = xyes; then |
865
92615154bb68
Date: Sun, 29 Feb 2004 15:14:22 +0200
Sam Lantinga <slouken@libsdl.org>
parents:
856
diff
changeset
|
652 AC_ARG_ENABLE(alsa-shared, |
1637
9ba366b919c7
Date: Fri, 31 Mar 2006 18:28:55 -0500
Sam Lantinga <slouken@libsdl.org>
parents:
1632
diff
changeset
|
653 AC_HELP_STRING([--enable-alsa-shared], [dynamically load ALSA audio support [[default=yes]]]), |
1361
19418e4422cb
New configure-based build system. Still work in progress, but much improved
Sam Lantinga <slouken@libsdl.org>
parents:
1354
diff
changeset
|
654 , enable_alsa_shared=yes) |
3391
188fc5ecc58c
Simplify and improve dynamic library detection, taken from SDL_image
Sam Lantinga <slouken@libsdl.org>
parents:
3390
diff
changeset
|
655 alsa_lib=[`find_lib "libasound.so.*" "$ALSA_LIBS" | sed 's/.*\/\(.*\)/\1/; q'`] |
1361
19418e4422cb
New configure-based build system. Still work in progress, but much improved
Sam Lantinga <slouken@libsdl.org>
parents:
1354
diff
changeset
|
656 |
19418e4422cb
New configure-based build system. Still work in progress, but much improved
Sam Lantinga <slouken@libsdl.org>
parents:
1354
diff
changeset
|
657 AC_DEFINE(SDL_AUDIO_DRIVER_ALSA) |
19418e4422cb
New configure-based build system. Still work in progress, but much improved
Sam Lantinga <slouken@libsdl.org>
parents:
1354
diff
changeset
|
658 SOURCES="$SOURCES $srcdir/src/audio/alsa/*.c" |
1521
9b9212e4810c
CFLAGS are separate from EXTRA_CFLAGS
Sam Lantinga <slouken@libsdl.org>
parents:
1520
diff
changeset
|
659 EXTRA_CFLAGS="$EXTRA_CFLAGS $ALSA_CFLAGS" |
1361
19418e4422cb
New configure-based build system. Still work in progress, but much improved
Sam Lantinga <slouken@libsdl.org>
parents:
1354
diff
changeset
|
660 if test x$have_loadso != xyes && \ |
19418e4422cb
New configure-based build system. Still work in progress, but much improved
Sam Lantinga <slouken@libsdl.org>
parents:
1354
diff
changeset
|
661 test x$enable_alsa_shared = xyes; then |
1467
b69f2b0309a0
Removed accidentally copied/pasted script for ALSA detection
Sam Lantinga <slouken@libsdl.org>
parents:
1459
diff
changeset
|
662 AC_MSG_WARN([You must have SDL_LoadObject() support for dynamic ALSA loading]) |
1361
19418e4422cb
New configure-based build system. Still work in progress, but much improved
Sam Lantinga <slouken@libsdl.org>
parents:
1354
diff
changeset
|
663 fi |
19418e4422cb
New configure-based build system. Still work in progress, but much improved
Sam Lantinga <slouken@libsdl.org>
parents:
1354
diff
changeset
|
664 if test x$have_loadso = xyes && \ |
19418e4422cb
New configure-based build system. Still work in progress, but much improved
Sam Lantinga <slouken@libsdl.org>
parents:
1354
diff
changeset
|
665 test x$enable_alsa_shared = xyes && test x$alsa_lib != x; then |
3392
efc22582afc5
Only show the dynamic audio libraries if we'll be dynamically loading them
Sam Lantinga <slouken@libsdl.org>
parents:
3391
diff
changeset
|
666 echo "-- dynamic libasound -> $alsa_lib" |
1361
19418e4422cb
New configure-based build system. Still work in progress, but much improved
Sam Lantinga <slouken@libsdl.org>
parents:
1354
diff
changeset
|
667 AC_DEFINE_UNQUOTED(SDL_AUDIO_DRIVER_ALSA_DYNAMIC, "$alsa_lib") |
19418e4422cb
New configure-based build system. Still work in progress, but much improved
Sam Lantinga <slouken@libsdl.org>
parents:
1354
diff
changeset
|
668 else |
1521
9b9212e4810c
CFLAGS are separate from EXTRA_CFLAGS
Sam Lantinga <slouken@libsdl.org>
parents:
1520
diff
changeset
|
669 EXTRA_LDFLAGS="$EXTRA_LDFLAGS $ALSA_LIBS" |
1361
19418e4422cb
New configure-based build system. Still work in progress, but much improved
Sam Lantinga <slouken@libsdl.org>
parents:
1354
diff
changeset
|
670 fi |
19418e4422cb
New configure-based build system. Still work in progress, but much improved
Sam Lantinga <slouken@libsdl.org>
parents:
1354
diff
changeset
|
671 have_audio=yes |
19418e4422cb
New configure-based build system. Still work in progress, but much improved
Sam Lantinga <slouken@libsdl.org>
parents:
1354
diff
changeset
|
672 fi |
19418e4422cb
New configure-based build system. Still work in progress, but much improved
Sam Lantinga <slouken@libsdl.org>
parents:
1354
diff
changeset
|
673 fi |
0 | 674 } |
675 | |
148
8758b8d42cd9
Audio subsystem no longer assumes sun audio API on UNIX systems
Sam Lantinga <slouken@libsdl.org>
parents:
144
diff
changeset
|
676 dnl Check whether we want to use IRIX 6.5+ native audio or not |
8758b8d42cd9
Audio subsystem no longer assumes sun audio API on UNIX systems
Sam Lantinga <slouken@libsdl.org>
parents:
144
diff
changeset
|
677 CheckDMEDIA() |
8758b8d42cd9
Audio subsystem no longer assumes sun audio API on UNIX systems
Sam Lantinga <slouken@libsdl.org>
parents:
144
diff
changeset
|
678 { |
8758b8d42cd9
Audio subsystem no longer assumes sun audio API on UNIX systems
Sam Lantinga <slouken@libsdl.org>
parents:
144
diff
changeset
|
679 if test x$enable_audio = xyes; then |
8758b8d42cd9
Audio subsystem no longer assumes sun audio API on UNIX systems
Sam Lantinga <slouken@libsdl.org>
parents:
144
diff
changeset
|
680 AC_MSG_CHECKING(for dmedia audio support) |
8758b8d42cd9
Audio subsystem no longer assumes sun audio API on UNIX systems
Sam Lantinga <slouken@libsdl.org>
parents:
144
diff
changeset
|
681 have_dmedia=no |
8758b8d42cd9
Audio subsystem no longer assumes sun audio API on UNIX systems
Sam Lantinga <slouken@libsdl.org>
parents:
144
diff
changeset
|
682 AC_TRY_COMPILE([ |
8758b8d42cd9
Audio subsystem no longer assumes sun audio API on UNIX systems
Sam Lantinga <slouken@libsdl.org>
parents:
144
diff
changeset
|
683 #include <dmedia/audio.h> |
8758b8d42cd9
Audio subsystem no longer assumes sun audio API on UNIX systems
Sam Lantinga <slouken@libsdl.org>
parents:
144
diff
changeset
|
684 ],[ |
8758b8d42cd9
Audio subsystem no longer assumes sun audio API on UNIX systems
Sam Lantinga <slouken@libsdl.org>
parents:
144
diff
changeset
|
685 ALport audio_port; |
8758b8d42cd9
Audio subsystem no longer assumes sun audio API on UNIX systems
Sam Lantinga <slouken@libsdl.org>
parents:
144
diff
changeset
|
686 ],[ |
8758b8d42cd9
Audio subsystem no longer assumes sun audio API on UNIX systems
Sam Lantinga <slouken@libsdl.org>
parents:
144
diff
changeset
|
687 have_dmedia=yes |
8758b8d42cd9
Audio subsystem no longer assumes sun audio API on UNIX systems
Sam Lantinga <slouken@libsdl.org>
parents:
144
diff
changeset
|
688 ]) |
935
f8d5ddc7aef1
Audio improvements from Max Horn, including a new CoreAudio driver for MacOSX
Sam Lantinga <slouken@libsdl.org>
parents:
886
diff
changeset
|
689 AC_MSG_RESULT($have_dmedia) |
148
8758b8d42cd9
Audio subsystem no longer assumes sun audio API on UNIX systems
Sam Lantinga <slouken@libsdl.org>
parents:
144
diff
changeset
|
690 # Set up files for the audio library |
8758b8d42cd9
Audio subsystem no longer assumes sun audio API on UNIX systems
Sam Lantinga <slouken@libsdl.org>
parents:
144
diff
changeset
|
691 if test x$have_dmedia = xyes; then |
1361
19418e4422cb
New configure-based build system. Still work in progress, but much improved
Sam Lantinga <slouken@libsdl.org>
parents:
1354
diff
changeset
|
692 AC_DEFINE(SDL_AUDIO_DRIVER_DMEDIA) |
19418e4422cb
New configure-based build system. Still work in progress, but much improved
Sam Lantinga <slouken@libsdl.org>
parents:
1354
diff
changeset
|
693 SOURCES="$SOURCES $srcdir/src/audio/dmedia/*.c" |
1521
9b9212e4810c
CFLAGS are separate from EXTRA_CFLAGS
Sam Lantinga <slouken@libsdl.org>
parents:
1520
diff
changeset
|
694 EXTRA_LDFLAGS="$EXTRA_LDFLAGS -laudio" |
1361
19418e4422cb
New configure-based build system. Still work in progress, but much improved
Sam Lantinga <slouken@libsdl.org>
parents:
1354
diff
changeset
|
695 have_audio=yes |
148
8758b8d42cd9
Audio subsystem no longer assumes sun audio API on UNIX systems
Sam Lantinga <slouken@libsdl.org>
parents:
144
diff
changeset
|
696 fi |
8758b8d42cd9
Audio subsystem no longer assumes sun audio API on UNIX systems
Sam Lantinga <slouken@libsdl.org>
parents:
144
diff
changeset
|
697 fi |
8758b8d42cd9
Audio subsystem no longer assumes sun audio API on UNIX systems
Sam Lantinga <slouken@libsdl.org>
parents:
144
diff
changeset
|
698 } |
8758b8d42cd9
Audio subsystem no longer assumes sun audio API on UNIX systems
Sam Lantinga <slouken@libsdl.org>
parents:
144
diff
changeset
|
699 |
1438
1f4f09641645
Date: Sun, 26 Feb 2006 11:25:09 +0900
Sam Lantinga <slouken@libsdl.org>
parents:
1402
diff
changeset
|
700 dnl Check whether we want to use Tru64 UNIX native audio or not |
1f4f09641645
Date: Sun, 26 Feb 2006 11:25:09 +0900
Sam Lantinga <slouken@libsdl.org>
parents:
1402
diff
changeset
|
701 CheckMME() |
1f4f09641645
Date: Sun, 26 Feb 2006 11:25:09 +0900
Sam Lantinga <slouken@libsdl.org>
parents:
1402
diff
changeset
|
702 { |
1f4f09641645
Date: Sun, 26 Feb 2006 11:25:09 +0900
Sam Lantinga <slouken@libsdl.org>
parents:
1402
diff
changeset
|
703 dnl Make sure we are running on an Tru64 UNIX |
1f4f09641645
Date: Sun, 26 Feb 2006 11:25:09 +0900
Sam Lantinga <slouken@libsdl.org>
parents:
1402
diff
changeset
|
704 case $ARCH in |
1f4f09641645
Date: Sun, 26 Feb 2006 11:25:09 +0900
Sam Lantinga <slouken@libsdl.org>
parents:
1402
diff
changeset
|
705 osf) |
1f4f09641645
Date: Sun, 26 Feb 2006 11:25:09 +0900
Sam Lantinga <slouken@libsdl.org>
parents:
1402
diff
changeset
|
706 ;; |
1f4f09641645
Date: Sun, 26 Feb 2006 11:25:09 +0900
Sam Lantinga <slouken@libsdl.org>
parents:
1402
diff
changeset
|
707 *) |
1f4f09641645
Date: Sun, 26 Feb 2006 11:25:09 +0900
Sam Lantinga <slouken@libsdl.org>
parents:
1402
diff
changeset
|
708 return |
1f4f09641645
Date: Sun, 26 Feb 2006 11:25:09 +0900
Sam Lantinga <slouken@libsdl.org>
parents:
1402
diff
changeset
|
709 ;; |
1f4f09641645
Date: Sun, 26 Feb 2006 11:25:09 +0900
Sam Lantinga <slouken@libsdl.org>
parents:
1402
diff
changeset
|
710 esac |
1f4f09641645
Date: Sun, 26 Feb 2006 11:25:09 +0900
Sam Lantinga <slouken@libsdl.org>
parents:
1402
diff
changeset
|
711 if test x$enable_audio = xyes; then |
1f4f09641645
Date: Sun, 26 Feb 2006 11:25:09 +0900
Sam Lantinga <slouken@libsdl.org>
parents:
1402
diff
changeset
|
712 AC_MSG_CHECKING(for MME audio support) |
1f4f09641645
Date: Sun, 26 Feb 2006 11:25:09 +0900
Sam Lantinga <slouken@libsdl.org>
parents:
1402
diff
changeset
|
713 MME_CFLAGS="-I/usr/include/mme" |
1f4f09641645
Date: Sun, 26 Feb 2006 11:25:09 +0900
Sam Lantinga <slouken@libsdl.org>
parents:
1402
diff
changeset
|
714 MME_LIBS="-lmme" |
1f4f09641645
Date: Sun, 26 Feb 2006 11:25:09 +0900
Sam Lantinga <slouken@libsdl.org>
parents:
1402
diff
changeset
|
715 have_mme=no |
1f4f09641645
Date: Sun, 26 Feb 2006 11:25:09 +0900
Sam Lantinga <slouken@libsdl.org>
parents:
1402
diff
changeset
|
716 save_CFLAGS="$CFLAGS" |
1f4f09641645
Date: Sun, 26 Feb 2006 11:25:09 +0900
Sam Lantinga <slouken@libsdl.org>
parents:
1402
diff
changeset
|
717 CFLAGS="$CFLAGS $MME_CFLAGS" |
1f4f09641645
Date: Sun, 26 Feb 2006 11:25:09 +0900
Sam Lantinga <slouken@libsdl.org>
parents:
1402
diff
changeset
|
718 AC_TRY_COMPILE([ |
1f4f09641645
Date: Sun, 26 Feb 2006 11:25:09 +0900
Sam Lantinga <slouken@libsdl.org>
parents:
1402
diff
changeset
|
719 #include <mme_api.h> |
1f4f09641645
Date: Sun, 26 Feb 2006 11:25:09 +0900
Sam Lantinga <slouken@libsdl.org>
parents:
1402
diff
changeset
|
720 ],[ |
1f4f09641645
Date: Sun, 26 Feb 2006 11:25:09 +0900
Sam Lantinga <slouken@libsdl.org>
parents:
1402
diff
changeset
|
721 HWAVEOUT sound; |
1f4f09641645
Date: Sun, 26 Feb 2006 11:25:09 +0900
Sam Lantinga <slouken@libsdl.org>
parents:
1402
diff
changeset
|
722 ],[ |
1f4f09641645
Date: Sun, 26 Feb 2006 11:25:09 +0900
Sam Lantinga <slouken@libsdl.org>
parents:
1402
diff
changeset
|
723 have_mme=yes |
1f4f09641645
Date: Sun, 26 Feb 2006 11:25:09 +0900
Sam Lantinga <slouken@libsdl.org>
parents:
1402
diff
changeset
|
724 ]) |
1f4f09641645
Date: Sun, 26 Feb 2006 11:25:09 +0900
Sam Lantinga <slouken@libsdl.org>
parents:
1402
diff
changeset
|
725 CFLAGS="$save_CFLAGS" |
1f4f09641645
Date: Sun, 26 Feb 2006 11:25:09 +0900
Sam Lantinga <slouken@libsdl.org>
parents:
1402
diff
changeset
|
726 AC_MSG_RESULT($have_mme) |
1f4f09641645
Date: Sun, 26 Feb 2006 11:25:09 +0900
Sam Lantinga <slouken@libsdl.org>
parents:
1402
diff
changeset
|
727 # Set up files for the audio library |
1f4f09641645
Date: Sun, 26 Feb 2006 11:25:09 +0900
Sam Lantinga <slouken@libsdl.org>
parents:
1402
diff
changeset
|
728 if test x$have_mme = xyes; then |
1f4f09641645
Date: Sun, 26 Feb 2006 11:25:09 +0900
Sam Lantinga <slouken@libsdl.org>
parents:
1402
diff
changeset
|
729 AC_DEFINE(SDL_AUDIO_DRIVER_MMEAUDIO) |
1f4f09641645
Date: Sun, 26 Feb 2006 11:25:09 +0900
Sam Lantinga <slouken@libsdl.org>
parents:
1402
diff
changeset
|
730 SOURCES="$SOURCES $srcdir/src/audio/mme/*.c" |
1521
9b9212e4810c
CFLAGS are separate from EXTRA_CFLAGS
Sam Lantinga <slouken@libsdl.org>
parents:
1520
diff
changeset
|
731 EXTRA_CFLAGS="$EXTRA_CFLAGS $MME_CFLAGS" |
9b9212e4810c
CFLAGS are separate from EXTRA_CFLAGS
Sam Lantinga <slouken@libsdl.org>
parents:
1520
diff
changeset
|
732 EXTRA_LDFLAGS="$EXTRA_LDFLAGS $MME_LIBS" |
1438
1f4f09641645
Date: Sun, 26 Feb 2006 11:25:09 +0900
Sam Lantinga <slouken@libsdl.org>
parents:
1402
diff
changeset
|
733 have_audio=yes |
1f4f09641645
Date: Sun, 26 Feb 2006 11:25:09 +0900
Sam Lantinga <slouken@libsdl.org>
parents:
1402
diff
changeset
|
734 fi |
1f4f09641645
Date: Sun, 26 Feb 2006 11:25:09 +0900
Sam Lantinga <slouken@libsdl.org>
parents:
1402
diff
changeset
|
735 fi |
1f4f09641645
Date: Sun, 26 Feb 2006 11:25:09 +0900
Sam Lantinga <slouken@libsdl.org>
parents:
1402
diff
changeset
|
736 } |
1f4f09641645
Date: Sun, 26 Feb 2006 11:25:09 +0900
Sam Lantinga <slouken@libsdl.org>
parents:
1402
diff
changeset
|
737 |
0 | 738 dnl Find the ESD includes and libraries |
739 CheckESD() | |
740 { | |
741 AC_ARG_ENABLE(esd, | |
1637
9ba366b919c7
Date: Fri, 31 Mar 2006 18:28:55 -0500
Sam Lantinga <slouken@libsdl.org>
parents:
1632
diff
changeset
|
742 AC_HELP_STRING([--enable-esd], [support the Enlightened Sound Daemon [[default=yes]]]), |
0 | 743 , enable_esd=yes) |
744 if test x$enable_audio = xyes -a x$enable_esd = xyes; then | |
948
ac488ad4ef1d
Don't fail if we don't have ALSA available
Sam Lantinga <slouken@libsdl.org>
parents:
939
diff
changeset
|
745 AM_PATH_ESD(0.2.8, have_esd=yes, have_esd=no) |
ac488ad4ef1d
Don't fail if we don't have ALSA available
Sam Lantinga <slouken@libsdl.org>
parents:
939
diff
changeset
|
746 if test x$have_esd = xyes; then |
294
d2d48e10f370
Added a new header file: SDL_loadso.h
Sam Lantinga <slouken@libsdl.org>
parents:
292
diff
changeset
|
747 AC_ARG_ENABLE(esd-shared, |
1637
9ba366b919c7
Date: Fri, 31 Mar 2006 18:28:55 -0500
Sam Lantinga <slouken@libsdl.org>
parents:
1632
diff
changeset
|
748 AC_HELP_STRING([--enable-esd-shared], [dynamically load ESD audio support [[default=yes]]]), |
678
7f691fa4c1c7
Turn dynamic loading of esd and arts on by default
Sam Lantinga <slouken@libsdl.org>
parents:
675
diff
changeset
|
749 , enable_esd_shared=yes) |
3391
188fc5ecc58c
Simplify and improve dynamic library detection, taken from SDL_image
Sam Lantinga <slouken@libsdl.org>
parents:
3390
diff
changeset
|
750 esd_lib=[`find_lib "libesd.so.*" "$ESD_LIBS" | sed 's/.*\/\(.*\)/\1/; q'`] |
1467
b69f2b0309a0
Removed accidentally copied/pasted script for ALSA detection
Sam Lantinga <slouken@libsdl.org>
parents:
1459
diff
changeset
|
751 |
b69f2b0309a0
Removed accidentally copied/pasted script for ALSA detection
Sam Lantinga <slouken@libsdl.org>
parents:
1459
diff
changeset
|
752 AC_DEFINE(SDL_AUDIO_DRIVER_ESD) |
b69f2b0309a0
Removed accidentally copied/pasted script for ALSA detection
Sam Lantinga <slouken@libsdl.org>
parents:
1459
diff
changeset
|
753 SOURCES="$SOURCES $srcdir/src/audio/esd/*.c" |
1521
9b9212e4810c
CFLAGS are separate from EXTRA_CFLAGS
Sam Lantinga <slouken@libsdl.org>
parents:
1520
diff
changeset
|
754 EXTRA_CFLAGS="$EXTRA_CFLAGS $ESD_CFLAGS" |
1173
e9cf8c1b4590
Split up src/SDL_loadso.c into platform directories.
Ryan C. Gordon <icculus@icculus.org>
parents:
1170
diff
changeset
|
755 if test x$have_loadso != xyes && \ |
296
fab1ddc4d7bf
Removed the API changes to preserve SDL 1.2 stability
Sam Lantinga <slouken@libsdl.org>
parents:
295
diff
changeset
|
756 test x$enable_esd_shared = xyes; then |
1467
b69f2b0309a0
Removed accidentally copied/pasted script for ALSA detection
Sam Lantinga <slouken@libsdl.org>
parents:
1459
diff
changeset
|
757 AC_MSG_WARN([You must have SDL_LoadObject() support for dynamic ESD loading]) |
296
fab1ddc4d7bf
Removed the API changes to preserve SDL 1.2 stability
Sam Lantinga <slouken@libsdl.org>
parents:
295
diff
changeset
|
758 fi |
1173
e9cf8c1b4590
Split up src/SDL_loadso.c into platform directories.
Ryan C. Gordon <icculus@icculus.org>
parents:
1170
diff
changeset
|
759 if test x$have_loadso = xyes && \ |
294
d2d48e10f370
Added a new header file: SDL_loadso.h
Sam Lantinga <slouken@libsdl.org>
parents:
292
diff
changeset
|
760 test x$enable_esd_shared = xyes && test x$esd_lib != x; then |
3392
efc22582afc5
Only show the dynamic audio libraries if we'll be dynamically loading them
Sam Lantinga <slouken@libsdl.org>
parents:
3391
diff
changeset
|
761 echo "-- dynamic libesd -> $esd_lib" |
1361
19418e4422cb
New configure-based build system. Still work in progress, but much improved
Sam Lantinga <slouken@libsdl.org>
parents:
1354
diff
changeset
|
762 AC_DEFINE_UNQUOTED(SDL_AUDIO_DRIVER_ESD_DYNAMIC, "$esd_lib") |
1467
b69f2b0309a0
Removed accidentally copied/pasted script for ALSA detection
Sam Lantinga <slouken@libsdl.org>
parents:
1459
diff
changeset
|
763 else |
1521
9b9212e4810c
CFLAGS are separate from EXTRA_CFLAGS
Sam Lantinga <slouken@libsdl.org>
parents:
1520
diff
changeset
|
764 EXTRA_LDFLAGS="$EXTRA_LDFLAGS $ESD_LIBS" |
294
d2d48e10f370
Added a new header file: SDL_loadso.h
Sam Lantinga <slouken@libsdl.org>
parents:
292
diff
changeset
|
765 fi |
1361
19418e4422cb
New configure-based build system. Still work in progress, but much improved
Sam Lantinga <slouken@libsdl.org>
parents:
1354
diff
changeset
|
766 have_audio=yes |
294
d2d48e10f370
Added a new header file: SDL_loadso.h
Sam Lantinga <slouken@libsdl.org>
parents:
292
diff
changeset
|
767 fi |
0 | 768 fi |
769 } | |
770 | |
2271
60b4c52a7906
Ported PulseAudio target from 1.2 to 1.3 interfaces, and added it to the trunk.
Ryan C. Gordon <icculus@icculus.org>
parents:
2264
diff
changeset
|
771 dnl Find PulseAudio |
60b4c52a7906
Ported PulseAudio target from 1.2 to 1.3 interfaces, and added it to the trunk.
Ryan C. Gordon <icculus@icculus.org>
parents:
2264
diff
changeset
|
772 CheckPulseAudio() |
60b4c52a7906
Ported PulseAudio target from 1.2 to 1.3 interfaces, and added it to the trunk.
Ryan C. Gordon <icculus@icculus.org>
parents:
2264
diff
changeset
|
773 { |
60b4c52a7906
Ported PulseAudio target from 1.2 to 1.3 interfaces, and added it to the trunk.
Ryan C. Gordon <icculus@icculus.org>
parents:
2264
diff
changeset
|
774 AC_ARG_ENABLE(pulseaudio, |
60b4c52a7906
Ported PulseAudio target from 1.2 to 1.3 interfaces, and added it to the trunk.
Ryan C. Gordon <icculus@icculus.org>
parents:
2264
diff
changeset
|
775 AC_HELP_STRING([--enable-pulseaudio], [use PulseAudio [[default=yes]]]), |
60b4c52a7906
Ported PulseAudio target from 1.2 to 1.3 interfaces, and added it to the trunk.
Ryan C. Gordon <icculus@icculus.org>
parents:
2264
diff
changeset
|
776 , enable_pulseaudio=yes) |
60b4c52a7906
Ported PulseAudio target from 1.2 to 1.3 interfaces, and added it to the trunk.
Ryan C. Gordon <icculus@icculus.org>
parents:
2264
diff
changeset
|
777 if test x$enable_audio = xyes -a x$enable_pulseaudio = xyes; then |
60b4c52a7906
Ported PulseAudio target from 1.2 to 1.3 interfaces, and added it to the trunk.
Ryan C. Gordon <icculus@icculus.org>
parents:
2264
diff
changeset
|
778 audio_pulseaudio=no |
60b4c52a7906
Ported PulseAudio target from 1.2 to 1.3 interfaces, and added it to the trunk.
Ryan C. Gordon <icculus@icculus.org>
parents:
2264
diff
changeset
|
779 |
60b4c52a7906
Ported PulseAudio target from 1.2 to 1.3 interfaces, and added it to the trunk.
Ryan C. Gordon <icculus@icculus.org>
parents:
2264
diff
changeset
|
780 PULSEAUDIO_REQUIRED_VERSION=0.9 |
60b4c52a7906
Ported PulseAudio target from 1.2 to 1.3 interfaces, and added it to the trunk.
Ryan C. Gordon <icculus@icculus.org>
parents:
2264
diff
changeset
|
781 |
60b4c52a7906
Ported PulseAudio target from 1.2 to 1.3 interfaces, and added it to the trunk.
Ryan C. Gordon <icculus@icculus.org>
parents:
2264
diff
changeset
|
782 AC_PATH_PROG(PKG_CONFIG, pkg-config, no) |
60b4c52a7906
Ported PulseAudio target from 1.2 to 1.3 interfaces, and added it to the trunk.
Ryan C. Gordon <icculus@icculus.org>
parents:
2264
diff
changeset
|
783 AC_MSG_CHECKING(for PulseAudio $PULSEAUDIO_REQUIRED_VERSION support) |
60b4c52a7906
Ported PulseAudio target from 1.2 to 1.3 interfaces, and added it to the trunk.
Ryan C. Gordon <icculus@icculus.org>
parents:
2264
diff
changeset
|
784 if test x$PKG_CONFIG != xno; then |
60b4c52a7906
Ported PulseAudio target from 1.2 to 1.3 interfaces, and added it to the trunk.
Ryan C. Gordon <icculus@icculus.org>
parents:
2264
diff
changeset
|
785 if $PKG_CONFIG --atleast-pkgconfig-version 0.7 && $PKG_CONFIG --atleast-version $PULSEAUDIO_REQUIRED_VERSION libpulse-simple; then |
60b4c52a7906
Ported PulseAudio target from 1.2 to 1.3 interfaces, and added it to the trunk.
Ryan C. Gordon <icculus@icculus.org>
parents:
2264
diff
changeset
|
786 PULSEAUDIO_CFLAGS=`$PKG_CONFIG --cflags libpulse-simple` |
60b4c52a7906
Ported PulseAudio target from 1.2 to 1.3 interfaces, and added it to the trunk.
Ryan C. Gordon <icculus@icculus.org>
parents:
2264
diff
changeset
|
787 PULSEAUDIO_LIBS=`$PKG_CONFIG --libs libpulse-simple` |
60b4c52a7906
Ported PulseAudio target from 1.2 to 1.3 interfaces, and added it to the trunk.
Ryan C. Gordon <icculus@icculus.org>
parents:
2264
diff
changeset
|
788 audio_pulseaudio=yes |
3391
188fc5ecc58c
Simplify and improve dynamic library detection, taken from SDL_image
Sam Lantinga <slouken@libsdl.org>
parents:
3390
diff
changeset
|
789 fi |
2271
60b4c52a7906
Ported PulseAudio target from 1.2 to 1.3 interfaces, and added it to the trunk.
Ryan C. Gordon <icculus@icculus.org>
parents:
2264
diff
changeset
|
790 fi |
60b4c52a7906
Ported PulseAudio target from 1.2 to 1.3 interfaces, and added it to the trunk.
Ryan C. Gordon <icculus@icculus.org>
parents:
2264
diff
changeset
|
791 AC_MSG_RESULT($audio_pulseaudio) |
60b4c52a7906
Ported PulseAudio target from 1.2 to 1.3 interfaces, and added it to the trunk.
Ryan C. Gordon <icculus@icculus.org>
parents:
2264
diff
changeset
|
792 |
60b4c52a7906
Ported PulseAudio target from 1.2 to 1.3 interfaces, and added it to the trunk.
Ryan C. Gordon <icculus@icculus.org>
parents:
2264
diff
changeset
|
793 if test x$audio_pulseaudio = xyes; then |
60b4c52a7906
Ported PulseAudio target from 1.2 to 1.3 interfaces, and added it to the trunk.
Ryan C. Gordon <icculus@icculus.org>
parents:
2264
diff
changeset
|
794 AC_ARG_ENABLE(pulseaudio-shared, |
60b4c52a7906
Ported PulseAudio target from 1.2 to 1.3 interfaces, and added it to the trunk.
Ryan C. Gordon <icculus@icculus.org>
parents:
2264
diff
changeset
|
795 AC_HELP_STRING([--enable-pulseaudio-shared], [dynamically load PulseAudio support [[default=yes]]]), |
60b4c52a7906
Ported PulseAudio target from 1.2 to 1.3 interfaces, and added it to the trunk.
Ryan C. Gordon <icculus@icculus.org>
parents:
2264
diff
changeset
|
796 , enable_pulseaudio_shared=yes) |
3391
188fc5ecc58c
Simplify and improve dynamic library detection, taken from SDL_image
Sam Lantinga <slouken@libsdl.org>
parents:
3390
diff
changeset
|
797 pulseaudio_lib=[`find_lib "libpulse-simple.so.*" "$PULSEAUDIO_LIBS" | sed 's/.*\/\(.*\)/\1/; q'`] |
2271
60b4c52a7906
Ported PulseAudio target from 1.2 to 1.3 interfaces, and added it to the trunk.
Ryan C. Gordon <icculus@icculus.org>
parents:
2264
diff
changeset
|
798 |
60b4c52a7906
Ported PulseAudio target from 1.2 to 1.3 interfaces, and added it to the trunk.
Ryan C. Gordon <icculus@icculus.org>
parents:
2264
diff
changeset
|
799 AC_DEFINE(SDL_AUDIO_DRIVER_PULSEAUDIO) |
60b4c52a7906
Ported PulseAudio target from 1.2 to 1.3 interfaces, and added it to the trunk.
Ryan C. Gordon <icculus@icculus.org>
parents:
2264
diff
changeset
|
800 SOURCES="$SOURCES $srcdir/src/audio/pulseaudio/*.c" |
60b4c52a7906
Ported PulseAudio target from 1.2 to 1.3 interfaces, and added it to the trunk.
Ryan C. Gordon <icculus@icculus.org>
parents:
2264
diff
changeset
|
801 EXTRA_CFLAGS="$EXTRA_CFLAGS $PULSEAUDIO_CFLAGS" |
60b4c52a7906
Ported PulseAudio target from 1.2 to 1.3 interfaces, and added it to the trunk.
Ryan C. Gordon <icculus@icculus.org>
parents:
2264
diff
changeset
|
802 if test x$have_loadso != xyes && \ |
60b4c52a7906
Ported PulseAudio target from 1.2 to 1.3 interfaces, and added it to the trunk.
Ryan C. Gordon <icculus@icculus.org>
parents:
2264
diff
changeset
|
803 test x$enable_pulseaudio_shared = xyes; then |
60b4c52a7906
Ported PulseAudio target from 1.2 to 1.3 interfaces, and added it to the trunk.
Ryan C. Gordon <icculus@icculus.org>
parents:
2264
diff
changeset
|
804 AC_MSG_WARN([You must have SDL_LoadObject() support for dynamic PulseAudio loading]) |
60b4c52a7906
Ported PulseAudio target from 1.2 to 1.3 interfaces, and added it to the trunk.
Ryan C. Gordon <icculus@icculus.org>
parents:
2264
diff
changeset
|
805 fi |
60b4c52a7906
Ported PulseAudio target from 1.2 to 1.3 interfaces, and added it to the trunk.
Ryan C. Gordon <icculus@icculus.org>
parents:
2264
diff
changeset
|
806 if test x$have_loadso = xyes && \ |
60b4c52a7906
Ported PulseAudio target from 1.2 to 1.3 interfaces, and added it to the trunk.
Ryan C. Gordon <icculus@icculus.org>
parents:
2264
diff
changeset
|
807 test x$enable_pulseaudio_shared = xyes && test x$pulseaudio_lib != x; then |
3392
efc22582afc5
Only show the dynamic audio libraries if we'll be dynamically loading them
Sam Lantinga <slouken@libsdl.org>
parents:
3391
diff
changeset
|
808 echo "-- dynamic libpulse-simple -> $pulseaudio_lib" |
2271
60b4c52a7906
Ported PulseAudio target from 1.2 to 1.3 interfaces, and added it to the trunk.
Ryan C. Gordon <icculus@icculus.org>
parents:
2264
diff
changeset
|
809 AC_DEFINE_UNQUOTED(SDL_AUDIO_DRIVER_PULSEAUDIO_DYNAMIC, "$pulseaudio_lib") |
60b4c52a7906
Ported PulseAudio target from 1.2 to 1.3 interfaces, and added it to the trunk.
Ryan C. Gordon <icculus@icculus.org>
parents:
2264
diff
changeset
|
810 else |
60b4c52a7906
Ported PulseAudio target from 1.2 to 1.3 interfaces, and added it to the trunk.
Ryan C. Gordon <icculus@icculus.org>
parents:
2264
diff
changeset
|
811 EXTRA_LDFLAGS="$EXTRA_LDFLAGS $PULSEAUDIO_LIBS" |
60b4c52a7906
Ported PulseAudio target from 1.2 to 1.3 interfaces, and added it to the trunk.
Ryan C. Gordon <icculus@icculus.org>
parents:
2264
diff
changeset
|
812 fi |
60b4c52a7906
Ported PulseAudio target from 1.2 to 1.3 interfaces, and added it to the trunk.
Ryan C. Gordon <icculus@icculus.org>
parents:
2264
diff
changeset
|
813 have_audio=yes |
60b4c52a7906
Ported PulseAudio target from 1.2 to 1.3 interfaces, and added it to the trunk.
Ryan C. Gordon <icculus@icculus.org>
parents:
2264
diff
changeset
|
814 fi |
60b4c52a7906
Ported PulseAudio target from 1.2 to 1.3 interfaces, and added it to the trunk.
Ryan C. Gordon <icculus@icculus.org>
parents:
2264
diff
changeset
|
815 fi |
60b4c52a7906
Ported PulseAudio target from 1.2 to 1.3 interfaces, and added it to the trunk.
Ryan C. Gordon <icculus@icculus.org>
parents:
2264
diff
changeset
|
816 } |
60b4c52a7906
Ported PulseAudio target from 1.2 to 1.3 interfaces, and added it to the trunk.
Ryan C. Gordon <icculus@icculus.org>
parents:
2264
diff
changeset
|
817 |
0 | 818 CheckARTSC() |
819 { | |
820 AC_ARG_ENABLE(arts, | |
1637
9ba366b919c7
Date: Fri, 31 Mar 2006 18:28:55 -0500
Sam Lantinga <slouken@libsdl.org>
parents:
1632
diff
changeset
|
821 AC_HELP_STRING([--enable-arts], [support the Analog Real Time Synthesizer [[default=yes]]]), |
0 | 822 , enable_arts=yes) |
823 if test x$enable_audio = xyes -a x$enable_arts = xyes; then | |
1361
19418e4422cb
New configure-based build system. Still work in progress, but much improved
Sam Lantinga <slouken@libsdl.org>
parents:
1354
diff
changeset
|
824 AC_PATH_PROG(ARTSCONFIG, artsc-config) |
19418e4422cb
New configure-based build system. Still work in progress, but much improved
Sam Lantinga <slouken@libsdl.org>
parents:
1354
diff
changeset
|
825 if test x$ARTSCONFIG = x -o x$ARTSCONFIG = x'"$ARTSCONFIG"'; then |
0 | 826 : # arts isn't installed |
827 else | |
1361
19418e4422cb
New configure-based build system. Still work in progress, but much improved
Sam Lantinga <slouken@libsdl.org>
parents:
1354
diff
changeset
|
828 ARTS_CFLAGS=`$ARTSCONFIG --cflags` |
19418e4422cb
New configure-based build system. Still work in progress, but much improved
Sam Lantinga <slouken@libsdl.org>
parents:
1354
diff
changeset
|
829 ARTS_LIBS=`$ARTSCONFIG --libs` |
0 | 830 AC_MSG_CHECKING(for aRts development environment) |
831 audio_arts=no | |
832 save_CFLAGS="$CFLAGS" | |
1361
19418e4422cb
New configure-based build system. Still work in progress, but much improved
Sam Lantinga <slouken@libsdl.org>
parents:
1354
diff
changeset
|
833 CFLAGS="$CFLAGS $ARTS_CFLAGS" |
0 | 834 AC_TRY_COMPILE([ |
835 #include <artsc.h> | |
836 ],[ | |
837 arts_stream_t stream; | |
838 ],[ | |
839 audio_arts=yes | |
840 ]) | |
841 CFLAGS="$save_CFLAGS" | |
842 AC_MSG_RESULT($audio_arts) | |
843 if test x$audio_arts = xyes; then | |
294
d2d48e10f370
Added a new header file: SDL_loadso.h
Sam Lantinga <slouken@libsdl.org>
parents:
292
diff
changeset
|
844 AC_ARG_ENABLE(arts-shared, |
1637
9ba366b919c7
Date: Fri, 31 Mar 2006 18:28:55 -0500
Sam Lantinga <slouken@libsdl.org>
parents:
1632
diff
changeset
|
845 AC_HELP_STRING([--enable-arts-shared], [dynamically load aRts audio support [[default=yes]]]), |
678
7f691fa4c1c7
Turn dynamic loading of esd and arts on by default
Sam Lantinga <slouken@libsdl.org>
parents:
675
diff
changeset
|
846 , enable_arts_shared=yes) |
3391
188fc5ecc58c
Simplify and improve dynamic library detection, taken from SDL_image
Sam Lantinga <slouken@libsdl.org>
parents:
3390
diff
changeset
|
847 arts_lib=[`find_lib "libartsc.so.*" "$ARTS_LIBS" | sed 's/.*\/\(.*\)/\1/; q'`] |
1467
b69f2b0309a0
Removed accidentally copied/pasted script for ALSA detection
Sam Lantinga <slouken@libsdl.org>
parents:
1459
diff
changeset
|
848 |
b69f2b0309a0
Removed accidentally copied/pasted script for ALSA detection
Sam Lantinga <slouken@libsdl.org>
parents:
1459
diff
changeset
|
849 AC_DEFINE(SDL_AUDIO_DRIVER_ARTS) |
b69f2b0309a0
Removed accidentally copied/pasted script for ALSA detection
Sam Lantinga <slouken@libsdl.org>
parents:
1459
diff
changeset
|
850 SOURCES="$SOURCES $srcdir/src/audio/arts/*.c" |
1521
9b9212e4810c
CFLAGS are separate from EXTRA_CFLAGS
Sam Lantinga <slouken@libsdl.org>
parents:
1520
diff
changeset
|
851 EXTRA_CFLAGS="$EXTRA_CFLAGS $ARTS_CFLAGS" |
1173
e9cf8c1b4590
Split up src/SDL_loadso.c into platform directories.
Ryan C. Gordon <icculus@icculus.org>
parents:
1170
diff
changeset
|
852 if test x$have_loadso != xyes && \ |
296
fab1ddc4d7bf
Removed the API changes to preserve SDL 1.2 stability
Sam Lantinga <slouken@libsdl.org>
parents:
295
diff
changeset
|
853 test x$enable_arts_shared = xyes; then |
1467
b69f2b0309a0
Removed accidentally copied/pasted script for ALSA detection
Sam Lantinga <slouken@libsdl.org>
parents:
1459
diff
changeset
|
854 AC_MSG_WARN([You must have SDL_LoadObject() support for dynamic ARTS loading]) |
296
fab1ddc4d7bf
Removed the API changes to preserve SDL 1.2 stability
Sam Lantinga <slouken@libsdl.org>
parents:
295
diff
changeset
|
855 fi |
1173
e9cf8c1b4590
Split up src/SDL_loadso.c into platform directories.
Ryan C. Gordon <icculus@icculus.org>
parents:
1170
diff
changeset
|
856 if test x$have_loadso = xyes && \ |
294
d2d48e10f370
Added a new header file: SDL_loadso.h
Sam Lantinga <slouken@libsdl.org>
parents:
292
diff
changeset
|
857 test x$enable_arts_shared = xyes && test x$arts_lib != x; then |
3392
efc22582afc5
Only show the dynamic audio libraries if we'll be dynamically loading them
Sam Lantinga <slouken@libsdl.org>
parents:
3391
diff
changeset
|
858 echo "-- dynamic libartsc -> $arts_lib" |
1361
19418e4422cb
New configure-based build system. Still work in progress, but much improved
Sam Lantinga <slouken@libsdl.org>
parents:
1354
diff
changeset
|
859 AC_DEFINE_UNQUOTED(SDL_AUDIO_DRIVER_ARTS_DYNAMIC, "$arts_lib") |
1467
b69f2b0309a0
Removed accidentally copied/pasted script for ALSA detection
Sam Lantinga <slouken@libsdl.org>
parents:
1459
diff
changeset
|
860 else |
1521
9b9212e4810c
CFLAGS are separate from EXTRA_CFLAGS
Sam Lantinga <slouken@libsdl.org>
parents:
1520
diff
changeset
|
861 EXTRA_LDFLAGS="$EXTRA_LDFLAGS $ARTS_LIBS" |
294
d2d48e10f370
Added a new header file: SDL_loadso.h
Sam Lantinga <slouken@libsdl.org>
parents:
292
diff
changeset
|
862 fi |
1361
19418e4422cb
New configure-based build system. Still work in progress, but much improved
Sam Lantinga <slouken@libsdl.org>
parents:
1354
diff
changeset
|
863 have_audio=yes |
0 | 864 fi |
865 fi | |
866 fi | |
867 } | |
868 | |
869 dnl See if the NAS audio interface is supported | |
870 CheckNAS() | |
871 { | |
872 AC_ARG_ENABLE(nas, | |
1637
9ba366b919c7
Date: Fri, 31 Mar 2006 18:28:55 -0500
Sam Lantinga <slouken@libsdl.org>
parents:
1632
diff
changeset
|
873 AC_HELP_STRING([--enable-nas], [support the NAS audio API [[default=yes]]]), |
41
8de9e8baaecc
*** empty log message ***
Sam Lantinga <slouken@lokigames.com>
parents:
39
diff
changeset
|
874 , enable_nas=yes) |
0 | 875 if test x$enable_audio = xyes -a x$enable_nas = xyes; then |
2049
5f6550e5184f
Merged SDL-ryan-multiple-audio-device branch r2803:2871 into the trunk.
Ryan C. Gordon <icculus@icculus.org>
parents:
2040
diff
changeset
|
876 AC_CHECK_HEADER(audio/audiolib.h, have_nas_hdr=yes) |
5f6550e5184f
Merged SDL-ryan-multiple-audio-device branch r2803:2871 into the trunk.
Ryan C. Gordon <icculus@icculus.org>
parents:
2040
diff
changeset
|
877 AC_CHECK_LIB(audio, AuOpenServer, have_nas_lib=yes) |
5f6550e5184f
Merged SDL-ryan-multiple-audio-device branch r2803:2871 into the trunk.
Ryan C. Gordon <icculus@icculus.org>
parents:
2040
diff
changeset
|
878 |
41
8de9e8baaecc
*** empty log message ***
Sam Lantinga <slouken@lokigames.com>
parents:
39
diff
changeset
|
879 AC_MSG_CHECKING(for NAS audio support) |
8de9e8baaecc
*** empty log message ***
Sam Lantinga <slouken@lokigames.com>
parents:
39
diff
changeset
|
880 have_nas=no |
2049
5f6550e5184f
Merged SDL-ryan-multiple-audio-device branch r2803:2871 into the trunk.
Ryan C. Gordon <icculus@icculus.org>
parents:
2040
diff
changeset
|
881 |
5f6550e5184f
Merged SDL-ryan-multiple-audio-device branch r2803:2871 into the trunk.
Ryan C. Gordon <icculus@icculus.org>
parents:
2040
diff
changeset
|
882 if test x$have_nas_hdr = xyes -a x$have_nas_lib = xyes; then |
5f6550e5184f
Merged SDL-ryan-multiple-audio-device branch r2803:2871 into the trunk.
Ryan C. Gordon <icculus@icculus.org>
parents:
2040
diff
changeset
|
883 have_nas=yes |
5f6550e5184f
Merged SDL-ryan-multiple-audio-device branch r2803:2871 into the trunk.
Ryan C. Gordon <icculus@icculus.org>
parents:
2040
diff
changeset
|
884 NAS_LIBS="-laudio" |
5f6550e5184f
Merged SDL-ryan-multiple-audio-device branch r2803:2871 into the trunk.
Ryan C. Gordon <icculus@icculus.org>
parents:
2040
diff
changeset
|
885 |
5f6550e5184f
Merged SDL-ryan-multiple-audio-device branch r2803:2871 into the trunk.
Ryan C. Gordon <icculus@icculus.org>
parents:
2040
diff
changeset
|
886 elif test -r /usr/X11R6/include/audio/audiolib.h; then |
41
8de9e8baaecc
*** empty log message ***
Sam Lantinga <slouken@lokigames.com>
parents:
39
diff
changeset
|
887 have_nas=yes |
1361
19418e4422cb
New configure-based build system. Still work in progress, but much improved
Sam Lantinga <slouken@libsdl.org>
parents:
1354
diff
changeset
|
888 NAS_CFLAGS="-I/usr/X11R6/include/" |
1520
5d264facfd03
Add the NAS library directory, since X11 is dynamically loaded now...
Sam Lantinga <slouken@libsdl.org>
parents:
1512
diff
changeset
|
889 NAS_LIBS="-L/usr/X11R6/lib -laudio -lXt" |
605
6399f4e90211
IRIX patches from Andrea Suatoni
Sam Lantinga <slouken@libsdl.org>
parents:
599
diff
changeset
|
890 |
6399f4e90211
IRIX patches from Andrea Suatoni
Sam Lantinga <slouken@libsdl.org>
parents:
599
diff
changeset
|
891 dnl On IRIX, the NAS includes are in a different directory, |
6399f4e90211
IRIX patches from Andrea Suatoni
Sam Lantinga <slouken@libsdl.org>
parents:
599
diff
changeset
|
892 dnl and libnas must be explicitly linked in |
6399f4e90211
IRIX patches from Andrea Suatoni
Sam Lantinga <slouken@libsdl.org>
parents:
599
diff
changeset
|
893 |
6399f4e90211
IRIX patches from Andrea Suatoni
Sam Lantinga <slouken@libsdl.org>
parents:
599
diff
changeset
|
894 elif test -r /usr/freeware/include/nas/audiolib.h; then |
6399f4e90211
IRIX patches from Andrea Suatoni
Sam Lantinga <slouken@libsdl.org>
parents:
599
diff
changeset
|
895 have_nas=yes |
1361
19418e4422cb
New configure-based build system. Still work in progress, but much improved
Sam Lantinga <slouken@libsdl.org>
parents:
1354
diff
changeset
|
896 NAS_LIBS="-lnas -lXt" |
41
8de9e8baaecc
*** empty log message ***
Sam Lantinga <slouken@lokigames.com>
parents:
39
diff
changeset
|
897 fi |
2049
5f6550e5184f
Merged SDL-ryan-multiple-audio-device branch r2803:2871 into the trunk.
Ryan C. Gordon <icculus@icculus.org>
parents:
2040
diff
changeset
|
898 |
605
6399f4e90211
IRIX patches from Andrea Suatoni
Sam Lantinga <slouken@libsdl.org>
parents:
599
diff
changeset
|
899 AC_MSG_RESULT($have_nas) |
2049
5f6550e5184f
Merged SDL-ryan-multiple-audio-device branch r2803:2871 into the trunk.
Ryan C. Gordon <icculus@icculus.org>
parents:
2040
diff
changeset
|
900 |
1361
19418e4422cb
New configure-based build system. Still work in progress, but much improved
Sam Lantinga <slouken@libsdl.org>
parents:
1354
diff
changeset
|
901 if test x$have_nas = xyes; then |
2049
5f6550e5184f
Merged SDL-ryan-multiple-audio-device branch r2803:2871 into the trunk.
Ryan C. Gordon <icculus@icculus.org>
parents:
2040
diff
changeset
|
902 AC_ARG_ENABLE(nas-shared, |
5f6550e5184f
Merged SDL-ryan-multiple-audio-device branch r2803:2871 into the trunk.
Ryan C. Gordon <icculus@icculus.org>
parents:
2040
diff
changeset
|
903 AC_HELP_STRING([--enable-nas-shared], [dynamically load NAS audio support [[default=yes]]]), |
5f6550e5184f
Merged SDL-ryan-multiple-audio-device branch r2803:2871 into the trunk.
Ryan C. Gordon <icculus@icculus.org>
parents:
2040
diff
changeset
|
904 , enable_nas_shared=yes) |
3391
188fc5ecc58c
Simplify and improve dynamic library detection, taken from SDL_image
Sam Lantinga <slouken@libsdl.org>
parents:
3390
diff
changeset
|
905 nas_lib=[`find_lib "libaudio.so.*" "$NAS_LIBS" | sed 's/.*\/\(.*\)/\1/; q'`] |
2049
5f6550e5184f
Merged SDL-ryan-multiple-audio-device branch r2803:2871 into the trunk.
Ryan C. Gordon <icculus@icculus.org>
parents:
2040
diff
changeset
|
906 |
5f6550e5184f
Merged SDL-ryan-multiple-audio-device branch r2803:2871 into the trunk.
Ryan C. Gordon <icculus@icculus.org>
parents:
2040
diff
changeset
|
907 if test x$have_loadso != xyes && \ |
5f6550e5184f
Merged SDL-ryan-multiple-audio-device branch r2803:2871 into the trunk.
Ryan C. Gordon <icculus@icculus.org>
parents:
2040
diff
changeset
|
908 test x$enable_nas_shared = xyes; then |
5f6550e5184f
Merged SDL-ryan-multiple-audio-device branch r2803:2871 into the trunk.
Ryan C. Gordon <icculus@icculus.org>
parents:
2040
diff
changeset
|
909 AC_MSG_WARN([You must have SDL_LoadObject() support for dynamic NAS loading]) |
5f6550e5184f
Merged SDL-ryan-multiple-audio-device branch r2803:2871 into the trunk.
Ryan C. Gordon <icculus@icculus.org>
parents:
2040
diff
changeset
|
910 fi |
5f6550e5184f
Merged SDL-ryan-multiple-audio-device branch r2803:2871 into the trunk.
Ryan C. Gordon <icculus@icculus.org>
parents:
2040
diff
changeset
|
911 if test x$have_loadso = xyes && \ |
2163
5f96cf74b782
NAS dynamic loading is going to be have to looked at... *sigh*
Sam Lantinga <slouken@libsdl.org>
parents:
2158
diff
changeset
|
912 test x$enable_nas_shared = xyes && test x$nas_lib != x; then |
3392
efc22582afc5
Only show the dynamic audio libraries if we'll be dynamically loading them
Sam Lantinga <slouken@libsdl.org>
parents:
3391
diff
changeset
|
913 echo "-- dynamic libaudio -> $nas_lib" |
2049
5f6550e5184f
Merged SDL-ryan-multiple-audio-device branch r2803:2871 into the trunk.
Ryan C. Gordon <icculus@icculus.org>
parents:
2040
diff
changeset
|
914 AC_DEFINE_UNQUOTED(SDL_AUDIO_DRIVER_NAS_DYNAMIC, "$nas_lib") |
5f6550e5184f
Merged SDL-ryan-multiple-audio-device branch r2803:2871 into the trunk.
Ryan C. Gordon <icculus@icculus.org>
parents:
2040
diff
changeset
|
915 else |
5f6550e5184f
Merged SDL-ryan-multiple-audio-device branch r2803:2871 into the trunk.
Ryan C. Gordon <icculus@icculus.org>
parents:
2040
diff
changeset
|
916 EXTRA_LDFLAGS="$EXTRA_LDFLAGS $NAS_LIBS" |
5f6550e5184f
Merged SDL-ryan-multiple-audio-device branch r2803:2871 into the trunk.
Ryan C. Gordon <icculus@icculus.org>
parents:
2040
diff
changeset
|
917 fi |
5f6550e5184f
Merged SDL-ryan-multiple-audio-device branch r2803:2871 into the trunk.
Ryan C. Gordon <icculus@icculus.org>
parents:
2040
diff
changeset
|
918 |
1361
19418e4422cb
New configure-based build system. Still work in progress, but much improved
Sam Lantinga <slouken@libsdl.org>
parents:
1354
diff
changeset
|
919 AC_DEFINE(SDL_AUDIO_DRIVER_NAS) |
19418e4422cb
New configure-based build system. Still work in progress, but much improved
Sam Lantinga <slouken@libsdl.org>
parents:
1354
diff
changeset
|
920 SOURCES="$SOURCES $srcdir/src/audio/nas/*.c" |
1521
9b9212e4810c
CFLAGS are separate from EXTRA_CFLAGS
Sam Lantinga <slouken@libsdl.org>
parents:
1520
diff
changeset
|
921 EXTRA_CFLAGS="$EXTRA_CFLAGS $NAS_CFLAGS" |
1361
19418e4422cb
New configure-based build system. Still work in progress, but much improved
Sam Lantinga <slouken@libsdl.org>
parents:
1354
diff
changeset
|
922 have_audio=yes |
19418e4422cb
New configure-based build system. Still work in progress, but much improved
Sam Lantinga <slouken@libsdl.org>
parents:
1354
diff
changeset
|
923 fi |
0 | 924 fi |
925 } | |
926 | |
68
ac6645260d31
Added an audio driver that writes to disk (thanks Ryan!)
Sam Lantinga <slouken@lokigames.com>
parents:
53
diff
changeset
|
927 dnl rcg07142001 See if the user wants the disk writer audio driver... |
ac6645260d31
Added an audio driver that writes to disk (thanks Ryan!)
Sam Lantinga <slouken@lokigames.com>
parents:
53
diff
changeset
|
928 CheckDiskAudio() |
ac6645260d31
Added an audio driver that writes to disk (thanks Ryan!)
Sam Lantinga <slouken@lokigames.com>
parents:
53
diff
changeset
|
929 { |
ac6645260d31
Added an audio driver that writes to disk (thanks Ryan!)
Sam Lantinga <slouken@lokigames.com>
parents:
53
diff
changeset
|
930 AC_ARG_ENABLE(diskaudio, |
1637
9ba366b919c7
Date: Fri, 31 Mar 2006 18:28:55 -0500
Sam Lantinga <slouken@libsdl.org>
parents:
1632
diff
changeset
|
931 AC_HELP_STRING([--enable-diskaudio], [support the disk writer audio driver [[default=yes]]]), |
86
13e4c612098d
Dummy audio and video drivers are enabled (thanks Ryan!)
Sam Lantinga <slouken@lokigames.com>
parents:
76
diff
changeset
|
932 , enable_diskaudio=yes) |
68
ac6645260d31
Added an audio driver that writes to disk (thanks Ryan!)
Sam Lantinga <slouken@lokigames.com>
parents:
53
diff
changeset
|
933 if test x$enable_audio = xyes -a x$enable_diskaudio = xyes; then |
1361
19418e4422cb
New configure-based build system. Still work in progress, but much improved
Sam Lantinga <slouken@libsdl.org>
parents:
1354
diff
changeset
|
934 AC_DEFINE(SDL_AUDIO_DRIVER_DISK) |
19418e4422cb
New configure-based build system. Still work in progress, but much improved
Sam Lantinga <slouken@libsdl.org>
parents:
1354
diff
changeset
|
935 SOURCES="$SOURCES $srcdir/src/audio/disk/*.c" |
68
ac6645260d31
Added an audio driver that writes to disk (thanks Ryan!)
Sam Lantinga <slouken@lokigames.com>
parents:
53
diff
changeset
|
936 fi |
ac6645260d31
Added an audio driver that writes to disk (thanks Ryan!)
Sam Lantinga <slouken@lokigames.com>
parents:
53
diff
changeset
|
937 } |
ac6645260d31
Added an audio driver that writes to disk (thanks Ryan!)
Sam Lantinga <slouken@lokigames.com>
parents:
53
diff
changeset
|
938 |
1532
30f189cdd82b
Implemented dummy audio driver.
Ryan C. Gordon <icculus@icculus.org>
parents:
1521
diff
changeset
|
939 dnl rcg03142006 See if the user wants the dummy audio driver... |
30f189cdd82b
Implemented dummy audio driver.
Ryan C. Gordon <icculus@icculus.org>
parents:
1521
diff
changeset
|
940 CheckDummyAudio() |
30f189cdd82b
Implemented dummy audio driver.
Ryan C. Gordon <icculus@icculus.org>
parents:
1521
diff
changeset
|
941 { |
30f189cdd82b
Implemented dummy audio driver.
Ryan C. Gordon <icculus@icculus.org>
parents:
1521
diff
changeset
|
942 AC_ARG_ENABLE(dummyaudio, |
1637
9ba366b919c7
Date: Fri, 31 Mar 2006 18:28:55 -0500
Sam Lantinga <slouken@libsdl.org>
parents:
1632
diff
changeset
|
943 AC_HELP_STRING([--enable-dummyaudio], [support the dummy audio driver [[default=yes]]]), |
1532
30f189cdd82b
Implemented dummy audio driver.
Ryan C. Gordon <icculus@icculus.org>
parents:
1521
diff
changeset
|
944 , enable_dummyaudio=yes) |
30f189cdd82b
Implemented dummy audio driver.
Ryan C. Gordon <icculus@icculus.org>
parents:
1521
diff
changeset
|
945 if test x$enable_audio = xyes -a x$enable_dummyaudio = xyes; then |
30f189cdd82b
Implemented dummy audio driver.
Ryan C. Gordon <icculus@icculus.org>
parents:
1521
diff
changeset
|
946 AC_DEFINE(SDL_AUDIO_DRIVER_DUMMY) |
30f189cdd82b
Implemented dummy audio driver.
Ryan C. Gordon <icculus@icculus.org>
parents:
1521
diff
changeset
|
947 SOURCES="$SOURCES $srcdir/src/audio/dummy/*.c" |
30f189cdd82b
Implemented dummy audio driver.
Ryan C. Gordon <icculus@icculus.org>
parents:
1521
diff
changeset
|
948 fi |
30f189cdd82b
Implemented dummy audio driver.
Ryan C. Gordon <icculus@icculus.org>
parents:
1521
diff
changeset
|
949 } |
30f189cdd82b
Implemented dummy audio driver.
Ryan C. Gordon <icculus@icculus.org>
parents:
1521
diff
changeset
|
950 |
1573
2422ca15ba42
Added support for gcc4's -fvisibility=hidden option.
Ryan C. Gordon <icculus@icculus.org>
parents:
1571
diff
changeset
|
951 dnl See if GCC's -fvisibility=hidden is supported (gcc4 and later, usually). |
2422ca15ba42
Added support for gcc4's -fvisibility=hidden option.
Ryan C. Gordon <icculus@icculus.org>
parents:
1571
diff
changeset
|
952 dnl Details of this flag are here: http://gcc.gnu.org/wiki/Visibility |
2422ca15ba42
Added support for gcc4's -fvisibility=hidden option.
Ryan C. Gordon <icculus@icculus.org>
parents:
1571
diff
changeset
|
953 CheckVisibilityHidden() |
2422ca15ba42
Added support for gcc4's -fvisibility=hidden option.
Ryan C. Gordon <icculus@icculus.org>
parents:
1571
diff
changeset
|
954 { |
2422ca15ba42
Added support for gcc4's -fvisibility=hidden option.
Ryan C. Gordon <icculus@icculus.org>
parents:
1571
diff
changeset
|
955 AC_MSG_CHECKING(for GCC -fvisibility=hidden option) |
2422ca15ba42
Added support for gcc4's -fvisibility=hidden option.
Ryan C. Gordon <icculus@icculus.org>
parents:
1571
diff
changeset
|
956 have_gcc_fvisibility=no |
2422ca15ba42
Added support for gcc4's -fvisibility=hidden option.
Ryan C. Gordon <icculus@icculus.org>
parents:
1571
diff
changeset
|
957 |
2422ca15ba42
Added support for gcc4's -fvisibility=hidden option.
Ryan C. Gordon <icculus@icculus.org>
parents:
1571
diff
changeset
|
958 visibility_CFLAGS="-fvisibility=hidden" |
2422ca15ba42
Added support for gcc4's -fvisibility=hidden option.
Ryan C. Gordon <icculus@icculus.org>
parents:
1571
diff
changeset
|
959 save_CFLAGS="$CFLAGS" |
2292
4845eb8d4221
Merged -fvisibility detection fix from SDL 1.2 revision 3500
Sam Lantinga <slouken@libsdl.org>
parents:
2290
diff
changeset
|
960 CFLAGS="$save_CFLAGS $visibility_CFLAGS -Werror" |
1573
2422ca15ba42
Added support for gcc4's -fvisibility=hidden option.
Ryan C. Gordon <icculus@icculus.org>
parents:
1571
diff
changeset
|
961 AC_TRY_COMPILE([ |
1745
741dc4e89f3a
Only use -fvisibility=hidden if SDL will define some symbols as available. :)
Sam Lantinga <slouken@libsdl.org>
parents:
1742
diff
changeset
|
962 #if !defined(__GNUC__) || __GNUC__ < 4 |
741dc4e89f3a
Only use -fvisibility=hidden if SDL will define some symbols as available. :)
Sam Lantinga <slouken@libsdl.org>
parents:
1742
diff
changeset
|
963 #error SDL only uses visibility attributes in GCC 4 or newer |
741dc4e89f3a
Only use -fvisibility=hidden if SDL will define some symbols as available. :)
Sam Lantinga <slouken@libsdl.org>
parents:
1742
diff
changeset
|
964 #endif |
1573
2422ca15ba42
Added support for gcc4's -fvisibility=hidden option.
Ryan C. Gordon <icculus@icculus.org>
parents:
1571
diff
changeset
|
965 ],[ |
2422ca15ba42
Added support for gcc4's -fvisibility=hidden option.
Ryan C. Gordon <icculus@icculus.org>
parents:
1571
diff
changeset
|
966 ],[ |
2422ca15ba42
Added support for gcc4's -fvisibility=hidden option.
Ryan C. Gordon <icculus@icculus.org>
parents:
1571
diff
changeset
|
967 have_gcc_fvisibility=yes |
2422ca15ba42
Added support for gcc4's -fvisibility=hidden option.
Ryan C. Gordon <icculus@icculus.org>
parents:
1571
diff
changeset
|
968 ]) |
2422ca15ba42
Added support for gcc4's -fvisibility=hidden option.
Ryan C. Gordon <icculus@icculus.org>
parents:
1571
diff
changeset
|
969 AC_MSG_RESULT($have_gcc_fvisibility) |
2422ca15ba42
Added support for gcc4's -fvisibility=hidden option.
Ryan C. Gordon <icculus@icculus.org>
parents:
1571
diff
changeset
|
970 CFLAGS="$save_CFLAGS" |
2422ca15ba42
Added support for gcc4's -fvisibility=hidden option.
Ryan C. Gordon <icculus@icculus.org>
parents:
1571
diff
changeset
|
971 |
2422ca15ba42
Added support for gcc4's -fvisibility=hidden option.
Ryan C. Gordon <icculus@icculus.org>
parents:
1571
diff
changeset
|
972 if test x$have_gcc_fvisibility = xyes; then |
1574
0fd72308659e
Default to use the visibility attribute, on gcc (is this okay?)
Sam Lantinga <slouken@libsdl.org>
parents:
1573
diff
changeset
|
973 EXTRA_CFLAGS="$EXTRA_CFLAGS $visibility_CFLAGS" |
1573
2422ca15ba42
Added support for gcc4's -fvisibility=hidden option.
Ryan C. Gordon <icculus@icculus.org>
parents:
1571
diff
changeset
|
974 fi |
2422ca15ba42
Added support for gcc4's -fvisibility=hidden option.
Ryan C. Gordon <icculus@icculus.org>
parents:
1571
diff
changeset
|
975 } |
2422ca15ba42
Added support for gcc4's -fvisibility=hidden option.
Ryan C. Gordon <icculus@icculus.org>
parents:
1571
diff
changeset
|
976 |
2422ca15ba42
Added support for gcc4's -fvisibility=hidden option.
Ryan C. Gordon <icculus@icculus.org>
parents:
1571
diff
changeset
|
977 |
0 | 978 dnl Find the X11 include and library directories |
979 CheckX11() | |
980 { | |
981 AC_ARG_ENABLE(video-x11, | |
1637
9ba366b919c7
Date: Fri, 31 Mar 2006 18:28:55 -0500
Sam Lantinga <slouken@libsdl.org>
parents:
1632
diff
changeset
|
982 AC_HELP_STRING([--enable-video-x11], [use X11 video driver [[default=yes]]]), |
0 | 983 , enable_video_x11=yes) |
984 if test x$enable_video = xyes -a x$enable_video_x11 = xyes; then | |
1806
8baf6641cd57
Added hardcoded /usr/X11R6 path so GLX detection works on Mac OS X.
Sam Lantinga <slouken@libsdl.org>
parents:
1799
diff
changeset
|
985 case "$host" in |
1807 | 986 *-*-darwin*) |
987 # This isn't necessary for X11, but fixes GLX detection | |
1808
3e5029051a6d
Only set Mac OS X default if both parameters are left default
Sam Lantinga <slouken@libsdl.org>
parents:
1807
diff
changeset
|
988 if test "x$x_includes" = xNONE && test "x$x_libraries" = xNONE; then |
1806
8baf6641cd57
Added hardcoded /usr/X11R6 path so GLX detection works on Mac OS X.
Sam Lantinga <slouken@libsdl.org>
parents:
1799
diff
changeset
|
989 x_includes="/usr/X11R6/include" |
8baf6641cd57
Added hardcoded /usr/X11R6 path so GLX detection works on Mac OS X.
Sam Lantinga <slouken@libsdl.org>
parents:
1799
diff
changeset
|
990 x_libraries="/usr/X11R6/lib" |
8baf6641cd57
Added hardcoded /usr/X11R6 path so GLX detection works on Mac OS X.
Sam Lantinga <slouken@libsdl.org>
parents:
1799
diff
changeset
|
991 fi |
8baf6641cd57
Added hardcoded /usr/X11R6 path so GLX detection works on Mac OS X.
Sam Lantinga <slouken@libsdl.org>
parents:
1799
diff
changeset
|
992 ;; |
8baf6641cd57
Added hardcoded /usr/X11R6 path so GLX detection works on Mac OS X.
Sam Lantinga <slouken@libsdl.org>
parents:
1799
diff
changeset
|
993 esac |
0 | 994 AC_PATH_X |
995 AC_PATH_XTRA | |
996 if test x$have_x = xyes; then | |
1879
cb232e63552c
Default the X11 dynamically loading on if the OS loader loads libraries
Sam Lantinga <slouken@libsdl.org>
parents:
1875
diff
changeset
|
997 # Only allow dynamically loaded X11 if the X11 function pointers |
cb232e63552c
Default the X11 dynamically loading on if the OS loader loads libraries
Sam Lantinga <slouken@libsdl.org>
parents:
1875
diff
changeset
|
998 # will not end up in the global namespace, which causes problems |
cb232e63552c
Default the X11 dynamically loading on if the OS loader loads libraries
Sam Lantinga <slouken@libsdl.org>
parents:
1875
diff
changeset
|
999 # with other libraries calling X11 functions. |
cb232e63552c
Default the X11 dynamically loading on if the OS loader loads libraries
Sam Lantinga <slouken@libsdl.org>
parents:
1875
diff
changeset
|
1000 x11_symbols_private=$have_gcc_fvisibility |
cb232e63552c
Default the X11 dynamically loading on if the OS loader loads libraries
Sam Lantinga <slouken@libsdl.org>
parents:
1875
diff
changeset
|
1001 |
1168
045f186426e1
Dynamically load X11 libraries like we currently do for alsa, esd, etc.
Ryan C. Gordon <icculus@icculus.org>
parents:
1162
diff
changeset
|
1002 AC_ARG_ENABLE(x11-shared, |
1879
cb232e63552c
Default the X11 dynamically loading on if the OS loader loads libraries
Sam Lantinga <slouken@libsdl.org>
parents:
1875
diff
changeset
|
1003 AC_HELP_STRING([--enable-x11-shared], [dynamically load X11 support [[default=maybe]]]), |
cb232e63552c
Default the X11 dynamically loading on if the OS loader loads libraries
Sam Lantinga <slouken@libsdl.org>
parents:
1875
diff
changeset
|
1004 , enable_x11_shared=maybe) |
1168
045f186426e1
Dynamically load X11 libraries like we currently do for alsa, esd, etc.
Ryan C. Gordon <icculus@icculus.org>
parents:
1162
diff
changeset
|
1005 |
1550 | 1006 case "$host" in |
1589
34cca785be57
Xrandr support in the X11 target.
Ryan C. Gordon <icculus@icculus.org>
parents:
1588
diff
changeset
|
1007 *-*-darwin*) # Latest Mac OS X actually ships with Xrandr/Xrender libs... |
1879
cb232e63552c
Default the X11 dynamically loading on if the OS loader loads libraries
Sam Lantinga <slouken@libsdl.org>
parents:
1875
diff
changeset
|
1008 x11_symbols_private=yes |
1174
8c43aceeed81
Enable dynamic X11 on Mac OS X.
Ryan C. Gordon <icculus@icculus.org>
parents:
1173
diff
changeset
|
1009 x11_lib='/usr/X11R6/lib/libX11.6.dylib' |
8c43aceeed81
Enable dynamic X11 on Mac OS X.
Ryan C. Gordon <icculus@icculus.org>
parents:
1173
diff
changeset
|
1010 x11ext_lib='/usr/X11R6/lib/libXext.6.dylib' |
1592
802de24df8d9
Lines swapped to match ordering elsewhere
Sam Lantinga <slouken@libsdl.org>
parents:
1589
diff
changeset
|
1011 xrender_lib='/usr/X11R6/lib/libXrender.1.dylib' |
1589
34cca785be57
Xrandr support in the X11 target.
Ryan C. Gordon <icculus@icculus.org>
parents:
1588
diff
changeset
|
1012 xrandr_lib='/usr/X11R6/lib/libXrandr.2.dylib' |
2763
6fc50bdd88c0
Some cleanups on the new XInput code.
Ryan C. Gordon <icculus@icculus.org>
parents:
2717
diff
changeset
|
1013 xinput_lib='/usr/X11R6/lib/libXi.6.dylib' |
3025
54fac87e1f34
Added an API to enable/disable the screen saver.
Sam Lantinga <slouken@libsdl.org>
parents:
3014
diff
changeset
|
1014 xss_lib='/usr/X11R6/lib/libXss.6.dylib' |
1174
8c43aceeed81
Enable dynamic X11 on Mac OS X.
Ryan C. Gordon <icculus@icculus.org>
parents:
1173
diff
changeset
|
1015 ;; |
1384
6fd39b50dd91
build fixes for IRIX 6.5 - dynamic X11 loading works! :)
Sam Lantinga <slouken@libsdl.org>
parents:
1383
diff
changeset
|
1016 *-*-osf*) |
6fd39b50dd91
build fixes for IRIX 6.5 - dynamic X11 loading works! :)
Sam Lantinga <slouken@libsdl.org>
parents:
1383
diff
changeset
|
1017 x11_lib='libX11.so' |
6fd39b50dd91
build fixes for IRIX 6.5 - dynamic X11 loading works! :)
Sam Lantinga <slouken@libsdl.org>
parents:
1383
diff
changeset
|
1018 x11ext_lib='libXext.so' |
6fd39b50dd91
build fixes for IRIX 6.5 - dynamic X11 loading works! :)
Sam Lantinga <slouken@libsdl.org>
parents:
1383
diff
changeset
|
1019 ;; |
6fd39b50dd91
build fixes for IRIX 6.5 - dynamic X11 loading works! :)
Sam Lantinga <slouken@libsdl.org>
parents:
1383
diff
changeset
|
1020 *-*-irix*) # IRIX 6.5 requires that we use /usr/lib32 |
1299
2bf9dda618e5
Corrects dynamic X11 code on Tru64 systems.
Ryan C. Gordon <icculus@icculus.org>
parents:
1251
diff
changeset
|
1021 x11_lib='libX11.so' |
2bf9dda618e5
Corrects dynamic X11 code on Tru64 systems.
Ryan C. Gordon <icculus@icculus.org>
parents:
1251
diff
changeset
|
1022 x11ext_lib='libXext.so' |
2bf9dda618e5
Corrects dynamic X11 code on Tru64 systems.
Ryan C. Gordon <icculus@icculus.org>
parents:
1251
diff
changeset
|
1023 ;; |
1174
8c43aceeed81
Enable dynamic X11 on Mac OS X.
Ryan C. Gordon <icculus@icculus.org>
parents:
1173
diff
changeset
|
1024 *) |
3391
188fc5ecc58c
Simplify and improve dynamic library detection, taken from SDL_image
Sam Lantinga <slouken@libsdl.org>
parents:
3390
diff
changeset
|
1025 x11_lib=[`find_lib "libX11.so.*" "$X_LIBS -L/usr/X11/$base_libdir -L/usr/X11R6/$base_libdir" | sed 's/.*\/\(.*\)/\1/; q'`] |
188fc5ecc58c
Simplify and improve dynamic library detection, taken from SDL_image
Sam Lantinga <slouken@libsdl.org>
parents:
3390
diff
changeset
|
1026 x11ext_lib=[`find_lib "libXext.so.*" "$X_LIBS -L/usr/X11/$base_libdir -L/usr/X11R6/$base_libdir" | sed 's/.*\/\(.*\)/\1/; q'`] |
188fc5ecc58c
Simplify and improve dynamic library detection, taken from SDL_image
Sam Lantinga <slouken@libsdl.org>
parents:
3390
diff
changeset
|
1027 xrender_lib=[`find_lib "libXrender.so.*" "$X_LIBS -L/usr/X11/$base_libdir -L/usr/X11R6/$base_libdir" | sed 's/.*\/\(.*\)/\1/; q'`] |
188fc5ecc58c
Simplify and improve dynamic library detection, taken from SDL_image
Sam Lantinga <slouken@libsdl.org>
parents:
3390
diff
changeset
|
1028 xrandr_lib=[`find_lib "libXrandr.so.*" "$X_LIBS -L/usr/X11/$base_libdir -L/usr/X11R6/$base_libdir" | sed 's/.*\/\(.*\)/\1/; q'`] |
188fc5ecc58c
Simplify and improve dynamic library detection, taken from SDL_image
Sam Lantinga <slouken@libsdl.org>
parents:
3390
diff
changeset
|
1029 xinput_lib=[`find_lib "libXi.so.*" "$X_LIBS -L/usr/X11/$base_libdir -L/usr/X11R6/$base_libdir" | sed 's/.*\/\(.*\)/\1/; q'`] |
188fc5ecc58c
Simplify and improve dynamic library detection, taken from SDL_image
Sam Lantinga <slouken@libsdl.org>
parents:
3390
diff
changeset
|
1030 xss_lib=[`find_lib "libXss.so.*" "$X_LIBS -L/usr/X11/$base_libdir -L/usr/X11R6/$base_libdir" | sed 's/.*\/\(.*\)/\1/; q'`] |
1174
8c43aceeed81
Enable dynamic X11 on Mac OS X.
Ryan C. Gordon <icculus@icculus.org>
parents:
1173
diff
changeset
|
1031 ;; |
8c43aceeed81
Enable dynamic X11 on Mac OS X.
Ryan C. Gordon <icculus@icculus.org>
parents:
1173
diff
changeset
|
1032 esac |
1168
045f186426e1
Dynamically load X11 libraries like we currently do for alsa, esd, etc.
Ryan C. Gordon <icculus@icculus.org>
parents:
1162
diff
changeset
|
1033 |
1361
19418e4422cb
New configure-based build system. Still work in progress, but much improved
Sam Lantinga <slouken@libsdl.org>
parents:
1354
diff
changeset
|
1034 if test x$ac_cv_func_shmat != xyes; then |
19418e4422cb
New configure-based build system. Still work in progress, but much improved
Sam Lantinga <slouken@libsdl.org>
parents:
1354
diff
changeset
|
1035 X_CFLAGS="$X_CFLAGS -DNO_SHARED_MEMORY" |
19418e4422cb
New configure-based build system. Still work in progress, but much improved
Sam Lantinga <slouken@libsdl.org>
parents:
1354
diff
changeset
|
1036 fi |
1799
50e9cca3fe7b
Fixed X11 support on Mac OS X Universal build
Sam Lantinga <slouken@libsdl.org>
parents:
1783
diff
changeset
|
1037 CFLAGS="$CFLAGS $X_CFLAGS" |
50e9cca3fe7b
Fixed X11 support on Mac OS X Universal build
Sam Lantinga <slouken@libsdl.org>
parents:
1783
diff
changeset
|
1038 LDFLAGS="$LDFLAGS $X_LIBS" |
1468
fecfef92fc94
Don't put X_LIBS in the linker flags if we're dynamically loading X11
Sam Lantinga <slouken@libsdl.org>
parents:
1467
diff
changeset
|
1039 |
fecfef92fc94
Don't put X_LIBS in the linker flags if we're dynamically loading X11
Sam Lantinga <slouken@libsdl.org>
parents:
1467
diff
changeset
|
1040 AC_DEFINE(SDL_VIDEO_DRIVER_X11) |
fecfef92fc94
Don't put X_LIBS in the linker flags if we're dynamically loading X11
Sam Lantinga <slouken@libsdl.org>
parents:
1467
diff
changeset
|
1041 SOURCES="$SOURCES $srcdir/src/video/x11/*.c" |
2185
2032348afed1
This code adds support for DirectColor visuals to SDL 1.3. The support uses part of the Xmu library. To ensure that the library is
Bob Pendleton <bob@pendleton.com>
parents:
2163
diff
changeset
|
1042 SOURCES="$SOURCES $srcdir/src/video/Xext/XmuStdCmap/*.c" |
1521
9b9212e4810c
CFLAGS are separate from EXTRA_CFLAGS
Sam Lantinga <slouken@libsdl.org>
parents:
1520
diff
changeset
|
1043 EXTRA_CFLAGS="$EXTRA_CFLAGS $X_CFLAGS" |
1879
cb232e63552c
Default the X11 dynamically loading on if the OS loader loads libraries
Sam Lantinga <slouken@libsdl.org>
parents:
1875
diff
changeset
|
1044 |
cb232e63552c
Default the X11 dynamically loading on if the OS loader loads libraries
Sam Lantinga <slouken@libsdl.org>
parents:
1875
diff
changeset
|
1045 if test x$enable_x11_shared = xmaybe; then |
cb232e63552c
Default the X11 dynamically loading on if the OS loader loads libraries
Sam Lantinga <slouken@libsdl.org>
parents:
1875
diff
changeset
|
1046 enable_x11_shared=$x11_symbols_private |
cb232e63552c
Default the X11 dynamically loading on if the OS loader loads libraries
Sam Lantinga <slouken@libsdl.org>
parents:
1875
diff
changeset
|
1047 fi |
1173
e9cf8c1b4590
Split up src/SDL_loadso.c into platform directories.
Ryan C. Gordon <icculus@icculus.org>
parents:
1170
diff
changeset
|
1048 if test x$have_loadso != xyes && \ |
1168
045f186426e1
Dynamically load X11 libraries like we currently do for alsa, esd, etc.
Ryan C. Gordon <icculus@icculus.org>
parents:
1162
diff
changeset
|
1049 test x$enable_x11_shared = xyes; then |
1467
b69f2b0309a0
Removed accidentally copied/pasted script for ALSA detection
Sam Lantinga <slouken@libsdl.org>
parents:
1459
diff
changeset
|
1050 AC_MSG_WARN([You must have SDL_LoadObject() support for dynamic X11 loading]) |
1875
4627eca2c02b
Only allow dynamic X11 if gcc4 (-fvisibility=hidden) is used.
Ryan C. Gordon <icculus@icculus.org>
parents:
1871
diff
changeset
|
1051 enable_x11_shared=no |
1168
045f186426e1
Dynamically load X11 libraries like we currently do for alsa, esd, etc.
Ryan C. Gordon <icculus@icculus.org>
parents:
1162
diff
changeset
|
1052 fi |
1879
cb232e63552c
Default the X11 dynamically loading on if the OS loader loads libraries
Sam Lantinga <slouken@libsdl.org>
parents:
1875
diff
changeset
|
1053 if test x$x11_symbols_private != xyes && \ |
1875
4627eca2c02b
Only allow dynamic X11 if gcc4 (-fvisibility=hidden) is used.
Ryan C. Gordon <icculus@icculus.org>
parents:
1871
diff
changeset
|
1054 test x$enable_x11_shared = xyes; then |
4627eca2c02b
Only allow dynamic X11 if gcc4 (-fvisibility=hidden) is used.
Ryan C. Gordon <icculus@icculus.org>
parents:
1871
diff
changeset
|
1055 AC_MSG_WARN([You must have gcc4 (-fvisibility=hidden) for dynamic X11 loading]) |
4627eca2c02b
Only allow dynamic X11 if gcc4 (-fvisibility=hidden) is used.
Ryan C. Gordon <icculus@icculus.org>
parents:
1871
diff
changeset
|
1056 enable_x11_shared=no |
4627eca2c02b
Only allow dynamic X11 if gcc4 (-fvisibility=hidden) is used.
Ryan C. Gordon <icculus@icculus.org>
parents:
1871
diff
changeset
|
1057 fi |
4627eca2c02b
Only allow dynamic X11 if gcc4 (-fvisibility=hidden) is used.
Ryan C. Gordon <icculus@icculus.org>
parents:
1871
diff
changeset
|
1058 |
1173
e9cf8c1b4590
Split up src/SDL_loadso.c into platform directories.
Ryan C. Gordon <icculus@icculus.org>
parents:
1170
diff
changeset
|
1059 if test x$have_loadso = xyes && \ |
1170
bb1a52a8d3d6
Use the right libs in dynamic X11 loading.
Ryan C. Gordon <icculus@icculus.org>
parents:
1168
diff
changeset
|
1060 test x$enable_x11_shared = xyes && test x$x11_lib != x && test x$x11ext_lib != x; then |
1174
8c43aceeed81
Enable dynamic X11 on Mac OS X.
Ryan C. Gordon <icculus@icculus.org>
parents:
1173
diff
changeset
|
1061 echo "-- dynamic libX11 -> $x11_lib" |
8c43aceeed81
Enable dynamic X11 on Mac OS X.
Ryan C. Gordon <icculus@icculus.org>
parents:
1173
diff
changeset
|
1062 echo "-- dynamic libX11ext -> $x11ext_lib" |
1361
19418e4422cb
New configure-based build system. Still work in progress, but much improved
Sam Lantinga <slouken@libsdl.org>
parents:
1354
diff
changeset
|
1063 AC_DEFINE_UNQUOTED(SDL_VIDEO_DRIVER_X11_DYNAMIC, "$x11_lib") |
19418e4422cb
New configure-based build system. Still work in progress, but much improved
Sam Lantinga <slouken@libsdl.org>
parents:
1354
diff
changeset
|
1064 AC_DEFINE_UNQUOTED(SDL_VIDEO_DRIVER_X11_DYNAMIC_XEXT, "$x11ext_lib") |
1168
045f186426e1
Dynamically load X11 libraries like we currently do for alsa, esd, etc.
Ryan C. Gordon <icculus@icculus.org>
parents:
1162
diff
changeset
|
1065 else |
1589
34cca785be57
Xrandr support in the X11 target.
Ryan C. Gordon <icculus@icculus.org>
parents:
1588
diff
changeset
|
1066 enable_x11_shared=no |
2763
6fc50bdd88c0
Some cleanups on the new XInput code.
Ryan C. Gordon <icculus@icculus.org>
parents:
2717
diff
changeset
|
1067 EXTRA_LDFLAGS="$EXTRA_LDFLAGS $X_LIBS -lX11 -lXext" |
0 | 1068 fi |
1361
19418e4422cb
New configure-based build system. Still work in progress, but much improved
Sam Lantinga <slouken@libsdl.org>
parents:
1354
diff
changeset
|
1069 have_video=yes |
0 | 1070 |
1071 AC_ARG_ENABLE(video-x11-vm, | |
1637
9ba366b919c7
Date: Fri, 31 Mar 2006 18:28:55 -0500
Sam Lantinga <slouken@libsdl.org>
parents:
1632
diff
changeset
|
1072 AC_HELP_STRING([--enable-video-x11-vm], [use X11 VM extension for fullscreen [[default=yes]]]), |
0 | 1073 , enable_video_x11_vm=yes) |
1074 if test x$enable_video_x11_vm = xyes; then | |
1361
19418e4422cb
New configure-based build system. Still work in progress, but much improved
Sam Lantinga <slouken@libsdl.org>
parents:
1354
diff
changeset
|
1075 AC_DEFINE(SDL_VIDEO_DRIVER_X11_VIDMODE) |
19418e4422cb
New configure-based build system. Still work in progress, but much improved
Sam Lantinga <slouken@libsdl.org>
parents:
1354
diff
changeset
|
1076 SOURCES="$SOURCES $srcdir/src/video/Xext/Xxf86vm/*.c" |
0 | 1077 fi |
1078 AC_ARG_ENABLE(video-x11-xv, | |
1637
9ba366b919c7
Date: Fri, 31 Mar 2006 18:28:55 -0500
Sam Lantinga <slouken@libsdl.org>
parents:
1632
diff
changeset
|
1079 AC_HELP_STRING([--enable-video-x11-xv], [use X11 XvImage extension for video [[default=yes]]]), |
0 | 1080 , enable_video_x11_xv=yes) |
1081 if test x$enable_video_x11_xv = xyes; then | |
1361
19418e4422cb
New configure-based build system. Still work in progress, but much improved
Sam Lantinga <slouken@libsdl.org>
parents:
1354
diff
changeset
|
1082 AC_DEFINE(SDL_VIDEO_DRIVER_X11_XV) |
19418e4422cb
New configure-based build system. Still work in progress, but much improved
Sam Lantinga <slouken@libsdl.org>
parents:
1354
diff
changeset
|
1083 SOURCES="$SOURCES $srcdir/src/video/Xext/Xv/*.c" |
0 | 1084 fi |
227
24878c14b391
Added X11 Xinerama support - fullscreen starts on screen 0
Sam Lantinga <slouken@libsdl.org>
parents:
222
diff
changeset
|
1085 AC_ARG_ENABLE(video-x11-xinerama, |
1637
9ba366b919c7
Date: Fri, 31 Mar 2006 18:28:55 -0500
Sam Lantinga <slouken@libsdl.org>
parents:
1632
diff
changeset
|
1086 AC_HELP_STRING([--enable-video-x11-xinerama], [enable X11 Xinerama support [[default=yes]]]), |
227
24878c14b391
Added X11 Xinerama support - fullscreen starts on screen 0
Sam Lantinga <slouken@libsdl.org>
parents:
222
diff
changeset
|
1087 , enable_video_x11_xinerama=yes) |
24878c14b391
Added X11 Xinerama support - fullscreen starts on screen 0
Sam Lantinga <slouken@libsdl.org>
parents:
222
diff
changeset
|
1088 if test x$enable_video_x11_xinerama = xyes; then |
1361
19418e4422cb
New configure-based build system. Still work in progress, but much improved
Sam Lantinga <slouken@libsdl.org>
parents:
1354
diff
changeset
|
1089 AC_DEFINE(SDL_VIDEO_DRIVER_X11_XINERAMA) |
19418e4422cb
New configure-based build system. Still work in progress, but much improved
Sam Lantinga <slouken@libsdl.org>
parents:
1354
diff
changeset
|
1090 SOURCES="$SOURCES $srcdir/src/video/Xext/Xinerama/*.c" |
227
24878c14b391
Added X11 Xinerama support - fullscreen starts on screen 0
Sam Lantinga <slouken@libsdl.org>
parents:
222
diff
changeset
|
1091 fi |
1589
34cca785be57
Xrandr support in the X11 target.
Ryan C. Gordon <icculus@icculus.org>
parents:
1588
diff
changeset
|
1092 AC_ARG_ENABLE(video-x11-xrandr, |
1637
9ba366b919c7
Date: Fri, 31 Mar 2006 18:28:55 -0500
Sam Lantinga <slouken@libsdl.org>
parents:
1632
diff
changeset
|
1093 AC_HELP_STRING([--enable-video-x11-xrandr], [enable X11 Xrandr extension for fullscreen [[default=yes]]]), |
1589
34cca785be57
Xrandr support in the X11 target.
Ryan C. Gordon <icculus@icculus.org>
parents:
1588
diff
changeset
|
1094 , enable_video_x11_xrandr=yes) |
34cca785be57
Xrandr support in the X11 target.
Ryan C. Gordon <icculus@icculus.org>
parents:
1588
diff
changeset
|
1095 if test x$enable_video_x11_xrandr = xyes; then |
34cca785be57
Xrandr support in the X11 target.
Ryan C. Gordon <icculus@icculus.org>
parents:
1588
diff
changeset
|
1096 definitely_enable_video_x11_xrandr=no |
34cca785be57
Xrandr support in the X11 target.
Ryan C. Gordon <icculus@icculus.org>
parents:
1588
diff
changeset
|
1097 AC_CHECK_HEADER(X11/extensions/Xrandr.h, |
34cca785be57
Xrandr support in the X11 target.
Ryan C. Gordon <icculus@icculus.org>
parents:
1588
diff
changeset
|
1098 have_xrandr_h_hdr=yes, |
34cca785be57
Xrandr support in the X11 target.
Ryan C. Gordon <icculus@icculus.org>
parents:
1588
diff
changeset
|
1099 have_xrandr_h_hdr=no, |
34cca785be57
Xrandr support in the X11 target.
Ryan C. Gordon <icculus@icculus.org>
parents:
1588
diff
changeset
|
1100 [#include <X11/Xlib.h> |
34cca785be57
Xrandr support in the X11 target.
Ryan C. Gordon <icculus@icculus.org>
parents:
1588
diff
changeset
|
1101 ]) |
34cca785be57
Xrandr support in the X11 target.
Ryan C. Gordon <icculus@icculus.org>
parents:
1588
diff
changeset
|
1102 if test x$have_xrandr_h_hdr = xyes; then |
34cca785be57
Xrandr support in the X11 target.
Ryan C. Gordon <icculus@icculus.org>
parents:
1588
diff
changeset
|
1103 if test x$enable_x11_shared = xyes && test x$xrandr_lib != x ; then |
34cca785be57
Xrandr support in the X11 target.
Ryan C. Gordon <icculus@icculus.org>
parents:
1588
diff
changeset
|
1104 echo "-- dynamic libXrender -> $xrender_lib" |
34cca785be57
Xrandr support in the X11 target.
Ryan C. Gordon <icculus@icculus.org>
parents:
1588
diff
changeset
|
1105 echo "-- dynamic libXrandr -> $xrandr_lib" |
34cca785be57
Xrandr support in the X11 target.
Ryan C. Gordon <icculus@icculus.org>
parents:
1588
diff
changeset
|
1106 AC_DEFINE_UNQUOTED(SDL_VIDEO_DRIVER_X11_DYNAMIC_XRENDER, "$xrender_lib") |
34cca785be57
Xrandr support in the X11 target.
Ryan C. Gordon <icculus@icculus.org>
parents:
1588
diff
changeset
|
1107 AC_DEFINE_UNQUOTED(SDL_VIDEO_DRIVER_X11_DYNAMIC_XRANDR, "$xrandr_lib") |
34cca785be57
Xrandr support in the X11 target.
Ryan C. Gordon <icculus@icculus.org>
parents:
1588
diff
changeset
|
1108 definitely_enable_video_x11_xrandr=yes |
34cca785be57
Xrandr support in the X11 target.
Ryan C. Gordon <icculus@icculus.org>
parents:
1588
diff
changeset
|
1109 else |
34cca785be57
Xrandr support in the X11 target.
Ryan C. Gordon <icculus@icculus.org>
parents:
1588
diff
changeset
|
1110 AC_CHECK_LIB(Xrender, XRenderQueryExtension, have_xrender_lib=yes) |
34cca785be57
Xrandr support in the X11 target.
Ryan C. Gordon <icculus@icculus.org>
parents:
1588
diff
changeset
|
1111 AC_CHECK_LIB(Xrandr, XRRQueryExtension, have_xrandr_lib=yes) |
34cca785be57
Xrandr support in the X11 target.
Ryan C. Gordon <icculus@icculus.org>
parents:
1588
diff
changeset
|
1112 if test x$have_xrender_lib = xyes && test x$have_xrandr_lib = xyes ; then |
34cca785be57
Xrandr support in the X11 target.
Ryan C. Gordon <icculus@icculus.org>
parents:
1588
diff
changeset
|
1113 EXTRA_LDFLAGS="$EXTRA_LDFLAGS -lXrandr -lXrender" |
34cca785be57
Xrandr support in the X11 target.
Ryan C. Gordon <icculus@icculus.org>
parents:
1588
diff
changeset
|
1114 definitely_enable_video_x11_xrandr=yes |
34cca785be57
Xrandr support in the X11 target.
Ryan C. Gordon <icculus@icculus.org>
parents:
1588
diff
changeset
|
1115 fi |
34cca785be57
Xrandr support in the X11 target.
Ryan C. Gordon <icculus@icculus.org>
parents:
1588
diff
changeset
|
1116 fi |
34cca785be57
Xrandr support in the X11 target.
Ryan C. Gordon <icculus@icculus.org>
parents:
1588
diff
changeset
|
1117 fi |
34cca785be57
Xrandr support in the X11 target.
Ryan C. Gordon <icculus@icculus.org>
parents:
1588
diff
changeset
|
1118 fi |
34cca785be57
Xrandr support in the X11 target.
Ryan C. Gordon <icculus@icculus.org>
parents:
1588
diff
changeset
|
1119 if test x$definitely_enable_video_x11_xrandr = xyes; then |
34cca785be57
Xrandr support in the X11 target.
Ryan C. Gordon <icculus@icculus.org>
parents:
1588
diff
changeset
|
1120 AC_DEFINE(SDL_VIDEO_DRIVER_X11_XRANDR) |
34cca785be57
Xrandr support in the X11 target.
Ryan C. Gordon <icculus@icculus.org>
parents:
1588
diff
changeset
|
1121 fi |
2763
6fc50bdd88c0
Some cleanups on the new XInput code.
Ryan C. Gordon <icculus@icculus.org>
parents:
2717
diff
changeset
|
1122 AC_ARG_ENABLE(video-x11-xinput, |
6fc50bdd88c0
Some cleanups on the new XInput code.
Ryan C. Gordon <icculus@icculus.org>
parents:
2717
diff
changeset
|
1123 AC_HELP_STRING([--enable-video-x11-xinput], [enable X11 XInput extension for manymouse, tablets, etc [[default=yes]]]), |
6fc50bdd88c0
Some cleanups on the new XInput code.
Ryan C. Gordon <icculus@icculus.org>
parents:
2717
diff
changeset
|
1124 , enable_video_x11_xinput=yes) |
6fc50bdd88c0
Some cleanups on the new XInput code.
Ryan C. Gordon <icculus@icculus.org>
parents:
2717
diff
changeset
|
1125 if test x$enable_video_x11_xinput = xyes; then |
6fc50bdd88c0
Some cleanups on the new XInput code.
Ryan C. Gordon <icculus@icculus.org>
parents:
2717
diff
changeset
|
1126 definitely_enable_video_x11_xinput=no |
6fc50bdd88c0
Some cleanups on the new XInput code.
Ryan C. Gordon <icculus@icculus.org>
parents:
2717
diff
changeset
|
1127 AC_CHECK_HEADER(X11/extensions/XInput.h, |
6fc50bdd88c0
Some cleanups on the new XInput code.
Ryan C. Gordon <icculus@icculus.org>
parents:
2717
diff
changeset
|
1128 have_xinput_h_hdr=yes, |
6fc50bdd88c0
Some cleanups on the new XInput code.
Ryan C. Gordon <icculus@icculus.org>
parents:
2717
diff
changeset
|
1129 have_xinput_h_hdr=no, |
6fc50bdd88c0
Some cleanups on the new XInput code.
Ryan C. Gordon <icculus@icculus.org>
parents:
2717
diff
changeset
|
1130 [#include <X11/Xlib.h> |
6fc50bdd88c0
Some cleanups on the new XInput code.
Ryan C. Gordon <icculus@icculus.org>
parents:
2717
diff
changeset
|
1131 ]) |
6fc50bdd88c0
Some cleanups on the new XInput code.
Ryan C. Gordon <icculus@icculus.org>
parents:
2717
diff
changeset
|
1132 if test x$have_xinput_h_hdr = xyes; then |
6fc50bdd88c0
Some cleanups on the new XInput code.
Ryan C. Gordon <icculus@icculus.org>
parents:
2717
diff
changeset
|
1133 if test x$enable_x11_shared = xyes && test x$xinput_lib != x ; then |
6fc50bdd88c0
Some cleanups on the new XInput code.
Ryan C. Gordon <icculus@icculus.org>
parents:
2717
diff
changeset
|
1134 echo "-- dynamic libXi -> $xinput_lib" |
6fc50bdd88c0
Some cleanups on the new XInput code.
Ryan C. Gordon <icculus@icculus.org>
parents:
2717
diff
changeset
|
1135 AC_DEFINE_UNQUOTED(SDL_VIDEO_DRIVER_X11_DYNAMIC_XINPUT, "$xinput_lib") |
6fc50bdd88c0
Some cleanups on the new XInput code.
Ryan C. Gordon <icculus@icculus.org>
parents:
2717
diff
changeset
|
1136 definitely_enable_video_x11_xinput=yes |
6fc50bdd88c0
Some cleanups on the new XInput code.
Ryan C. Gordon <icculus@icculus.org>
parents:
2717
diff
changeset
|
1137 else |
6fc50bdd88c0
Some cleanups on the new XInput code.
Ryan C. Gordon <icculus@icculus.org>
parents:
2717
diff
changeset
|
1138 AC_CHECK_LIB(Xi, XOpenDevice, have_xinput_lib=yes) |
6fc50bdd88c0
Some cleanups on the new XInput code.
Ryan C. Gordon <icculus@icculus.org>
parents:
2717
diff
changeset
|
1139 if test x$have_xinput_lib = xyes ; then |
6fc50bdd88c0
Some cleanups on the new XInput code.
Ryan C. Gordon <icculus@icculus.org>
parents:
2717
diff
changeset
|
1140 EXTRA_LDFLAGS="$EXTRA_LDFLAGS -lXi" |
6fc50bdd88c0
Some cleanups on the new XInput code.
Ryan C. Gordon <icculus@icculus.org>
parents:
2717
diff
changeset
|
1141 definitely_enable_video_x11_xinput=yes |
6fc50bdd88c0
Some cleanups on the new XInput code.
Ryan C. Gordon <icculus@icculus.org>
parents:
2717
diff
changeset
|
1142 fi |
6fc50bdd88c0
Some cleanups on the new XInput code.
Ryan C. Gordon <icculus@icculus.org>
parents:
2717
diff
changeset
|
1143 fi |
6fc50bdd88c0
Some cleanups on the new XInput code.
Ryan C. Gordon <icculus@icculus.org>
parents:
2717
diff
changeset
|
1144 fi |
6fc50bdd88c0
Some cleanups on the new XInput code.
Ryan C. Gordon <icculus@icculus.org>
parents:
2717
diff
changeset
|
1145 fi |
6fc50bdd88c0
Some cleanups on the new XInput code.
Ryan C. Gordon <icculus@icculus.org>
parents:
2717
diff
changeset
|
1146 if test x$definitely_enable_video_x11_xinput = xyes; then |
6fc50bdd88c0
Some cleanups on the new XInput code.
Ryan C. Gordon <icculus@icculus.org>
parents:
2717
diff
changeset
|
1147 AC_DEFINE(SDL_VIDEO_DRIVER_X11_XINPUT) |
6fc50bdd88c0
Some cleanups on the new XInput code.
Ryan C. Gordon <icculus@icculus.org>
parents:
2717
diff
changeset
|
1148 fi |
3025
54fac87e1f34
Added an API to enable/disable the screen saver.
Sam Lantinga <slouken@libsdl.org>
parents:
3014
diff
changeset
|
1149 AC_ARG_ENABLE(video-x11-scrnsaver, |
54fac87e1f34
Added an API to enable/disable the screen saver.
Sam Lantinga <slouken@libsdl.org>
parents:
3014
diff
changeset
|
1150 AC_HELP_STRING([--enable-video-x11-scrnsaver], [enable X11 screensaver extension [[default=yes]]]), |
54fac87e1f34
Added an API to enable/disable the screen saver.
Sam Lantinga <slouken@libsdl.org>
parents:
3014
diff
changeset
|
1151 , enable_video_x11_scrnsaver=yes) |
54fac87e1f34
Added an API to enable/disable the screen saver.
Sam Lantinga <slouken@libsdl.org>
parents:
3014
diff
changeset
|
1152 if test x$enable_video_x11_scrnsaver = xyes; then |
54fac87e1f34
Added an API to enable/disable the screen saver.
Sam Lantinga <slouken@libsdl.org>
parents:
3014
diff
changeset
|
1153 AC_CHECK_HEADER(X11/extensions/scrnsaver.h, |
54fac87e1f34
Added an API to enable/disable the screen saver.
Sam Lantinga <slouken@libsdl.org>
parents:
3014
diff
changeset
|
1154 have_scrnsaver_h_hdr=yes, |
54fac87e1f34
Added an API to enable/disable the screen saver.
Sam Lantinga <slouken@libsdl.org>
parents:
3014
diff
changeset
|
1155 have_scrnsaver_h_hdr=no, |
1783 | 1156 [#include <X11/Xlib.h> |
1157 ]) | |
3025
54fac87e1f34
Added an API to enable/disable the screen saver.
Sam Lantinga <slouken@libsdl.org>
parents:
3014
diff
changeset
|
1158 if test x$have_scrnsaver_h_hdr = xyes; then |
54fac87e1f34
Added an API to enable/disable the screen saver.
Sam Lantinga <slouken@libsdl.org>
parents:
3014
diff
changeset
|
1159 if test x$enable_x11_shared = xyes && test x$xss_lib != x ; then |
54fac87e1f34
Added an API to enable/disable the screen saver.
Sam Lantinga <slouken@libsdl.org>
parents:
3014
diff
changeset
|
1160 echo "-- dynamic libXss -> $xss_lib" |
54fac87e1f34
Added an API to enable/disable the screen saver.
Sam Lantinga <slouken@libsdl.org>
parents:
3014
diff
changeset
|
1161 AC_DEFINE_UNQUOTED(SDL_VIDEO_DRIVER_X11_DYNAMIC_XSS, "$xss_lib") |
54fac87e1f34
Added an API to enable/disable the screen saver.
Sam Lantinga <slouken@libsdl.org>
parents:
3014
diff
changeset
|
1162 definitely_enable_video_x11_scrnsaver=yes |
54fac87e1f34
Added an API to enable/disable the screen saver.
Sam Lantinga <slouken@libsdl.org>
parents:
3014
diff
changeset
|
1163 else |
54fac87e1f34
Added an API to enable/disable the screen saver.
Sam Lantinga <slouken@libsdl.org>
parents:
3014
diff
changeset
|
1164 AC_CHECK_LIB(Xss, XScreenSaverSuspend, have_xss_lib=yes) |
54fac87e1f34
Added an API to enable/disable the screen saver.
Sam Lantinga <slouken@libsdl.org>
parents:
3014
diff
changeset
|
1165 if test x$have_xss_lib = xyes ; then |
54fac87e1f34
Added an API to enable/disable the screen saver.
Sam Lantinga <slouken@libsdl.org>
parents:
3014
diff
changeset
|
1166 EXTRA_LDFLAGS="$EXTRA_LDFLAGS -lXss" |
54fac87e1f34
Added an API to enable/disable the screen saver.
Sam Lantinga <slouken@libsdl.org>
parents:
3014
diff
changeset
|
1167 definitely_enable_video_x11_scrnsaver=yes |
54fac87e1f34
Added an API to enable/disable the screen saver.
Sam Lantinga <slouken@libsdl.org>
parents:
3014
diff
changeset
|
1168 fi |
54fac87e1f34
Added an API to enable/disable the screen saver.
Sam Lantinga <slouken@libsdl.org>
parents:
3014
diff
changeset
|
1169 fi |
1783 | 1170 fi |
1171 fi | |
3025
54fac87e1f34
Added an API to enable/disable the screen saver.
Sam Lantinga <slouken@libsdl.org>
parents:
3014
diff
changeset
|
1172 if test x$definitely_enable_video_x11_scrnsaver = xyes; then |
54fac87e1f34
Added an API to enable/disable the screen saver.
Sam Lantinga <slouken@libsdl.org>
parents:
3014
diff
changeset
|
1173 AC_DEFINE(SDL_VIDEO_DRIVER_X11_SCRNSAVER) |
54fac87e1f34
Added an API to enable/disable the screen saver.
Sam Lantinga <slouken@libsdl.org>
parents:
3014
diff
changeset
|
1174 fi |
2810
27cb878a278e
Implemented the X11 (non-OpenGL) renderer, no alpha or scaling available.
Sam Lantinga <slouken@libsdl.org>
parents:
2793
diff
changeset
|
1175 |
27cb878a278e
Implemented the X11 (non-OpenGL) renderer, no alpha or scaling available.
Sam Lantinga <slouken@libsdl.org>
parents:
2793
diff
changeset
|
1176 AC_ARG_ENABLE(render-x11, |
27cb878a278e
Implemented the X11 (non-OpenGL) renderer, no alpha or scaling available.
Sam Lantinga <slouken@libsdl.org>
parents:
2793
diff
changeset
|
1177 AC_HELP_STRING([--enable-render-x11], [enable the X11 render driver [[default=yes]]]), |
27cb878a278e
Implemented the X11 (non-OpenGL) renderer, no alpha or scaling available.
Sam Lantinga <slouken@libsdl.org>
parents:
2793
diff
changeset
|
1178 , enable_render_x11=yes) |
27cb878a278e
Implemented the X11 (non-OpenGL) renderer, no alpha or scaling available.
Sam Lantinga <slouken@libsdl.org>
parents:
2793
diff
changeset
|
1179 if test x$enable_render_x11 = xyes; then |
27cb878a278e
Implemented the X11 (non-OpenGL) renderer, no alpha or scaling available.
Sam Lantinga <slouken@libsdl.org>
parents:
2793
diff
changeset
|
1180 AC_DEFINE(SDL_VIDEO_RENDER_X11) |
27cb878a278e
Implemented the X11 (non-OpenGL) renderer, no alpha or scaling available.
Sam Lantinga <slouken@libsdl.org>
parents:
2793
diff
changeset
|
1181 fi |
0 | 1182 fi |
1183 fi | |
1184 } | |
279
04351f59b051
Mike Gorchak added some QNX tweaks, including OpenGL support
Sam Lantinga <slouken@libsdl.org>
parents:
278
diff
changeset
|
1185 |
1361
19418e4422cb
New configure-based build system. Still work in progress, but much improved
Sam Lantinga <slouken@libsdl.org>
parents:
1354
diff
changeset
|
1186 dnl Check for QNX photon video driver |
0 | 1187 CheckPHOTON() |
1188 { | |
1189 AC_ARG_ENABLE(video-photon, | |
1637
9ba366b919c7
Date: Fri, 31 Mar 2006 18:28:55 -0500
Sam Lantinga <slouken@libsdl.org>
parents:
1632
diff
changeset
|
1190 AC_HELP_STRING([--enable-video-photon], [use QNX Photon video driver [[default=yes]]]), |
0 | 1191 , enable_video_photon=yes) |
1192 if test x$enable_video = xyes -a x$enable_video_photon = xyes; then | |
1193 AC_MSG_CHECKING(for QNX Photon support) | |
1194 video_photon=no | |
1195 AC_TRY_COMPILE([ | |
1196 #include <Ph.h> | |
1197 #include <Pt.h> | |
1198 #include <photon/Pg.h> | |
1199 #include <photon/PdDirect.h> | |
1200 ],[ | |
1201 PgDisplaySettings_t *visual; | |
1202 ],[ | |
1203 video_photon=yes | |
1204 ]) | |
1205 AC_MSG_RESULT($video_photon) | |
1206 if test x$video_photon = xyes; then | |
1361
19418e4422cb
New configure-based build system. Still work in progress, but much improved
Sam Lantinga <slouken@libsdl.org>
parents:
1354
diff
changeset
|
1207 AC_DEFINE(SDL_VIDEO_DRIVER_PHOTON) |
19418e4422cb
New configure-based build system. Still work in progress, but much improved
Sam Lantinga <slouken@libsdl.org>
parents:
1354
diff
changeset
|
1208 SOURCES="$SOURCES $srcdir/src/video/photon/*.c" |
3372
dd11d2376e27
Added phrender library linkage for QNX target.
Mike Gorchak <lestat@i.com.ua>
parents:
3368
diff
changeset
|
1209 EXTRA_LDFLAGS="$EXTRA_LDFLAGS -lph -lphrender" |
1361
19418e4422cb
New configure-based build system. Still work in progress, but much improved
Sam Lantinga <slouken@libsdl.org>
parents:
1354
diff
changeset
|
1210 have_video=yes |
19418e4422cb
New configure-based build system. Still work in progress, but much improved
Sam Lantinga <slouken@libsdl.org>
parents:
1354
diff
changeset
|
1211 |
279
04351f59b051
Mike Gorchak added some QNX tweaks, including OpenGL support
Sam Lantinga <slouken@libsdl.org>
parents:
278
diff
changeset
|
1212 CheckOpenGLQNX |
0 | 1213 fi |
1214 fi | |
1215 } | |
1216 | |
3083
0bc41e0361d3
Date: Mon, 2 Mar 2009 16:27:42 +0200
Sam Lantinga <slouken@libsdl.org>
parents:
3082
diff
changeset
|
1217 dnl Check for QNX photon video driver |
0bc41e0361d3
Date: Mon, 2 Mar 2009 16:27:42 +0200
Sam Lantinga <slouken@libsdl.org>
parents:
3082
diff
changeset
|
1218 CheckQNXGF() |
0bc41e0361d3
Date: Mon, 2 Mar 2009 16:27:42 +0200
Sam Lantinga <slouken@libsdl.org>
parents:
3082
diff
changeset
|
1219 { |
0bc41e0361d3
Date: Mon, 2 Mar 2009 16:27:42 +0200
Sam Lantinga <slouken@libsdl.org>
parents:
3082
diff
changeset
|
1220 AC_ARG_ENABLE(video-qnxgf, |
0bc41e0361d3
Date: Mon, 2 Mar 2009 16:27:42 +0200
Sam Lantinga <slouken@libsdl.org>
parents:
3082
diff
changeset
|
1221 AC_HELP_STRING([--enable-video-qnxgf], [use QNX GF video driver [[default=yes]]]), |
0bc41e0361d3
Date: Mon, 2 Mar 2009 16:27:42 +0200
Sam Lantinga <slouken@libsdl.org>
parents:
3082
diff
changeset
|
1222 , enable_video_qnxgf=yes) |
0bc41e0361d3
Date: Mon, 2 Mar 2009 16:27:42 +0200
Sam Lantinga <slouken@libsdl.org>
parents:
3082
diff
changeset
|
1223 if test x$enable_video = xyes -a x$enable_video_qnxgf = xyes; then |
0bc41e0361d3
Date: Mon, 2 Mar 2009 16:27:42 +0200
Sam Lantinga <slouken@libsdl.org>
parents:
3082
diff
changeset
|
1224 AC_MSG_CHECKING(for QNX GF support) |
0bc41e0361d3
Date: Mon, 2 Mar 2009 16:27:42 +0200
Sam Lantinga <slouken@libsdl.org>
parents:
3082
diff
changeset
|
1225 video_qnxgf=no |
0bc41e0361d3
Date: Mon, 2 Mar 2009 16:27:42 +0200
Sam Lantinga <slouken@libsdl.org>
parents:
3082
diff
changeset
|
1226 AC_TRY_COMPILE([ |
0bc41e0361d3
Date: Mon, 2 Mar 2009 16:27:42 +0200
Sam Lantinga <slouken@libsdl.org>
parents:
3082
diff
changeset
|
1227 #include <gf/gf.h> |
0bc41e0361d3
Date: Mon, 2 Mar 2009 16:27:42 +0200
Sam Lantinga <slouken@libsdl.org>
parents:
3082
diff
changeset
|
1228 #include <gf/gf3d.h> |
0bc41e0361d3
Date: Mon, 2 Mar 2009 16:27:42 +0200
Sam Lantinga <slouken@libsdl.org>
parents:
3082
diff
changeset
|
1229 ],[ |
0bc41e0361d3
Date: Mon, 2 Mar 2009 16:27:42 +0200
Sam Lantinga <slouken@libsdl.org>
parents:
3082
diff
changeset
|
1230 gf_3d_config_info_t* gfinfo; |
0bc41e0361d3
Date: Mon, 2 Mar 2009 16:27:42 +0200
Sam Lantinga <slouken@libsdl.org>
parents:
3082
diff
changeset
|
1231 ],[ |
0bc41e0361d3
Date: Mon, 2 Mar 2009 16:27:42 +0200
Sam Lantinga <slouken@libsdl.org>
parents:
3082
diff
changeset
|
1232 video_qnxgf=yes |
0bc41e0361d3
Date: Mon, 2 Mar 2009 16:27:42 +0200
Sam Lantinga <slouken@libsdl.org>
parents:
3082
diff
changeset
|
1233 ]) |
0bc41e0361d3
Date: Mon, 2 Mar 2009 16:27:42 +0200
Sam Lantinga <slouken@libsdl.org>
parents:
3082
diff
changeset
|
1234 AC_MSG_RESULT($video_qnxgf) |
0bc41e0361d3
Date: Mon, 2 Mar 2009 16:27:42 +0200
Sam Lantinga <slouken@libsdl.org>
parents:
3082
diff
changeset
|
1235 if test x$video_qnxgf = xyes; then |
0bc41e0361d3
Date: Mon, 2 Mar 2009 16:27:42 +0200
Sam Lantinga <slouken@libsdl.org>
parents:
3082
diff
changeset
|
1236 AC_DEFINE(SDL_VIDEO_DRIVER_QNXGF) |
0bc41e0361d3
Date: Mon, 2 Mar 2009 16:27:42 +0200
Sam Lantinga <slouken@libsdl.org>
parents:
3082
diff
changeset
|
1237 SOURCES="$SOURCES $srcdir/src/video/qnxgf/*.c" |
0bc41e0361d3
Date: Mon, 2 Mar 2009 16:27:42 +0200
Sam Lantinga <slouken@libsdl.org>
parents:
3082
diff
changeset
|
1238 EXTRA_LDFLAGS="$EXTRA_LDFLAGS -lgf" |
3113
df2bb5735822
Added hiddi library linkage when GF target is available for QNX
Mike Gorchak <lestat@i.com.ua>
parents:
3104
diff
changeset
|
1239 |
df2bb5735822
Added hiddi library linkage when GF target is available for QNX
Mike Gorchak <lestat@i.com.ua>
parents:
3104
diff
changeset
|
1240 # Add HIDDI library for HID support using GF |
df2bb5735822
Added hiddi library linkage when GF target is available for QNX
Mike Gorchak <lestat@i.com.ua>
parents:
3104
diff
changeset
|
1241 EXTRA_LDFLAGS="$EXTRA_LDFLAGS -lhiddi" |
df2bb5735822
Added hiddi library linkage when GF target is available for QNX
Mike Gorchak <lestat@i.com.ua>
parents:
3104
diff
changeset
|
1242 |
3083
0bc41e0361d3
Date: Mon, 2 Mar 2009 16:27:42 +0200
Sam Lantinga <slouken@libsdl.org>
parents:
3082
diff
changeset
|
1243 have_video=yes |
0bc41e0361d3
Date: Mon, 2 Mar 2009 16:27:42 +0200
Sam Lantinga <slouken@libsdl.org>
parents:
3082
diff
changeset
|
1244 |
0bc41e0361d3
Date: Mon, 2 Mar 2009 16:27:42 +0200
Sam Lantinga <slouken@libsdl.org>
parents:
3082
diff
changeset
|
1245 CheckOpenGLESQNX |
0bc41e0361d3
Date: Mon, 2 Mar 2009 16:27:42 +0200
Sam Lantinga <slouken@libsdl.org>
parents:
3082
diff
changeset
|
1246 fi |
0bc41e0361d3
Date: Mon, 2 Mar 2009 16:27:42 +0200
Sam Lantinga <slouken@libsdl.org>
parents:
3082
diff
changeset
|
1247 fi |
0bc41e0361d3
Date: Mon, 2 Mar 2009 16:27:42 +0200
Sam Lantinga <slouken@libsdl.org>
parents:
3082
diff
changeset
|
1248 } |
0bc41e0361d3
Date: Mon, 2 Mar 2009 16:27:42 +0200
Sam Lantinga <slouken@libsdl.org>
parents:
3082
diff
changeset
|
1249 |
1361
19418e4422cb
New configure-based build system. Still work in progress, but much improved
Sam Lantinga <slouken@libsdl.org>
parents:
1354
diff
changeset
|
1250 dnl Set up the BWindow video driver if enabled |
19418e4422cb
New configure-based build system. Still work in progress, but much improved
Sam Lantinga <slouken@libsdl.org>
parents:
1354
diff
changeset
|
1251 CheckBWINDOW() |
19418e4422cb
New configure-based build system. Still work in progress, but much improved
Sam Lantinga <slouken@libsdl.org>
parents:
1354
diff
changeset
|
1252 { |
19418e4422cb
New configure-based build system. Still work in progress, but much improved
Sam Lantinga <slouken@libsdl.org>
parents:
1354
diff
changeset
|
1253 if test x$enable_video = xyes; then |
19418e4422cb
New configure-based build system. Still work in progress, but much improved
Sam Lantinga <slouken@libsdl.org>
parents:
1354
diff
changeset
|
1254 AC_DEFINE(SDL_VIDEO_DRIVER_BWINDOW) |
19418e4422cb
New configure-based build system. Still work in progress, but much improved
Sam Lantinga <slouken@libsdl.org>
parents:
1354
diff
changeset
|
1255 SOURCES="$SOURCES $srcdir/src/video/bwindow/*.cc" |
19418e4422cb
New configure-based build system. Still work in progress, but much improved
Sam Lantinga <slouken@libsdl.org>
parents:
1354
diff
changeset
|
1256 have_video=yes |
19418e4422cb
New configure-based build system. Still work in progress, but much improved
Sam Lantinga <slouken@libsdl.org>
parents:
1354
diff
changeset
|
1257 fi |
19418e4422cb
New configure-based build system. Still work in progress, but much improved
Sam Lantinga <slouken@libsdl.org>
parents:
1354
diff
changeset
|
1258 } |
19418e4422cb
New configure-based build system. Still work in progress, but much improved
Sam Lantinga <slouken@libsdl.org>
parents:
1354
diff
changeset
|
1259 |
1931
103c6fec2a60
The Mac OS X Cocoa video driver is under construction...
Sam Lantinga <slouken@libsdl.org>
parents:
1910
diff
changeset
|
1260 dnl Set up the Cocoa video driver for Mac OS X (but not Darwin) |
1361
19418e4422cb
New configure-based build system. Still work in progress, but much improved
Sam Lantinga <slouken@libsdl.org>
parents:
1354
diff
changeset
|
1261 CheckCOCOA() |
19418e4422cb
New configure-based build system. Still work in progress, but much improved
Sam Lantinga <slouken@libsdl.org>
parents:
1354
diff
changeset
|
1262 { |
19418e4422cb
New configure-based build system. Still work in progress, but much improved
Sam Lantinga <slouken@libsdl.org>
parents:
1354
diff
changeset
|
1263 AC_ARG_ENABLE(video-cocoa, |
1931
103c6fec2a60
The Mac OS X Cocoa video driver is under construction...
Sam Lantinga <slouken@libsdl.org>
parents:
1910
diff
changeset
|
1264 AC_HELP_STRING([--enable-video-cocoa], [use Cocoa video driver [[default=yes]]]), |
1361
19418e4422cb
New configure-based build system. Still work in progress, but much improved
Sam Lantinga <slouken@libsdl.org>
parents:
1354
diff
changeset
|
1265 , enable_video_cocoa=yes) |
19418e4422cb
New configure-based build system. Still work in progress, but much improved
Sam Lantinga <slouken@libsdl.org>
parents:
1354
diff
changeset
|
1266 if test x$enable_video = xyes -a x$enable_video_cocoa = xyes; then |
19418e4422cb
New configure-based build system. Still work in progress, but much improved
Sam Lantinga <slouken@libsdl.org>
parents:
1354
diff
changeset
|
1267 save_CFLAGS="$CFLAGS" |
19418e4422cb
New configure-based build system. Still work in progress, but much improved
Sam Lantinga <slouken@libsdl.org>
parents:
1354
diff
changeset
|
1268 dnl work around that we don't have Objective-C support in autoconf |
19418e4422cb
New configure-based build system. Still work in progress, but much improved
Sam Lantinga <slouken@libsdl.org>
parents:
1354
diff
changeset
|
1269 CFLAGS="$CFLAGS -x objective-c" |
19418e4422cb
New configure-based build system. Still work in progress, but much improved
Sam Lantinga <slouken@libsdl.org>
parents:
1354
diff
changeset
|
1270 AC_MSG_CHECKING(for Cocoa framework) |
19418e4422cb
New configure-based build system. Still work in progress, but much improved
Sam Lantinga <slouken@libsdl.org>
parents:
1354
diff
changeset
|
1271 have_cocoa=no |
19418e4422cb
New configure-based build system. Still work in progress, but much improved
Sam Lantinga <slouken@libsdl.org>
parents:
1354
diff
changeset
|
1272 AC_TRY_COMPILE([ |
19418e4422cb
New configure-based build system. Still work in progress, but much improved
Sam Lantinga <slouken@libsdl.org>
parents:
1354
diff
changeset
|
1273 #import <Cocoa/Cocoa.h> |
19418e4422cb
New configure-based build system. Still work in progress, but much improved
Sam Lantinga <slouken@libsdl.org>
parents:
1354
diff
changeset
|
1274 ],[ |
19418e4422cb
New configure-based build system. Still work in progress, but much improved
Sam Lantinga <slouken@libsdl.org>
parents:
1354
diff
changeset
|
1275 ],[ |
19418e4422cb
New configure-based build system. Still work in progress, but much improved
Sam Lantinga <slouken@libsdl.org>
parents:
1354
diff
changeset
|
1276 have_cocoa=yes |
19418e4422cb
New configure-based build system. Still work in progress, but much improved
Sam Lantinga <slouken@libsdl.org>
parents:
1354
diff
changeset
|
1277 ]) |
19418e4422cb
New configure-based build system. Still work in progress, but much improved
Sam Lantinga <slouken@libsdl.org>
parents:
1354
diff
changeset
|
1278 AC_MSG_RESULT($have_cocoa) |
19418e4422cb
New configure-based build system. Still work in progress, but much improved
Sam Lantinga <slouken@libsdl.org>
parents:
1354
diff
changeset
|
1279 CFLAGS="$save_CFLAGS" |
19418e4422cb
New configure-based build system. Still work in progress, but much improved
Sam Lantinga <slouken@libsdl.org>
parents:
1354
diff
changeset
|
1280 if test x$have_cocoa = xyes; then |
1931
103c6fec2a60
The Mac OS X Cocoa video driver is under construction...
Sam Lantinga <slouken@libsdl.org>
parents:
1910
diff
changeset
|
1281 AC_DEFINE(SDL_VIDEO_DRIVER_COCOA) |
103c6fec2a60
The Mac OS X Cocoa video driver is under construction...
Sam Lantinga <slouken@libsdl.org>
parents:
1910
diff
changeset
|
1282 SOURCES="$SOURCES $srcdir/src/video/cocoa/*.m" |
1361
19418e4422cb
New configure-based build system. Still work in progress, but much improved
Sam Lantinga <slouken@libsdl.org>
parents:
1354
diff
changeset
|
1283 have_video=yes |
19418e4422cb
New configure-based build system. Still work in progress, but much improved
Sam Lantinga <slouken@libsdl.org>
parents:
1354
diff
changeset
|
1284 fi |
19418e4422cb
New configure-based build system. Still work in progress, but much improved
Sam Lantinga <slouken@libsdl.org>
parents:
1354
diff
changeset
|
1285 fi |
19418e4422cb
New configure-based build system. Still work in progress, but much improved
Sam Lantinga <slouken@libsdl.org>
parents:
1354
diff
changeset
|
1286 } |
19418e4422cb
New configure-based build system. Still work in progress, but much improved
Sam Lantinga <slouken@libsdl.org>
parents:
1354
diff
changeset
|
1287 |
0 | 1288 dnl Find the framebuffer console includes |
1289 CheckFBCON() | |
1290 { | |
1291 AC_ARG_ENABLE(video-fbcon, | |
2021
4ddfbe55e105
Temporarily disabled framebuffer console support for SDL 1.3
Sam Lantinga <slouken@libsdl.org>
parents:
1981
diff
changeset
|
1292 AC_HELP_STRING([--enable-video-fbcon], [use framebuffer console video driver [[default=no]]]), |
4ddfbe55e105
Temporarily disabled framebuffer console support for SDL 1.3
Sam Lantinga <slouken@libsdl.org>
parents:
1981
diff
changeset
|
1293 , enable_video_fbcon=no) |
0 | 1294 if test x$enable_video = xyes -a x$enable_video_fbcon = xyes; then |
1295 AC_MSG_CHECKING(for framebuffer console support) | |
1296 video_fbcon=no | |
1297 AC_TRY_COMPILE([ | |
1298 #include <linux/fb.h> | |
1299 #include <linux/kd.h> | |
1300 #include <linux/keyboard.h> | |
1301 ],[ | |
1302 ],[ | |
1303 video_fbcon=yes | |
1304 ]) | |
1305 AC_MSG_RESULT($video_fbcon) | |
1306 if test x$video_fbcon = xyes; then | |
2093
cdaeb26ed66a
Merged r2981:2982 from branches/SDL-1.2: fbcon getpagesize() compile fix.
Ryan C. Gordon <icculus@icculus.org>
parents:
2085
diff
changeset
|
1307 AC_CHECK_FUNCS(getpagesize) |
1361
19418e4422cb
New configure-based build system. Still work in progress, but much improved
Sam Lantinga <slouken@libsdl.org>
parents:
1354
diff
changeset
|
1308 AC_DEFINE(SDL_VIDEO_DRIVER_FBCON) |
19418e4422cb
New configure-based build system. Still work in progress, but much improved
Sam Lantinga <slouken@libsdl.org>
parents:
1354
diff
changeset
|
1309 SOURCES="$SOURCES $srcdir/src/video/fbcon/*.c" |
19418e4422cb
New configure-based build system. Still work in progress, but much improved
Sam Lantinga <slouken@libsdl.org>
parents:
1354
diff
changeset
|
1310 have_video=yes |
0 | 1311 fi |
1312 fi | |
1313 } | |
1314 | |
167
cb384ef627f6
Added support for DirectFB video on Linux (thanks Denis!)
Sam Lantinga <slouken@libsdl.org>
parents:
166
diff
changeset
|
1315 dnl Find DirectFB |
cb384ef627f6
Added support for DirectFB video on Linux (thanks Denis!)
Sam Lantinga <slouken@libsdl.org>
parents:
166
diff
changeset
|
1316 CheckDirectFB() |
cb384ef627f6
Added support for DirectFB video on Linux (thanks Denis!)
Sam Lantinga <slouken@libsdl.org>
parents:
166
diff
changeset
|
1317 { |
cb384ef627f6
Added support for DirectFB video on Linux (thanks Denis!)
Sam Lantinga <slouken@libsdl.org>
parents:
166
diff
changeset
|
1318 AC_ARG_ENABLE(video-directfb, |
2314
33052794de27
Disable DirectFB by default, since it hasn't been updated for the 1.3 API yet.
Sam Lantinga <slouken@libsdl.org>
parents:
2293
diff
changeset
|
1319 AC_HELP_STRING([--enable-video-directfb], [use DirectFB video driver [[default=no]]]), |
33052794de27
Disable DirectFB by default, since it hasn't been updated for the 1.3 API yet.
Sam Lantinga <slouken@libsdl.org>
parents:
2293
diff
changeset
|
1320 , enable_video_directfb=no) |
167
cb384ef627f6
Added support for DirectFB video on Linux (thanks Denis!)
Sam Lantinga <slouken@libsdl.org>
parents:
166
diff
changeset
|
1321 if test x$enable_video = xyes -a x$enable_video_directfb = xyes; then |
cb384ef627f6
Added support for DirectFB video on Linux (thanks Denis!)
Sam Lantinga <slouken@libsdl.org>
parents:
166
diff
changeset
|
1322 video_directfb=no |
cb384ef627f6
Added support for DirectFB video on Linux (thanks Denis!)
Sam Lantinga <slouken@libsdl.org>
parents:
166
diff
changeset
|
1323 |
2998
d364ee9b9c15
Date: Sun, 04 Jan 2009 20:53:30 +0100
Sam Lantinga <slouken@libsdl.org>
parents:
2947
diff
changeset
|
1324 DIRECTFB_REQUIRED_VERSION=1.0.0 |
1588
e20dcef5647c
Improved DirectFB install detection
Sam Lantinga <slouken@libsdl.org>
parents:
1574
diff
changeset
|
1325 |
1602
cd97a8e39874
Fixed DirectFB detection
Sam Lantinga <slouken@libsdl.org>
parents:
1601
diff
changeset
|
1326 AC_PATH_PROG(DIRECTFBCONFIG, directfb-config, no) |
cd97a8e39874
Fixed DirectFB detection
Sam Lantinga <slouken@libsdl.org>
parents:
1601
diff
changeset
|
1327 if test x$DIRECTFBCONFIG = xno; then |
1588
e20dcef5647c
Improved DirectFB install detection
Sam Lantinga <slouken@libsdl.org>
parents:
1574
diff
changeset
|
1328 AC_PATH_PROG(PKG_CONFIG, pkg-config, no) |
1602
cd97a8e39874
Fixed DirectFB detection
Sam Lantinga <slouken@libsdl.org>
parents:
1601
diff
changeset
|
1329 if test x$PKG_CONFIG != xno; then |
cd97a8e39874
Fixed DirectFB detection
Sam Lantinga <slouken@libsdl.org>
parents:
1601
diff
changeset
|
1330 if $PKG_CONFIG --atleast-pkgconfig-version 0.7 && $PKG_CONFIG --atleast-version $DIRECTFB_REQUIRED_VERSION directfb; then |
1588
e20dcef5647c
Improved DirectFB install detection
Sam Lantinga <slouken@libsdl.org>
parents:
1574
diff
changeset
|
1331 DIRECTFB_CFLAGS=`$PKG_CONFIG --cflags directfb` |
e20dcef5647c
Improved DirectFB install detection
Sam Lantinga <slouken@libsdl.org>
parents:
1574
diff
changeset
|
1332 DIRECTFB_LIBS=`$PKG_CONFIG --libs directfb` |
2998
d364ee9b9c15
Date: Sun, 04 Jan 2009 20:53:30 +0100
Sam Lantinga <slouken@libsdl.org>
parents:
2947
diff
changeset
|
1333 DIRECTFB_PREFIX=`$PKG_CONFIG --variable=prefix directfb` |
1588
e20dcef5647c
Improved DirectFB install detection
Sam Lantinga <slouken@libsdl.org>
parents:
1574
diff
changeset
|
1334 video_directfb=yes |
e20dcef5647c
Improved DirectFB install detection
Sam Lantinga <slouken@libsdl.org>
parents:
1574
diff
changeset
|
1335 fi |
167
cb384ef627f6
Added support for DirectFB video on Linux (thanks Denis!)
Sam Lantinga <slouken@libsdl.org>
parents:
166
diff
changeset
|
1336 fi |
1588
e20dcef5647c
Improved DirectFB install detection
Sam Lantinga <slouken@libsdl.org>
parents:
1574
diff
changeset
|
1337 else |
e20dcef5647c
Improved DirectFB install detection
Sam Lantinga <slouken@libsdl.org>
parents:
1574
diff
changeset
|
1338 set -- `echo $DIRECTFB_REQUIRED_VERSION | sed 's/\./ /g'` |
e20dcef5647c
Improved DirectFB install detection
Sam Lantinga <slouken@libsdl.org>
parents:
1574
diff
changeset
|
1339 NEED_VERSION=`expr $1 \* 10000 + $2 \* 100 + $3` |
e20dcef5647c
Improved DirectFB install detection
Sam Lantinga <slouken@libsdl.org>
parents:
1574
diff
changeset
|
1340 set -- `directfb-config --version | sed 's/\./ /g'` |
e20dcef5647c
Improved DirectFB install detection
Sam Lantinga <slouken@libsdl.org>
parents:
1574
diff
changeset
|
1341 HAVE_VERSION=`expr $1 \* 10000 + $2 \* 100 + $3` |
e20dcef5647c
Improved DirectFB install detection
Sam Lantinga <slouken@libsdl.org>
parents:
1574
diff
changeset
|
1342 if test $HAVE_VERSION -ge $NEED_VERSION; then |
e20dcef5647c
Improved DirectFB install detection
Sam Lantinga <slouken@libsdl.org>
parents:
1574
diff
changeset
|
1343 DIRECTFB_CFLAGS=`$DIRECTFBCONFIG --cflags` |
e20dcef5647c
Improved DirectFB install detection
Sam Lantinga <slouken@libsdl.org>
parents:
1574
diff
changeset
|
1344 DIRECTFB_LIBS=`$DIRECTFBCONFIG --libs` |
2998
d364ee9b9c15
Date: Sun, 04 Jan 2009 20:53:30 +0100
Sam Lantinga <slouken@libsdl.org>
parents:
2947
diff
changeset
|
1345 DIRECTFB_PREFIX=`$DIRECTFBCONFIG --prefix` |
167
cb384ef627f6
Added support for DirectFB video on Linux (thanks Denis!)
Sam Lantinga <slouken@libsdl.org>
parents:
166
diff
changeset
|
1346 video_directfb=yes |
cb384ef627f6
Added support for DirectFB video on Linux (thanks Denis!)
Sam Lantinga <slouken@libsdl.org>
parents:
166
diff
changeset
|
1347 fi |
cb384ef627f6
Added support for DirectFB video on Linux (thanks Denis!)
Sam Lantinga <slouken@libsdl.org>
parents:
166
diff
changeset
|
1348 fi |
3351
8e0182c236d8
SuSE 11.1 installs directfb-config without directfb-devel, so check to
Sam Lantinga <slouken@libsdl.org>
parents:
3334
diff
changeset
|
1349 if test x$video_directfb = xyes; then |
8e0182c236d8
SuSE 11.1 installs directfb-config without directfb-devel, so check to
Sam Lantinga <slouken@libsdl.org>
parents:
3334
diff
changeset
|
1350 # SuSE 11.1 installs directfb-config without directfb-devel |
3639
6f4c5b0aba7c
Fix detection of directfb.h
Couriersud <couriersud@arcor.de>
parents:
3623
diff
changeset
|
1351 save_CPPFLAGS="$CPPFLAGS" |
6f4c5b0aba7c
Fix detection of directfb.h
Couriersud <couriersud@arcor.de>
parents:
3623
diff
changeset
|
1352 CPPFLAGS="$CPPFLAGS $DIRECTFB_CFLAGS" |
3351
8e0182c236d8
SuSE 11.1 installs directfb-config without directfb-devel, so check to
Sam Lantinga <slouken@libsdl.org>
parents:
3334
diff
changeset
|
1353 AC_CHECK_HEADER(directfb.h, have_directfb_hdr=yes, have_directfb_hdr=no) |
3639
6f4c5b0aba7c
Fix detection of directfb.h
Couriersud <couriersud@arcor.de>
parents:
3623
diff
changeset
|
1354 CPPFLAGS="$save_CPPFLAGS" |
3351
8e0182c236d8
SuSE 11.1 installs directfb-config without directfb-devel, so check to
Sam Lantinga <slouken@libsdl.org>
parents:
3334
diff
changeset
|
1355 video_directfb=$have_directfb_hdr |
8e0182c236d8
SuSE 11.1 installs directfb-config without directfb-devel, so check to
Sam Lantinga <slouken@libsdl.org>
parents:
3334
diff
changeset
|
1356 fi |
8e0182c236d8
SuSE 11.1 installs directfb-config without directfb-devel, so check to
Sam Lantinga <slouken@libsdl.org>
parents:
3334
diff
changeset
|
1357 AC_MSG_CHECKING(for DirectFB $DIRECTFB_REQUIRED_VERSION support) |
8e0182c236d8
SuSE 11.1 installs directfb-config without directfb-devel, so check to
Sam Lantinga <slouken@libsdl.org>
parents:
3334
diff
changeset
|
1358 AC_MSG_RESULT($video_directfb) |
167
cb384ef627f6
Added support for DirectFB video on Linux (thanks Denis!)
Sam Lantinga <slouken@libsdl.org>
parents:
166
diff
changeset
|
1359 |
cb384ef627f6
Added support for DirectFB video on Linux (thanks Denis!)
Sam Lantinga <slouken@libsdl.org>
parents:
166
diff
changeset
|
1360 if test x$video_directfb = xyes; then |
2998
d364ee9b9c15
Date: Sun, 04 Jan 2009 20:53:30 +0100
Sam Lantinga <slouken@libsdl.org>
parents:
2947
diff
changeset
|
1361 AC_ARG_ENABLE(directfb-shared, |
d364ee9b9c15
Date: Sun, 04 Jan 2009 20:53:30 +0100
Sam Lantinga <slouken@libsdl.org>
parents:
2947
diff
changeset
|
1362 AC_HELP_STRING([--enable-directfb-shared], [dynamically load directfb support [[default=yes]]]), |
d364ee9b9c15
Date: Sun, 04 Jan 2009 20:53:30 +0100
Sam Lantinga <slouken@libsdl.org>
parents:
2947
diff
changeset
|
1363 , enable_directfb_shared=yes) |
d364ee9b9c15
Date: Sun, 04 Jan 2009 20:53:30 +0100
Sam Lantinga <slouken@libsdl.org>
parents:
2947
diff
changeset
|
1364 |
1361
19418e4422cb
New configure-based build system. Still work in progress, but much improved
Sam Lantinga <slouken@libsdl.org>
parents:
1354
diff
changeset
|
1365 AC_DEFINE(SDL_VIDEO_DRIVER_DIRECTFB) |
19418e4422cb
New configure-based build system. Still work in progress, but much improved
Sam Lantinga <slouken@libsdl.org>
parents:
1354
diff
changeset
|
1366 SOURCES="$SOURCES $srcdir/src/video/directfb/*.c" |
1521
9b9212e4810c
CFLAGS are separate from EXTRA_CFLAGS
Sam Lantinga <slouken@libsdl.org>
parents:
1520
diff
changeset
|
1367 EXTRA_CFLAGS="$EXTRA_CFLAGS $DIRECTFB_CFLAGS" |
2998
d364ee9b9c15
Date: Sun, 04 Jan 2009 20:53:30 +0100
Sam Lantinga <slouken@libsdl.org>
parents:
2947
diff
changeset
|
1368 |
3392
efc22582afc5
Only show the dynamic audio libraries if we'll be dynamically loading them
Sam Lantinga <slouken@libsdl.org>
parents:
3391
diff
changeset
|
1369 AC_MSG_CHECKING(for directfb dynamic loading support) |
efc22582afc5
Only show the dynamic audio libraries if we'll be dynamically loading them
Sam Lantinga <slouken@libsdl.org>
parents:
3391
diff
changeset
|
1370 directfb_shared=no |
efc22582afc5
Only show the dynamic audio libraries if we'll be dynamically loading them
Sam Lantinga <slouken@libsdl.org>
parents:
3391
diff
changeset
|
1371 directfb_lib=[`find_lib "libdirectfb.so.*" "$DIRECTFB_LIBS" | sed 's/.*\/\(.*\)/\1/; q'`] |
2998
d364ee9b9c15
Date: Sun, 04 Jan 2009 20:53:30 +0100
Sam Lantinga <slouken@libsdl.org>
parents:
2947
diff
changeset
|
1372 |
d364ee9b9c15
Date: Sun, 04 Jan 2009 20:53:30 +0100
Sam Lantinga <slouken@libsdl.org>
parents:
2947
diff
changeset
|
1373 if test x$have_loadso != xyes && \ |
d364ee9b9c15
Date: Sun, 04 Jan 2009 20:53:30 +0100
Sam Lantinga <slouken@libsdl.org>
parents:
2947
diff
changeset
|
1374 test x$enable_directfb_shared = xyes; then |
d364ee9b9c15
Date: Sun, 04 Jan 2009 20:53:30 +0100
Sam Lantinga <slouken@libsdl.org>
parents:
2947
diff
changeset
|
1375 AC_MSG_WARN([You must have SDL_LoadObject() support for dynamic directfb loading]) |
d364ee9b9c15
Date: Sun, 04 Jan 2009 20:53:30 +0100
Sam Lantinga <slouken@libsdl.org>
parents:
2947
diff
changeset
|
1376 fi |
d364ee9b9c15
Date: Sun, 04 Jan 2009 20:53:30 +0100
Sam Lantinga <slouken@libsdl.org>
parents:
2947
diff
changeset
|
1377 if test x$have_loadso = xyes && \ |
d364ee9b9c15
Date: Sun, 04 Jan 2009 20:53:30 +0100
Sam Lantinga <slouken@libsdl.org>
parents:
2947
diff
changeset
|
1378 test x$enable_directfb_shared = xyes && test x$directfb_lib != x; then |
3392
efc22582afc5
Only show the dynamic audio libraries if we'll be dynamically loading them
Sam Lantinga <slouken@libsdl.org>
parents:
3391
diff
changeset
|
1379 directfb_shared=yes |
efc22582afc5
Only show the dynamic audio libraries if we'll be dynamically loading them
Sam Lantinga <slouken@libsdl.org>
parents:
3391
diff
changeset
|
1380 echo "-- $directfb_lib_spec -> $directfb_lib" |
2998
d364ee9b9c15
Date: Sun, 04 Jan 2009 20:53:30 +0100
Sam Lantinga <slouken@libsdl.org>
parents:
2947
diff
changeset
|
1381 AC_DEFINE_UNQUOTED(SDL_VIDEO_DRIVER_DIRECTFB_DYNAMIC, "$directfb_lib") |
d364ee9b9c15
Date: Sun, 04 Jan 2009 20:53:30 +0100
Sam Lantinga <slouken@libsdl.org>
parents:
2947
diff
changeset
|
1382 else |
3392
efc22582afc5
Only show the dynamic audio libraries if we'll be dynamically loading them
Sam Lantinga <slouken@libsdl.org>
parents:
3391
diff
changeset
|
1383 EXTRA_LDFLAGS="$EXTRA_LDFLAGS $DIRECTFB_LIBS" |
2998
d364ee9b9c15
Date: Sun, 04 Jan 2009 20:53:30 +0100
Sam Lantinga <slouken@libsdl.org>
parents:
2947
diff
changeset
|
1384 fi |
3392
efc22582afc5
Only show the dynamic audio libraries if we'll be dynamically loading them
Sam Lantinga <slouken@libsdl.org>
parents:
3391
diff
changeset
|
1385 AC_MSG_RESULT($directfb_shared) |
1361
19418e4422cb
New configure-based build system. Still work in progress, but much improved
Sam Lantinga <slouken@libsdl.org>
parents:
1354
diff
changeset
|
1386 have_video=yes |
167
cb384ef627f6
Added support for DirectFB video on Linux (thanks Denis!)
Sam Lantinga <slouken@libsdl.org>
parents:
166
diff
changeset
|
1387 fi |
cb384ef627f6
Added support for DirectFB video on Linux (thanks Denis!)
Sam Lantinga <slouken@libsdl.org>
parents:
166
diff
changeset
|
1388 fi |
cb384ef627f6
Added support for DirectFB video on Linux (thanks Denis!)
Sam Lantinga <slouken@libsdl.org>
parents:
166
diff
changeset
|
1389 } |
cb384ef627f6
Added support for DirectFB video on Linux (thanks Denis!)
Sam Lantinga <slouken@libsdl.org>
parents:
166
diff
changeset
|
1390 |
2947
fec0db6c44b7
Date: Thu, 01 Jan 2009 21:32:12 +0100
Sam Lantinga <slouken@libsdl.org>
parents:
2857
diff
changeset
|
1391 dnl Find FusionSound |
fec0db6c44b7
Date: Thu, 01 Jan 2009 21:32:12 +0100
Sam Lantinga <slouken@libsdl.org>
parents:
2857
diff
changeset
|
1392 CheckFusionSound() |
fec0db6c44b7
Date: Thu, 01 Jan 2009 21:32:12 +0100
Sam Lantinga <slouken@libsdl.org>
parents:
2857
diff
changeset
|
1393 { |
fec0db6c44b7
Date: Thu, 01 Jan 2009 21:32:12 +0100
Sam Lantinga <slouken@libsdl.org>
parents:
2857
diff
changeset
|
1394 AC_ARG_ENABLE(fusionsound, |
fec0db6c44b7
Date: Thu, 01 Jan 2009 21:32:12 +0100
Sam Lantinga <slouken@libsdl.org>
parents:
2857
diff
changeset
|
1395 AC_HELP_STRING([--enable-fusionsound], [use FusionSound audio driver [[default=no]]]), |
fec0db6c44b7
Date: Thu, 01 Jan 2009 21:32:12 +0100
Sam Lantinga <slouken@libsdl.org>
parents:
2857
diff
changeset
|
1396 , enable_fusionsound=no) |
fec0db6c44b7
Date: Thu, 01 Jan 2009 21:32:12 +0100
Sam Lantinga <slouken@libsdl.org>
parents:
2857
diff
changeset
|
1397 if test x$enable_audio = xyes -a x$enable_fusionsound = xyes; then |
fec0db6c44b7
Date: Thu, 01 Jan 2009 21:32:12 +0100
Sam Lantinga <slouken@libsdl.org>
parents:
2857
diff
changeset
|
1398 fusionsound=no |
fec0db6c44b7
Date: Thu, 01 Jan 2009 21:32:12 +0100
Sam Lantinga <slouken@libsdl.org>
parents:
2857
diff
changeset
|
1399 |
fec0db6c44b7
Date: Thu, 01 Jan 2009 21:32:12 +0100
Sam Lantinga <slouken@libsdl.org>
parents:
2857
diff
changeset
|
1400 FUSIONSOUND_REQUIRED_VERSION=1.1.1 |
fec0db6c44b7
Date: Thu, 01 Jan 2009 21:32:12 +0100
Sam Lantinga <slouken@libsdl.org>
parents:
2857
diff
changeset
|
1401 |
fec0db6c44b7
Date: Thu, 01 Jan 2009 21:32:12 +0100
Sam Lantinga <slouken@libsdl.org>
parents:
2857
diff
changeset
|
1402 AC_PATH_PROG(PKG_CONFIG, pkg-config, no) |
fec0db6c44b7
Date: Thu, 01 Jan 2009 21:32:12 +0100
Sam Lantinga <slouken@libsdl.org>
parents:
2857
diff
changeset
|
1403 AC_MSG_CHECKING(for FusionSound $FUSIONSOUND_REQUIRED_VERSION support) |
fec0db6c44b7
Date: Thu, 01 Jan 2009 21:32:12 +0100
Sam Lantinga <slouken@libsdl.org>
parents:
2857
diff
changeset
|
1404 if test x$PKG_CONFIG != xno; then |
fec0db6c44b7
Date: Thu, 01 Jan 2009 21:32:12 +0100
Sam Lantinga <slouken@libsdl.org>
parents:
2857
diff
changeset
|
1405 if $PKG_CONFIG --atleast-pkgconfig-version 0.7 && $PKG_CONFIG --atleast-version $FUSIONSOUND_REQUIRED_VERSION fusionsound; then |
fec0db6c44b7
Date: Thu, 01 Jan 2009 21:32:12 +0100
Sam Lantinga <slouken@libsdl.org>
parents:
2857
diff
changeset
|
1406 FUSIONSOUND_CFLAGS=`$PKG_CONFIG --cflags fusionsound` |
fec0db6c44b7
Date: Thu, 01 Jan 2009 21:32:12 +0100
Sam Lantinga <slouken@libsdl.org>
parents:
2857
diff
changeset
|
1407 FUSIONSOUND_LIBS=`$PKG_CONFIG --libs fusionsound` |
fec0db6c44b7
Date: Thu, 01 Jan 2009 21:32:12 +0100
Sam Lantinga <slouken@libsdl.org>
parents:
2857
diff
changeset
|
1408 fusionsound=yes |
fec0db6c44b7
Date: Thu, 01 Jan 2009 21:32:12 +0100
Sam Lantinga <slouken@libsdl.org>
parents:
2857
diff
changeset
|
1409 fi |
fec0db6c44b7
Date: Thu, 01 Jan 2009 21:32:12 +0100
Sam Lantinga <slouken@libsdl.org>
parents:
2857
diff
changeset
|
1410 fi |
fec0db6c44b7
Date: Thu, 01 Jan 2009 21:32:12 +0100
Sam Lantinga <slouken@libsdl.org>
parents:
2857
diff
changeset
|
1411 AC_MSG_RESULT($fusionsound) |
fec0db6c44b7
Date: Thu, 01 Jan 2009 21:32:12 +0100
Sam Lantinga <slouken@libsdl.org>
parents:
2857
diff
changeset
|
1412 |
fec0db6c44b7
Date: Thu, 01 Jan 2009 21:32:12 +0100
Sam Lantinga <slouken@libsdl.org>
parents:
2857
diff
changeset
|
1413 if test x$fusionsound = xyes; then |
fec0db6c44b7
Date: Thu, 01 Jan 2009 21:32:12 +0100
Sam Lantinga <slouken@libsdl.org>
parents:
2857
diff
changeset
|
1414 AC_DEFINE(SDL_AUDIO_DRIVER_FUSIONSOUND) |
fec0db6c44b7
Date: Thu, 01 Jan 2009 21:32:12 +0100
Sam Lantinga <slouken@libsdl.org>
parents:
2857
diff
changeset
|
1415 SOURCES="$SOURCES $srcdir/src/audio/fusionsound/*.c" |
fec0db6c44b7
Date: Thu, 01 Jan 2009 21:32:12 +0100
Sam Lantinga <slouken@libsdl.org>
parents:
2857
diff
changeset
|
1416 EXTRA_CFLAGS="$EXTRA_CFLAGS $FUSIONSOUND_CFLAGS" |
fec0db6c44b7
Date: Thu, 01 Jan 2009 21:32:12 +0100
Sam Lantinga <slouken@libsdl.org>
parents:
2857
diff
changeset
|
1417 |
fec0db6c44b7
Date: Thu, 01 Jan 2009 21:32:12 +0100
Sam Lantinga <slouken@libsdl.org>
parents:
2857
diff
changeset
|
1418 AC_ARG_ENABLE(fusionsound-shared, |
fec0db6c44b7
Date: Thu, 01 Jan 2009 21:32:12 +0100
Sam Lantinga <slouken@libsdl.org>
parents:
2857
diff
changeset
|
1419 AC_HELP_STRING([--enable-fusionsound-shared], [dynamically load fusionsound audio support [[default=yes]]]), |
fec0db6c44b7
Date: Thu, 01 Jan 2009 21:32:12 +0100
Sam Lantinga <slouken@libsdl.org>
parents:
2857
diff
changeset
|
1420 , enable_fusionsound_shared=yes) |
fec0db6c44b7
Date: Thu, 01 Jan 2009 21:32:12 +0100
Sam Lantinga <slouken@libsdl.org>
parents:
2857
diff
changeset
|
1421 fusionsound_shared=no |
3392
efc22582afc5
Only show the dynamic audio libraries if we'll be dynamically loading them
Sam Lantinga <slouken@libsdl.org>
parents:
3391
diff
changeset
|
1422 AC_MSG_CHECKING(for FusionSound dynamic loading support) |
2947
fec0db6c44b7
Date: Thu, 01 Jan 2009 21:32:12 +0100
Sam Lantinga <slouken@libsdl.org>
parents:
2857
diff
changeset
|
1423 if test x$have_loadso != xyes && \ |
fec0db6c44b7
Date: Thu, 01 Jan 2009 21:32:12 +0100
Sam Lantinga <slouken@libsdl.org>
parents:
2857
diff
changeset
|
1424 test x$enable_fusionsound_shared = xyes; then |
fec0db6c44b7
Date: Thu, 01 Jan 2009 21:32:12 +0100
Sam Lantinga <slouken@libsdl.org>
parents:
2857
diff
changeset
|
1425 AC_MSG_WARN([You must have SDL_LoadObject() support for dynamic fusionsound loading]) |
fec0db6c44b7
Date: Thu, 01 Jan 2009 21:32:12 +0100
Sam Lantinga <slouken@libsdl.org>
parents:
2857
diff
changeset
|
1426 fi |
fec0db6c44b7
Date: Thu, 01 Jan 2009 21:32:12 +0100
Sam Lantinga <slouken@libsdl.org>
parents:
2857
diff
changeset
|
1427 if test x$have_loadso = xyes && \ |
fec0db6c44b7
Date: Thu, 01 Jan 2009 21:32:12 +0100
Sam Lantinga <slouken@libsdl.org>
parents:
2857
diff
changeset
|
1428 test x$enable_fusionsound_shared = xyes; then |
fec0db6c44b7
Date: Thu, 01 Jan 2009 21:32:12 +0100
Sam Lantinga <slouken@libsdl.org>
parents:
2857
diff
changeset
|
1429 AC_DEFINE_UNQUOTED(SDL_AUDIO_DRIVER_FUSIONSOUND_DYNAMIC, "libfusionsound.so") |
3392
efc22582afc5
Only show the dynamic audio libraries if we'll be dynamically loading them
Sam Lantinga <slouken@libsdl.org>
parents:
3391
diff
changeset
|
1430 fusionsound_shared=yes |
2947
fec0db6c44b7
Date: Thu, 01 Jan 2009 21:32:12 +0100
Sam Lantinga <slouken@libsdl.org>
parents:
2857
diff
changeset
|
1431 else |
3392
efc22582afc5
Only show the dynamic audio libraries if we'll be dynamically loading them
Sam Lantinga <slouken@libsdl.org>
parents:
3391
diff
changeset
|
1432 EXTRA_LDFLAGS="$EXTRA_LDFLAGS $FUSIONSOUND_LIBS" |
2947
fec0db6c44b7
Date: Thu, 01 Jan 2009 21:32:12 +0100
Sam Lantinga <slouken@libsdl.org>
parents:
2857
diff
changeset
|
1433 fi |
3392
efc22582afc5
Only show the dynamic audio libraries if we'll be dynamically loading them
Sam Lantinga <slouken@libsdl.org>
parents:
3391
diff
changeset
|
1434 AC_MSG_RESULT($fusionsound_shared) |
2947
fec0db6c44b7
Date: Thu, 01 Jan 2009 21:32:12 +0100
Sam Lantinga <slouken@libsdl.org>
parents:
2857
diff
changeset
|
1435 |
fec0db6c44b7
Date: Thu, 01 Jan 2009 21:32:12 +0100
Sam Lantinga <slouken@libsdl.org>
parents:
2857
diff
changeset
|
1436 have_audio=yes |
fec0db6c44b7
Date: Thu, 01 Jan 2009 21:32:12 +0100
Sam Lantinga <slouken@libsdl.org>
parents:
2857
diff
changeset
|
1437 fi |
fec0db6c44b7
Date: Thu, 01 Jan 2009 21:32:12 +0100
Sam Lantinga <slouken@libsdl.org>
parents:
2857
diff
changeset
|
1438 fi |
fec0db6c44b7
Date: Thu, 01 Jan 2009 21:32:12 +0100
Sam Lantinga <slouken@libsdl.org>
parents:
2857
diff
changeset
|
1439 } |
fec0db6c44b7
Date: Thu, 01 Jan 2009 21:32:12 +0100
Sam Lantinga <slouken@libsdl.org>
parents:
2857
diff
changeset
|
1440 |
3257
94fb40a4a9a7
Merged Martin's code changes from Google Summer of Code 2009
Sam Lantinga <slouken@libsdl.org>
parents:
3243
diff
changeset
|
1441 dnl See if we're running on PlayStation 3 Cell hardware |
94fb40a4a9a7
Merged Martin's code changes from Google Summer of Code 2009
Sam Lantinga <slouken@libsdl.org>
parents:
3243
diff
changeset
|
1442 CheckPS3() |
94fb40a4a9a7
Merged Martin's code changes from Google Summer of Code 2009
Sam Lantinga <slouken@libsdl.org>
parents:
3243
diff
changeset
|
1443 { |
94fb40a4a9a7
Merged Martin's code changes from Google Summer of Code 2009
Sam Lantinga <slouken@libsdl.org>
parents:
3243
diff
changeset
|
1444 AC_ARG_ENABLE(video-ps3, |
94fb40a4a9a7
Merged Martin's code changes from Google Summer of Code 2009
Sam Lantinga <slouken@libsdl.org>
parents:
3243
diff
changeset
|
1445 AC_HELP_STRING([--enable-video-ps3], [use PlayStation 3 Cell driver [[default=yes]]]), |
94fb40a4a9a7
Merged Martin's code changes from Google Summer of Code 2009
Sam Lantinga <slouken@libsdl.org>
parents:
3243
diff
changeset
|
1446 , enable_video_ps3=yes) |
94fb40a4a9a7
Merged Martin's code changes from Google Summer of Code 2009
Sam Lantinga <slouken@libsdl.org>
parents:
3243
diff
changeset
|
1447 if test x$enable_video = xyes -a x$enable_video_ps3 = xyes; then |
94fb40a4a9a7
Merged Martin's code changes from Google Summer of Code 2009
Sam Lantinga <slouken@libsdl.org>
parents:
3243
diff
changeset
|
1448 video_ps3=no |
94fb40a4a9a7
Merged Martin's code changes from Google Summer of Code 2009
Sam Lantinga <slouken@libsdl.org>
parents:
3243
diff
changeset
|
1449 AC_CHECK_HEADER([linux/fb.h]) |
94fb40a4a9a7
Merged Martin's code changes from Google Summer of Code 2009
Sam Lantinga <slouken@libsdl.org>
parents:
3243
diff
changeset
|
1450 AC_CHECK_HEADER([asm/ps3fb.h], [have_ps3fb_hdr=yes], [], |
3392
efc22582afc5
Only show the dynamic audio libraries if we'll be dynamically loading them
Sam Lantinga <slouken@libsdl.org>
parents:
3391
diff
changeset
|
1451 [#ifndef _LINUX_TYPES_H |
efc22582afc5
Only show the dynamic audio libraries if we'll be dynamically loading them
Sam Lantinga <slouken@libsdl.org>
parents:
3391
diff
changeset
|
1452 #include <linux/types.h> |
efc22582afc5
Only show the dynamic audio libraries if we'll be dynamically loading them
Sam Lantinga <slouken@libsdl.org>
parents:
3391
diff
changeset
|
1453 #endif]) |
3257
94fb40a4a9a7
Merged Martin's code changes from Google Summer of Code 2009
Sam Lantinga <slouken@libsdl.org>
parents:
3243
diff
changeset
|
1454 AC_CHECK_HEADER([libspe2.h], have_libspe2_hdr=yes) |
94fb40a4a9a7
Merged Martin's code changes from Google Summer of Code 2009
Sam Lantinga <slouken@libsdl.org>
parents:
3243
diff
changeset
|
1455 AC_CHECK_LIB([spe2], spe_context_create, have_spe2_lib=yes) |
94fb40a4a9a7
Merged Martin's code changes from Google Summer of Code 2009
Sam Lantinga <slouken@libsdl.org>
parents:
3243
diff
changeset
|
1456 |
94fb40a4a9a7
Merged Martin's code changes from Google Summer of Code 2009
Sam Lantinga <slouken@libsdl.org>
parents:
3243
diff
changeset
|
1457 AC_CHECK_PROGS(SPU_GCC, [spu-gcc]) |
94fb40a4a9a7
Merged Martin's code changes from Google Summer of Code 2009
Sam Lantinga <slouken@libsdl.org>
parents:
3243
diff
changeset
|
1458 AC_CHECK_PROGS(EMBEDSPU, [embedspu]) |
94fb40a4a9a7
Merged Martin's code changes from Google Summer of Code 2009
Sam Lantinga <slouken@libsdl.org>
parents:
3243
diff
changeset
|
1459 |
94fb40a4a9a7
Merged Martin's code changes from Google Summer of Code 2009
Sam Lantinga <slouken@libsdl.org>
parents:
3243
diff
changeset
|
1460 have_spu_libs=yes |
94fb40a4a9a7
Merged Martin's code changes from Google Summer of Code 2009
Sam Lantinga <slouken@libsdl.org>
parents:
3243
diff
changeset
|
1461 AC_CHECK_LIB([fb_writer_spu], [main], [], [have_spu_libs=no]) |
94fb40a4a9a7
Merged Martin's code changes from Google Summer of Code 2009
Sam Lantinga <slouken@libsdl.org>
parents:
3243
diff
changeset
|
1462 AC_CHECK_LIB([yuv2rgb_spu], [main], [], [have_spu_libs=no]) |
94fb40a4a9a7
Merged Martin's code changes from Google Summer of Code 2009
Sam Lantinga <slouken@libsdl.org>
parents:
3243
diff
changeset
|
1463 AC_CHECK_LIB([bilin_scaler_spu], [main], [], [have_spu_libs=no]) |
94fb40a4a9a7
Merged Martin's code changes from Google Summer of Code 2009
Sam Lantinga <slouken@libsdl.org>
parents:
3243
diff
changeset
|
1464 if test x$have_ps3fb_hdr = xyes -a x$have_libspe2_hdr = xyes -a x$have_spe2_lib = xyes -a "$SPU_GCC" -a "$EMBEDSPU"; then |
94fb40a4a9a7
Merged Martin's code changes from Google Summer of Code 2009
Sam Lantinga <slouken@libsdl.org>
parents:
3243
diff
changeset
|
1465 AC_DEFINE(SDL_VIDEO_DRIVER_PS3) |
94fb40a4a9a7
Merged Martin's code changes from Google Summer of Code 2009
Sam Lantinga <slouken@libsdl.org>
parents:
3243
diff
changeset
|
1466 video_ps3=yes |
94fb40a4a9a7
Merged Martin's code changes from Google Summer of Code 2009
Sam Lantinga <slouken@libsdl.org>
parents:
3243
diff
changeset
|
1467 have_video=yes |
94fb40a4a9a7
Merged Martin's code changes from Google Summer of Code 2009
Sam Lantinga <slouken@libsdl.org>
parents:
3243
diff
changeset
|
1468 SOURCES="$SOURCES $srcdir/src/video/ps3/*.c" |
94fb40a4a9a7
Merged Martin's code changes from Google Summer of Code 2009
Sam Lantinga <slouken@libsdl.org>
parents:
3243
diff
changeset
|
1469 EXTRA_CFLAGS="$EXTRA_CFLAGS -I/opt/cell/sdk/usr/include" |
94fb40a4a9a7
Merged Martin's code changes from Google Summer of Code 2009
Sam Lantinga <slouken@libsdl.org>
parents:
3243
diff
changeset
|
1470 EXTRA_LDFLAGS="$EXTRA_LDFLAGS -L/opt/cell/sdk/usr/lib -lspe2 -lfb_writer_spu -lyuv2rgb_spu -lbilin_scaler_spu" |
94fb40a4a9a7
Merged Martin's code changes from Google Summer of Code 2009
Sam Lantinga <slouken@libsdl.org>
parents:
3243
diff
changeset
|
1471 |
94fb40a4a9a7
Merged Martin's code changes from Google Summer of Code 2009
Sam Lantinga <slouken@libsdl.org>
parents:
3243
diff
changeset
|
1472 if test x$have_spu_libs = xno; then |
94fb40a4a9a7
Merged Martin's code changes from Google Summer of Code 2009
Sam Lantinga <slouken@libsdl.org>
parents:
3243
diff
changeset
|
1473 AC_MSG_WARN([ps3libs missing, please run make ps3libs]) |
94fb40a4a9a7
Merged Martin's code changes from Google Summer of Code 2009
Sam Lantinga <slouken@libsdl.org>
parents:
3243
diff
changeset
|
1474 fi |
94fb40a4a9a7
Merged Martin's code changes from Google Summer of Code 2009
Sam Lantinga <slouken@libsdl.org>
parents:
3243
diff
changeset
|
1475 fi |
94fb40a4a9a7
Merged Martin's code changes from Google Summer of Code 2009
Sam Lantinga <slouken@libsdl.org>
parents:
3243
diff
changeset
|
1476 AC_MSG_CHECKING([for PlayStation 3 Cell support]) |
94fb40a4a9a7
Merged Martin's code changes from Google Summer of Code 2009
Sam Lantinga <slouken@libsdl.org>
parents:
3243
diff
changeset
|
1477 AC_MSG_RESULT([$video_ps3]) |
94fb40a4a9a7
Merged Martin's code changes from Google Summer of Code 2009
Sam Lantinga <slouken@libsdl.org>
parents:
3243
diff
changeset
|
1478 fi |
94fb40a4a9a7
Merged Martin's code changes from Google Summer of Code 2009
Sam Lantinga <slouken@libsdl.org>
parents:
3243
diff
changeset
|
1479 } |
94fb40a4a9a7
Merged Martin's code changes from Google Summer of Code 2009
Sam Lantinga <slouken@libsdl.org>
parents:
3243
diff
changeset
|
1480 |
0 | 1481 dnl Find the SVGAlib includes and libraries |
1482 CheckSVGA() | |
1483 { | |
1484 AC_ARG_ENABLE(video-svga, | |
2793
b14f672b2857
RemDisabled some video drivers which are not converted to 1.3 yet
Sam Lantinga <slouken@libsdl.org>
parents:
2775
diff
changeset
|
1485 AC_HELP_STRING([--enable-video-svga], [use SVGAlib video driver [[default=no]]]), |
b14f672b2857
RemDisabled some video drivers which are not converted to 1.3 yet
Sam Lantinga <slouken@libsdl.org>
parents:
2775
diff
changeset
|
1486 , enable_video_svga=no) |
0 | 1487 if test x$enable_video = xyes -a x$enable_video_svga = xyes; then |
1488 AC_MSG_CHECKING(for SVGAlib (1.4.0+) support) | |
1489 video_svga=no | |
1490 AC_TRY_COMPILE([ | |
1491 #include <vga.h> | |
1492 #include <vgamouse.h> | |
1493 #include <vgakeyboard.h> | |
1494 ],[ | |
1495 if ( SCANCODE_RIGHTWIN && SCANCODE_LEFTWIN ) { | |
1496 exit(0); | |
1497 } | |
1498 ],[ | |
1499 video_svga=yes | |
1500 ]) | |
1501 AC_MSG_RESULT($video_svga) | |
1502 if test x$video_svga = xyes; then | |
1361
19418e4422cb
New configure-based build system. Still work in progress, but much improved
Sam Lantinga <slouken@libsdl.org>
parents:
1354
diff
changeset
|
1503 AC_DEFINE(SDL_VIDEO_DRIVER_SVGALIB) |
19418e4422cb
New configure-based build system. Still work in progress, but much improved
Sam Lantinga <slouken@libsdl.org>
parents:
1354
diff
changeset
|
1504 SOURCES="$SOURCES $srcdir/src/video/svga/*.c" |
1556 | 1505 EXTRA_LDFLAGS="$EXTRA_LDFLAGS -lvga" |
1361
19418e4422cb
New configure-based build system. Still work in progress, but much improved
Sam Lantinga <slouken@libsdl.org>
parents:
1354
diff
changeset
|
1506 have_video=yes |
0 | 1507 fi |
1508 fi | |
1509 } | |
1510 | |
1
cf2af46e9e2a
Changes since SDL 1.2.0 release
Sam Lantinga <slouken@lokigames.com>
parents:
0
diff
changeset
|
1511 dnl rcg04172001 Set up the Null video driver. |
cf2af46e9e2a
Changes since SDL 1.2.0 release
Sam Lantinga <slouken@lokigames.com>
parents:
0
diff
changeset
|
1512 CheckDummyVideo() |
cf2af46e9e2a
Changes since SDL 1.2.0 release
Sam Lantinga <slouken@lokigames.com>
parents:
0
diff
changeset
|
1513 { |
cf2af46e9e2a
Changes since SDL 1.2.0 release
Sam Lantinga <slouken@lokigames.com>
parents:
0
diff
changeset
|
1514 AC_ARG_ENABLE(video-dummy, |
1637
9ba366b919c7
Date: Fri, 31 Mar 2006 18:28:55 -0500
Sam Lantinga <slouken@libsdl.org>
parents:
1632
diff
changeset
|
1515 AC_HELP_STRING([--enable-video-dummy], [use dummy video driver [[default=yes]]]), |
86
13e4c612098d
Dummy audio and video drivers are enabled (thanks Ryan!)
Sam Lantinga <slouken@lokigames.com>
parents:
76
diff
changeset
|
1516 , enable_video_dummy=yes) |
1
cf2af46e9e2a
Changes since SDL 1.2.0 release
Sam Lantinga <slouken@lokigames.com>
parents:
0
diff
changeset
|
1517 if test x$enable_video_dummy = xyes; then |
1361
19418e4422cb
New configure-based build system. Still work in progress, but much improved
Sam Lantinga <slouken@libsdl.org>
parents:
1354
diff
changeset
|
1518 AC_DEFINE(SDL_VIDEO_DRIVER_DUMMY) |
19418e4422cb
New configure-based build system. Still work in progress, but much improved
Sam Lantinga <slouken@libsdl.org>
parents:
1354
diff
changeset
|
1519 SOURCES="$SOURCES $srcdir/src/video/dummy/*.c" |
19418e4422cb
New configure-based build system. Still work in progress, but much improved
Sam Lantinga <slouken@libsdl.org>
parents:
1354
diff
changeset
|
1520 have_video=yes |
1
cf2af46e9e2a
Changes since SDL 1.2.0 release
Sam Lantinga <slouken@lokigames.com>
parents:
0
diff
changeset
|
1521 fi |
cf2af46e9e2a
Changes since SDL 1.2.0 release
Sam Lantinga <slouken@lokigames.com>
parents:
0
diff
changeset
|
1522 } |
cf2af46e9e2a
Changes since SDL 1.2.0 release
Sam Lantinga <slouken@lokigames.com>
parents:
0
diff
changeset
|
1523 |
0 | 1524 dnl Check to see if OpenGL support is desired |
1525 AC_ARG_ENABLE(video-opengl, | |
1952
420716272158
Implemented X11 OpenGL support.
Sam Lantinga <slouken@libsdl.org>
parents:
1945
diff
changeset
|
1526 AC_HELP_STRING([--enable-video-opengl], [include OpenGL support [[default=yes]]]), |
0 | 1527 , enable_video_opengl=yes) |
1528 | |
1529 dnl Find OpenGL | |
1191
2bd4cec0de63
Seperate glX from HAVE_OPENGL, for platforms that have both an X server and
Ryan C. Gordon <icculus@icculus.org>
parents:
1187
diff
changeset
|
1530 CheckOpenGLX11() |
0 | 1531 { |
1532 if test x$enable_video = xyes -a x$enable_video_opengl = xyes; then | |
1533 AC_MSG_CHECKING(for OpenGL (GLX) support) | |
1534 video_opengl=no | |
1535 AC_TRY_COMPILE([ | |
1536 #include <GL/gl.h> | |
1537 #include <GL/glx.h> | |
2125
fab12febc0f9
Merge r3079:3080 from branches/SDL-1.2: disable glX if no glu.h header.
Ryan C. Gordon <icculus@icculus.org>
parents:
2112
diff
changeset
|
1538 #include <GL/glu.h> |
0 | 1539 ],[ |
1540 ],[ | |
1541 video_opengl=yes | |
1542 ]) | |
1543 AC_MSG_RESULT($video_opengl) | |
1544 if test x$video_opengl = xyes; then | |
1361
19418e4422cb
New configure-based build system. Still work in progress, but much improved
Sam Lantinga <slouken@libsdl.org>
parents:
1354
diff
changeset
|
1545 AC_DEFINE(SDL_VIDEO_OPENGL) |
19418e4422cb
New configure-based build system. Still work in progress, but much improved
Sam Lantinga <slouken@libsdl.org>
parents:
1354
diff
changeset
|
1546 AC_DEFINE(SDL_VIDEO_OPENGL_GLX) |
1952
420716272158
Implemented X11 OpenGL support.
Sam Lantinga <slouken@libsdl.org>
parents:
1945
diff
changeset
|
1547 AC_DEFINE(SDL_VIDEO_RENDER_OGL) |
0 | 1548 fi |
1549 fi | |
1550 } | |
1551 | |
3083
0bc41e0361d3
Date: Mon, 2 Mar 2009 16:27:42 +0200
Sam Lantinga <slouken@libsdl.org>
parents:
3082
diff
changeset
|
1552 dnl Find QNX 6.x Software OpenGL |
279
04351f59b051
Mike Gorchak added some QNX tweaks, including OpenGL support
Sam Lantinga <slouken@libsdl.org>
parents:
278
diff
changeset
|
1553 CheckOpenGLQNX() |
04351f59b051
Mike Gorchak added some QNX tweaks, including OpenGL support
Sam Lantinga <slouken@libsdl.org>
parents:
278
diff
changeset
|
1554 { |
04351f59b051
Mike Gorchak added some QNX tweaks, including OpenGL support
Sam Lantinga <slouken@libsdl.org>
parents:
278
diff
changeset
|
1555 if test x$enable_video = xyes -a x$enable_video_opengl = xyes; then |
3083
0bc41e0361d3
Date: Mon, 2 Mar 2009 16:27:42 +0200
Sam Lantinga <slouken@libsdl.org>
parents:
3082
diff
changeset
|
1556 AC_MSG_CHECKING(for QNX 6.x Photon OpenGL support) |
279
04351f59b051
Mike Gorchak added some QNX tweaks, including OpenGL support
Sam Lantinga <slouken@libsdl.org>
parents:
278
diff
changeset
|
1557 video_opengl=no |
04351f59b051
Mike Gorchak added some QNX tweaks, including OpenGL support
Sam Lantinga <slouken@libsdl.org>
parents:
278
diff
changeset
|
1558 AC_TRY_COMPILE([ |
04351f59b051
Mike Gorchak added some QNX tweaks, including OpenGL support
Sam Lantinga <slouken@libsdl.org>
parents:
278
diff
changeset
|
1559 #include <GL/gl.h> |
04351f59b051
Mike Gorchak added some QNX tweaks, including OpenGL support
Sam Lantinga <slouken@libsdl.org>
parents:
278
diff
changeset
|
1560 ],[ |
04351f59b051
Mike Gorchak added some QNX tweaks, including OpenGL support
Sam Lantinga <slouken@libsdl.org>
parents:
278
diff
changeset
|
1561 ],[ |
04351f59b051
Mike Gorchak added some QNX tweaks, including OpenGL support
Sam Lantinga <slouken@libsdl.org>
parents:
278
diff
changeset
|
1562 video_opengl=yes |
04351f59b051
Mike Gorchak added some QNX tweaks, including OpenGL support
Sam Lantinga <slouken@libsdl.org>
parents:
278
diff
changeset
|
1563 ]) |
04351f59b051
Mike Gorchak added some QNX tweaks, including OpenGL support
Sam Lantinga <slouken@libsdl.org>
parents:
278
diff
changeset
|
1564 AC_MSG_RESULT($video_opengl) |
04351f59b051
Mike Gorchak added some QNX tweaks, including OpenGL support
Sam Lantinga <slouken@libsdl.org>
parents:
278
diff
changeset
|
1565 if test x$video_opengl = xyes; then |
1361
19418e4422cb
New configure-based build system. Still work in progress, but much improved
Sam Lantinga <slouken@libsdl.org>
parents:
1354
diff
changeset
|
1566 AC_DEFINE(SDL_VIDEO_OPENGL) |
1952
420716272158
Implemented X11 OpenGL support.
Sam Lantinga <slouken@libsdl.org>
parents:
1945
diff
changeset
|
1567 AC_DEFINE(SDL_VIDEO_RENDER_OGL) |
1521
9b9212e4810c
CFLAGS are separate from EXTRA_CFLAGS
Sam Lantinga <slouken@libsdl.org>
parents:
1520
diff
changeset
|
1568 EXTRA_LDFLAGS="$EXTRA_LDFLAGS -lGL" |
279
04351f59b051
Mike Gorchak added some QNX tweaks, including OpenGL support
Sam Lantinga <slouken@libsdl.org>
parents:
278
diff
changeset
|
1569 fi |
04351f59b051
Mike Gorchak added some QNX tweaks, including OpenGL support
Sam Lantinga <slouken@libsdl.org>
parents:
278
diff
changeset
|
1570 fi |
04351f59b051
Mike Gorchak added some QNX tweaks, including OpenGL support
Sam Lantinga <slouken@libsdl.org>
parents:
278
diff
changeset
|
1571 } |
04351f59b051
Mike Gorchak added some QNX tweaks, including OpenGL support
Sam Lantinga <slouken@libsdl.org>
parents:
278
diff
changeset
|
1572 |
3083
0bc41e0361d3
Date: Mon, 2 Mar 2009 16:27:42 +0200
Sam Lantinga <slouken@libsdl.org>
parents:
3082
diff
changeset
|
1573 dnl Find QNX 6.3 and above OpenGL ES implementation |
0bc41e0361d3
Date: Mon, 2 Mar 2009 16:27:42 +0200
Sam Lantinga <slouken@libsdl.org>
parents:
3082
diff
changeset
|
1574 CheckOpenGLESQNX() |
0bc41e0361d3
Date: Mon, 2 Mar 2009 16:27:42 +0200
Sam Lantinga <slouken@libsdl.org>
parents:
3082
diff
changeset
|
1575 { |
0bc41e0361d3
Date: Mon, 2 Mar 2009 16:27:42 +0200
Sam Lantinga <slouken@libsdl.org>
parents:
3082
diff
changeset
|
1576 if test x$enable_video = xyes -a x$enable_video_opengl = xyes; then |
0bc41e0361d3
Date: Mon, 2 Mar 2009 16:27:42 +0200
Sam Lantinga <slouken@libsdl.org>
parents:
3082
diff
changeset
|
1577 AC_MSG_CHECKING(for QNX OpenGL ES (CM) support) |
0bc41e0361d3
Date: Mon, 2 Mar 2009 16:27:42 +0200
Sam Lantinga <slouken@libsdl.org>
parents:
3082
diff
changeset
|
1578 video_opengl=no |
0bc41e0361d3
Date: Mon, 2 Mar 2009 16:27:42 +0200
Sam Lantinga <slouken@libsdl.org>
parents:
3082
diff
changeset
|
1579 AC_TRY_COMPILE([ |
0bc41e0361d3
Date: Mon, 2 Mar 2009 16:27:42 +0200
Sam Lantinga <slouken@libsdl.org>
parents:
3082
diff
changeset
|
1580 #include <GLES/egl.h> |
0bc41e0361d3
Date: Mon, 2 Mar 2009 16:27:42 +0200
Sam Lantinga <slouken@libsdl.org>
parents:
3082
diff
changeset
|
1581 ],[ |
0bc41e0361d3
Date: Mon, 2 Mar 2009 16:27:42 +0200
Sam Lantinga <slouken@libsdl.org>
parents:
3082
diff
changeset
|
1582 ],[ |
0bc41e0361d3
Date: Mon, 2 Mar 2009 16:27:42 +0200
Sam Lantinga <slouken@libsdl.org>
parents:
3082
diff
changeset
|
1583 video_opengl=yes |
0bc41e0361d3
Date: Mon, 2 Mar 2009 16:27:42 +0200
Sam Lantinga <slouken@libsdl.org>
parents:
3082
diff
changeset
|
1584 ]) |
0bc41e0361d3
Date: Mon, 2 Mar 2009 16:27:42 +0200
Sam Lantinga <slouken@libsdl.org>
parents:
3082
diff
changeset
|
1585 AC_MSG_RESULT($video_opengl) |
0bc41e0361d3
Date: Mon, 2 Mar 2009 16:27:42 +0200
Sam Lantinga <slouken@libsdl.org>
parents:
3082
diff
changeset
|
1586 if test x$video_opengl = xyes; then |
0bc41e0361d3
Date: Mon, 2 Mar 2009 16:27:42 +0200
Sam Lantinga <slouken@libsdl.org>
parents:
3082
diff
changeset
|
1587 AC_DEFINE(SDL_VIDEO_OPENGL_ES) |
3099
82e60908fab1
Date: Mon, 23 Mar 2009 09:17:24 +0200
Sam Lantinga <slouken@libsdl.org>
parents:
3097
diff
changeset
|
1588 AC_DEFINE(SDL_VIDEO_RENDER_OGL_ES) |
3083
0bc41e0361d3
Date: Mon, 2 Mar 2009 16:27:42 +0200
Sam Lantinga <slouken@libsdl.org>
parents:
3082
diff
changeset
|
1589 EXTRA_LDFLAGS="$EXTRA_LDFLAGS -lGLES_CM" |
0bc41e0361d3
Date: Mon, 2 Mar 2009 16:27:42 +0200
Sam Lantinga <slouken@libsdl.org>
parents:
3082
diff
changeset
|
1590 else |
0bc41e0361d3
Date: Mon, 2 Mar 2009 16:27:42 +0200
Sam Lantinga <slouken@libsdl.org>
parents:
3082
diff
changeset
|
1591 AC_MSG_CHECKING(for QNX OpenGL ES (CL) support) |
0bc41e0361d3
Date: Mon, 2 Mar 2009 16:27:42 +0200
Sam Lantinga <slouken@libsdl.org>
parents:
3082
diff
changeset
|
1592 video_opengl=no |
0bc41e0361d3
Date: Mon, 2 Mar 2009 16:27:42 +0200
Sam Lantinga <slouken@libsdl.org>
parents:
3082
diff
changeset
|
1593 AC_TRY_COMPILE([ |
3087
0b6f51c29267
Date: Wed, 4 Mar 2009 15:38:22 +0200
Sam Lantinga <slouken@libsdl.org>
parents:
3085
diff
changeset
|
1594 #define COMMON_LITE |
3083
0bc41e0361d3
Date: Mon, 2 Mar 2009 16:27:42 +0200
Sam Lantinga <slouken@libsdl.org>
parents:
3082
diff
changeset
|
1595 #include <GLES/egl.h> |
0bc41e0361d3
Date: Mon, 2 Mar 2009 16:27:42 +0200
Sam Lantinga <slouken@libsdl.org>
parents:
3082
diff
changeset
|
1596 ],[ |
0bc41e0361d3
Date: Mon, 2 Mar 2009 16:27:42 +0200
Sam Lantinga <slouken@libsdl.org>
parents:
3082
diff
changeset
|
1597 ],[ |
0bc41e0361d3
Date: Mon, 2 Mar 2009 16:27:42 +0200
Sam Lantinga <slouken@libsdl.org>
parents:
3082
diff
changeset
|
1598 video_opengl=yes |
0bc41e0361d3
Date: Mon, 2 Mar 2009 16:27:42 +0200
Sam Lantinga <slouken@libsdl.org>
parents:
3082
diff
changeset
|
1599 ]) |
0bc41e0361d3
Date: Mon, 2 Mar 2009 16:27:42 +0200
Sam Lantinga <slouken@libsdl.org>
parents:
3082
diff
changeset
|
1600 AC_MSG_RESULT($video_opengl) |
0bc41e0361d3
Date: Mon, 2 Mar 2009 16:27:42 +0200
Sam Lantinga <slouken@libsdl.org>
parents:
3082
diff
changeset
|
1601 if test x$video_opengl = xyes; then |
0bc41e0361d3
Date: Mon, 2 Mar 2009 16:27:42 +0200
Sam Lantinga <slouken@libsdl.org>
parents:
3082
diff
changeset
|
1602 AC_DEFINE(SDL_VIDEO_OPENGL_ES) |
3099
82e60908fab1
Date: Mon, 23 Mar 2009 09:17:24 +0200
Sam Lantinga <slouken@libsdl.org>
parents:
3097
diff
changeset
|
1603 AC_DEFINE(SDL_VIDEO_RENDER_OGL_ES) |
82e60908fab1
Date: Mon, 23 Mar 2009 09:17:24 +0200
Sam Lantinga <slouken@libsdl.org>
parents:
3097
diff
changeset
|
1604 EXTRA_LDFLAGS="$EXTRA_LDFLAGS -lGLES_CLS" |
3083
0bc41e0361d3
Date: Mon, 2 Mar 2009 16:27:42 +0200
Sam Lantinga <slouken@libsdl.org>
parents:
3082
diff
changeset
|
1605 fi |
0bc41e0361d3
Date: Mon, 2 Mar 2009 16:27:42 +0200
Sam Lantinga <slouken@libsdl.org>
parents:
3082
diff
changeset
|
1606 fi |
0bc41e0361d3
Date: Mon, 2 Mar 2009 16:27:42 +0200
Sam Lantinga <slouken@libsdl.org>
parents:
3082
diff
changeset
|
1607 fi |
0bc41e0361d3
Date: Mon, 2 Mar 2009 16:27:42 +0200
Sam Lantinga <slouken@libsdl.org>
parents:
3082
diff
changeset
|
1608 } |
0bc41e0361d3
Date: Mon, 2 Mar 2009 16:27:42 +0200
Sam Lantinga <slouken@libsdl.org>
parents:
3082
diff
changeset
|
1609 |
0bc41e0361d3
Date: Mon, 2 Mar 2009 16:27:42 +0200
Sam Lantinga <slouken@libsdl.org>
parents:
3082
diff
changeset
|
1610 |
1361
19418e4422cb
New configure-based build system. Still work in progress, but much improved
Sam Lantinga <slouken@libsdl.org>
parents:
1354
diff
changeset
|
1611 dnl Check for Win32 OpenGL |
19418e4422cb
New configure-based build system. Still work in progress, but much improved
Sam Lantinga <slouken@libsdl.org>
parents:
1354
diff
changeset
|
1612 CheckWIN32GL() |
19418e4422cb
New configure-based build system. Still work in progress, but much improved
Sam Lantinga <slouken@libsdl.org>
parents:
1354
diff
changeset
|
1613 { |
19418e4422cb
New configure-based build system. Still work in progress, but much improved
Sam Lantinga <slouken@libsdl.org>
parents:
1354
diff
changeset
|
1614 if test x$enable_video = xyes -a x$enable_video_opengl = xyes; then |
19418e4422cb
New configure-based build system. Still work in progress, but much improved
Sam Lantinga <slouken@libsdl.org>
parents:
1354
diff
changeset
|
1615 AC_DEFINE(SDL_VIDEO_OPENGL) |
19418e4422cb
New configure-based build system. Still work in progress, but much improved
Sam Lantinga <slouken@libsdl.org>
parents:
1354
diff
changeset
|
1616 AC_DEFINE(SDL_VIDEO_OPENGL_WGL) |
1952
420716272158
Implemented X11 OpenGL support.
Sam Lantinga <slouken@libsdl.org>
parents:
1945
diff
changeset
|
1617 AC_DEFINE(SDL_VIDEO_RENDER_OGL) |
1361
19418e4422cb
New configure-based build system. Still work in progress, but much improved
Sam Lantinga <slouken@libsdl.org>
parents:
1354
diff
changeset
|
1618 fi |
19418e4422cb
New configure-based build system. Still work in progress, but much improved
Sam Lantinga <slouken@libsdl.org>
parents:
1354
diff
changeset
|
1619 } |
19418e4422cb
New configure-based build system. Still work in progress, but much improved
Sam Lantinga <slouken@libsdl.org>
parents:
1354
diff
changeset
|
1620 |
0 | 1621 dnl Check for BeOS OpenGL |
1622 CheckBeGL() | |
1623 { | |
1624 if test x$enable_video = xyes -a x$enable_video_opengl = xyes; then | |
1361
19418e4422cb
New configure-based build system. Still work in progress, but much improved
Sam Lantinga <slouken@libsdl.org>
parents:
1354
diff
changeset
|
1625 AC_DEFINE(SDL_VIDEO_OPENGL) |
1952
420716272158
Implemented X11 OpenGL support.
Sam Lantinga <slouken@libsdl.org>
parents:
1945
diff
changeset
|
1626 AC_DEFINE(SDL_VIDEO_OPENGL_BGL) |
420716272158
Implemented X11 OpenGL support.
Sam Lantinga <slouken@libsdl.org>
parents:
1945
diff
changeset
|
1627 AC_DEFINE(SDL_VIDEO_RENDER_OGL) |
1521
9b9212e4810c
CFLAGS are separate from EXTRA_CFLAGS
Sam Lantinga <slouken@libsdl.org>
parents:
1520
diff
changeset
|
1628 EXTRA_LDFLAGS="$EXTRA_LDFLAGS -lGL" |
0 | 1629 fi |
1630 } | |
1631 | |
1632 dnl Check for MacOS OpenGL | |
1633 CheckMacGL() | |
1634 { | |
1635 if test x$enable_video = xyes -a x$enable_video_opengl = xyes; then | |
1361
19418e4422cb
New configure-based build system. Still work in progress, but much improved
Sam Lantinga <slouken@libsdl.org>
parents:
1354
diff
changeset
|
1636 AC_DEFINE(SDL_VIDEO_OPENGL) |
1952
420716272158
Implemented X11 OpenGL support.
Sam Lantinga <slouken@libsdl.org>
parents:
1945
diff
changeset
|
1637 AC_DEFINE(SDL_VIDEO_OPENGL_CGL) |
420716272158
Implemented X11 OpenGL support.
Sam Lantinga <slouken@libsdl.org>
parents:
1945
diff
changeset
|
1638 AC_DEFINE(SDL_VIDEO_RENDER_OGL) |
1550 | 1639 case "$host" in |
0 | 1640 *-*-darwin*) |
1625 | 1641 if test x$enable_video_cocoa = xyes; then |
3623
9a73fecd9181
Reverted r5460 ... this was merged from 1.2, but was later reverted there.
Ryan C. Gordon <icculus@icculus.org>
parents:
3622
diff
changeset
|
1642 EXTRA_LDFLAGS="$EXTRA_LDFLAGS -Wl,-framework,OpenGL" |
1625 | 1643 fi |
0 | 1644 esac |
1645 fi | |
1646 } | |
1647 | |
1648 dnl See if we can use the new unified event interface in Linux 2.4 | |
1649 CheckInputEvents() | |
1650 { | |
1651 dnl Check for Linux 2.4 unified input event interface support | |
1652 AC_ARG_ENABLE(input-events, | |
1637
9ba366b919c7
Date: Fri, 31 Mar 2006 18:28:55 -0500
Sam Lantinga <slouken@libsdl.org>
parents:
1632
diff
changeset
|
1653 AC_HELP_STRING([--enable-input-events], [use Linux 2.4 unified input interface [[default=yes]]]), |
211
0cc95f442f3a
If we're looking at the /dev/input event devices, and we found
Sam Lantinga <slouken@libsdl.org>
parents:
200
diff
changeset
|
1654 , enable_input_events=yes) |
0 | 1655 if test x$enable_input_events = xyes; then |
1656 AC_MSG_CHECKING(for Linux 2.4 unified input interface) | |
1657 use_input_events=no | |
1658 AC_TRY_COMPILE([ | |
1659 #include <linux/input.h> | |
1660 ],[ | |
1661 #ifndef EVIOCGNAME | |
1662 #error EVIOCGNAME() ioctl not available | |
1663 #endif | |
1664 ],[ | |
1665 use_input_events=yes | |
1666 ]) | |
1667 AC_MSG_RESULT($use_input_events) | |
1668 if test x$use_input_events = xyes; then | |
1361
19418e4422cb
New configure-based build system. Still work in progress, but much improved
Sam Lantinga <slouken@libsdl.org>
parents:
1354
diff
changeset
|
1669 AC_DEFINE(SDL_INPUT_LINUXEV) |
0 | 1670 fi |
1671 fi | |
1672 } | |
1673 | |
1201
718d00094f82
Date: Sat, 10 Dec 2005 18:29:41 +0100
Ryan C. Gordon <icculus@icculus.org>
parents:
1200
diff
changeset
|
1674 dnl See if we can use the Touchscreen input library |
718d00094f82
Date: Sat, 10 Dec 2005 18:29:41 +0100
Ryan C. Gordon <icculus@icculus.org>
parents:
1200
diff
changeset
|
1675 CheckTslib() |
718d00094f82
Date: Sat, 10 Dec 2005 18:29:41 +0100
Ryan C. Gordon <icculus@icculus.org>
parents:
1200
diff
changeset
|
1676 { |
718d00094f82
Date: Sat, 10 Dec 2005 18:29:41 +0100
Ryan C. Gordon <icculus@icculus.org>
parents:
1200
diff
changeset
|
1677 AC_ARG_ENABLE(input-tslib, |
1637
9ba366b919c7
Date: Fri, 31 Mar 2006 18:28:55 -0500
Sam Lantinga <slouken@libsdl.org>
parents:
1632
diff
changeset
|
1678 AC_HELP_STRING([--enable-input-tslib], [use the Touchscreen library for input [[default=yes]]]), |
1201
718d00094f82
Date: Sat, 10 Dec 2005 18:29:41 +0100
Ryan C. Gordon <icculus@icculus.org>
parents:
1200
diff
changeset
|
1679 , enable_input_tslib=yes) |
718d00094f82
Date: Sat, 10 Dec 2005 18:29:41 +0100
Ryan C. Gordon <icculus@icculus.org>
parents:
1200
diff
changeset
|
1680 if test x$enable_input_tslib = xyes; then |
718d00094f82
Date: Sat, 10 Dec 2005 18:29:41 +0100
Ryan C. Gordon <icculus@icculus.org>
parents:
1200
diff
changeset
|
1681 AC_MSG_CHECKING(for Touchscreen library support) |
718d00094f82
Date: Sat, 10 Dec 2005 18:29:41 +0100
Ryan C. Gordon <icculus@icculus.org>
parents:
1200
diff
changeset
|
1682 enable_input_tslib=no |
718d00094f82
Date: Sat, 10 Dec 2005 18:29:41 +0100
Ryan C. Gordon <icculus@icculus.org>
parents:
1200
diff
changeset
|
1683 AC_TRY_COMPILE([ |
718d00094f82
Date: Sat, 10 Dec 2005 18:29:41 +0100
Ryan C. Gordon <icculus@icculus.org>
parents:
1200
diff
changeset
|
1684 #include "tslib.h" |
718d00094f82
Date: Sat, 10 Dec 2005 18:29:41 +0100
Ryan C. Gordon <icculus@icculus.org>
parents:
1200
diff
changeset
|
1685 ],[ |
718d00094f82
Date: Sat, 10 Dec 2005 18:29:41 +0100
Ryan C. Gordon <icculus@icculus.org>
parents:
1200
diff
changeset
|
1686 ],[ |
718d00094f82
Date: Sat, 10 Dec 2005 18:29:41 +0100
Ryan C. Gordon <icculus@icculus.org>
parents:
1200
diff
changeset
|
1687 enable_input_tslib=yes |
718d00094f82
Date: Sat, 10 Dec 2005 18:29:41 +0100
Ryan C. Gordon <icculus@icculus.org>
parents:
1200
diff
changeset
|
1688 ]) |
718d00094f82
Date: Sat, 10 Dec 2005 18:29:41 +0100
Ryan C. Gordon <icculus@icculus.org>
parents:
1200
diff
changeset
|
1689 AC_MSG_RESULT($enable_input_tslib) |
718d00094f82
Date: Sat, 10 Dec 2005 18:29:41 +0100
Ryan C. Gordon <icculus@icculus.org>
parents:
1200
diff
changeset
|
1690 if test x$enable_input_tslib = xyes; then |
1361
19418e4422cb
New configure-based build system. Still work in progress, but much improved
Sam Lantinga <slouken@libsdl.org>
parents:
1354
diff
changeset
|
1691 AC_DEFINE(SDL_INPUT_TSLIB) |
1521
9b9212e4810c
CFLAGS are separate from EXTRA_CFLAGS
Sam Lantinga <slouken@libsdl.org>
parents:
1520
diff
changeset
|
1692 EXTRA_LDFLAGS="$EXTRA_LDFLAGS -lts" |
1201
718d00094f82
Date: Sat, 10 Dec 2005 18:29:41 +0100
Ryan C. Gordon <icculus@icculus.org>
parents:
1200
diff
changeset
|
1693 fi |
718d00094f82
Date: Sat, 10 Dec 2005 18:29:41 +0100
Ryan C. Gordon <icculus@icculus.org>
parents:
1200
diff
changeset
|
1694 fi |
718d00094f82
Date: Sat, 10 Dec 2005 18:29:41 +0100
Ryan C. Gordon <icculus@icculus.org>
parents:
1200
diff
changeset
|
1695 } |
718d00094f82
Date: Sat, 10 Dec 2005 18:29:41 +0100
Ryan C. Gordon <icculus@icculus.org>
parents:
1200
diff
changeset
|
1696 |
0 | 1697 dnl See what type of thread model to use on Linux and Solaris |
1698 CheckPTHREAD() | |
1699 { | |
1700 dnl Check for pthread support | |
1701 AC_ARG_ENABLE(pthreads, | |
1637
9ba366b919c7
Date: Fri, 31 Mar 2006 18:28:55 -0500
Sam Lantinga <slouken@libsdl.org>
parents:
1632
diff
changeset
|
1702 AC_HELP_STRING([--enable-pthreads], [use POSIX threads for multi-threading [[default=yes]]]), |
0 | 1703 , enable_pthreads=yes) |
1704 dnl This is used on Linux for glibc binary compatibility (Doh!) | |
1705 AC_ARG_ENABLE(pthread-sem, | |
1637
9ba366b919c7
Date: Fri, 31 Mar 2006 18:28:55 -0500
Sam Lantinga <slouken@libsdl.org>
parents:
1632
diff
changeset
|
1706 AC_HELP_STRING([--enable-pthread-sem], [use pthread semaphores [[default=yes]]]), |
0 | 1707 , enable_pthread_sem=yes) |
1550 | 1708 case "$host" in |
1820
133d55b02d51
Date: Thu, 11 May 2006 17:09:17 -0400
Sam Lantinga <slouken@libsdl.org>
parents:
1813
diff
changeset
|
1709 *-*-linux*|*-*-uclinux*) |
1361
19418e4422cb
New configure-based build system. Still work in progress, but much improved
Sam Lantinga <slouken@libsdl.org>
parents:
1354
diff
changeset
|
1710 pthread_cflags="-D_REENTRANT" |
1324
42e95163d553
Favor using pthread_mutexattr_settype() on Linux.
Sam Lantinga <slouken@libsdl.org>
parents:
1311
diff
changeset
|
1711 pthread_lib="-lpthread" |
42e95163d553
Favor using pthread_mutexattr_settype() on Linux.
Sam Lantinga <slouken@libsdl.org>
parents:
1311
diff
changeset
|
1712 ;; |
0 | 1713 *-*-bsdi*) |
1714 pthread_cflags="-D_REENTRANT -D_THREAD_SAFE" | |
1715 pthread_lib="" | |
1716 ;; | |
1717 *-*-darwin*) | |
1718 pthread_cflags="-D_THREAD_SAFE" | |
1719 # causes Carbon.p complaints? | |
1720 # pthread_cflags="-D_REENTRANT -D_THREAD_SAFE" | |
1721 ;; | |
1565 | 1722 *-*-freebsd*|*-*-dragonfly*) |
0 | 1723 pthread_cflags="-D_REENTRANT -D_THREAD_SAFE" |
1724 pthread_lib="-pthread" | |
1725 ;; | |
43
8cc154626be9
I found the pthread package for NetBSD
Sam Lantinga <slouken@lokigames.com>
parents:
42
diff
changeset
|
1726 *-*-netbsd*) |
1383 | 1727 pthread_cflags="-D_REENTRANT -D_THREAD_SAFE" |
2158
eff395617ed8
Merged part of NetBSD pkgsrc patch-aj:
Sam Lantinga <slouken@libsdl.org>
parents:
2148
diff
changeset
|
1728 pthread_lib="-lpthread" |
43
8cc154626be9
I found the pthread package for NetBSD
Sam Lantinga <slouken@lokigames.com>
parents:
42
diff
changeset
|
1729 ;; |
0 | 1730 *-*-openbsd*) |
1731 pthread_cflags="-D_REENTRANT" | |
1732 pthread_lib="-pthread" | |
1733 ;; | |
1734 *-*-solaris*) | |
1735 pthread_cflags="-D_REENTRANT" | |
1736 pthread_lib="-lpthread -lposix4" | |
1737 ;; | |
1738 *-*-sysv5*) | |
1739 pthread_cflags="-D_REENTRANT -Kthread" | |
1740 pthread_lib="" | |
1741 ;; | |
1742 *-*-irix*) | |
1743 pthread_cflags="-D_SGI_MP_SOURCE" | |
1744 pthread_lib="-lpthread" | |
1745 ;; | |
1746 *-*-aix*) | |
1747 pthread_cflags="-D_REENTRANT -mthreads" | |
1748 pthread_lib="-lpthread" | |
1749 ;; | |
425
edbbe5775244
Fixed (?) semaphore support on HPUX 11.x ...
Ryan C. Gordon <icculus@icculus.org>
parents:
419
diff
changeset
|
1750 *-*-hpux11*) |
edbbe5775244
Fixed (?) semaphore support on HPUX 11.x ...
Ryan C. Gordon <icculus@icculus.org>
parents:
419
diff
changeset
|
1751 pthread_cflags="-D_REENTRANT" |
edbbe5775244
Fixed (?) semaphore support on HPUX 11.x ...
Ryan C. Gordon <icculus@icculus.org>
parents:
419
diff
changeset
|
1752 pthread_lib="-L/usr/lib -lpthread" |
edbbe5775244
Fixed (?) semaphore support on HPUX 11.x ...
Ryan C. Gordon <icculus@icculus.org>
parents:
419
diff
changeset
|
1753 ;; |
0 | 1754 *-*-qnx*) |
1755 pthread_cflags="" | |
1756 pthread_lib="" | |
1757 ;; | |
873
89666943c598
Date: Sun, 07 Mar 2004 22:54:11 +0900
Sam Lantinga <slouken@libsdl.org>
parents:
868
diff
changeset
|
1758 *-*-osf*) |
1019
e3b3130f3af8
Date: Fri, 31 Dec 2004 04:14:09 +0900
Sam Lantinga <slouken@libsdl.org>
parents:
1009
diff
changeset
|
1759 pthread_cflags="-D_REENTRANT" |
873
89666943c598
Date: Sun, 07 Mar 2004 22:54:11 +0900
Sam Lantinga <slouken@libsdl.org>
parents:
868
diff
changeset
|
1760 if test x$ac_cv_prog_gcc = xyes; then |
89666943c598
Date: Sun, 07 Mar 2004 22:54:11 +0900
Sam Lantinga <slouken@libsdl.org>
parents:
868
diff
changeset
|
1761 pthread_lib="-lpthread -lrt" |
89666943c598
Date: Sun, 07 Mar 2004 22:54:11 +0900
Sam Lantinga <slouken@libsdl.org>
parents:
868
diff
changeset
|
1762 else |
1019
e3b3130f3af8
Date: Fri, 31 Dec 2004 04:14:09 +0900
Sam Lantinga <slouken@libsdl.org>
parents:
1009
diff
changeset
|
1763 pthread_lib="-lpthread -lexc -lrt" |
873
89666943c598
Date: Sun, 07 Mar 2004 22:54:11 +0900
Sam Lantinga <slouken@libsdl.org>
parents:
868
diff
changeset
|
1764 fi |
89666943c598
Date: Sun, 07 Mar 2004 22:54:11 +0900
Sam Lantinga <slouken@libsdl.org>
parents:
868
diff
changeset
|
1765 ;; |
0 | 1766 *) |
1767 pthread_cflags="-D_REENTRANT" | |
1768 pthread_lib="-lpthread" | |
1769 ;; | |
1770 esac | |
3268
82ce350be859
Removed outdated iPodLinux support
Sam Lantinga <slouken@libsdl.org>
parents:
3257
diff
changeset
|
1771 if test x$enable_threads = xyes -a x$enable_pthreads = xyes; then |
415
104f32d04cd1
Fixed building with pthreads and the pth library
Sam Lantinga <slouken@libsdl.org>
parents:
413
diff
changeset
|
1772 # Save the original compiler flags and libraries |
104f32d04cd1
Fixed building with pthreads and the pth library
Sam Lantinga <slouken@libsdl.org>
parents:
413
diff
changeset
|
1773 ac_save_cflags="$CFLAGS"; ac_save_libs="$LIBS" |
104f32d04cd1
Fixed building with pthreads and the pth library
Sam Lantinga <slouken@libsdl.org>
parents:
413
diff
changeset
|
1774 # Add the pthread compiler flags and libraries |
104f32d04cd1
Fixed building with pthreads and the pth library
Sam Lantinga <slouken@libsdl.org>
parents:
413
diff
changeset
|
1775 CFLAGS="$CFLAGS $pthread_cflags"; LIBS="$LIBS $pthread_lib" |
104f32d04cd1
Fixed building with pthreads and the pth library
Sam Lantinga <slouken@libsdl.org>
parents:
413
diff
changeset
|
1776 # Check to see if we have pthread support on this system |
0 | 1777 AC_MSG_CHECKING(for pthreads) |
1778 use_pthreads=no | |
1779 AC_TRY_LINK([ | |
1780 #include <pthread.h> | |
1781 ],[ | |
1782 pthread_attr_t type; | |
1783 pthread_attr_init(&type); | |
1784 ],[ | |
1785 use_pthreads=yes | |
1786 ]) | |
1787 AC_MSG_RESULT($use_pthreads) | |
415
104f32d04cd1
Fixed building with pthreads and the pth library
Sam Lantinga <slouken@libsdl.org>
parents:
413
diff
changeset
|
1788 # Restore the compiler flags and libraries |
104f32d04cd1
Fixed building with pthreads and the pth library
Sam Lantinga <slouken@libsdl.org>
parents:
413
diff
changeset
|
1789 CFLAGS="$ac_save_cflags"; LIBS="$ac_save_libs" |
1361
19418e4422cb
New configure-based build system. Still work in progress, but much improved
Sam Lantinga <slouken@libsdl.org>
parents:
1354
diff
changeset
|
1790 |
415
104f32d04cd1
Fixed building with pthreads and the pth library
Sam Lantinga <slouken@libsdl.org>
parents:
413
diff
changeset
|
1791 # Do futher testing if we have pthread support... |
0 | 1792 if test x$use_pthreads = xyes; then |
1361
19418e4422cb
New configure-based build system. Still work in progress, but much improved
Sam Lantinga <slouken@libsdl.org>
parents:
1354
diff
changeset
|
1793 AC_DEFINE(SDL_THREAD_PTHREAD) |
1521
9b9212e4810c
CFLAGS are separate from EXTRA_CFLAGS
Sam Lantinga <slouken@libsdl.org>
parents:
1520
diff
changeset
|
1794 EXTRA_CFLAGS="$EXTRA_CFLAGS $pthread_cflags" |
9b9212e4810c
CFLAGS are separate from EXTRA_CFLAGS
Sam Lantinga <slouken@libsdl.org>
parents:
1520
diff
changeset
|
1795 EXTRA_LDFLAGS="$EXTRA_LDFLAGS $pthread_lib" |
0 | 1796 SDL_CFLAGS="$SDL_CFLAGS $pthread_cflags" |
1797 SDL_LIBS="$SDL_LIBS $pthread_lib" | |
1798 | |
1438
1f4f09641645
Date: Sun, 26 Feb 2006 11:25:09 +0900
Sam Lantinga <slouken@libsdl.org>
parents:
1402
diff
changeset
|
1799 # Save the original compiler flags and libraries |
1f4f09641645
Date: Sun, 26 Feb 2006 11:25:09 +0900
Sam Lantinga <slouken@libsdl.org>
parents:
1402
diff
changeset
|
1800 ac_save_cflags="$CFLAGS"; ac_save_libs="$LIBS" |
1f4f09641645
Date: Sun, 26 Feb 2006 11:25:09 +0900
Sam Lantinga <slouken@libsdl.org>
parents:
1402
diff
changeset
|
1801 # Add the pthread compiler flags and libraries |
1f4f09641645
Date: Sun, 26 Feb 2006 11:25:09 +0900
Sam Lantinga <slouken@libsdl.org>
parents:
1402
diff
changeset
|
1802 CFLAGS="$CFLAGS $pthread_cflags"; LIBS="$LIBS $pthread_lib" |
1f4f09641645
Date: Sun, 26 Feb 2006 11:25:09 +0900
Sam Lantinga <slouken@libsdl.org>
parents:
1402
diff
changeset
|
1803 |
0 | 1804 # Check to see if recursive mutexes are available |
1805 AC_MSG_CHECKING(for recursive mutexes) | |
1806 has_recursive_mutexes=no | |
1324
42e95163d553
Favor using pthread_mutexattr_settype() on Linux.
Sam Lantinga <slouken@libsdl.org>
parents:
1311
diff
changeset
|
1807 if test x$has_recursive_mutexes = xno; then |
42e95163d553
Favor using pthread_mutexattr_settype() on Linux.
Sam Lantinga <slouken@libsdl.org>
parents:
1311
diff
changeset
|
1808 AC_TRY_COMPILE([ |
42e95163d553
Favor using pthread_mutexattr_settype() on Linux.
Sam Lantinga <slouken@libsdl.org>
parents:
1311
diff
changeset
|
1809 #include <pthread.h> |
42e95163d553
Favor using pthread_mutexattr_settype() on Linux.
Sam Lantinga <slouken@libsdl.org>
parents:
1311
diff
changeset
|
1810 ],[ |
42e95163d553
Favor using pthread_mutexattr_settype() on Linux.
Sam Lantinga <slouken@libsdl.org>
parents:
1311
diff
changeset
|
1811 pthread_mutexattr_t attr; |
42e95163d553
Favor using pthread_mutexattr_settype() on Linux.
Sam Lantinga <slouken@libsdl.org>
parents:
1311
diff
changeset
|
1812 pthread_mutexattr_settype(&attr, PTHREAD_MUTEX_RECURSIVE); |
42e95163d553
Favor using pthread_mutexattr_settype() on Linux.
Sam Lantinga <slouken@libsdl.org>
parents:
1311
diff
changeset
|
1813 ],[ |
42e95163d553
Favor using pthread_mutexattr_settype() on Linux.
Sam Lantinga <slouken@libsdl.org>
parents:
1311
diff
changeset
|
1814 has_recursive_mutexes=yes |
1361
19418e4422cb
New configure-based build system. Still work in progress, but much improved
Sam Lantinga <slouken@libsdl.org>
parents:
1354
diff
changeset
|
1815 AC_DEFINE(SDL_THREAD_PTHREAD_RECURSIVE_MUTEX) |
1324
42e95163d553
Favor using pthread_mutexattr_settype() on Linux.
Sam Lantinga <slouken@libsdl.org>
parents:
1311
diff
changeset
|
1816 ]) |
42e95163d553
Favor using pthread_mutexattr_settype() on Linux.
Sam Lantinga <slouken@libsdl.org>
parents:
1311
diff
changeset
|
1817 fi |
42e95163d553
Favor using pthread_mutexattr_settype() on Linux.
Sam Lantinga <slouken@libsdl.org>
parents:
1311
diff
changeset
|
1818 if test x$has_recursive_mutexes = xno; then |
42e95163d553
Favor using pthread_mutexattr_settype() on Linux.
Sam Lantinga <slouken@libsdl.org>
parents:
1311
diff
changeset
|
1819 AC_TRY_COMPILE([ |
42e95163d553
Favor using pthread_mutexattr_settype() on Linux.
Sam Lantinga <slouken@libsdl.org>
parents:
1311
diff
changeset
|
1820 #include <pthread.h> |
42e95163d553
Favor using pthread_mutexattr_settype() on Linux.
Sam Lantinga <slouken@libsdl.org>
parents:
1311
diff
changeset
|
1821 ],[ |
42e95163d553
Favor using pthread_mutexattr_settype() on Linux.
Sam Lantinga <slouken@libsdl.org>
parents:
1311
diff
changeset
|
1822 pthread_mutexattr_t attr; |
42e95163d553
Favor using pthread_mutexattr_settype() on Linux.
Sam Lantinga <slouken@libsdl.org>
parents:
1311
diff
changeset
|
1823 pthread_mutexattr_setkind_np(&attr, PTHREAD_MUTEX_RECURSIVE_NP); |
42e95163d553
Favor using pthread_mutexattr_settype() on Linux.
Sam Lantinga <slouken@libsdl.org>
parents:
1311
diff
changeset
|
1824 ],[ |
42e95163d553
Favor using pthread_mutexattr_settype() on Linux.
Sam Lantinga <slouken@libsdl.org>
parents:
1311
diff
changeset
|
1825 has_recursive_mutexes=yes |
1361
19418e4422cb
New configure-based build system. Still work in progress, but much improved
Sam Lantinga <slouken@libsdl.org>
parents:
1354
diff
changeset
|
1826 AC_DEFINE(SDL_THREAD_PTHREAD_RECURSIVE_MUTEX_NP) |
1324
42e95163d553
Favor using pthread_mutexattr_settype() on Linux.
Sam Lantinga <slouken@libsdl.org>
parents:
1311
diff
changeset
|
1827 ]) |
42e95163d553
Favor using pthread_mutexattr_settype() on Linux.
Sam Lantinga <slouken@libsdl.org>
parents:
1311
diff
changeset
|
1828 fi |
0 | 1829 AC_MSG_RESULT($has_recursive_mutexes) |
1830 | |
94
ae6e6b73333f
Cleaned up the OpenBSD port, thanks to Peter Valchev
Sam Lantinga <slouken@lokigames.com>
parents:
86
diff
changeset
|
1831 # Check to see if pthread semaphore support is missing |
ae6e6b73333f
Cleaned up the OpenBSD port, thanks to Peter Valchev
Sam Lantinga <slouken@lokigames.com>
parents:
86
diff
changeset
|
1832 if test x$enable_pthread_sem = xyes; then |
ae6e6b73333f
Cleaned up the OpenBSD port, thanks to Peter Valchev
Sam Lantinga <slouken@lokigames.com>
parents:
86
diff
changeset
|
1833 AC_MSG_CHECKING(for pthread semaphores) |
ae6e6b73333f
Cleaned up the OpenBSD port, thanks to Peter Valchev
Sam Lantinga <slouken@lokigames.com>
parents:
86
diff
changeset
|
1834 have_pthread_sem=no |
ae6e6b73333f
Cleaned up the OpenBSD port, thanks to Peter Valchev
Sam Lantinga <slouken@lokigames.com>
parents:
86
diff
changeset
|
1835 AC_TRY_COMPILE([ |
ae6e6b73333f
Cleaned up the OpenBSD port, thanks to Peter Valchev
Sam Lantinga <slouken@lokigames.com>
parents:
86
diff
changeset
|
1836 #include <pthread.h> |
ae6e6b73333f
Cleaned up the OpenBSD port, thanks to Peter Valchev
Sam Lantinga <slouken@lokigames.com>
parents:
86
diff
changeset
|
1837 #include <semaphore.h> |
ae6e6b73333f
Cleaned up the OpenBSD port, thanks to Peter Valchev
Sam Lantinga <slouken@lokigames.com>
parents:
86
diff
changeset
|
1838 ],[ |
ae6e6b73333f
Cleaned up the OpenBSD port, thanks to Peter Valchev
Sam Lantinga <slouken@lokigames.com>
parents:
86
diff
changeset
|
1839 ],[ |
ae6e6b73333f
Cleaned up the OpenBSD port, thanks to Peter Valchev
Sam Lantinga <slouken@lokigames.com>
parents:
86
diff
changeset
|
1840 have_pthread_sem=yes |
ae6e6b73333f
Cleaned up the OpenBSD port, thanks to Peter Valchev
Sam Lantinga <slouken@lokigames.com>
parents:
86
diff
changeset
|
1841 ]) |
ae6e6b73333f
Cleaned up the OpenBSD port, thanks to Peter Valchev
Sam Lantinga <slouken@lokigames.com>
parents:
86
diff
changeset
|
1842 AC_MSG_RESULT($have_pthread_sem) |
ae6e6b73333f
Cleaned up the OpenBSD port, thanks to Peter Valchev
Sam Lantinga <slouken@lokigames.com>
parents:
86
diff
changeset
|
1843 fi |
ae6e6b73333f
Cleaned up the OpenBSD port, thanks to Peter Valchev
Sam Lantinga <slouken@lokigames.com>
parents:
86
diff
changeset
|
1844 |
1438
1f4f09641645
Date: Sun, 26 Feb 2006 11:25:09 +0900
Sam Lantinga <slouken@libsdl.org>
parents:
1402
diff
changeset
|
1845 # Restore the compiler flags and libraries |
1f4f09641645
Date: Sun, 26 Feb 2006 11:25:09 +0900
Sam Lantinga <slouken@libsdl.org>
parents:
1402
diff
changeset
|
1846 CFLAGS="$ac_save_cflags"; LIBS="$ac_save_libs" |
1f4f09641645
Date: Sun, 26 Feb 2006 11:25:09 +0900
Sam Lantinga <slouken@libsdl.org>
parents:
1402
diff
changeset
|
1847 |
1361
19418e4422cb
New configure-based build system. Still work in progress, but much improved
Sam Lantinga <slouken@libsdl.org>
parents:
1354
diff
changeset
|
1848 # Basic thread creation functions |
19418e4422cb
New configure-based build system. Still work in progress, but much improved
Sam Lantinga <slouken@libsdl.org>
parents:
1354
diff
changeset
|
1849 SOURCES="$SOURCES $srcdir/src/thread/pthread/SDL_systhread.c" |
0 | 1850 |
1361
19418e4422cb
New configure-based build system. Still work in progress, but much improved
Sam Lantinga <slouken@libsdl.org>
parents:
1354
diff
changeset
|
1851 # Semaphores |
19418e4422cb
New configure-based build system. Still work in progress, but much improved
Sam Lantinga <slouken@libsdl.org>
parents:
1354
diff
changeset
|
1852 # We can fake these with mutexes and condition variables if necessary |
19418e4422cb
New configure-based build system. Still work in progress, but much improved
Sam Lantinga <slouken@libsdl.org>
parents:
1354
diff
changeset
|
1853 if test x$have_pthread_sem = xyes; then |
19418e4422cb
New configure-based build system. Still work in progress, but much improved
Sam Lantinga <slouken@libsdl.org>
parents:
1354
diff
changeset
|
1854 SOURCES="$SOURCES $srcdir/src/thread/pthread/SDL_syssem.c" |
19418e4422cb
New configure-based build system. Still work in progress, but much improved
Sam Lantinga <slouken@libsdl.org>
parents:
1354
diff
changeset
|
1855 else |
19418e4422cb
New configure-based build system. Still work in progress, but much improved
Sam Lantinga <slouken@libsdl.org>
parents:
1354
diff
changeset
|
1856 SOURCES="$SOURCES $srcdir/src/thread/generic/SDL_syssem.c" |
19418e4422cb
New configure-based build system. Still work in progress, but much improved
Sam Lantinga <slouken@libsdl.org>
parents:
1354
diff
changeset
|
1857 fi |
399
cfcf6bf1640c
Unified the thread detection code for UNIX platforms
Sam Lantinga <slouken@libsdl.org>
parents:
398
diff
changeset
|
1858 |
1361
19418e4422cb
New configure-based build system. Still work in progress, but much improved
Sam Lantinga <slouken@libsdl.org>
parents:
1354
diff
changeset
|
1859 # Mutexes |
19418e4422cb
New configure-based build system. Still work in progress, but much improved
Sam Lantinga <slouken@libsdl.org>
parents:
1354
diff
changeset
|
1860 # We can fake these with semaphores if necessary |
19418e4422cb
New configure-based build system. Still work in progress, but much improved
Sam Lantinga <slouken@libsdl.org>
parents:
1354
diff
changeset
|
1861 SOURCES="$SOURCES $srcdir/src/thread/pthread/SDL_sysmutex.c" |
399
cfcf6bf1640c
Unified the thread detection code for UNIX platforms
Sam Lantinga <slouken@libsdl.org>
parents:
398
diff
changeset
|
1862 |
1361
19418e4422cb
New configure-based build system. Still work in progress, but much improved
Sam Lantinga <slouken@libsdl.org>
parents:
1354
diff
changeset
|
1863 # Condition variables |
19418e4422cb
New configure-based build system. Still work in progress, but much improved
Sam Lantinga <slouken@libsdl.org>
parents:
1354
diff
changeset
|
1864 # We can fake these with semaphores and mutexes if necessary |
19418e4422cb
New configure-based build system. Still work in progress, but much improved
Sam Lantinga <slouken@libsdl.org>
parents:
1354
diff
changeset
|
1865 SOURCES="$SOURCES $srcdir/src/thread/pthread/SDL_syscond.c" |
185
34d316d5e744
Added support for the GNU Pth thread lib (thanks Mandin!)
Sam Lantinga <slouken@libsdl.org>
parents:
178
diff
changeset
|
1866 |
1361
19418e4422cb
New configure-based build system. Still work in progress, but much improved
Sam Lantinga <slouken@libsdl.org>
parents:
1354
diff
changeset
|
1867 have_threads=yes |
814
5a417d2a8603
Use sigaction instead of signal to preserve handler flags (thanks Matthew!)
Sam Lantinga <slouken@libsdl.org>
parents:
807
diff
changeset
|
1868 fi |
5a417d2a8603
Use sigaction instead of signal to preserve handler flags (thanks Matthew!)
Sam Lantinga <slouken@libsdl.org>
parents:
807
diff
changeset
|
1869 fi |
5a417d2a8603
Use sigaction instead of signal to preserve handler flags (thanks Matthew!)
Sam Lantinga <slouken@libsdl.org>
parents:
807
diff
changeset
|
1870 } |
5a417d2a8603
Use sigaction instead of signal to preserve handler flags (thanks Matthew!)
Sam Lantinga <slouken@libsdl.org>
parents:
807
diff
changeset
|
1871 |
0 | 1872 dnl Determine whether the compiler can produce Win32 executables |
1873 CheckWIN32() | |
1874 { | |
1875 AC_MSG_CHECKING(Win32 compiler) | |
1876 have_win32_gcc=no | |
1877 AC_TRY_COMPILE([ | |
1878 #include <windows.h> | |
1879 ],[ | |
1880 ],[ | |
1881 have_win32_gcc=yes | |
1882 ]) | |
1883 AC_MSG_RESULT($have_win32_gcc) | |
1884 if test x$have_win32_gcc != xyes; then | |
1885 AC_MSG_ERROR([ | |
1886 *** Your compiler ($CC) does not produce Win32 executables! | |
1887 ]) | |
1888 fi | |
1889 | |
3168 | 1890 AC_MSG_CHECKING(Windows CE) |
1891 have_wince=no | |
1892 AC_TRY_COMPILE([ | |
1893 #ifndef _WIN32_WCE | |
1894 #error This is not Windows CE | |
1895 #endif | |
1896 ],[ | |
1897 ],[ | |
1898 have_wince=yes | |
1899 ]) | |
1900 AC_MSG_RESULT($have_wince) | |
1901 | |
0 | 1902 dnl See if the user wants to redirect standard output to files |
1903 AC_ARG_ENABLE(stdio-redirect, | |
1637
9ba366b919c7
Date: Fri, 31 Mar 2006 18:28:55 -0500
Sam Lantinga <slouken@libsdl.org>
parents:
1632
diff
changeset
|
1904 AC_HELP_STRING([--enable-stdio-redirect], [Redirect STDIO to files on Win32 [[default=yes]]]), |
0 | 1905 , enable_stdio_redirect=yes) |
1906 if test x$enable_stdio_redirect != xyes; then | |
1521
9b9212e4810c
CFLAGS are separate from EXTRA_CFLAGS
Sam Lantinga <slouken@libsdl.org>
parents:
1520
diff
changeset
|
1907 EXTRA_CFLAGS="$EXTRA_CFLAGS -DNO_STDIO_REDIRECT" |
1361
19418e4422cb
New configure-based build system. Still work in progress, but much improved
Sam Lantinga <slouken@libsdl.org>
parents:
1354
diff
changeset
|
1908 fi |
0 | 1909 } |
1910 | |
1911 dnl Find the DirectX includes and libraries | |
1912 CheckDIRECTX() | |
1913 { | |
1914 AC_ARG_ENABLE(directx, | |
1637
9ba366b919c7
Date: Fri, 31 Mar 2006 18:28:55 -0500
Sam Lantinga <slouken@libsdl.org>
parents:
1632
diff
changeset
|
1915 AC_HELP_STRING([--enable-directx], [use DirectX for Win32 audio/video [[default=yes]]]), |
0 | 1916 , enable_directx=yes) |
1917 if test x$enable_directx = xyes; then | |
1895
c121d94672cb
SDL 1.2 is moving to a branch, and SDL 1.3 is becoming the head.
Sam Lantinga <slouken@libsdl.org>
parents:
1891
diff
changeset
|
1918 AC_CHECK_HEADER(d3d9.h, have_d3d=yes) |
3168 | 1919 AC_CHECK_HEADER(ddraw.h, have_ddraw=yes) |
1361
19418e4422cb
New configure-based build system. Still work in progress, but much improved
Sam Lantinga <slouken@libsdl.org>
parents:
1354
diff
changeset
|
1920 AC_CHECK_HEADER(dsound.h, have_dsound=yes) |
2714
1d1be6137875
Merged last minute fixes from force feedback branch (r4031, r4033, r4034)
Sam Lantinga <slouken@libsdl.org>
parents:
2713
diff
changeset
|
1921 AC_CHECK_HEADER(dinput.h, have_dinput=yes) |
1187 | 1922 fi |
1923 } | |
1924 | |
294
d2d48e10f370
Added a new header file: SDL_loadso.h
Sam Lantinga <slouken@libsdl.org>
parents:
292
diff
changeset
|
1925 dnl Check for the dlfcn.h interface for dynamically loading objects |
d2d48e10f370
Added a new header file: SDL_loadso.h
Sam Lantinga <slouken@libsdl.org>
parents:
292
diff
changeset
|
1926 CheckDLOPEN() |
d2d48e10f370
Added a new header file: SDL_loadso.h
Sam Lantinga <slouken@libsdl.org>
parents:
292
diff
changeset
|
1927 { |
731
faaa676b20ef
*** empty log message ***
Sam Lantinga <slouken@libsdl.org>
parents:
724
diff
changeset
|
1928 AC_ARG_ENABLE(sdl-dlopen, |
1637
9ba366b919c7
Date: Fri, 31 Mar 2006 18:28:55 -0500
Sam Lantinga <slouken@libsdl.org>
parents:
1632
diff
changeset
|
1929 AC_HELP_STRING([--enable-sdl-dlopen], [use dlopen for shared object loading [[default=yes]]]), |
731
faaa676b20ef
*** empty log message ***
Sam Lantinga <slouken@libsdl.org>
parents:
724
diff
changeset
|
1930 , enable_sdl_dlopen=yes) |
faaa676b20ef
*** empty log message ***
Sam Lantinga <slouken@libsdl.org>
parents:
724
diff
changeset
|
1931 if test x$enable_sdl_dlopen = xyes; then |
294
d2d48e10f370
Added a new header file: SDL_loadso.h
Sam Lantinga <slouken@libsdl.org>
parents:
292
diff
changeset
|
1932 AC_MSG_CHECKING(for dlopen) |
1361
19418e4422cb
New configure-based build system. Still work in progress, but much improved
Sam Lantinga <slouken@libsdl.org>
parents:
1354
diff
changeset
|
1933 have_dlopen=no |
294
d2d48e10f370
Added a new header file: SDL_loadso.h
Sam Lantinga <slouken@libsdl.org>
parents:
292
diff
changeset
|
1934 AC_TRY_COMPILE([ |
d2d48e10f370
Added a new header file: SDL_loadso.h
Sam Lantinga <slouken@libsdl.org>
parents:
292
diff
changeset
|
1935 #include <dlfcn.h> |
d2d48e10f370
Added a new header file: SDL_loadso.h
Sam Lantinga <slouken@libsdl.org>
parents:
292
diff
changeset
|
1936 ],[ |
1638
ebd1aedb1292
Miscellaneous Mac OS X fixes
Sam Lantinga <slouken@libsdl.org>
parents:
1637
diff
changeset
|
1937 #if defined(MAC_OS_X_VERSION_MIN_REQUIRED) && MAC_OS_X_VERSION_MIN_REQUIRED <= 1020 |
ebd1aedb1292
Miscellaneous Mac OS X fixes
Sam Lantinga <slouken@libsdl.org>
parents:
1637
diff
changeset
|
1938 #error Use dlcompat for Mac OS X 10.2 compatibility |
ebd1aedb1292
Miscellaneous Mac OS X fixes
Sam Lantinga <slouken@libsdl.org>
parents:
1637
diff
changeset
|
1939 #endif |
294
d2d48e10f370
Added a new header file: SDL_loadso.h
Sam Lantinga <slouken@libsdl.org>
parents:
292
diff
changeset
|
1940 ],[ |
1361
19418e4422cb
New configure-based build system. Still work in progress, but much improved
Sam Lantinga <slouken@libsdl.org>
parents:
1354
diff
changeset
|
1941 have_dlopen=yes |
294
d2d48e10f370
Added a new header file: SDL_loadso.h
Sam Lantinga <slouken@libsdl.org>
parents:
292
diff
changeset
|
1942 ]) |
1361
19418e4422cb
New configure-based build system. Still work in progress, but much improved
Sam Lantinga <slouken@libsdl.org>
parents:
1354
diff
changeset
|
1943 AC_MSG_RESULT($have_dlopen) |
294
d2d48e10f370
Added a new header file: SDL_loadso.h
Sam Lantinga <slouken@libsdl.org>
parents:
292
diff
changeset
|
1944 |
1361
19418e4422cb
New configure-based build system. Still work in progress, but much improved
Sam Lantinga <slouken@libsdl.org>
parents:
1354
diff
changeset
|
1945 if test x$have_dlopen = xyes; then |
1521
9b9212e4810c
CFLAGS are separate from EXTRA_CFLAGS
Sam Lantinga <slouken@libsdl.org>
parents:
1520
diff
changeset
|
1946 AC_CHECK_LIB(c, dlopen, EXTRA_LDFLAGS="$EXTRA_LDFLAGS", |
9b9212e4810c
CFLAGS are separate from EXTRA_CFLAGS
Sam Lantinga <slouken@libsdl.org>
parents:
1520
diff
changeset
|
1947 AC_CHECK_LIB(dl, dlopen, EXTRA_LDFLAGS="$EXTRA_LDFLAGS -ldl", |
9b9212e4810c
CFLAGS are separate from EXTRA_CFLAGS
Sam Lantinga <slouken@libsdl.org>
parents:
1520
diff
changeset
|
1948 AC_CHECK_LIB(ltdl, dlopen, EXTRA_LDFLAGS="$EXTRA_LDFLAGS -lltdl"))) |
1361
19418e4422cb
New configure-based build system. Still work in progress, but much improved
Sam Lantinga <slouken@libsdl.org>
parents:
1354
diff
changeset
|
1949 AC_DEFINE(SDL_LOADSO_DLOPEN) |
19418e4422cb
New configure-based build system. Still work in progress, but much improved
Sam Lantinga <slouken@libsdl.org>
parents:
1354
diff
changeset
|
1950 SOURCES="$SOURCES $srcdir/src/loadso/dlopen/*.c" |
19418e4422cb
New configure-based build system. Still work in progress, but much improved
Sam Lantinga <slouken@libsdl.org>
parents:
1354
diff
changeset
|
1951 have_loadso=yes |
294
d2d48e10f370
Added a new header file: SDL_loadso.h
Sam Lantinga <slouken@libsdl.org>
parents:
292
diff
changeset
|
1952 fi |
d2d48e10f370
Added a new header file: SDL_loadso.h
Sam Lantinga <slouken@libsdl.org>
parents:
292
diff
changeset
|
1953 fi |
d2d48e10f370
Added a new header file: SDL_loadso.h
Sam Lantinga <slouken@libsdl.org>
parents:
292
diff
changeset
|
1954 } |
d2d48e10f370
Added a new header file: SDL_loadso.h
Sam Lantinga <slouken@libsdl.org>
parents:
292
diff
changeset
|
1955 |
381
bc1401311390
Wilbern Cobb submitted a fix for building BSD joystick support that should work on all BSD flavors.
Sam Lantinga <slouken@libsdl.org>
parents:
378
diff
changeset
|
1956 dnl Check for the usbhid(3) library on *BSD |
bc1401311390
Wilbern Cobb submitted a fix for building BSD joystick support that should work on all BSD flavors.
Sam Lantinga <slouken@libsdl.org>
parents:
378
diff
changeset
|
1957 CheckUSBHID() |
bc1401311390
Wilbern Cobb submitted a fix for building BSD joystick support that should work on all BSD flavors.
Sam Lantinga <slouken@libsdl.org>
parents:
378
diff
changeset
|
1958 { |
bc1401311390
Wilbern Cobb submitted a fix for building BSD joystick support that should work on all BSD flavors.
Sam Lantinga <slouken@libsdl.org>
parents:
378
diff
changeset
|
1959 if test x$enable_joystick = xyes; then |
1565 | 1960 AC_CHECK_LIB(usbhid, hid_init, have_libusbhid=yes) |
1961 if test x$have_libusbhid = xyes; then | |
1962 AC_CHECK_HEADER(usbhid.h, [USB_CFLAGS="-DHAVE_USBHID_H"]) | |
1963 AC_CHECK_HEADER(libusbhid.h, [USB_CFLAGS="-DHAVE_LIBUSBHID_H"]) | |
1964 USB_LIBS="$USB_LIBS -lusbhid" | |
1965 else | |
1966 AC_CHECK_HEADER(usb.h, [USB_CFLAGS="-DHAVE_USB_H"]) | |
1967 AC_CHECK_HEADER(libusb.h, [USB_CFLAGS="-DHAVE_LIBUSB_H"]) | |
1968 AC_CHECK_LIB(usb, hid_init, [USB_LIBS="$USB_LIBS -lusb"]) | |
1969 fi | |
1361
19418e4422cb
New configure-based build system. Still work in progress, but much improved
Sam Lantinga <slouken@libsdl.org>
parents:
1354
diff
changeset
|
1970 |
19418e4422cb
New configure-based build system. Still work in progress, but much improved
Sam Lantinga <slouken@libsdl.org>
parents:
1354
diff
changeset
|
1971 save_CFLAGS="$CFLAGS" |
19418e4422cb
New configure-based build system. Still work in progress, but much improved
Sam Lantinga <slouken@libsdl.org>
parents:
1354
diff
changeset
|
1972 CFLAGS="$CFLAGS $USB_CFLAGS" |
381
bc1401311390
Wilbern Cobb submitted a fix for building BSD joystick support that should work on all BSD flavors.
Sam Lantinga <slouken@libsdl.org>
parents:
378
diff
changeset
|
1973 |
bc1401311390
Wilbern Cobb submitted a fix for building BSD joystick support that should work on all BSD flavors.
Sam Lantinga <slouken@libsdl.org>
parents:
378
diff
changeset
|
1974 AC_MSG_CHECKING(for usbhid) |
bc1401311390
Wilbern Cobb submitted a fix for building BSD joystick support that should work on all BSD flavors.
Sam Lantinga <slouken@libsdl.org>
parents:
378
diff
changeset
|
1975 have_usbhid=no |
bc1401311390
Wilbern Cobb submitted a fix for building BSD joystick support that should work on all BSD flavors.
Sam Lantinga <slouken@libsdl.org>
parents:
378
diff
changeset
|
1976 AC_TRY_COMPILE([ |
404
cbb346aca05d
*** empty log message ***
Sam Lantinga <slouken@libsdl.org>
parents:
403
diff
changeset
|
1977 #include <sys/types.h> |
403
8d431937739d
*** empty log message ***
Sam Lantinga <slouken@libsdl.org>
parents:
402
diff
changeset
|
1978 #if defined(HAVE_USB_H) |
8d431937739d
*** empty log message ***
Sam Lantinga <slouken@libsdl.org>
parents:
402
diff
changeset
|
1979 #include <usb.h> |
8d431937739d
*** empty log message ***
Sam Lantinga <slouken@libsdl.org>
parents:
402
diff
changeset
|
1980 #endif |
1565 | 1981 #ifdef __DragonFly__ |
1982 # include <bus/usb/usb.h> | |
1983 # include <bus/usb/usbhid.h> | |
1984 #else | |
1985 # include <dev/usb/usb.h> | |
1986 # include <dev/usb/usbhid.h> | |
1987 #endif | |
381
bc1401311390
Wilbern Cobb submitted a fix for building BSD joystick support that should work on all BSD flavors.
Sam Lantinga <slouken@libsdl.org>
parents:
378
diff
changeset
|
1988 #if defined(HAVE_USBHID_H) |
bc1401311390
Wilbern Cobb submitted a fix for building BSD joystick support that should work on all BSD flavors.
Sam Lantinga <slouken@libsdl.org>
parents:
378
diff
changeset
|
1989 #include <usbhid.h> |
bc1401311390
Wilbern Cobb submitted a fix for building BSD joystick support that should work on all BSD flavors.
Sam Lantinga <slouken@libsdl.org>
parents:
378
diff
changeset
|
1990 #elif defined(HAVE_LIBUSB_H) |
bc1401311390
Wilbern Cobb submitted a fix for building BSD joystick support that should work on all BSD flavors.
Sam Lantinga <slouken@libsdl.org>
parents:
378
diff
changeset
|
1991 #include <libusb.h> |
bc1401311390
Wilbern Cobb submitted a fix for building BSD joystick support that should work on all BSD flavors.
Sam Lantinga <slouken@libsdl.org>
parents:
378
diff
changeset
|
1992 #elif defined(HAVE_LIBUSBHID_H) |
bc1401311390
Wilbern Cobb submitted a fix for building BSD joystick support that should work on all BSD flavors.
Sam Lantinga <slouken@libsdl.org>
parents:
378
diff
changeset
|
1993 #include <libusbhid.h> |
404
cbb346aca05d
*** empty log message ***
Sam Lantinga <slouken@libsdl.org>
parents:
403
diff
changeset
|
1994 #endif |
381
bc1401311390
Wilbern Cobb submitted a fix for building BSD joystick support that should work on all BSD flavors.
Sam Lantinga <slouken@libsdl.org>
parents:
378
diff
changeset
|
1995 ],[ |
bc1401311390
Wilbern Cobb submitted a fix for building BSD joystick support that should work on all BSD flavors.
Sam Lantinga <slouken@libsdl.org>
parents:
378
diff
changeset
|
1996 struct report_desc *repdesc; |
bc1401311390
Wilbern Cobb submitted a fix for building BSD joystick support that should work on all BSD flavors.
Sam Lantinga <slouken@libsdl.org>
parents:
378
diff
changeset
|
1997 struct usb_ctl_report *repbuf; |
402
7efee6e36f00
*** empty log message ***
Sam Lantinga <slouken@libsdl.org>
parents:
401
diff
changeset
|
1998 hid_kind_t hidkind; |
381
bc1401311390
Wilbern Cobb submitted a fix for building BSD joystick support that should work on all BSD flavors.
Sam Lantinga <slouken@libsdl.org>
parents:
378
diff
changeset
|
1999 ],[ |
bc1401311390
Wilbern Cobb submitted a fix for building BSD joystick support that should work on all BSD flavors.
Sam Lantinga <slouken@libsdl.org>
parents:
378
diff
changeset
|
2000 have_usbhid=yes |
bc1401311390
Wilbern Cobb submitted a fix for building BSD joystick support that should work on all BSD flavors.
Sam Lantinga <slouken@libsdl.org>
parents:
378
diff
changeset
|
2001 ]) |
bc1401311390
Wilbern Cobb submitted a fix for building BSD joystick support that should work on all BSD flavors.
Sam Lantinga <slouken@libsdl.org>
parents:
378
diff
changeset
|
2002 AC_MSG_RESULT($have_usbhid) |
bc1401311390
Wilbern Cobb submitted a fix for building BSD joystick support that should work on all BSD flavors.
Sam Lantinga <slouken@libsdl.org>
parents:
378
diff
changeset
|
2003 |
bc1401311390
Wilbern Cobb submitted a fix for building BSD joystick support that should work on all BSD flavors.
Sam Lantinga <slouken@libsdl.org>
parents:
378
diff
changeset
|
2004 if test x$have_usbhid = xyes; then |
bc1401311390
Wilbern Cobb submitted a fix for building BSD joystick support that should work on all BSD flavors.
Sam Lantinga <slouken@libsdl.org>
parents:
378
diff
changeset
|
2005 AC_MSG_CHECKING(for ucr_data member of usb_ctl_report) |
bc1401311390
Wilbern Cobb submitted a fix for building BSD joystick support that should work on all BSD flavors.
Sam Lantinga <slouken@libsdl.org>
parents:
378
diff
changeset
|
2006 have_usbhid_ucr_data=no |
bc1401311390
Wilbern Cobb submitted a fix for building BSD joystick support that should work on all BSD flavors.
Sam Lantinga <slouken@libsdl.org>
parents:
378
diff
changeset
|
2007 AC_TRY_COMPILE([ |
404
cbb346aca05d
*** empty log message ***
Sam Lantinga <slouken@libsdl.org>
parents:
403
diff
changeset
|
2008 #include <sys/types.h> |
cbb346aca05d
*** empty log message ***
Sam Lantinga <slouken@libsdl.org>
parents:
403
diff
changeset
|
2009 #if defined(HAVE_USB_H) |
cbb346aca05d
*** empty log message ***
Sam Lantinga <slouken@libsdl.org>
parents:
403
diff
changeset
|
2010 #include <usb.h> |
cbb346aca05d
*** empty log message ***
Sam Lantinga <slouken@libsdl.org>
parents:
403
diff
changeset
|
2011 #endif |
1565 | 2012 #ifdef __DragonFly__ |
2013 # include <bus/usb/usb.h> | |
2014 # include <bus/usb/usbhid.h> | |
2015 #else | |
2016 # include <dev/usb/usb.h> | |
2017 # include <dev/usb/usbhid.h> | |
2018 #endif | |
381
bc1401311390
Wilbern Cobb submitted a fix for building BSD joystick support that should work on all BSD flavors.
Sam Lantinga <slouken@libsdl.org>
parents:
378
diff
changeset
|
2019 #if defined(HAVE_USBHID_H) |
bc1401311390
Wilbern Cobb submitted a fix for building BSD joystick support that should work on all BSD flavors.
Sam Lantinga <slouken@libsdl.org>
parents:
378
diff
changeset
|
2020 #include <usbhid.h> |
bc1401311390
Wilbern Cobb submitted a fix for building BSD joystick support that should work on all BSD flavors.
Sam Lantinga <slouken@libsdl.org>
parents:
378
diff
changeset
|
2021 #elif defined(HAVE_LIBUSB_H) |
bc1401311390
Wilbern Cobb submitted a fix for building BSD joystick support that should work on all BSD flavors.
Sam Lantinga <slouken@libsdl.org>
parents:
378
diff
changeset
|
2022 #include <libusb.h> |
bc1401311390
Wilbern Cobb submitted a fix for building BSD joystick support that should work on all BSD flavors.
Sam Lantinga <slouken@libsdl.org>
parents:
378
diff
changeset
|
2023 #elif defined(HAVE_LIBUSBHID_H) |
bc1401311390
Wilbern Cobb submitted a fix for building BSD joystick support that should work on all BSD flavors.
Sam Lantinga <slouken@libsdl.org>
parents:
378
diff
changeset
|
2024 #include <libusbhid.h> |
bc1401311390
Wilbern Cobb submitted a fix for building BSD joystick support that should work on all BSD flavors.
Sam Lantinga <slouken@libsdl.org>
parents:
378
diff
changeset
|
2025 #endif |
bc1401311390
Wilbern Cobb submitted a fix for building BSD joystick support that should work on all BSD flavors.
Sam Lantinga <slouken@libsdl.org>
parents:
378
diff
changeset
|
2026 ],[ |
bc1401311390
Wilbern Cobb submitted a fix for building BSD joystick support that should work on all BSD flavors.
Sam Lantinga <slouken@libsdl.org>
parents:
378
diff
changeset
|
2027 struct usb_ctl_report buf; |
bc1401311390
Wilbern Cobb submitted a fix for building BSD joystick support that should work on all BSD flavors.
Sam Lantinga <slouken@libsdl.org>
parents:
378
diff
changeset
|
2028 if (buf.ucr_data) { } |
bc1401311390
Wilbern Cobb submitted a fix for building BSD joystick support that should work on all BSD flavors.
Sam Lantinga <slouken@libsdl.org>
parents:
378
diff
changeset
|
2029 ],[ |
bc1401311390
Wilbern Cobb submitted a fix for building BSD joystick support that should work on all BSD flavors.
Sam Lantinga <slouken@libsdl.org>
parents:
378
diff
changeset
|
2030 have_usbhid_ucr_data=yes |
bc1401311390
Wilbern Cobb submitted a fix for building BSD joystick support that should work on all BSD flavors.
Sam Lantinga <slouken@libsdl.org>
parents:
378
diff
changeset
|
2031 ]) |
bc1401311390
Wilbern Cobb submitted a fix for building BSD joystick support that should work on all BSD flavors.
Sam Lantinga <slouken@libsdl.org>
parents:
378
diff
changeset
|
2032 if test x$have_usbhid_ucr_data = xyes; then |
1361
19418e4422cb
New configure-based build system. Still work in progress, but much improved
Sam Lantinga <slouken@libsdl.org>
parents:
1354
diff
changeset
|
2033 USB_CFLAGS="$USB_CFLAGS -DUSBHID_UCR_DATA" |
381
bc1401311390
Wilbern Cobb submitted a fix for building BSD joystick support that should work on all BSD flavors.
Sam Lantinga <slouken@libsdl.org>
parents:
378
diff
changeset
|
2034 fi |
bc1401311390
Wilbern Cobb submitted a fix for building BSD joystick support that should work on all BSD flavors.
Sam Lantinga <slouken@libsdl.org>
parents:
378
diff
changeset
|
2035 AC_MSG_RESULT($have_usbhid_ucr_data) |
407
173909e17b7f
API changes on OpenBSD and FreeBSD...
Sam Lantinga <slouken@libsdl.org>
parents:
404
diff
changeset
|
2036 |
1361
19418e4422cb
New configure-based build system. Still work in progress, but much improved
Sam Lantinga <slouken@libsdl.org>
parents:
1354
diff
changeset
|
2037 AC_MSG_CHECKING(for new usbhid API) |
407
173909e17b7f
API changes on OpenBSD and FreeBSD...
Sam Lantinga <slouken@libsdl.org>
parents:
404
diff
changeset
|
2038 have_usbhid_new=no |
173909e17b7f
API changes on OpenBSD and FreeBSD...
Sam Lantinga <slouken@libsdl.org>
parents:
404
diff
changeset
|
2039 AC_TRY_COMPILE([ |
173909e17b7f
API changes on OpenBSD and FreeBSD...
Sam Lantinga <slouken@libsdl.org>
parents:
404
diff
changeset
|
2040 #include <sys/types.h> |
173909e17b7f
API changes on OpenBSD and FreeBSD...
Sam Lantinga <slouken@libsdl.org>
parents:
404
diff
changeset
|
2041 #if defined(HAVE_USB_H) |
173909e17b7f
API changes on OpenBSD and FreeBSD...
Sam Lantinga <slouken@libsdl.org>
parents:
404
diff
changeset
|
2042 #include <usb.h> |
173909e17b7f
API changes on OpenBSD and FreeBSD...
Sam Lantinga <slouken@libsdl.org>
parents:
404
diff
changeset
|
2043 #endif |
3392
efc22582afc5
Only show the dynamic audio libraries if we'll be dynamically loading them
Sam Lantinga <slouken@libsdl.org>
parents:
3391
diff
changeset
|
2044 #ifdef __DragonFly__ |
2158
eff395617ed8
Merged part of NetBSD pkgsrc patch-aj:
Sam Lantinga <slouken@libsdl.org>
parents:
2148
diff
changeset
|
2045 #include <bus/usb/usb.h> |
eff395617ed8
Merged part of NetBSD pkgsrc patch-aj:
Sam Lantinga <slouken@libsdl.org>
parents:
2148
diff
changeset
|
2046 #include <bus/usb/usbhid.h> |
3392
efc22582afc5
Only show the dynamic audio libraries if we'll be dynamically loading them
Sam Lantinga <slouken@libsdl.org>
parents:
3391
diff
changeset
|
2047 #else |
407
173909e17b7f
API changes on OpenBSD and FreeBSD...
Sam Lantinga <slouken@libsdl.org>
parents:
404
diff
changeset
|
2048 #include <dev/usb/usb.h> |
173909e17b7f
API changes on OpenBSD and FreeBSD...
Sam Lantinga <slouken@libsdl.org>
parents:
404
diff
changeset
|
2049 #include <dev/usb/usbhid.h> |
3392
efc22582afc5
Only show the dynamic audio libraries if we'll be dynamically loading them
Sam Lantinga <slouken@libsdl.org>
parents:
3391
diff
changeset
|
2050 #endif |
407
173909e17b7f
API changes on OpenBSD and FreeBSD...
Sam Lantinga <slouken@libsdl.org>
parents:
404
diff
changeset
|
2051 #if defined(HAVE_USBHID_H) |
173909e17b7f
API changes on OpenBSD and FreeBSD...
Sam Lantinga <slouken@libsdl.org>
parents:
404
diff
changeset
|
2052 #include <usbhid.h> |
173909e17b7f
API changes on OpenBSD and FreeBSD...
Sam Lantinga <slouken@libsdl.org>
parents:
404
diff
changeset
|
2053 #elif defined(HAVE_LIBUSB_H) |
173909e17b7f
API changes on OpenBSD and FreeBSD...
Sam Lantinga <slouken@libsdl.org>
parents:
404
diff
changeset
|
2054 #include <libusb.h> |
173909e17b7f
API changes on OpenBSD and FreeBSD...
Sam Lantinga <slouken@libsdl.org>
parents:
404
diff
changeset
|
2055 #elif defined(HAVE_LIBUSBHID_H) |
173909e17b7f
API changes on OpenBSD and FreeBSD...
Sam Lantinga <slouken@libsdl.org>
parents:
404
diff
changeset
|
2056 #include <libusbhid.h> |
173909e17b7f
API changes on OpenBSD and FreeBSD...
Sam Lantinga <slouken@libsdl.org>
parents:
404
diff
changeset
|
2057 #endif |
173909e17b7f
API changes on OpenBSD and FreeBSD...
Sam Lantinga <slouken@libsdl.org>
parents:
404
diff
changeset
|
2058 ],[ |
173909e17b7f
API changes on OpenBSD and FreeBSD...
Sam Lantinga <slouken@libsdl.org>
parents:
404
diff
changeset
|
2059 report_desc_t d; |
1361
19418e4422cb
New configure-based build system. Still work in progress, but much improved
Sam Lantinga <slouken@libsdl.org>
parents:
1354
diff
changeset
|
2060 hid_start_parse(d, 1, 1); |
407
173909e17b7f
API changes on OpenBSD and FreeBSD...
Sam Lantinga <slouken@libsdl.org>
parents:
404
diff
changeset
|
2061 ],[ |
173909e17b7f
API changes on OpenBSD and FreeBSD...
Sam Lantinga <slouken@libsdl.org>
parents:
404
diff
changeset
|
2062 have_usbhid_new=yes |
173909e17b7f
API changes on OpenBSD and FreeBSD...
Sam Lantinga <slouken@libsdl.org>
parents:
404
diff
changeset
|
2063 ]) |
173909e17b7f
API changes on OpenBSD and FreeBSD...
Sam Lantinga <slouken@libsdl.org>
parents:
404
diff
changeset
|
2064 if test x$have_usbhid_new = xyes; then |
1361
19418e4422cb
New configure-based build system. Still work in progress, but much improved
Sam Lantinga <slouken@libsdl.org>
parents:
1354
diff
changeset
|
2065 USB_CFLAGS="$USB_CFLAGS -DUSBHID_NEW" |
407
173909e17b7f
API changes on OpenBSD and FreeBSD...
Sam Lantinga <slouken@libsdl.org>
parents:
404
diff
changeset
|
2066 fi |
173909e17b7f
API changes on OpenBSD and FreeBSD...
Sam Lantinga <slouken@libsdl.org>
parents:
404
diff
changeset
|
2067 AC_MSG_RESULT($have_usbhid_new) |
381
bc1401311390
Wilbern Cobb submitted a fix for building BSD joystick support that should work on all BSD flavors.
Sam Lantinga <slouken@libsdl.org>
parents:
378
diff
changeset
|
2068 |
1565 | 2069 AC_MSG_CHECKING(for struct joystick in machine/joystick.h) |
2070 have_machine_joystick=no | |
2071 AC_TRY_COMPILE([ | |
2072 #include <machine/joystick.h> | |
2073 ],[ | |
2074 struct joystick t; | |
2075 ],[ | |
2076 have_machine_joystick=yes | |
2077 ]) | |
2078 if test x$have_machine_joystick = xyes; then | |
2079 AC_DEFINE(SDL_JOYSTICK_USBHID_MACHINE_JOYSTICK_H) | |
2080 fi | |
2081 AC_MSG_RESULT($have_machine_joystick) | |
2082 | |
1361
19418e4422cb
New configure-based build system. Still work in progress, but much improved
Sam Lantinga <slouken@libsdl.org>
parents:
1354
diff
changeset
|
2083 AC_DEFINE(SDL_JOYSTICK_USBHID) |
19418e4422cb
New configure-based build system. Still work in progress, but much improved
Sam Lantinga <slouken@libsdl.org>
parents:
1354
diff
changeset
|
2084 SOURCES="$SOURCES $srcdir/src/joystick/bsd/*.c" |
1521
9b9212e4810c
CFLAGS are separate from EXTRA_CFLAGS
Sam Lantinga <slouken@libsdl.org>
parents:
1520
diff
changeset
|
2085 EXTRA_CFLAGS="$EXTRA_CFLAGS $USB_CFLAGS" |
9b9212e4810c
CFLAGS are separate from EXTRA_CFLAGS
Sam Lantinga <slouken@libsdl.org>
parents:
1520
diff
changeset
|
2086 EXTRA_LDFLAGS="$EXTRA_LDFLAGS $USB_LIBS" |
1361
19418e4422cb
New configure-based build system. Still work in progress, but much improved
Sam Lantinga <slouken@libsdl.org>
parents:
1354
diff
changeset
|
2087 have_joystick=yes |
381
bc1401311390
Wilbern Cobb submitted a fix for building BSD joystick support that should work on all BSD flavors.
Sam Lantinga <slouken@libsdl.org>
parents:
378
diff
changeset
|
2088 fi |
1361
19418e4422cb
New configure-based build system. Still work in progress, but much improved
Sam Lantinga <slouken@libsdl.org>
parents:
1354
diff
changeset
|
2089 CFLAGS="$save_CFLAGS" |
381
bc1401311390
Wilbern Cobb submitted a fix for building BSD joystick support that should work on all BSD flavors.
Sam Lantinga <slouken@libsdl.org>
parents:
378
diff
changeset
|
2090 fi |
bc1401311390
Wilbern Cobb submitted a fix for building BSD joystick support that should work on all BSD flavors.
Sam Lantinga <slouken@libsdl.org>
parents:
378
diff
changeset
|
2091 } |
bc1401311390
Wilbern Cobb submitted a fix for building BSD joystick support that should work on all BSD flavors.
Sam Lantinga <slouken@libsdl.org>
parents:
378
diff
changeset
|
2092 |
1361
19418e4422cb
New configure-based build system. Still work in progress, but much improved
Sam Lantinga <slouken@libsdl.org>
parents:
1354
diff
changeset
|
2093 dnl Check for clock_gettime() |
19418e4422cb
New configure-based build system. Still work in progress, but much improved
Sam Lantinga <slouken@libsdl.org>
parents:
1354
diff
changeset
|
2094 CheckClockGettime() |
795
275708f2e838
Check for altivec assembly support before trying to use it. :)
Sam Lantinga <slouken@libsdl.org>
parents:
780
diff
changeset
|
2095 { |
1361
19418e4422cb
New configure-based build system. Still work in progress, but much improved
Sam Lantinga <slouken@libsdl.org>
parents:
1354
diff
changeset
|
2096 AC_ARG_ENABLE(clock_gettime, |
1637
9ba366b919c7
Date: Fri, 31 Mar 2006 18:28:55 -0500
Sam Lantinga <slouken@libsdl.org>
parents:
1632
diff
changeset
|
2097 AC_HELP_STRING([--enable-clock_gettime], [use clock_gettime() instead of gettimeofday() on UNIX [[default=no]]]), |
1361
19418e4422cb
New configure-based build system. Still work in progress, but much improved
Sam Lantinga <slouken@libsdl.org>
parents:
1354
diff
changeset
|
2098 , enable_clock_gettime=no) |
19418e4422cb
New configure-based build system. Still work in progress, but much improved
Sam Lantinga <slouken@libsdl.org>
parents:
1354
diff
changeset
|
2099 if test x$enable_clock_gettime = xyes; then |
19418e4422cb
New configure-based build system. Still work in progress, but much improved
Sam Lantinga <slouken@libsdl.org>
parents:
1354
diff
changeset
|
2100 AC_CHECK_LIB(rt, clock_gettime, have_clock_gettime=yes) |
19418e4422cb
New configure-based build system. Still work in progress, but much improved
Sam Lantinga <slouken@libsdl.org>
parents:
1354
diff
changeset
|
2101 if test x$have_clock_gettime = xyes; then |
19418e4422cb
New configure-based build system. Still work in progress, but much improved
Sam Lantinga <slouken@libsdl.org>
parents:
1354
diff
changeset
|
2102 AC_DEFINE(HAVE_CLOCK_GETTIME) |
1521
9b9212e4810c
CFLAGS are separate from EXTRA_CFLAGS
Sam Lantinga <slouken@libsdl.org>
parents:
1520
diff
changeset
|
2103 EXTRA_LDFLAGS="$EXTRA_LDFLAGS -lrt" |
3087
0b6f51c29267
Date: Wed, 4 Mar 2009 15:38:22 +0200
Sam Lantinga <slouken@libsdl.org>
parents:
3085
diff
changeset
|
2104 else |
0b6f51c29267
Date: Wed, 4 Mar 2009 15:38:22 +0200
Sam Lantinga <slouken@libsdl.org>
parents:
3085
diff
changeset
|
2105 AC_CHECK_LIB(c, clock_gettime, have_clock_gettime=yes) |
0b6f51c29267
Date: Wed, 4 Mar 2009 15:38:22 +0200
Sam Lantinga <slouken@libsdl.org>
parents:
3085
diff
changeset
|
2106 if test x$have_clock_gettime = xyes; then |
0b6f51c29267
Date: Wed, 4 Mar 2009 15:38:22 +0200
Sam Lantinga <slouken@libsdl.org>
parents:
3085
diff
changeset
|
2107 AC_DEFINE(HAVE_CLOCK_GETTIME) |
0b6f51c29267
Date: Wed, 4 Mar 2009 15:38:22 +0200
Sam Lantinga <slouken@libsdl.org>
parents:
3085
diff
changeset
|
2108 EXTRA_LDFLAGS="$EXTRA_LDFLAGS" |
0b6f51c29267
Date: Wed, 4 Mar 2009 15:38:22 +0200
Sam Lantinga <slouken@libsdl.org>
parents:
3085
diff
changeset
|
2109 fi |
1175
867f521591e5
Fixed Altivec support on Mac OS X.
Ryan C. Gordon <icculus@icculus.org>
parents:
1174
diff
changeset
|
2110 fi |
795
275708f2e838
Check for altivec assembly support before trying to use it. :)
Sam Lantinga <slouken@libsdl.org>
parents:
780
diff
changeset
|
2111 fi |
275708f2e838
Check for altivec assembly support before trying to use it. :)
Sam Lantinga <slouken@libsdl.org>
parents:
780
diff
changeset
|
2112 } |
275708f2e838
Check for altivec assembly support before trying to use it. :)
Sam Lantinga <slouken@libsdl.org>
parents:
780
diff
changeset
|
2113 |
1062
3e637850c02b
Date: Tue, 22 Mar 2005 23:50:20 +0100
Sam Lantinga <slouken@libsdl.org>
parents:
1047
diff
changeset
|
2114 dnl Check for a valid linux/version.h |
3e637850c02b
Date: Tue, 22 Mar 2005 23:50:20 +0100
Sam Lantinga <slouken@libsdl.org>
parents:
1047
diff
changeset
|
2115 CheckLinuxVersion() |
3e637850c02b
Date: Tue, 22 Mar 2005 23:50:20 +0100
Sam Lantinga <slouken@libsdl.org>
parents:
1047
diff
changeset
|
2116 { |
3e637850c02b
Date: Tue, 22 Mar 2005 23:50:20 +0100
Sam Lantinga <slouken@libsdl.org>
parents:
1047
diff
changeset
|
2117 AC_CHECK_HEADER(linux/version.h, have_linux_version_h=yes) |
3e637850c02b
Date: Tue, 22 Mar 2005 23:50:20 +0100
Sam Lantinga <slouken@libsdl.org>
parents:
1047
diff
changeset
|
2118 if test x$have_linux_version_h = xyes; then |
1521
9b9212e4810c
CFLAGS are separate from EXTRA_CFLAGS
Sam Lantinga <slouken@libsdl.org>
parents:
1520
diff
changeset
|
2119 EXTRA_CFLAGS="$EXTRA_CFLAGS -DHAVE_LINUX_VERSION_H" |
1062
3e637850c02b
Date: Tue, 22 Mar 2005 23:50:20 +0100
Sam Lantinga <slouken@libsdl.org>
parents:
1047
diff
changeset
|
2120 fi |
3e637850c02b
Date: Tue, 22 Mar 2005 23:50:20 +0100
Sam Lantinga <slouken@libsdl.org>
parents:
1047
diff
changeset
|
2121 } |
3e637850c02b
Date: Tue, 22 Mar 2005 23:50:20 +0100
Sam Lantinga <slouken@libsdl.org>
parents:
1047
diff
changeset
|
2122 |
1127
fb8818ee9112
Date: Mon, 22 Aug 2005 04:22:46 -0400
Sam Lantinga <slouken@libsdl.org>
parents:
1062
diff
changeset
|
2123 dnl Check if we want to use RPATH |
fb8818ee9112
Date: Mon, 22 Aug 2005 04:22:46 -0400
Sam Lantinga <slouken@libsdl.org>
parents:
1062
diff
changeset
|
2124 CheckRPATH() |
fb8818ee9112
Date: Mon, 22 Aug 2005 04:22:46 -0400
Sam Lantinga <slouken@libsdl.org>
parents:
1062
diff
changeset
|
2125 { |
fb8818ee9112
Date: Mon, 22 Aug 2005 04:22:46 -0400
Sam Lantinga <slouken@libsdl.org>
parents:
1062
diff
changeset
|
2126 AC_ARG_ENABLE(rpath, |
1637
9ba366b919c7
Date: Fri, 31 Mar 2006 18:28:55 -0500
Sam Lantinga <slouken@libsdl.org>
parents:
1632
diff
changeset
|
2127 AC_HELP_STRING([--enable-rpath], [use an rpath when linking SDL [[default=yes]]]), |
1127
fb8818ee9112
Date: Mon, 22 Aug 2005 04:22:46 -0400
Sam Lantinga <slouken@libsdl.org>
parents:
1062
diff
changeset
|
2128 , enable_rpath=yes) |
fb8818ee9112
Date: Mon, 22 Aug 2005 04:22:46 -0400
Sam Lantinga <slouken@libsdl.org>
parents:
1062
diff
changeset
|
2129 } |
fb8818ee9112
Date: Mon, 22 Aug 2005 04:22:46 -0400
Sam Lantinga <slouken@libsdl.org>
parents:
1062
diff
changeset
|
2130 |
1550 | 2131 dnl Set up the configuration based on the host platform! |
2132 case "$host" in | |
2775
6d7baec32718
We'd never port SDL to Minix... would we? :)
Sam Lantinga <slouken@libsdl.org>
parents:
2763
diff
changeset
|
2133 *-*-linux*|*-*-uclinux*|*-*-gnu*|*-*-k*bsd*-gnu|*-*-bsdi*|*-*-freebsd*|*-*-dragonfly*|*-*-netbsd*|*-*-openbsd*|*-*-sysv5*|*-*-solaris*|*-*-hpux*|*-*-irix*|*-*-aix*|*-*-osf*|*-*-minix*) |
1550 | 2134 case "$host" in |
1361
19418e4422cb
New configure-based build system. Still work in progress, but much improved
Sam Lantinga <slouken@libsdl.org>
parents:
1354
diff
changeset
|
2135 *-*-linux*) ARCH=linux ;; |
1820
133d55b02d51
Date: Thu, 11 May 2006 17:09:17 -0400
Sam Lantinga <slouken@libsdl.org>
parents:
1813
diff
changeset
|
2136 *-*-uclinux*) ARCH=linux ;; |
1361
19418e4422cb
New configure-based build system. Still work in progress, but much improved
Sam Lantinga <slouken@libsdl.org>
parents:
1354
diff
changeset
|
2137 *-*-kfreebsd*-gnu) ARCH=kfreebsd-gnu ;; |
19418e4422cb
New configure-based build system. Still work in progress, but much improved
Sam Lantinga <slouken@libsdl.org>
parents:
1354
diff
changeset
|
2138 *-*-knetbsd*-gnu) ARCH=knetbsd-gnu ;; |
19418e4422cb
New configure-based build system. Still work in progress, but much improved
Sam Lantinga <slouken@libsdl.org>
parents:
1354
diff
changeset
|
2139 *-*-kopenbsd*-gnu) ARCH=kopenbsd-gnu ;; |
19418e4422cb
New configure-based build system. Still work in progress, but much improved
Sam Lantinga <slouken@libsdl.org>
parents:
1354
diff
changeset
|
2140 *-*-gnu*) ARCH=gnu ;; # must be last of the gnu variants |
19418e4422cb
New configure-based build system. Still work in progress, but much improved
Sam Lantinga <slouken@libsdl.org>
parents:
1354
diff
changeset
|
2141 *-*-bsdi*) ARCH=bsdi ;; |
19418e4422cb
New configure-based build system. Still work in progress, but much improved
Sam Lantinga <slouken@libsdl.org>
parents:
1354
diff
changeset
|
2142 *-*-freebsd*) ARCH=freebsd ;; |
1565 | 2143 *-*-dragonfly*) ARCH=freebsd ;; |
1361
19418e4422cb
New configure-based build system. Still work in progress, but much improved
Sam Lantinga <slouken@libsdl.org>
parents:
1354
diff
changeset
|
2144 *-*-netbsd*) ARCH=netbsd ;; |
19418e4422cb
New configure-based build system. Still work in progress, but much improved
Sam Lantinga <slouken@libsdl.org>
parents:
1354
diff
changeset
|
2145 *-*-openbsd*) ARCH=openbsd ;; |
19418e4422cb
New configure-based build system. Still work in progress, but much improved
Sam Lantinga <slouken@libsdl.org>
parents:
1354
diff
changeset
|
2146 *-*-sysv5*) ARCH=sysv5 ;; |
19418e4422cb
New configure-based build system. Still work in progress, but much improved
Sam Lantinga <slouken@libsdl.org>
parents:
1354
diff
changeset
|
2147 *-*-solaris*) ARCH=solaris ;; |
19418e4422cb
New configure-based build system. Still work in progress, but much improved
Sam Lantinga <slouken@libsdl.org>
parents:
1354
diff
changeset
|
2148 *-*-hpux*) ARCH=hpux ;; |
19418e4422cb
New configure-based build system. Still work in progress, but much improved
Sam Lantinga <slouken@libsdl.org>
parents:
1354
diff
changeset
|
2149 *-*-irix*) ARCH=irix ;; |
19418e4422cb
New configure-based build system. Still work in progress, but much improved
Sam Lantinga <slouken@libsdl.org>
parents:
1354
diff
changeset
|
2150 *-*-aix*) ARCH=aix ;; |
19418e4422cb
New configure-based build system. Still work in progress, but much improved
Sam Lantinga <slouken@libsdl.org>
parents:
1354
diff
changeset
|
2151 *-*-osf*) ARCH=osf ;; |
2775
6d7baec32718
We'd never port SDL to Minix... would we? :)
Sam Lantinga <slouken@libsdl.org>
parents:
2763
diff
changeset
|
2152 *-*-minix*) ARCH=minix ;; |
795
275708f2e838
Check for altivec assembly support before trying to use it. :)
Sam Lantinga <slouken@libsdl.org>
parents:
780
diff
changeset
|
2153 esac |
1573
2422ca15ba42
Added support for gcc4's -fvisibility=hidden option.
Ryan C. Gordon <icculus@icculus.org>
parents:
1571
diff
changeset
|
2154 CheckVisibilityHidden |
1
cf2af46e9e2a
Changes since SDL 1.2.0 release
Sam Lantinga <slouken@lokigames.com>
parents:
0
diff
changeset
|
2155 CheckDummyVideo |
68
ac6645260d31
Added an audio driver that writes to disk (thanks Ryan!)
Sam Lantinga <slouken@lokigames.com>
parents:
53
diff
changeset
|
2156 CheckDiskAudio |
1532
30f189cdd82b
Implemented dummy audio driver.
Ryan C. Gordon <icculus@icculus.org>
parents:
1521
diff
changeset
|
2157 CheckDummyAudio |
371
db0cc6034336
Added David Hedbor's Qtopia patches
Sam Lantinga <slouken@libsdl.org>
parents:
360
diff
changeset
|
2158 CheckDLOPEN |
0 | 2159 CheckOSS |
1361
19418e4422cb
New configure-based build system. Still work in progress, but much improved
Sam Lantinga <slouken@libsdl.org>
parents:
1354
diff
changeset
|
2160 CheckDMEDIA |
1438
1f4f09641645
Date: Sun, 26 Feb 2006 11:25:09 +0900
Sam Lantinga <slouken@libsdl.org>
parents:
1402
diff
changeset
|
2161 CheckMME |
0 | 2162 CheckALSA |
2271
60b4c52a7906
Ported PulseAudio target from 1.2 to 1.3 interfaces, and added it to the trunk.
Ryan C. Gordon <icculus@icculus.org>
parents:
2264
diff
changeset
|
2163 CheckPulseAudio |
0 | 2164 CheckARTSC |
2165 CheckESD | |
2166 CheckNAS | |
2167 CheckX11 | |
2168 CheckFBCON | |
167
cb384ef627f6
Added support for DirectFB video on Linux (thanks Denis!)
Sam Lantinga <slouken@libsdl.org>
parents:
166
diff
changeset
|
2169 CheckDirectFB |
2947
fec0db6c44b7
Date: Thu, 01 Jan 2009 21:32:12 +0100
Sam Lantinga <slouken@libsdl.org>
parents:
2857
diff
changeset
|
2170 CheckFusionSound |
3257
94fb40a4a9a7
Merged Martin's code changes from Google Summer of Code 2009
Sam Lantinga <slouken@libsdl.org>
parents:
3243
diff
changeset
|
2171 CheckPS3 |
0 | 2172 CheckSVGA |
1191
2bd4cec0de63
Seperate glX from HAVE_OPENGL, for platforms that have both an X server and
Ryan C. Gordon <icculus@icculus.org>
parents:
1187
diff
changeset
|
2173 CheckOpenGLX11 |
0 | 2174 CheckInputEvents |
1201
718d00094f82
Date: Sat, 10 Dec 2005 18:29:41 +0100
Ryan C. Gordon <icculus@icculus.org>
parents:
1200
diff
changeset
|
2175 CheckTslib |
1361
19418e4422cb
New configure-based build system. Still work in progress, but much improved
Sam Lantinga <slouken@libsdl.org>
parents:
1354
diff
changeset
|
2176 CheckUSBHID |
0 | 2177 CheckPTHREAD |
1361
19418e4422cb
New configure-based build system. Still work in progress, but much improved
Sam Lantinga <slouken@libsdl.org>
parents:
1354
diff
changeset
|
2178 CheckClockGettime |
1062
3e637850c02b
Date: Tue, 22 Mar 2005 23:50:20 +0100
Sam Lantinga <slouken@libsdl.org>
parents:
1047
diff
changeset
|
2179 CheckLinuxVersion |
1127
fb8818ee9112
Date: Mon, 22 Aug 2005 04:22:46 -0400
Sam Lantinga <slouken@libsdl.org>
parents:
1062
diff
changeset
|
2180 CheckRPATH |
1361
19418e4422cb
New configure-based build system. Still work in progress, but much improved
Sam Lantinga <slouken@libsdl.org>
parents:
1354
diff
changeset
|
2181 # Set up files for the audio library |
19418e4422cb
New configure-based build system. Still work in progress, but much improved
Sam Lantinga <slouken@libsdl.org>
parents:
1354
diff
changeset
|
2182 if test x$enable_audio = xyes; then |
19418e4422cb
New configure-based build system. Still work in progress, but much improved
Sam Lantinga <slouken@libsdl.org>
parents:
1354
diff
changeset
|
2183 case $ARCH in |
1565 | 2184 sysv5|solaris|hpux) |
1361
19418e4422cb
New configure-based build system. Still work in progress, but much improved
Sam Lantinga <slouken@libsdl.org>
parents:
1354
diff
changeset
|
2185 AC_DEFINE(SDL_AUDIO_DRIVER_SUNAUDIO) |
19418e4422cb
New configure-based build system. Still work in progress, but much improved
Sam Lantinga <slouken@libsdl.org>
parents:
1354
diff
changeset
|
2186 SOURCES="$SOURCES $srcdir/src/audio/sun/*.c" |
19418e4422cb
New configure-based build system. Still work in progress, but much improved
Sam Lantinga <slouken@libsdl.org>
parents:
1354
diff
changeset
|
2187 have_audio=yes |
19418e4422cb
New configure-based build system. Still work in progress, but much improved
Sam Lantinga <slouken@libsdl.org>
parents:
1354
diff
changeset
|
2188 ;; |
1565 | 2189 netbsd|openbsd) |
1567
12b6d331d82a
Good idea, renaming OpenBSD audio to BSD audio.
Sam Lantinga <slouken@libsdl.org>
parents:
1566
diff
changeset
|
2190 AC_DEFINE(SDL_AUDIO_DRIVER_BSD) |
12b6d331d82a
Good idea, renaming OpenBSD audio to BSD audio.
Sam Lantinga <slouken@libsdl.org>
parents:
1566
diff
changeset
|
2191 SOURCES="$SOURCES $srcdir/src/audio/bsd/*.c" |
1361
19418e4422cb
New configure-based build system. Still work in progress, but much improved
Sam Lantinga <slouken@libsdl.org>
parents:
1354
diff
changeset
|
2192 have_audio=yes |
19418e4422cb
New configure-based build system. Still work in progress, but much improved
Sam Lantinga <slouken@libsdl.org>
parents:
1354
diff
changeset
|
2193 ;; |
19418e4422cb
New configure-based build system. Still work in progress, but much improved
Sam Lantinga <slouken@libsdl.org>
parents:
1354
diff
changeset
|
2194 aix) |
2049
5f6550e5184f
Merged SDL-ryan-multiple-audio-device branch r2803:2871 into the trunk.
Ryan C. Gordon <icculus@icculus.org>
parents:
2040
diff
changeset
|
2195 AC_DEFINE(SDL_AUDIO_DRIVER_PAUDIO) |
1361
19418e4422cb
New configure-based build system. Still work in progress, but much improved
Sam Lantinga <slouken@libsdl.org>
parents:
1354
diff
changeset
|
2196 SOURCES="$SOURCES $srcdir/src/audio/paudio/*.c" |
19418e4422cb
New configure-based build system. Still work in progress, but much improved
Sam Lantinga <slouken@libsdl.org>
parents:
1354
diff
changeset
|
2197 have_audio=yes |
19418e4422cb
New configure-based build system. Still work in progress, but much improved
Sam Lantinga <slouken@libsdl.org>
parents:
1354
diff
changeset
|
2198 ;; |
19418e4422cb
New configure-based build system. Still work in progress, but much improved
Sam Lantinga <slouken@libsdl.org>
parents:
1354
diff
changeset
|
2199 esac |
371
db0cc6034336
Added David Hedbor's Qtopia patches
Sam Lantinga <slouken@libsdl.org>
parents:
360
diff
changeset
|
2200 fi |
3199
3e1bf2b8bd81
This check in updates SDL_atomic.h to reflect the new set of atomic operations in 32 and 64 bit form.
Bob Pendleton <bob@pendleton.com>
parents:
3180
diff
changeset
|
2201 # Set up files for the atomic operations library |
3e1bf2b8bd81
This check in updates SDL_atomic.h to reflect the new set of atomic operations in 32 and 64 bit form.
Bob Pendleton <bob@pendleton.com>
parents:
3180
diff
changeset
|
2202 if test x$enable_atomic = xyes; then |
3e1bf2b8bd81
This check in updates SDL_atomic.h to reflect the new set of atomic operations in 32 and 64 bit form.
Bob Pendleton <bob@pendleton.com>
parents:
3180
diff
changeset
|
2203 case $ARCH in |
3e1bf2b8bd81
This check in updates SDL_atomic.h to reflect the new set of atomic operations in 32 and 64 bit form.
Bob Pendleton <bob@pendleton.com>
parents:
3180
diff
changeset
|
2204 linux) |
3e1bf2b8bd81
This check in updates SDL_atomic.h to reflect the new set of atomic operations in 32 and 64 bit form.
Bob Pendleton <bob@pendleton.com>
parents:
3180
diff
changeset
|
2205 AC_DEFINE(SDL_ATOMIC_LINUX) |
3e1bf2b8bd81
This check in updates SDL_atomic.h to reflect the new set of atomic operations in 32 and 64 bit form.
Bob Pendleton <bob@pendleton.com>
parents:
3180
diff
changeset
|
2206 SOURCES="$SOURCES $srcdir/src/atomic/linux/*.c" |
3e1bf2b8bd81
This check in updates SDL_atomic.h to reflect the new set of atomic operations in 32 and 64 bit form.
Bob Pendleton <bob@pendleton.com>
parents:
3180
diff
changeset
|
2207 have_atomic=yes |
3e1bf2b8bd81
This check in updates SDL_atomic.h to reflect the new set of atomic operations in 32 and 64 bit form.
Bob Pendleton <bob@pendleton.com>
parents:
3180
diff
changeset
|
2208 ;; |
3e1bf2b8bd81
This check in updates SDL_atomic.h to reflect the new set of atomic operations in 32 and 64 bit form.
Bob Pendleton <bob@pendleton.com>
parents:
3180
diff
changeset
|
2209 esac |
3e1bf2b8bd81
This check in updates SDL_atomic.h to reflect the new set of atomic operations in 32 and 64 bit form.
Bob Pendleton <bob@pendleton.com>
parents:
3180
diff
changeset
|
2210 fi |
0 | 2211 # Set up files for the joystick library |
2212 if test x$enable_joystick = xyes; then | |
1361
19418e4422cb
New configure-based build system. Still work in progress, but much improved
Sam Lantinga <slouken@libsdl.org>
parents:
1354
diff
changeset
|
2213 case $ARCH in |
19418e4422cb
New configure-based build system. Still work in progress, but much improved
Sam Lantinga <slouken@libsdl.org>
parents:
1354
diff
changeset
|
2214 linux) |
19418e4422cb
New configure-based build system. Still work in progress, but much improved
Sam Lantinga <slouken@libsdl.org>
parents:
1354
diff
changeset
|
2215 AC_DEFINE(SDL_JOYSTICK_LINUX) |
19418e4422cb
New configure-based build system. Still work in progress, but much improved
Sam Lantinga <slouken@libsdl.org>
parents:
1354
diff
changeset
|
2216 SOURCES="$SOURCES $srcdir/src/joystick/linux/*.c" |
19418e4422cb
New configure-based build system. Still work in progress, but much improved
Sam Lantinga <slouken@libsdl.org>
parents:
1354
diff
changeset
|
2217 have_joystick=yes |
19418e4422cb
New configure-based build system. Still work in progress, but much improved
Sam Lantinga <slouken@libsdl.org>
parents:
1354
diff
changeset
|
2218 ;; |
19418e4422cb
New configure-based build system. Still work in progress, but much improved
Sam Lantinga <slouken@libsdl.org>
parents:
1354
diff
changeset
|
2219 esac |
0 | 2220 fi |
2713
0906692aa6a4
Final merge of Google Summer of Code 2008 work...
Sam Lantinga <slouken@libsdl.org>
parents:
2710
diff
changeset
|
2221 # Set up files for the haptic library |
0906692aa6a4
Final merge of Google Summer of Code 2008 work...
Sam Lantinga <slouken@libsdl.org>
parents:
2710
diff
changeset
|
2222 if test x$enable_haptic = xyes; then |
0906692aa6a4
Final merge of Google Summer of Code 2008 work...
Sam Lantinga <slouken@libsdl.org>
parents:
2710
diff
changeset
|
2223 if test x$use_input_events = xyes; then |
0906692aa6a4
Final merge of Google Summer of Code 2008 work...
Sam Lantinga <slouken@libsdl.org>
parents:
2710
diff
changeset
|
2224 case $ARCH in |
0906692aa6a4
Final merge of Google Summer of Code 2008 work...
Sam Lantinga <slouken@libsdl.org>
parents:
2710
diff
changeset
|
2225 linux) |
0906692aa6a4
Final merge of Google Summer of Code 2008 work...
Sam Lantinga <slouken@libsdl.org>
parents:
2710
diff
changeset
|
2226 AC_DEFINE(SDL_HAPTIC_LINUX) |
0906692aa6a4
Final merge of Google Summer of Code 2008 work...
Sam Lantinga <slouken@libsdl.org>
parents:
2710
diff
changeset
|
2227 SOURCES="$SOURCES $srcdir/src/haptic/linux/*.c" |
0906692aa6a4
Final merge of Google Summer of Code 2008 work...
Sam Lantinga <slouken@libsdl.org>
parents:
2710
diff
changeset
|
2228 have_haptic=yes |
0906692aa6a4
Final merge of Google Summer of Code 2008 work...
Sam Lantinga <slouken@libsdl.org>
parents:
2710
diff
changeset
|
2229 ;; |
0906692aa6a4
Final merge of Google Summer of Code 2008 work...
Sam Lantinga <slouken@libsdl.org>
parents:
2710
diff
changeset
|
2230 esac |
0906692aa6a4
Final merge of Google Summer of Code 2008 work...
Sam Lantinga <slouken@libsdl.org>
parents:
2710
diff
changeset
|
2231 fi |
0906692aa6a4
Final merge of Google Summer of Code 2008 work...
Sam Lantinga <slouken@libsdl.org>
parents:
2710
diff
changeset
|
2232 fi |
3170
b7a48f533966
Initial work on power subsystem for SDL 1.3.
Ryan C. Gordon <icculus@icculus.org>
parents:
3168
diff
changeset
|
2233 # Set up files for the power library |
b7a48f533966
Initial work on power subsystem for SDL 1.3.
Ryan C. Gordon <icculus@icculus.org>
parents:
3168
diff
changeset
|
2234 if test x$enable_power = xyes; then |
b7a48f533966
Initial work on power subsystem for SDL 1.3.
Ryan C. Gordon <icculus@icculus.org>
parents:
3168
diff
changeset
|
2235 case $ARCH in |
b7a48f533966
Initial work on power subsystem for SDL 1.3.
Ryan C. Gordon <icculus@icculus.org>
parents:
3168
diff
changeset
|
2236 linux) |
b7a48f533966
Initial work on power subsystem for SDL 1.3.
Ryan C. Gordon <icculus@icculus.org>
parents:
3168
diff
changeset
|
2237 AC_DEFINE(SDL_POWER_LINUX) |
b7a48f533966
Initial work on power subsystem for SDL 1.3.
Ryan C. Gordon <icculus@icculus.org>
parents:
3168
diff
changeset
|
2238 SOURCES="$SOURCES $srcdir/src/power/linux/*.c" |
b7a48f533966
Initial work on power subsystem for SDL 1.3.
Ryan C. Gordon <icculus@icculus.org>
parents:
3168
diff
changeset
|
2239 have_power=yes |
b7a48f533966
Initial work on power subsystem for SDL 1.3.
Ryan C. Gordon <icculus@icculus.org>
parents:
3168
diff
changeset
|
2240 ;; |
b7a48f533966
Initial work on power subsystem for SDL 1.3.
Ryan C. Gordon <icculus@icculus.org>
parents:
3168
diff
changeset
|
2241 esac |
b7a48f533966
Initial work on power subsystem for SDL 1.3.
Ryan C. Gordon <icculus@icculus.org>
parents:
3168
diff
changeset
|
2242 fi |
0 | 2243 # Set up files for the thread library |
1361
19418e4422cb
New configure-based build system. Still work in progress, but much improved
Sam Lantinga <slouken@libsdl.org>
parents:
1354
diff
changeset
|
2244 if test x$enable_threads = xyes -a x$use_pthreads != xyes -a x$use_pth != xyes -a x$ARCH = xirix; then |
19418e4422cb
New configure-based build system. Still work in progress, but much improved
Sam Lantinga <slouken@libsdl.org>
parents:
1354
diff
changeset
|
2245 AC_DEFINE(SDL_THREAD_SPROC) |
19418e4422cb
New configure-based build system. Still work in progress, but much improved
Sam Lantinga <slouken@libsdl.org>
parents:
1354
diff
changeset
|
2246 SOURCES="$SOURCES $srcdir/src/thread/irix/*.c" |
19418e4422cb
New configure-based build system. Still work in progress, but much improved
Sam Lantinga <slouken@libsdl.org>
parents:
1354
diff
changeset
|
2247 SOURCES="$SOURCES $srcdir/src/thread/generic/SDL_sysmutex.c" |
19418e4422cb
New configure-based build system. Still work in progress, but much improved
Sam Lantinga <slouken@libsdl.org>
parents:
1354
diff
changeset
|
2248 SOURCES="$SOURCES $srcdir/src/thread/generic/SDL_syscond.c" |
19418e4422cb
New configure-based build system. Still work in progress, but much improved
Sam Lantinga <slouken@libsdl.org>
parents:
1354
diff
changeset
|
2249 have_threads=yes |
0 | 2250 fi |
2251 # Set up files for the timer library | |
2252 if test x$enable_timers = xyes; then | |
1361
19418e4422cb
New configure-based build system. Still work in progress, but much improved
Sam Lantinga <slouken@libsdl.org>
parents:
1354
diff
changeset
|
2253 AC_DEFINE(SDL_TIMER_UNIX) |
19418e4422cb
New configure-based build system. Still work in progress, but much improved
Sam Lantinga <slouken@libsdl.org>
parents:
1354
diff
changeset
|
2254 SOURCES="$SOURCES $srcdir/src/timer/unix/*.c" |
19418e4422cb
New configure-based build system. Still work in progress, but much improved
Sam Lantinga <slouken@libsdl.org>
parents:
1354
diff
changeset
|
2255 have_timers=yes |
0 | 2256 fi |
2257 ;; | |
2258 *-*-qnx*) | |
3083
0bc41e0361d3
Date: Mon, 2 Mar 2009 16:27:42 +0200
Sam Lantinga <slouken@libsdl.org>
parents:
3082
diff
changeset
|
2259 |
0bc41e0361d3
Date: Mon, 2 Mar 2009 16:27:42 +0200
Sam Lantinga <slouken@libsdl.org>
parents:
3082
diff
changeset
|
2260 EXTRA_CFLAGS="-I/usr/include $CFLAGS" |
0bc41e0361d3
Date: Mon, 2 Mar 2009 16:27:42 +0200
Sam Lantinga <slouken@libsdl.org>
parents:
3082
diff
changeset
|
2261 EXTRA_LDLAGS="-L/usr/lib $LDFLAGS" |
0bc41e0361d3
Date: Mon, 2 Mar 2009 16:27:42 +0200
Sam Lantinga <slouken@libsdl.org>
parents:
3082
diff
changeset
|
2262 |
0 | 2263 ARCH=qnx |
3083
0bc41e0361d3
Date: Mon, 2 Mar 2009 16:27:42 +0200
Sam Lantinga <slouken@libsdl.org>
parents:
3082
diff
changeset
|
2264 CheckVisibilityHidden |
1
cf2af46e9e2a
Changes since SDL 1.2.0 release
Sam Lantinga <slouken@lokigames.com>
parents:
0
diff
changeset
|
2265 CheckDummyVideo |
68
ac6645260d31
Added an audio driver that writes to disk (thanks Ryan!)
Sam Lantinga <slouken@lokigames.com>
parents:
53
diff
changeset
|
2266 CheckDiskAudio |
1532
30f189cdd82b
Implemented dummy audio driver.
Ryan C. Gordon <icculus@icculus.org>
parents:
1521
diff
changeset
|
2267 CheckDummyAudio |
371
db0cc6034336
Added David Hedbor's Qtopia patches
Sam Lantinga <slouken@libsdl.org>
parents:
360
diff
changeset
|
2268 CheckDLOPEN |
3083
0bc41e0361d3
Date: Mon, 2 Mar 2009 16:27:42 +0200
Sam Lantinga <slouken@libsdl.org>
parents:
3082
diff
changeset
|
2269 CheckPulseAudio |
0bc41e0361d3
Date: Mon, 2 Mar 2009 16:27:42 +0200
Sam Lantinga <slouken@libsdl.org>
parents:
3082
diff
changeset
|
2270 CheckESD |
0 | 2271 CheckNAS |
2272 CheckPHOTON | |
3083
0bc41e0361d3
Date: Mon, 2 Mar 2009 16:27:42 +0200
Sam Lantinga <slouken@libsdl.org>
parents:
3082
diff
changeset
|
2273 CheckQNXGF |
0 | 2274 CheckX11 |
1191
2bd4cec0de63
Seperate glX from HAVE_OPENGL, for platforms that have both an X server and
Ryan C. Gordon <icculus@icculus.org>
parents:
1187
diff
changeset
|
2275 CheckOpenGLX11 |
0 | 2276 CheckPTHREAD |
3083
0bc41e0361d3
Date: Mon, 2 Mar 2009 16:27:42 +0200
Sam Lantinga <slouken@libsdl.org>
parents:
3082
diff
changeset
|
2277 CheckClockGettime |
0bc41e0361d3
Date: Mon, 2 Mar 2009 16:27:42 +0200
Sam Lantinga <slouken@libsdl.org>
parents:
3082
diff
changeset
|
2278 |
0bc41e0361d3
Date: Mon, 2 Mar 2009 16:27:42 +0200
Sam Lantinga <slouken@libsdl.org>
parents:
3082
diff
changeset
|
2279 |
0 | 2280 # Set up files for the audio library |
2281 if test x$enable_audio = xyes; then | |
3099
82e60908fab1
Date: Mon, 23 Mar 2009 09:17:24 +0200
Sam Lantinga <slouken@libsdl.org>
parents:
3097
diff
changeset
|
2282 AC_DEFINE(SDL_AUDIO_DRIVER_QSA) |
82e60908fab1
Date: Mon, 23 Mar 2009 09:17:24 +0200
Sam Lantinga <slouken@libsdl.org>
parents:
3097
diff
changeset
|
2283 SOURCES="$SOURCES $srcdir/src/audio/qsa/*.c" |
1521
9b9212e4810c
CFLAGS are separate from EXTRA_CFLAGS
Sam Lantinga <slouken@libsdl.org>
parents:
1520
diff
changeset
|
2284 EXTRA_LDFLAGS="$EXTRA_LDFLAGS -lasound" |
1361
19418e4422cb
New configure-based build system. Still work in progress, but much improved
Sam Lantinga <slouken@libsdl.org>
parents:
1354
diff
changeset
|
2285 have_audio=yes |
0 | 2286 fi |
2287 # Set up files for the timer library | |
2288 if test x$enable_timers = xyes; then | |
1361
19418e4422cb
New configure-based build system. Still work in progress, but much improved
Sam Lantinga <slouken@libsdl.org>
parents:
1354
diff
changeset
|
2289 AC_DEFINE(SDL_TIMER_UNIX) |
19418e4422cb
New configure-based build system. Still work in progress, but much improved
Sam Lantinga <slouken@libsdl.org>
parents:
1354
diff
changeset
|
2290 SOURCES="$SOURCES $srcdir/src/timer/unix/*.c" |
19418e4422cb
New configure-based build system. Still work in progress, but much improved
Sam Lantinga <slouken@libsdl.org>
parents:
1354
diff
changeset
|
2291 have_timers=yes |
0 | 2292 fi |
3217
26ce0b98f2fb
Support for native and emulated atomic operations has been added.
Mike Gorchak <lestat@i.com.ua>
parents:
3214
diff
changeset
|
2293 # Setup files for the atomic operations |
26ce0b98f2fb
Support for native and emulated atomic operations has been added.
Mike Gorchak <lestat@i.com.ua>
parents:
3214
diff
changeset
|
2294 if test x$enable_atomic = xyes; then |
26ce0b98f2fb
Support for native and emulated atomic operations has been added.
Mike Gorchak <lestat@i.com.ua>
parents:
3214
diff
changeset
|
2295 AC_DEFINE(SDL_ATOMIC_QNX) |
26ce0b98f2fb
Support for native and emulated atomic operations has been added.
Mike Gorchak <lestat@i.com.ua>
parents:
3214
diff
changeset
|
2296 SOURCES="$SOURCES $srcdir/src/atomic/qnx/*.c" |
26ce0b98f2fb
Support for native and emulated atomic operations has been added.
Mike Gorchak <lestat@i.com.ua>
parents:
3214
diff
changeset
|
2297 have_atomic=yes |
26ce0b98f2fb
Support for native and emulated atomic operations has been added.
Mike Gorchak <lestat@i.com.ua>
parents:
3214
diff
changeset
|
2298 fi |
3083
0bc41e0361d3
Date: Mon, 2 Mar 2009 16:27:42 +0200
Sam Lantinga <slouken@libsdl.org>
parents:
3082
diff
changeset
|
2299 # Set up dummy files for the joystick for now |
0bc41e0361d3
Date: Mon, 2 Mar 2009 16:27:42 +0200
Sam Lantinga <slouken@libsdl.org>
parents:
3082
diff
changeset
|
2300 if test x$enable_joystick = xyes; then |
0bc41e0361d3
Date: Mon, 2 Mar 2009 16:27:42 +0200
Sam Lantinga <slouken@libsdl.org>
parents:
3082
diff
changeset
|
2301 AC_DEFINE(SDL_JOYSTICK_DUMMY) |
0bc41e0361d3
Date: Mon, 2 Mar 2009 16:27:42 +0200
Sam Lantinga <slouken@libsdl.org>
parents:
3082
diff
changeset
|
2302 SOURCES="$SOURCES $srcdir/src/joystick/dummy/*.c" |
0bc41e0361d3
Date: Mon, 2 Mar 2009 16:27:42 +0200
Sam Lantinga <slouken@libsdl.org>
parents:
3082
diff
changeset
|
2303 have_joystick=yes |
0bc41e0361d3
Date: Mon, 2 Mar 2009 16:27:42 +0200
Sam Lantinga <slouken@libsdl.org>
parents:
3082
diff
changeset
|
2304 fi |
0bc41e0361d3
Date: Mon, 2 Mar 2009 16:27:42 +0200
Sam Lantinga <slouken@libsdl.org>
parents:
3082
diff
changeset
|
2305 # Set up dummy files for the haptic for now |
0bc41e0361d3
Date: Mon, 2 Mar 2009 16:27:42 +0200
Sam Lantinga <slouken@libsdl.org>
parents:
3082
diff
changeset
|
2306 if test x$enable_haptic = xyes; then |
0bc41e0361d3
Date: Mon, 2 Mar 2009 16:27:42 +0200
Sam Lantinga <slouken@libsdl.org>
parents:
3082
diff
changeset
|
2307 AC_DEFINE(SDL_HAPTIC_DUMMY) |
0bc41e0361d3
Date: Mon, 2 Mar 2009 16:27:42 +0200
Sam Lantinga <slouken@libsdl.org>
parents:
3082
diff
changeset
|
2308 SOURCES="$SOURCES $srcdir/src/haptic/dummy/*.c" |
0bc41e0361d3
Date: Mon, 2 Mar 2009 16:27:42 +0200
Sam Lantinga <slouken@libsdl.org>
parents:
3082
diff
changeset
|
2309 have_haptic=yes |
0bc41e0361d3
Date: Mon, 2 Mar 2009 16:27:42 +0200
Sam Lantinga <slouken@libsdl.org>
parents:
3082
diff
changeset
|
2310 fi |
0 | 2311 ;; |
3097
0d12e8f1de3c
Date: Thu, 05 Feb 2009 18:07:35 +0100
Sam Lantinga <slouken@libsdl.org>
parents:
3087
diff
changeset
|
2312 *-wince* | *-mingw32ce) |
0d12e8f1de3c
Date: Thu, 05 Feb 2009 18:07:35 +0100
Sam Lantinga <slouken@libsdl.org>
parents:
3087
diff
changeset
|
2313 ARCH=win32 |
0d12e8f1de3c
Date: Thu, 05 Feb 2009 18:07:35 +0100
Sam Lantinga <slouken@libsdl.org>
parents:
3087
diff
changeset
|
2314 CheckDummyVideo |
0d12e8f1de3c
Date: Thu, 05 Feb 2009 18:07:35 +0100
Sam Lantinga <slouken@libsdl.org>
parents:
3087
diff
changeset
|
2315 CheckDiskAudio |
0d12e8f1de3c
Date: Thu, 05 Feb 2009 18:07:35 +0100
Sam Lantinga <slouken@libsdl.org>
parents:
3087
diff
changeset
|
2316 CheckDummyAudio |
0d12e8f1de3c
Date: Thu, 05 Feb 2009 18:07:35 +0100
Sam Lantinga <slouken@libsdl.org>
parents:
3087
diff
changeset
|
2317 CheckWIN32 |
0d12e8f1de3c
Date: Thu, 05 Feb 2009 18:07:35 +0100
Sam Lantinga <slouken@libsdl.org>
parents:
3087
diff
changeset
|
2318 if test x$enable_video = xyes; then |
0d12e8f1de3c
Date: Thu, 05 Feb 2009 18:07:35 +0100
Sam Lantinga <slouken@libsdl.org>
parents:
3087
diff
changeset
|
2319 AC_DEFINE(SDL_VIDEO_DRIVER_WIN32) |
0d12e8f1de3c
Date: Thu, 05 Feb 2009 18:07:35 +0100
Sam Lantinga <slouken@libsdl.org>
parents:
3087
diff
changeset
|
2320 SOURCES="$SOURCES $srcdir/src/video/win32/*.c" |
0d12e8f1de3c
Date: Thu, 05 Feb 2009 18:07:35 +0100
Sam Lantinga <slouken@libsdl.org>
parents:
3087
diff
changeset
|
2321 have_video=yes |
0d12e8f1de3c
Date: Thu, 05 Feb 2009 18:07:35 +0100
Sam Lantinga <slouken@libsdl.org>
parents:
3087
diff
changeset
|
2322 AC_ARG_ENABLE(render-gdi, |
0d12e8f1de3c
Date: Thu, 05 Feb 2009 18:07:35 +0100
Sam Lantinga <slouken@libsdl.org>
parents:
3087
diff
changeset
|
2323 AC_HELP_STRING([--enable-render-gdi], [enable the GDI render driver [[default=yes]]]), |
0d12e8f1de3c
Date: Thu, 05 Feb 2009 18:07:35 +0100
Sam Lantinga <slouken@libsdl.org>
parents:
3087
diff
changeset
|
2324 , enable_render_gdi=yes) |
0d12e8f1de3c
Date: Thu, 05 Feb 2009 18:07:35 +0100
Sam Lantinga <slouken@libsdl.org>
parents:
3087
diff
changeset
|
2325 if test x$enable_render_gdi = xyes; then |
0d12e8f1de3c
Date: Thu, 05 Feb 2009 18:07:35 +0100
Sam Lantinga <slouken@libsdl.org>
parents:
3087
diff
changeset
|
2326 AC_DEFINE(SDL_VIDEO_RENDER_GDI) |
0d12e8f1de3c
Date: Thu, 05 Feb 2009 18:07:35 +0100
Sam Lantinga <slouken@libsdl.org>
parents:
3087
diff
changeset
|
2327 fi |
3168 | 2328 AC_ARG_ENABLE(render-gapi, |
2329 AC_HELP_STRING([--enable-render-gapi], [enable the GAPI/RAWFRAMEBUFFER render driver [[default=yes]]]), | |
2330 , enable_render_gapi=yes) | |
2331 if test x$enable_render_gapi = xyes -a x$have_wince = xyes; then | |
2332 AC_DEFINE(SDL_VIDEO_RENDER_GAPI) | |
2333 fi | |
2334 AC_ARG_ENABLE(render-ddraw, | |
2335 AC_HELP_STRING([--enable-render-ddraw], [enable the Mobile DirectDraw render driver [[default=yes]]]), | |
2336 , enable_render_ddraw=yes) | |
2337 if test x$enable_render_ddraw = xyes -a x$have_wince = xyes -a x$have_ddraw = xyes; then | |
2338 AC_DEFINE(SDL_VIDEO_RENDER_DDRAW) | |
2339 fi | |
3097
0d12e8f1de3c
Date: Thu, 05 Feb 2009 18:07:35 +0100
Sam Lantinga <slouken@libsdl.org>
parents:
3087
diff
changeset
|
2340 AC_ARG_ENABLE(render-d3d, |
0d12e8f1de3c
Date: Thu, 05 Feb 2009 18:07:35 +0100
Sam Lantinga <slouken@libsdl.org>
parents:
3087
diff
changeset
|
2341 AC_HELP_STRING([--enable-render-d3d], [enable the Direct3D render driver [[default=yes]]]), |
0d12e8f1de3c
Date: Thu, 05 Feb 2009 18:07:35 +0100
Sam Lantinga <slouken@libsdl.org>
parents:
3087
diff
changeset
|
2342 , enable_render_d3d=yes) |
0d12e8f1de3c
Date: Thu, 05 Feb 2009 18:07:35 +0100
Sam Lantinga <slouken@libsdl.org>
parents:
3087
diff
changeset
|
2343 enable_render_d3d=no |
0d12e8f1de3c
Date: Thu, 05 Feb 2009 18:07:35 +0100
Sam Lantinga <slouken@libsdl.org>
parents:
3087
diff
changeset
|
2344 if test x$enable_render_d3d = xyes -a x$have_d3d = xyes; then |
0d12e8f1de3c
Date: Thu, 05 Feb 2009 18:07:35 +0100
Sam Lantinga <slouken@libsdl.org>
parents:
3087
diff
changeset
|
2345 AC_DEFINE(SDL_VIDEO_RENDER_D3D) |
0d12e8f1de3c
Date: Thu, 05 Feb 2009 18:07:35 +0100
Sam Lantinga <slouken@libsdl.org>
parents:
3087
diff
changeset
|
2346 fi |
0d12e8f1de3c
Date: Thu, 05 Feb 2009 18:07:35 +0100
Sam Lantinga <slouken@libsdl.org>
parents:
3087
diff
changeset
|
2347 fi |
0d12e8f1de3c
Date: Thu, 05 Feb 2009 18:07:35 +0100
Sam Lantinga <slouken@libsdl.org>
parents:
3087
diff
changeset
|
2348 # Set up files for the audio library |
0d12e8f1de3c
Date: Thu, 05 Feb 2009 18:07:35 +0100
Sam Lantinga <slouken@libsdl.org>
parents:
3087
diff
changeset
|
2349 if test x$enable_audio = xyes; then |
0d12e8f1de3c
Date: Thu, 05 Feb 2009 18:07:35 +0100
Sam Lantinga <slouken@libsdl.org>
parents:
3087
diff
changeset
|
2350 AC_DEFINE(SDL_AUDIO_DRIVER_WINWAVEOUT) |
0d12e8f1de3c
Date: Thu, 05 Feb 2009 18:07:35 +0100
Sam Lantinga <slouken@libsdl.org>
parents:
3087
diff
changeset
|
2351 SOURCES="$SOURCES $srcdir/src/audio/windib/*.c" |
0d12e8f1de3c
Date: Thu, 05 Feb 2009 18:07:35 +0100
Sam Lantinga <slouken@libsdl.org>
parents:
3087
diff
changeset
|
2352 if test x$have_dsound = xyes; then |
0d12e8f1de3c
Date: Thu, 05 Feb 2009 18:07:35 +0100
Sam Lantinga <slouken@libsdl.org>
parents:
3087
diff
changeset
|
2353 AC_DEFINE(SDL_AUDIO_DRIVER_DSOUND) |
0d12e8f1de3c
Date: Thu, 05 Feb 2009 18:07:35 +0100
Sam Lantinga <slouken@libsdl.org>
parents:
3087
diff
changeset
|
2354 SOURCES="$SOURCES $srcdir/src/audio/windx5/*.c" |
0d12e8f1de3c
Date: Thu, 05 Feb 2009 18:07:35 +0100
Sam Lantinga <slouken@libsdl.org>
parents:
3087
diff
changeset
|
2355 fi |
0d12e8f1de3c
Date: Thu, 05 Feb 2009 18:07:35 +0100
Sam Lantinga <slouken@libsdl.org>
parents:
3087
diff
changeset
|
2356 have_audio=yes |
0d12e8f1de3c
Date: Thu, 05 Feb 2009 18:07:35 +0100
Sam Lantinga <slouken@libsdl.org>
parents:
3087
diff
changeset
|
2357 fi |
0d12e8f1de3c
Date: Thu, 05 Feb 2009 18:07:35 +0100
Sam Lantinga <slouken@libsdl.org>
parents:
3087
diff
changeset
|
2358 # Set up files for the thread library |
0d12e8f1de3c
Date: Thu, 05 Feb 2009 18:07:35 +0100
Sam Lantinga <slouken@libsdl.org>
parents:
3087
diff
changeset
|
2359 if test x$enable_threads = xyes; then |
0d12e8f1de3c
Date: Thu, 05 Feb 2009 18:07:35 +0100
Sam Lantinga <slouken@libsdl.org>
parents:
3087
diff
changeset
|
2360 AC_DEFINE(SDL_THREAD_WIN32) |
0d12e8f1de3c
Date: Thu, 05 Feb 2009 18:07:35 +0100
Sam Lantinga <slouken@libsdl.org>
parents:
3087
diff
changeset
|
2361 SOURCES="$SOURCES $srcdir/src/thread/win32/SDL_sysmutex.c" |
0d12e8f1de3c
Date: Thu, 05 Feb 2009 18:07:35 +0100
Sam Lantinga <slouken@libsdl.org>
parents:
3087
diff
changeset
|
2362 SOURCES="$SOURCES $srcdir/src/thread/win32/SDL_syssem.c" |
0d12e8f1de3c
Date: Thu, 05 Feb 2009 18:07:35 +0100
Sam Lantinga <slouken@libsdl.org>
parents:
3087
diff
changeset
|
2363 SOURCES="$SOURCES $srcdir/src/thread/win32/SDL_systhread.c" |
0d12e8f1de3c
Date: Thu, 05 Feb 2009 18:07:35 +0100
Sam Lantinga <slouken@libsdl.org>
parents:
3087
diff
changeset
|
2364 SOURCES="$SOURCES $srcdir/src/thread/generic/SDL_syscond.c" |
0d12e8f1de3c
Date: Thu, 05 Feb 2009 18:07:35 +0100
Sam Lantinga <slouken@libsdl.org>
parents:
3087
diff
changeset
|
2365 have_threads=yes |
0d12e8f1de3c
Date: Thu, 05 Feb 2009 18:07:35 +0100
Sam Lantinga <slouken@libsdl.org>
parents:
3087
diff
changeset
|
2366 fi |
0d12e8f1de3c
Date: Thu, 05 Feb 2009 18:07:35 +0100
Sam Lantinga <slouken@libsdl.org>
parents:
3087
diff
changeset
|
2367 # Set up files for the timer library |
0d12e8f1de3c
Date: Thu, 05 Feb 2009 18:07:35 +0100
Sam Lantinga <slouken@libsdl.org>
parents:
3087
diff
changeset
|
2368 if test x$enable_timers = xyes; then |
0d12e8f1de3c
Date: Thu, 05 Feb 2009 18:07:35 +0100
Sam Lantinga <slouken@libsdl.org>
parents:
3087
diff
changeset
|
2369 AC_DEFINE(SDL_TIMER_WINCE) |
0d12e8f1de3c
Date: Thu, 05 Feb 2009 18:07:35 +0100
Sam Lantinga <slouken@libsdl.org>
parents:
3087
diff
changeset
|
2370 SOURCES="$SOURCES $srcdir/src/timer/wince/*.c" |
0d12e8f1de3c
Date: Thu, 05 Feb 2009 18:07:35 +0100
Sam Lantinga <slouken@libsdl.org>
parents:
3087
diff
changeset
|
2371 have_timers=yes |
0d12e8f1de3c
Date: Thu, 05 Feb 2009 18:07:35 +0100
Sam Lantinga <slouken@libsdl.org>
parents:
3087
diff
changeset
|
2372 fi |
0d12e8f1de3c
Date: Thu, 05 Feb 2009 18:07:35 +0100
Sam Lantinga <slouken@libsdl.org>
parents:
3087
diff
changeset
|
2373 # Set up files for the shared object loading library |
0d12e8f1de3c
Date: Thu, 05 Feb 2009 18:07:35 +0100
Sam Lantinga <slouken@libsdl.org>
parents:
3087
diff
changeset
|
2374 if test x$enable_loadso = xyes; then |
0d12e8f1de3c
Date: Thu, 05 Feb 2009 18:07:35 +0100
Sam Lantinga <slouken@libsdl.org>
parents:
3087
diff
changeset
|
2375 AC_DEFINE(SDL_LOADSO_WIN32) |
0d12e8f1de3c
Date: Thu, 05 Feb 2009 18:07:35 +0100
Sam Lantinga <slouken@libsdl.org>
parents:
3087
diff
changeset
|
2376 SOURCES="$SOURCES $srcdir/src/loadso/win32/*.c" |
0d12e8f1de3c
Date: Thu, 05 Feb 2009 18:07:35 +0100
Sam Lantinga <slouken@libsdl.org>
parents:
3087
diff
changeset
|
2377 have_loadso=yes |
0d12e8f1de3c
Date: Thu, 05 Feb 2009 18:07:35 +0100
Sam Lantinga <slouken@libsdl.org>
parents:
3087
diff
changeset
|
2378 fi |
3170
b7a48f533966
Initial work on power subsystem for SDL 1.3.
Ryan C. Gordon <icculus@icculus.org>
parents:
3168
diff
changeset
|
2379 # Set up files for the system power library |
b7a48f533966
Initial work on power subsystem for SDL 1.3.
Ryan C. Gordon <icculus@icculus.org>
parents:
3168
diff
changeset
|
2380 if test x$enable_power = xyes; then |
b7a48f533966
Initial work on power subsystem for SDL 1.3.
Ryan C. Gordon <icculus@icculus.org>
parents:
3168
diff
changeset
|
2381 AC_DEFINE(SDL_POWER_WINDOWS) |
b7a48f533966
Initial work on power subsystem for SDL 1.3.
Ryan C. Gordon <icculus@icculus.org>
parents:
3168
diff
changeset
|
2382 SOURCES="$SOURCES $srcdir/src/power/windows/*.c" |
b7a48f533966
Initial work on power subsystem for SDL 1.3.
Ryan C. Gordon <icculus@icculus.org>
parents:
3168
diff
changeset
|
2383 have_power=yes |
b7a48f533966
Initial work on power subsystem for SDL 1.3.
Ryan C. Gordon <icculus@icculus.org>
parents:
3168
diff
changeset
|
2384 fi |
3097
0d12e8f1de3c
Date: Thu, 05 Feb 2009 18:07:35 +0100
Sam Lantinga <slouken@libsdl.org>
parents:
3087
diff
changeset
|
2385 # Set up the system libraries we need |
0d12e8f1de3c
Date: Thu, 05 Feb 2009 18:07:35 +0100
Sam Lantinga <slouken@libsdl.org>
parents:
3087
diff
changeset
|
2386 EXTRA_LDFLAGS="$EXTRA_LDFLAGS -lcoredll -lcommctrl -lmmtimer" |
0d12e8f1de3c
Date: Thu, 05 Feb 2009 18:07:35 +0100
Sam Lantinga <slouken@libsdl.org>
parents:
3087
diff
changeset
|
2387 # The Win32 platform requires special setup |
0d12e8f1de3c
Date: Thu, 05 Feb 2009 18:07:35 +0100
Sam Lantinga <slouken@libsdl.org>
parents:
3087
diff
changeset
|
2388 SDLMAIN_SOURCES="$srcdir/src/main/win32/*.c" |
0d12e8f1de3c
Date: Thu, 05 Feb 2009 18:07:35 +0100
Sam Lantinga <slouken@libsdl.org>
parents:
3087
diff
changeset
|
2389 SDL_CFLAGS="$SDL_CFLAGS -Dmain=SDL_main -D_WIN32_WCE=0x420" |
0d12e8f1de3c
Date: Thu, 05 Feb 2009 18:07:35 +0100
Sam Lantinga <slouken@libsdl.org>
parents:
3087
diff
changeset
|
2390 SDL_LIBS="-lSDLmain $SDL_LIBS" |
0d12e8f1de3c
Date: Thu, 05 Feb 2009 18:07:35 +0100
Sam Lantinga <slouken@libsdl.org>
parents:
3087
diff
changeset
|
2391 ;; |
0 | 2392 *-*-cygwin* | *-*-mingw32*) |
2393 ARCH=win32 | |
1550 | 2394 if test "$build" != "$host"; then # cross-compiling |
0 | 2395 # Default cross-compile location |
2148
b93d0b4625f6
I'm not sure this is a good idea yet, since it adds a unicows.dll redistribution requirement on windows, but adding unicows allows SDL 1.3 to run on Windows 98.
Sam Lantinga <slouken@libsdl.org>
parents:
2139
diff
changeset
|
2396 ac_default_prefix=/usr/local/cross-tools/i386-mingw32 |
0 | 2397 else |
2398 # Look for the location of the tools and install there | |
750
ce48d14ca5bf
Date: Mon, 24 Nov 2003 20:11:31 +0000
Sam Lantinga <slouken@libsdl.org>
parents:
742
diff
changeset
|
2399 if test "$BUILD_PREFIX" != ""; then |
1
cf2af46e9e2a
Changes since SDL 1.2.0 release
Sam Lantinga <slouken@lokigames.com>
parents:
0
diff
changeset
|
2400 ac_default_prefix=$BUILD_PREFIX |
cf2af46e9e2a
Changes since SDL 1.2.0 release
Sam Lantinga <slouken@lokigames.com>
parents:
0
diff
changeset
|
2401 fi |
0 | 2402 fi |
1
cf2af46e9e2a
Changes since SDL 1.2.0 release
Sam Lantinga <slouken@lokigames.com>
parents:
0
diff
changeset
|
2403 CheckDummyVideo |
68
ac6645260d31
Added an audio driver that writes to disk (thanks Ryan!)
Sam Lantinga <slouken@lokigames.com>
parents:
53
diff
changeset
|
2404 CheckDiskAudio |
1532
30f189cdd82b
Implemented dummy audio driver.
Ryan C. Gordon <icculus@icculus.org>
parents:
1521
diff
changeset
|
2405 CheckDummyAudio |
0 | 2406 CheckWIN32 |
1361
19418e4422cb
New configure-based build system. Still work in progress, but much improved
Sam Lantinga <slouken@libsdl.org>
parents:
1354
diff
changeset
|
2407 CheckWIN32GL |
0 | 2408 CheckDIRECTX |
1895
c121d94672cb
SDL 1.2 is moving to a branch, and SDL 1.3 is becoming the head.
Sam Lantinga <slouken@libsdl.org>
parents:
1891
diff
changeset
|
2409 # Set up files for the video library |
c121d94672cb
SDL 1.2 is moving to a branch, and SDL 1.3 is becoming the head.
Sam Lantinga <slouken@libsdl.org>
parents:
1891
diff
changeset
|
2410 if test x$enable_video = xyes; then |
c121d94672cb
SDL 1.2 is moving to a branch, and SDL 1.3 is becoming the head.
Sam Lantinga <slouken@libsdl.org>
parents:
1891
diff
changeset
|
2411 AC_DEFINE(SDL_VIDEO_DRIVER_WIN32) |
c121d94672cb
SDL 1.2 is moving to a branch, and SDL 1.3 is becoming the head.
Sam Lantinga <slouken@libsdl.org>
parents:
1891
diff
changeset
|
2412 SOURCES="$SOURCES $srcdir/src/video/win32/*.c" |
c121d94672cb
SDL 1.2 is moving to a branch, and SDL 1.3 is becoming the head.
Sam Lantinga <slouken@libsdl.org>
parents:
1891
diff
changeset
|
2413 have_video=yes |
c121d94672cb
SDL 1.2 is moving to a branch, and SDL 1.3 is becoming the head.
Sam Lantinga <slouken@libsdl.org>
parents:
1891
diff
changeset
|
2414 AC_ARG_ENABLE(render-gdi, |
c121d94672cb
SDL 1.2 is moving to a branch, and SDL 1.3 is becoming the head.
Sam Lantinga <slouken@libsdl.org>
parents:
1891
diff
changeset
|
2415 AC_HELP_STRING([--enable-render-gdi], [enable the GDI render driver [[default=yes]]]), |
c121d94672cb
SDL 1.2 is moving to a branch, and SDL 1.3 is becoming the head.
Sam Lantinga <slouken@libsdl.org>
parents:
1891
diff
changeset
|
2416 , enable_render_gdi=yes) |
c121d94672cb
SDL 1.2 is moving to a branch, and SDL 1.3 is becoming the head.
Sam Lantinga <slouken@libsdl.org>
parents:
1891
diff
changeset
|
2417 if test x$enable_render_gdi = xyes; then |
c121d94672cb
SDL 1.2 is moving to a branch, and SDL 1.3 is becoming the head.
Sam Lantinga <slouken@libsdl.org>
parents:
1891
diff
changeset
|
2418 AC_DEFINE(SDL_VIDEO_RENDER_GDI) |
c121d94672cb
SDL 1.2 is moving to a branch, and SDL 1.3 is becoming the head.
Sam Lantinga <slouken@libsdl.org>
parents:
1891
diff
changeset
|
2419 fi |
c121d94672cb
SDL 1.2 is moving to a branch, and SDL 1.3 is becoming the head.
Sam Lantinga <slouken@libsdl.org>
parents:
1891
diff
changeset
|
2420 AC_ARG_ENABLE(render-d3d, |
c121d94672cb
SDL 1.2 is moving to a branch, and SDL 1.3 is becoming the head.
Sam Lantinga <slouken@libsdl.org>
parents:
1891
diff
changeset
|
2421 AC_HELP_STRING([--enable-render-d3d], [enable the Direct3D render driver [[default=yes]]]), |
c121d94672cb
SDL 1.2 is moving to a branch, and SDL 1.3 is becoming the head.
Sam Lantinga <slouken@libsdl.org>
parents:
1891
diff
changeset
|
2422 , enable_render_d3d=yes) |
c121d94672cb
SDL 1.2 is moving to a branch, and SDL 1.3 is becoming the head.
Sam Lantinga <slouken@libsdl.org>
parents:
1891
diff
changeset
|
2423 if test x$enable_render_d3d = xyes -a x$have_d3d = xyes; then |
c121d94672cb
SDL 1.2 is moving to a branch, and SDL 1.3 is becoming the head.
Sam Lantinga <slouken@libsdl.org>
parents:
1891
diff
changeset
|
2424 AC_DEFINE(SDL_VIDEO_RENDER_D3D) |
c121d94672cb
SDL 1.2 is moving to a branch, and SDL 1.3 is becoming the head.
Sam Lantinga <slouken@libsdl.org>
parents:
1891
diff
changeset
|
2425 fi |
c121d94672cb
SDL 1.2 is moving to a branch, and SDL 1.3 is becoming the head.
Sam Lantinga <slouken@libsdl.org>
parents:
1891
diff
changeset
|
2426 fi |
0 | 2427 # Set up files for the audio library |
2428 if test x$enable_audio = xyes; then | |
2070
dbfa1ebd73b0
Fixed building of Windows waveout audio.
Ryan C. Gordon <icculus@icculus.org>
parents:
2066
diff
changeset
|
2429 AC_DEFINE(SDL_AUDIO_DRIVER_WINWAVEOUT) |
1361
19418e4422cb
New configure-based build system. Still work in progress, but much improved
Sam Lantinga <slouken@libsdl.org>
parents:
1354
diff
changeset
|
2430 SOURCES="$SOURCES $srcdir/src/audio/windib/*.c" |
1895
c121d94672cb
SDL 1.2 is moving to a branch, and SDL 1.3 is becoming the head.
Sam Lantinga <slouken@libsdl.org>
parents:
1891
diff
changeset
|
2431 if test x$have_dsound = xyes; then |
1361
19418e4422cb
New configure-based build system. Still work in progress, but much improved
Sam Lantinga <slouken@libsdl.org>
parents:
1354
diff
changeset
|
2432 AC_DEFINE(SDL_AUDIO_DRIVER_DSOUND) |
19418e4422cb
New configure-based build system. Still work in progress, but much improved
Sam Lantinga <slouken@libsdl.org>
parents:
1354
diff
changeset
|
2433 SOURCES="$SOURCES $srcdir/src/audio/windx5/*.c" |
0 | 2434 fi |
1361
19418e4422cb
New configure-based build system. Still work in progress, but much improved
Sam Lantinga <slouken@libsdl.org>
parents:
1354
diff
changeset
|
2435 have_audio=yes |
0 | 2436 fi |
3307
6fb7f38d20b6
Changed to include SDL_atomic.c in the windows version of SDL 1.3
Bob Pendleton <bob@pendleton.com>
parents:
3301
diff
changeset
|
2437 # Set up files for the atomic operations library |
6fb7f38d20b6
Changed to include SDL_atomic.c in the windows version of SDL 1.3
Bob Pendleton <bob@pendleton.com>
parents:
3301
diff
changeset
|
2438 if test x$enable_atomic = xyes; then |
6fb7f38d20b6
Changed to include SDL_atomic.c in the windows version of SDL 1.3
Bob Pendleton <bob@pendleton.com>
parents:
3301
diff
changeset
|
2439 AC_DEFINE(SDL_ATOMIC_WIN32) |
6fb7f38d20b6
Changed to include SDL_atomic.c in the windows version of SDL 1.3
Bob Pendleton <bob@pendleton.com>
parents:
3301
diff
changeset
|
2440 SOURCES="$SOURCES $srcdir/src/atomic/win32/*.c" |
6fb7f38d20b6
Changed to include SDL_atomic.c in the windows version of SDL 1.3
Bob Pendleton <bob@pendleton.com>
parents:
3301
diff
changeset
|
2441 have_atomic=yes |
6fb7f38d20b6
Changed to include SDL_atomic.c in the windows version of SDL 1.3
Bob Pendleton <bob@pendleton.com>
parents:
3301
diff
changeset
|
2442 fi |
0 | 2443 # Set up files for the joystick library |
2444 if test x$enable_joystick = xyes; then | |
1895
c121d94672cb
SDL 1.2 is moving to a branch, and SDL 1.3 is becoming the head.
Sam Lantinga <slouken@libsdl.org>
parents:
1891
diff
changeset
|
2445 if test x$have_dinput = xyes; then |
c121d94672cb
SDL 1.2 is moving to a branch, and SDL 1.3 is becoming the head.
Sam Lantinga <slouken@libsdl.org>
parents:
1891
diff
changeset
|
2446 AC_DEFINE(SDL_JOYSTICK_DINPUT) |
c121d94672cb
SDL 1.2 is moving to a branch, and SDL 1.3 is becoming the head.
Sam Lantinga <slouken@libsdl.org>
parents:
1891
diff
changeset
|
2447 SOURCES="$SOURCES $srcdir/src/joystick/win32/SDL_dxjoystick.c" |
2717
50bc882455e5
Merge of force feedback branch r4039.
Edgar Simo <bobbens@gmail.com>
parents:
2714
diff
changeset
|
2448 EXTRA_LDFLAGS="$EXTRA_LDFLAGS -ldinput8 -ldxguid -ldxerr8 -lole32" |
1895
c121d94672cb
SDL 1.2 is moving to a branch, and SDL 1.3 is becoming the head.
Sam Lantinga <slouken@libsdl.org>
parents:
1891
diff
changeset
|
2449 else |
c121d94672cb
SDL 1.2 is moving to a branch, and SDL 1.3 is becoming the head.
Sam Lantinga <slouken@libsdl.org>
parents:
1891
diff
changeset
|
2450 AC_DEFINE(SDL_JOYSTICK_WINMM) |
c121d94672cb
SDL 1.2 is moving to a branch, and SDL 1.3 is becoming the head.
Sam Lantinga <slouken@libsdl.org>
parents:
1891
diff
changeset
|
2451 SOURCES="$SOURCES $srcdir/src/joystick/win32/SDL_mmjoystick.c" |
c121d94672cb
SDL 1.2 is moving to a branch, and SDL 1.3 is becoming the head.
Sam Lantinga <slouken@libsdl.org>
parents:
1891
diff
changeset
|
2452 fi |
1361
19418e4422cb
New configure-based build system. Still work in progress, but much improved
Sam Lantinga <slouken@libsdl.org>
parents:
1354
diff
changeset
|
2453 have_joystick=yes |
0 | 2454 fi |
2713
0906692aa6a4
Final merge of Google Summer of Code 2008 work...
Sam Lantinga <slouken@libsdl.org>
parents:
2710
diff
changeset
|
2455 if test x$enable_haptic = xyes; then |
0906692aa6a4
Final merge of Google Summer of Code 2008 work...
Sam Lantinga <slouken@libsdl.org>
parents:
2710
diff
changeset
|
2456 if test x$have_dinput = xyes; then |
0906692aa6a4
Final merge of Google Summer of Code 2008 work...
Sam Lantinga <slouken@libsdl.org>
parents:
2710
diff
changeset
|
2457 AC_DEFINE(SDL_HAPTIC_DINPUT) |
0906692aa6a4
Final merge of Google Summer of Code 2008 work...
Sam Lantinga <slouken@libsdl.org>
parents:
2710
diff
changeset
|
2458 SOURCES="$SOURCES $srcdir/src/haptic/win32/SDL_syshaptic.c" |
0906692aa6a4
Final merge of Google Summer of Code 2008 work...
Sam Lantinga <slouken@libsdl.org>
parents:
2710
diff
changeset
|
2459 have_haptic=yes |
0906692aa6a4
Final merge of Google Summer of Code 2008 work...
Sam Lantinga <slouken@libsdl.org>
parents:
2710
diff
changeset
|
2460 fi |
0906692aa6a4
Final merge of Google Summer of Code 2008 work...
Sam Lantinga <slouken@libsdl.org>
parents:
2710
diff
changeset
|
2461 fi |
3170
b7a48f533966
Initial work on power subsystem for SDL 1.3.
Ryan C. Gordon <icculus@icculus.org>
parents:
3168
diff
changeset
|
2462 if test x$enable_power = xyes; then |
b7a48f533966
Initial work on power subsystem for SDL 1.3.
Ryan C. Gordon <icculus@icculus.org>
parents:
3168
diff
changeset
|
2463 AC_DEFINE(SDL_POWER_WINDOWS) |
b7a48f533966
Initial work on power subsystem for SDL 1.3.
Ryan C. Gordon <icculus@icculus.org>
parents:
3168
diff
changeset
|
2464 SOURCES="$SOURCES $srcdir/src/power/windows/SDL_syspower.c" |
b7a48f533966
Initial work on power subsystem for SDL 1.3.
Ryan C. Gordon <icculus@icculus.org>
parents:
3168
diff
changeset
|
2465 have_power=yes |
b7a48f533966
Initial work on power subsystem for SDL 1.3.
Ryan C. Gordon <icculus@icculus.org>
parents:
3168
diff
changeset
|
2466 fi |
0 | 2467 # Set up files for the thread library |
2468 if test x$enable_threads = xyes; then | |
1361
19418e4422cb
New configure-based build system. Still work in progress, but much improved
Sam Lantinga <slouken@libsdl.org>
parents:
1354
diff
changeset
|
2469 AC_DEFINE(SDL_THREAD_WIN32) |
19418e4422cb
New configure-based build system. Still work in progress, but much improved
Sam Lantinga <slouken@libsdl.org>
parents:
1354
diff
changeset
|
2470 SOURCES="$SOURCES $srcdir/src/thread/win32/SDL_sysmutex.c" |
19418e4422cb
New configure-based build system. Still work in progress, but much improved
Sam Lantinga <slouken@libsdl.org>
parents:
1354
diff
changeset
|
2471 SOURCES="$SOURCES $srcdir/src/thread/win32/SDL_syssem.c" |
19418e4422cb
New configure-based build system. Still work in progress, but much improved
Sam Lantinga <slouken@libsdl.org>
parents:
1354
diff
changeset
|
2472 SOURCES="$SOURCES $srcdir/src/thread/win32/SDL_systhread.c" |
19418e4422cb
New configure-based build system. Still work in progress, but much improved
Sam Lantinga <slouken@libsdl.org>
parents:
1354
diff
changeset
|
2473 SOURCES="$SOURCES $srcdir/src/thread/generic/SDL_syscond.c" |
19418e4422cb
New configure-based build system. Still work in progress, but much improved
Sam Lantinga <slouken@libsdl.org>
parents:
1354
diff
changeset
|
2474 have_threads=yes |
0 | 2475 fi |
2476 # Set up files for the timer library | |
2477 if test x$enable_timers = xyes; then | |
1361
19418e4422cb
New configure-based build system. Still work in progress, but much improved
Sam Lantinga <slouken@libsdl.org>
parents:
1354
diff
changeset
|
2478 AC_DEFINE(SDL_TIMER_WIN32) |
19418e4422cb
New configure-based build system. Still work in progress, but much improved
Sam Lantinga <slouken@libsdl.org>
parents:
1354
diff
changeset
|
2479 SOURCES="$SOURCES $srcdir/src/timer/win32/*.c" |
19418e4422cb
New configure-based build system. Still work in progress, but much improved
Sam Lantinga <slouken@libsdl.org>
parents:
1354
diff
changeset
|
2480 have_timers=yes |
19418e4422cb
New configure-based build system. Still work in progress, but much improved
Sam Lantinga <slouken@libsdl.org>
parents:
1354
diff
changeset
|
2481 fi |
19418e4422cb
New configure-based build system. Still work in progress, but much improved
Sam Lantinga <slouken@libsdl.org>
parents:
1354
diff
changeset
|
2482 # Set up files for the shared object loading library |
19418e4422cb
New configure-based build system. Still work in progress, but much improved
Sam Lantinga <slouken@libsdl.org>
parents:
1354
diff
changeset
|
2483 if test x$enable_loadso = xyes; then |
19418e4422cb
New configure-based build system. Still work in progress, but much improved
Sam Lantinga <slouken@libsdl.org>
parents:
1354
diff
changeset
|
2484 AC_DEFINE(SDL_LOADSO_WIN32) |
19418e4422cb
New configure-based build system. Still work in progress, but much improved
Sam Lantinga <slouken@libsdl.org>
parents:
1354
diff
changeset
|
2485 SOURCES="$SOURCES $srcdir/src/loadso/win32/*.c" |
19418e4422cb
New configure-based build system. Still work in progress, but much improved
Sam Lantinga <slouken@libsdl.org>
parents:
1354
diff
changeset
|
2486 have_loadso=yes |
19418e4422cb
New configure-based build system. Still work in progress, but much improved
Sam Lantinga <slouken@libsdl.org>
parents:
1354
diff
changeset
|
2487 fi |
19418e4422cb
New configure-based build system. Still work in progress, but much improved
Sam Lantinga <slouken@libsdl.org>
parents:
1354
diff
changeset
|
2488 # Set up the system libraries we need |
3082
1c85c44557de
Removed unicows dependency, at least for now...
Sam Lantinga <slouken@libsdl.org>
parents:
3049
diff
changeset
|
2489 # SDL 1.3 is unicode, and unicows emulates this on Windows 98/ME |
1c85c44557de
Removed unicows dependency, at least for now...
Sam Lantinga <slouken@libsdl.org>
parents:
3049
diff
changeset
|
2490 # You can get this here: http://libunicows.sourceforge.net/ |
1c85c44557de
Removed unicows dependency, at least for now...
Sam Lantinga <slouken@libsdl.org>
parents:
3049
diff
changeset
|
2491 #EXTRA_LDFLAGS="$EXTRA_LDFLAGS -lunicows" |
1c85c44557de
Removed unicows dependency, at least for now...
Sam Lantinga <slouken@libsdl.org>
parents:
3049
diff
changeset
|
2492 EXTRA_LDFLAGS="$EXTRA_LDFLAGS -luser32 -lgdi32 -lmsimg32 -lwinmm" |
0 | 2493 # The Win32 platform requires special setup |
3334
61ea9005fddf
Use gcc's built-in dependency generation, thanks to Adam Strzelecki
Sam Lantinga <slouken@libsdl.org>
parents:
3332
diff
changeset
|
2494 VERSION_SOURCES="$srcdir/src/main/win32/*.rc" |
1397
b189a73aa335
Added rules to build libSDLmain.a
Sam Lantinga <slouken@libsdl.org>
parents:
1396
diff
changeset
|
2495 SDLMAIN_SOURCES="$srcdir/src/main/win32/*.c" |
0 | 2496 SDL_CFLAGS="$SDL_CFLAGS -Dmain=SDL_main" |
1363
dc623bb58c9a
Fixed building with cygwin
Sam Lantinga <slouken@libsdl.org>
parents:
1361
diff
changeset
|
2497 SDL_LIBS="-lmingw32 -lSDLmain $SDL_LIBS -mwindows" |
0 | 2498 ;; |
3292 | 2499 *-*-beos* | *-*-haiku*) |
0 | 2500 ARCH=beos |
2501 ac_default_prefix=/boot/develop/tools/gnupro | |
1
cf2af46e9e2a
Changes since SDL 1.2.0 release
Sam Lantinga <slouken@lokigames.com>
parents:
0
diff
changeset
|
2502 CheckDummyVideo |
68
ac6645260d31
Added an audio driver that writes to disk (thanks Ryan!)
Sam Lantinga <slouken@lokigames.com>
parents:
53
diff
changeset
|
2503 CheckDiskAudio |
1532
30f189cdd82b
Implemented dummy audio driver.
Ryan C. Gordon <icculus@icculus.org>
parents:
1521
diff
changeset
|
2504 CheckDummyAudio |
0 | 2505 CheckBWINDOW |
2506 CheckBeGL | |
2507 # Set up files for the audio library | |
2508 if test x$enable_audio = xyes; then | |
2049
5f6550e5184f
Merged SDL-ryan-multiple-audio-device branch r2803:2871 into the trunk.
Ryan C. Gordon <icculus@icculus.org>
parents:
2040
diff
changeset
|
2509 AC_DEFINE(SDL_AUDIO_DRIVER_BEOSAUDIO) |
1361
19418e4422cb
New configure-based build system. Still work in progress, but much improved
Sam Lantinga <slouken@libsdl.org>
parents:
1354
diff
changeset
|
2510 SOURCES="$SOURCES $srcdir/src/audio/baudio/*.cc" |
19418e4422cb
New configure-based build system. Still work in progress, but much improved
Sam Lantinga <slouken@libsdl.org>
parents:
1354
diff
changeset
|
2511 have_audio=yes |
0 | 2512 fi |
2513 # Set up files for the joystick library | |
2514 if test x$enable_joystick = xyes; then | |
1361
19418e4422cb
New configure-based build system. Still work in progress, but much improved
Sam Lantinga <slouken@libsdl.org>
parents:
1354
diff
changeset
|
2515 AC_DEFINE(SDL_JOYSTICK_BEOS) |
19418e4422cb
New configure-based build system. Still work in progress, but much improved
Sam Lantinga <slouken@libsdl.org>
parents:
1354
diff
changeset
|
2516 SOURCES="$SOURCES $srcdir/src/joystick/beos/*.cc" |
19418e4422cb
New configure-based build system. Still work in progress, but much improved
Sam Lantinga <slouken@libsdl.org>
parents:
1354
diff
changeset
|
2517 have_joystick=yes |
0 | 2518 fi |
2519 # Set up files for the thread library | |
2520 if test x$enable_threads = xyes; then | |
1361
19418e4422cb
New configure-based build system. Still work in progress, but much improved
Sam Lantinga <slouken@libsdl.org>
parents:
1354
diff
changeset
|
2521 AC_DEFINE(SDL_THREAD_BEOS) |
19418e4422cb
New configure-based build system. Still work in progress, but much improved
Sam Lantinga <slouken@libsdl.org>
parents:
1354
diff
changeset
|
2522 SOURCES="$SOURCES $srcdir/src/thread/beos/*.c" |
19418e4422cb
New configure-based build system. Still work in progress, but much improved
Sam Lantinga <slouken@libsdl.org>
parents:
1354
diff
changeset
|
2523 SOURCES="$SOURCES $srcdir/src/thread/generic/SDL_sysmutex.c" |
19418e4422cb
New configure-based build system. Still work in progress, but much improved
Sam Lantinga <slouken@libsdl.org>
parents:
1354
diff
changeset
|
2524 SOURCES="$SOURCES $srcdir/src/thread/generic/SDL_syscond.c" |
19418e4422cb
New configure-based build system. Still work in progress, but much improved
Sam Lantinga <slouken@libsdl.org>
parents:
1354
diff
changeset
|
2525 have_threads=yes |
0 | 2526 fi |
2527 # Set up files for the timer library | |
2528 if test x$enable_timers = xyes; then | |
1361
19418e4422cb
New configure-based build system. Still work in progress, but much improved
Sam Lantinga <slouken@libsdl.org>
parents:
1354
diff
changeset
|
2529 AC_DEFINE(SDL_TIMER_BEOS) |
19418e4422cb
New configure-based build system. Still work in progress, but much improved
Sam Lantinga <slouken@libsdl.org>
parents:
1354
diff
changeset
|
2530 SOURCES="$SOURCES $srcdir/src/timer/beos/*.c" |
19418e4422cb
New configure-based build system. Still work in progress, but much improved
Sam Lantinga <slouken@libsdl.org>
parents:
1354
diff
changeset
|
2531 have_timers=yes |
19418e4422cb
New configure-based build system. Still work in progress, but much improved
Sam Lantinga <slouken@libsdl.org>
parents:
1354
diff
changeset
|
2532 fi |
19418e4422cb
New configure-based build system. Still work in progress, but much improved
Sam Lantinga <slouken@libsdl.org>
parents:
1354
diff
changeset
|
2533 # Set up files for the shared object loading library |
19418e4422cb
New configure-based build system. Still work in progress, but much improved
Sam Lantinga <slouken@libsdl.org>
parents:
1354
diff
changeset
|
2534 if test x$enable_loadso = xyes; then |
19418e4422cb
New configure-based build system. Still work in progress, but much improved
Sam Lantinga <slouken@libsdl.org>
parents:
1354
diff
changeset
|
2535 AC_DEFINE(SDL_LOADSO_BEOS) |
19418e4422cb
New configure-based build system. Still work in progress, but much improved
Sam Lantinga <slouken@libsdl.org>
parents:
1354
diff
changeset
|
2536 SOURCES="$SOURCES $srcdir/src/loadso/beos/*.c" |
19418e4422cb
New configure-based build system. Still work in progress, but much improved
Sam Lantinga <slouken@libsdl.org>
parents:
1354
diff
changeset
|
2537 have_loadso=yes |
0 | 2538 fi |
3173
510e3f36c04a
BeOS support for power subsystem.
Ryan C. Gordon <icculus@icculus.org>
parents:
3170
diff
changeset
|
2539 # Set up files for the system power library |
510e3f36c04a
BeOS support for power subsystem.
Ryan C. Gordon <icculus@icculus.org>
parents:
3170
diff
changeset
|
2540 if test x$enable_power = xyes; then |
510e3f36c04a
BeOS support for power subsystem.
Ryan C. Gordon <icculus@icculus.org>
parents:
3170
diff
changeset
|
2541 AC_DEFINE(SDL_POWER_BEOS) |
510e3f36c04a
BeOS support for power subsystem.
Ryan C. Gordon <icculus@icculus.org>
parents:
3170
diff
changeset
|
2542 SOURCES="$SOURCES $srcdir/src/power/beos/*.c" |
510e3f36c04a
BeOS support for power subsystem.
Ryan C. Gordon <icculus@icculus.org>
parents:
3170
diff
changeset
|
2543 have_power=yes |
510e3f36c04a
BeOS support for power subsystem.
Ryan C. Gordon <icculus@icculus.org>
parents:
3170
diff
changeset
|
2544 fi |
1367
e440d5c488c1
Fixes for BeOS and Solaris builds
Sam Lantinga <slouken@libsdl.org>
parents:
1366
diff
changeset
|
2545 # The BeOS platform requires special setup. |
e440d5c488c1
Fixes for BeOS and Solaris builds
Sam Lantinga <slouken@libsdl.org>
parents:
1366
diff
changeset
|
2546 SOURCES="$srcdir/src/main/beos/*.cc $SOURCES" |
1521
9b9212e4810c
CFLAGS are separate from EXTRA_CFLAGS
Sam Lantinga <slouken@libsdl.org>
parents:
1520
diff
changeset
|
2547 EXTRA_LDFLAGS="$EXTRA_LDFLAGS -lroot -lbe -lmedia -lgame -ldevice -ltextencoding" |
0 | 2548 ;; |
2549 *-*-darwin* ) | |
1133
609c060fd2a2
The MacOSX Carbon/Cocoa/X11 all in one library patch. Relevant emails:
Ryan C. Gordon <icculus@icculus.org>
parents:
1127
diff
changeset
|
2550 # This could be either full "Mac OS X", or plain "Darwin" which is |
158
4382c38dfbee
Date: Tue, 21 Aug 2001 03:50:01 +0200
Sam Lantinga <slouken@libsdl.org>
parents:
153
diff
changeset
|
2551 # just the OS X kernel sans upper layers like Carbon and Cocoa. |
1133
609c060fd2a2
The MacOSX Carbon/Cocoa/X11 all in one library patch. Relevant emails:
Ryan C. Gordon <icculus@icculus.org>
parents:
1127
diff
changeset
|
2552 # Next line is broken, and a few files below require Mac OS X (full) |
158
4382c38dfbee
Date: Tue, 21 Aug 2001 03:50:01 +0200
Sam Lantinga <slouken@libsdl.org>
parents:
153
diff
changeset
|
2553 ARCH=macosx |
1624 | 2554 |
1628 | 2555 # Mac OS X builds with both the Carbon and OSX APIs at the moment |
1638
ebd1aedb1292
Miscellaneous Mac OS X fixes
Sam Lantinga <slouken@libsdl.org>
parents:
1637
diff
changeset
|
2556 EXTRA_CFLAGS="$EXTRA_CFLAGS -DTARGET_API_MAC_CARBON" |
ebd1aedb1292
Miscellaneous Mac OS X fixes
Sam Lantinga <slouken@libsdl.org>
parents:
1637
diff
changeset
|
2557 EXTRA_CFLAGS="$EXTRA_CFLAGS -DTARGET_API_MAC_OSX" |
1628 | 2558 |
2559 # HACK: Reset EXTRA_LDFLAGS; the only thing it contains at this point | |
2560 # is -lm which is not needed under Mac OS X. But for some reasons it | |
2561 # also tends to contain spurious -L switches, which we don't want to | |
2562 # use here or in sdl-config. Hence we reset it. | |
1624 | 2563 EXTRA_LDFLAGS="" |
2564 | |
1742
af4352da64d8
Fixed bug #206, fatbuild.sh works flawlessly on Intel Macs
Sam Lantinga <slouken@libsdl.org>
parents:
1648
diff
changeset
|
2565 CheckVisibilityHidden |
1
cf2af46e9e2a
Changes since SDL 1.2.0 release
Sam Lantinga <slouken@lokigames.com>
parents:
0
diff
changeset
|
2566 CheckDummyVideo |
68
ac6645260d31
Added an audio driver that writes to disk (thanks Ryan!)
Sam Lantinga <slouken@lokigames.com>
parents:
53
diff
changeset
|
2567 CheckDiskAudio |
1532
30f189cdd82b
Implemented dummy audio driver.
Ryan C. Gordon <icculus@icculus.org>
parents:
1521
diff
changeset
|
2568 CheckDummyAudio |
1638
ebd1aedb1292
Miscellaneous Mac OS X fixes
Sam Lantinga <slouken@libsdl.org>
parents:
1637
diff
changeset
|
2569 CheckDLOPEN |
1889
5225a9cc25a2
Almost added Mac OS X nasm support
Sam Lantinga <slouken@libsdl.org>
parents:
1886
diff
changeset
|
2570 |
1648
9f59d4c5aaea
Mac OS X fat build works! :)
Sam Lantinga <slouken@libsdl.org>
parents:
1640
diff
changeset
|
2571 # Set up files for the shared object loading library |
9f59d4c5aaea
Mac OS X fat build works! :)
Sam Lantinga <slouken@libsdl.org>
parents:
1640
diff
changeset
|
2572 # (this needs to be done before the dynamic X11 check) |
9f59d4c5aaea
Mac OS X fat build works! :)
Sam Lantinga <slouken@libsdl.org>
parents:
1640
diff
changeset
|
2573 if test x$enable_loadso = xyes -a x$have_dlopen != xyes; then |
9f59d4c5aaea
Mac OS X fat build works! :)
Sam Lantinga <slouken@libsdl.org>
parents:
1640
diff
changeset
|
2574 AC_DEFINE(SDL_LOADSO_DLCOMPAT) |
9f59d4c5aaea
Mac OS X fat build works! :)
Sam Lantinga <slouken@libsdl.org>
parents:
1640
diff
changeset
|
2575 SOURCES="$SOURCES $srcdir/src/loadso/macosx/*.c" |
9f59d4c5aaea
Mac OS X fat build works! :)
Sam Lantinga <slouken@libsdl.org>
parents:
1640
diff
changeset
|
2576 have_loadso=yes |
9f59d4c5aaea
Mac OS X fat build works! :)
Sam Lantinga <slouken@libsdl.org>
parents:
1640
diff
changeset
|
2577 fi |
9f59d4c5aaea
Mac OS X fat build works! :)
Sam Lantinga <slouken@libsdl.org>
parents:
1640
diff
changeset
|
2578 |
1133
609c060fd2a2
The MacOSX Carbon/Cocoa/X11 all in one library patch. Relevant emails:
Ryan C. Gordon <icculus@icculus.org>
parents:
1127
diff
changeset
|
2579 CheckCOCOA |
1174
8c43aceeed81
Enable dynamic X11 on Mac OS X.
Ryan C. Gordon <icculus@icculus.org>
parents:
1173
diff
changeset
|
2580 CheckX11 |
0 | 2581 CheckMacGL |
1191
2bd4cec0de63
Seperate glX from HAVE_OPENGL, for platforms that have both an X server and
Ryan C. Gordon <icculus@icculus.org>
parents:
1187
diff
changeset
|
2582 CheckOpenGLX11 |
0 | 2583 CheckPTHREAD |
1445
0133f0ca5de7
Need this or things might misbuild on G3 Mac OS, I think.
Ryan C. Gordon <icculus@icculus.org>
parents:
1438
diff
changeset
|
2584 |
2238 | 2585 # Good optimization on Mac OS X, yes... |
2586 EXTRA_CFLAGS="$EXTRA_CFLAGS -falign-loops=16" | |
2587 | |
1445
0133f0ca5de7
Need this or things might misbuild on G3 Mac OS, I think.
Ryan C. Gordon <icculus@icculus.org>
parents:
1438
diff
changeset
|
2588 # Need this or things might misbuild on a G3. |
1521
9b9212e4810c
CFLAGS are separate from EXTRA_CFLAGS
Sam Lantinga <slouken@libsdl.org>
parents:
1520
diff
changeset
|
2589 EXTRA_CFLAGS="$EXTRA_CFLAGS -force_cpusubtype_ALL" |
1445
0133f0ca5de7
Need this or things might misbuild on G3 Mac OS, I think.
Ryan C. Gordon <icculus@icculus.org>
parents:
1438
diff
changeset
|
2590 |
0 | 2591 # Set up files for the audio library |
2592 if test x$enable_audio = xyes; then | |
1361
19418e4422cb
New configure-based build system. Still work in progress, but much improved
Sam Lantinga <slouken@libsdl.org>
parents:
1354
diff
changeset
|
2593 AC_DEFINE(SDL_AUDIO_DRIVER_COREAUDIO) |
19418e4422cb
New configure-based build system. Still work in progress, but much improved
Sam Lantinga <slouken@libsdl.org>
parents:
1354
diff
changeset
|
2594 SOURCES="$SOURCES $srcdir/src/audio/macosx/*.c" |
19418e4422cb
New configure-based build system. Still work in progress, but much improved
Sam Lantinga <slouken@libsdl.org>
parents:
1354
diff
changeset
|
2595 have_audio=yes |
0 | 2596 fi |
3214
5625ba0a1e25
Applied patch from bug id=762 provided by Pierre Phaneuf
Bob Pendleton <bob@pendleton.com>
parents:
3199
diff
changeset
|
2597 # Set up files for the atomic operations library |
5625ba0a1e25
Applied patch from bug id=762 provided by Pierre Phaneuf
Bob Pendleton <bob@pendleton.com>
parents:
3199
diff
changeset
|
2598 if test x$enable_atomic = xyes; then |
5625ba0a1e25
Applied patch from bug id=762 provided by Pierre Phaneuf
Bob Pendleton <bob@pendleton.com>
parents:
3199
diff
changeset
|
2599 AC_DEFINE(SDL_ATOMIC_MACOSX) |
5625ba0a1e25
Applied patch from bug id=762 provided by Pierre Phaneuf
Bob Pendleton <bob@pendleton.com>
parents:
3199
diff
changeset
|
2600 SOURCES="$SOURCES $srcdir/src/atomic/macosx/*.c" |
5625ba0a1e25
Applied patch from bug id=762 provided by Pierre Phaneuf
Bob Pendleton <bob@pendleton.com>
parents:
3199
diff
changeset
|
2601 have_atomic=yes |
5625ba0a1e25
Applied patch from bug id=762 provided by Pierre Phaneuf
Bob Pendleton <bob@pendleton.com>
parents:
3199
diff
changeset
|
2602 fi |
0 | 2603 # Set up files for the joystick library |
2604 if test x$enable_joystick = xyes; then | |
1361
19418e4422cb
New configure-based build system. Still work in progress, but much improved
Sam Lantinga <slouken@libsdl.org>
parents:
1354
diff
changeset
|
2605 AC_DEFINE(SDL_JOYSTICK_IOKIT) |
19418e4422cb
New configure-based build system. Still work in progress, but much improved
Sam Lantinga <slouken@libsdl.org>
parents:
1354
diff
changeset
|
2606 SOURCES="$SOURCES $srcdir/src/joystick/darwin/*.c" |
19418e4422cb
New configure-based build system. Still work in progress, but much improved
Sam Lantinga <slouken@libsdl.org>
parents:
1354
diff
changeset
|
2607 have_joystick=yes |
0 | 2608 fi |
2713
0906692aa6a4
Final merge of Google Summer of Code 2008 work...
Sam Lantinga <slouken@libsdl.org>
parents:
2710
diff
changeset
|
2609 # Set up files for the haptic library |
0906692aa6a4
Final merge of Google Summer of Code 2008 work...
Sam Lantinga <slouken@libsdl.org>
parents:
2710
diff
changeset
|
2610 if test x$enable_haptic = xyes; then |
0906692aa6a4
Final merge of Google Summer of Code 2008 work...
Sam Lantinga <slouken@libsdl.org>
parents:
2710
diff
changeset
|
2611 AC_DEFINE(SDL_HAPTIC_IOKIT) |
0906692aa6a4
Final merge of Google Summer of Code 2008 work...
Sam Lantinga <slouken@libsdl.org>
parents:
2710
diff
changeset
|
2612 SOURCES="$SOURCES $srcdir/src/haptic/darwin/*.c" |
0906692aa6a4
Final merge of Google Summer of Code 2008 work...
Sam Lantinga <slouken@libsdl.org>
parents:
2710
diff
changeset
|
2613 have_haptic=yes |
3623
9a73fecd9181
Reverted r5460 ... this was merged from 1.2, but was later reverted there.
Ryan C. Gordon <icculus@icculus.org>
parents:
3622
diff
changeset
|
2614 EXTRA_LDFLAGS="$EXTRA_LDFLAGS -Wl,-framework,ForceFeedback" |
2713
0906692aa6a4
Final merge of Google Summer of Code 2008 work...
Sam Lantinga <slouken@libsdl.org>
parents:
2710
diff
changeset
|
2615 fi |
3170
b7a48f533966
Initial work on power subsystem for SDL 1.3.
Ryan C. Gordon <icculus@icculus.org>
parents:
3168
diff
changeset
|
2616 # Set up files for the power library |
b7a48f533966
Initial work on power subsystem for SDL 1.3.
Ryan C. Gordon <icculus@icculus.org>
parents:
3168
diff
changeset
|
2617 if test x$enable_power = xyes; then |
b7a48f533966
Initial work on power subsystem for SDL 1.3.
Ryan C. Gordon <icculus@icculus.org>
parents:
3168
diff
changeset
|
2618 AC_DEFINE(SDL_POWER_MACOSX) |
b7a48f533966
Initial work on power subsystem for SDL 1.3.
Ryan C. Gordon <icculus@icculus.org>
parents:
3168
diff
changeset
|
2619 SOURCES="$SOURCES $srcdir/src/power/macosx/*.c" |
b7a48f533966
Initial work on power subsystem for SDL 1.3.
Ryan C. Gordon <icculus@icculus.org>
parents:
3168
diff
changeset
|
2620 have_power=yes |
b7a48f533966
Initial work on power subsystem for SDL 1.3.
Ryan C. Gordon <icculus@icculus.org>
parents:
3168
diff
changeset
|
2621 fi |
0 | 2622 # Set up files for the timer library |
2623 if test x$enable_timers = xyes; then | |
1361
19418e4422cb
New configure-based build system. Still work in progress, but much improved
Sam Lantinga <slouken@libsdl.org>
parents:
1354
diff
changeset
|
2624 AC_DEFINE(SDL_TIMER_UNIX) |
19418e4422cb
New configure-based build system. Still work in progress, but much improved
Sam Lantinga <slouken@libsdl.org>
parents:
1354
diff
changeset
|
2625 SOURCES="$SOURCES $srcdir/src/timer/unix/*.c" |
19418e4422cb
New configure-based build system. Still work in progress, but much improved
Sam Lantinga <slouken@libsdl.org>
parents:
1354
diff
changeset
|
2626 have_timers=yes |
19418e4422cb
New configure-based build system. Still work in progress, but much improved
Sam Lantinga <slouken@libsdl.org>
parents:
1354
diff
changeset
|
2627 fi |
1621 | 2628 # The Mac OS X platform requires special setup. |
1521
9b9212e4810c
CFLAGS are separate from EXTRA_CFLAGS
Sam Lantinga <slouken@libsdl.org>
parents:
1520
diff
changeset
|
2629 EXTRA_CFLAGS="$EXTRA_CFLAGS -fpascal-strings" |
3049
ed67e93944b1
More Mac OS X 10.3.9 fixes
Sam Lantinga <slouken@libsdl.org>
parents:
3032
diff
changeset
|
2630 EXTRA_LDFLAGS="$EXTRA_LDFLAGS -lobjc" |
3623
9a73fecd9181
Reverted r5460 ... this was merged from 1.2, but was later reverted there.
Ryan C. Gordon <icculus@icculus.org>
parents:
3622
diff
changeset
|
2631 EXTRA_LDFLAGS="$EXTRA_LDFLAGS -Wl,-framework,Cocoa" |
9a73fecd9181
Reverted r5460 ... this was merged from 1.2, but was later reverted there.
Ryan C. Gordon <icculus@icculus.org>
parents:
3622
diff
changeset
|
2632 EXTRA_LDFLAGS="$EXTRA_LDFLAGS -Wl,-framework,Carbon" |
9a73fecd9181
Reverted r5460 ... this was merged from 1.2, but was later reverted there.
Ryan C. Gordon <icculus@icculus.org>
parents:
3622
diff
changeset
|
2633 EXTRA_LDFLAGS="$EXTRA_LDFLAGS -Wl,-framework,IOKit" |
3621
2fbe6995b2a2
Made the comment more readable
Sam Lantinga <slouken@libsdl.org>
parents:
3619
diff
changeset
|
2634 # If audio is used, add the AudioUnit framework |
3243
5db962a9a991
CD-ROM support is so passé :)
Sam Lantinga <slouken@libsdl.org>
parents:
3242
diff
changeset
|
2635 if test x$enable_audio = xyes; then |
3623
9a73fecd9181
Reverted r5460 ... this was merged from 1.2, but was later reverted there.
Ryan C. Gordon <icculus@icculus.org>
parents:
3622
diff
changeset
|
2636 EXTRA_LDFLAGS="$EXTRA_LDFLAGS -Wl,-framework,CoreAudio -Wl,-framework,AudioToolbox -Wl,-framework,AudioUnit" |
1361
19418e4422cb
New configure-based build system. Still work in progress, but much improved
Sam Lantinga <slouken@libsdl.org>
parents:
1354
diff
changeset
|
2637 fi |
0 | 2638 ;; |
1035
974ba6ae0fa3
Date: Wed, 26 Jan 2005 13:37:09 GMT
Sam Lantinga <slouken@libsdl.org>
parents:
1024
diff
changeset
|
2639 *-riscos) |
687
91400ecf307d
Date: Mon, 11 Aug 2003 22:49:06 +0100
Sam Lantinga <slouken@libsdl.org>
parents:
684
diff
changeset
|
2640 ARCH=riscos |
1361
19418e4422cb
New configure-based build system. Still work in progress, but much improved
Sam Lantinga <slouken@libsdl.org>
parents:
1354
diff
changeset
|
2641 CheckOSS |
19418e4422cb
New configure-based build system. Still work in progress, but much improved
Sam Lantinga <slouken@libsdl.org>
parents:
1354
diff
changeset
|
2642 CheckPTHREAD |
955
d74fbf56f2f6
Date: Fri, 25 Jun 2004 13:29:15 +0100
Sam Lantinga <slouken@libsdl.org>
parents:
948
diff
changeset
|
2643 # Set up files for the video library |
d74fbf56f2f6
Date: Fri, 25 Jun 2004 13:29:15 +0100
Sam Lantinga <slouken@libsdl.org>
parents:
948
diff
changeset
|
2644 if test x$enable_video = xyes; then |
1361
19418e4422cb
New configure-based build system. Still work in progress, but much improved
Sam Lantinga <slouken@libsdl.org>
parents:
1354
diff
changeset
|
2645 AC_DEFINE(SDL_VIDEO_DRIVER_RISCOS) |
19418e4422cb
New configure-based build system. Still work in progress, but much improved
Sam Lantinga <slouken@libsdl.org>
parents:
1354
diff
changeset
|
2646 SOURCES="$SOURCES $srcdir/src/video/riscos/*.c" |
1459
1e8582152d44
Date: Wed, 01 Mar 2006 10:14:31 +0000
Sam Lantinga <slouken@libsdl.org>
parents:
1456
diff
changeset
|
2647 SOURCES="$SOURCES $srcdir/src/video/riscos/*.S" |
1361
19418e4422cb
New configure-based build system. Still work in progress, but much improved
Sam Lantinga <slouken@libsdl.org>
parents:
1354
diff
changeset
|
2648 have_video=yes |
955
d74fbf56f2f6
Date: Fri, 25 Jun 2004 13:29:15 +0100
Sam Lantinga <slouken@libsdl.org>
parents:
948
diff
changeset
|
2649 fi |
d74fbf56f2f6
Date: Fri, 25 Jun 2004 13:29:15 +0100
Sam Lantinga <slouken@libsdl.org>
parents:
948
diff
changeset
|
2650 # Set up files for the joystick library |
d74fbf56f2f6
Date: Fri, 25 Jun 2004 13:29:15 +0100
Sam Lantinga <slouken@libsdl.org>
parents:
948
diff
changeset
|
2651 if test x$enable_joystick = xyes; then |
1361
19418e4422cb
New configure-based build system. Still work in progress, but much improved
Sam Lantinga <slouken@libsdl.org>
parents:
1354
diff
changeset
|
2652 AC_DEFINE(SDL_JOYSTICK_RISCOS) |
19418e4422cb
New configure-based build system. Still work in progress, but much improved
Sam Lantinga <slouken@libsdl.org>
parents:
1354
diff
changeset
|
2653 SOURCES="$SOURCES $srcdir/src/joystick/riscos/*.c" |
19418e4422cb
New configure-based build system. Still work in progress, but much improved
Sam Lantinga <slouken@libsdl.org>
parents:
1354
diff
changeset
|
2654 have_joystick=yes |
955
d74fbf56f2f6
Date: Fri, 25 Jun 2004 13:29:15 +0100
Sam Lantinga <slouken@libsdl.org>
parents:
948
diff
changeset
|
2655 fi |
d74fbf56f2f6
Date: Fri, 25 Jun 2004 13:29:15 +0100
Sam Lantinga <slouken@libsdl.org>
parents:
948
diff
changeset
|
2656 # Set up files for the timer library |
d74fbf56f2f6
Date: Fri, 25 Jun 2004 13:29:15 +0100
Sam Lantinga <slouken@libsdl.org>
parents:
948
diff
changeset
|
2657 if test x$enable_timers = xyes; then |
1361
19418e4422cb
New configure-based build system. Still work in progress, but much improved
Sam Lantinga <slouken@libsdl.org>
parents:
1354
diff
changeset
|
2658 AC_DEFINE(SDL_TIMER_RISCOS) |
19418e4422cb
New configure-based build system. Still work in progress, but much improved
Sam Lantinga <slouken@libsdl.org>
parents:
1354
diff
changeset
|
2659 SOURCES="$SOURCES $srcdir/src/timer/riscos/*.c" |
19418e4422cb
New configure-based build system. Still work in progress, but much improved
Sam Lantinga <slouken@libsdl.org>
parents:
1354
diff
changeset
|
2660 have_timers=yes |
955
d74fbf56f2f6
Date: Fri, 25 Jun 2004 13:29:15 +0100
Sam Lantinga <slouken@libsdl.org>
parents:
948
diff
changeset
|
2661 fi |
1361
19418e4422cb
New configure-based build system. Still work in progress, but much improved
Sam Lantinga <slouken@libsdl.org>
parents:
1354
diff
changeset
|
2662 # The RISC OS platform requires special setup. |
1521
9b9212e4810c
CFLAGS are separate from EXTRA_CFLAGS
Sam Lantinga <slouken@libsdl.org>
parents:
1520
diff
changeset
|
2663 EXTRA_LDFLAGS="$EXTRA_LDFLAGS -ljpeg -ltiff -lpng -lz" |
687
91400ecf307d
Date: Mon, 11 Aug 2003 22:49:06 +0100
Sam Lantinga <slouken@libsdl.org>
parents:
684
diff
changeset
|
2664 ;; |
0 | 2665 *) |
1361
19418e4422cb
New configure-based build system. Still work in progress, but much improved
Sam Lantinga <slouken@libsdl.org>
parents:
1354
diff
changeset
|
2666 AC_MSG_ERROR([ |
1550 | 2667 *** Unsupported host: Please add to configure.in |
1361
19418e4422cb
New configure-based build system. Still work in progress, but much improved
Sam Lantinga <slouken@libsdl.org>
parents:
1354
diff
changeset
|
2668 ]) |
0 | 2669 ;; |
2670 esac | |
2671 | |
1361
19418e4422cb
New configure-based build system. Still work in progress, but much improved
Sam Lantinga <slouken@libsdl.org>
parents:
1354
diff
changeset
|
2672 # Verify that we have all the platform specific files we need |
2066
8f8066b84b3e
Use dummy joystick backend if subsystem is enabled but no better driver was
Ryan C. Gordon <icculus@icculus.org>
parents:
2049
diff
changeset
|
2673 |
3104
86ea6c073d87
Fixed undefined references to joystick code
Sam Lantinga <slouken@libsdl.org>
parents:
3099
diff
changeset
|
2674 if test x$have_joystick != xyes; then |
86ea6c073d87
Fixed undefined references to joystick code
Sam Lantinga <slouken@libsdl.org>
parents:
3099
diff
changeset
|
2675 if test x$enable_joystick = xyes; then |
3097
0d12e8f1de3c
Date: Thu, 05 Feb 2009 18:07:35 +0100
Sam Lantinga <slouken@libsdl.org>
parents:
3087
diff
changeset
|
2676 AC_DEFINE(SDL_JOYSTICK_DISABLED) |
0d12e8f1de3c
Date: Thu, 05 Feb 2009 18:07:35 +0100
Sam Lantinga <slouken@libsdl.org>
parents:
3087
diff
changeset
|
2677 fi |
1361
19418e4422cb
New configure-based build system. Still work in progress, but much improved
Sam Lantinga <slouken@libsdl.org>
parents:
1354
diff
changeset
|
2678 SOURCES="$SOURCES $srcdir/src/joystick/dummy/*.c" |
19418e4422cb
New configure-based build system. Still work in progress, but much improved
Sam Lantinga <slouken@libsdl.org>
parents:
1354
diff
changeset
|
2679 fi |
2713
0906692aa6a4
Final merge of Google Summer of Code 2008 work...
Sam Lantinga <slouken@libsdl.org>
parents:
2710
diff
changeset
|
2680 if test x$have_haptic != xyes; then |
0906692aa6a4
Final merge of Google Summer of Code 2008 work...
Sam Lantinga <slouken@libsdl.org>
parents:
2710
diff
changeset
|
2681 if test x$enable_haptic = xyes; then |
0906692aa6a4
Final merge of Google Summer of Code 2008 work...
Sam Lantinga <slouken@libsdl.org>
parents:
2710
diff
changeset
|
2682 AC_DEFINE(SDL_HAPTIC_DISABLED) |
0906692aa6a4
Final merge of Google Summer of Code 2008 work...
Sam Lantinga <slouken@libsdl.org>
parents:
2710
diff
changeset
|
2683 fi |
0906692aa6a4
Final merge of Google Summer of Code 2008 work...
Sam Lantinga <slouken@libsdl.org>
parents:
2710
diff
changeset
|
2684 SOURCES="$SOURCES $srcdir/src/haptic/dummy/*.c" |
0906692aa6a4
Final merge of Google Summer of Code 2008 work...
Sam Lantinga <slouken@libsdl.org>
parents:
2710
diff
changeset
|
2685 fi |
1361
19418e4422cb
New configure-based build system. Still work in progress, but much improved
Sam Lantinga <slouken@libsdl.org>
parents:
1354
diff
changeset
|
2686 if test x$have_threads != xyes; then |
19418e4422cb
New configure-based build system. Still work in progress, but much improved
Sam Lantinga <slouken@libsdl.org>
parents:
1354
diff
changeset
|
2687 if test x$enable_threads = xyes; then |
19418e4422cb
New configure-based build system. Still work in progress, but much improved
Sam Lantinga <slouken@libsdl.org>
parents:
1354
diff
changeset
|
2688 AC_DEFINE(SDL_THREADS_DISABLED) |
19418e4422cb
New configure-based build system. Still work in progress, but much improved
Sam Lantinga <slouken@libsdl.org>
parents:
1354
diff
changeset
|
2689 fi |
19418e4422cb
New configure-based build system. Still work in progress, but much improved
Sam Lantinga <slouken@libsdl.org>
parents:
1354
diff
changeset
|
2690 SOURCES="$SOURCES $srcdir/src/thread/generic/*.c" |
19418e4422cb
New configure-based build system. Still work in progress, but much improved
Sam Lantinga <slouken@libsdl.org>
parents:
1354
diff
changeset
|
2691 fi |
19418e4422cb
New configure-based build system. Still work in progress, but much improved
Sam Lantinga <slouken@libsdl.org>
parents:
1354
diff
changeset
|
2692 if test x$have_timers != xyes; then |
19418e4422cb
New configure-based build system. Still work in progress, but much improved
Sam Lantinga <slouken@libsdl.org>
parents:
1354
diff
changeset
|
2693 if test x$enable_timers = xyes; then |
19418e4422cb
New configure-based build system. Still work in progress, but much improved
Sam Lantinga <slouken@libsdl.org>
parents:
1354
diff
changeset
|
2694 AC_DEFINE(SDL_TIMERS_DISABLED) |
19418e4422cb
New configure-based build system. Still work in progress, but much improved
Sam Lantinga <slouken@libsdl.org>
parents:
1354
diff
changeset
|
2695 fi |
19418e4422cb
New configure-based build system. Still work in progress, but much improved
Sam Lantinga <slouken@libsdl.org>
parents:
1354
diff
changeset
|
2696 SOURCES="$SOURCES $srcdir/src/timer/dummy/*.c" |
19418e4422cb
New configure-based build system. Still work in progress, but much improved
Sam Lantinga <slouken@libsdl.org>
parents:
1354
diff
changeset
|
2697 fi |
19418e4422cb
New configure-based build system. Still work in progress, but much improved
Sam Lantinga <slouken@libsdl.org>
parents:
1354
diff
changeset
|
2698 if test x$have_loadso != xyes; then |
19418e4422cb
New configure-based build system. Still work in progress, but much improved
Sam Lantinga <slouken@libsdl.org>
parents:
1354
diff
changeset
|
2699 if test x$enable_loadso = xyes; then |
19418e4422cb
New configure-based build system. Still work in progress, but much improved
Sam Lantinga <slouken@libsdl.org>
parents:
1354
diff
changeset
|
2700 AC_DEFINE(SDL_LOADSO_DISABLED) |
19418e4422cb
New configure-based build system. Still work in progress, but much improved
Sam Lantinga <slouken@libsdl.org>
parents:
1354
diff
changeset
|
2701 fi |
19418e4422cb
New configure-based build system. Still work in progress, but much improved
Sam Lantinga <slouken@libsdl.org>
parents:
1354
diff
changeset
|
2702 SOURCES="$SOURCES $srcdir/src/loadso/dummy/*.c" |
19418e4422cb
New configure-based build system. Still work in progress, but much improved
Sam Lantinga <slouken@libsdl.org>
parents:
1354
diff
changeset
|
2703 fi |
1397
b189a73aa335
Added rules to build libSDLmain.a
Sam Lantinga <slouken@libsdl.org>
parents:
1396
diff
changeset
|
2704 if test x$SDLMAIN_SOURCES = x; then |
b189a73aa335
Added rules to build libSDLmain.a
Sam Lantinga <slouken@libsdl.org>
parents:
1396
diff
changeset
|
2705 SDLMAIN_SOURCES="$srcdir/src/main/dummy/*.c" |
b189a73aa335
Added rules to build libSDLmain.a
Sam Lantinga <slouken@libsdl.org>
parents:
1396
diff
changeset
|
2706 fi |
0 | 2707 |
3334
61ea9005fddf
Use gcc's built-in dependency generation, thanks to Adam Strzelecki
Sam Lantinga <slouken@libsdl.org>
parents:
3332
diff
changeset
|
2708 OBJECTS=`echo $SOURCES` |
61ea9005fddf
Use gcc's built-in dependency generation, thanks to Adam Strzelecki
Sam Lantinga <slouken@libsdl.org>
parents:
3332
diff
changeset
|
2709 DEPENDS=`echo $SOURCES` |
61ea9005fddf
Use gcc's built-in dependency generation, thanks to Adam Strzelecki
Sam Lantinga <slouken@libsdl.org>
parents:
3332
diff
changeset
|
2710 for EXT in asm cc m c S; do |
61ea9005fddf
Use gcc's built-in dependency generation, thanks to Adam Strzelecki
Sam Lantinga <slouken@libsdl.org>
parents:
3332
diff
changeset
|
2711 OBJECTS=`echo "$OBJECTS" | sed 's,[[^ ]]*/\([[^ ]]*\)\.'$EXT',$(objects)/\1.lo,g'` |
3415 | 2712 DEPENDS=`echo "$DEPENDS" | sed "s,\\([[^ ]]*\\)/\\([[^ ]]*\\)\\.$EXT,\\\\ |
2713 \\$(objects)/\\2.lo: \\1/\\2.$EXT\\\\ | |
2714 \\$(LIBTOOL) --mode=compile \\$(CC) \\$(CFLAGS) \\$(EXTRA_CFLAGS) $DEPENDENCY_TRACKING_OPTIONS -c \\$< -o \\$@,g"` | |
3334
61ea9005fddf
Use gcc's built-in dependency generation, thanks to Adam Strzelecki
Sam Lantinga <slouken@libsdl.org>
parents:
3332
diff
changeset
|
2715 done |
0 | 2716 |
3334
61ea9005fddf
Use gcc's built-in dependency generation, thanks to Adam Strzelecki
Sam Lantinga <slouken@libsdl.org>
parents:
3332
diff
changeset
|
2717 VERSION_OBJECTS=`echo $VERSION_SOURCES` |
61ea9005fddf
Use gcc's built-in dependency generation, thanks to Adam Strzelecki
Sam Lantinga <slouken@libsdl.org>
parents:
3332
diff
changeset
|
2718 VERSION_DEPENDS=`echo $VERSION_SOURCES` |
61ea9005fddf
Use gcc's built-in dependency generation, thanks to Adam Strzelecki
Sam Lantinga <slouken@libsdl.org>
parents:
3332
diff
changeset
|
2719 VERSION_OBJECTS=`echo "$VERSION_OBJECTS" | sed 's,[[^ ]]*/\([[^ ]]*\)\.rc,$(objects)/\1.o,g'` |
3415 | 2720 VERSION_DEPENDS=`echo "$VERSION_DEPENDS" | sed "s,\\([[^ ]]*\\)/\\([[^ ]]*\\)\\.rc,\\\\ |
2721 \\$(objects)/\\2.o: \\1/\\2.rc\\\\ | |
2722 \\$(WINDRES) \\$< \\$@,g"` | |
3334
61ea9005fddf
Use gcc's built-in dependency generation, thanks to Adam Strzelecki
Sam Lantinga <slouken@libsdl.org>
parents:
3332
diff
changeset
|
2723 |
61ea9005fddf
Use gcc's built-in dependency generation, thanks to Adam Strzelecki
Sam Lantinga <slouken@libsdl.org>
parents:
3332
diff
changeset
|
2724 SDLMAIN_OBJECTS=`echo $SDLMAIN_SOURCES` |
61ea9005fddf
Use gcc's built-in dependency generation, thanks to Adam Strzelecki
Sam Lantinga <slouken@libsdl.org>
parents:
3332
diff
changeset
|
2725 SDLMAIN_DEPENDS=`echo $SDLMAIN_SOURCES` |
61ea9005fddf
Use gcc's built-in dependency generation, thanks to Adam Strzelecki
Sam Lantinga <slouken@libsdl.org>
parents:
3332
diff
changeset
|
2726 SDLMAIN_OBJECTS=`echo "$SDLMAIN_OBJECTS" | sed 's,[[^ ]]*/\([[^ ]]*\)\.c,$(objects)/\1.o,g'` |
3415 | 2727 SDLMAIN_DEPENDS=`echo "$SDLMAIN_DEPENDS" | sed "s,\\([[^ ]]*\\)/\\([[^ ]]*\\)\\.c,\\\\ |
2728 \\$(objects)/\\2.o: \\1/\\2.c\\\\ | |
2729 \\$(LIBTOOL) --mode=compile \\$(CC) \\$(CFLAGS) \\$(EXTRA_CFLAGS) $DEPENDENCY_TRACKING_OPTIONS -c \\$< -o \\$@,g"` | |
1397
b189a73aa335
Added rules to build libSDLmain.a
Sam Lantinga <slouken@libsdl.org>
parents:
1396
diff
changeset
|
2730 |
0 | 2731 # Set runtime shared library paths as needed |
2732 | |
1127
fb8818ee9112
Date: Mon, 22 Aug 2005 04:22:46 -0400
Sam Lantinga <slouken@libsdl.org>
parents:
1062
diff
changeset
|
2733 if test "x$enable_rpath" = "xyes"; then |
1565 | 2734 if test $ARCH = bsdi -o $ARCH = freebsd -o $ARCH = irix -o $ARCH = linux -o $ARCH = netbsd; then |
2040 | 2735 SDL_RLD_FLAGS="-Wl,-rpath,\${libdir}" |
1127
fb8818ee9112
Date: Mon, 22 Aug 2005 04:22:46 -0400
Sam Lantinga <slouken@libsdl.org>
parents:
1062
diff
changeset
|
2736 fi |
fb8818ee9112
Date: Mon, 22 Aug 2005 04:22:46 -0400
Sam Lantinga <slouken@libsdl.org>
parents:
1062
diff
changeset
|
2737 if test $ARCH = solaris; then |
2040 | 2738 SDL_RLD_FLAGS="-R\${libdir}" |
1127
fb8818ee9112
Date: Mon, 22 Aug 2005 04:22:46 -0400
Sam Lantinga <slouken@libsdl.org>
parents:
1062
diff
changeset
|
2739 fi |
fb8818ee9112
Date: Mon, 22 Aug 2005 04:22:46 -0400
Sam Lantinga <slouken@libsdl.org>
parents:
1062
diff
changeset
|
2740 else |
fb8818ee9112
Date: Mon, 22 Aug 2005 04:22:46 -0400
Sam Lantinga <slouken@libsdl.org>
parents:
1062
diff
changeset
|
2741 SDL_RLD_FLAGS="" |
0 | 2742 fi |
387
469d5c0da01d
Fixed shared library building on MacOS X (thanks Max!)
Sam Lantinga <slouken@libsdl.org>
parents:
382
diff
changeset
|
2743 |
469d5c0da01d
Fixed shared library building on MacOS X (thanks Max!)
Sam Lantinga <slouken@libsdl.org>
parents:
382
diff
changeset
|
2744 case "$ARCH" in |
469d5c0da01d
Fixed shared library building on MacOS X (thanks Max!)
Sam Lantinga <slouken@libsdl.org>
parents:
382
diff
changeset
|
2745 macosx) |
807
674df5617bba
Fixed static linking on MacOS X (thanks Max!)
Sam Lantinga <slouken@libsdl.org>
parents:
802
diff
changeset
|
2746 # Evil hack to allow static linking on Mac OS X |
2040 | 2747 SDL_STATIC_LIBS="\${libdir}/libSDL.a $EXTRA_LDFLAGS" |
807
674df5617bba
Fixed static linking on MacOS X (thanks Max!)
Sam Lantinga <slouken@libsdl.org>
parents:
802
diff
changeset
|
2748 ;; |
674df5617bba
Fixed static linking on MacOS X (thanks Max!)
Sam Lantinga <slouken@libsdl.org>
parents:
802
diff
changeset
|
2749 *) |
2293
824f6dee6648
Merged fix for bug #531 from SDL 1.2 revision 3511
Sam Lantinga <slouken@libsdl.org>
parents:
2292
diff
changeset
|
2750 SDL_STATIC_LIBS="$SDL_LIBS $EXTRA_LDFLAGS" |
807
674df5617bba
Fixed static linking on MacOS X (thanks Max!)
Sam Lantinga <slouken@libsdl.org>
parents:
802
diff
changeset
|
2751 ;; |
674df5617bba
Fixed static linking on MacOS X (thanks Max!)
Sam Lantinga <slouken@libsdl.org>
parents:
802
diff
changeset
|
2752 esac |
674df5617bba
Fixed static linking on MacOS X (thanks Max!)
Sam Lantinga <slouken@libsdl.org>
parents:
802
diff
changeset
|
2753 |
0 | 2754 dnl Expand the cflags and libraries needed by apps using SDL |
2755 AC_SUBST(SDL_CFLAGS) | |
2756 AC_SUBST(SDL_LIBS) | |
807
674df5617bba
Fixed static linking on MacOS X (thanks Max!)
Sam Lantinga <slouken@libsdl.org>
parents:
802
diff
changeset
|
2757 AC_SUBST(SDL_STATIC_LIBS) |
0 | 2758 AC_SUBST(SDL_RLD_FLAGS) |
1361
19418e4422cb
New configure-based build system. Still work in progress, but much improved
Sam Lantinga <slouken@libsdl.org>
parents:
1354
diff
changeset
|
2759 if test x$enable_shared = xyes; then |
19418e4422cb
New configure-based build system. Still work in progress, but much improved
Sam Lantinga <slouken@libsdl.org>
parents:
1354
diff
changeset
|
2760 ENABLE_SHARED_TRUE= |
19418e4422cb
New configure-based build system. Still work in progress, but much improved
Sam Lantinga <slouken@libsdl.org>
parents:
1354
diff
changeset
|
2761 ENABLE_SHARED_FALSE="#" |
19418e4422cb
New configure-based build system. Still work in progress, but much improved
Sam Lantinga <slouken@libsdl.org>
parents:
1354
diff
changeset
|
2762 else |
19418e4422cb
New configure-based build system. Still work in progress, but much improved
Sam Lantinga <slouken@libsdl.org>
parents:
1354
diff
changeset
|
2763 ENABLE_SHARED_TRUE="#" |
19418e4422cb
New configure-based build system. Still work in progress, but much improved
Sam Lantinga <slouken@libsdl.org>
parents:
1354
diff
changeset
|
2764 ENABLE_SHARED_FALSE= |
19418e4422cb
New configure-based build system. Still work in progress, but much improved
Sam Lantinga <slouken@libsdl.org>
parents:
1354
diff
changeset
|
2765 fi |
19418e4422cb
New configure-based build system. Still work in progress, but much improved
Sam Lantinga <slouken@libsdl.org>
parents:
1354
diff
changeset
|
2766 if test x$enable_static = xyes; then |
19418e4422cb
New configure-based build system. Still work in progress, but much improved
Sam Lantinga <slouken@libsdl.org>
parents:
1354
diff
changeset
|
2767 ENABLE_STATIC_TRUE= |
19418e4422cb
New configure-based build system. Still work in progress, but much improved
Sam Lantinga <slouken@libsdl.org>
parents:
1354
diff
changeset
|
2768 ENABLE_STATIC_FALSE="#" |
19418e4422cb
New configure-based build system. Still work in progress, but much improved
Sam Lantinga <slouken@libsdl.org>
parents:
1354
diff
changeset
|
2769 else |
19418e4422cb
New configure-based build system. Still work in progress, but much improved
Sam Lantinga <slouken@libsdl.org>
parents:
1354
diff
changeset
|
2770 ENABLE_STATIC_TRUE="#" |
19418e4422cb
New configure-based build system. Still work in progress, but much improved
Sam Lantinga <slouken@libsdl.org>
parents:
1354
diff
changeset
|
2771 ENABLE_STATIC_FALSE= |
19418e4422cb
New configure-based build system. Still work in progress, but much improved
Sam Lantinga <slouken@libsdl.org>
parents:
1354
diff
changeset
|
2772 fi |
19418e4422cb
New configure-based build system. Still work in progress, but much improved
Sam Lantinga <slouken@libsdl.org>
parents:
1354
diff
changeset
|
2773 AC_SUBST(ENABLE_SHARED_TRUE) |
19418e4422cb
New configure-based build system. Still work in progress, but much improved
Sam Lantinga <slouken@libsdl.org>
parents:
1354
diff
changeset
|
2774 AC_SUBST(ENABLE_SHARED_FALSE) |
19418e4422cb
New configure-based build system. Still work in progress, but much improved
Sam Lantinga <slouken@libsdl.org>
parents:
1354
diff
changeset
|
2775 AC_SUBST(ENABLE_STATIC_TRUE) |
19418e4422cb
New configure-based build system. Still work in progress, but much improved
Sam Lantinga <slouken@libsdl.org>
parents:
1354
diff
changeset
|
2776 AC_SUBST(ENABLE_STATIC_FALSE) |
0 | 2777 |
1361
19418e4422cb
New configure-based build system. Still work in progress, but much improved
Sam Lantinga <slouken@libsdl.org>
parents:
1354
diff
changeset
|
2778 dnl Expand the sources and objects needed to build the library |
19418e4422cb
New configure-based build system. Still work in progress, but much improved
Sam Lantinga <slouken@libsdl.org>
parents:
1354
diff
changeset
|
2779 AC_SUBST(ac_aux_dir) |
19418e4422cb
New configure-based build system. Still work in progress, but much improved
Sam Lantinga <slouken@libsdl.org>
parents:
1354
diff
changeset
|
2780 AC_SUBST(INCLUDE) |
19418e4422cb
New configure-based build system. Still work in progress, but much improved
Sam Lantinga <slouken@libsdl.org>
parents:
1354
diff
changeset
|
2781 AC_SUBST(OBJECTS) |
3334
61ea9005fddf
Use gcc's built-in dependency generation, thanks to Adam Strzelecki
Sam Lantinga <slouken@libsdl.org>
parents:
3332
diff
changeset
|
2782 AC_SUBST(DEPENDS) |
61ea9005fddf
Use gcc's built-in dependency generation, thanks to Adam Strzelecki
Sam Lantinga <slouken@libsdl.org>
parents:
3332
diff
changeset
|
2783 AC_SUBST(VERSION_OBJECTS) |
61ea9005fddf
Use gcc's built-in dependency generation, thanks to Adam Strzelecki
Sam Lantinga <slouken@libsdl.org>
parents:
3332
diff
changeset
|
2784 AC_SUBST(VERSION_DEPENDS) |
1397
b189a73aa335
Added rules to build libSDLmain.a
Sam Lantinga <slouken@libsdl.org>
parents:
1396
diff
changeset
|
2785 AC_SUBST(SDLMAIN_OBJECTS) |
3334
61ea9005fddf
Use gcc's built-in dependency generation, thanks to Adam Strzelecki
Sam Lantinga <slouken@libsdl.org>
parents:
3332
diff
changeset
|
2786 AC_SUBST(SDLMAIN_DEPENDS) |
1361
19418e4422cb
New configure-based build system. Still work in progress, but much improved
Sam Lantinga <slouken@libsdl.org>
parents:
1354
diff
changeset
|
2787 AC_SUBST(BUILD_CFLAGS) |
1521
9b9212e4810c
CFLAGS are separate from EXTRA_CFLAGS
Sam Lantinga <slouken@libsdl.org>
parents:
1520
diff
changeset
|
2788 AC_SUBST(EXTRA_CFLAGS) |
1393
cd3362657144
Pass LDFLAGS to the build system
Sam Lantinga <slouken@libsdl.org>
parents:
1389
diff
changeset
|
2789 AC_SUBST(BUILD_LDFLAGS) |
1521
9b9212e4810c
CFLAGS are separate from EXTRA_CFLAGS
Sam Lantinga <slouken@libsdl.org>
parents:
1520
diff
changeset
|
2790 AC_SUBST(EXTRA_LDFLAGS) |
2204
9f64d06fa168
Added support for building version.rc in Windows build.
Sam Lantinga <slouken@libsdl.org>
parents:
2185
diff
changeset
|
2791 AC_SUBST(WINDRES) |
158
4382c38dfbee
Date: Tue, 21 Aug 2001 03:50:01 +0200
Sam Lantinga <slouken@libsdl.org>
parents:
153
diff
changeset
|
2792 |
0 | 2793 AC_OUTPUT([ |
3083
0bc41e0361d3
Date: Mon, 2 Mar 2009 16:27:42 +0200
Sam Lantinga <slouken@libsdl.org>
parents:
3082
diff
changeset
|
2794 Makefile sdl-config SDL.spec sdl.pc |
1361
19418e4422cb
New configure-based build system. Still work in progress, but much improved
Sam Lantinga <slouken@libsdl.org>
parents:
1354
diff
changeset
|
2795 ]) |