X-Git-Url: http://code.vuplus.com/gitweb/?a=blobdiff_plain;f=configure.ac;h=4902a9c31bf85d7b9bd6df69195c8c637a5dce8a;hb=215bf47e62c91dffdab521c91ac7b261c8de08bb;hp=15c1212a5a22e2e938556ae56b79986497b07fea;hpb=059c9a03c8cc02b0c595e3a5599be04dc157f725;p=vuplus_dvbapp diff --git a/configure.ac b/configure.ac index 15c1212..4902a9c 100644 --- a/configure.ac +++ b/configure.ac @@ -1,5 +1,5 @@ AC_INIT([enigma2],[2.8.0],[enigma2-devel@lists.elitedvb.net]) -AM_INIT_AUTOMAKE([dist-bzip2 no-define tar-pax]) +AM_INIT_AUTOMAKE([dist-bzip2 no-define tar-pax -Wno-portability]) AC_CONFIG_HEADERS([enigma2_config.h]) # Silent rules are available since 1.11, but older versions @@ -11,7 +11,7 @@ AC_SYS_LARGEFILE AC_PROG_CC AC_PROG_CXX -LT_INIT +m4_ifdef([LT_INIT], [LT_INIT], [AC_PROG_LIBTOOL]) AC_CONFIG_MACRO_DIR([m4]) AC_CHECK_HEADERS([dbox/fp.h dbox/lcd-ks0713.h]) @@ -34,6 +34,9 @@ AX_PTHREAD TUXBOX_APPS_DVB +AM_CONDITIONAL(HAVE_GIT_DIR, test -d "$srcdir/.git") +AM_CONDITIONAL(HAVE_FAKE_GIT_DIR, test -f "$srcdir/.git/last_commit_info") + PKG_CHECK_MODULES(BASE, [freetype2 fribidi gstreamer-0.10 gstreamer-pbutils-0.10 libdvbsi++ libpng libxml-2.0 sigc++-1.2]) PKG_CHECK_MODULES(LIBDDVD, libdreamdvd, HAVE_LIBDDVD="yes", HAVE_LIBDDVD="no") AM_CONDITIONAL(HAVE_LIBDDVD, test "$HAVE_LIBDDVD" = "yes") @@ -82,6 +85,11 @@ if test "$with_memcheck" = "yes"; then AC_DEFINE([MEMLEAK_CHECK],[1],[Define to 1 to enable memory leak checks]) fi +AC_ARG_WITH(po, + AS_HELP_STRING([--with-po],[enable updating of po files]), + [with_po="$withval"],[with_po="no"]) +AM_CONDITIONAL(UPDATE_PO, test "$with_po" = "yes") + CPPFLAGS="$CPPFLAGS $PYTHON_CPPFLAGS" CXXFLAGS="$CXXFLAGS $BASE_CFLAGS $PTHREAD_CFLAGS $DEBUG_CFLAGS -fno-rtti -fno-exceptions -Wall" @@ -95,6 +103,7 @@ data/defaults/Dream/Makefile data/defaults/Dream/hdbouquets/Makefile data/defaults/Dream/sdbouquets/Makefile data/extensions/Makefile +data/keymaps/Makefile data/skin_default/Makefile data/skin_default/menu/Makefile data/skin_default/icons/Makefile @@ -185,6 +194,9 @@ lib/python/Plugins/SystemPlugins/Videomode/Makefile lib/python/Plugins/SystemPlugins/Videomode/meta/Makefile lib/python/Plugins/SystemPlugins/WirelessLan/Makefile lib/python/Plugins/SystemPlugins/WirelessLan/meta/Makefile +lib/python/Plugins/SystemPlugins/FactoryTest/Makefile +lib/python/Plugins/SystemPlugins/Fancontrol/Makefile +lib/python/Plugins/SystemPlugins/Fancontrol/meta/Makefile lib/python/Tools/Makefile lib/service/Makefile lib/components/Makefile @@ -194,4 +206,5 @@ tools/Makefile tools/enigma2.sh enigma2.pc ]) +AC_DEFINE(BUILD_VUPLUS,1,[Define to 1 for vuplus]) AC_OUTPUT