Mercurial > geeqie.yaz
view configure.in @ 1743:d8e9d0cc640e
Allow to switch to fullscreen mode using LIRC.
Imagine the following situation (which happened to me several times) :
you want to see photos from your bed or your sofa so you launch geeqie
and go to the right directory, then you take your remote control and sit
comfortably far from your keyboard and mouse. And when you want to begin
to watch photos, you realize you forgot to enable full screen! You have
to stand up and to go until your computer and come back, whereas you
could have done it with your remote control.
Patch by Bernard Massot.
author | zas_ |
---|---|
date | Tue, 05 Jan 2010 17:49:50 +0000 |
parents | 768653891f37 |
children |
line wrap: on
line source
dnl Process this file with autoconf to produce a configure script. -*- Autoconf -*- dnl This file is a part of Geeqie project (http://geeqie.sourceforge.net/). dnl Copyright (C) 2008 - 2009 The Geeqie Team dnl dnl This program is free software; you can redistribute it and/or modify dnl it under the terms of the GNU General Public License as published by dnl the Free Software Foundation; either version 2 of the License, or dnl (at your option) any later version. dnl dnl This program is distributed in the hope that it will be useful, dnl but WITHOUT ANY WARRANTY; without even the implied warranty of dnl MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the dnl GNU General Public License for more details. AC_PREREQ(2.57) AC_INIT(geeqie, 1.0beta2, geeqie-devel@lists.sourceforge.net) # Check for rightly dirs AC_CONFIG_SRCDIR([src/main.c]) AC_CONFIG_AUX_DIR(auxdir) AM_INIT_AUTOMAKE AC_CONFIG_HEADER([config.h]) # Only for developers AM_MAINTAINER_MODE AC_ARG_ENABLE(developer, [ Development options: AC_HELP_STRING([--enable-developer], [turn on developers mode [default=no]])], [ __IS_DEVELOPER=yes ], [ if test "x${enable_developer}" != "xyes" then __IS_DEVELOPER=no else __IS_DEVELOPER=yes fi ]) DX_HTML_FEATURE(ON) DX_CHM_FEATURE(OFF) DX_CHI_FEATURE(OFF) DX_MAN_FEATURE(OFF) DX_RTF_FEATURE(OFF) DX_XML_FEATURE(OFF) DX_PDF_FEATURE(OFF) DX_PS_FEATURE(OFF) DX_INIT_DOXYGEN($PACKAGE_NAME, doxygen.conf, doc/doxygen) # Debug support # ---------------------------------------------------------------------- dnl Debugging option dnl FIXME: official release convert default to 'no' dnl AC_ARG_ENABLE([debug-flags], [ Development options: AC_HELP_STRING([--enable-debug-flags], [use compiler flags for debugging [default=no]])], [], [ if test "x${enable_developer}" != "xyes" then enable_debug_flags="no" else enable_debug_flags="yes" fi ]) AC_ARG_ENABLE([debug-log], [ Development options: AC_HELP_STRING([--enable-debug-log], [enable debugging messages [default=yes]])], [], [enable_debug_log="yes"]) if test "x${enable_debug_flags}" != "xno" then if test "x${enable_developer}" = "xyes" then CXXFLAGS="${CXXFLAGS} -Wall" CFLAGS="${CFLAGS} -Wstrict-prototypes -Wall" fi __COMMONFLAGS="-g -O0 -Wextra -Wunused-value -Wunused-variable -Wunused-function -Wunused-label -Wcomment -Wmissing-braces -Wparentheses -Wreturn-type -Wswitch -Wstrict-aliasing -Wno-unused-parameter -Wformat -Wformat-security -DGQ_DEBUG_PATH_UTF8=1" CXXFLAGS="${CXXFLAGS} ${__COMMONFLAGS}" CFLAGS="${CFLAGS} ${__COMMONFLAGS} -Wimplicit-int -Werror-implicit-function-declaration" __IS_DEBUG_FLAGS=yes else __IS_DEBUG_FLAGS=no fi if test "x${enable_debug_log}" != "xno" then AC_DEFINE(DEBUG,1,[Defined if Geeqie is compiled with debugging messages support]) __IS_DEBUG_LOG=yes else __IS_DEBUG_LOG=no fi AM_CONDITIONAL(DEBUG, test x$enable_debug_flags = xyes) AC_ARG_ENABLE(deprecated, [ AC_HELP_STRING([--enable-deprecated], [turn off checking of deprecated functions [default=yes]])], [], [ if test "x${enable_developer}" != "xyes" then enable_deprecated="no" else enable_deprecated="yes" fi ]) if test "x${enable_deprecated}" != "xno" then CXXFLAGS="${CXXFLAGS} -DGTK_DISABLE_DEPRECATED=1 -DGDK_DISABLE_DEPRECATED=1 -DGDK_PIXBUF_DISABLE_DEPRECATED=1 -DG_DISABLE_DEPRECATED=1" CFLAGS="${CFLAGS} -DGTK_DISABLE_DEPRECATED=1 -DGDK_DISABLE_DEPRECATED=1 -DGDK_PIXBUF_DISABLE_DEPRECATED=1 -DG_DISABLE_DEPRECATED=1" __IS_DEPRECATED=yes else __IS_DEPRECATED=no fi AC_ISC_POSIX AC_PROG_CC AC_PROG_CXX AC_STDC_HEADERS AC_ARG_PROGRAM IT_PROG_INTLTOOL([0.35.0]) dnl checks for functions AC_CHECK_FUNCS(strverscmp access fsync fflush) # Check target architecture # Check for Win32 AC_MSG_CHECKING([for some Win32 platform]) case "$target_os" in mingw* | cygwin*) platform_win32=yes AC_DEFINE(PLATFORM_WIN32, 1, [Build on win32 OS]) ;; *) platform_win32=no ;; esac AC_MSG_RESULT([$platform_win32]) AM_CONDITIONAL(PLATFORM_WIN32, test "$platform_win32" = "yes") AC_MSG_CHECKING([for native Win32]) case "$target_os" in mingw*) os_win32=yes AC_DEFINE(OS_WIN32, 1, [Build on native win32 OS]) os_unix=no PATHSEP=';' ;; *) os_win32=no os_unix=yes PATHSEP=':' ;; esac AC_MSG_RESULT([$os_win32]) AC_SUBST(PATHSEP) AM_CONDITIONAL(OS_WIN32, test "$os_win32" = "yes") AM_CONDITIONAL(OS_UNIX, test "$os_unix" = "yes") if test "$os_win32" = "yes"; then AC_CHECK_PROG(ms_librarian, lib.exe, yes, no) AC_CHECK_TOOL(WINDRES, windres, :) else WINDRES=":" fi AM_CONDITIONAL(MS_LIB_AVAILABLE, test x$ms_librarian = xyes) AM_CONDITIONAL(HAVE_WINDRES, test "x$WINDRES" != "x:") AC_SUBST(WINDRES) dnl reasonable guesses for where stuff is installed if test "x$prefix" = "xNONE"; then prefix="/usr/local" else prefix=$prefix fi AM_PATH_GLIB_2_0(2.4.0,,AC_MSG_ERROR(GLIB >= 2.4.0 not installed.)) AM_PATH_GTK_2_0(2.4.0,,AC_MSG_ERROR(GTK+ >= 2.4.0 not installed.)) threads="auto" AC_ARG_ENABLE([threads], AC_HELP_STRING([--disable-threads], [disable thread support]), [threads="${enableval}"]) have_gthread="no" if test "x${threads}" != "xno" ; then PKG_CHECK_MODULES(GTHREAD, [gthread-2.0], have_gthread="yes", [AC_MSG_WARN("No thread support in glib")]) fi if test "x$have_gthread" != "xno"; then AC_DEFINE(HAVE_GTHREAD, 1, Define if you have gthread library) GLIB_CFLAGS="$GTHREAD_CFLAGS" GLIB_LIBS="$GTHREAD_LIBS" fi AC_PATH_PROGS(GDK_PIXBUF_CSOURCE, "gdk-pixbuf-csource") AC_PATH_PROG(GLIB_GENMARSHAL, glib-genmarshal) AC_ARG_WITH(readmedir, [ --with-readmedir=DIR install path for readme files], readmedir=$withval, readmedir="$prefix/share/doc/geeqie-$VERSION") AC_ARG_WITH(htmldir, [ --with-htmldir=DIR install path for html files], htmldir=$withval, htmldir="$readmedir/html") AC_DEFINE_UNQUOTED(GQ_HELPDIR, "$readmedir", [Location of documentation files]) AC_DEFINE_UNQUOTED(GQ_HTMLDIR, "$htmldir", [Location of html documentation]) AC_SUBST(readmedir) AC_SUBST(htmldir) eval "eval appdir=${datadir}/${PACKAGE}" AC_DEFINE_UNQUOTED([GQ_APP_DIR], "$appdir", [Location of application data]) eval "eval gq_bindir=${prefix}/lib/${PACKAGE}" AC_DEFINE_UNQUOTED([GQ_BIN_DIR], "$gq_bindir", [Location of helper scripts and executables]) # LIRC support # ---------------------------------------------------------------------- dnl Check for LIRC client support AC_MSG_CHECKING(if LIRC support is enabled) lirc=no AC_ARG_ENABLE([lirc], AC_HELP_STRING([--disable-lirc], [disable lirc support (auto)]), [ if test "x${enableval}" = "xyes" -a "x$GCC" = "xyes"; then AC_MSG_RESULT(yes) lirc=yes else AC_MSG_RESULT(no) lirc=no fi], AC_MSG_RESULT(no)) AC_ARG_WITH(lirc-prefix, [ --with-lirc-prefix=PATH Prefix where LIRC is installed], [ for dir in `echo "$withval" | tr : ' '`; do if test -d $dir/lib; then CXXFLAGS="$CXXFLAGS -L$dir/lib"; fi if test -d $dir/include; then CXXFLAGS="$CXXFLAGS -I$dir/include"; fi done ]) HAVE_LIRC=no if test "x${lirc}" != "xno" ; then AC_CHECK_HEADER(lirc/lirc_client.h, [AC_CHECK_LIB(lirc_client,lirc_init,[HAVE_LIRC=yes;LIBS=-llirc_client $LIBS;AC_DEFINE([HAVE_LIRC],[],[Define to 1 if LIRC must be used])],,)],) fi AM_CONDITIONAL(HAVE_LIRC, [test "x$HAVE_LIRC" = xyes]) # LCMS support # ---------------------------------------------------------------------- AC_ARG_ENABLE([lcms], AC_HELP_STRING([--disable-lcms], [disable lcms support]), [liblcms=$enableval], [liblcms=auto]) if test "x${liblcms}" != "xno"; then PKG_CHECK_MODULES(LCMS, [lcms >= 1.14], [ HAVE_LCMS=yes AC_DEFINE(HAVE_LCMS, 1, [define to enable use of color profiles with lcms]) ], [ HAVE_LCMS=no AC_MSG_WARN([$LCMS_PKG_ERRORS]) ]) else HAVE_LCMS=disabled fi AM_CONDITIONAL(HAVE_LCMS, [test "x$HAVE_LCMS" = xyes]) AC_SUBST(LCMS_CFLAGS) AC_SUBST(LCMS_LIBS) # Exiv2 support # ---------------------------------------------------------------------- AC_ARG_ENABLE([exiv2], AC_HELP_STRING([--disable-exiv2], [disable exiv2 support]), [libexiv2=$enableval], [libexiv2=auto]) if test "x${libexiv2}" != "xno"; then PKG_CHECK_MODULES(EXIV2, [exiv2 >= 0.11], [ HAVE_EXIV2=yes AC_DEFINE(HAVE_EXIV2, 1, [define to enable exiv2 support]) ], [ HAVE_EXIV2=no AC_MSG_WARN([$EXIV2_PKG_ERRORS]) ]) else HAVE_EXIV2=disabled fi AM_CONDITIONAL(HAVE_EXIV2, [test "x$HAVE_EXIV2" = xyes]) AC_SUBST(EXIV2_CFLAGS) AC_SUBST(EXIV2_LIBS) # Gettext support # ---------------------------------------------------------------------- dnl Set of available languages ALL_LINGUAS="`grep -v '^#' "$srcdir/po/LINGUAS" | tr '\n' ' '`" AC_SUBST([CONFIG_STATUS_DEPENDENCIES],['$(top_srcdir)/po/LINGUAS']) GETTEXT_PACKAGE=$PACKAGE AC_SUBST(GETTEXT_PACKAGE) AC_DEFINE_UNQUOTED([GETTEXT_PACKAGE],["${GETTEXT_PACKAGE}"],[Name of gettext file]) AM_GLIB_GNU_GETTEXT AM_GLIB_DEFINE_LOCALEDIR(GQ_LOCALEDIR) AC_SUBST(CFLAGS) AC_SUBST(CXXFLAGS) AC_SUBST(CPPFLAGS) AC_SUBST(LDFLAGS) # Libchamplain support - used for GPS map facility - experimental # ---------------------------------------------------------------------- AC_ARG_ENABLE([gps], AC_HELP_STRING([--enable-gps], [enable GPS map support - experimental]), [libgps=$enableval], [libgps=auto]) if test "x${libgps}" = "xyes"; then PKG_CHECK_MODULES(LIBCHAMPLAIN, [champlain-0.3 >= 0.3], [ HAVE_LIBCHAMPLAIN=yes AC_DEFINE(HAVE_LIBCHAMPLAIN, 1, [define to enable use of GPS maps]) ], [ HAVE_LIBCHAMPLAIN=no AC_MSG_WARN([$LIBCHAMPLAIN_PKG_ERRORS]) ]) else HAVE_LIBCHAMPLAIN=disabled fi if test "x${libgps}" = "xyes"; then PKG_CHECK_MODULES(LIBCHAMPLAIN_GTK, [champlain-gtk-0.3 >= 0.3], [ HAVE_LIBCHAMPLAIN_GTK=yes AC_DEFINE(HAVE_LIBCHAMPLAIN_GTK, 1, [define to enable use of GPS maps]) ], [ HAVE_LIBCHAMPLAIN_GTK=no AC_MSG_WARN([$LIBCHAMPLAIN_GTK_PKG_ERRORS]) ]) else HAVE_LIBCHAMPLAIN_GTK=disabled fi AM_CONDITIONAL(HAVE_LIBCHAMPLAIN_GTK, [test "x$HAVE_LIBCHAMPLAIN_GTK" = xyes]) AC_SUBST(LIBCHAMPLAIN_GTK_CFLAGS) AC_SUBST(LIBCHAMPLAIN_GTK_LIBS) AH_TOP([ /** \file * \short autogenerated definition by autoheader. * \author Bruclik */ /* * This file is a part of Geeqie project (http://geeqie.sourceforge.net/). * Copyright (C) 2008 - 2009 The Geeqie Team * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. */ #ifndef _INCLUDE_CONFIG_H #define _INCLUDE_CONFIG_H ]) AH_BOTTOM([#endif]) dnl Write the output dnl AC_CONFIG_FILES([ Makefile src/Makefile src/icons/Makefile src/icons/svg/Makefile po/Makefile.in doc/Makefile plugins/Makefile plugins/symlink/Makefile plugins/rotate/Makefile plugins/ufraw/Makefile geeqie.spec ]) AC_OUTPUT dnl Print the results dnl cat > config.report << END Config results: -=-=-=-=-=-=-=-=- Package: Name: $PACKAGE_NAME Version: $PACKAGE_VERSION Patch version: $GQ_PATCH_VERSION Date: $GQ_PATCH_DATE Architecture: UNIX: $os_unix Win32: $platform_win32 (native: $os_win32) Flags: Geeqie: $GQ_CFLAGS DEFS: $DEFS CPPFLAGS: $__CPPFLAGS CFLAGS: $CFLAGS CXXFLAGS: $CXXFLAGS Gtk: $GTK_CFLAGS Glib: $GLIB_CFLAGS Thread: $GTHREAD_LIBS Others: $LCMS_LIBS $EXIV2_LIBS $LIBCHAMPLAIN_LIBS $LIBCHAMPLAIN_GTK_LIBS Localization: NLS support: $USE_NLS LINGUAS: $LINGUAS Settings: Developer: $__IS_DEVELOPER Debug flags: $__IS_DEBUG_FLAGS Debug log: $__IS_DEBUG_LOG Deprecated: $__IS_DEPRECATED Support: LCMS: $HAVE_LCMS Exiv2: $HAVE_EXIV2 Lirc: $HAVE_LIRC Libchamplain: $HAVE_LIBCHAMPLAIN Libchamplain-gtk: $HAVE_LIBCHAMPLAIN_GTK Documentation: Doxygen: $DOXYGEN Formats: $doxy_formats_report END cat config.report cat <<EOF Now you can type "make" to build Geeqie (or you take blue pill and the story ends :) EOF