From: Andreas Oberritter Date: Thu, 21 Oct 2010 23:02:26 +0000 (+0000) Subject: configure/m4: update some macros (autoupdate) X-Git-Url: http://code.vuplus.com/gitweb/?p=vuplus_dvbapp;a=commitdiff_plain;h=567cdcb4aca0b40ec7017459642f135d6139e585 configure/m4: update some macros (autoupdate) --- diff --git a/configure.ac b/configure.ac old mode 100755 new mode 100644 index d6a9a9f..b6e2d95 --- a/configure.ac +++ b/configure.ac @@ -1,4 +1,4 @@ -AC_INIT(enigma2,2.4) +AC_INIT([enigma2],[2.4]) AM_INIT_AUTOMAKE(enigma2,2.4) TUXBOX_APPS @@ -10,7 +10,7 @@ AC_PROG_RANLIB AC_CONFIG_MACRO_DIR([m4]) AC_ARG_WITH(libsdl, - AC_HELP_STRING([--with-libsdl], [use sdl, yes or no]), + AS_HELP_STRING([--with-libsdl],[use sdl, yes or no]), [[withsdl=$withval]], [[withsdl=yes]] ) @@ -23,7 +23,7 @@ else fi AM_CONDITIONAL(HAVE_DDVDLIB, test "$have_ddvdlib" = "yes") -AM_PATH_PYTHON() +AM_PATH_PYTHON AX_PYTHON_DEVEL #AM_PATH_XINE(1.1.0,, AC_MSG_ERROR([*** Please install xine-lib (devel) first ***])) @@ -84,7 +84,7 @@ LDFLAGS="$LDFLAGS -pthread $PYTHON_LDFLAGS $SDL_LDFLAGS $GSTREAMER_LDFLAGS $GSTR TUXBOX_APPS_GETTEXT -AC_OUTPUT([ +AC_CONFIG_FILES([ Makefile data/Makefile data/fonts/Makefile @@ -191,6 +191,7 @@ main/Makefile tools/Makefile enigma2.pc ]) +AC_OUTPUT #lib/python/Plugins/Extensions/SimpleRSS/Makefile #lib/python/Plugins/Extensions/FileManager/Makefile diff --git a/m4/tuxbox.m4 b/m4/tuxbox.m4 index fb3b7d9..a6cdf93 100644 --- a/m4/tuxbox.m4 +++ b/m4/tuxbox.m4 @@ -2,7 +2,7 @@ AC_DEFUN([TUXBOX_APPS],[ INSTALL="$INSTALL -p" -AC_GNU_SOURCE +AC_USE_SYSTEM_EXTENSIONS AC_SYS_LARGEFILE AC_ARG_WITH(target, @@ -270,18 +270,18 @@ AC_SUBST(USE_NLS) if test "$USE_NLS" = "yes"; then AC_CACHE_CHECK([for GNU gettext in libc], gt_cv_func_gnugettext_libc,[ - AC_TRY_LINK([ + AC_LINK_IFELSE([AC_LANG_PROGRAM([[ #include #ifndef __GNU_GETTEXT_SUPPORTED_REVISION #define __GNU_GETTEXT_SUPPORTED_REVISION(major) ((major) == 0 ? 0 : -1) #endif extern int _nl_msg_cat_cntr; extern int *_nl_domain_bindings; - ],[ + ]], [[ bindtextdomain ("", ""); return (int) gettext ("") + _nl_msg_cat_cntr + *_nl_domain_bindings; - ], gt_cv_func_gnugettext_libc=yes, gt_cv_func_gnugettext_libc=no - )] + ]])],[gt_cv_func_gnugettext_libc=yes],[gt_cv_func_gnugettext_libc=no + ])] ) if test "$gt_cv_func_gnugettext_libc" = "yes"; then @@ -339,7 +339,7 @@ AC_SUBST(CATALOGS) ]) dnl backward compatiblity -AC_DEFUN([AC_GNU_SOURCE], +AC_DEFUN([AC_USE_SYSTEM_EXTENSIONS], [AH_VERBATIM([_GNU_SOURCE], [/* Enable GNU extensions on systems that have them. */ #ifndef _GNU_SOURCE