Mercurial > sdl-ios-xcode
annotate test/configure.in @ 666:fbec2501cf9f
ate: Mon, 4 Aug 2003 19:10:14 +0300
From: "Mike Gorchak"
Subject: SDL/QNX forgotten fixes
Just found, that one chunk for configure.in has not been applied and one for\
gotten by me :) Please add it to CVS.
P.S. Now QNX6.2.1 have the dlopen in libc and in the libltdl. So libc's vari\
ant more prefered, and ltdl rest for compatibility. In this small patch I wa\
s added proper checks.
author | Sam Lantinga <slouken@libsdl.org> |
---|---|
date | Wed, 06 Aug 2003 20:20:30 +0000 |
parents | eadc0746dfaf |
children | b8679559e432 |
rev | line source |
---|---|
0 | 1 dnl Process this file with autoconf to produce a configure script. |
2 AC_INIT(README) | |
3 | |
4 dnl Setup for automake | |
214
0e5d6dd77bda
Added platform independent OpenGL header - SDL_opengl.h
Sam Lantinga <slouken@libsdl.org>
parents:
51
diff
changeset
|
5 SDL_VERSION=1.2.3 |
0 | 6 |
7 dnl Detect the canonical host and target build environment | |
8 AC_CANONICAL_HOST | |
9 AC_CANONICAL_TARGET | |
10 | |
51
fba28d77901f
Disabled /dev/event joystick interface by default
Sam Lantinga <slouken@lokigames.com>
parents:
0
diff
changeset
|
11 dnl Setup for automake |
fba28d77901f
Disabled /dev/event joystick interface by default
Sam Lantinga <slouken@lokigames.com>
parents:
0
diff
changeset
|
12 AM_INIT_AUTOMAKE(SDL_tests, $SDL_VERSION) |
fba28d77901f
Disabled /dev/event joystick interface by default
Sam Lantinga <slouken@lokigames.com>
parents:
0
diff
changeset
|
13 |
0 | 14 dnl Check for tools |
15 | |
16 AC_PROG_CC | |
17 | |
18 dnl Check for compiler environment | |
19 | |
20 AC_C_CONST | |
21 | |
22 dnl Figure out which math library to use | |
23 case "$target" in | |
24 *-*-cygwin* | *-*-mingw32*) | |
25 MATHLIB="" | |
26 SYS_GL_LIBS="-lopengl32" | |
27 ;; | |
28 *-*-beos*) | |
29 MATHLIB="" | |
30 SYS_GL_LIBS="-lGL" | |
31 ;; | |
32 *-*-darwin*) | |
33 MATHLIB="" | |
34 SYS_GL_LIBS="" | |
35 ;; | |
36 *-*-aix*) | |
37 if test x$ac_cv_prog_gcc = xyes; then | |
38 CFLAGS="-mthreads" | |
39 fi | |
40 SYS_GL_LIBS="" | |
41 ;; | |
42 *) | |
43 MATHLIB="-lm" | |
44 AC_PATH_X | |
45 AC_PATH_XTRA | |
46 if test x$have_x = xyes; then | |
47 CFLAGS="$CFLAGS $X_CFLAGS" | |
48 SYS_GL_LIBS="$X_LIBS -lGL" | |
49 else | |
50 SYS_GL_LIBS="-lGL" | |
51 fi | |
52 ;; | |
53 esac | |
54 AC_SUBST(MATHLIB) | |
55 | |
56 dnl Check for SDL | |
57 | |
58 AM_PATH_SDL($SDL_VERSION, | |
59 :, | |
60 AC_MSG_ERROR([*** SDL version $SDL_VERSION not found!]) | |
61 ) | |
62 CFLAGS="$CFLAGS $SDL_CFLAGS" | |
63 LIBS="$LIBS $SDL_LIBS" | |
64 | |
65 dnl Check for OpenGL | |
66 AC_MSG_CHECKING(for OpenGL support) | |
67 have_opengl=no | |
68 AC_TRY_COMPILE([ | |
292
eadc0746dfaf
Added SDL_LockRect() and SDL_UnlockRect()
Sam Lantinga <slouken@libsdl.org>
parents:
214
diff
changeset
|
69 #include "SDL_opengl.h" |
0 | 70 ],[ |
71 ],[ | |
72 have_opengl=yes | |
73 ]) | |
74 AC_MSG_RESULT($have_opengl) | |
75 if test x$have_opengl = xyes; then | |
76 CFLAGS="$CFLAGS -DHAVE_OPENGL" | |
77 GL_LIBS="$SYS_GL_LIBS" | |
78 else | |
79 GL_LIBS="" | |
80 fi | |
81 AC_SUBST(GL_LIBS) | |
82 | |
83 # Finally create all the generated files | |
84 AC_OUTPUT([Makefile]) |