4 # Process this file with autoconf to produce a configure script.
9 AC_INIT([Yoink], [0.1], [chaz@dogcows.com], [yoink])
13 AC_CONFIG_SRCDIR([src/YoinkApp.cc])
14 AC_CONFIG_MACRO_DIR([m4])
20 # Checks for programs.
21 #~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
32 # Configure platform-specific stuff.
33 #~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
39 AC_PATH_PROGS([WINDRES], [windres $host_alias-windres $host_os-windres])
40 if test "x$WINDRES" = x
42 AC_MSG_ERROR([windres could not be found])
45 AC_PATH_PROGS([MAKENSIS], [makensis])
54 LIBS="$LIBS -Wl,-framework"
58 AM_CONDITIONAL([WIN32], test "$WIN32" = "yes")
62 # Checks for configuration arguments.
63 #~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
65 AC_ARG_ENABLE([developer],
66 [ --enable-developer use all compiler flags developers need],
67 [developer=$enableval],
70 AC_ARG_ENABLE([debug],
71 [ --enable-debug include debugging symbols and features],
75 AC_ARG_ENABLE([profile],
76 [ --enable-profile make a binary for use with gprof profiler],
80 AC_ARG_ENABLE([extra-warnings],
81 [ --enable-extra-warnings make the gcc compiler give more warnings],
82 [extra_warnings=$enableval],
85 AC_ARG_WITH([log-level],
86 [AS_HELP_STRING([--with-log-level=NUM],
87 [0, none... 1, errors... 4, everything (default: 3)])],
92 if test x$developer = xyes
97 if test x$WIN32 != xyes
99 # i haven't had much success with gprof profiling on win32
104 if test x$debug = xyes
106 CFLAGS="$CFLAGS -Wall -O0 -DDEBUG"
107 CXXFLAGS="$CXXFLAGS -Wall -O0 -DDEBUG"
109 CFLAGS="$CFLAGS -O2 -DNDEBUG"
110 CXXFLAGS="$CXXFLAGS -O2 -DNDEBUG"
113 if test x$profile = xyes
116 CXXFLAGS="$CXXFLAGS -pg"
119 if test x$extra_warnings = xyes
121 CFLAGS="$CFLAGS -Wextra -Wno-unused-parameter"
122 CXXFLAGS="$CXXFLAGS -Wextra -Wno-unused-parameter"
125 AC_DEFINE_UNQUOTED([YOINK_LOGLEVEL], [$log_level],
126 [Define to detail level of logging.])
129 if test "x$prefix" = xNONE
131 prefix="$ac_default_prefix"
134 AC_ARG_WITH([assetdir],
135 [AS_HELP_STRING([--with-assetdir=DIR],
136 [real path to assets (default: $datarootdir/yoink)])],
137 [DATADIR="$withval"],
138 [eval DATADIR="$datarootdir/yoink"])
140 if test x$WIN32 = xyes
146 AC_DEFINE_UNQUOTED([YOINK_DATADIR], ["$DATADIR"],
147 [Define to path of game asset directory.])
150 CONFIGFILES="\$HOME/.yoinkrc:/etc/yoinkrc"
152 AC_DEFINE_UNQUOTED([YOINK_CONFIGFILES], ["$CONFIGFILES"],
153 [Define to colon-delimited configuration file paths.])
157 # Split the version number into components.
158 #~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
160 VERSION_MAJOR=$(echo $VERSION | cut -d. -f1)
161 VERSION_MINOR=$(echo $VERSION | cut -d. -f2)
162 VERSION_REVISION=$(echo $VERSION | cut -d. -f3)
164 AC_DEFINE_UNQUOTED([VERSION_MAJOR], [${VERSION_MAJOR:-0}],
165 [Define to major version number component.])
167 AC_DEFINE_UNQUOTED([VERSION_MINOR], [${VERSION_MINOR:-0}],
168 [Define to minor version number component.])
170 AC_DEFINE_UNQUOTED([VERSION_REVISION], [${VERSION_REVISION:-0}],
171 [Define to revision version number component.])
173 if test x$WIN32 = xyes
175 PVERSION="${VERSION_MAJOR:-0}.${VERSION_MINOR:-0}.${VERSION_REVISION:-0}.0"
179 # these are used in src/yoink.rc
183 # Checks for system functions/headers and compiler characteristics.
184 #~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
195 AC_FUNC_ERROR_AT_LINE
197 AC_CHECK_FUNCS([nanosleep strchr strcspn strrchr strstr])
201 AC_CHECK_HEADERS([stddef.h stdint.h stdlib.h string.h unistd.h])
205 # Checks for build dependencies.
206 #~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
209 website="http://www.boost.org/"
216 website="http://www.libsdl.org/"
217 AM_PATH_SDL([1.2.10],
218 [CFLAGS="$CFLAGS $SDL_CFLAGS"
219 CXXFLAGS="$CXXFLAGS $SDL_CFLAGS"
220 LIBS="$LIBS $SDL_LIBS"])
222 ##### opengl, glu #####
223 website="http://www.mesa3d.org/"
224 AC_CHECK_HEADERS([GL/gl.h GL/glu.h],,
226 echo "***** Missing GL headers ($website) *****"])
227 if test x$WIN32 == xyes
229 # autoconf library search macro doesn't find opengl32 on windows because it uses
230 # different name hashing, but it links fine; assume it's there
231 LIBS="$LIBS -lglu32 -lopengl32"
233 AC_SEARCH_LIBS([glEnable], [GL MesaGL],,
235 echo "***** Missing libGL ($website) *****"])
236 AC_SEARCH_LIBS([gluDisk], [GLU MesaGLU],,
238 echo "***** Missing libGLU ($website) *****"])
241 ##### openal, alut #####
242 website="http://connect.creativelabs.com/openal/"
243 AC_CHECK_HEADERS([AL/al.h AL/alut.h],,
245 echo "***** Missing OpenAL headers ($website) *****"])
246 AC_SEARCH_LIBS([alEnable], [openal openal32],,
248 echo "***** Missing libopenal ($website) *****"])
249 AC_SEARCH_LIBS([alutInit], [alut],,
251 echo "***** Missing libalut ($website) *****"])
253 ##### SDL_image #####
254 website="http://www.libsdl.org/projects/SDL_image/"
255 AC_CHECK_HEADERS([SDL/SDL_image.h],,
257 echo "***** Missing SDL_image header ($website) *****"])
258 AC_SEARCH_LIBS([IMG_Load], [SDL_image],,
260 echo "***** Missing libSDL_image ($website) *****"])
262 ##### libvorbis #####
263 website="http://www.xiph.org/downloads/"
264 AC_CHECK_HEADERS([vorbis/codec.h vorbis/vorbisfile.h],,
266 echo "***** Missing vorbis headers ($website) *****"])
267 AC_SEARCH_LIBS([ov_open], [vorbisfile],,
269 echo "***** Missing libvorbisfile ($website) *****"])
271 ##### librt (optional) #####
272 AC_SEARCH_LIBS([clock_gettime], [rt],
273 [AC_DEFINE([HAVE_CLOCK_GETTIME], 1,
274 [Define to 1 if you have the 'clock_gettime' function.])])
277 if test x$missing == xyes
279 AC_MSG_ERROR([please install missing dependencies (see messages above)])
284 # Find the data files to install.
285 #~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
287 DATA_FILES=$(echo $(cd data; \
288 find . -name "*.json" \
293 AC_SUBST([DATA_FILES])
297 # Create the build files.
298 #~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
300 AC_CONFIG_FILES([Makefile
306 make-win32-installer.sh
309 AC_CONFIG_HEADERS([src/config.h])
315 # Print a friendly little message.
316 #~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
319 echo " Configuration complete! :-)"
321 echo " Target: $target"
322 echo " Prefix: $prefix"
323 echo " Data Directory: $DATADIR"
324 echo " Log Level: $log_level"
325 echo " Debug: $debug"
326 echo " Profile: $profile"
327 echo " Extra Warnings: $extra_warnings"
329 echo " To finish the installation, execute:"