configure.ac 14 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463
  1. # Process this file with autogen.sh to produce a configure script.
  2. AC_INIT(supertuxkart,0.8)
  3. AC_CONFIG_SRCDIR([src/main.cpp])
  4. AC_PREREQ(2.61)
  5. # ================================================
  6. # Initialize the automake stuff
  7. # set the $host variable based on local machine/os
  8. # ================================================
  9. AC_CANONICAL_HOST
  10. AM_INIT_AUTOMAKE([foreign tar-ustar])
  11. # =====================================================
  12. # Set the default CFLAGS/CXXFLAGS
  13. # If these were not set, the AC_PROG_CC and AC_PROG_CXX
  14. # scripts set them to "-g -O2".
  15. # =====================================================
  16. CFLAGS="$CFLAGS -Wall -Wstrict-prototypes -Wmissing-prototypes"
  17. CXXFLAGS="$CXXFLAGS -Wall"
  18. # ===================
  19. # Check for compilers
  20. # ===================
  21. AC_PROG_CC
  22. AC_PROG_CPP
  23. AC_PROG_CXX
  24. # This macro defines WORDS_BIGENDIAN if building for a big endian machine.
  25. AC_C_BIGENDIAN
  26. AC_LANG(C++)
  27. # ===========================
  28. # Check for `configure' flags
  29. # ===========================
  30. SUMMARY="\nSummary of optional components:\n==============================="
  31. AC_ARG_ENABLE(debug, [AS_HELP_STRING(--enable-debug,
  32. [enable debugging info])])
  33. if test x$enable_debug = xyes; then
  34. AC_DEFINE([DEBUG], [], [enable debugging cheats and shortcuts])
  35. CFLAGS="$CFLAGS -g -pg"
  36. CXXFLAGS="$CXXFLAGS -g -pg"
  37. SUMMARY="$SUMMARY\nEnabled debugging, please disable for a release!!"
  38. else
  39. CFLAGS="$CFLAGS -DNDEBUG"
  40. CXXFLAGS="$CXXFLAGS -DNDEBUG"
  41. SUMMARY="$SUMMARY\nDisabled debugging, asserts have been turned off"
  42. fi
  43. AC_ARG_ENABLE(optimization, [AS_HELP_STRING(--disable-optimization,
  44. [disable compiler optimizations])],,
  45. enable_optimization=yes)
  46. if test x$enable_optimization = xyes; then
  47. CFLAGS="$CFLAGS -O2"
  48. CXXFLAGS="$CXXFLAGS -O2"
  49. else
  50. SUMMARY="$SUMMARY\nDisabled compiler optimizations."
  51. fi
  52. # ===================
  53. # Checks for programs.
  54. # ===================
  55. AC_PROG_MAKE_SET
  56. AC_PROG_RANLIB
  57. AC_PROG_INSTALL
  58. # ===============================
  59. # Check for MS Windows environment
  60. # ================================
  61. AC_CHECK_HEADER(windows.h)
  62. # ==================================
  63. # check for OpenGL related libraries
  64. # ==================================
  65. case "${host}" in
  66. *darwin*|*macosx*)
  67. opengl_LIBS="$LIBS -framework Carbon -framework OpenGL -framework IOKit -framework AGL"
  68. ;;
  69. *-*-cygwin* | *-*-mingw32*)
  70. # CygWin under Windoze.
  71. echo Win32 specific hacks...
  72. AC_DEFINE([WIN32], 1, [Define for Win32 platforms])
  73. AC_DEFINE([NOMINMAX], 1, [Define for Win32 platforms])
  74. opengl_LIBS="-lopengl32 -luser32 -lgdi32 -lm -lwinmm"
  75. joystick_LIBS="$joystick_LIBS -lwinmm"
  76. LDFLAGS="$LDFLAGS -mwindows"
  77. echo "Will link apps with $LIBS"
  78. ;;
  79. *)
  80. # X-Windows based machines
  81. save_LIBS=$LIBS
  82. AC_SEARCH_LIBS(glNewList, [ GL GLcore MesaGL ])
  83. opengl_LIBS="$LIBS"
  84. LIBS=$save_LIBS
  85. if test "x$ac_cv_search_glNewList" = "x-lGLcore"; then
  86. # if GLcore found, then also check for GL
  87. AC_SEARCH_LIBS(glXCreateContext, GL)
  88. fi
  89. ;;
  90. esac
  91. # ========================================
  92. # check for OpenAL libraries
  93. # ========================================
  94. save_LIBS=$LIBS
  95. case "${host}" in
  96. *darwin*|*macosx*)
  97. # search for OpenAL installed in a UNIX way first. This is necessary since OS X 10.4
  98. # comes with an OpenAL framework that's too old, so to retain 10.4 support we need to
  99. # build OpenAL from source, and can't use Apple's framework.
  100. AC_SEARCH_LIBS(alGenBuffers, [openal alut], have_al_lib=yes)
  101. # We couldn't find OpenAL installed the UNIX way, so fall back to using frameworks
  102. if test x$have_al_lib != xyes; then
  103. LIBS="-framework OpenAL $LIBS"
  104. have_al_lib=yes
  105. fi
  106. ;;
  107. *)
  108. AC_SEARCH_LIBS(alGenBuffers, [openal alut], have_al_lib=yes)
  109. ;;
  110. esac
  111. if test x$have_al_lib = xyes; then
  112. # Apple has the headers in OpenAL/al.h instead of AL/al.h
  113. AC_CHECK_HEADERS([AL/al.h OpenAL/al.h], have_al_hdr=yes)
  114. fi
  115. if test x$have_al_hdr != xyes; then
  116. AC_MSG_ERROR([[cannot find useable OpenAL installation. You need to install OpenAL.]])
  117. fi
  118. openal_LIBS="$LIBS"
  119. LIBS="$save_LIBS"
  120. # ====================
  121. # check for Ogg Vorbis
  122. # ====================
  123. save_LIBS=$LIBS
  124. # also check in /usr/local
  125. CPPFLAGS="${CPPFLAGS} -I/usr/local/include"
  126. LDFLAGS="$LDFLAGS -L/usr/local/lib"
  127. # search for the libraries needed to use ogg vorbis
  128. AC_SEARCH_LIBS(ov_open, [vorbisfile], have_vorbisfile_lib=yes, have_vorbisfile_lib=no, [-lvorbis])
  129. if test x$have_vorbisfile_lib = xyes; then
  130. # check for the headers needed by ogg vorbis
  131. AC_CHECK_HEADER(vorbis/vorbisfile.h, have_vorbisfile_hdr=yes)
  132. AC_CHECK_HEADER(ogg/ogg.h, have_ogg_hdr=yes)
  133. fi
  134. SUMMARY="$SUMMARY\n"
  135. if test x$have_vorbisfile_hdr = xyes -a x$have_ogg_hdr = xyes; then
  136. AC_DEFINE([HAVE_OGGVORBIS], 1, [Defined when Ogg Vorbis is available])
  137. SUMMARY="$SUMMARY\nWe have Ogg Vorbis support."
  138. else
  139. AC_MSG_ERROR([[cannot find useable Ogg Vorbis installation. You need to install libogg and libvorbis.]])
  140. #SUMMARY="$SUMMARY\nNo Ogg Vorbis support - the game will play with sound effects, but without music."
  141. #SUMMARY="$SUMMARY\nPlease install ogg vorbis!"
  142. fi
  143. oggvorbis_LIBS="$LIBS"
  144. LIBS=$save_LIBS
  145. # The following are C++ items that need to be tested for with the c++
  146. # compiler
  147. AC_LANG_PUSH(C++)
  148. # ==================
  149. # Check for irrlicht
  150. # ==================
  151. AC_ARG_WITH(irrlicht, [AS_HELP_STRING(--with-irrlicht=PREFIX,
  152. [specify the prefix path to irrlicht])])
  153. if test "x$with_irrlicht" != "x" ; then
  154. CPPFLAGS="${CPPFLAGS} -I $with_irrlicht/include -I $with_irrlicht/include/irrlicht"
  155. AC_CHECK_HEADER(irrlicht.h, have_irrlicht_hdr=yes)
  156. if test x$have_irrlicht_hdr != xyes; then
  157. AC_MSG_ERROR([Can not find irrlicht in $with_irrlicht.])
  158. fi
  159. else
  160. CPPFLAGS_Save=$CPPFLAGS
  161. # check in /usr
  162. echo " in /usr/ : "
  163. CPPFLAGS="${CPPFLAGS_Save} -I/usr/include/irrlicht"
  164. AC_CHECK_HEADER(irrlicht.h, irrlicht_found_in_usr=yes, irrlicht_found_in_usr=no)
  165. # if it's not found there, try /usr/local instead
  166. if test x$irrlicht_found_in_usr == xyes; then
  167. with_irrlicht="/usr"
  168. else
  169. # I'd like to fall back to check /usr/local second, but stupid autotools does not support
  170. # checking for a header in 2 directories because it caches results
  171. #AC_MSG_ERROR([Can't find irrlicht installation in /usr, use --with-irrlicht...])
  172. # erase cached result
  173. unset ac_cv_header_irrlicht_h
  174. echo " in /usr/local/ : "
  175. CPPFLAGS="${CPPFLAGS_Save} -I/usr/local/include/irrlicht"
  176. AC_CHECK_HEADER(irrlicht.h, irrlicht_found_in_usr_local=yes, irrlicht_found_in_usr_local=no)
  177. if test x$irrlicht_found_in_usr_local == xyes; then
  178. with_irrlicht="/usr/local"
  179. else
  180. AC_MSG_ERROR([Can not find irrlicht installation in standard prefixes, use --with-irrlicht...])
  181. fi
  182. fi
  183. CPPFLAGS="${CPPFLAGS_Save} -I ${with_irrlicht}/include/irrlicht"
  184. fi
  185. case "${host}" in
  186. *-*-linux* )
  187. irrlicht_LIBS="-L/$with_irrlicht/lib/Linux -L/$with_irrlicht/lib -lIrrlicht -lX11 -lpthread"
  188. ;;
  189. *darwin*|*macosx*)
  190. irrlicht_LIBS="-L/$with_irrlicht/lib/ -lIrrlicht -framework Cocoa"
  191. ;;
  192. *freebsd*)
  193. irrlicht_LIBS="-L/$with_irrlicht/lib/ -lIrrlicht -lpthread"
  194. esac
  195. # ---- Check these flags do work by building a small irrLicht sample
  196. echo "checking for irrlicht libraries..."
  197. save_LIBS=$LIBS
  198. LIBS="$LIBS $irrlicht_LIBS $opengl_LIBS"
  199. irrlicht_sample_built_fine="false"
  200. AC_TRY_RUN(
  201. [
  202. # include "irrlicht.h"
  203. int main() {
  204. irr::createDevice(irr::video::EDT_NULL);
  205. return 0;
  206. }
  207. ],
  208. irrlicht_sample_built_fine="true",
  209. irrlicht_sample_built_fine="false"
  210. )
  211. case "${host}" in
  212. *-*-linux* )
  213. # If base irrLicht flags failed, try again with Xxf86vm
  214. # FIXME: this program when run prints out two lines (version numbers) to stdout
  215. if test x$irrlicht_sample_built_fine = xfalse; then
  216. LIBS="$LIBS -lXxf86vm"
  217. works_with_Xxf86vm="false"
  218. AC_TRY_RUN([
  219. # include "irrlicht.h"
  220. int main() {
  221. irr::createDevice(irr::video::EDT_NULL);
  222. return 0;
  223. }
  224. ],
  225. works_with_Xxf86vm="true",
  226. )
  227. if test x$works_with_Xxf86vm = xtrue; then
  228. irrlicht_LIBS="$irrlicht_LIBS -lXxf86vm"
  229. irrlicht_sample_built_fine="true"
  230. fi
  231. fi
  232. ;;
  233. esac
  234. if test x$irrlicht_sample_built_fine = xfalse; then
  235. AC_MSG_ERROR([Cann not build test irrLicht program. Check config.log to see the errors])
  236. fi
  237. # ---- Check we have the minimum required irrLicht version
  238. echo -n "checking irrlicht version is recent enough... "
  239. irrlicht_min_version_met="false"
  240. # Note that irrlicht 1.8 potentially needs additional flags (-lXcursor, or
  241. # undefine _IRR_LINUX_XCURSOR_ # in IrrCompileConfig.h). Since there might
  242. # be other changes, for now I remove support for irrlicht trunk/1.8
  243. AC_TRY_RUN(
  244. [
  245. # include "irrlicht.h"
  246. int main() {
  247. #if (IRRLICHT_VERSION_MAJOR == 1 && IRRLICHT_VERSION_MINOR == 7)
  248. #error "STK needs irrlicht 1.8* to work properly (which might be only available"
  249. #error "as svn trunk atm"
  250. #else
  251. // ok
  252. #endif
  253. return 0;
  254. }
  255. ],
  256. irrlicht_min_version_met="true",
  257. irrlicht_min_version_met="false"
  258. )
  259. if test x$irrlicht_min_version_met = xfalse; then
  260. AC_MSG_ERROR([Your irrLicht is too old, please update irrLicht.
  261. You need irrlicht 1.8.
  262. While irrlicht 1.8 is not released, we recommend using version 3995 from irrlicht SVN trunk.])
  263. else
  264. echo "yes"
  265. fi
  266. LIBS=$save_LIBS
  267. # ==================
  268. # Check for Fribidi
  269. # ==================
  270. save_LIBS=$LIBS
  271. # also check in /usr/local
  272. CPPFLAGS="${CPPFLAGS} -I/usr/local/include"
  273. LDFLAGS="$LDFLAGS -L/usr/local/lib"
  274. # search for the libraries needed to use ogg vorbis
  275. AC_SEARCH_LIBS(fribidi_log2vis, [fribidi], have_fribidi=yes, have_fribidi=no)
  276. if test x$have_fribidi = xyes; then
  277. AC_CHECK_HEADER(fribidi/fribidi.h, have_fribidi_hdr=yes)
  278. fi
  279. SUMMARY="$SUMMARY\n"
  280. if test x$have_fribidi = xyes -a x$have_fribidi_hdr = xyes; then
  281. AC_DEFINE([ENABLE_BIDI], 1, [Defined when Fribidi is available])
  282. SUMMARY="$SUMMARY\nFribidi (RTL languages support) support enabled."
  283. fribidi_LIBS="$LIBS"
  284. else
  285. SUMMARY="$SUMMARY\nFribidi (RTL languages support) support disabled."
  286. fribidi_LIBS=""
  287. fi
  288. LIBS=$save_LIBS
  289. # Libcurl is needed in all build modes
  290. PKG_CHECK_MODULES(LIBCURL, libcurl >= 0.1)
  291. # ======================================================
  292. # Try to supply the SVN revision number for the compiler
  293. # ======================================================
  294. AC_CHECK_PROGS(have_svnversion,[svnversion],"no")
  295. if test x$have_svnversion != xno; then
  296. SVNVERSION="`svnversion $srcdir`"
  297. AC_DEFINE_UNQUOTED([SVNVERSION],"$SVNVERSION",["SVN revision number"])
  298. fi
  299. # ==============
  300. # Bullet physics
  301. # ==============
  302. AC_DEFINE([BT_NO_PROFILE], [], [Disable bullet internal profiling])
  303. BULLETTREE="lib/bullet"
  304. bullet_LIBS="-L../lib/bullet/src -lbulletdynamics -lbulletcollision -lbulletmath"
  305. # ====
  306. # enet
  307. # ====
  308. AC_CHECK_FUNC(gethostbyaddr_r, [AC_DEFINE(HAS_GETHOSTBYADDR_R)])
  309. AC_CHECK_FUNC(gethostbyname_r, [AC_DEFINE(HAS_GETHOSTBYNAME_R)])
  310. AC_CHECK_FUNC(poll, [AC_DEFINE(HAS_POLL)])
  311. AC_CHECK_FUNC(fcntl, [AC_DEFINE(HAS_FCNTL)])
  312. AC_CHECK_FUNC(inet_pton, [AC_DEFINE(HAS_INET_PTON)])
  313. AC_CHECK_FUNC(inet_ntop, [AC_DEFINE(HAS_INET_NTOP)])
  314. AC_CHECK_MEMBER(struct msghdr.msg_flags, [AC_DEFINE(HAS_MSGHDR_FLAGS)], , [#include <sys/socket.h>])
  315. AC_CHECK_TYPE(socklen_t, [AC_DEFINE(HAS_SOCKLEN_T)], ,
  316. #include <sys/types.h>
  317. #include <sys/socket.h>
  318. )
  319. AC_EGREP_HEADER(MSG_MAXIOVLEN, /usr/include/sys/socket.h, AC_DEFINE(ENET_BUFFER_MAXIMUM, [MSG_MAXIOVLEN]))
  320. AC_EGREP_HEADER(MSG_MAXIOVLEN, socket.h, AC_DEFINE(ENET_BUFFER_MAXIMUM, [MSG_MAXIOVLEN]))
  321. case "${host}" in
  322. *-*-cygwin* | *-*-mingw32*)
  323. enet_LIBS="-Lenet -lenet -lws2_32"
  324. ;;
  325. *)
  326. enet_LIBS="-L../lib/enet -lenet"
  327. ;;
  328. esac
  329. ENETTREE="lib/enet"
  330. # ==========================================
  331. # Check for a known compiler bug, details in
  332. # src/bullet/src/Makefile.am
  333. # ==========================================
  334. ORIGCXXFLAGS="$CXXFLAGS"
  335. CXXFLAGS="$CXXFLAGS -fno-elide-constructors"
  336. AC_COMPILE_IFELSE([AC_LANG_PROGRAM()],
  337. AC_MSG_RESULT(yes); NOELIDE=-fno-elide-constructors,
  338. AC_MSG_RESULT(no); NOELIDE="")
  339. CXXFLAGS="$ORIGCXXFLAGS"
  340. AC_SUBST(NOELIDE)
  341. # =========================
  342. # subst bars in Makefile.am
  343. # =========================
  344. AC_SUBST(irrlicht_LIBS)
  345. AC_SUBST(fribidi_LIBS)
  346. AC_SUBST(bullet_LIBS)
  347. AC_SUBST(enet_LIBS)
  348. AC_SUBST(opengl_LIBS)
  349. AC_SUBST(openal_LIBS)
  350. AC_SUBST(oggvorbis_LIBS)
  351. AC_SUBST(BULLETTREE)
  352. AC_SUBST(ENETTREE)
  353. # ================
  354. # Create makefiles
  355. # ================
  356. AC_CONFIG_FILES([ \
  357. Makefile \
  358. data/Makefile \
  359. data/challenges/Makefile \
  360. data/fonts/Makefile \
  361. data/gfx/Makefile \
  362. data/grandprix/Makefile \
  363. data/gui/Makefile \
  364. data/karts/Makefile \
  365. data/models/Makefile \
  366. data/music/Makefile \
  367. data/po/Makefile \
  368. data/shaders/Makefile \
  369. data/sfx/Makefile \
  370. data/textures/Makefile \
  371. data/tracks/Makefile \
  372. data/tutorials/Makefile \
  373. doc/Makefile \
  374. src/Makefile \
  375. src/ide/Makefile \
  376. lib/bullet/Makefile \
  377. lib/bullet/src/Makefile \
  378. lib/enet/Makefile \
  379. tools/Makefile
  380. ])
  381. AC_OUTPUT
  382. echo -e $SUMMARY