1 AC_INIT(screen-message, 0.19, 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],[],[])
14 AC_CHECK_TOOL(WINDRES,[windres],[],[])
18 [AS_HELP_STRING([--with-issc=PATH],
19 [path to the Inno Setup compiler for win32 cross builds])],
23 AS_IF([test "x$with_iscc" = xyes],[
24 AC_MSG_ERROR("You need to pass a parameter to --with-iscc")
27 AS_IF([test "x$with_iscc" != xno],
29 AC_SUBST(ISCC,[$with_iscc])
32 AS_IF([test "x$win32" = xtrue],
33 [AC_MSG_ERROR("You need to specify --with-iscc when building for Win32")]
39 AC_ARG_WITH([win32-gtk],
40 [AS_HELP_STRING([--with-win32-gtk=PATH],
41 [path to the gtk+ source bundle for win32 cross builds])],
45 AS_IF([test "x$with_win32_gtk" = xyes],[
46 AC_MSG_ERROR("You need to pass a parameter to --with-win32_-gtk")
49 AS_IF([test "x$with_win32_gtk" != xno],
50 [AC_SUBST(WIN32_GTK, [`$WINEPATH -w $with_win32_gtk`])
51 AS_VAR_APPEND(PKG_CONFIG," --define-variable prefix=$with_win32_gtk")
52 export PKG_CONFIG_PATH="$with_win32_gtk/lib/pkgconfig:$PKG_CONFIG_PATH"
55 AS_IF([test "x$win32" = xtrue],
56 [AC_MSG_ERROR("You need to specify --with-win32-gtk when building for Win32")]
61 AC_CONFIG_HEADERS(config.h)
67 PKG_CHECK_MODULES(DEPS, gtk+-2.0 >= 2.10 gdk-2.0 >= 2.10 pango >= 1.16)
71 AC_CONFIG_FILES([Makefile])