You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 

453 lines
14 KiB

  1. dnl configure script for Lol Engine
  2. AC_INIT(lolengine, 0.0)
  3. AC_PREREQ(2.50)
  4. AC_CONFIG_AUX_DIR(.auto)
  5. AC_CANONICAL_SYSTEM
  6. AM_INIT_AUTOMAKE([subdir-objects no-define tar-ustar silent-rules])
  7. dnl AM_MAINTAINER_MODE
  8. AM_DEFAULT_VERBOSITY=0
  9. dnl Versioning of the separate software we ship
  10. LOLUNIT_VERSION=0.1
  11. AC_SUBST(LOLUNIT_VERSION)
  12. LOLREMEZ_VERSION=0.2
  13. AC_SUBST(LOLREMEZ_VERSION)
  14. AC_CONFIG_HEADER(config.h)
  15. AM_PROG_CC_C_O
  16. AC_PROG_CPP
  17. AC_PROG_CXX
  18. AC_PROG_CXXCPP
  19. AC_PROG_RANLIB
  20. AC_LIBTOOL_WIN32_DLL
  21. AM_PROG_LIBTOOL
  22. AC_LIBTOOL_CXX
  23. AC_C_CONST
  24. AC_C_INLINE
  25. dnl Ensure an error is thrown if pkg-config M4 files are not found.
  26. m4_pattern_allow([^PKG_CONFIG_LIBDIR$])
  27. m4_pattern_forbid([^PKG_CHECK_MODULES$])
  28. m4_pattern_forbid([^PKG_PROG_PKG_CONFIG$])
  29. dnl Same for Lol Engine M4 files.
  30. m4_pattern_forbid([^LOL_])
  31. dnl Do not use PKG_CONFIG_LIBDIR when cross-compiling.
  32. if test "${build}" != "${host}" -a "${PKG_CONFIG_LIBDIR}" = ""; then
  33. export PKG_CONFIG_LIBDIR=/dev/null
  34. fi
  35. dnl AC_PROG_EGREP only exists in autoconf 2.54+, so we use AC_EGREP_CPP right
  36. dnl now otherwise it might be set in an obscure if statement. Same thing for
  37. dnl PKG_PROG_PKG_CONFIG which needs to be called first.
  38. AC_EGREP_CPP(yes, foo)
  39. PKG_PROG_PKG_CONFIG()
  40. dnl Check for a working implementation of sed
  41. AC_PROG_SED
  42. AC_MSG_CHECKING(for a sed that understands \t)
  43. if test "$(echo 'x\x' | "${SED}" 's/.*@<:@^x\t@:>@//')" != x; then
  44. AC_MSG_RESULT(no)
  45. AC_MSG_ERROR([[consider installing GNU sed]])
  46. else
  47. AC_MSG_RESULT(yes)
  48. fi
  49. AM_CONDITIONAL(USE_GLEW, test "${ac_cv_my_have_glew}" != "no")
  50. dnl conditional builds
  51. AC_ARG_ENABLE(debug,
  52. [ --enable-debug build debug versions of the game (default no)])
  53. AC_ARG_ENABLE(release,
  54. [ --enable-release build final release of the game (default no)])
  55. AC_ARG_ENABLE(experimental,
  56. [ --enable-experimental experimental build (default no)])
  57. AC_ARG_ENABLE(doc,
  58. [ --enable-doc build documentation (needs doxygen and LaTeX)])
  59. AC_CHECK_HEADERS(stdio.h stdarg.h inttypes.h endian.h stdint.h getopt.h)
  60. AC_CHECK_HEADERS(fastmath.h pthread.h libutil.h util.h pty.h glob.h unistd.h)
  61. AC_CHECK_HEADERS(sys/ioctl.h sys/ptrace.h sys/stat.h sys/syscall.h sys/user.h)
  62. AC_CHECK_HEADERS(sys/wait.h)
  63. AC_CHECK_HEADERS(linux/kdev_t.h linux/major.h)
  64. AC_CHECK_HEADERS(security/pam_appl.h security/pam_misc.h)
  65. AC_CHECK_HEADERS(pam/pam_appl.h pam/pam_misc.h)
  66. AC_CHECK_FUNCS(getcwd _getcwd)
  67. if test "${enable_debug}" = "yes"; then
  68. AC_DEFINE(LOL_DEBUG, 1, Define to 1 to activate debug)
  69. OPT="-O"
  70. else
  71. OPT="-O3 -ffast-math -fno-strength-reduce -fomit-frame-pointer"
  72. fi
  73. if test "${enable_release}" = "yes"; then
  74. AC_DEFINE(LOL_RELEASE, 1, Define to 1 to activate final release)
  75. REL=""
  76. else
  77. REL="-g"
  78. fi
  79. if test "${enable_experimental}" = "yes"; then
  80. AC_DEFINE(LOL_EXPERIMENTAL, 1, Define to 1 to activate experimental build)
  81. fi
  82. # Build documentation?
  83. DOXYGEN="no"
  84. LATEX="no"
  85. if test "${enable_doc}" != "no"; then
  86. AC_PATH_PROG(DOXYGEN, doxygen, no)
  87. if test "${DOXYGEN}" != "no"; then
  88. # Build LaTeX documentation?
  89. AC_PATH_PROG(LATEX, pdflatex, no)
  90. AC_PATH_PROG(KPSEWHICH, kpsewhich, no)
  91. AC_PATH_PROG(DVIPS, dvips, no)
  92. if test "${DVIPS}" = "no" -o "${KPSEWHICH}" = "no"; then
  93. LATEX="no"
  94. fi
  95. if test "${LATEX}" != "no"; then
  96. AC_MSG_CHECKING(for a4.sty and a4wide.sty)
  97. if "${KPSEWHICH}" a4.sty >/dev/null 2>&1; then
  98. if "${KPSEWHICH}" a4wide.sty >/dev/null 2>&1; then
  99. AC_MSG_RESULT(yes)
  100. else
  101. LATEX="no"
  102. AC_MSG_RESULT(no)
  103. fi
  104. else
  105. LATEX="no"
  106. AC_MSG_RESULT(no)
  107. fi
  108. fi
  109. AC_PATH_PROG(DOT, dot, no)
  110. if test "${DOT}" != "no"; then
  111. USE_DOT="YES"
  112. else
  113. USE_DOT="NO"
  114. fi
  115. fi
  116. fi
  117. AM_CONDITIONAL(BUILD_DOCUMENTATION, test "${DOXYGEN}" != "no")
  118. AM_CONDITIONAL(USE_LATEX, test "${LATEX}" != "no")
  119. AM_CONDITIONAL(USE_DOT, test "${DOT}" != "no")
  120. dnl No exceptions
  121. LOL_TRY_CXXFLAGS(-fno-exceptions, [AM_CXXFLAGS="${AM_CXXFLAGS} -fno-exceptions"])
  122. LOL_TRY_CXXFLAGS(-fno-rtti, [AM_CXXFLAGS="${AM_CXXFLAGS} -fno-rtti"])
  123. dnl Optimizations
  124. AM_CXXFLAGS="${AM_CXXFLAGS} ${REL} ${OPT}"
  125. dnl Code qui fait des warnings == code de porc == deux baffes dans ta gueule
  126. LOL_TRY_CXXFLAGS(-Wall, [AM_CPPFLAGS="${AM_CPPFLAGS} -Wall"])
  127. LOL_TRY_CXXFLAGS(-Wextra, [AM_CPPFLAGS="${AM_CPPFLAGS} -Wextra"])
  128. LOL_TRY_CXXFLAGS(-Wpointer-arith, [AM_CPPFLAGS="${AM_CPPFLAGS} -Wpointer-arith"])
  129. LOL_TRY_CXXFLAGS(-Wcast-align, [AM_CPPFLAGS="${AM_CPPFLAGS} -Wcast-align"])
  130. LOL_TRY_CXXFLAGS(-Wcast-qual, [AM_CPPFLAGS="${AM_CPPFLAGS} -Wcast-qual"])
  131. LOL_TRY_CXXFLAGS(-Wshadow, [AM_CPPFLAGS="${AM_CPPFLAGS} -Wshadow"])
  132. LOL_TRY_CXXFLAGS(-Wsign-compare, [AM_CPPFLAGS="${AM_CPPFLAGS} -Wsign-compare"])
  133. dnl Add these even though they're implicitly set, so that we can safely
  134. dnl remove them from within a Makefile.
  135. LOL_TRY_CXXFLAGS(-Wmaybe-uninitialized, [AM_CPPFLAGS="${AM_CPPFLAGS} -Wmaybe-uninitialized"])
  136. LOL_TRY_CXXFLAGS(-Wnarrowing, [AM_CPPFLAGS="${AM_CPPFLAGS} -Wnarrowing"])
  137. LOL_TRY_CXXFLAGS(-Wunused, [AM_CPPFLAGS="${AM_CPPFLAGS} -Wunused"])
  138. LOL_TRY_CXXFLAGS(-Wstrict-aliasing, [AM_CPPFLAGS="${AM_CPPFLAGS} -Wstrict-aliasing"])
  139. LOL_TRY_CXXFLAGS(-Wreorder, [AM_CPPFLAGS="${AM_CPPFLAGS} -Wreorder"])
  140. LOL_TRY_CXXFLAGS(-Wparentheses, [AM_CPPFLAGS="${AM_CPPFLAGS} -Wparentheses"])
  141. AC_CHECK_LIB(m, sin, MATH_LIBS="${MATH_LIBS} -lm")
  142. AC_CHECK_LIB(pthread, main, LIBS="$LIBS -lpthread")
  143. AC_CHECK_LIB(util, forkpty,
  144. [UTIL_LIBS="${UTIL_LIBS} -lutil"
  145. dnl Override future forkpty detection
  146. ac_cv_func_forkpty="yes"])
  147. AC_CHECK_FUNCS(forkpty)
  148. dnl Are we on the PS3?
  149. ac_cv_my_have_ps3="no"
  150. AC_CHECK_LIB(sysmodule_stub, cellSysmoduleLoadModule,
  151. [ac_cv_my_have_ps3="yes"
  152. LOL_LIBS="${LOL_LIBS} -lsysmodule_stub -lsysutil_stub -lresc_stub"
  153. dnl For PSGL
  154. AC_DEFINE(HAVE_GLES_2X, 1, Define to 1 if GLES 2.x is available) # FIXME: hack
  155. GL_LIBS="${GL_LIBS} -lPSGL -lgcm_cmd -lgcm_sys_stub"
  156. dnl This is the old way; we now use CELL_SDK instead of CELLSDK
  157. if test "x${CELLSDK}" != x -a "x${CELL_SDK}" = x; then
  158. CELL_SDK="${CELLSDK}"
  159. fi
  160. if test "x${enable_debug}" = xyes; then
  161. GL_LIBS="${GL_LIBS} -L${CELL_SDK}/target/ppu/lib/PSGL/RSX/debug"
  162. elif test "x${enable_release}" = xyes; then
  163. GL_LIBS="${GL_LIBS} -L${CELL_SDK}/target/ppu/lib/PSGL/RSX/ultra-opt"
  164. else
  165. GL_LIBS="${GL_LIBS} -L${CELL_SDK}/target/ppu/lib/PSGL/RSX/opt"
  166. fi
  167. dnl For the runtime Cg compiler
  168. GL_LIBS="${GL_LIBS} -lcgc -lPSGLcgc"
  169. dnl For the PNG decoder
  170. LOL_LIBS="${LOL_LIBS} -lpngdec_stub"
  171. dnl For the pad library
  172. LOL_LIBS="${LOL_LIBS} -lio_stub -lusbd_stub -lpadfilter"
  173. dnl Disable this warning, it's too verbose with vector.h
  174. AM_CXXFLAGS="${AM_CXXFLAGS} -Wno-sign-compare"
  175. AC_PATH_PROG(MAKE_FSELF, make_fself, no)
  176. if test "${MAKE_FSELF}" = "no"; then
  177. AC_MSG_ERROR([[Building for PS3 but make_fself not found]])
  178. fi],
  179. [MAKE_FSELF=no])
  180. AM_CONDITIONAL(USE_PS3, test "${ac_cv_my_have_ps3}" != "no")
  181. dnl Are we building using MinGW?
  182. LIBS_save="$LIBS"
  183. LIBS="$LIBS -mwindows -mwin32"
  184. AC_MSG_CHECKING(for -mwindows -mwin32)
  185. AC_TRY_LINK([], [],
  186. [AC_MSG_RESULT(yes)
  187. AM_CXXFLAGS="${AM_CXXFLAGS} -mwindows -mwin32"
  188. LOL_LIBS="${LOL_LIBS} -uWinMain -u_WinMain@16"],
  189. [AC_MSG_RESULT(no)])
  190. LIBS="$LIBS_save"
  191. dnl Are we on the Xbox 360?
  192. dnl Answer: NO! we don't know how to build for it anyway
  193. AM_CONDITIONAL(USE_X360, false)
  194. dnl Are we on a Direct3D 9 platform?
  195. #ac_cv_my_have_d3d9="no"
  196. #AC_CHECK_HEADERS(d3d9.h, [ac_cv_my_have_d3d9="yes"])
  197. #if test "${ac_cv_my_have_d3d9}" != "no"; then
  198. # D3D_LIBS="${D3D_LIBS} -ld3d9 -ld3dx9 -lxinput"
  199. # AC_DEFINE(USE_D3D9, 1, Define to 1 to use DirectX 9)
  200. #fi
  201. #AM_CONDITIONAL(USE_D3D9, test "${ac_cv_my_have_d3d9}" != "no")
  202. LOL_CHECK_OPENGL
  203. LOL_CHECK_SDL
  204. dnl Use Flex's FlexLexer.h or ours?
  205. ac_cv_my_have_flexlexer_h="no"
  206. AC_LANG_PUSH(C++)
  207. AC_CHECK_HEADERS(FlexLexer.h,
  208. dnl Ensure that FlexLexer::yleng is of type int, and not size_t like
  209. dnl on recent Apple systems. It would break all our existing code.
  210. [AC_MSG_CHECKING(for FlexLexer.h validity)
  211. AC_COMPILE_IFELSE(
  212. [AC_LANG_PROGRAM([#include <FlexLexer.h>
  213. class Foo : public FlexLexer
  214. {
  215. Foo() { int &test = yyleng; }
  216. }],
  217. [])],
  218. [AC_MSG_RESULT(yes)
  219. ac_cv_my_have_flexlexer_h="yes"],
  220. [AC_MSG_RESULT(no)])])
  221. AC_LANG_POP(C++)
  222. if test "x${ac_cv_my_have_flexlexer_h}" = "xno"; then
  223. LOL_CFLAGS="$LOL_CFLAGS -I\$(top_srcdir)/external/flex-2.5.35/include"
  224. fi
  225. dnl Use NativeClient?
  226. ac_cv_my_have_nacl="no"
  227. AC_LANG_PUSH(C++)
  228. AC_CHECK_HEADERS(ppapi/cpp/instance.h,
  229. [ac_cv_my_have_nacl="yes"
  230. dnl Disable this warning, it's too verbose with vector.h
  231. AM_CXXFLAGS="${AM_CXXFLAGS} -Wno-sign-compare"])
  232. AC_LANG_POP(C++)
  233. AM_CONDITIONAL(USE_NACL, test "${ac_cv_my_have_nacl}" != "no")
  234. dnl Use Android? FIXME: super hacks!
  235. ac_cv_my_have_android="no"
  236. AC_CHECK_LIB(log, __android_log_vprint,
  237. [ac_cv_my_have_android="yes"
  238. LOL_LIBS="${LOL_LIBS} -llog -module"])
  239. AM_CONDITIONAL(USE_ANDROID, test "${ac_cv_my_have_android}" != "no")
  240. dnl Use EGL?
  241. ac_cv_my_have_egl="no"
  242. PKG_CHECK_MODULES(EGL, egl, [ac_cv_my_have_egl="yes"], [:])
  243. if test "${ac_cv_my_have_egl}" != "no"; then
  244. AC_DEFINE(USE_EGL, 1, Define to 1 to use libegl)
  245. EGL_LIBS="${EGL_LIBS} -lX11"
  246. fi
  247. AC_CHECK_LIB(EGL, main,
  248. [ac_cv_my_have_egl="yes"
  249. AC_DEFINE(USE_EGL, 1, Define to 1 to use libegl)
  250. EGL_LIBS="-lEGL"])
  251. dnl Raspberry Pi is different, check for it with extra libs; also we
  252. dnl look for a different function to bypass autoconf caching
  253. AC_CHECK_LIB(EGL, eglGetDisplay,
  254. [ac_cv_my_have_egl="yes"
  255. AC_DEFINE(USE_EGL, 1, Define to 1 to use libegl)
  256. EGL_LIBS="-lEGL -lvcos -lvchiq_arm -lbcm_host -lGLESv2"],
  257. [:],
  258. [-lvcos -lvchiq_arm -lbcm_host -lGLESv2])
  259. AM_CONDITIONAL(USE_EGL, test "${ac_cv_my_have_egl}" != "no")
  260. dnl Use libpng? (replacement for SDL_image)
  261. ac_cv_my_have_libpng="no"
  262. PKG_CHECK_MODULES(LIBPNG, libpng, [ac_cv_my_have_libpng="yes"], [:])
  263. if test "${ac_cv_my_have_libpng}" != "no"; then
  264. AC_DEFINE(USE_LIBPNG, 1, Define to 1 to use libpng)
  265. fi
  266. AM_CONDITIONAL(USE_LIBPNG, test "${ac_cv_my_have_libpng}" != "no")
  267. dnl Use Windows GDI+?
  268. ac_cv_my_have_gdiplus="no"
  269. AC_LANG_PUSH(C++)
  270. AC_CHECK_HEADERS(gdiplus.h,
  271. [ac_cv_my_have_gdiplus="yes"
  272. LOL_LIBS="${LOL_LIBS} -lgdiplus"],
  273. [ac_cv_my_have_gdiplus="no"],
  274. [#include <algorithm>
  275. using std::min;
  276. using std::max;
  277. #include <windows.h>])
  278. AC_LANG_POP(C++)
  279. if test "${ac_cv_my_have_gdiplus}" != "no"; then
  280. AC_DEFINE(USE_GDIPLUS, 1, Define to 1 to use GDI+)
  281. fi
  282. AM_CONDITIONAL(USE_GDIPLUS, test "${ac_cv_my_have_gdiplus}" = "yes")
  283. dnl Use libcaca? (required for font generation)
  284. ac_cv_my_have_caca="no"
  285. PKG_CHECK_MODULES(CACA, caca >= 0.99.beta17, [ac_cv_my_have_caca="yes"], [:])
  286. if test "${ac_cv_my_have_caca}" != "no"; then
  287. AC_DEFINE(USE_CACA, 1, Define to 1 to use libcaca)
  288. fi
  289. AM_CONDITIONAL(USE_CACA, test "${ac_cv_my_have_caca}" != "no")
  290. dnl Use libpipi? (required for video recording)
  291. ac_cv_my_have_pipi="no"
  292. PKG_CHECK_MODULES(PIPI, pipi, [ac_cv_my_have_pipi="yes"], [:])
  293. if test "${ac_cv_my_have_pipi}" != "no"; then
  294. AC_DEFINE(USE_PIPI, 1, Define to 1 to use libpipi)
  295. LOL_CFLAGS="${LOL_CFLAGS} ${PIPI_CFLAGS}"
  296. LOL_LIBS="${LOL_LIBS} ${PIPI_LIBS}"
  297. fi
  298. AM_CONDITIONAL(USE_PIPI, test "${ac_cv_my_have_pipi}" != "no")
  299. dnl Use GTK+? (required for the deushax editor)
  300. ac_cv_my_have_gtkgl="no"
  301. PKG_CHECK_MODULES(GTK, gtk+-2.0, [ac_cv_my_have_gtkgl="yes"], [:])
  302. PKG_CHECK_MODULES(GTKGL, gtkgl-2.0, [:], [ac_cv_my_have_gtkgl="no"])
  303. if test "${ac_cv_my_have_gtkgl}" != "no"; then
  304. AC_DEFINE(USE_GTKGL, 1, Define to 1 to use GtkGl)
  305. fi
  306. AM_CONDITIONAL(USE_GTKGL, test "${ac_cv_my_have_gtkgl}" != "no")
  307. dnl Can we build neercs?
  308. AM_CONDITIONAL(BUILD_NEERCS, test "${ac_cv_my_have_caca}" != "no")
  309. dnl Extra libraries we may need
  310. AC_SUBST(MATH_LIBS)
  311. AC_SUBST(PAM_LIBS)
  312. AC_SUBST(UTIL_LIBS)
  313. dnl How to use the Lol Engine outside this tree
  314. LOL_CFLAGS="$LOL_CFLAGS $SDL_CFLAGS $GL_CFLAGS $EGL_CFLAGS $LIBPNG_CFLAGS"
  315. LOL_LIBS="$LOL_LIBS $SDL_LIBS $GL_LIBS $EGL_LIBS $LIBPNG_LIBS $D3D_LIBS"
  316. LOL_DEPENDENCIES="${LOL_DEPENDENCIES} \$(top_builddir)/src/liblolcore.a"
  317. LOL_DEPENDENCIES="${LOL_DEPENDENCIES} \$(top_builddir)/src/bullet/liblolbullet.a"
  318. dnl How to use the Lol Engine inside this tree
  319. AM_CPPFLAGS="${AM_CPPFLAGS} -I\$(top_srcdir)/src"
  320. AM_CPPFLAGS="${AM_CPPFLAGS} -DLOL_CONFIG_SOURCESUBDIR=\\\"\$(subdir)\\\""
  321. AM_CPPFLAGS="${AM_CPPFLAGS} ${LOL_CFLAGS}"
  322. AM_LDFLAGS="${AM_LDFLAGS} ${LOL_DEPENDENCIES}"
  323. AM_LDFLAGS="${AM_LDFLAGS} ${LOL_LIBS}"
  324. dnl Extra flags
  325. AC_SUBST(LOL_CFLAGS)
  326. AC_SUBST(LOL_LIBS)
  327. AC_SUBST(LOL_DEPENDENCIES)
  328. AC_SUBST(AM_CFLAGS)
  329. AC_SUBST(AM_CPPFLAGS)
  330. AC_SUBST(AM_CXXFLAGS)
  331. AC_SUBST(AM_LDFLAGS)
  332. AC_SUBST(USE_DOT)
  333. AC_CONFIG_FILES(
  334. [Makefile
  335. src/Makefile
  336. src/bullet/Makefile
  337. src/data/Makefile
  338. src/data/font/Makefile
  339. tutorial/Makefile
  340. test/Makefile
  341. test/math/Makefile
  342. test/sandbox/Makefile
  343. test/xolotl/Makefile
  344. build/Makefile
  345. binaries/Makefile
  346. people/Makefile
  347. games/Makefile
  348. tools/Makefile
  349. tools/vimlol/Makefile
  350. tools/vslol/Makefile
  351. doc/Makefile
  352. doc/doxygen.cfg
  353. ])
  354. AC_CONFIG_FILES(
  355. [games/monsterz/Makefile
  356. ])
  357. AC_CONFIG_FILES(
  358. [games/deushax/Makefile
  359. games/deushax/art/Makefile
  360. games/deushax/art/test/Makefile
  361. games/deushax/gfx/Makefile
  362. games/deushax/maps/Makefile
  363. ])
  364. AC_CONFIG_FILES(
  365. [games/mrpigeon/Makefile
  366. ])
  367. AC_CONFIG_FILES(
  368. [games/orbital/Makefile
  369. ])
  370. AC_CONFIG_FILES(
  371. [tools/neercs/Makefile
  372. ])
  373. AC_CONFIG_FILES(
  374. [people/jnat/Makefile
  375. people/jnat/TestProject/Makefile
  376. people/peeweek/Makefile
  377. people/peeweek/private/Makefile
  378. people/touky/Makefile
  379. people/touky/private/Makefile
  380. people/touky/private/tactics/Makefile
  381. people/jylam/Makefile
  382. people/jylam/private/Makefile
  383. people/jylam/private/chat/Makefile
  384. ])
  385. AC_OUTPUT