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.
 
 
 

418 lines
12 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. CXXFLAGS="${CXXFLAGS} -fno-exceptions -fno-rtti"
  122. dnl Optimizations
  123. CXXFLAGS="${CXXFLAGS} ${REL} ${OPT}"
  124. dnl Code qui fait des warnings == code de porc == deux baffes dans ta gueule
  125. CXXFLAGS="${CXXFLAGS} -Wall -Wextra -Wpointer-arith -Wcast-align -Wcast-qual -Wshadow -Wsign-compare"
  126. AC_CHECK_LIB(m, sin, MATH_LIBS="${MATH_LIBS} -lm")
  127. AC_CHECK_LIB(pthread, main, LIBS="$LIBS -lpthread")
  128. AC_CHECK_LIB(util, forkpty,
  129. [UTIL_LIBS="${UTIL_LIBS} -lutil"
  130. dnl Override future forkpty detection
  131. ac_cv_func_forkpty="yes"])
  132. AC_CHECK_FUNCS(forkpty)
  133. dnl Are we on the PS3?
  134. ac_cv_my_have_ps3="no"
  135. AC_CHECK_LIB(sysmodule_stub, cellSysmoduleLoadModule,
  136. [ac_cv_my_have_ps3="yes"
  137. LOL_LIBS="${LOL_LIBS} -lsysmodule_stub -lsysutil_stub -lresc_stub"
  138. dnl For PSGL
  139. AC_DEFINE(HAVE_GLES_2X, 1, Define to 1 if GLES 2.x is available) # FIXME: hack
  140. GL_LIBS="${GL_LIBS} -lPSGL -lgcm_cmd -lgcm_sys_stub"
  141. dnl This is the old way; we now use CELL_SDK instead of CELLSDK
  142. if test "x${CELLSDK}" != x -a "x${CELL_SDK}" = x; then
  143. CELL_SDK="${CELLSDK}"
  144. fi
  145. if test "x${enable_debug}" = xyes; then
  146. GL_LIBS="${GL_LIBS} -L${CELL_SDK}/target/ppu/lib/PSGL/RSX/debug"
  147. elif test "x${enable_release}" = xyes; then
  148. GL_LIBS="${GL_LIBS} -L${CELL_SDK}/target/ppu/lib/PSGL/RSX/ultra-opt"
  149. else
  150. GL_LIBS="${GL_LIBS} -L${CELL_SDK}/target/ppu/lib/PSGL/RSX/opt"
  151. fi
  152. dnl For the runtime Cg compiler
  153. GL_LIBS="${GL_LIBS} -lcgc -lPSGLcgc"
  154. dnl For the PNG decoder
  155. LOL_LIBS="${LOL_LIBS} -lpngdec_stub"
  156. dnl For the pad library
  157. LOL_LIBS="${LOL_LIBS} -lio_stub -lusbd_stub -lpadfilter"
  158. dnl Disable this warning, it's too verbose with vector.h
  159. CXXFLAGS="${CXXFLAGS} -Wno-sign-compare"
  160. AC_PATH_PROG(MAKE_FSELF, make_fself, no)
  161. if test "${MAKE_FSELF}" = "no"; then
  162. AC_MSG_ERROR([[Building for PS3 but make_fself not found]])
  163. fi],
  164. [MAKE_FSELF=no])
  165. AM_CONDITIONAL(USE_PS3, test "${ac_cv_my_have_ps3}" != "no")
  166. dnl Are we building using MinGW?
  167. LIBS_save="$LIBS"
  168. LIBS="$LIBS -mwindows -mwin32"
  169. AC_MSG_CHECKING(for -mwindows -mwin32)
  170. AC_TRY_LINK([], [],
  171. [AC_MSG_RESULT(yes)
  172. CXXFLAGS="${CXXFLAGS} -mwindows -mwin32"
  173. LOL_LIBS="${LOL_LIBS} -uWinMain -u_WinMain@16"],
  174. [AC_MSG_RESULT(no)])
  175. LIBS="$LIBS_save"
  176. dnl Are we on the Xbox 360?
  177. dnl Answer: NO! we don't know how to build for it anyway
  178. AM_CONDITIONAL(USE_X360, false)
  179. dnl Are we on a Direct3D 9 platform?
  180. #ac_cv_my_have_d3d9="no"
  181. #AC_CHECK_HEADERS(d3d9.h, [ac_cv_my_have_d3d9="yes"])
  182. #if test "${ac_cv_my_have_d3d9}" != "no"; then
  183. # D3D_LIBS="${D3D_LIBS} -ld3d9 -ld3dx9 -lxinput"
  184. # AC_DEFINE(USE_D3D9, 1, Define to 1 to use DirectX 9)
  185. #fi
  186. #AM_CONDITIONAL(USE_D3D9, test "${ac_cv_my_have_d3d9}" != "no")
  187. LOL_CHECK_OPENGL
  188. LOL_CHECK_SDL
  189. dnl Use Flex's FlexLexer.h or ours?
  190. ac_cv_my_have_flexlexer_h="no"
  191. AC_LANG_PUSH(C++)
  192. AC_CHECK_HEADERS(FlexLexer.h,
  193. dnl Ensure that FlexLexer::yleng is of type int, and not size_t like
  194. dnl on recent Apple systems. It would break all our existing code.
  195. [AC_MSG_CHECKING(for FlexLexer.h validity)
  196. AC_COMPILE_IFELSE(
  197. [AC_LANG_PROGRAM([#include <FlexLexer.h>
  198. class Foo : public FlexLexer
  199. {
  200. Foo() { int &test = yyleng; }
  201. }],
  202. [])],
  203. [AC_MSG_RESULT(yes)
  204. ac_cv_my_have_flexlexer_h="yes"],
  205. [AC_MSG_RESULT(no)])])
  206. AC_LANG_POP(C++)
  207. if test "x${ac_cv_my_have_flexlexer_h}" = "xno"; then
  208. LOL_CFLAGS="$LOL_CFLAGS -I\$(top_srcdir)/external/flex-2.5.35/include"
  209. fi
  210. dnl Use NativeClient?
  211. ac_cv_my_have_nacl="no"
  212. AC_LANG_PUSH(C++)
  213. AC_CHECK_HEADERS(ppapi/cpp/instance.h,
  214. [ac_cv_my_have_nacl="yes"
  215. dnl Disable this warning, it's too verbose with vector.h
  216. CXXFLAGS="${CXXFLAGS} -Wno-sign-compare"])
  217. AC_LANG_POP(C++)
  218. AM_CONDITIONAL(USE_NACL, test "${ac_cv_my_have_nacl}" != "no")
  219. dnl Use Android? FIXME: super hacks!
  220. ac_cv_my_have_android="no"
  221. AC_CHECK_LIB(log, __android_log_vprint,
  222. [ac_cv_my_have_android="yes"
  223. LOL_LIBS="${LOL_LIBS} -llog -module"])
  224. AM_CONDITIONAL(USE_ANDROID, test "${ac_cv_my_have_android}" != "no")
  225. dnl Use EGL?
  226. ac_cv_my_have_egl="no"
  227. PKG_CHECK_MODULES(EGL, egl, [ac_cv_my_have_egl="yes"], [:])
  228. if test "${ac_cv_my_have_egl}" != "no"; then
  229. AC_DEFINE(USE_EGL, 1, Define to 1 to use libegl)
  230. EGL_LIBS="${EGL_LIBS} -lX11"
  231. fi
  232. AC_CHECK_LIB(EGL, main,
  233. [ac_cv_my_have_egl="yes"
  234. AC_DEFINE(USE_EGL, 1, Define to 1 to use libegl)
  235. EGL_LIBS="-lEGL"])
  236. dnl Raspberry Pi is different, check for it with extra libs; also we
  237. dnl look for a different function to bypass autoconf caching
  238. AC_CHECK_LIB(EGL, eglGetDisplay,
  239. [ac_cv_my_have_egl="yes"
  240. AC_DEFINE(USE_EGL, 1, Define to 1 to use libegl)
  241. EGL_LIBS="-lEGL -lvcos -lvchiq_arm -lbcm_host -lGLESv2"],
  242. [:],
  243. [-lvcos -lvchiq_arm -lbcm_host -lGLESv2])
  244. AM_CONDITIONAL(USE_EGL, test "${ac_cv_my_have_egl}" != "no")
  245. dnl Use libpng? (replacement for SDL_image)
  246. ac_cv_my_have_libpng="no"
  247. PKG_CHECK_MODULES(LIBPNG, libpng, [ac_cv_my_have_libpng="yes"], [:])
  248. if test "${ac_cv_my_have_libpng}" != "no"; then
  249. AC_DEFINE(USE_LIBPNG, 1, Define to 1 to use libpng)
  250. fi
  251. AM_CONDITIONAL(USE_LIBPNG, test "${ac_cv_my_have_libpng}" != "no")
  252. dnl Use Windows GDI+?
  253. ac_cv_my_have_gdiplus="no"
  254. AC_LANG_PUSH(C++)
  255. AC_CHECK_HEADERS(gdiplus.h,
  256. [ac_cv_my_have_gdiplus="yes"
  257. LOL_LIBS="${LOL_LIBS} -lgdiplus"],
  258. [ac_cv_my_have_gdiplus="no"],
  259. [#include <algorithm>
  260. using std::min;
  261. using std::max;
  262. #include <windows.h>])
  263. AC_LANG_POP(C++)
  264. if test "${ac_cv_my_have_gdiplus}" != "no"; then
  265. AC_DEFINE(USE_GDIPLUS, 1, Define to 1 to use GDI+)
  266. fi
  267. AM_CONDITIONAL(USE_GDIPLUS, test "${ac_cv_my_have_gdiplus}" = "yes")
  268. dnl Use libcaca? (required for font generation)
  269. ac_cv_my_have_caca="no"
  270. PKG_CHECK_MODULES(CACA, caca >= 0.99.beta17, [ac_cv_my_have_caca="yes"], [:])
  271. if test "${ac_cv_my_have_caca}" != "no"; then
  272. AC_DEFINE(USE_CACA, 1, Define to 1 to use libcaca)
  273. fi
  274. AM_CONDITIONAL(USE_CACA, test "${ac_cv_my_have_caca}" != "no")
  275. dnl Use libpipi? (required for video recording)
  276. ac_cv_my_have_pipi="no"
  277. PKG_CHECK_MODULES(PIPI, pipi, [ac_cv_my_have_pipi="yes"], [:])
  278. if test "${ac_cv_my_have_pipi}" != "no"; then
  279. AC_DEFINE(USE_PIPI, 1, Define to 1 to use libpipi)
  280. LOL_CFLAGS="${LOL_CFLAGS} ${PIPI_CFLAGS}"
  281. LOL_LIBS="${LOL_LIBS} ${PIPI_LIBS}"
  282. fi
  283. AM_CONDITIONAL(USE_PIPI, test "${ac_cv_my_have_pipi}" != "no")
  284. dnl Use GTK+? (required for the deushax editor)
  285. ac_cv_my_have_gtkgl="no"
  286. PKG_CHECK_MODULES(GTK, gtk+-2.0, [ac_cv_my_have_gtkgl="yes"], [:])
  287. PKG_CHECK_MODULES(GTKGL, gtkgl-2.0, [:], [ac_cv_my_have_gtkgl="no"])
  288. if test "${ac_cv_my_have_gtkgl}" != "no"; then
  289. AC_DEFINE(USE_GTKGL, 1, Define to 1 to use GtkGl)
  290. fi
  291. AM_CONDITIONAL(USE_GTKGL, test "${ac_cv_my_have_gtkgl}" != "no")
  292. dnl Can we build neercs?
  293. AM_CONDITIONAL(BUILD_NEERCS, test "${ac_cv_my_have_caca}" != "no")
  294. dnl Extra libraries we may need
  295. AC_SUBST(MATH_LIBS)
  296. AC_SUBST(PAM_LIBS)
  297. AC_SUBST(UTIL_LIBS)
  298. dnl How to use the Lol Engine inside this tree
  299. LOL_CFLAGS="$LOL_CFLAGS -I\$(top_srcdir)/src"
  300. LOL_CFLAGS="$LOL_CFLAGS -DLOL_SOURCE_SUBDIR=\\\"\$(subdir)\\\""
  301. LOL_CFLAGS="$LOL_CFLAGS $SDL_CFLAGS $GL_CFLAGS $EGL_CFLAGS $LIBPNG_CFLAGS"
  302. LOL_LIBS="$LOL_LIBS $SDL_LIBS $GL_LIBS $EGL_LIBS $LIBPNG_LIBS $D3D_LIBS"
  303. dnl Extra flags
  304. AC_SUBST(LOL_CFLAGS)
  305. AC_SUBST(LOL_LIBS)
  306. AC_SUBST(USE_DOT)
  307. AC_CONFIG_FILES(
  308. [Makefile
  309. src/Makefile
  310. src/data/Makefile
  311. src/data/font/Makefile
  312. tutorial/Makefile
  313. test/Makefile
  314. test/math/Makefile
  315. test/sandbox/Makefile
  316. test/xolotl/Makefile
  317. build/Makefile
  318. binaries/Makefile
  319. people/Makefile
  320. games/Makefile
  321. tools/Makefile
  322. tools/vimlol/Makefile
  323. tools/vslol/Makefile
  324. doc/Makefile
  325. doc/doxygen.cfg
  326. ])
  327. AC_CONFIG_FILES(
  328. [games/monsterz/Makefile
  329. ])
  330. AC_CONFIG_FILES(
  331. [games/deushax/Makefile
  332. games/deushax/art/Makefile
  333. games/deushax/art/test/Makefile
  334. games/deushax/gfx/Makefile
  335. games/deushax/maps/Makefile
  336. ])
  337. AC_CONFIG_FILES(
  338. [games/mrpigeon/Makefile
  339. ])
  340. AC_CONFIG_FILES(
  341. [games/orbital/Makefile
  342. ])
  343. AC_CONFIG_FILES(
  344. [tools/neercs/Makefile
  345. ])
  346. AC_CONFIG_FILES(
  347. [people/jnat/Makefile
  348. people/jnat/TestProject/Makefile
  349. people/peeweek/Makefile
  350. people/peeweek/private/Makefile
  351. people/touky/Makefile
  352. people/touky/private/Makefile
  353. people/jylam/Makefile
  354. people/jylam/private/Makefile
  355. people/jylam/private/chat/Makefile
  356. ])
  357. AC_OUTPUT