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.
 
 
 
 
 
 

66 lines
1.9 KiB

  1. # $Id: configure.ac 98 2006-09-22 16:27:37Z sam $
  2. AC_INIT(toilet, 0.0)
  3. AC_PREREQ(2.50)
  4. AC_CONFIG_SRCDIR(src/main.c)
  5. AC_CONFIG_AUX_DIR(autotools)
  6. AC_CANONICAL_SYSTEM
  7. AM_INIT_AUTOMAKE(toilet, 0.0)
  8. AM_CONFIG_HEADER(config.h)
  9. AM_PROG_CC_C_O
  10. AC_PROG_CPP
  11. dnl AC_PROG_EGREP only exists in autoconf 2.54+, so we use AC_EGREP_CPP right
  12. dnl now otherwise it might be set in an obscure if statement. Same thing for
  13. dnl PKG_PROG_PKG_CONFIG which needs to be called first.
  14. AC_EGREP_CPP(yes, foo)
  15. PKG_PROG_PKG_CONFIG()
  16. dnl Don't let pkg-config fuck our cross-compilation environment
  17. m4_pattern_allow([^PKG_CONFIG_LIBDIR$])
  18. if test "$build" != "$host" -a "${PKG_CONFIG_LIBDIR}" = ""; then
  19. export PKG_CONFIG_LIBDIR=/dev/null
  20. fi
  21. AC_CHECK_HEADERS(getopt.h sys/ioctl.h)
  22. AC_CHECK_FUNCS(getopt_long,
  23. [AC_DEFINE(HAVE_GETOPT_LONG, 1, Define to 1 if you have the `getopt_long' function.)],
  24. [AC_CHECK_LIB(gnugetopt, getopt_long,
  25. [AC_DEFINE(HAVE_GETOPT_LONG, 1, Define to 1 if you have the `getopt_long' function.)
  26. GETOPT_LIBS="${GETOPT_LIBS} -lgnugetopt"])])
  27. AC_SUBST(GETOPT_LIBS)
  28. AC_CACHE_CHECK([for TIOCGWINSZ],
  29. [ac_cv_have_tiocgwinsz],
  30. [AC_TRY_COMPILE(
  31. [#include <sys/ioctl.h>],
  32. [struct winsize ws;
  33. ioctl(1, TIOCGWINSZ, &ws);],
  34. ac_cv_have_tiocgwinsz=yes,
  35. ac_cv_have_tiocgwinsz=no)])
  36. if test "${ac_cv_have_tiocgwinsz}" = "yes"; then
  37. AC_DEFINE(HAVE_TIOCGWINSZ, 1, [Define if you have TIOCGWINSZ])
  38. fi
  39. CUCUL="no"
  40. PKG_CHECK_MODULES(cucul, cucul >= 0.99.beta5,
  41. [CUCUL="yes"],
  42. [AC_MSG_RESULT(no)
  43. AC_MSG_ERROR([you need libcucul version 0.99.beta5 or later])])
  44. # Optimizations
  45. CFLAGS="${CFLAGS} -g -O2 -fno-strength-reduce -fomit-frame-pointer"
  46. # Code qui fait des warnings == code de porc == deux baffes dans ta gueule
  47. CFLAGS="${CFLAGS} -Wall -Wpointer-arith -Wcast-align -Wcast-qual -Wstrict-prototypes -Wshadow -Waggregate-return -Wmissing-prototypes -Wnested-externs -Wsign-compare"
  48. AC_OUTPUT([
  49. Makefile
  50. src/Makefile
  51. fonts/Makefile
  52. ])