slouken@5310
|
1 |
# Configure paths for SDL
|
slouken@5310
|
2 |
# Sam Lantinga 9/21/99
|
slouken@5310
|
3 |
# stolen from Manish Singh
|
slouken@5310
|
4 |
# stolen back from Frank Belew
|
slouken@5310
|
5 |
# stolen from Manish Singh
|
slouken@5310
|
6 |
# Shamelessly stolen from Owen Taylor
|
slouken@5310
|
7 |
|
slouken@5310
|
8 |
dnl AM_PATH_SDL([MINIMUM-VERSION, [ACTION-IF-FOUND [, ACTION-IF-NOT-FOUND]]])
|
slouken@5310
|
9 |
dnl Test for SDL, and define SDL_CFLAGS and SDL_LIBS
|
slouken@5310
|
10 |
dnl
|
slouken@5310
|
11 |
AC_DEFUN([AM_PATH_SDL],
|
slouken@5310
|
12 |
[dnl
|
slouken@5310
|
13 |
dnl Get the cflags and libraries from the sdl-config script
|
slouken@5310
|
14 |
dnl
|
slouken@5310
|
15 |
AC_ARG_WITH(sdl-prefix,[ --with-sdl-prefix=PFX Prefix where SDL is installed (optional)],
|
slouken@5310
|
16 |
sdl_prefix="$withval", sdl_prefix="")
|
slouken@5310
|
17 |
AC_ARG_WITH(sdl-exec-prefix,[ --with-sdl-exec-prefix=PFX Exec prefix where SDL is installed (optional)],
|
slouken@5310
|
18 |
sdl_exec_prefix="$withval", sdl_exec_prefix="")
|
slouken@5310
|
19 |
AC_ARG_ENABLE(sdltest, [ --disable-sdltest Do not try to compile and run a test SDL program],
|
slouken@5310
|
20 |
, enable_sdltest=yes)
|
slouken@5310
|
21 |
|
slouken@5310
|
22 |
if test x$sdl_exec_prefix != x ; then
|
slouken@5310
|
23 |
sdl_args="$sdl_args --exec-prefix=$sdl_exec_prefix"
|
slouken@5310
|
24 |
if test x${SDL_CONFIG+set} != xset ; then
|
slouken@5310
|
25 |
SDL_CONFIG=$sdl_exec_prefix/bin/sdl-config
|
slouken@5310
|
26 |
fi
|
slouken@5310
|
27 |
fi
|
slouken@5310
|
28 |
if test x$sdl_prefix != x ; then
|
slouken@5310
|
29 |
sdl_args="$sdl_args --prefix=$sdl_prefix"
|
slouken@5310
|
30 |
if test x${SDL_CONFIG+set} != xset ; then
|
slouken@5310
|
31 |
SDL_CONFIG=$sdl_prefix/bin/sdl-config
|
slouken@5310
|
32 |
fi
|
slouken@5310
|
33 |
fi
|
slouken@5310
|
34 |
|
slouken@5310
|
35 |
if test "x$prefix" != xNONE; then
|
slouken@5310
|
36 |
PATH="$prefix/bin:$prefix/usr/bin:$PATH"
|
slouken@5310
|
37 |
fi
|
slouken@5310
|
38 |
AC_PATH_PROG(SDL_CONFIG, sdl-config, no, [$PATH])
|
slouken@5310
|
39 |
min_sdl_version=ifelse([$1], ,0.11.0,$1)
|
slouken@5310
|
40 |
AC_MSG_CHECKING(for SDL - version >= $min_sdl_version)
|
slouken@5310
|
41 |
no_sdl=""
|
slouken@5310
|
42 |
if test "$SDL_CONFIG" = "no" ; then
|
slouken@5310
|
43 |
no_sdl=yes
|
slouken@5310
|
44 |
else
|
slouken@5310
|
45 |
SDL_CFLAGS=`$SDL_CONFIG $sdlconf_args --cflags`
|
slouken@5310
|
46 |
SDL_LIBS=`$SDL_CONFIG $sdlconf_args --libs`
|
slouken@5310
|
47 |
|
slouken@5310
|
48 |
sdl_major_version=`$SDL_CONFIG $sdl_args --version | \
|
slouken@5310
|
49 |
sed 's/\([[0-9]]*\).\([[0-9]]*\).\([[0-9]]*\)/\1/'`
|
slouken@5310
|
50 |
sdl_minor_version=`$SDL_CONFIG $sdl_args --version | \
|
slouken@5310
|
51 |
sed 's/\([[0-9]]*\).\([[0-9]]*\).\([[0-9]]*\)/\2/'`
|
slouken@5310
|
52 |
sdl_micro_version=`$SDL_CONFIG $sdl_config_args --version | \
|
slouken@5310
|
53 |
sed 's/\([[0-9]]*\).\([[0-9]]*\).\([[0-9]]*\)/\3/'`
|
slouken@5310
|
54 |
if test "x$enable_sdltest" = "xyes" ; then
|
slouken@5310
|
55 |
ac_save_CFLAGS="$CFLAGS"
|
slouken@5310
|
56 |
ac_save_CXXFLAGS="$CXXFLAGS"
|
slouken@5310
|
57 |
ac_save_LIBS="$LIBS"
|
slouken@5310
|
58 |
CFLAGS="$CFLAGS $SDL_CFLAGS"
|
slouken@5310
|
59 |
CXXFLAGS="$CXXFLAGS $SDL_CFLAGS"
|
slouken@5310
|
60 |
LIBS="$LIBS $SDL_LIBS"
|
slouken@5310
|
61 |
dnl
|
slouken@5310
|
62 |
dnl Now check if the installed SDL is sufficiently new. (Also sanity
|
slouken@5310
|
63 |
dnl checks the results of sdl-config to some extent
|
slouken@5310
|
64 |
dnl
|
slouken@5310
|
65 |
rm -f conf.sdltest
|
slouken@5310
|
66 |
AC_TRY_RUN([
|
slouken@5310
|
67 |
#include <stdio.h>
|
slouken@5310
|
68 |
#include <stdlib.h>
|
slouken@5310
|
69 |
#include <string.h>
|
slouken@5310
|
70 |
#include "SDL.h"
|
slouken@5310
|
71 |
|
slouken@5310
|
72 |
char*
|
slouken@5310
|
73 |
my_strdup (char *str)
|
slouken@5310
|
74 |
{
|
slouken@5310
|
75 |
char *new_str;
|
slouken@5310
|
76 |
|
slouken@5310
|
77 |
if (str)
|
slouken@5310
|
78 |
{
|
slouken@5310
|
79 |
new_str = (char *)malloc ((strlen (str) + 1) * sizeof(char));
|
slouken@5310
|
80 |
strcpy (new_str, str);
|
slouken@5310
|
81 |
}
|
slouken@5310
|
82 |
else
|
slouken@5310
|
83 |
new_str = NULL;
|
slouken@5310
|
84 |
|
slouken@5310
|
85 |
return new_str;
|
slouken@5310
|
86 |
}
|
slouken@5310
|
87 |
|
slouken@5310
|
88 |
int main (int argc, char *argv[])
|
slouken@5310
|
89 |
{
|
slouken@5310
|
90 |
int major, minor, micro;
|
slouken@5310
|
91 |
char *tmp_version;
|
slouken@5310
|
92 |
|
slouken@5310
|
93 |
/* This hangs on some systems (?)
|
slouken@5310
|
94 |
system ("touch conf.sdltest");
|
slouken@5310
|
95 |
*/
|
slouken@5310
|
96 |
{ FILE *fp = fopen("conf.sdltest", "a"); if ( fp ) fclose(fp); }
|
slouken@5310
|
97 |
|
slouken@5310
|
98 |
/* HP/UX 9 (%@#!) writes to sscanf strings */
|
slouken@5310
|
99 |
tmp_version = my_strdup("$min_sdl_version");
|
slouken@5310
|
100 |
if (sscanf(tmp_version, "%d.%d.%d", &major, &minor, µ) != 3) {
|
slouken@5310
|
101 |
printf("%s, bad version string\n", "$min_sdl_version");
|
slouken@5310
|
102 |
exit(1);
|
slouken@5310
|
103 |
}
|
slouken@5310
|
104 |
|
slouken@5310
|
105 |
if (($sdl_major_version > major) ||
|
slouken@5310
|
106 |
(($sdl_major_version == major) && ($sdl_minor_version > minor)) ||
|
slouken@5310
|
107 |
(($sdl_major_version == major) && ($sdl_minor_version == minor) && ($sdl_micro_version >= micro)))
|
slouken@5310
|
108 |
{
|
slouken@5310
|
109 |
return 0;
|
slouken@5310
|
110 |
}
|
slouken@5310
|
111 |
else
|
slouken@5310
|
112 |
{
|
slouken@5310
|
113 |
printf("\n*** 'sdl-config --version' returned %d.%d.%d, but the minimum version\n", $sdl_major_version, $sdl_minor_version, $sdl_micro_version);
|
slouken@5310
|
114 |
printf("*** of SDL required is %d.%d.%d. If sdl-config is correct, then it is\n", major, minor, micro);
|
slouken@5310
|
115 |
printf("*** best to upgrade to the required version.\n");
|
slouken@5310
|
116 |
printf("*** If sdl-config was wrong, set the environment variable SDL_CONFIG\n");
|
slouken@5310
|
117 |
printf("*** to point to the correct copy of sdl-config, and remove the file\n");
|
slouken@5310
|
118 |
printf("*** config.cache before re-running configure\n");
|
slouken@5310
|
119 |
return 1;
|
slouken@5310
|
120 |
}
|
slouken@5310
|
121 |
}
|
slouken@5310
|
122 |
|
slouken@5310
|
123 |
],, no_sdl=yes,[echo $ac_n "cross compiling; assumed OK... $ac_c"])
|
slouken@5310
|
124 |
CFLAGS="$ac_save_CFLAGS"
|
slouken@5310
|
125 |
CXXFLAGS="$ac_save_CXXFLAGS"
|
slouken@5310
|
126 |
LIBS="$ac_save_LIBS"
|
slouken@5310
|
127 |
fi
|
slouken@5310
|
128 |
fi
|
slouken@5310
|
129 |
if test "x$no_sdl" = x ; then
|
slouken@5310
|
130 |
AC_MSG_RESULT(yes)
|
slouken@5310
|
131 |
ifelse([$2], , :, [$2])
|
slouken@5310
|
132 |
else
|
slouken@5310
|
133 |
AC_MSG_RESULT(no)
|
slouken@5310
|
134 |
if test "$SDL_CONFIG" = "no" ; then
|
slouken@5310
|
135 |
echo "*** The sdl-config script installed by SDL could not be found"
|
slouken@5310
|
136 |
echo "*** If SDL was installed in PREFIX, make sure PREFIX/bin is in"
|
slouken@5310
|
137 |
echo "*** your path, or set the SDL_CONFIG environment variable to the"
|
slouken@5310
|
138 |
echo "*** full path to sdl-config."
|
slouken@5310
|
139 |
else
|
slouken@5310
|
140 |
if test -f conf.sdltest ; then
|
slouken@5310
|
141 |
:
|
slouken@5310
|
142 |
else
|
slouken@5310
|
143 |
echo "*** Could not run SDL test program, checking why..."
|
slouken@5310
|
144 |
CFLAGS="$CFLAGS $SDL_CFLAGS"
|
slouken@5310
|
145 |
CXXFLAGS="$CXXFLAGS $SDL_CFLAGS"
|
slouken@5310
|
146 |
LIBS="$LIBS $SDL_LIBS"
|
slouken@5310
|
147 |
AC_TRY_LINK([
|
slouken@5310
|
148 |
#include <stdio.h>
|
slouken@5310
|
149 |
#include "SDL.h"
|
slouken@5310
|
150 |
|
slouken@5310
|
151 |
int main(int argc, char *argv[])
|
slouken@5310
|
152 |
{ return 0; }
|
slouken@5310
|
153 |
#undef main
|
slouken@5310
|
154 |
#define main K_and_R_C_main
|
slouken@5310
|
155 |
], [ return 0; ],
|
slouken@5310
|
156 |
[ echo "*** The test program compiled, but did not run. This usually means"
|
slouken@5310
|
157 |
echo "*** that the run-time linker is not finding SDL or finding the wrong"
|
slouken@5310
|
158 |
echo "*** version of SDL. If it is not finding SDL, you'll need to set your"
|
slouken@5310
|
159 |
echo "*** LD_LIBRARY_PATH environment variable, or edit /etc/ld.so.conf to point"
|
slouken@5310
|
160 |
echo "*** to the installed location Also, make sure you have run ldconfig if that"
|
slouken@5310
|
161 |
echo "*** is required on your system"
|
slouken@5310
|
162 |
echo "***"
|
slouken@5310
|
163 |
echo "*** If you have an old version installed, it is best to remove it, although"
|
slouken@5310
|
164 |
echo "*** you may also be able to get things to work by modifying LD_LIBRARY_PATH"],
|
slouken@5310
|
165 |
[ echo "*** The test program failed to compile or link. See the file config.log for the"
|
slouken@5310
|
166 |
echo "*** exact error that occured. This usually means SDL was incorrectly installed"
|
slouken@5310
|
167 |
echo "*** or that you have moved SDL since it was installed. In the latter case, you"
|
slouken@5310
|
168 |
echo "*** may want to edit the sdl-config script: $SDL_CONFIG" ])
|
slouken@5310
|
169 |
CFLAGS="$ac_save_CFLAGS"
|
slouken@5310
|
170 |
CXXFLAGS="$ac_save_CXXFLAGS"
|
slouken@5310
|
171 |
LIBS="$ac_save_LIBS"
|
slouken@5310
|
172 |
fi
|
slouken@5310
|
173 |
fi
|
slouken@5310
|
174 |
SDL_CFLAGS=""
|
slouken@5310
|
175 |
SDL_LIBS=""
|
slouken@5310
|
176 |
ifelse([$3], , :, [$3])
|
slouken@5310
|
177 |
fi
|
slouken@5310
|
178 |
AC_SUBST(SDL_CFLAGS)
|
slouken@5310
|
179 |
AC_SUBST(SDL_LIBS)
|
slouken@5310
|
180 |
rm -f conf.sdltest
|
slouken@5310
|
181 |
])
|