1 AC_INIT(screen-message, 0.18, mail@joachim-breitner.de)
2 AC_CONFIG_SRCDIR([sm.c])
3 AM_INIT_AUTOMAKE([foreign])
4 AC_CONFIG_FILES([setup.iss README.Win32])
7 [*mingw32msvc*],[win32=true],
10 AM_CONDITIONAL(WIN32, test "x$win32" = xtrue)
11 AS_IF([test "x$win32" = xtrue],[
12 AC_CHECK_TOOL(WINE,[wine],[],[])
13 AC_CHECK_TOOL(WINEPATH,[winepath],[],[])
17 [AS_HELP_STRING([--with-issc=PATH],
18 [path to the Inno Setup compiler for win32 cross builds])],
22 AS_IF([test "x$with_iscc" != xno],
24 AC_SUBST(ISCC,[$with_iscc])
27 AS_IF([test "x$win32" = xtrue],
28 [AC_MSG_ERROR("You need to specify --with-iscc when building for Win32")]
34 AC_ARG_WITH([win32-gtk],
35 [AS_HELP_STRING([--with-win32-gtk=PATH],
36 [path to the gtk+ source bundle for win32 cross builds])],
40 AS_IF([test "x$with_win32_gtk" != xno],
41 [AC_SUBST(WIN32_GTK, [`$WINEPATH -w $with_win32_gtk`])
42 AS_VAR_APPEND(PKG_CONFIG," --define-variable prefix=$with_win32_gtk")
43 export PKG_CONFIG_PATH="$with_win32_gtk/lib/pkgconfig:$PKG_CONFIG_PATH"
46 AS_IF([test "x$win32" = xtrue],
47 [AC_MSG_ERROR("You need to specify --with-win32-gtk when building for Win32")]
52 AC_CONFIG_HEADERS(config.h)
58 PKG_CHECK_MODULES(DEPS, gtk+-2.0 >= 2.10 gdk-2.0 >= 2.10 pango >= 1.16)
62 AC_CONFIG_FILES([Makefile])