AC_INIT(Makefile.am) AM_INIT_AUTOMAKE(wai, 0.1) AM_CONFIG_HEADER(config.h) AC_CANONICAL_HOST AC_PROG_CC AC_PROG_CPP AC_PROG_INSTALL AC_PROG_RANLIB AC_PROG_LIBTOOL #AC_PROG_INTLTOOL([0.23]) AC_HEADER_STDC # Option to enable debugging AC_ARG_ENABLE(debug, [AC_HELP_STRING([ --enable-debug],[Debugging (default=no)])], [with_debug=yes], [with_debug=no]) if test "x$with_debug" == "xyes" ; then CFLAGS="$CFLAGS -ggdb -O0 -DDEBUG -Wall " else CFLAGS="$CFLAGS -O2 -Wall " fi # Hildon library dependencies PKG_CHECK_MODULES(HILDON, hildon-1 glib-2.0) AC_SUBST(HILDON_LIBS) AC_SUBST(HILDON_CFLAGS) # location library PKG_CHECK_MODULES(LIBLOCATION, liblocation ) AC_SUBST(LIBLOCATION_LIBS) AC_SUBST(LIBLOCATION_CFLAGS) # Localisation #GETTEXT_PACKAGE=$PACKAGE #AC_SUBST(GETTEXT_PACKAGE) #AC_DEFINE_UNQUOTED([GETTEXT_PACKAGE], "${GETTEXT_PACKAGE}", [Name of gettext package]) #ALL_LINGUAS="en_GB fi_FI" #AM_GLIB_GNU_GETTEXT # To make application visible in maemo Task Navigator it needs a Desktop # file for the application. # The following line defines install directories for these files. desktopentrydir=`$PKG_CONFIG osso-af-settings --variable=desktopentrydir` # Application locale install directory #localedir=`$PKG_CONFIG osso-af-settings --variable=localedir` # Application pixmaps install directory #pixmapdir=`$PKG_CONFIG osso-af-settings --variable=hildonpixmapdir` # Application icon install directories #icon_26x26dir=$datadir/icons/hicolor/26x26/hildon #icon_34x34dir=$datadir/icons/hicolor/34x34/hildon #icon_40x40dir=$datadir/icons/hicolor/40x40/hildon #icon_50x50dir=$datadir/icons/hicolor/50x50/hildon #icon_scalabledir=$datadir/icons/hicolor/scalable/hildon # Define as variables in Makefiles AC_SUBST(desktopentrydir) #AC_SUBST(localedir) #AC_SUBST(pixmapdir) #AC_SUBST(icon_26x26dir) #AC_SUBST(icon_34x34dir) #AC_SUBST(icon_40x40dir) #AC_SUBST(icon_50x50dir) #AC_SUBST(icon_scalabledir) #AC_DEFINE_UNQUOTED([LOCALEDIR], "${localedir}", [Runtime locale catalog files path]) #AC_DEFINE_UNQUOTED([PIXMAPDIR], "${pixmapdir}", [Runtime pixmap files path]) # Produce output files AC_OUTPUT( Makefile \ src/Makefile )