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.

преди 18 години
преди 18 години
преди 18 години
преди 18 години
преди 19 години
преди 18 години
преди 18 години
преди 19 години
преди 19 години
преди 18 години
преди 18 години
преди 19 години
преди 19 години
преди 18 години
123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343
  1. # $Id$
  2. AC_INIT(caca/caca.c)
  3. AC_PREREQ(2.50)
  4. AC_CONFIG_AUX_DIR(autotools)
  5. AC_CANONICAL_SYSTEM
  6. AM_INIT_AUTOMAKE(libcaca, 0.10)
  7. AM_CONFIG_HEADER(config.h)
  8. AM_PROG_CC_C_O
  9. AC_PROG_CPP
  10. AC_PROG_CXX
  11. AM_PROG_AS
  12. AC_LIBTOOL_WIN32_DLL
  13. AM_PROG_LIBTOOL
  14. AC_LIBTOOL_CXX
  15. AC_C_CONST
  16. AC_C_INLINE
  17. AC_TYPE_SIGNAL
  18. dnl AC_PROG_EGREP only exists in autoconf 2.54+, so we use AC_EGREP_CPP right
  19. dnl now otherwise it might be set in an obscure if statement. Same thing for
  20. dnl PKG_PROG_PKG_CONFIG which needs to be called first.
  21. AC_EGREP_CPP(yes, foo)
  22. PKG_PROG_PKG_CONFIG()
  23. dnl Check the C++ compiler and preprocessor.
  24. AC_PROG_CXX
  25. AC_PROG_CXXCPP
  26. dnl Set the test language as C++
  27. AC_LANG([C++])
  28. dnl output driver features
  29. AC_ARG_ENABLE(slang,
  30. [ --enable-slang slang graphics support (autodetected)])
  31. AC_ARG_ENABLE(ncurses,
  32. [ --enable-ncurses ncurses graphics support (autodetected)])
  33. AC_ARG_ENABLE(win32,
  34. [ --enable-win32 Windows console support (autodetected)])
  35. AC_ARG_ENABLE(conio,
  36. [ --enable-conio DOS conio.h graphics support (autodetected)])
  37. AC_ARG_ENABLE(x11,
  38. [ --enable-x11 X11 support (autodetected)])
  39. AC_ARG_ENABLE(gl,
  40. [ --enable-gl OpenGL support (autodetected)])
  41. AC_ARG_ENABLE(network,
  42. [ --enable-network Network support (autodetected)])
  43. AC_ARG_ENABLE(vga,
  44. [ --enable-vga VGA support (default disabled)])
  45. AC_ARG_ENABLE(cpp,
  46. [ --enable-cpp C++ bindings (autodetected)])
  47. dnl example programs features
  48. AC_ARG_ENABLE(imlib2,
  49. [ --enable-imlib2 Imlib2 graphics support (default enabled)])
  50. dnl conditional builds
  51. AC_ARG_ENABLE(doc,
  52. [ --enable-doc build documentation (needs doxygen and LaTeX)])
  53. AC_CHECK_HEADERS(stdio.h stdarg.h signal.h sys/ioctl.h sys/time.h inttypes.h endian.h unistd.h)
  54. AC_CHECK_FUNCS(signal ioctl vsnprintf getenv putenv strcasecmp)
  55. AC_CHECK_FUNCS(usleep gettimeofday)
  56. AC_MSG_CHECKING(for Sleep)
  57. AC_TRY_COMPILE([#include <windows.h>],[Sleep(42);],
  58. [AC_MSG_RESULT(yes)
  59. AC_DEFINE(HAVE_SLEEP, 1, [Define to 1 if you have the `Sleep' function.])],
  60. [AC_MSG_RESULT(no)])
  61. AC_MSG_CHECKING(for fsin/fcos)
  62. AC_TRY_COMPILE([],[asm("fsin\n\tfcos");],
  63. [AC_MSG_RESULT(yes)
  64. AC_DEFINE(HAVE_FSIN_FCOS, 1, [Define to 1 if you have the `fsin' and `fcos' operands.])],
  65. [AC_MSG_RESULT(no)])
  66. AC_MSG_CHECKING(for fldln2/fxch/fyl2x)
  67. AC_TRY_COMPILE([],[asm("fldln2; fldln2; fxch; fyl2x");],
  68. [AC_MSG_RESULT(yes)
  69. AC_DEFINE(HAVE_FLDLN2, 1, [Define to 1 if you have the `fldln2' and other floating points operands.])],
  70. [AC_MSG_RESULT(no)])
  71. AC_CHECK_LIB(m, sin, MATH_LIBS="${MATH_LIBS} -lm")
  72. if test "${enable_cpp}" != "no"; then
  73. ac_cv_my_have_cpp="yes"
  74. AC_DEFINE(USE_CPP, 1,
  75. Define to 1 to enable C++ bindigs)
  76. fi
  77. CACA_DRIVERS=""
  78. if test "${enable_conio}" != "no"; then
  79. ac_cv_my_have_conio="no"
  80. AC_CHECK_HEADERS(conio.h,
  81. [AC_MSG_CHECKING(for ScreenUpdate in pc.h)
  82. AC_EGREP_HEADER(ScreenUpdate, pc.h,
  83. [ac_cv_my_have_conio="yes"
  84. AC_MSG_RESULT(yes)
  85. AC_DEFINE(SCREENUPDATE_IN_PC_H, 1,
  86. Define to 1 if <pc.h> defines ScreenUpdate.)
  87. AC_DEFINE(USE_CONIO, 1, Define to 1 to activate the conio.h backend driver)
  88. CACA_DRIVERS="${CACA_DRIVERS} conio"],
  89. [AC_MSG_RESULT(no)])])
  90. if test "${ac_cv_my_have_conio}" = "no" -a "${enable_conio}" = "yes"; then
  91. AC_MSG_ERROR([cannot find conio.h])
  92. fi
  93. fi
  94. if test "${enable_win32}" != "no"; then
  95. ac_cv_my_have_win32="no"
  96. AC_CHECK_HEADERS(windows.h,
  97. [AC_MSG_CHECKING(for AllocConsole in windows.h)
  98. AC_EGREP_HEADER(AllocConsole, windows.h,
  99. [ac_cv_my_have_win32="yes"
  100. AC_MSG_RESULT(yes)
  101. AC_DEFINE(ALLOCCONSOLE_IN_WINDOWS_H, 1,
  102. Define to 1 if <windows.h> defines AllocConsole.)
  103. AC_DEFINE(USE_WIN32, 1, Define to 1 to activate the win32 backend driver)
  104. CACA_DRIVERS="${CACA_DRIVERS} win32"],
  105. [AC_MSG_RESULT(no)])])
  106. if test "${ac_cv_my_have_win32}" = "no" -a "${enable_win32}" = "yes"; then
  107. AC_MSG_ERROR([cannot find win32 console development files])
  108. fi
  109. fi
  110. if test "${enable_slang}" != "no"; then
  111. ac_cv_my_have_slang="no"
  112. AC_CHECK_HEADERS(slang.h slang/slang.h,
  113. [ac_cv_my_have_slang="yes"
  114. AC_DEFINE(USE_SLANG, 1, Define to 1 to activate the slang backend driver)
  115. AC_CHECK_LIB(slang, SLsmg_utf8_enable,
  116. [AC_DEFINE(HAVE_SLSMG_UTF8_ENABLE, 1, Define to 1 if you have the `SLsmg_utf8_enable' function.)])
  117. CPPFLAGS="${CPPFLAGS} -DOPTIMISE_SLANG_PALETTE=1"
  118. CACA_LIBS="${CACA_LIBS} -lslang"
  119. CACA_DRIVERS="${CACA_DRIVERS} slang"
  120. break])
  121. if test "${ac_cv_my_have_slang}" = "no" -a "${enable_slang}" = "yes"; then
  122. AC_MSG_ERROR([cannot find slang development files])
  123. fi
  124. fi
  125. if test "${enable_x11}" != "no"; then
  126. AC_PATH_X
  127. AC_CHECK_LIB(X11, XOpenDisplay,
  128. [ac_cv_my_have_x11="yes"
  129. if test -n "${x_includes}"; then X_CFLAGS="-I${x_includes}"; fi
  130. if test -n "${x_libraries}"; then X_LIBS="-lX11 -L${x_libraries}"; fi
  131. AC_DEFINE(USE_X11, 1, Define to 1 to activate the X11 backend driver)
  132. CPPFLAGS="${CPPFLAGS} ${X_CFLAGS}"
  133. CACA_LIBS="${CACA_LIBS} ${X_LIBS}"
  134. CACA_DRIVERS="${CACA_DRIVERS} x11"],
  135. [ac_cv_my_have_x11="no"],
  136. [[-lXt -L${x_libraries}]])
  137. AC_CHECK_HEADERS(X11/XKBlib.h)
  138. if test "${ac_cv_my_have_x11}" != "yes" -a "${enable_x11}" = "yes"; then
  139. AC_MSG_ERROR([cannot find X11 development files])
  140. fi
  141. fi
  142. if test "${enable_gl}" != "no"; then
  143. ac_cv_my_have_gl="no"
  144. AC_CHECK_HEADERS(GL/gl.h OpenGL/gl.h,
  145. [AC_CHECK_HEADERS(GL/glut.h,
  146. [AC_CHECK_LIB(glut, glutMainLoopEvent,
  147. [ac_cv_my_have_gl="yes"])]
  148. [AC_CHECK_LIB(glut, glutCheckLoop,
  149. [ac_cv_my_have_gl="yes"
  150. AC_DEFINE(HAVE_GLUTCHECKLOOP, 1, Define to 1 if you have the `glutCheckLoop' function.)])])
  151. break])
  152. if test "${ac_cv_my_have_gl}" = "yes"; then
  153. AC_DEFINE(USE_GL, 1, Define to 1 to activate the OpenGL backend driver)
  154. CACA_LIBS="${CACA_LIBS} -lGL -lglut"
  155. CACA_DRIVERS="${CACA_DRIVERS} gl"
  156. elif test "${enable_gl}" = "yes"; then
  157. AC_MSG_ERROR([cannot find OpenGL+FreeGLUT development files])
  158. fi
  159. fi
  160. if test "${enable_network}" != "no"; then
  161. ac_cv_my_have_network="no"
  162. AC_CHECK_HEADERS(sys/socket.h,
  163. [ac_cv_my_have_network="yes"
  164. AC_DEFINE(USE_NETWORK, 1, Define to 1 to activate the network backend driver)
  165. CACA_DRIVERS="${CACA_DRIVERS} network"])
  166. if test "${ac_cv_my_have_network}" = "no" -a "${enable_network}" = "yes"; then
  167. AC_MSG_ERROR([cannot find standard networking socket files])
  168. fi
  169. fi
  170. if test "${enable_ncurses}" != "no"; then
  171. ac_cv_my_have_ncurses="no"
  172. AC_CHECK_HEADERS(ncursesw/ncurses.h ncurses/ncurses.h ncurses.h curses.h,
  173. [ncurses="no"
  174. AC_CHECK_LIB(ncursesw, initscr,
  175. [ncurses="-lncursesw"],
  176. [AC_CHECK_LIB(ncurses, initscr,
  177. [ncurses="-lncurses"])])
  178. if test "${ncurses}" = "no"; then
  179. continue
  180. fi
  181. ac_cv_my_have_ncurses="yes"
  182. AC_DEFINE(USE_NCURSES, 1, Define to 1 to activate the ncurses backend driver)
  183. CACA_LIBS="${CACA_LIBS} ${ncurses}"
  184. CACA_DRIVERS="${CACA_DRIVERS} ncurses"
  185. dnl Check for resizeterm or resize_term
  186. SAVED_LIBS="${LIBS}"
  187. LIBS="${LIBS} ${ncurses}"
  188. AC_CHECK_FUNCS(resizeterm resize_term)
  189. LIBS="${SAVED_LIBS}"
  190. break])
  191. if test "${ac_cv_my_have_ncurses}" = "no" -a "${enable_ncurses}" = "yes"; then
  192. AC_MSG_ERROR([cannot find ncurses development files])
  193. fi
  194. fi
  195. if test "${enable_vga}" = "yes"; then
  196. ac_cv_my_have_vga="yes"
  197. CPPFLAGS="${CPPFLAGS} -I. -D__KERNEL__ -nostdinc -include kernel/kernel.h"
  198. CFLAGS="${CFLAGS} -fno-builtin -O2 -Wall"
  199. CCASFLAGS="${CCASFLAGS} -I."
  200. LDFLAGS="${LDFLAGS} -nostdlib -Wl,-N -Wl,-Ttext -Wl,100000"
  201. AC_DEFINE(USE_VGA, 1, Define to 1 to activate the VGA backend driver)
  202. CACA_DRIVERS="${CACA_DRIVERS} vga"
  203. fi
  204. AM_CONDITIONAL(USE_KERNEL, test "${ac_cv_my_have_vga}" = "yes")
  205. AC_MSG_CHECKING(valid output drivers)
  206. if test -z "${CACA_DRIVERS}"; then
  207. AC_MSG_RESULT(no)
  208. AC_MSG_ERROR([no output drivers were selected!])
  209. else
  210. AC_MSG_RESULT([${CACA_DRIVERS}])
  211. fi
  212. AC_SUBST(MATH_LIBS)
  213. AC_SUBST(CACA_LIBS)
  214. AC_SUBST(CUCUL_LIBS)
  215. AC_SUBST(CUCUL++_LIBS)
  216. # Optimizations
  217. CFLAGS="${CFLAGS} -g -O2 -fno-strength-reduce -fomit-frame-pointer"
  218. # Code qui fait des warnings == code de porc == deux baffes dans ta gueule
  219. # [Jylam] Removed -Wshadow in order to avoid ncurses/gl conflict
  220. # (Comme quoi on est pas les seuls porcs)
  221. CFLAGS="${CFLAGS} -Wall -Wpointer-arith -Wcast-align -Wcast-qual -Wstrict-prototypes -Waggregate-return -Wmissing-prototypes -Wnested-externs -Wsign-compare"
  222. # Build the PIC library?
  223. case "${target_os}" in
  224. *mingw32* | *cygwin* | *djgpp*)
  225. NEED_PIC=false
  226. ;;
  227. *)
  228. NEED_PIC=:
  229. ;;
  230. esac
  231. AM_CONDITIONAL(NEED_PIC, ${NEED_PIC})
  232. # Use Imlib2?
  233. ac_cv_my_have_imlib2="no"
  234. save_CPPFLAGS="${CPPFLAGS}"
  235. if test "${enable_imlib2}" != "no"; then
  236. AC_PATH_PROG(IMLIB2_CONFIG, imlib2-config, no)
  237. if test "${IMLIB2_CONFIG}" != "no"; then
  238. CPPFLAGS="${CPPFLAGS} `imlib2-config --cflags` -DX_DISPLAY_MISSING=1"
  239. fi
  240. AC_CHECK_HEADERS(Imlib2.h,
  241. ac_cv_my_have_imlib2="yes",
  242. [ac_cv_my_have_imlib2="no"
  243. AC_MSG_ERROR([[cannot find Imlib2 development files. Without Imlib2, cacaview will only open BMP files; if this is really what you want, re-run configure with '--disable-imlib2'.]])])
  244. CPPFLAGS="${save_CPPFLAGS}"
  245. fi
  246. AM_CONDITIONAL(USE_IMLIB2, test "${ac_cv_my_have_imlib2}" = "yes")
  247. # Build development tools?
  248. PANGOFT2="no"
  249. PKG_CHECK_MODULES(pangoft2, pangoft2,
  250. [PANGOFT2="yes"])
  251. AM_CONDITIONAL(USE_PANGO, test "${PANGO}" != "no")
  252. # Build documentation?
  253. DOXYGEN="no"
  254. LATEX="no"
  255. if test "${enable_doc}" != "no"; then
  256. AC_PATH_PROG(DOXYGEN, doxygen, no)
  257. if test "${DOXYGEN}" = "no"; then
  258. AC_MSG_ERROR([[cannot find doxygen, which is needed to build the libcaca documentation; if this is really what you want, re-run configure with '--disable-doc'.]])
  259. fi
  260. # Build LaTeX documentation?
  261. AC_PATH_PROG(LATEX, pdflatex, no)
  262. AC_PATH_PROG(DVIPS, dvips, no)
  263. if test "${DVIPS}" = "no"; then
  264. LATEX="no"
  265. fi
  266. AC_MSG_CHECKING(for a4wide.sty)
  267. if test -f /usr/share/texmf/tex/latex/misc/a4wide.sty; then
  268. AC_MSG_RESULT(yes)
  269. elif test -f /usr/share/texmf-tetex/tex/latex/a4wide/a4wide.sty; then
  270. AC_MSG_RESULT(yes)
  271. else
  272. LATEX="no"
  273. AC_MSG_RESULT(no)
  274. fi
  275. fi
  276. AM_CONDITIONAL(BUILD_DOCUMENTATION, test "${DOXYGEN}" != "no")
  277. AM_CONDITIONAL(USE_LATEX, test "${LATEX}" != "no")
  278. AC_CONFIG_FILES([
  279. Makefile
  280. kernel/Makefile
  281. cucul/Makefile
  282. caca/Makefile
  283. src/Makefile
  284. test/Makefile
  285. tools/Makefile
  286. cpp/Makefile
  287. doc/Makefile
  288. autotools/Makefile
  289. debian/Makefile
  290. msvc/Makefile
  291. ])
  292. AC_CONFIG_FILES([
  293. cucul/cucul.pc
  294. caca/caca.pc
  295. doc/doxygen.cfg
  296. ])
  297. AC_CONFIG_FILES([caca-config], [chmod 0755 caca-config])
  298. AC_OUTPUT