From 2bbd186b1439d169f96633939ef16b36461a3cfa Mon Sep 17 00:00:00 2001 From: Adrien Destugues Date: Wed, 10 Sep 2014 22:52:15 +0200 Subject: [PATCH] vlc 0.8.6i: hack recipe to build again * Hacked-in Haiku support without changing the automake scripts as they can't be processed with current automake versions * Hacked ffmpeg code to build with ffmpeg 0.10. I hope I didn't break anything here... We really should consider getting a more recent version running on Haiku instead, but this will do for now. --- media-video/vlc/patches/vlc-0.8.6i.patch | 341 - media-video/vlc/patches/vlc-0.8.6i.patchset | 75696 ++++++++++++++++++ media-video/vlc/vlc-0.8.6i.recipe | 88 +- 3 files changed, 75768 insertions(+), 357 deletions(-) delete mode 100644 media-video/vlc/patches/vlc-0.8.6i.patch create mode 100644 media-video/vlc/patches/vlc-0.8.6i.patchset diff --git a/media-video/vlc/patches/vlc-0.8.6i.patch b/media-video/vlc/patches/vlc-0.8.6i.patch deleted file mode 100644 index e0c6c6dda..000000000 --- a/media-video/vlc/patches/vlc-0.8.6i.patch +++ /dev/null @@ -1,341 +0,0 @@ -diff -urN vlc-0.8.6i/configure.ac vlc-0.8.6i-haiku/configure.ac ---- vlc-0.8.6i/configure.ac 2009-02-18 15:15:26.000000000 +0000 -+++ vlc-0.8.6i-haiku/configure.ac 2009-02-21 22:47:18.000000000 +0000 -@@ -256,6 +256,7 @@ - VLC_ADD_LDFLAGS([vlc logger],[-lbe]) - VLC_ADD_LDFLAGS([beos],[-lbe -lmedia -ltranslation -ltracker -lgame]) - VLC_ADD_LDFLAGS([dvdnav dvdread],[-ldl]) -+ VLC_ADD_LDFLAGS([access_file],[-lpoll]) - LDFLAGS_save="${LDFLAGS_save} -lintl"; LDFLAGS="${LDFLAGS_save}" - - dnl Check for BONE -@@ -270,11 +271,24 @@ - VLC_ADD_LDFLAGS([beos],[-lzeta]) - fi - ;; -+ haiku*) -+ SYS=haiku -+ CFLAGS_save="${CFLAGS_save} -Wno-multichar"; CFLAGS="${CFLAGS_save}" -+ CXXFLAGS_save="${CXXFLAGS_save} -Wno-multichar"; CXXFLAGS="${CXXFLAGS_save}" -+ VLC_ADD_CXXFLAGS([haiku],[]) -+ VLC_ADD_LDFLAGS([vlc logger],[-lbe]) -+ VLC_ADD_LDFLAGS([beos],[-lbe -lmedia -ltranslation -ltracker -lgame]) -+ VLC_ADD_LDFLAGS([dvdnav dvdread],[]) -+ VLC_ADD_LDFLAGS([access_file],[-lroot]) -+ LDFLAGS_save="${LDFLAGS_save} -lintl"; LDFLAGS="${LDFLAGS_save}" -+ VLC_ADD_LDFLAGS([access_file access_ftp access_mms access_output_udp telnet netsync sap ipv4 vlc growl],[-lnetwork]) -+ ;; - *) - SYS="${target_os}" - ;; - esac - AM_CONDITIONAL(HAVE_BEOS, test "${SYS}" = "beos") -+AM_CONDITIONAL(HAVE_HAIKU, test "${SYS}" = "haiku") - AM_CONDITIONAL(HAVE_DARWIN, test "${SYS}" = "darwin") - AM_CONDITIONAL(HAVE_WIN32, test "${SYS}" = "mingw32") - AM_CONDITIONAL(HAVE_WINCE, test "${SYS}" = "mingwce") -@@ -444,12 +458,26 @@ - ]) - ]) - -+AC_CHECK_FUNCS(connect,,[ -+ AC_CHECK_LIB(network,connect,[ -+ VLC_ADD_LDFLAGS([vlc ipv4 ipv6 cdda cddax],-lnetwork) -+ LIBS_socket="-lnetwork" -+ ]) -+]) -+ -+ - AC_CHECK_FUNCS(send,,[ - AC_CHECK_LIB(socket,send,[ - VLC_ADD_LDFLAGS([access_http access_mms access_udp access_tcp access_ftp sap access_output_udp stream_out_standard growl],[-lsocket]) - ]) - ]) - -+AC_CHECK_FUNCS(send,,[ -+ AC_CHECK_LIB(network,send,[ -+ VLC_ADD_LDFLAGS([access_http access_mms access_udp access_tcp access_ftp sap access_output_udp stream_out_standard growl],[-lnetwork]) -+ ]) -+]) -+ - AC_CHECK_FUNCS(gethostbyname,,[ - AC_CHECK_LIB(nsl,gethostbyname,[ - VLC_ADD_LDFLAGS([cdda cddax ipv4 ipv6 vlc],[-lnsl]) -@@ -460,11 +488,22 @@ - ]) - ]) - -+AC_CHECK_FUNCS(gethostbyname,,[ -+ AC_CHECK_LIB(nsl,gethostbyname,[ -+ VLC_ADD_LDFLAGS([cdda cddax ipv4 ipv6 vlc],[-lnsl]) -+ ],[ -+ AC_CHECK_LIB(network,gethostbyname,[ -+ VLC_ADD_LDFLAGS([ipv4 access_mms],[-lnetwork]) -+ ]) -+ ]) -+]) -+ - dnl Check for socklen_t - AC_CACHE_CHECK([for socklen_t], ac_cv_type_socklen_t, - [AC_TRY_COMPILE( - [#include -- #include ], -+ #include -+ #include ], - [socklen_t len = 42; return len;], - ac_cv_type_socklen_t=yes, - ac_cv_type_socklen_t=no)]) -@@ -497,8 +536,10 @@ - dnl we purposedly make the test fail on Windows - LIBS_save="${LIBS}" - AH_TEMPLATE(HAVE_GETADDRINFO, [Define to 1 if you have the `getaddrinfo' function.]) -+AC_SEARCH_LIBS([getaddrinfo], [nsl] [network], [AC_DEFINE(HAVE_GETADDRINFO)],, [${LIBS_socket}]) - AC_SEARCH_LIBS([getaddrinfo], [nsl], [AC_DEFINE(HAVE_GETADDRINFO)],, [${LIBS_socket}]) - -+ - dnl NOTE: we assume getaddrinfo will be present if getnameinfo or gai_strerro - dnl are - LIBS="${LIBS_gai}" -@@ -804,8 +845,6 @@ - - dnl it seems that autoconf do the pkg-config detection only for the first PKG_CHECK_MODULES in the configure.ac ( which is logical) but in our case it is nested in a if so it was not working if you're not on linux or have disable hal. - --PKG_PROG_PKG_CONFIG() -- - dnl Check for hal - AC_ARG_ENABLE(hal, - [ --enable-hal Linux HAL services discovery (default enabled)]) -@@ -2742,28 +2781,12 @@ - AC_CHECK_HEADERS(ffmpeg/avutil.h libavutil/avutil.h) - AC_CHECK_HEADERS(postproc/postprocess.h libpostproc/postprocess.h) - -- AC_CHECK_LIB(avutil, av_crc_init, [ -- VLC_ADD_LDFLAGS([ffmpeg],[-lavutil]) -- LDAVUTIL="-lavutil"]) -- -- AC_CHECK_LIB(avcodec, avcodec_init, [ -- VLC_ADD_BUILTINS([ffmpeg]) -- VLC_ADD_LDFLAGS([ffmpeg],[-lavcodec]) -- if test "${enable_sout}" != "no"; then -- VLC_ADD_BUILTINS([stream_out_switcher]) -- fi], -- [ AC_MSG_ERROR([Could not find ffmpeg on your system: you may get it from http://ffmpeg.sf.net/ (svn version is recommended). Alternatively you can use --disable-ffmpeg to disable the ffmpeg plugins.]) ], [$LDAVUTIL]) -- -- -- AC_CHECK_LIB(postproc, pp_postprocess, [ -- VLC_ADD_LDFLAGS([ffmpeg],[-lpostproc])], -- AC_MSG_ERROR([Could not find libpostproc inside FFmpeg. You should configure FFmpeg with --enable-gpl --enable-pp.]), -- [$LDAVUTIL]) -- -- AC_CHECK_LIB(avformat, av_open_input_stream, [ -- VLC_ADD_LDFLAGS([ffmpeg],[-lavformat -lz]) ], [], [-lavcodec -lz $LDAVUTIL]) -- LDFLAGS="${LDFLAGS_save}" -- CPPFLAGS="${CPPFLAGS_save}" -+ VLC_ADD_BUILTINS([ffmpeg]) -+ VLC_ADD_LDFLAGS([ffmpeg],[-lavutil]) -+ LDAVUTIL="-lavutil" -+ VLC_ADD_LDFLAGS([ffmpeg],[-lpostproc]) -+ VLC_ADD_LDFLAGS([ffmpeg],[-lavcodec]) -+ VLC_ADD_LDFLAGS([ffmpeg],[-lavformat -lz]) - ]) - fi - fi -@@ -4407,7 +4430,7 @@ - AC_ARG_WITH(,[Interface plugins:]) - - dnl special case for BeOS --if test "${SYS}" = "beos" -+if test "${SYS}" = "beos" || test "${SYS}" = "haiku" - then - VLC_ADD_BUILTINS([beos]) - fi -@@ -4418,8 +4441,7 @@ - AC_ARG_ENABLE(skins2, - [ --enable-skins2 Skins2 interface module (experimental)]) - if test "${enable_skins2}" = "yes" || -- (test "${SYS}" != "darwin" && test "${SYS}" != "beos" && -- test "${SYS}" != "mingwce" && test "${enable_skins2}" != "no"); then -+ (test "${SYS}" != "darwin" && test "${SYS}" != "beos" && test "${SYS}" != "haiku" && test "${SYS}" != "mingwce" && test "${enable_skins2}" != "no"); then - - dnl test for the required libraries - skins2_missing_lib="no" -diff -urN vlc-0.8.6i/extras/contrib/src/Makefile vlc-0.8.6i-haiku/extras/contrib/src/Makefile ---- vlc-0.8.6i/extras/contrib/src/Makefile 2009-02-18 15:15:55.000000000 +0000 -+++ vlc-0.8.6i-haiku/extras/contrib/src/Makefile 2009-02-18 15:13:25.000000000 +0000 -@@ -153,9 +153,9 @@ - ifdef HAVE_BEOS - ifeq ($(HOST),$(BUILD)) - # Native build: we need perl, autoconf, etc first -- all: .perl .autoconf .automake .libtool .iconv .intl .freetype .fribidi \ -+ all: .libtool .iconv .intl .freetype .fribidi \ - .a52 .mpeg2 .id3tag .mad .ogg .vorbis .vorbisenc .theora \ -- .FLAC .speex .faad .faac .lame .ebml .matroska .ffmpeg .dvdcss \ -+ .faad .lame .ebml .matroska .dvdcss \ - .dvdnav .dvbpsi .aclocal .libdca - else - # Cross compiling: we already have the Linux tools, only build the -diff -urN vlc-0.8.6i/include/vlc_threads.h vlc-0.8.6i-haiku/include/vlc_threads.h ---- vlc-0.8.6i/include/vlc_threads.h 2009-02-18 15:16:01.000000000 +0000 -+++ vlc-0.8.6i-haiku/include/vlc_threads.h 2009-02-21 17:59:20.000000000 +0000 -@@ -45,7 +45,7 @@ - #elif defined( HAVE_KERNEL_SCHEDULER_H ) /* BeOS */ - # include - # include --# include -+# include - - #elif defined( PTHREAD_COND_T_IN_PTHREAD_H ) /* pthreads (like Linux & BSD) */ - # include -diff -urN vlc-0.8.6i/modules/codec/telx.c vlc-0.8.6i-haiku/modules/codec/telx.c ---- vlc-0.8.6i/modules/codec/telx.c 2009-02-18 15:15:33.000000000 +0000 -+++ vlc-0.8.6i-haiku/modules/codec/telx.c 2009-02-18 15:14:10.000000000 +0000 -@@ -27,7 +27,7 @@ - *****************************************************************************/ - #include - #include --#include -+#include - - #include - #include -@@ -450,7 +450,7 @@ - vlc_bool_t b_update = VLC_FALSE; - char psz_text[512], *pt = psz_text; - char psz_line[256]; -- int i, total; -+ int i, total, mpag, row, magazine; - - if( pp_block == NULL || *pp_block == NULL ) return NULL; - p_block = *pp_block; -@@ -473,8 +473,7 @@ - /* continue; */ - /* } */ - -- int mpag = (hamming_8_4( packet[4] ) << 4) | hamming_8_4( packet[5] ); -- int row, magazine; -+ mpag = (hamming_8_4( packet[4] ) << 4) | hamming_8_4( packet[5] ); - if ( mpag < 0 ) - { - /* decode error */ -diff -urN vlc-0.8.6i/modules/gui/beos/InterfaceWindow.cpp vlc-0.8.6i-haiku/modules/gui/beos/InterfaceWindow.cpp ---- vlc-0.8.6i/modules/gui/beos/InterfaceWindow.cpp 2009-02-18 15:15:26.000000000 +0000 -+++ vlc-0.8.6i-haiku/modules/gui/beos/InterfaceWindow.cpp 2009-02-18 15:13:51.000000000 +0000 -@@ -319,10 +319,8 @@ - - /* Add the Show menu */ - fShowMenu = new BMenu( _("Window") ); --#if 0 - ADD_ELLIPSIS( _("Playlist") ); - fShowMenu->AddItem( new BMenuItem( psz_tmp, new BMessage( OPEN_PLAYLIST ), 'P') ); --#endif - ADD_ELLIPSIS( _("Messages") ); - fShowMenu->AddItem( new BMenuItem( psz_tmp, new BMessage( OPEN_MESSAGES ), 'M' ) ); - ADD_ELLIPSIS( _("Preferences") ); -diff -urN vlc-0.8.6i/src/input/input.c vlc-0.8.6i-haiku/src/input/input.c ---- vlc-0.8.6i/src/input/input.c 2009-02-18 15:15:13.000000000 +0000 -+++ vlc-0.8.6i-haiku/src/input/input.c 2009-02-21 18:02:02.000000000 +0000 -@@ -1886,7 +1886,7 @@ - { - vlc_meta_t *p_meta = p_input->p_meta; - int i; -- -+ char *psz_cat; - if( !p_meta || p_meta->i_meta == 0 ) - return VLC_SUCCESS; - -@@ -1917,7 +1917,6 @@ - if( tk->i_meta > 0 ) - { - msg_Dbg( p_input, " - track[%d]:", i ); -- char *psz_cat; - if( asprintf( &psz_cat, "%s %d", _("Stream"), i ) != -1 ) - { - for( j = 0; j < tk->i_meta; j++ ) -diff -urN vlc-0.8.6i/src/misc/threads.c vlc-0.8.6i-haiku/src/misc/threads.c ---- vlc-0.8.6i/src/misc/threads.c 2009-02-18 15:15:12.000000000 +0000 -+++ vlc-0.8.6i-haiku/src/misc/threads.c 2009-02-21 23:12:06.000000000 +0000 -@@ -542,6 +542,7 @@ - * function instead of CreateThread, otherwise you'll end up with - * memory leaks and the signal functions not working (see Microsoft - * Knowledge Base, article 104641) */ -+ - p_this->thread_id = - #if defined( UNDER_CE ) - (HANDLE)CreateThread( NULL, 0, (PTHREAD_START) func, -@@ -636,7 +637,6 @@ - psz_name, psz_file, i_line, strerror(i_ret) ); - vlc_mutex_unlock( &p_this->object_lock ); - } -- - return i_ret; - } - -@@ -689,7 +689,6 @@ - } - } - #endif -- - return 0; - } - -diff -urN vlc-0.8.6i/src/misc/vlm.c vlc-0.8.6i-haiku/src/misc/vlm.c ---- vlc-0.8.6i/src/misc/vlm.c 2009-02-18 15:15:12.000000000 +0000 -+++ vlc-0.8.6i-haiku/src/misc/vlm.c 2009-02-21 18:53:35.000000000 +0000 -@@ -1368,10 +1368,10 @@ - - vlm_schedule_t *vlm_ScheduleNew( vlm_t *vlm, const char *psz_name ) - { -+ vlm_schedule_t *p_sched = malloc( sizeof( vlm_schedule_t ) ); - if( !psz_name ) - return NULL; - -- vlm_schedule_t *p_sched = malloc( sizeof( vlm_schedule_t ) ); - if( !p_sched ) - return NULL; - -diff -urN vlc-0.8.6i/src/network/httpd.c vlc-0.8.6i-haiku/src/network/httpd.c ---- vlc-0.8.6i/src/network/httpd.c 2009-02-18 15:15:13.000000000 +0000 -+++ vlc-0.8.6i-haiku/src/network/httpd.c 2009-02-21 18:25:54.000000000 +0000 -@@ -60,6 +60,10 @@ - #define HTTPD_CL_BUFSIZE 10000 - #endif - -+ -+#include -+ -+ - static void httpd_ClientClean( httpd_client_t *cl ); - - struct httpd_url_t -@@ -368,6 +372,7 @@ - uint8_t **pp_body, *p_body; - char *psz_connection = NULL; - int *pi_body, i_body; -+ uint8_t *psz_args = query->psz_args; - - if( answer == NULL || query == NULL ) - { -@@ -402,7 +407,6 @@ - /* msg_Warn not supported */ - } - -- uint8_t *psz_args = query->psz_args; - file->pf_fill( file->p_sys, file, psz_args, pp_body, pi_body ); - - if( query->i_type == HTTPD_MSG_HEAD && p_body != NULL ) -@@ -487,6 +491,7 @@ - { - httpd_handler_t *handler = (httpd_handler_t*)p_sys; - char psz_remote_addr[NI_MAXNUMERICHOST]; -+ uint8_t *psz_args = query->psz_args; - - if( answer == NULL || query == NULL ) - { -@@ -502,7 +507,6 @@ - if( httpd_ClientIP( cl, psz_remote_addr ) == NULL ) - *psz_remote_addr = '\0'; - -- uint8_t *psz_args = query->psz_args; - handler->pf_fill( handler->p_sys, handler, query->psz_url, psz_args, - query->i_type, query->p_body, query->i_body, - psz_remote_addr, NULL, diff --git a/media-video/vlc/patches/vlc-0.8.6i.patchset b/media-video/vlc/patches/vlc-0.8.6i.patchset new file mode 100644 index 000000000..39164dd18 --- /dev/null +++ b/media-video/vlc/patches/vlc-0.8.6i.patchset @@ -0,0 +1,75696 @@ +From c7030246c56c8648e76e2e261a5d65fa5254b008 Mon Sep 17 00:00:00 2001 +From: Adrien Destugues +Date: Wed, 3 Sep 2014 22:18:59 +0200 +Subject: applying patch vlc-0.8.6i.patch + + +diff --git a/configure.ac b/configure.ac +index 67d0ceb..ad7cfc3 100644 +--- a/configure.ac ++++ b/configure.ac +@@ -256,6 +256,7 @@ case "${target_os}" in + VLC_ADD_LDFLAGS([vlc logger],[-lbe]) + VLC_ADD_LDFLAGS([beos],[-lbe -lmedia -ltranslation -ltracker -lgame]) + VLC_ADD_LDFLAGS([dvdnav dvdread],[-ldl]) ++ VLC_ADD_LDFLAGS([access_file],[-lpoll]) + LDFLAGS_save="${LDFLAGS_save} -lintl"; LDFLAGS="${LDFLAGS_save}" + + dnl Check for BONE +@@ -270,11 +271,24 @@ case "${target_os}" in + VLC_ADD_LDFLAGS([beos],[-lzeta]) + fi + ;; ++ haiku*) ++ SYS=haiku ++ CFLAGS_save="${CFLAGS_save} -Wno-multichar"; CFLAGS="${CFLAGS_save}" ++ CXXFLAGS_save="${CXXFLAGS_save} -Wno-multichar"; CXXFLAGS="${CXXFLAGS_save}" ++ VLC_ADD_CXXFLAGS([haiku],[]) ++ VLC_ADD_LDFLAGS([vlc logger],[-lbe]) ++ VLC_ADD_LDFLAGS([beos],[-lbe -lmedia -ltranslation -ltracker -lgame]) ++ VLC_ADD_LDFLAGS([dvdnav dvdread],[]) ++ VLC_ADD_LDFLAGS([access_file],[-lroot]) ++ LDFLAGS_save="${LDFLAGS_save} -lintl"; LDFLAGS="${LDFLAGS_save}" ++ VLC_ADD_LDFLAGS([access_file access_ftp access_mms access_output_udp telnet netsync sap ipv4 vlc growl],[-lnetwork]) ++ ;; + *) + SYS="${target_os}" + ;; + esac + AM_CONDITIONAL(HAVE_BEOS, test "${SYS}" = "beos") ++AM_CONDITIONAL(HAVE_HAIKU, test "${SYS}" = "haiku") + AM_CONDITIONAL(HAVE_DARWIN, test "${SYS}" = "darwin") + AM_CONDITIONAL(HAVE_WIN32, test "${SYS}" = "mingw32") + AM_CONDITIONAL(HAVE_WINCE, test "${SYS}" = "mingwce") +@@ -444,12 +458,26 @@ AC_CHECK_FUNCS(connect,,[ + ]) + ]) + ++AC_CHECK_FUNCS(connect,,[ ++ AC_CHECK_LIB(network,connect,[ ++ VLC_ADD_LDFLAGS([vlc ipv4 ipv6 cdda cddax],-lnetwork) ++ LIBS_socket="-lnetwork" ++ ]) ++]) ++ ++ + AC_CHECK_FUNCS(send,,[ + AC_CHECK_LIB(socket,send,[ + VLC_ADD_LDFLAGS([access_http access_mms access_udp access_tcp access_ftp sap access_output_udp stream_out_standard growl],[-lsocket]) + ]) + ]) + ++AC_CHECK_FUNCS(send,,[ ++ AC_CHECK_LIB(network,send,[ ++ VLC_ADD_LDFLAGS([access_http access_mms access_udp access_tcp access_ftp sap access_output_udp stream_out_standard growl],[-lnetwork]) ++ ]) ++]) ++ + AC_CHECK_FUNCS(gethostbyname,,[ + AC_CHECK_LIB(nsl,gethostbyname,[ + VLC_ADD_LDFLAGS([cdda cddax ipv4 ipv6 vlc],[-lnsl]) +@@ -460,11 +488,22 @@ AC_CHECK_FUNCS(gethostbyname,,[ + ]) + ]) + ++AC_CHECK_FUNCS(gethostbyname,,[ ++ AC_CHECK_LIB(nsl,gethostbyname,[ ++ VLC_ADD_LDFLAGS([cdda cddax ipv4 ipv6 vlc],[-lnsl]) ++ ],[ ++ AC_CHECK_LIB(network,gethostbyname,[ ++ VLC_ADD_LDFLAGS([ipv4 access_mms],[-lnetwork]) ++ ]) ++ ]) ++]) ++ + dnl Check for socklen_t + AC_CACHE_CHECK([for socklen_t], ac_cv_type_socklen_t, + [AC_TRY_COMPILE( + [#include +- #include ], ++ #include ++ #include ], + [socklen_t len = 42; return len;], + ac_cv_type_socklen_t=yes, + ac_cv_type_socklen_t=no)]) +@@ -497,8 +536,10 @@ dnl -lnsl and -lsocket are needed on Solaris; + dnl we purposedly make the test fail on Windows + LIBS_save="${LIBS}" + AH_TEMPLATE(HAVE_GETADDRINFO, [Define to 1 if you have the `getaddrinfo' function.]) ++AC_SEARCH_LIBS([getaddrinfo], [nsl] [network], [AC_DEFINE(HAVE_GETADDRINFO)],, [${LIBS_socket}]) + AC_SEARCH_LIBS([getaddrinfo], [nsl], [AC_DEFINE(HAVE_GETADDRINFO)],, [${LIBS_socket}]) + ++ + dnl NOTE: we assume getaddrinfo will be present if getnameinfo or gai_strerro + dnl are + LIBS="${LIBS_gai}" +@@ -804,8 +845,6 @@ AC_PATH_XTRA() + + dnl it seems that autoconf do the pkg-config detection only for the first PKG_CHECK_MODULES in the configure.ac ( which is logical) but in our case it is nested in a if so it was not working if you're not on linux or have disable hal. + +-PKG_PROG_PKG_CONFIG() +- + dnl Check for hal + AC_ARG_ENABLE(hal, + [ --enable-hal Linux HAL services discovery (default enabled)]) +@@ -2742,28 +2781,12 @@ dnl Trying with pkg-config + AC_CHECK_HEADERS(ffmpeg/avutil.h libavutil/avutil.h) + AC_CHECK_HEADERS(postproc/postprocess.h libpostproc/postprocess.h) + +- AC_CHECK_LIB(avutil, av_crc_init, [ +- VLC_ADD_LDFLAGS([ffmpeg],[-lavutil]) +- LDAVUTIL="-lavutil"]) +- +- AC_CHECK_LIB(avcodec, avcodec_init, [ +- VLC_ADD_BUILTINS([ffmpeg]) +- VLC_ADD_LDFLAGS([ffmpeg],[-lavcodec]) +- if test "${enable_sout}" != "no"; then +- VLC_ADD_BUILTINS([stream_out_switcher]) +- fi], +- [ AC_MSG_ERROR([Could not find ffmpeg on your system: you may get it from http://ffmpeg.sf.net/ (svn version is recommended). Alternatively you can use --disable-ffmpeg to disable the ffmpeg plugins.]) ], [$LDAVUTIL]) +- +- +- AC_CHECK_LIB(postproc, pp_postprocess, [ +- VLC_ADD_LDFLAGS([ffmpeg],[-lpostproc])], +- AC_MSG_ERROR([Could not find libpostproc inside FFmpeg. You should configure FFmpeg with --enable-gpl --enable-pp.]), +- [$LDAVUTIL]) +- +- AC_CHECK_LIB(avformat, av_open_input_stream, [ +- VLC_ADD_LDFLAGS([ffmpeg],[-lavformat -lz]) ], [], [-lavcodec -lz $LDAVUTIL]) +- LDFLAGS="${LDFLAGS_save}" +- CPPFLAGS="${CPPFLAGS_save}" ++ VLC_ADD_BUILTINS([ffmpeg]) ++ VLC_ADD_LDFLAGS([ffmpeg],[-lavutil]) ++ LDAVUTIL="-lavutil" ++ VLC_ADD_LDFLAGS([ffmpeg],[-lpostproc]) ++ VLC_ADD_LDFLAGS([ffmpeg],[-lavcodec]) ++ VLC_ADD_LDFLAGS([ffmpeg],[-lavformat -lz]) + ]) + fi + fi +@@ -4407,7 +4430,7 @@ dnl + AC_ARG_WITH(,[Interface plugins:]) + + dnl special case for BeOS +-if test "${SYS}" = "beos" ++if test "${SYS}" = "beos" || test "${SYS}" = "haiku" + then + VLC_ADD_BUILTINS([beos]) + fi +@@ -4418,8 +4441,7 @@ dnl + AC_ARG_ENABLE(skins2, + [ --enable-skins2 Skins2 interface module (experimental)]) + if test "${enable_skins2}" = "yes" || +- (test "${SYS}" != "darwin" && test "${SYS}" != "beos" && +- test "${SYS}" != "mingwce" && test "${enable_skins2}" != "no"); then ++ (test "${SYS}" != "darwin" && test "${SYS}" != "beos" && test "${SYS}" != "haiku" && test "${SYS}" != "mingwce" && test "${enable_skins2}" != "no"); then + + dnl test for the required libraries + skins2_missing_lib="no" +diff --git a/extras/contrib/src/Makefile b/extras/contrib/src/Makefile +index 0ef86b0..790ef2c 100644 +--- a/extras/contrib/src/Makefile ++++ b/extras/contrib/src/Makefile +@@ -153,9 +153,9 @@ else + ifdef HAVE_BEOS + ifeq ($(HOST),$(BUILD)) + # Native build: we need perl, autoconf, etc first +- all: .perl .autoconf .automake .libtool .iconv .intl .freetype .fribidi \ ++ all: .libtool .iconv .intl .freetype .fribidi \ + .a52 .mpeg2 .id3tag .mad .ogg .vorbis .vorbisenc .theora \ +- .FLAC .speex .faad .faac .lame .ebml .matroska .ffmpeg .dvdcss \ ++ .faad .lame .ebml .matroska .dvdcss \ + .dvdnav .dvbpsi .aclocal .libdca + else + # Cross compiling: we already have the Linux tools, only build the +diff --git a/include/vlc_threads.h b/include/vlc_threads.h +index 709228d..95e23c3 100644 +--- a/include/vlc_threads.h ++++ b/include/vlc_threads.h +@@ -45,7 +45,7 @@ + #elif defined( HAVE_KERNEL_SCHEDULER_H ) /* BeOS */ + # include + # include +-# include ++# include + + #elif defined( PTHREAD_COND_T_IN_PTHREAD_H ) /* pthreads (like Linux & BSD) */ + # include +diff --git a/modules/codec/telx.c b/modules/codec/telx.c +index 4d3a30f..6ee55f1 100644 +--- a/modules/codec/telx.c ++++ b/modules/codec/telx.c +@@ -27,7 +27,7 @@ + *****************************************************************************/ + #include + #include +-#include ++#include + + #include + #include +@@ -450,7 +450,7 @@ static subpicture_t *Decode( decoder_t *p_dec, block_t **pp_block ) + vlc_bool_t b_update = VLC_FALSE; + char psz_text[512], *pt = psz_text; + char psz_line[256]; +- int i, total; ++ int i, total, mpag, row, magazine; + + if( pp_block == NULL || *pp_block == NULL ) return NULL; + p_block = *pp_block; +@@ -473,8 +473,7 @@ static subpicture_t *Decode( decoder_t *p_dec, block_t **pp_block ) + /* continue; */ + /* } */ + +- int mpag = (hamming_8_4( packet[4] ) << 4) | hamming_8_4( packet[5] ); +- int row, magazine; ++ mpag = (hamming_8_4( packet[4] ) << 4) | hamming_8_4( packet[5] ); + if ( mpag < 0 ) + { + /* decode error */ +diff --git a/modules/gui/beos/InterfaceWindow.cpp b/modules/gui/beos/InterfaceWindow.cpp +index 22094c4..f252085 100644 +--- a/modules/gui/beos/InterfaceWindow.cpp ++++ b/modules/gui/beos/InterfaceWindow.cpp +@@ -319,10 +319,8 @@ InterfaceWindow::InterfaceWindow( intf_thread_t * _p_intf, BRect frame, + + /* Add the Show menu */ + fShowMenu = new BMenu( _("Window") ); +-#if 0 + ADD_ELLIPSIS( _("Playlist") ); + fShowMenu->AddItem( new BMenuItem( psz_tmp, new BMessage( OPEN_PLAYLIST ), 'P') ); +-#endif + ADD_ELLIPSIS( _("Messages") ); + fShowMenu->AddItem( new BMenuItem( psz_tmp, new BMessage( OPEN_MESSAGES ), 'M' ) ); + ADD_ELLIPSIS( _("Preferences") ); +diff --git a/src/input/input.c b/src/input/input.c +index 39cc01a..e7c6a09 100644 +--- a/src/input/input.c ++++ b/src/input/input.c +@@ -1886,7 +1886,7 @@ static int UpdateMeta( input_thread_t *p_input, vlc_bool_t b_quick ) + { + vlc_meta_t *p_meta = p_input->p_meta; + int i; +- ++ char *psz_cat; + if( !p_meta || p_meta->i_meta == 0 ) + return VLC_SUCCESS; + +@@ -1917,7 +1917,6 @@ static int UpdateMeta( input_thread_t *p_input, vlc_bool_t b_quick ) + if( tk->i_meta > 0 ) + { + msg_Dbg( p_input, " - track[%d]:", i ); +- char *psz_cat; + if( asprintf( &psz_cat, "%s %d", _("Stream"), i ) != -1 ) + { + for( j = 0; j < tk->i_meta; j++ ) +diff --git a/src/misc/threads.c b/src/misc/threads.c +index f7142c9..efefcdd 100644 +--- a/src/misc/threads.c ++++ b/src/misc/threads.c +@@ -542,6 +542,7 @@ int __vlc_thread_create( vlc_object_t *p_this, char * psz_file, int i_line, + * function instead of CreateThread, otherwise you'll end up with + * memory leaks and the signal functions not working (see Microsoft + * Knowledge Base, article 104641) */ ++ + p_this->thread_id = + #if defined( UNDER_CE ) + (HANDLE)CreateThread( NULL, 0, (PTHREAD_START) func, +@@ -636,7 +637,6 @@ int __vlc_thread_create( vlc_object_t *p_this, char * psz_file, int i_line, + psz_name, psz_file, i_line, strerror(i_ret) ); + vlc_mutex_unlock( &p_this->object_lock ); + } +- + return i_ret; + } + +@@ -689,7 +689,6 @@ int __vlc_thread_set_priority( vlc_object_t *p_this, char * psz_file, + } + } + #endif +- + return 0; + } + +diff --git a/src/misc/vlm.c b/src/misc/vlm.c +index 651a5d0..bc7d1ab 100644 +--- a/src/misc/vlm.c ++++ b/src/misc/vlm.c +@@ -1368,10 +1368,10 @@ static int64_t vlm_Date( void ) + + vlm_schedule_t *vlm_ScheduleNew( vlm_t *vlm, const char *psz_name ) + { ++ vlm_schedule_t *p_sched = malloc( sizeof( vlm_schedule_t ) ); + if( !psz_name ) + return NULL; + +- vlm_schedule_t *p_sched = malloc( sizeof( vlm_schedule_t ) ); + if( !p_sched ) + return NULL; + +diff --git a/src/network/httpd.c b/src/network/httpd.c +index ecd1a01..98b9b16 100644 +--- a/src/network/httpd.c ++++ b/src/network/httpd.c +@@ -60,6 +60,10 @@ + #define HTTPD_CL_BUFSIZE 10000 + #endif + ++ ++#include ++ ++ + static void httpd_ClientClean( httpd_client_t *cl ); + + struct httpd_url_t +@@ -368,6 +372,7 @@ static int httpd_FileCallBack( httpd_callback_sys_t *p_sys, httpd_client_t *cl, + uint8_t **pp_body, *p_body; + char *psz_connection = NULL; + int *pi_body, i_body; ++ uint8_t *psz_args = query->psz_args; + + if( answer == NULL || query == NULL ) + { +@@ -402,7 +407,6 @@ static int httpd_FileCallBack( httpd_callback_sys_t *p_sys, httpd_client_t *cl, + /* msg_Warn not supported */ + } + +- uint8_t *psz_args = query->psz_args; + file->pf_fill( file->p_sys, file, psz_args, pp_body, pi_body ); + + if( query->i_type == HTTPD_MSG_HEAD && p_body != NULL ) +@@ -487,6 +491,7 @@ static int httpd_HandlerCallBack( httpd_callback_sys_t *p_sys, httpd_client_t *c + { + httpd_handler_t *handler = (httpd_handler_t*)p_sys; + char psz_remote_addr[NI_MAXNUMERICHOST]; ++ uint8_t *psz_args = query->psz_args; + + if( answer == NULL || query == NULL ) + { +@@ -502,7 +507,6 @@ static int httpd_HandlerCallBack( httpd_callback_sys_t *p_sys, httpd_client_t *c + if( httpd_ClientIP( cl, psz_remote_addr ) == NULL ) + *psz_remote_addr = '\0'; + +- uint8_t *psz_args = query->psz_args; + handler->pf_fill( handler->p_sys, handler, query->psz_url, psz_args, + query->i_type, query->p_body, query->i_body, + psz_remote_addr, NULL, +-- +1.8.3.4 + + +From 3cf38a1356818371f0612deee0c326148843f744 Mon Sep 17 00:00:00 2001 +From: Adrien Destugues +Date: Thu, 4 Sep 2014 22:36:37 +0200 +Subject: FFmpeg 0.10 fix. + + +diff --git a/configure.ac b/configure.ac +index ad7cfc3..7eba486 100644 +--- a/configure.ac ++++ b/configure.ac +@@ -2792,16 +2792,6 @@ dnl Trying with pkg-config + fi + fi + +-dnl Check if we have (required) img_resample() in libavcodec +-if test "${enable_ffmpeg}" != "no" +-then +- CFLAGS="${CFLAGS} ${CFLAGS_ffmpeg}" +- LDFLAGS="${LDFLAGS} ${LDFLAGS_ffmpeg}" +- AC_CHECK_LIB(avcodec, img_resample, , +- [AC_MSG_ERROR([Your FFmpeg library doesn't have the needed img_resample() function. You should rebuild it with software scaler disabled])], -lavutil) +- VLC_RESTORE_FLAGS +-fi +- + dnl Clean out environment + LIBS="${LIBS_save}" + +-- +1.8.3.4 + + +From fe30c5c71454db22abaf29329f44933cceaf1d7e Mon Sep 17 00:00:00 2001 +From: Adrien Destugues +Date: Thu, 4 Sep 2014 22:37:02 +0200 +Subject: ffmpeg 0.10 fixes. + + +diff --git a/modules/codec/ffmpeg/audio.c b/modules/codec/ffmpeg/audio.c +index 14b7ff7..1fe560e 100644 +--- a/modules/codec/ffmpeg/audio.c ++++ b/modules/codec/ffmpeg/audio.c +@@ -111,7 +111,7 @@ int E_(InitAudioDec)( decoder_t *p_dec, AVCodecContext *p_context, + p_sys->p_context->channels = p_dec->fmt_in.audio.i_channels; + p_sys->p_context->block_align = p_dec->fmt_in.audio.i_blockalign; + p_sys->p_context->bit_rate = p_dec->fmt_in.i_bitrate; +- p_sys->p_context->bits_per_sample = p_dec->fmt_in.audio.i_bitspersample; ++ p_sys->p_context->bits_per_coded_sample = p_dec->fmt_in.audio.i_bitspersample; + + if( ( p_sys->p_context->extradata_size = p_dec->fmt_in.i_extra ) > 0 ) + { +diff --git a/modules/codec/ffmpeg/ffmpeg.c b/modules/codec/ffmpeg/ffmpeg.c +index 158e412..2622005 100644 +--- a/modules/codec/ffmpeg/ffmpeg.c ++++ b/modules/codec/ffmpeg/ffmpeg.c +@@ -38,6 +38,8 @@ + # include + #endif + ++#include ++ + #if LIBAVCODEC_BUILD < 4680 + # error You must have a libavcodec >= 4680 (get CVS) + #endif +@@ -270,23 +272,23 @@ static int OpenDecoder( vlc_object_t *p_this ) + p_context->dsp_mask = 0; + if( !(p_dec->p_libvlc->i_cpu & CPU_CAPABILITY_MMX) ) + { +- p_context->dsp_mask |= FF_MM_MMX; ++ p_context->dsp_mask |= AV_CPU_FLAG_MMX; + } + if( !(p_dec->p_libvlc->i_cpu & CPU_CAPABILITY_MMXEXT) ) + { +- p_context->dsp_mask |= FF_MM_MMXEXT; ++ p_context->dsp_mask |= AV_CPU_FLAG_MMX2; + } + if( !(p_dec->p_libvlc->i_cpu & CPU_CAPABILITY_3DNOW) ) + { +- p_context->dsp_mask |= FF_MM_3DNOW; ++ p_context->dsp_mask |= AV_CPU_FLAG_3DNOW; + } + if( !(p_dec->p_libvlc->i_cpu & CPU_CAPABILITY_SSE) ) + { +- p_context->dsp_mask |= FF_MM_SSE; ++ p_context->dsp_mask |= AV_CPU_FLAG_SSE; + } + if( !(p_dec->p_libvlc->i_cpu & CPU_CAPABILITY_SSE2) ) + { +- p_context->dsp_mask |= FF_MM_SSE2; ++ p_context->dsp_mask |= AV_CPU_FLAG_SSE2; + } + + switch( i_cat ) +@@ -456,7 +458,7 @@ static struct + { VLC_FOURCC('Y','V','U','9'), PIX_FMT_YUV410P }, + + /* Packed YUV formats */ +- { VLC_FOURCC('Y','U','Y','2'), PIX_FMT_YUV422 }, ++ { VLC_FOURCC('Y','U','Y','2'), PIX_FMT_YUYV422 }, + #if LIBAVCODEC_BUILD >= 4720 + { VLC_FOURCC('U','Y','V','Y'), PIX_FMT_UYVY422 }, + #endif +@@ -475,7 +477,7 @@ static struct + { VLC_FOURCC('R','V','1','6'), PIX_FMT_RGB565 }, + { VLC_FOURCC('R','V','2','4'), PIX_FMT_RGB24 }, + #endif +- { VLC_FOURCC('R','V','3','2'), PIX_FMT_RGBA32 }, ++ { VLC_FOURCC('R','V','3','2'), PIX_FMT_RGB32 }, + #if defined(PIX_FMT_RGBA) + { VLC_FOURCC('R','G','B','A'), PIX_FMT_RGBA }, + #endif +diff --git a/modules/codec/ffmpeg/video.c b/modules/codec/ffmpeg/video.c +index e8e72b5..46966a0 100644 +--- a/modules/codec/ffmpeg/video.c ++++ b/modules/codec/ffmpeg/video.c +@@ -121,7 +121,7 @@ static uint32_t ffmpeg_PixFmtToChroma( int i_ff_chroma ) + case PIX_FMT_YUVJ444P: /* Hacky but better then chroma conversion */ + return VLC_FOURCC('I','4','4','4'); + +- case PIX_FMT_YUV422: ++ case PIX_FMT_YUYV422: + return VLC_FOURCC('Y','U','Y','2'); + + case PIX_FMT_RGB555: +@@ -130,7 +130,7 @@ static uint32_t ffmpeg_PixFmtToChroma( int i_ff_chroma ) + return VLC_FOURCC('R','V','1','6'); + case PIX_FMT_RGB24: + return VLC_FOURCC('R','V','2','4'); +- case PIX_FMT_RGBA32: ++ case PIX_FMT_RGB32: + return VLC_FOURCC('R','V','3','2'); + case PIX_FMT_GRAY8: + return VLC_FOURCC('G','R','E','Y'); +@@ -259,12 +259,12 @@ int E_(InitVideoDec)( decoder_t *p_dec, AVCodecContext *p_context, + p_sys->p_context->codec_tag = ffmpeg_CodecTag( p_dec->fmt_in.i_codec ); + p_sys->p_context->width = p_dec->fmt_in.video.i_width; + p_sys->p_context->height = p_dec->fmt_in.video.i_height; +- p_sys->p_context->bits_per_sample = p_dec->fmt_in.video.i_bits_per_pixel; ++ p_sys->p_context->bits_per_coded_sample = p_dec->fmt_in.video.i_bits_per_pixel; + + /* ***** Get configuration of ffmpeg plugin ***** */ + p_sys->p_context->workaround_bugs = + config_GetInt( p_dec, "ffmpeg-workaround-bugs" ); +- p_sys->p_context->error_resilience = ++ p_sys->p_context->error_recognition = + config_GetInt( p_dec, "ffmpeg-error-resilience" ); + + var_Create( p_dec, "grayscale", VLC_VAR_BOOL | VLC_VAR_DOINHERIT ); +@@ -448,7 +448,7 @@ picture_t *E_(DecodeVideo)( decoder_t *p_dec, block_t **pp_block ) + b_drawpicture = 0; + if( p_sys->i_late_frames < 8 ) + { +- p_sys->p_context->hurry_up = 2; ++ p_sys->p_context->skip_frame = 2; + } + else + { +@@ -466,19 +466,19 @@ picture_t *E_(DecodeVideo)( decoder_t *p_dec, block_t **pp_block ) + if (!(p_block->i_flags & BLOCK_FLAG_PREROLL)) + { + b_drawpicture = 1; +- p_sys->p_context->hurry_up = 0; ++ p_sys->p_context->skip_frame = 0; + } + else + { + b_drawpicture = 0; +- p_sys->p_context->hurry_up = 1; ++ p_sys->p_context->skip_frame = 1; + } + } + + + if( p_sys->p_context->width <= 0 || p_sys->p_context->height <= 0 ) + { +- p_sys->p_context->hurry_up = 5; ++ p_sys->p_context->skip_frame = 5; + b_null_size = VLC_TRUE; + } + +@@ -516,19 +516,25 @@ picture_t *E_(DecodeVideo)( decoder_t *p_dec, block_t **pp_block ) + { + int i_used, b_gotpicture; + picture_t *p_pic; ++ AVPacket pkt; + +- i_used = avcodec_decode_video( p_sys->p_context, p_sys->p_ff_pic, ++ av_init_packet(&pkt); ++ pkt.data = p_sys->p_buffer; ++ pkt.size = p_sys->i_buffer; ++ ++ i_used = avcodec_decode_video2( p_sys->p_context, p_sys->p_ff_pic, + &b_gotpicture, +- (uint8_t*)p_sys->p_buffer, p_sys->i_buffer ); ++ &pkt ); + if( b_null_size && p_sys->p_context->width > 0 && + p_sys->p_context->height > 0 ) + { + /* Reparse it to not drop the I frame */ + b_null_size = VLC_FALSE; +- p_sys->p_context->hurry_up = 0; +- i_used = avcodec_decode_video( p_sys->p_context, p_sys->p_ff_pic, ++ p_sys->p_context->skip_frame = 0; ++ ++ i_used = avcodec_decode_video2( p_sys->p_context, p_sys->p_ff_pic, + &b_gotpicture, +- (uint8_t*)p_sys->p_buffer, p_sys->i_buffer ); ++ &pkt ); + } + + if( i_used < 0 ) +diff --git a/modules/codec/ffmpeg/video_filter.c b/modules/codec/ffmpeg/video_filter.c +index 2eff2ba..fd9dc18 100644 +--- a/modules/codec/ffmpeg/video_filter.c ++++ b/modules/codec/ffmpeg/video_filter.c +@@ -39,6 +39,7 @@ + #endif + + #include "ffmpeg.h" ++#include "resampleWrapper.h" + + void E_(InitLibavcodec) ( vlc_object_t *p_object ); + static int CheckInit( filter_t *p_filter ); +-- +1.8.3.4 + + +From 692745b803ffb8ebcfb88c2dc8a662a390f930cd Mon Sep 17 00:00:00 2001 +From: Adrien Destugues +Date: Thu, 4 Sep 2014 23:00:02 +0200 +Subject: Cinepak: gcc2 fixes. + + +diff --git a/modules/codec/cinepak.c b/modules/codec/cinepak.c +index b30ea78..c8fe9d1 100644 +--- a/modules/codec/cinepak.c ++++ b/modules/codec/cinepak.c +@@ -288,11 +288,11 @@ static void cinepak_Getv4( cinepak_context_t *p_context, + size_t y_siz = p_context->i_stride[0] * p_context->i_lines[0]; + size_t u_siz = p_context->i_stride[1] * p_context->i_lines[1]; + size_t v_siz = p_context->i_stride[2] * p_context->i_lines[2]; ++ uint8_t *p_dst_y, *p_dst_u, *p_dst_v; + /* boundary check */ + if( y_max >= y_siz || u_max >= u_siz || v_max >= v_siz ) + return; + +- uint8_t *p_dst_y, *p_dst_u, *p_dst_v; + #define PIX_SET_Y( x, y, v ) \ + p_dst_y[(x) + (y)* p_context->i_stride[0]] = (v); + +@@ -345,11 +345,11 @@ static void cinepak_Getv1( cinepak_context_t *p_context, + size_t y_siz = p_context->i_stride[0] * p_context->i_lines[0]; + size_t u_siz = p_context->i_stride[1] * p_context->i_lines[1]; + size_t v_siz = p_context->i_stride[2] * p_context->i_lines[2]; ++ uint8_t *p_dst_y, *p_dst_u, *p_dst_v; + /* boundary check */ + if( y_max >= y_siz || u_max >= u_siz || v_max >= v_siz ) + return; + +- uint8_t *p_dst_y, *p_dst_u, *p_dst_v; + #define PIX_SET_Y( x, y, v ) \ + p_dst_y[(x) + (y)* p_context->i_stride[0]] = (v); + +-- +1.8.3.4 + + +From ff48fee4ade09e59dece15f8cbd0578409ee6c42 Mon Sep 17 00:00:00 2001 +From: Adrien Destugues +Date: Wed, 10 Sep 2014 21:44:13 +0200 +Subject: More gcc2 and ffmpeg 0.10 fixes. + + +diff --git a/config.h.in b/config.h.in +index e60d9b1..f2be648 100644 +--- a/config.h.in ++++ b/config.h.in +@@ -372,9 +372,6 @@ + /* Define to 1 if you have the header file. */ + #undef HAVE_LIBAVC1394_AVC1394_H + +-/* Define to 1 if you have the `avcodec' library (-lavcodec). */ +-#undef HAVE_LIBAVCODEC +- + /* Define to 1 if you have the header file. */ + #undef HAVE_LIBAVCODEC_AVCODEC_H + +@@ -880,6 +877,9 @@ + /* Define to the one symbol short name of this package. */ + #undef PACKAGE_TARNAME + ++/* Define to the home page for this package. */ ++#undef PACKAGE_URL ++ + /* Define to the version of this package. */ + #undef PACKAGE_VERSION + +diff --git a/configure b/configure +index a4e55ae..439f86e 100755 +--- a/configure ++++ b/configure +@@ -1,60 +1,81 @@ + #! /bin/sh + # Guess values for system-dependent variables and create Makefiles. +-# Generated by GNU Autoconf 2.61 for vlc 0.8.6i. ++# Generated by GNU Autoconf 2.69 for vlc 0.8.6i. ++# ++# ++# Copyright (C) 1992-1996, 1998-2012 Free Software Foundation, Inc. ++# + # +-# Copyright (C) 1992, 1993, 1994, 1995, 1996, 1998, 1999, 2000, 2001, +-# 2002, 2003, 2004, 2005, 2006 Free Software Foundation, Inc. + # This configure script is free software; the Free Software Foundation + # gives unlimited permission to copy, distribute and modify it. +-## --------------------- ## +-## M4sh Initialization. ## +-## --------------------- ## ++## -------------------- ## ++## M4sh Initialization. ## ++## -------------------- ## + + # Be more Bourne compatible + DUALCASE=1; export DUALCASE # for MKS sh +-if test -n "${ZSH_VERSION+set}" && (emulate sh) >/dev/null 2>&1; then ++if test -n "${ZSH_VERSION+set}" && (emulate sh) >/dev/null 2>&1; then : + emulate sh + NULLCMD=: +- # Zsh 3.x and 4.x performs word splitting on ${1+"$@"}, which ++ # Pre-4.2 versions of Zsh do word splitting on ${1+"$@"}, which + # is contrary to our usage. Disable this feature. + alias -g '${1+"$@"}'='"$@"' + setopt NO_GLOB_SUBST + else +- case `(set -o) 2>/dev/null` in +- *posix*) set -o posix ;; ++ case `(set -o) 2>/dev/null` in #( ++ *posix*) : ++ set -o posix ;; #( ++ *) : ++ ;; + esac +- + fi + + +- +- +-# PATH needs CR +-# Avoid depending upon Character Ranges. +-as_cr_letters='abcdefghijklmnopqrstuvwxyz' +-as_cr_LETTERS='ABCDEFGHIJKLMNOPQRSTUVWXYZ' +-as_cr_Letters=$as_cr_letters$as_cr_LETTERS +-as_cr_digits='0123456789' +-as_cr_alnum=$as_cr_Letters$as_cr_digits +- +-# The user is always right. +-if test "${PATH_SEPARATOR+set}" != set; then +- echo "#! /bin/sh" >conf$$.sh +- echo "exit 0" >>conf$$.sh +- chmod +x conf$$.sh +- if (PATH="/nonexistent;."; conf$$.sh) >/dev/null 2>&1; then +- PATH_SEPARATOR=';' ++as_nl=' ++' ++export as_nl ++# Printing a long string crashes Solaris 7 /usr/bin/printf. ++as_echo='\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\' ++as_echo=$as_echo$as_echo$as_echo$as_echo$as_echo ++as_echo=$as_echo$as_echo$as_echo$as_echo$as_echo$as_echo ++# Prefer a ksh shell builtin over an external printf program on Solaris, ++# but without wasting forks for bash or zsh. ++if test -z "$BASH_VERSION$ZSH_VERSION" \ ++ && (test "X`print -r -- $as_echo`" = "X$as_echo") 2>/dev/null; then ++ as_echo='print -r --' ++ as_echo_n='print -rn --' ++elif (test "X`printf %s $as_echo`" = "X$as_echo") 2>/dev/null; then ++ as_echo='printf %s\n' ++ as_echo_n='printf %s' ++else ++ if test "X`(/usr/ucb/echo -n -n $as_echo) 2>/dev/null`" = "X-n $as_echo"; then ++ as_echo_body='eval /usr/ucb/echo -n "$1$as_nl"' ++ as_echo_n='/usr/ucb/echo -n' + else +- PATH_SEPARATOR=: +- fi +- rm -f conf$$.sh ++ as_echo_body='eval expr "X$1" : "X\\(.*\\)"' ++ as_echo_n_body='eval ++ arg=$1; ++ case $arg in #( ++ *"$as_nl"*) ++ expr "X$arg" : "X\\(.*\\)$as_nl"; ++ arg=`expr "X$arg" : ".*$as_nl\\(.*\\)"`;; ++ esac; ++ expr "X$arg" : "X\\(.*\\)" | tr -d "$as_nl" ++ ' ++ export as_echo_n_body ++ as_echo_n='sh -c $as_echo_n_body as_echo' ++ fi ++ export as_echo_body ++ as_echo='sh -c $as_echo_body as_echo' + fi + +-# Support unset when possible. +-if ( (MAIL=60; unset MAIL) || exit) >/dev/null 2>&1; then +- as_unset=unset +-else +- as_unset=false ++# The user is always right. ++if test "${PATH_SEPARATOR+set}" != set; then ++ PATH_SEPARATOR=: ++ (PATH='/bin;/bin'; FPATH=$PATH; sh -c :) >/dev/null 2>&1 && { ++ (PATH='/bin:/bin'; FPATH=$PATH; sh -c :) >/dev/null 2>&1 || ++ PATH_SEPARATOR=';' ++ } + fi + + +@@ -63,20 +84,19 @@ fi + # there to prevent editors from complaining about space-tab. + # (If _AS_PATH_WALK were called with IFS unset, it would disable word + # splitting by setting IFS to empty value.) +-as_nl=' +-' + IFS=" "" $as_nl" + + # Find who we are. Look in the path if we contain no directory separator. +-case $0 in ++as_myself= ++case $0 in #(( + *[\\/]* ) as_myself=$0 ;; + *) as_save_IFS=$IFS; IFS=$PATH_SEPARATOR + for as_dir in $PATH + do + IFS=$as_save_IFS + test -z "$as_dir" && as_dir=. +- test -r "$as_dir/$0" && as_myself=$as_dir/$0 && break +-done ++ test -r "$as_dir/$0" && as_myself=$as_dir/$0 && break ++ done + IFS=$as_save_IFS + + ;; +@@ -87,354 +107,366 @@ if test "x$as_myself" = x; then + as_myself=$0 + fi + if test ! -f "$as_myself"; then +- echo "$as_myself: error: cannot find myself; rerun with an absolute file name" >&2 +- { (exit 1); exit 1; } ++ $as_echo "$as_myself: error: cannot find myself; rerun with an absolute file name" >&2 ++ exit 1 + fi + +-# Work around bugs in pre-3.0 UWIN ksh. +-for as_var in ENV MAIL MAILPATH +-do ($as_unset $as_var) >/dev/null 2>&1 && $as_unset $as_var ++# Unset variables that we do not need and which cause bugs (e.g. in ++# pre-3.0 UWIN ksh). But do not cause bugs in bash 2.01; the "|| exit 1" ++# suppresses any "Segmentation fault" message there. '((' could ++# trigger a bug in pdksh 5.2.14. ++for as_var in BASH_ENV ENV MAIL MAILPATH ++do eval test x\${$as_var+set} = xset \ ++ && ( (unset $as_var) || exit 1) >/dev/null 2>&1 && unset $as_var || : + done + PS1='$ ' + PS2='> ' + PS4='+ ' + + # NLS nuisances. +-for as_var in \ +- LANG LANGUAGE LC_ADDRESS LC_ALL LC_COLLATE LC_CTYPE LC_IDENTIFICATION \ +- LC_MEASUREMENT LC_MESSAGES LC_MONETARY LC_NAME LC_NUMERIC LC_PAPER \ +- LC_TELEPHONE LC_TIME +-do +- if (set +x; test -z "`(eval $as_var=C; export $as_var) 2>&1`"); then +- eval $as_var=C; export $as_var +- else +- ($as_unset $as_var) >/dev/null 2>&1 && $as_unset $as_var +- fi +-done +- +-# Required to use basename. +-if expr a : '\(a\)' >/dev/null 2>&1 && +- test "X`expr 00001 : '.*\(...\)'`" = X001; then +- as_expr=expr +-else +- as_expr=false +-fi +- +-if (basename -- /) >/dev/null 2>&1 && test "X`basename -- / 2>&1`" = "X/"; then +- as_basename=basename +-else +- as_basename=false +-fi +- +- +-# Name of the executable. +-as_me=`$as_basename -- "$0" || +-$as_expr X/"$0" : '.*/\([^/][^/]*\)/*$' \| \ +- X"$0" : 'X\(//\)$' \| \ +- X"$0" : 'X\(/\)' \| . 2>/dev/null || +-echo X/"$0" | +- sed '/^.*\/\([^/][^/]*\)\/*$/{ +- s//\1/ +- q +- } +- /^X\/\(\/\/\)$/{ +- s//\1/ +- q +- } +- /^X\/\(\/\).*/{ +- s//\1/ +- q +- } +- s/.*/./; q'` ++LC_ALL=C ++export LC_ALL ++LANGUAGE=C ++export LANGUAGE + + # CDPATH. +-$as_unset CDPATH +- ++(unset CDPATH) >/dev/null 2>&1 && unset CDPATH + ++# Use a proper internal environment variable to ensure we don't fall ++ # into an infinite loop, continuously re-executing ourselves. ++ if test x"${_as_can_reexec}" != xno && test "x$CONFIG_SHELL" != x; then ++ _as_can_reexec=no; export _as_can_reexec; ++ # We cannot yet assume a decent shell, so we have to provide a ++# neutralization value for shells without unset; and this also ++# works around shells that cannot unset nonexistent variables. ++# Preserve -v and -x to the replacement shell. ++BASH_ENV=/dev/null ++ENV=/dev/null ++(unset BASH_ENV) >/dev/null 2>&1 && unset BASH_ENV ENV ++case $- in # (((( ++ *v*x* | *x*v* ) as_opts=-vx ;; ++ *v* ) as_opts=-v ;; ++ *x* ) as_opts=-x ;; ++ * ) as_opts= ;; ++esac ++exec $CONFIG_SHELL $as_opts "$as_myself" ${1+"$@"} ++# Admittedly, this is quite paranoid, since all the known shells bail ++# out after a failed `exec'. ++$as_echo "$0: could not re-execute with $CONFIG_SHELL" >&2 ++as_fn_exit 255 ++ fi ++ # We don't want this to propagate to other subprocesses. ++ { _as_can_reexec=; unset _as_can_reexec;} + if test "x$CONFIG_SHELL" = x; then +- if (eval ":") 2>/dev/null; then +- as_have_required=yes ++ as_bourne_compatible="if test -n \"\${ZSH_VERSION+set}\" && (emulate sh) >/dev/null 2>&1; then : ++ emulate sh ++ NULLCMD=: ++ # Pre-4.2 versions of Zsh do word splitting on \${1+\"\$@\"}, which ++ # is contrary to our usage. Disable this feature. ++ alias -g '\${1+\"\$@\"}'='\"\$@\"' ++ setopt NO_GLOB_SUBST + else +- as_have_required=no ++ case \`(set -o) 2>/dev/null\` in #( ++ *posix*) : ++ set -o posix ;; #( ++ *) : ++ ;; ++esac + fi +- +- if test $as_have_required = yes && (eval ": +-(as_func_return () { +- (exit \$1) +-} +-as_func_success () { +- as_func_return 0 +-} +-as_func_failure () { +- as_func_return 1 +-} +-as_func_ret_success () { +- return 0 +-} +-as_func_ret_failure () { +- return 1 +-} ++" ++ as_required="as_fn_return () { (exit \$1); } ++as_fn_success () { as_fn_return 0; } ++as_fn_failure () { as_fn_return 1; } ++as_fn_ret_success () { return 0; } ++as_fn_ret_failure () { return 1; } + + exitcode=0 +-if as_func_success; then +- : +-else +- exitcode=1 +- echo as_func_success failed. +-fi +- +-if as_func_failure; then +- exitcode=1 +- echo as_func_failure succeeded. +-fi +- +-if as_func_ret_success; then +- : +-else +- exitcode=1 +- echo as_func_ret_success failed. +-fi +- +-if as_func_ret_failure; then +- exitcode=1 +- echo as_func_ret_failure succeeded. +-fi +- +-if ( set x; as_func_ret_success y && test x = \"\$1\" ); then +- : ++as_fn_success || { exitcode=1; echo as_fn_success failed.; } ++as_fn_failure && { exitcode=1; echo as_fn_failure succeeded.; } ++as_fn_ret_success || { exitcode=1; echo as_fn_ret_success failed.; } ++as_fn_ret_failure && { exitcode=1; echo as_fn_ret_failure succeeded.; } ++if ( set x; as_fn_ret_success y && test x = \"\$1\" ); then : ++ ++else ++ exitcode=1; echo positional parameters were not saved. ++fi ++test x\$exitcode = x0 || exit 1 ++test -x / || exit 1" ++ as_suggested=" as_lineno_1=";as_suggested=$as_suggested$LINENO;as_suggested=$as_suggested" as_lineno_1a=\$LINENO ++ as_lineno_2=";as_suggested=$as_suggested$LINENO;as_suggested=$as_suggested" as_lineno_2a=\$LINENO ++ eval 'test \"x\$as_lineno_1'\$as_run'\" != \"x\$as_lineno_2'\$as_run'\" && ++ test \"x\`expr \$as_lineno_1'\$as_run' + 1\`\" = \"x\$as_lineno_2'\$as_run'\"' || exit 1 ++test \$(( 1 + 1 )) = 2 || exit 1" ++ if (eval "$as_required") 2>/dev/null; then : ++ as_have_required=yes + else +- exitcode=1 +- echo positional parameters were not saved. ++ as_have_required=no + fi ++ if test x$as_have_required = xyes && (eval "$as_suggested") 2>/dev/null; then : + +-test \$exitcode = 0) || { (exit 1); exit 1; } +- +-( +- as_lineno_1=\$LINENO +- as_lineno_2=\$LINENO +- test \"x\$as_lineno_1\" != \"x\$as_lineno_2\" && +- test \"x\`expr \$as_lineno_1 + 1\`\" = \"x\$as_lineno_2\") || { (exit 1); exit 1; } +-") 2> /dev/null; then +- : + else +- as_candidate_shells= +- as_save_IFS=$IFS; IFS=$PATH_SEPARATOR ++ as_save_IFS=$IFS; IFS=$PATH_SEPARATOR ++as_found=false + for as_dir in /bin$PATH_SEPARATOR/usr/bin$PATH_SEPARATOR$PATH + do + IFS=$as_save_IFS + test -z "$as_dir" && as_dir=. +- case $as_dir in ++ as_found=: ++ case $as_dir in #( + /*) + for as_base in sh bash ksh sh5; do +- as_candidate_shells="$as_candidate_shells $as_dir/$as_base" ++ # Try only shells that exist, to save several forks. ++ as_shell=$as_dir/$as_base ++ if { test -f "$as_shell" || test -f "$as_shell.exe"; } && ++ { $as_echo "$as_bourne_compatible""$as_required" | as_run=a "$as_shell"; } 2>/dev/null; then : ++ CONFIG_SHELL=$as_shell as_have_required=yes ++ if { $as_echo "$as_bourne_compatible""$as_suggested" | as_run=a "$as_shell"; } 2>/dev/null; then : ++ break 2 ++fi ++fi + done;; + esac ++ as_found=false + done ++$as_found || { if { test -f "$SHELL" || test -f "$SHELL.exe"; } && ++ { $as_echo "$as_bourne_compatible""$as_required" | as_run=a "$SHELL"; } 2>/dev/null; then : ++ CONFIG_SHELL=$SHELL as_have_required=yes ++fi; } + IFS=$as_save_IFS + + +- for as_shell in $as_candidate_shells $SHELL; do +- # Try only shells that exist, to save several forks. +- if { test -f "$as_shell" || test -f "$as_shell.exe"; } && +- { ("$as_shell") 2> /dev/null <<\_ASEOF +-if test -n "${ZSH_VERSION+set}" && (emulate sh) >/dev/null 2>&1; then +- emulate sh +- NULLCMD=: +- # Zsh 3.x and 4.x performs word splitting on ${1+"$@"}, which +- # is contrary to our usage. Disable this feature. +- alias -g '${1+"$@"}'='"$@"' +- setopt NO_GLOB_SUBST +-else +- case `(set -o) 2>/dev/null` in +- *posix*) set -o posix ;; +-esac +- +-fi +- +- +-: +-_ASEOF +-}; then +- CONFIG_SHELL=$as_shell +- as_have_required=yes +- if { "$as_shell" 2> /dev/null <<\_ASEOF +-if test -n "${ZSH_VERSION+set}" && (emulate sh) >/dev/null 2>&1; then +- emulate sh +- NULLCMD=: +- # Zsh 3.x and 4.x performs word splitting on ${1+"$@"}, which +- # is contrary to our usage. Disable this feature. +- alias -g '${1+"$@"}'='"$@"' +- setopt NO_GLOB_SUBST +-else +- case `(set -o) 2>/dev/null` in +- *posix*) set -o posix ;; +-esac +- +-fi +- +- +-: +-(as_func_return () { +- (exit $1) +-} +-as_func_success () { +- as_func_return 0 +-} +-as_func_failure () { +- as_func_return 1 +-} +-as_func_ret_success () { +- return 0 +-} +-as_func_ret_failure () { +- return 1 +-} +- +-exitcode=0 +-if as_func_success; then +- : +-else +- exitcode=1 +- echo as_func_success failed. +-fi +- +-if as_func_failure; then +- exitcode=1 +- echo as_func_failure succeeded. +-fi +- +-if as_func_ret_success; then +- : +-else +- exitcode=1 +- echo as_func_ret_success failed. +-fi +- +-if as_func_ret_failure; then +- exitcode=1 +- echo as_func_ret_failure succeeded. +-fi +- +-if ( set x; as_func_ret_success y && test x = "$1" ); then +- : +-else +- exitcode=1 +- echo positional parameters were not saved. ++ if test "x$CONFIG_SHELL" != x; then : ++ export CONFIG_SHELL ++ # We cannot yet assume a decent shell, so we have to provide a ++# neutralization value for shells without unset; and this also ++# works around shells that cannot unset nonexistent variables. ++# Preserve -v and -x to the replacement shell. ++BASH_ENV=/dev/null ++ENV=/dev/null ++(unset BASH_ENV) >/dev/null 2>&1 && unset BASH_ENV ENV ++case $- in # (((( ++ *v*x* | *x*v* ) as_opts=-vx ;; ++ *v* ) as_opts=-v ;; ++ *x* ) as_opts=-x ;; ++ * ) as_opts= ;; ++esac ++exec $CONFIG_SHELL $as_opts "$as_myself" ${1+"$@"} ++# Admittedly, this is quite paranoid, since all the known shells bail ++# out after a failed `exec'. ++$as_echo "$0: could not re-execute with $CONFIG_SHELL" >&2 ++exit 255 ++fi ++ ++ if test x$as_have_required = xno; then : ++ $as_echo "$0: This script requires a shell more modern than all" ++ $as_echo "$0: the shells that I found on your system." ++ if test x${ZSH_VERSION+set} = xset ; then ++ $as_echo "$0: In particular, zsh $ZSH_VERSION has bugs and should" ++ $as_echo "$0: be upgraded to zsh 4.3.4 or later." ++ else ++ $as_echo "$0: Please tell bug-autoconf@gnu.org about your system, ++$0: including any error possibly output before this ++$0: message. Then install a modern shell, or manually run ++$0: the script under such a shell if you do have one." ++ fi ++ exit 1 + fi +- +-test $exitcode = 0) || { (exit 1); exit 1; } +- +-( +- as_lineno_1=$LINENO +- as_lineno_2=$LINENO +- test "x$as_lineno_1" != "x$as_lineno_2" && +- test "x`expr $as_lineno_1 + 1`" = "x$as_lineno_2") || { (exit 1); exit 1; } +- +-_ASEOF +-}; then +- break + fi +- + fi ++SHELL=${CONFIG_SHELL-/bin/sh} ++export SHELL ++# Unset more variables known to interfere with behavior of common tools. ++CLICOLOR_FORCE= GREP_OPTIONS= ++unset CLICOLOR_FORCE GREP_OPTIONS + +- done +- +- if test "x$CONFIG_SHELL" != x; then +- for as_var in BASH_ENV ENV +- do ($as_unset $as_var) >/dev/null 2>&1 && $as_unset $as_var +- done +- export CONFIG_SHELL +- exec "$CONFIG_SHELL" "$as_myself" ${1+"$@"} +-fi ++## --------------------- ## ++## M4sh Shell Functions. ## ++## --------------------- ## ++# as_fn_unset VAR ++# --------------- ++# Portably unset VAR. ++as_fn_unset () ++{ ++ { eval $1=; unset $1;} ++} ++as_unset=as_fn_unset + ++# as_fn_set_status STATUS ++# ----------------------- ++# Set $? to STATUS, without forking. ++as_fn_set_status () ++{ ++ return $1 ++} # as_fn_set_status + +- if test $as_have_required = no; then +- echo This script requires a shell more modern than all the +- echo shells that I found on your system. Please install a +- echo modern shell, or manually run the script under such a +- echo shell if you do have one. +- { (exit 1); exit 1; } +-fi ++# as_fn_exit STATUS ++# ----------------- ++# Exit the shell with STATUS, even in a "trap 0" or "set -e" context. ++as_fn_exit () ++{ ++ set +e ++ as_fn_set_status $1 ++ exit $1 ++} # as_fn_exit ++ ++# as_fn_mkdir_p ++# ------------- ++# Create "$as_dir" as a directory, including parents if necessary. ++as_fn_mkdir_p () ++{ + ++ case $as_dir in #( ++ -*) as_dir=./$as_dir;; ++ esac ++ test -d "$as_dir" || eval $as_mkdir_p || { ++ as_dirs= ++ while :; do ++ case $as_dir in #( ++ *\'*) as_qdir=`$as_echo "$as_dir" | sed "s/'/'\\\\\\\\''/g"`;; #'( ++ *) as_qdir=$as_dir;; ++ esac ++ as_dirs="'$as_qdir' $as_dirs" ++ as_dir=`$as_dirname -- "$as_dir" || ++$as_expr X"$as_dir" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \ ++ X"$as_dir" : 'X\(//\)[^/]' \| \ ++ X"$as_dir" : 'X\(//\)$' \| \ ++ X"$as_dir" : 'X\(/\)' \| . 2>/dev/null || ++$as_echo X"$as_dir" | ++ sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{ ++ s//\1/ ++ q ++ } ++ /^X\(\/\/\)[^/].*/{ ++ s//\1/ ++ q ++ } ++ /^X\(\/\/\)$/{ ++ s//\1/ ++ q ++ } ++ /^X\(\/\).*/{ ++ s//\1/ ++ q ++ } ++ s/.*/./; q'` ++ test -d "$as_dir" && break ++ done ++ test -z "$as_dirs" || eval "mkdir $as_dirs" ++ } || test -d "$as_dir" || as_fn_error $? "cannot create directory $as_dir" + +-fi + +-fi ++} # as_fn_mkdir_p + ++# as_fn_executable_p FILE ++# ----------------------- ++# Test if FILE is an executable regular file. ++as_fn_executable_p () ++{ ++ test -f "$1" && test -x "$1" ++} # as_fn_executable_p ++# as_fn_append VAR VALUE ++# ---------------------- ++# Append the text in VALUE to the end of the definition contained in VAR. Take ++# advantage of any shell optimizations that allow amortized linear growth over ++# repeated appends, instead of the typical quadratic growth present in naive ++# implementations. ++if (eval "as_var=1; as_var+=2; test x\$as_var = x12") 2>/dev/null; then : ++ eval 'as_fn_append () ++ { ++ eval $1+=\$2 ++ }' ++else ++ as_fn_append () ++ { ++ eval $1=\$$1\$2 ++ } ++fi # as_fn_append ++ ++# as_fn_arith ARG... ++# ------------------ ++# Perform arithmetic evaluation on the ARGs, and store the result in the ++# global $as_val. Take advantage of shells that can avoid forks. The arguments ++# must be portable across $(()) and expr. ++if (eval "test \$(( 1 + 1 )) = 2") 2>/dev/null; then : ++ eval 'as_fn_arith () ++ { ++ as_val=$(( $* )) ++ }' ++else ++ as_fn_arith () ++ { ++ as_val=`expr "$@" || test $? -eq 1` ++ } ++fi # as_fn_arith + + +-(eval "as_func_return () { +- (exit \$1) +-} +-as_func_success () { +- as_func_return 0 +-} +-as_func_failure () { +- as_func_return 1 +-} +-as_func_ret_success () { +- return 0 +-} +-as_func_ret_failure () { +- return 1 +-} ++# as_fn_error STATUS ERROR [LINENO LOG_FD] ++# ---------------------------------------- ++# Output "`basename $0`: error: ERROR" to stderr. If LINENO and LOG_FD are ++# provided, also output the error to LOG_FD, referencing LINENO. Then exit the ++# script with STATUS, using 1 if that was 0. ++as_fn_error () ++{ ++ as_status=$1; test $as_status -eq 0 && as_status=1 ++ if test "$4"; then ++ as_lineno=${as_lineno-"$3"} as_lineno_stack=as_lineno_stack=$as_lineno_stack ++ $as_echo "$as_me:${as_lineno-$LINENO}: error: $2" >&$4 ++ fi ++ $as_echo "$as_me: error: $2" >&2 ++ as_fn_exit $as_status ++} # as_fn_error + +-exitcode=0 +-if as_func_success; then +- : ++if expr a : '\(a\)' >/dev/null 2>&1 && ++ test "X`expr 00001 : '.*\(...\)'`" = X001; then ++ as_expr=expr + else +- exitcode=1 +- echo as_func_success failed. +-fi +- +-if as_func_failure; then +- exitcode=1 +- echo as_func_failure succeeded. ++ as_expr=false + fi + +-if as_func_ret_success; then +- : ++if (basename -- /) >/dev/null 2>&1 && test "X`basename -- / 2>&1`" = "X/"; then ++ as_basename=basename + else +- exitcode=1 +- echo as_func_ret_success failed. +-fi +- +-if as_func_ret_failure; then +- exitcode=1 +- echo as_func_ret_failure succeeded. ++ as_basename=false + fi + +-if ( set x; as_func_ret_success y && test x = \"\$1\" ); then +- : ++if (as_dir=`dirname -- /` && test "X$as_dir" = X/) >/dev/null 2>&1; then ++ as_dirname=dirname + else +- exitcode=1 +- echo positional parameters were not saved. ++ as_dirname=false + fi + +-test \$exitcode = 0") || { +- echo No shell found that supports shell functions. +- echo Please tell autoconf@gnu.org about your system, +- echo including any error possibly output before this +- echo message +-} +- ++as_me=`$as_basename -- "$0" || ++$as_expr X/"$0" : '.*/\([^/][^/]*\)/*$' \| \ ++ X"$0" : 'X\(//\)$' \| \ ++ X"$0" : 'X\(/\)' \| . 2>/dev/null || ++$as_echo X/"$0" | ++ sed '/^.*\/\([^/][^/]*\)\/*$/{ ++ s//\1/ ++ q ++ } ++ /^X\/\(\/\/\)$/{ ++ s//\1/ ++ q ++ } ++ /^X\/\(\/\).*/{ ++ s//\1/ ++ q ++ } ++ s/.*/./; q'` + ++# Avoid depending upon Character Ranges. ++as_cr_letters='abcdefghijklmnopqrstuvwxyz' ++as_cr_LETTERS='ABCDEFGHIJKLMNOPQRSTUVWXYZ' ++as_cr_Letters=$as_cr_letters$as_cr_LETTERS ++as_cr_digits='0123456789' ++as_cr_alnum=$as_cr_Letters$as_cr_digits + +- as_lineno_1=$LINENO +- as_lineno_2=$LINENO +- test "x$as_lineno_1" != "x$as_lineno_2" && +- test "x`expr $as_lineno_1 + 1`" = "x$as_lineno_2" || { + +- # Create $as_me.lineno as a copy of $as_myself, but with $LINENO +- # uniformly replaced by the line number. The first 'sed' inserts a +- # line-number line after each line using $LINENO; the second 'sed' +- # does the real work. The second script uses 'N' to pair each +- # line-number line with the line containing $LINENO, and appends +- # trailing '-' during substitution so that $LINENO is not a special +- # case at line end. +- # (Raja R Harinath suggested sed '=', and Paul Eggert wrote the +- # scripts with optimization help from Paolo Bonzini. Blame Lee +- # E. McMahon (1931-1989) for sed's syntax. :-) ++ as_lineno_1=$LINENO as_lineno_1a=$LINENO ++ as_lineno_2=$LINENO as_lineno_2a=$LINENO ++ eval 'test "x$as_lineno_1'$as_run'" != "x$as_lineno_2'$as_run'" && ++ test "x`expr $as_lineno_1'$as_run' + 1`" = "x$as_lineno_2'$as_run'"' || { ++ # Blame Lee E. McMahon (1931-1989) for sed's syntax. :-) + sed -n ' + p + /[$]LINENO/= +@@ -451,9 +483,12 @@ test \$exitcode = 0") || { + s/-\n.*// + ' >$as_me.lineno && + chmod +x "$as_me.lineno" || +- { echo "$as_me: error: cannot create $as_me.lineno; rerun with a POSIX shell" >&2 +- { (exit 1); exit 1; }; } ++ { $as_echo "$as_me: error: cannot create $as_me.lineno; rerun with a POSIX shell" >&2; as_fn_exit 1; } + ++ # If we had to re-execute with $CONFIG_SHELL, we're ensured to have ++ # already done that, so ensure we don't try to do so again and fall ++ # in an infinite loop. This has already happened in practice. ++ _as_can_reexec=no; export _as_can_reexec + # Don't try to exec as it changes $[0], causing all sort of problems + # (the dirname of $[0] is not the place where we might find the + # original and so on. Autoconf is especially sensitive to this). +@@ -462,84 +497,55 @@ test \$exitcode = 0") || { + exit + } + +- +-if (as_dir=`dirname -- /` && test "X$as_dir" = X/) >/dev/null 2>&1; then +- as_dirname=dirname +-else +- as_dirname=false +-fi +- + ECHO_C= ECHO_N= ECHO_T= +-case `echo -n x` in ++case `echo -n x` in #((((( + -n*) +- case `echo 'x\c'` in ++ case `echo 'xy\c'` in + *c*) ECHO_T=' ';; # ECHO_T is single tab character. +- *) ECHO_C='\c';; ++ xy) ECHO_C='\c';; ++ *) echo `echo ksh88 bug on AIX 6.1` > /dev/null ++ ECHO_T=' ';; + esac;; + *) + ECHO_N='-n';; + esac + +-if expr a : '\(a\)' >/dev/null 2>&1 && +- test "X`expr 00001 : '.*\(...\)'`" = X001; then +- as_expr=expr +-else +- as_expr=false +-fi +- + rm -f conf$$ conf$$.exe conf$$.file + if test -d conf$$.dir; then + rm -f conf$$.dir/conf$$.file + else + rm -f conf$$.dir +- mkdir conf$$.dir +-fi +-echo >conf$$.file +-if ln -s conf$$.file conf$$ 2>/dev/null; then +- as_ln_s='ln -s' +- # ... but there are two gotchas: +- # 1) On MSYS, both `ln -s file dir' and `ln file dir' fail. +- # 2) DJGPP < 2.04 has no symlinks; `ln -s' creates a wrapper executable. +- # In both cases, we have to default to `cp -p'. +- ln -s conf$$.file conf$$.dir 2>/dev/null && test ! -f conf$$.exe || +- as_ln_s='cp -p' +-elif ln conf$$.file conf$$ 2>/dev/null; then +- as_ln_s=ln +-else +- as_ln_s='cp -p' ++ mkdir conf$$.dir 2>/dev/null ++fi ++if (echo >conf$$.file) 2>/dev/null; then ++ if ln -s conf$$.file conf$$ 2>/dev/null; then ++ as_ln_s='ln -s' ++ # ... but there are two gotchas: ++ # 1) On MSYS, both `ln -s file dir' and `ln file dir' fail. ++ # 2) DJGPP < 2.04 has no symlinks; `ln -s' creates a wrapper executable. ++ # In both cases, we have to default to `cp -pR'. ++ ln -s conf$$.file conf$$.dir 2>/dev/null && test ! -f conf$$.exe || ++ as_ln_s='cp -pR' ++ elif ln conf$$.file conf$$ 2>/dev/null; then ++ as_ln_s=ln ++ else ++ as_ln_s='cp -pR' ++ fi ++else ++ as_ln_s='cp -pR' + fi + rm -f conf$$ conf$$.exe conf$$.dir/conf$$.file conf$$.file + rmdir conf$$.dir 2>/dev/null + + if mkdir -p . 2>/dev/null; then +- as_mkdir_p=: ++ as_mkdir_p='mkdir -p "$as_dir"' + else + test -d ./-p && rmdir ./-p + as_mkdir_p=false + fi + +-if test -x / >/dev/null 2>&1; then +- as_test_x='test -x' +-else +- if ls -dL / >/dev/null 2>&1; then +- as_ls_L_option=L +- else +- as_ls_L_option= +- fi +- as_test_x=' +- eval sh -c '\'' +- if test -d "$1"; then +- test -d "$1/."; +- else +- case $1 in +- -*)set "./$1";; +- esac; +- case `ls -ld'$as_ls_L_option' "$1" 2>/dev/null` in +- ???[sx]*):;;*)false;;esac;fi +- '\'' sh +- ' +-fi +-as_executable_p=$as_test_x ++as_test_x='test -x' ++as_executable_p=as_fn_executable_p + + # Sed expression to map a string onto a valid CPP name. + as_tr_cpp="eval sed 'y%*$as_cr_letters%P$as_cr_LETTERS%;s%[^_$as_cr_alnum]%_%g'" +@@ -549,7 +555,6 @@ as_tr_sh="eval sed 'y%*+%pp%;s%[^_$as_cr_alnum]%_%g'" + + + +- + # Check that we are running under the correct shell. + SHELL=${CONFIG_SHELL-/bin/sh} + +@@ -703,10 +708,11 @@ tagnames=${tagnames+${tagnames},}CXX + + tagnames=${tagnames+${tagnames},}F77 + +-exec 7<&0 &1 ++test -n "$DJDIR" || exec 7<&0 &1 + + # Name of the host. +-# hostname on some systems (SVR3.2, Linux) returns a bogus exit status, ++# hostname on some systems (SVR3.2, old GNU/Linux) returns a bogus exit status, + # so uname gets run too. + ac_hostname=`(hostname || uname -n) 2>/dev/null | sed 1q` + +@@ -721,7 +727,6 @@ cross_compiling=no + subdirs= + MFLAGS= + MAKEFLAGS= +-SHELL=${CONFIG_SHELL-/bin/sh} + + # Identity of this package. + PACKAGE_NAME='vlc' +@@ -729,6 +734,7 @@ PACKAGE_TARNAME='vlc' + PACKAGE_VERSION='0.8.6i' + PACKAGE_STRING='vlc 0.8.6i' + PACKAGE_BUGREPORT='' ++PACKAGE_URL='' + + ac_unique_file="src/libvlc.c" + # Factoring default headers for most tests. +@@ -767,279 +773,482 @@ ac_includes_default="\ + # include + #endif" + +-ac_subst_vars='SHELL +-PATH_SEPARATOR +-PACKAGE_NAME +-PACKAGE_TARNAME +-PACKAGE_VERSION +-PACKAGE_STRING +-PACKAGE_BUGREPORT +-exec_prefix +-prefix +-program_transform_name +-bindir +-sbindir +-libexecdir +-datarootdir +-datadir +-sysconfdir +-sharedstatedir +-localstatedir +-includedir +-oldincludedir +-docdir +-infodir +-htmldir +-dvidir +-pdfdir +-psdir +-libdir +-localedir +-mandir +-DEFS +-ECHO_C +-ECHO_N +-ECHO_T +-LIBS +-build_alias +-host_alias +-target_alias +-build +-build_cpu +-build_vendor +-build_os +-host +-host_cpu +-host_vendor +-host_os +-target +-target_cpu +-target_vendor +-target_os +-INSTALL_PROGRAM +-INSTALL_SCRIPT +-INSTALL_DATA +-CYGPATH_W +-PACKAGE +-VERSION +-ACLOCAL +-AUTOCONF +-AUTOMAKE +-AUTOHEADER +-MAKEINFO +-install_sh +-STRIP +-INSTALL_STRIP_PROGRAM +-mkdir_p +-AWK +-SET_MAKE +-am__leading_dot +-AMTAR +-am__tar +-am__untar +-MAINTAINER_MODE_TRUE +-MAINTAINER_MODE_FALSE +-MAINT +-CC +-CFLAGS +-LDFLAGS +-CPPFLAGS +-ac_ct_CC +-EXEEXT +-OBJEXT +-DEPDIR +-am__include +-am__quote +-AMDEP_TRUE +-AMDEP_FALSE +-AMDEPBACKSLASH +-CCDEPMODE +-am__fastdepCC_TRUE +-am__fastdepCC_FALSE +-CPP +-CXX +-CXXFLAGS +-ac_ct_CXX +-CXXDEPMODE +-am__fastdepCXX_TRUE +-am__fastdepCXX_FALSE +-CXXCPP +-CCAS +-CCASFLAGS +-GREP +-EGREP +-OBJC +-OBJCFLAGS +-OBJCDEPMODE +-am__fastdepOBJC_TRUE +-am__fastdepOBJC_FALSE +-RANLIB +-AR +-LD +-SED +-LN_S +-ECHO +-DSYMUTIL +-NMEDIT +-DLLTOOL +-AS +-OBJDUMP +-F77 +-FFLAGS +-ac_ct_F77 +-LIBTOOL +-USE_LIBTOOL_TRUE +-USE_LIBTOOL_FALSE +-WINDRES +-HAVE_BEOS_TRUE +-HAVE_BEOS_FALSE +-HAVE_DARWIN_TRUE +-HAVE_DARWIN_FALSE +-HAVE_WIN32_TRUE +-HAVE_WIN32_FALSE +-HAVE_WINCE_TRUE +-HAVE_WINCE_FALSE +-MKINSTALLDIRS +-MSGFMT +-GMSGFMT +-XGETTEXT +-MSGMERGE +-ALLOCA +-GLIBC21 +-LIBICONV +-LTLIBICONV +-INTLBISON +-USE_NLS +-BUILD_INCLUDED_LIBINTL +-USE_INCLUDED_LIBINTL +-CATOBJEXT +-INTLOBJS +-DATADIRNAME +-INSTOBJEXT +-GENCAT +-INTL_LIBTOOL_SUFFIX_PREFIX +-INTLLIBS +-LIBINTL +-LTLIBINTL +-POSUB +-INCLUDED_LIBINTL +-SYMPREF +-BUILD_GETOPT_TRUE +-BUILD_GETOPT_FALSE +-BUILD_DIRENT_TRUE +-BUILD_DIRENT_FALSE +-XMKMF +-X_CFLAGS +-X_PRE_LIBS +-X_LIBS +-X_EXTRA_LIBS +-PKG_CONFIG +-HAL_CFLAGS +-HAL_LIBS +-SHOUT_CFLAGS +-SHOUT_LIBS +-NOTIFY_CFLAGS +-NOTIFY_LIBS +-DVDNAV_CONFIG +-GNOMEVFS_CFLAGS +-GNOMEVFS_LIBS +-LIBCDIO_CFLAGS +-LIBCDIO_LIBS +-VCDINFO_CFLAGS +-VCDINFO_LIBS +-LIBCDIO_PARANOIA_CFLAGS +-LIBCDIO_PARANOIA_LIBS +-LIBCDDB_CFLAGS +-LIBCDDB_LIBS +-FFMPEG_CONFIG +-FFMPEG_CFLAGS +-FFMPEG_LIBS +-POSTPROC_CFLAGS +-POSTPROC_LIBS +-DIRAC_CFLAGS +-DIRAC_LIBS +-SDL12_CONFIG +-SDL11_CONFIG +-SDL_CONFIG +-FREETYPE_CONFIG +-FRIBIDI_CONFIG +-XML2_CONFIG +-SVG_CFLAGS +-SVG_LIBS +-DIRECTFB_CFLAGS +-DIRECTFB_LIBS +-CACA_CONFIG +-ESD_CONFIG +-ARTS_CONFIG +-GTK2_CFLAGS +-GTK2_LIBS +-WX_CONFIG +-DAAP_CFLAGS +-DAAP_LIBS +-BONJOUR_CFLAGS +-BONJOUR_LIBS +-GNUTLS_CFLAGS +-GNUTLS_LIBS +-LOADER_TRUE +-LOADER_FALSE +-MIDL +-WIDL +-HAS_MIDL_COMPILER_TRUE +-HAS_MIDL_COMPILER_FALSE +-HAS_WIDL_COMPILER_TRUE +-HAS_WIDL_COMPILER_FALSE +-BUILD_ACTIVEX_TRUE +-BUILD_ACTIVEX_FALSE +-FIREFOX_CFLAGS +-FIREFOX_LIBS +-MOZILLA_CONFIG +-SEAMONKEY_CONFIG +-XULRUNNER_CONFIG +-FIREFOX_XPCOM_CFLAGS +-FIREFOX_XPCOM_LIBS +-MOZILLA_NSPR_CFLAGS +-MOZILLA_NSPR_LIBS +-NSPR_CFLAGS +-NSPR_LIBS +-CYGPATH +-BUILD_MOZILLA_TRUE +-BUILD_MOZILLA_FALSE +-BUILD_PYTHON_TRUE +-BUILD_PYTHON_FALSE +-JAVAC +-JAVA +-uudecode +-BUILD_JAVA_TRUE +-BUILD_JAVA_FALSE +-HAVE_PLUGINS_TRUE +-HAVE_PLUGINS_FALSE +-HAVE_BUILTINS_TRUE +-HAVE_BUILTINS_FALSE +-BUILD_SHARED_TRUE +-BUILD_SHARED_FALSE +-pic +-VERSION_MAJOR +-VERSION_MINOR +-VERSION_REVISION +-VLC_ENTRY +-VLC_CONFIG +-SYS +-ARCH +-ALIASES +-ASM +-MOC +-MOZILLA_SDK_PATH +-WINE_SDK_PATH +-XPIDL +-XPIDL_INCL +-LIBEXT +-AM_CPPFLAGS +-ALL_LINGUAS +-MACOSX_DEPLOYMENT_TARGET +-FILE_LIBVLC_DLL ++ac_header_list= ++ac_subst_vars='LTLIBOBJS + LIBOBJS +-LTLIBOBJS' ++FILE_LIBVLC_DLL ++MACOSX_DEPLOYMENT_TARGET ++ALL_LINGUAS ++AM_CPPFLAGS ++LIBEXT ++XPIDL_INCL ++XPIDL ++WINE_SDK_PATH ++MOZILLA_SDK_PATH ++MOC ++ASM ++ALIASES ++ARCH ++SYS ++VLC_CONFIG ++VLC_ENTRY ++VERSION_REVISION ++VERSION_MINOR ++VERSION_MAJOR ++pic ++BUILD_SHARED_FALSE ++BUILD_SHARED_TRUE ++HAVE_BUILTINS_FALSE ++HAVE_BUILTINS_TRUE ++HAVE_PLUGINS_FALSE ++HAVE_PLUGINS_TRUE ++BUILD_JAVA_FALSE ++BUILD_JAVA_TRUE ++uudecode ++JAVA ++JAVAC ++BUILD_PYTHON_FALSE ++BUILD_PYTHON_TRUE ++BUILD_MOZILLA_FALSE ++BUILD_MOZILLA_TRUE ++CYGPATH ++NSPR_LIBS ++NSPR_CFLAGS ++MOZILLA_NSPR_LIBS ++MOZILLA_NSPR_CFLAGS ++FIREFOX_XPCOM_LIBS ++FIREFOX_XPCOM_CFLAGS ++XULRUNNER_CONFIG ++SEAMONKEY_CONFIG ++MOZILLA_CONFIG ++FIREFOX_LIBS ++FIREFOX_CFLAGS ++BUILD_ACTIVEX_FALSE ++BUILD_ACTIVEX_TRUE ++HAS_WIDL_COMPILER_FALSE ++HAS_WIDL_COMPILER_TRUE ++HAS_MIDL_COMPILER_FALSE ++HAS_MIDL_COMPILER_TRUE ++WIDL ++MIDL ++LOADER_FALSE ++LOADER_TRUE ++GNUTLS_LIBS ++GNUTLS_CFLAGS ++BONJOUR_LIBS ++BONJOUR_CFLAGS ++DAAP_LIBS ++DAAP_CFLAGS ++WX_CONFIG ++GTK2_LIBS ++GTK2_CFLAGS ++ARTS_CONFIG ++ESD_CONFIG ++CACA_CONFIG ++DIRECTFB_LIBS ++DIRECTFB_CFLAGS ++SVG_LIBS ++SVG_CFLAGS ++XML2_CONFIG ++FRIBIDI_CONFIG ++FREETYPE_CONFIG ++SDL_CONFIG ++SDL11_CONFIG ++SDL12_CONFIG ++DIRAC_LIBS ++DIRAC_CFLAGS ++POSTPROC_LIBS ++POSTPROC_CFLAGS ++FFMPEG_LIBS ++FFMPEG_CFLAGS ++FFMPEG_CONFIG ++LIBCDDB_LIBS ++LIBCDDB_CFLAGS ++LIBCDIO_PARANOIA_LIBS ++LIBCDIO_PARANOIA_CFLAGS ++VCDINFO_LIBS ++VCDINFO_CFLAGS ++LIBCDIO_LIBS ++LIBCDIO_CFLAGS ++GNOMEVFS_LIBS ++GNOMEVFS_CFLAGS ++DVDNAV_CONFIG ++NOTIFY_LIBS ++NOTIFY_CFLAGS ++SHOUT_LIBS ++SHOUT_CFLAGS ++HAL_LIBS ++HAL_CFLAGS ++PKG_CONFIG ++X_EXTRA_LIBS ++X_LIBS ++X_PRE_LIBS ++X_CFLAGS ++XMKMF ++BUILD_DIRENT_FALSE ++BUILD_DIRENT_TRUE ++BUILD_GETOPT_FALSE ++BUILD_GETOPT_TRUE ++SYMPREF ++INCLUDED_LIBINTL ++POSUB ++LTLIBINTL ++LIBINTL ++INTLLIBS ++INTL_LIBTOOL_SUFFIX_PREFIX ++GENCAT ++INSTOBJEXT ++DATADIRNAME ++INTLOBJS ++CATOBJEXT ++USE_INCLUDED_LIBINTL ++BUILD_INCLUDED_LIBINTL ++USE_NLS ++INTLBISON ++LTLIBICONV ++LIBICONV ++GLIBC21 ++ALLOCA ++MSGMERGE ++XGETTEXT ++GMSGFMT ++MSGFMT ++MKINSTALLDIRS ++HAVE_WINCE_FALSE ++HAVE_WINCE_TRUE ++HAVE_WIN32_FALSE ++HAVE_WIN32_TRUE ++HAVE_DARWIN_FALSE ++HAVE_DARWIN_TRUE ++HAVE_HAIKU_FALSE ++HAVE_HAIKU_TRUE ++HAVE_BEOS_FALSE ++HAVE_BEOS_TRUE ++WINDRES ++USE_LIBTOOL_FALSE ++USE_LIBTOOL_TRUE ++LIBTOOL ++ac_ct_F77 ++FFLAGS ++F77 ++OBJDUMP ++AS ++DLLTOOL ++NMEDIT ++DSYMUTIL ++ECHO ++LN_S ++SED ++LD ++AR ++RANLIB ++am__fastdepOBJC_FALSE ++am__fastdepOBJC_TRUE ++OBJCDEPMODE ++OBJCFLAGS ++OBJC ++EGREP ++GREP ++CCASFLAGS ++CCAS ++CXXCPP ++am__fastdepCXX_FALSE ++am__fastdepCXX_TRUE ++CXXDEPMODE ++ac_ct_CXX ++CXXFLAGS ++CXX ++CPP ++am__fastdepCC_FALSE ++am__fastdepCC_TRUE ++CCDEPMODE ++AMDEPBACKSLASH ++AMDEP_FALSE ++AMDEP_TRUE ++am__quote ++am__include ++DEPDIR ++OBJEXT ++EXEEXT ++ac_ct_CC ++CPPFLAGS ++LDFLAGS ++CFLAGS ++CC ++MAINT ++MAINTAINER_MODE_FALSE ++MAINTAINER_MODE_TRUE ++am__untar ++am__tar ++AMTAR ++am__leading_dot ++SET_MAKE ++AWK ++mkdir_p ++INSTALL_STRIP_PROGRAM ++STRIP ++install_sh ++MAKEINFO ++AUTOHEADER ++AUTOMAKE ++AUTOCONF ++ACLOCAL ++VERSION ++PACKAGE ++CYGPATH_W ++INSTALL_DATA ++INSTALL_SCRIPT ++INSTALL_PROGRAM ++target_os ++target_vendor ++target_cpu ++target ++host_os ++host_vendor ++host_cpu ++host ++build_os ++build_vendor ++build_cpu ++build ++target_alias ++host_alias ++build_alias ++LIBS ++ECHO_T ++ECHO_N ++ECHO_C ++DEFS ++mandir ++localedir ++libdir ++psdir ++pdfdir ++dvidir ++htmldir ++infodir ++docdir ++oldincludedir ++includedir ++localstatedir ++sharedstatedir ++sysconfdir ++datadir ++datarootdir ++libexecdir ++sbindir ++bindir ++program_transform_name ++prefix ++exec_prefix ++PACKAGE_URL ++PACKAGE_BUGREPORT ++PACKAGE_STRING ++PACKAGE_VERSION ++PACKAGE_TARNAME ++PACKAGE_NAME ++PATH_SEPARATOR ++SHELL' + ac_subst_files='' ++ac_user_opts=' ++enable_option_checking ++enable_maintainer_mode ++enable_dependency_tracking ++enable_static ++enable_shared ++enable_fast_install ++with_gnu_ld ++enable_libtool_lock ++with_pic ++with_tags ++enable_libtool ++with_contrib ++with_macosx_sdk ++enable_rpath ++with_libiconv_prefix ++enable_nls ++with_included_gettext ++with_libintl_prefix ++enable_pth ++enable_st ++with_x ++enable_hal ++enable_gprof ++enable_cprof ++enable_mostly_builtin ++with_ ++with_tuning ++enable_optimize_memory ++enable_optimizations ++enable_altivec ++enable_debug ++enable_release ++enable_shared_libvlc ++enable_sout ++enable_shout ++enable_httpd ++enable_vlm ++enable_growl ++enable_notify ++enable_live555 ++with_live555_tree ++enable_dc1394 ++enable_dv ++with_dv_raw1394 ++with_dv_raw1394_tree ++with_dv_avc1394 ++with_dv_avc1394_tree ++enable_dvdread ++with_dvdread ++with_dvdread_tree ++enable_dvdnav ++with_dvdnav_config_path ++enable_dshow ++enable_smb ++enable_dvbpsi ++with_dvbpsi ++enable_v4l ++with_v4l ++enable_pvr ++with_videodev2 ++enable_gnomevfs ++enable_libcdio ++enable_cddax ++enable_libcddb ++enable_vcdx ++enable_cdda ++enable_vcd ++enable_dvb ++with_dvb ++enable_screen ++enable_ogg ++with_ogg_tree ++enable_mkv ++enable_mod ++with_mod_tree ++enable_mpc ++enable_mad ++with_mad ++with_mad_tree ++enable_ffmpeg ++with_ffmpeg_mp3lame ++with_ffmpeg_faac ++with_ffmpeg_dts ++with_ffmpeg_dca ++with_ffmpeg_vorbis ++with_ffmpeg_theora ++with_ffmpeg_ogg ++with_ffmpeg_zlib ++with_ffmpeg_tree ++with_ffmpeg_config_path ++enable_ffmpegaltivec ++enable_faad ++with_faad_tree ++enable_twolame ++with_twolame_tree ++enable_quicktime ++enable_real ++enable_realrtsp ++enable_libtar ++enable_a52 ++with_a52 ++with_a52_tree ++with_a52_fixed ++enable_dts ++with_dts_tree ++enable_flac ++with_flac_tree ++enable_libmpeg2 ++with_libmpeg2_tree ++enable_vorbis ++with_vorbis_tree ++enable_tremor ++enable_speex ++with_speex_tree ++enable_tarkin ++with_tarkin_tree ++enable_theora ++enable_dirac ++enable_png ++enable_x264 ++with_x264_tree ++enable_cmml ++enable_x11 ++enable_xvideo ++enable_glx ++enable_xinerama ++enable_opengl ++enable_sdl ++enable_sdl_image ++with_sdl_config_path ++with_sdl_prefix ++enable_freetype ++enable_fribidi ++with_freetype_config_path ++with_fribidi_config_path ++enable_libxml2 ++with_xml2_config_path ++enable_svg ++enable_snapshot ++enable_qte ++with_qte ++enable_hd1000v ++enable_directx ++with_directx ++enable_fb ++enable_mga ++enable_svgalib ++enable_directfb ++with_directfb ++enable_ggi ++with_ggi ++enable_glide ++with_glide ++enable_aa ++enable_caca ++with_caca_config_path ++enable_wingdi ++enable_oss ++enable_esd ++enable_portaudio ++enable_arts ++enable_alsa ++enable_waveout ++enable_macosx_audio ++enable_hd1000a ++enable_jack ++enable_cyberlink ++with_cyberlink_tree ++enable_upnp ++enable_skins2 ++enable_pda ++enable_wxwidgets ++with_wx_config_path ++with_wx_config ++enable_opie ++enable_macosx ++enable_qnx ++enable_ncurses ++enable_xosd ++enable_visual ++enable_galaktos ++enable_goom ++with_goom_tree ++enable_daap ++enable_bonjour ++enable_lirc ++enable_gnutls ++with_words ++enable_loader ++enable_activex ++with_wine_sdk_path ++enable_mozilla ++with_mozilla_sdk_path ++enable_mediacontrol_python_bindings ++enable_java_bindings ++enable_testsuite ++enable_plugins ++' + ac_precious_vars='build_alias + host_alias + target_alias +@@ -1108,6 +1317,8 @@ NSPR_LIBS' + # Initialize some variables set by options. + ac_init_help= + ac_init_version=false ++ac_unrecognized_opts= ++ac_unrecognized_sep= + # The variables have the same names as the options, with + # dashes changed to underlines. + cache_file=/dev/null +@@ -1163,8 +1374,9 @@ do + fi + + case $ac_option in +- *=*) ac_optarg=`expr "X$ac_option" : '[^=]*=\(.*\)'` ;; +- *) ac_optarg=yes ;; ++ *=?*) ac_optarg=`expr "X$ac_option" : '[^=]*=\(.*\)'` ;; ++ *=) ac_optarg= ;; ++ *) ac_optarg=yes ;; + esac + + # Accept the important Cygnus configure options, so we can diagnose typos. +@@ -1206,13 +1418,20 @@ do + datarootdir=$ac_optarg ;; + + -disable-* | --disable-*) +- ac_feature=`expr "x$ac_option" : 'x-*disable-\(.*\)'` ++ ac_useropt=`expr "x$ac_option" : 'x-*disable-\(.*\)'` + # Reject names that are not valid shell variable names. +- expr "x$ac_feature" : ".*[^-._$as_cr_alnum]" >/dev/null && +- { echo "$as_me: error: invalid feature name: $ac_feature" >&2 +- { (exit 1); exit 1; }; } +- ac_feature=`echo $ac_feature | sed 's/[-.]/_/g'` +- eval enable_$ac_feature=no ;; ++ expr "x$ac_useropt" : ".*[^-+._$as_cr_alnum]" >/dev/null && ++ as_fn_error $? "invalid feature name: $ac_useropt" ++ ac_useropt_orig=$ac_useropt ++ ac_useropt=`$as_echo "$ac_useropt" | sed 's/[-+.]/_/g'` ++ case $ac_user_opts in ++ *" ++"enable_$ac_useropt" ++"*) ;; ++ *) ac_unrecognized_opts="$ac_unrecognized_opts$ac_unrecognized_sep--disable-$ac_useropt_orig" ++ ac_unrecognized_sep=', ';; ++ esac ++ eval enable_$ac_useropt=no ;; + + -docdir | --docdir | --docdi | --doc | --do) + ac_prev=docdir ;; +@@ -1225,13 +1444,20 @@ do + dvidir=$ac_optarg ;; + + -enable-* | --enable-*) +- ac_feature=`expr "x$ac_option" : 'x-*enable-\([^=]*\)'` ++ ac_useropt=`expr "x$ac_option" : 'x-*enable-\([^=]*\)'` + # Reject names that are not valid shell variable names. +- expr "x$ac_feature" : ".*[^-._$as_cr_alnum]" >/dev/null && +- { echo "$as_me: error: invalid feature name: $ac_feature" >&2 +- { (exit 1); exit 1; }; } +- ac_feature=`echo $ac_feature | sed 's/[-.]/_/g'` +- eval enable_$ac_feature=\$ac_optarg ;; ++ expr "x$ac_useropt" : ".*[^-+._$as_cr_alnum]" >/dev/null && ++ as_fn_error $? "invalid feature name: $ac_useropt" ++ ac_useropt_orig=$ac_useropt ++ ac_useropt=`$as_echo "$ac_useropt" | sed 's/[-+.]/_/g'` ++ case $ac_user_opts in ++ *" ++"enable_$ac_useropt" ++"*) ;; ++ *) ac_unrecognized_opts="$ac_unrecognized_opts$ac_unrecognized_sep--enable-$ac_useropt_orig" ++ ac_unrecognized_sep=', ';; ++ esac ++ eval enable_$ac_useropt=\$ac_optarg ;; + + -exec-prefix | --exec_prefix | --exec-prefix | --exec-prefi \ + | --exec-pref | --exec-pre | --exec-pr | --exec-p | --exec- \ +@@ -1422,22 +1648,36 @@ do + ac_init_version=: ;; + + -with-* | --with-*) +- ac_package=`expr "x$ac_option" : 'x-*with-\([^=]*\)'` ++ ac_useropt=`expr "x$ac_option" : 'x-*with-\([^=]*\)'` + # Reject names that are not valid shell variable names. +- expr "x$ac_package" : ".*[^-._$as_cr_alnum]" >/dev/null && +- { echo "$as_me: error: invalid package name: $ac_package" >&2 +- { (exit 1); exit 1; }; } +- ac_package=`echo $ac_package | sed 's/[-.]/_/g'` +- eval with_$ac_package=\$ac_optarg ;; ++ expr "x$ac_useropt" : ".*[^-+._$as_cr_alnum]" >/dev/null && ++ as_fn_error $? "invalid package name: $ac_useropt" ++ ac_useropt_orig=$ac_useropt ++ ac_useropt=`$as_echo "$ac_useropt" | sed 's/[-+.]/_/g'` ++ case $ac_user_opts in ++ *" ++"with_$ac_useropt" ++"*) ;; ++ *) ac_unrecognized_opts="$ac_unrecognized_opts$ac_unrecognized_sep--with-$ac_useropt_orig" ++ ac_unrecognized_sep=', ';; ++ esac ++ eval with_$ac_useropt=\$ac_optarg ;; + + -without-* | --without-*) +- ac_package=`expr "x$ac_option" : 'x-*without-\(.*\)'` ++ ac_useropt=`expr "x$ac_option" : 'x-*without-\(.*\)'` + # Reject names that are not valid shell variable names. +- expr "x$ac_package" : ".*[^-._$as_cr_alnum]" >/dev/null && +- { echo "$as_me: error: invalid package name: $ac_package" >&2 +- { (exit 1); exit 1; }; } +- ac_package=`echo $ac_package | sed 's/[-.]/_/g'` +- eval with_$ac_package=no ;; ++ expr "x$ac_useropt" : ".*[^-+._$as_cr_alnum]" >/dev/null && ++ as_fn_error $? "invalid package name: $ac_useropt" ++ ac_useropt_orig=$ac_useropt ++ ac_useropt=`$as_echo "$ac_useropt" | sed 's/[-+.]/_/g'` ++ case $ac_user_opts in ++ *" ++"with_$ac_useropt" ++"*) ;; ++ *) ac_unrecognized_opts="$ac_unrecognized_opts$ac_unrecognized_sep--without-$ac_useropt_orig" ++ ac_unrecognized_sep=', ';; ++ esac ++ eval with_$ac_useropt=no ;; + + --x) + # Obsolete; use --with-x. +@@ -1457,26 +1697,26 @@ do + | --x-librar=* | --x-libra=* | --x-libr=* | --x-lib=* | --x-li=* | --x-l=*) + x_libraries=$ac_optarg ;; + +- -*) { echo "$as_me: error: unrecognized option: $ac_option +-Try \`$0 --help' for more information." >&2 +- { (exit 1); exit 1; }; } ++ -*) as_fn_error $? "unrecognized option: \`$ac_option' ++Try \`$0 --help' for more information" + ;; + + *=*) + ac_envvar=`expr "x$ac_option" : 'x\([^=]*\)='` + # Reject names that are not valid shell variable names. +- expr "x$ac_envvar" : ".*[^_$as_cr_alnum]" >/dev/null && +- { echo "$as_me: error: invalid variable name: $ac_envvar" >&2 +- { (exit 1); exit 1; }; } ++ case $ac_envvar in #( ++ '' | [0-9]* | *[!_$as_cr_alnum]* ) ++ as_fn_error $? "invalid variable name: \`$ac_envvar'" ;; ++ esac + eval $ac_envvar=\$ac_optarg + export $ac_envvar ;; + + *) + # FIXME: should be removed in autoconf 3.0. +- echo "$as_me: WARNING: you should use --build, --host, --target" >&2 ++ $as_echo "$as_me: WARNING: you should use --build, --host, --target" >&2 + expr "x$ac_option" : ".*[^-._$as_cr_alnum]" >/dev/null && +- echo "$as_me: WARNING: invalid host type: $ac_option" >&2 +- : ${build_alias=$ac_option} ${host_alias=$ac_option} ${target_alias=$ac_option} ++ $as_echo "$as_me: WARNING: invalid host type: $ac_option" >&2 ++ : "${build_alias=$ac_option} ${host_alias=$ac_option} ${target_alias=$ac_option}" + ;; + + esac +@@ -1484,23 +1724,36 @@ done + + if test -n "$ac_prev"; then + ac_option=--`echo $ac_prev | sed 's/_/-/g'` +- { echo "$as_me: error: missing argument to $ac_option" >&2 +- { (exit 1); exit 1; }; } ++ as_fn_error $? "missing argument to $ac_option" ++fi ++ ++if test -n "$ac_unrecognized_opts"; then ++ case $enable_option_checking in ++ no) ;; ++ fatal) as_fn_error $? "unrecognized options: $ac_unrecognized_opts" ;; ++ *) $as_echo "$as_me: WARNING: unrecognized options: $ac_unrecognized_opts" >&2 ;; ++ esac + fi + +-# Be sure to have absolute directory names. ++# Check all directory arguments for consistency. + for ac_var in exec_prefix prefix bindir sbindir libexecdir datarootdir \ + datadir sysconfdir sharedstatedir localstatedir includedir \ + oldincludedir docdir infodir htmldir dvidir pdfdir psdir \ + libdir localedir mandir + do + eval ac_val=\$$ac_var ++ # Remove trailing slashes. ++ case $ac_val in ++ */ ) ++ ac_val=`expr "X$ac_val" : 'X\(.*[^/]\)' \| "X$ac_val" : 'X\(.*\)'` ++ eval $ac_var=\$ac_val;; ++ esac ++ # Be sure to have absolute directory names. + case $ac_val in + [\\/$]* | ?:[\\/]* ) continue;; + NONE | '' ) case $ac_var in *prefix ) continue;; esac;; + esac +- { echo "$as_me: error: expected an absolute directory name for --$ac_var: $ac_val" >&2 +- { (exit 1); exit 1; }; } ++ as_fn_error $? "expected an absolute directory name for --$ac_var: $ac_val" + done + + # There might be people who depend on the old broken behavior: `$host' +@@ -1514,8 +1767,6 @@ target=$target_alias + if test "x$host_alias" != x; then + if test "x$build_alias" = x; then + cross_compiling=maybe +- echo "$as_me: WARNING: If you wanted to set the --build type, don't use --host. +- If a cross compiler is detected then cross compile mode will be used." >&2 + elif test "x$build_alias" != "x$host_alias"; then + cross_compiling=yes + fi +@@ -1530,23 +1781,21 @@ test "$silent" = yes && exec 6>/dev/null + ac_pwd=`pwd` && test -n "$ac_pwd" && + ac_ls_di=`ls -di .` && + ac_pwd_ls_di=`cd "$ac_pwd" && ls -di .` || +- { echo "$as_me: error: Working directory cannot be determined" >&2 +- { (exit 1); exit 1; }; } ++ as_fn_error $? "working directory cannot be determined" + test "X$ac_ls_di" = "X$ac_pwd_ls_di" || +- { echo "$as_me: error: pwd does not report name of working directory" >&2 +- { (exit 1); exit 1; }; } ++ as_fn_error $? "pwd does not report name of working directory" + + + # Find the source files, if location was not specified. + if test -z "$srcdir"; then + ac_srcdir_defaulted=yes + # Try the directory containing this script, then the parent directory. +- ac_confdir=`$as_dirname -- "$0" || +-$as_expr X"$0" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \ +- X"$0" : 'X\(//\)[^/]' \| \ +- X"$0" : 'X\(//\)$' \| \ +- X"$0" : 'X\(/\)' \| . 2>/dev/null || +-echo X"$0" | ++ ac_confdir=`$as_dirname -- "$as_myself" || ++$as_expr X"$as_myself" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \ ++ X"$as_myself" : 'X\(//\)[^/]' \| \ ++ X"$as_myself" : 'X\(//\)$' \| \ ++ X"$as_myself" : 'X\(/\)' \| . 2>/dev/null || ++$as_echo X"$as_myself" | + sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{ + s//\1/ + q +@@ -1573,13 +1822,11 @@ else + fi + if test ! -r "$srcdir/$ac_unique_file"; then + test "$ac_srcdir_defaulted" = yes && srcdir="$ac_confdir or .." +- { echo "$as_me: error: cannot find sources ($ac_unique_file) in $srcdir" >&2 +- { (exit 1); exit 1; }; } ++ as_fn_error $? "cannot find sources ($ac_unique_file) in $srcdir" + fi + ac_msg="sources are in $srcdir, but \`cd $srcdir' does not work" + ac_abs_confdir=`( +- cd "$srcdir" && test -r "./$ac_unique_file" || { echo "$as_me: error: $ac_msg" >&2 +- { (exit 1); exit 1; }; } ++ cd "$srcdir" && test -r "./$ac_unique_file" || as_fn_error $? "$ac_msg" + pwd)` + # When building in place, set srcdir=. + if test "$ac_abs_confdir" = "$ac_pwd"; then +@@ -1619,7 +1866,7 @@ Configuration: + --help=short display options specific to this package + --help=recursive display the short help of all the included packages + -V, --version display version information and exit +- -q, --quiet, --silent do not print \`checking...' messages ++ -q, --quiet, --silent do not print \`checking ...' messages + --cache-file=FILE cache test results in FILE [disabled] + -C, --config-cache alias for \`--cache-file=config.cache' + -n, --no-create do not create output files +@@ -1627,9 +1874,9 @@ Configuration: + + Installation directories: + --prefix=PREFIX install architecture-independent files in PREFIX +- [$ac_default_prefix] ++ [$ac_default_prefix] + --exec-prefix=EPREFIX install architecture-dependent files in EPREFIX +- [PREFIX] ++ [PREFIX] + + By default, \`make install' will install all the files in + \`$ac_default_prefix/bin', \`$ac_default_prefix/lib' etc. You can specify +@@ -1639,25 +1886,25 @@ for instance \`--prefix=\$HOME'. + For better control, use the options below. + + Fine tuning of the installation directories: +- --bindir=DIR user executables [EPREFIX/bin] +- --sbindir=DIR system admin executables [EPREFIX/sbin] +- --libexecdir=DIR program executables [EPREFIX/libexec] +- --sysconfdir=DIR read-only single-machine data [PREFIX/etc] +- --sharedstatedir=DIR modifiable architecture-independent data [PREFIX/com] +- --localstatedir=DIR modifiable single-machine data [PREFIX/var] +- --libdir=DIR object code libraries [EPREFIX/lib] +- --includedir=DIR C header files [PREFIX/include] +- --oldincludedir=DIR C header files for non-gcc [/usr/include] +- --datarootdir=DIR read-only arch.-independent data root [PREFIX/share] +- --datadir=DIR read-only architecture-independent data [DATAROOTDIR] +- --infodir=DIR info documentation [DATAROOTDIR/info] +- --localedir=DIR locale-dependent data [DATAROOTDIR/locale] +- --mandir=DIR man documentation [DATAROOTDIR/man] +- --docdir=DIR documentation root [DATAROOTDIR/doc/vlc] +- --htmldir=DIR html documentation [DOCDIR] +- --dvidir=DIR dvi documentation [DOCDIR] +- --pdfdir=DIR pdf documentation [DOCDIR] +- --psdir=DIR ps documentation [DOCDIR] ++ --bindir=DIR user executables [EPREFIX/bin] ++ --sbindir=DIR system admin executables [EPREFIX/sbin] ++ --libexecdir=DIR program executables [EPREFIX/libexec] ++ --sysconfdir=DIR read-only single-machine data [PREFIX/etc] ++ --sharedstatedir=DIR modifiable architecture-independent data [PREFIX/com] ++ --localstatedir=DIR modifiable single-machine data [PREFIX/var] ++ --libdir=DIR object code libraries [EPREFIX/lib] ++ --includedir=DIR C header files [PREFIX/include] ++ --oldincludedir=DIR C header files for non-gcc [/usr/include] ++ --datarootdir=DIR read-only arch.-independent data root [PREFIX/share] ++ --datadir=DIR read-only architecture-independent data [DATAROOTDIR] ++ --infodir=DIR info documentation [DATAROOTDIR/info] ++ --localedir=DIR locale-dependent data [DATAROOTDIR/locale] ++ --mandir=DIR man documentation [DATAROOTDIR/man] ++ --docdir=DIR documentation root [DATAROOTDIR/doc/vlc] ++ --htmldir=DIR html documentation [DOCDIR] ++ --dvidir=DIR dvi documentation [DOCDIR] ++ --pdfdir=DIR pdf documentation [DOCDIR] ++ --psdir=DIR ps documentation [DOCDIR] + _ACEOF + + cat <<\_ACEOF +@@ -1685,6 +1932,7 @@ if test -n "$ac_init_help"; then + cat <<\_ACEOF + + Optional Features: ++ --disable-option-checking ignore unrecognized --enable/--with options + --disable-FEATURE do not include FEATURE (same as --enable-FEATURE=no) + --enable-FEATURE[=ARG] include FEATURE [ARG=yes] + --enable-maintainer-mode enable make rules and dependencies not useful +@@ -1912,7 +2160,7 @@ Some influential environment variables: + LDFLAGS linker flags, e.g. -L if you have libraries in a + nonstandard directory + LIBS libraries to pass to the linker, e.g. -l +- CPPFLAGS C/C++/Objective C preprocessor flags, e.g. -I if ++ CPPFLAGS (Objective) C/C++ preprocessor flags, e.g. -I if + you have headers in a nonstandard directory + CPP C preprocessor + CXX C++ compiler command +@@ -1999,6 +2247,7 @@ Some influential environment variables: + Use these variables to override the choices made by `configure' or to help + it to find libraries and programs with nonstandard names/locations. + ++Report bugs to the package provider. + _ACEOF + ac_status=$? + fi +@@ -2006,15 +2255,17 @@ fi + if test "$ac_init_help" = "recursive"; then + # If there are subdirs, report their specific --help. + for ac_dir in : $ac_subdirs_all; do test "x$ac_dir" = x: && continue +- test -d "$ac_dir" || continue ++ test -d "$ac_dir" || ++ { cd "$srcdir" && ac_pwd=`pwd` && srcdir=. && test -d "$ac_dir"; } || ++ continue + ac_builddir=. + + case "$ac_dir" in + .) ac_dir_suffix= ac_top_builddir_sub=. ac_top_build_prefix= ;; + *) +- ac_dir_suffix=/`echo "$ac_dir" | sed 's,^\.[\\/],,'` ++ ac_dir_suffix=/`$as_echo "$ac_dir" | sed 's|^\.[\\/]||'` + # A ".." for each directory in $ac_dir_suffix. +- ac_top_builddir_sub=`echo "$ac_dir_suffix" | sed 's,/[^\\/]*,/..,g;s,/,,'` ++ ac_top_builddir_sub=`$as_echo "$ac_dir_suffix" | sed 's|/[^\\/]*|/..|g;s|/||'` + case $ac_top_builddir_sub in + "") ac_top_builddir_sub=. ac_top_build_prefix= ;; + *) ac_top_build_prefix=$ac_top_builddir_sub/ ;; +@@ -2050,7 +2301,7 @@ ac_abs_srcdir=$ac_abs_top_srcdir$ac_dir_suffix + echo && + $SHELL "$ac_srcdir/configure" --help=recursive + else +- echo "$as_me: WARNING: no configuration information is in $ac_dir" >&2 ++ $as_echo "$as_me: WARNING: no configuration information is in $ac_dir" >&2 + fi || ac_status=$? + cd "$ac_pwd" || { ac_status=$?; break; } + done +@@ -2060,21 +2311,806 @@ test -n "$ac_init_help" && exit $ac_status + if $ac_init_version; then + cat <<\_ACEOF + vlc configure 0.8.6i +-generated by GNU Autoconf 2.61 ++generated by GNU Autoconf 2.69 + +-Copyright (C) 1992, 1993, 1994, 1995, 1996, 1998, 1999, 2000, 2001, +-2002, 2003, 2004, 2005, 2006 Free Software Foundation, Inc. ++Copyright (C) 2012 Free Software Foundation, Inc. + This configure script is free software; the Free Software Foundation + gives unlimited permission to copy, distribute and modify it. + _ACEOF + exit + fi ++ ++## ------------------------ ## ++## Autoconf initialization. ## ++## ------------------------ ## ++ ++# ac_fn_c_try_compile LINENO ++# -------------------------- ++# Try to compile conftest.$ac_ext, and return whether this succeeded. ++ac_fn_c_try_compile () ++{ ++ as_lineno=${as_lineno-"$1"} as_lineno_stack=as_lineno_stack=$as_lineno_stack ++ rm -f conftest.$ac_objext ++ if { { ac_try="$ac_compile" ++case "(($ac_try" in ++ *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; ++ *) ac_try_echo=$ac_try;; ++esac ++eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\"" ++$as_echo "$ac_try_echo"; } >&5 ++ (eval "$ac_compile") 2>conftest.err ++ ac_status=$? ++ if test -s conftest.err; then ++ grep -v '^ *+' conftest.err >conftest.er1 ++ cat conftest.er1 >&5 ++ mv -f conftest.er1 conftest.err ++ fi ++ $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 ++ test $ac_status = 0; } && { ++ test -z "$ac_c_werror_flag" || ++ test ! -s conftest.err ++ } && test -s conftest.$ac_objext; then : ++ ac_retval=0 ++else ++ $as_echo "$as_me: failed program was:" >&5 ++sed 's/^/| /' conftest.$ac_ext >&5 ++ ++ ac_retval=1 ++fi ++ eval $as_lineno_stack; ${as_lineno_stack:+:} unset as_lineno ++ as_fn_set_status $ac_retval ++ ++} # ac_fn_c_try_compile ++ ++# ac_fn_c_try_cpp LINENO ++# ---------------------- ++# Try to preprocess conftest.$ac_ext, and return whether this succeeded. ++ac_fn_c_try_cpp () ++{ ++ as_lineno=${as_lineno-"$1"} as_lineno_stack=as_lineno_stack=$as_lineno_stack ++ if { { ac_try="$ac_cpp conftest.$ac_ext" ++case "(($ac_try" in ++ *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; ++ *) ac_try_echo=$ac_try;; ++esac ++eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\"" ++$as_echo "$ac_try_echo"; } >&5 ++ (eval "$ac_cpp conftest.$ac_ext") 2>conftest.err ++ ac_status=$? ++ if test -s conftest.err; then ++ grep -v '^ *+' conftest.err >conftest.er1 ++ cat conftest.er1 >&5 ++ mv -f conftest.er1 conftest.err ++ fi ++ $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 ++ test $ac_status = 0; } > conftest.i && { ++ test -z "$ac_c_preproc_warn_flag$ac_c_werror_flag" || ++ test ! -s conftest.err ++ }; then : ++ ac_retval=0 ++else ++ $as_echo "$as_me: failed program was:" >&5 ++sed 's/^/| /' conftest.$ac_ext >&5 ++ ++ ac_retval=1 ++fi ++ eval $as_lineno_stack; ${as_lineno_stack:+:} unset as_lineno ++ as_fn_set_status $ac_retval ++ ++} # ac_fn_c_try_cpp ++ ++# ac_fn_cxx_try_compile LINENO ++# ---------------------------- ++# Try to compile conftest.$ac_ext, and return whether this succeeded. ++ac_fn_cxx_try_compile () ++{ ++ as_lineno=${as_lineno-"$1"} as_lineno_stack=as_lineno_stack=$as_lineno_stack ++ rm -f conftest.$ac_objext ++ if { { ac_try="$ac_compile" ++case "(($ac_try" in ++ *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; ++ *) ac_try_echo=$ac_try;; ++esac ++eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\"" ++$as_echo "$ac_try_echo"; } >&5 ++ (eval "$ac_compile") 2>conftest.err ++ ac_status=$? ++ if test -s conftest.err; then ++ grep -v '^ *+' conftest.err >conftest.er1 ++ cat conftest.er1 >&5 ++ mv -f conftest.er1 conftest.err ++ fi ++ $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 ++ test $ac_status = 0; } && { ++ test -z "$ac_cxx_werror_flag" || ++ test ! -s conftest.err ++ } && test -s conftest.$ac_objext; then : ++ ac_retval=0 ++else ++ $as_echo "$as_me: failed program was:" >&5 ++sed 's/^/| /' conftest.$ac_ext >&5 ++ ++ ac_retval=1 ++fi ++ eval $as_lineno_stack; ${as_lineno_stack:+:} unset as_lineno ++ as_fn_set_status $ac_retval ++ ++} # ac_fn_cxx_try_compile ++ ++# ac_fn_cxx_try_cpp LINENO ++# ------------------------ ++# Try to preprocess conftest.$ac_ext, and return whether this succeeded. ++ac_fn_cxx_try_cpp () ++{ ++ as_lineno=${as_lineno-"$1"} as_lineno_stack=as_lineno_stack=$as_lineno_stack ++ if { { ac_try="$ac_cpp conftest.$ac_ext" ++case "(($ac_try" in ++ *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; ++ *) ac_try_echo=$ac_try;; ++esac ++eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\"" ++$as_echo "$ac_try_echo"; } >&5 ++ (eval "$ac_cpp conftest.$ac_ext") 2>conftest.err ++ ac_status=$? ++ if test -s conftest.err; then ++ grep -v '^ *+' conftest.err >conftest.er1 ++ cat conftest.er1 >&5 ++ mv -f conftest.er1 conftest.err ++ fi ++ $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 ++ test $ac_status = 0; } > conftest.i && { ++ test -z "$ac_cxx_preproc_warn_flag$ac_cxx_werror_flag" || ++ test ! -s conftest.err ++ }; then : ++ ac_retval=0 ++else ++ $as_echo "$as_me: failed program was:" >&5 ++sed 's/^/| /' conftest.$ac_ext >&5 ++ ++ ac_retval=1 ++fi ++ eval $as_lineno_stack; ${as_lineno_stack:+:} unset as_lineno ++ as_fn_set_status $ac_retval ++ ++} # ac_fn_cxx_try_cpp ++ ++# ac_fn_c_try_link LINENO ++# ----------------------- ++# Try to link conftest.$ac_ext, and return whether this succeeded. ++ac_fn_c_try_link () ++{ ++ as_lineno=${as_lineno-"$1"} as_lineno_stack=as_lineno_stack=$as_lineno_stack ++ rm -f conftest.$ac_objext conftest$ac_exeext ++ if { { ac_try="$ac_link" ++case "(($ac_try" in ++ *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; ++ *) ac_try_echo=$ac_try;; ++esac ++eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\"" ++$as_echo "$ac_try_echo"; } >&5 ++ (eval "$ac_link") 2>conftest.err ++ ac_status=$? ++ if test -s conftest.err; then ++ grep -v '^ *+' conftest.err >conftest.er1 ++ cat conftest.er1 >&5 ++ mv -f conftest.er1 conftest.err ++ fi ++ $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 ++ test $ac_status = 0; } && { ++ test -z "$ac_c_werror_flag" || ++ test ! -s conftest.err ++ } && test -s conftest$ac_exeext && { ++ test "$cross_compiling" = yes || ++ test -x conftest$ac_exeext ++ }; then : ++ ac_retval=0 ++else ++ $as_echo "$as_me: failed program was:" >&5 ++sed 's/^/| /' conftest.$ac_ext >&5 ++ ++ ac_retval=1 ++fi ++ # Delete the IPA/IPO (Inter Procedural Analysis/Optimization) information ++ # created by the PGI compiler (conftest_ipa8_conftest.oo), as it would ++ # interfere with the next link command; also delete a directory that is ++ # left behind by Apple's compiler. We do this before executing the actions. ++ rm -rf conftest.dSYM conftest_ipa8_conftest.oo ++ eval $as_lineno_stack; ${as_lineno_stack:+:} unset as_lineno ++ as_fn_set_status $ac_retval ++ ++} # ac_fn_c_try_link ++ ++# ac_fn_c_check_header_mongrel LINENO HEADER VAR INCLUDES ++# ------------------------------------------------------- ++# Tests whether HEADER exists, giving a warning if it cannot be compiled using ++# the include files in INCLUDES and setting the cache variable VAR ++# accordingly. ++ac_fn_c_check_header_mongrel () ++{ ++ as_lineno=${as_lineno-"$1"} as_lineno_stack=as_lineno_stack=$as_lineno_stack ++ if eval \${$3+:} false; then : ++ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $2" >&5 ++$as_echo_n "checking for $2... " >&6; } ++if eval \${$3+:} false; then : ++ $as_echo_n "(cached) " >&6 ++fi ++eval ac_res=\$$3 ++ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_res" >&5 ++$as_echo "$ac_res" >&6; } ++else ++ # Is the header compilable? ++{ $as_echo "$as_me:${as_lineno-$LINENO}: checking $2 usability" >&5 ++$as_echo_n "checking $2 usability... " >&6; } ++cat confdefs.h - <<_ACEOF >conftest.$ac_ext ++/* end confdefs.h. */ ++$4 ++#include <$2> ++_ACEOF ++if ac_fn_c_try_compile "$LINENO"; then : ++ ac_header_compiler=yes ++else ++ ac_header_compiler=no ++fi ++rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext ++{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_header_compiler" >&5 ++$as_echo "$ac_header_compiler" >&6; } ++ ++# Is the header present? ++{ $as_echo "$as_me:${as_lineno-$LINENO}: checking $2 presence" >&5 ++$as_echo_n "checking $2 presence... " >&6; } ++cat confdefs.h - <<_ACEOF >conftest.$ac_ext ++/* end confdefs.h. */ ++#include <$2> ++_ACEOF ++if ac_fn_c_try_cpp "$LINENO"; then : ++ ac_header_preproc=yes ++else ++ ac_header_preproc=no ++fi ++rm -f conftest.err conftest.i conftest.$ac_ext ++{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_header_preproc" >&5 ++$as_echo "$ac_header_preproc" >&6; } ++ ++# So? What about this header? ++case $ac_header_compiler:$ac_header_preproc:$ac_c_preproc_warn_flag in #(( ++ yes:no: ) ++ { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: $2: accepted by the compiler, rejected by the preprocessor!" >&5 ++$as_echo "$as_me: WARNING: $2: accepted by the compiler, rejected by the preprocessor!" >&2;} ++ { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: $2: proceeding with the compiler's result" >&5 ++$as_echo "$as_me: WARNING: $2: proceeding with the compiler's result" >&2;} ++ ;; ++ no:yes:* ) ++ { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: $2: present but cannot be compiled" >&5 ++$as_echo "$as_me: WARNING: $2: present but cannot be compiled" >&2;} ++ { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: $2: check for missing prerequisite headers?" >&5 ++$as_echo "$as_me: WARNING: $2: check for missing prerequisite headers?" >&2;} ++ { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: $2: see the Autoconf documentation" >&5 ++$as_echo "$as_me: WARNING: $2: see the Autoconf documentation" >&2;} ++ { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: $2: section \"Present But Cannot Be Compiled\"" >&5 ++$as_echo "$as_me: WARNING: $2: section \"Present But Cannot Be Compiled\"" >&2;} ++ { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: $2: proceeding with the compiler's result" >&5 ++$as_echo "$as_me: WARNING: $2: proceeding with the compiler's result" >&2;} ++ ;; ++esac ++ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $2" >&5 ++$as_echo_n "checking for $2... " >&6; } ++if eval \${$3+:} false; then : ++ $as_echo_n "(cached) " >&6 ++else ++ eval "$3=\$ac_header_compiler" ++fi ++eval ac_res=\$$3 ++ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_res" >&5 ++$as_echo "$ac_res" >&6; } ++fi ++ eval $as_lineno_stack; ${as_lineno_stack:+:} unset as_lineno ++ ++} # ac_fn_c_check_header_mongrel ++ ++# ac_fn_c_try_run LINENO ++# ---------------------- ++# Try to link conftest.$ac_ext, and return whether this succeeded. Assumes ++# that executables *can* be run. ++ac_fn_c_try_run () ++{ ++ as_lineno=${as_lineno-"$1"} as_lineno_stack=as_lineno_stack=$as_lineno_stack ++ if { { ac_try="$ac_link" ++case "(($ac_try" in ++ *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; ++ *) ac_try_echo=$ac_try;; ++esac ++eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\"" ++$as_echo "$ac_try_echo"; } >&5 ++ (eval "$ac_link") 2>&5 ++ ac_status=$? ++ $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 ++ test $ac_status = 0; } && { ac_try='./conftest$ac_exeext' ++ { { case "(($ac_try" in ++ *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; ++ *) ac_try_echo=$ac_try;; ++esac ++eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\"" ++$as_echo "$ac_try_echo"; } >&5 ++ (eval "$ac_try") 2>&5 ++ ac_status=$? ++ $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 ++ test $ac_status = 0; }; }; then : ++ ac_retval=0 ++else ++ $as_echo "$as_me: program exited with status $ac_status" >&5 ++ $as_echo "$as_me: failed program was:" >&5 ++sed 's/^/| /' conftest.$ac_ext >&5 ++ ++ ac_retval=$ac_status ++fi ++ rm -rf conftest.dSYM conftest_ipa8_conftest.oo ++ eval $as_lineno_stack; ${as_lineno_stack:+:} unset as_lineno ++ as_fn_set_status $ac_retval ++ ++} # ac_fn_c_try_run ++ ++# ac_fn_c_check_header_compile LINENO HEADER VAR INCLUDES ++# ------------------------------------------------------- ++# Tests whether HEADER exists and can be compiled using the include files in ++# INCLUDES, setting the cache variable VAR accordingly. ++ac_fn_c_check_header_compile () ++{ ++ as_lineno=${as_lineno-"$1"} as_lineno_stack=as_lineno_stack=$as_lineno_stack ++ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $2" >&5 ++$as_echo_n "checking for $2... " >&6; } ++if eval \${$3+:} false; then : ++ $as_echo_n "(cached) " >&6 ++else ++ cat confdefs.h - <<_ACEOF >conftest.$ac_ext ++/* end confdefs.h. */ ++$4 ++#include <$2> ++_ACEOF ++if ac_fn_c_try_compile "$LINENO"; then : ++ eval "$3=yes" ++else ++ eval "$3=no" ++fi ++rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext ++fi ++eval ac_res=\$$3 ++ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_res" >&5 ++$as_echo "$ac_res" >&6; } ++ eval $as_lineno_stack; ${as_lineno_stack:+:} unset as_lineno ++ ++} # ac_fn_c_check_header_compile ++ ++# ac_fn_c_check_func LINENO FUNC VAR ++# ---------------------------------- ++# Tests whether FUNC exists, setting the cache variable VAR accordingly ++ac_fn_c_check_func () ++{ ++ as_lineno=${as_lineno-"$1"} as_lineno_stack=as_lineno_stack=$as_lineno_stack ++ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $2" >&5 ++$as_echo_n "checking for $2... " >&6; } ++if eval \${$3+:} false; then : ++ $as_echo_n "(cached) " >&6 ++else ++ cat confdefs.h - <<_ACEOF >conftest.$ac_ext ++/* end confdefs.h. */ ++/* Define $2 to an innocuous variant, in case declares $2. ++ For example, HP-UX 11i declares gettimeofday. */ ++#define $2 innocuous_$2 ++ ++/* System header to define __stub macros and hopefully few prototypes, ++ which can conflict with char $2 (); below. ++ Prefer to if __STDC__ is defined, since ++ exists even on freestanding compilers. */ ++ ++#ifdef __STDC__ ++# include ++#else ++# include ++#endif ++ ++#undef $2 ++ ++/* Override any GCC internal prototype to avoid an error. ++ Use char because int might match the return type of a GCC ++ builtin and then its argument prototype would still apply. */ ++#ifdef __cplusplus ++extern "C" ++#endif ++char $2 (); ++/* The GNU C library defines this for functions which it implements ++ to always fail with ENOSYS. Some functions are actually named ++ something starting with __ and the normal name is an alias. */ ++#if defined __stub_$2 || defined __stub___$2 ++choke me ++#endif ++ ++int ++main () ++{ ++return $2 (); ++ ; ++ return 0; ++} ++_ACEOF ++if ac_fn_c_try_link "$LINENO"; then : ++ eval "$3=yes" ++else ++ eval "$3=no" ++fi ++rm -f core conftest.err conftest.$ac_objext \ ++ conftest$ac_exeext conftest.$ac_ext ++fi ++eval ac_res=\$$3 ++ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_res" >&5 ++$as_echo "$ac_res" >&6; } ++ eval $as_lineno_stack; ${as_lineno_stack:+:} unset as_lineno ++ ++} # ac_fn_c_check_func ++ ++# ac_fn_cxx_try_link LINENO ++# ------------------------- ++# Try to link conftest.$ac_ext, and return whether this succeeded. ++ac_fn_cxx_try_link () ++{ ++ as_lineno=${as_lineno-"$1"} as_lineno_stack=as_lineno_stack=$as_lineno_stack ++ rm -f conftest.$ac_objext conftest$ac_exeext ++ if { { ac_try="$ac_link" ++case "(($ac_try" in ++ *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; ++ *) ac_try_echo=$ac_try;; ++esac ++eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\"" ++$as_echo "$ac_try_echo"; } >&5 ++ (eval "$ac_link") 2>conftest.err ++ ac_status=$? ++ if test -s conftest.err; then ++ grep -v '^ *+' conftest.err >conftest.er1 ++ cat conftest.er1 >&5 ++ mv -f conftest.er1 conftest.err ++ fi ++ $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 ++ test $ac_status = 0; } && { ++ test -z "$ac_cxx_werror_flag" || ++ test ! -s conftest.err ++ } && test -s conftest$ac_exeext && { ++ test "$cross_compiling" = yes || ++ test -x conftest$ac_exeext ++ }; then : ++ ac_retval=0 ++else ++ $as_echo "$as_me: failed program was:" >&5 ++sed 's/^/| /' conftest.$ac_ext >&5 ++ ++ ac_retval=1 ++fi ++ # Delete the IPA/IPO (Inter Procedural Analysis/Optimization) information ++ # created by the PGI compiler (conftest_ipa8_conftest.oo), as it would ++ # interfere with the next link command; also delete a directory that is ++ # left behind by Apple's compiler. We do this before executing the actions. ++ rm -rf conftest.dSYM conftest_ipa8_conftest.oo ++ eval $as_lineno_stack; ${as_lineno_stack:+:} unset as_lineno ++ as_fn_set_status $ac_retval ++ ++} # ac_fn_cxx_try_link ++ ++# ac_fn_f77_try_compile LINENO ++# ---------------------------- ++# Try to compile conftest.$ac_ext, and return whether this succeeded. ++ac_fn_f77_try_compile () ++{ ++ as_lineno=${as_lineno-"$1"} as_lineno_stack=as_lineno_stack=$as_lineno_stack ++ rm -f conftest.$ac_objext ++ if { { ac_try="$ac_compile" ++case "(($ac_try" in ++ *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; ++ *) ac_try_echo=$ac_try;; ++esac ++eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\"" ++$as_echo "$ac_try_echo"; } >&5 ++ (eval "$ac_compile") 2>conftest.err ++ ac_status=$? ++ if test -s conftest.err; then ++ grep -v '^ *+' conftest.err >conftest.er1 ++ cat conftest.er1 >&5 ++ mv -f conftest.er1 conftest.err ++ fi ++ $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 ++ test $ac_status = 0; } && { ++ test -z "$ac_f77_werror_flag" || ++ test ! -s conftest.err ++ } && test -s conftest.$ac_objext; then : ++ ac_retval=0 ++else ++ $as_echo "$as_me: failed program was:" >&5 ++sed 's/^/| /' conftest.$ac_ext >&5 ++ ++ ac_retval=1 ++fi ++ eval $as_lineno_stack; ${as_lineno_stack:+:} unset as_lineno ++ as_fn_set_status $ac_retval ++ ++} # ac_fn_f77_try_compile ++ ++# ac_fn_f77_try_link LINENO ++# ------------------------- ++# Try to link conftest.$ac_ext, and return whether this succeeded. ++ac_fn_f77_try_link () ++{ ++ as_lineno=${as_lineno-"$1"} as_lineno_stack=as_lineno_stack=$as_lineno_stack ++ rm -f conftest.$ac_objext conftest$ac_exeext ++ if { { ac_try="$ac_link" ++case "(($ac_try" in ++ *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; ++ *) ac_try_echo=$ac_try;; ++esac ++eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\"" ++$as_echo "$ac_try_echo"; } >&5 ++ (eval "$ac_link") 2>conftest.err ++ ac_status=$? ++ if test -s conftest.err; then ++ grep -v '^ *+' conftest.err >conftest.er1 ++ cat conftest.er1 >&5 ++ mv -f conftest.er1 conftest.err ++ fi ++ $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 ++ test $ac_status = 0; } && { ++ test -z "$ac_f77_werror_flag" || ++ test ! -s conftest.err ++ } && test -s conftest$ac_exeext && { ++ test "$cross_compiling" = yes || ++ test -x conftest$ac_exeext ++ }; then : ++ ac_retval=0 ++else ++ $as_echo "$as_me: failed program was:" >&5 ++sed 's/^/| /' conftest.$ac_ext >&5 ++ ++ ac_retval=1 ++fi ++ # Delete the IPA/IPO (Inter Procedural Analysis/Optimization) information ++ # created by the PGI compiler (conftest_ipa8_conftest.oo), as it would ++ # interfere with the next link command; also delete a directory that is ++ # left behind by Apple's compiler. We do this before executing the actions. ++ rm -rf conftest.dSYM conftest_ipa8_conftest.oo ++ eval $as_lineno_stack; ${as_lineno_stack:+:} unset as_lineno ++ as_fn_set_status $ac_retval ++ ++} # ac_fn_f77_try_link ++ ++# ac_fn_c_check_type LINENO TYPE VAR INCLUDES ++# ------------------------------------------- ++# Tests whether TYPE exists after having included INCLUDES, setting cache ++# variable VAR accordingly. ++ac_fn_c_check_type () ++{ ++ as_lineno=${as_lineno-"$1"} as_lineno_stack=as_lineno_stack=$as_lineno_stack ++ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $2" >&5 ++$as_echo_n "checking for $2... " >&6; } ++if eval \${$3+:} false; then : ++ $as_echo_n "(cached) " >&6 ++else ++ eval "$3=no" ++ cat confdefs.h - <<_ACEOF >conftest.$ac_ext ++/* end confdefs.h. */ ++$4 ++int ++main () ++{ ++if (sizeof ($2)) ++ return 0; ++ ; ++ return 0; ++} ++_ACEOF ++if ac_fn_c_try_compile "$LINENO"; then : ++ cat confdefs.h - <<_ACEOF >conftest.$ac_ext ++/* end confdefs.h. */ ++$4 ++int ++main () ++{ ++if (sizeof (($2))) ++ return 0; ++ ; ++ return 0; ++} ++_ACEOF ++if ac_fn_c_try_compile "$LINENO"; then : ++ ++else ++ eval "$3=yes" ++fi ++rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext ++fi ++rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext ++fi ++eval ac_res=\$$3 ++ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_res" >&5 ++$as_echo "$ac_res" >&6; } ++ eval $as_lineno_stack; ${as_lineno_stack:+:} unset as_lineno ++ ++} # ac_fn_c_check_type ++ ++# ac_fn_cxx_check_header_mongrel LINENO HEADER VAR INCLUDES ++# --------------------------------------------------------- ++# Tests whether HEADER exists, giving a warning if it cannot be compiled using ++# the include files in INCLUDES and setting the cache variable VAR ++# accordingly. ++ac_fn_cxx_check_header_mongrel () ++{ ++ as_lineno=${as_lineno-"$1"} as_lineno_stack=as_lineno_stack=$as_lineno_stack ++ if eval \${$3+:} false; then : ++ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $2" >&5 ++$as_echo_n "checking for $2... " >&6; } ++if eval \${$3+:} false; then : ++ $as_echo_n "(cached) " >&6 ++fi ++eval ac_res=\$$3 ++ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_res" >&5 ++$as_echo "$ac_res" >&6; } ++else ++ # Is the header compilable? ++{ $as_echo "$as_me:${as_lineno-$LINENO}: checking $2 usability" >&5 ++$as_echo_n "checking $2 usability... " >&6; } ++cat confdefs.h - <<_ACEOF >conftest.$ac_ext ++/* end confdefs.h. */ ++$4 ++#include <$2> ++_ACEOF ++if ac_fn_cxx_try_compile "$LINENO"; then : ++ ac_header_compiler=yes ++else ++ ac_header_compiler=no ++fi ++rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext ++{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_header_compiler" >&5 ++$as_echo "$ac_header_compiler" >&6; } ++ ++# Is the header present? ++{ $as_echo "$as_me:${as_lineno-$LINENO}: checking $2 presence" >&5 ++$as_echo_n "checking $2 presence... " >&6; } ++cat confdefs.h - <<_ACEOF >conftest.$ac_ext ++/* end confdefs.h. */ ++#include <$2> ++_ACEOF ++if ac_fn_cxx_try_cpp "$LINENO"; then : ++ ac_header_preproc=yes ++else ++ ac_header_preproc=no ++fi ++rm -f conftest.err conftest.i conftest.$ac_ext ++{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_header_preproc" >&5 ++$as_echo "$ac_header_preproc" >&6; } ++ ++# So? What about this header? ++case $ac_header_compiler:$ac_header_preproc:$ac_cxx_preproc_warn_flag in #(( ++ yes:no: ) ++ { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: $2: accepted by the compiler, rejected by the preprocessor!" >&5 ++$as_echo "$as_me: WARNING: $2: accepted by the compiler, rejected by the preprocessor!" >&2;} ++ { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: $2: proceeding with the compiler's result" >&5 ++$as_echo "$as_me: WARNING: $2: proceeding with the compiler's result" >&2;} ++ ;; ++ no:yes:* ) ++ { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: $2: present but cannot be compiled" >&5 ++$as_echo "$as_me: WARNING: $2: present but cannot be compiled" >&2;} ++ { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: $2: check for missing prerequisite headers?" >&5 ++$as_echo "$as_me: WARNING: $2: check for missing prerequisite headers?" >&2;} ++ { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: $2: see the Autoconf documentation" >&5 ++$as_echo "$as_me: WARNING: $2: see the Autoconf documentation" >&2;} ++ { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: $2: section \"Present But Cannot Be Compiled\"" >&5 ++$as_echo "$as_me: WARNING: $2: section \"Present But Cannot Be Compiled\"" >&2;} ++ { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: $2: proceeding with the compiler's result" >&5 ++$as_echo "$as_me: WARNING: $2: proceeding with the compiler's result" >&2;} ++ ;; ++esac ++ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $2" >&5 ++$as_echo_n "checking for $2... " >&6; } ++if eval \${$3+:} false; then : ++ $as_echo_n "(cached) " >&6 ++else ++ eval "$3=\$ac_header_compiler" ++fi ++eval ac_res=\$$3 ++ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_res" >&5 ++$as_echo "$ac_res" >&6; } ++fi ++ eval $as_lineno_stack; ${as_lineno_stack:+:} unset as_lineno ++ ++} # ac_fn_cxx_check_header_mongrel ++ ++# ac_fn_c_check_member LINENO AGGR MEMBER VAR INCLUDES ++# ---------------------------------------------------- ++# Tries to find if the field MEMBER exists in type AGGR, after including ++# INCLUDES, setting cache variable VAR accordingly. ++ac_fn_c_check_member () ++{ ++ as_lineno=${as_lineno-"$1"} as_lineno_stack=as_lineno_stack=$as_lineno_stack ++ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $2.$3" >&5 ++$as_echo_n "checking for $2.$3... " >&6; } ++if eval \${$4+:} false; then : ++ $as_echo_n "(cached) " >&6 ++else ++ cat confdefs.h - <<_ACEOF >conftest.$ac_ext ++/* end confdefs.h. */ ++$5 ++int ++main () ++{ ++static $2 ac_aggr; ++if (ac_aggr.$3) ++return 0; ++ ; ++ return 0; ++} ++_ACEOF ++if ac_fn_c_try_compile "$LINENO"; then : ++ eval "$4=yes" ++else ++ cat confdefs.h - <<_ACEOF >conftest.$ac_ext ++/* end confdefs.h. */ ++$5 ++int ++main () ++{ ++static $2 ac_aggr; ++if (sizeof ac_aggr.$3) ++return 0; ++ ; ++ return 0; ++} ++_ACEOF ++if ac_fn_c_try_compile "$LINENO"; then : ++ eval "$4=yes" ++else ++ eval "$4=no" ++fi ++rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext ++fi ++rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext ++fi ++eval ac_res=\$$4 ++ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_res" >&5 ++$as_echo "$ac_res" >&6; } ++ eval $as_lineno_stack; ${as_lineno_stack:+:} unset as_lineno ++ ++} # ac_fn_c_check_member ++ ++# ac_fn_cxx_check_header_compile LINENO HEADER VAR INCLUDES ++# --------------------------------------------------------- ++# Tests whether HEADER exists and can be compiled using the include files in ++# INCLUDES, setting the cache variable VAR accordingly. ++ac_fn_cxx_check_header_compile () ++{ ++ as_lineno=${as_lineno-"$1"} as_lineno_stack=as_lineno_stack=$as_lineno_stack ++ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $2" >&5 ++$as_echo_n "checking for $2... " >&6; } ++if eval \${$3+:} false; then : ++ $as_echo_n "(cached) " >&6 ++else ++ cat confdefs.h - <<_ACEOF >conftest.$ac_ext ++/* end confdefs.h. */ ++$4 ++#include <$2> ++_ACEOF ++if ac_fn_cxx_try_compile "$LINENO"; then : ++ eval "$3=yes" ++else ++ eval "$3=no" ++fi ++rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext ++fi ++eval ac_res=\$$3 ++ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_res" >&5 ++$as_echo "$ac_res" >&6; } ++ eval $as_lineno_stack; ${as_lineno_stack:+:} unset as_lineno ++ ++} # ac_fn_cxx_check_header_compile + cat >config.log <<_ACEOF + This file contains any messages produced by compilers while + running configure, to aid debugging if configure makes a mistake. + + It was created by vlc $as_me 0.8.6i, which was +-generated by GNU Autoconf 2.61. Invocation command line was ++generated by GNU Autoconf 2.69. Invocation command line was + + $ $0 $@ + +@@ -2110,8 +3146,8 @@ for as_dir in $PATH + do + IFS=$as_save_IFS + test -z "$as_dir" && as_dir=. +- echo "PATH: $as_dir" +-done ++ $as_echo "PATH: $as_dir" ++ done + IFS=$as_save_IFS + + } >&5 +@@ -2145,12 +3181,12 @@ do + | -silent | --silent | --silen | --sile | --sil) + continue ;; + *\'*) +- ac_arg=`echo "$ac_arg" | sed "s/'/'\\\\\\\\''/g"` ;; ++ ac_arg=`$as_echo "$ac_arg" | sed "s/'/'\\\\\\\\''/g"` ;; + esac + case $ac_pass in +- 1) ac_configure_args0="$ac_configure_args0 '$ac_arg'" ;; ++ 1) as_fn_append ac_configure_args0 " '$ac_arg'" ;; + 2) +- ac_configure_args1="$ac_configure_args1 '$ac_arg'" ++ as_fn_append ac_configure_args1 " '$ac_arg'" + if test $ac_must_keep_next = true; then + ac_must_keep_next=false # Got value, back to normal. + else +@@ -2166,13 +3202,13 @@ do + -* ) ac_must_keep_next=true ;; + esac + fi +- ac_configure_args="$ac_configure_args '$ac_arg'" ++ as_fn_append ac_configure_args " '$ac_arg'" + ;; + esac + done + done +-$as_unset ac_configure_args0 || test "${ac_configure_args0+set}" != set || { ac_configure_args0=; export ac_configure_args0; } +-$as_unset ac_configure_args1 || test "${ac_configure_args1+set}" != set || { ac_configure_args1=; export ac_configure_args1; } ++{ ac_configure_args0=; unset ac_configure_args0;} ++{ ac_configure_args1=; unset ac_configure_args1;} + + # When interrupted or exit'd, cleanup temporary files, and complete + # config.log. We remove comments because anyway the quotes in there +@@ -2184,11 +3220,9 @@ trap 'exit_status=$? + { + echo + +- cat <<\_ASBOX +-## ---------------- ## ++ $as_echo "## ---------------- ## + ## Cache variables. ## +-## ---------------- ## +-_ASBOX ++## ---------------- ##" + echo + # The following way of writing the cache mishandles newlines in values, + ( +@@ -2197,12 +3231,13 @@ _ASBOX + case $ac_val in #( + *${as_nl}*) + case $ac_var in #( +- *_cv_*) { echo "$as_me:$LINENO: WARNING: Cache variable $ac_var contains a newline." >&5 +-echo "$as_me: WARNING: Cache variable $ac_var contains a newline." >&2;} ;; ++ *_cv_*) { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: cache variable $ac_var contains a newline" >&5 ++$as_echo "$as_me: WARNING: cache variable $ac_var contains a newline" >&2;} ;; + esac + case $ac_var in #( + _ | IFS | as_nl) ;; #( +- *) $as_unset $ac_var ;; ++ BASH_ARGV | BASH_SOURCE) eval $ac_var= ;; #( ++ *) { eval $ac_var=; unset $ac_var;} ;; + esac ;; + esac + done +@@ -2221,131 +3256,142 @@ echo "$as_me: WARNING: Cache variable $ac_var contains a newline." >&2;} ;; + ) + echo + +- cat <<\_ASBOX +-## ----------------- ## ++ $as_echo "## ----------------- ## + ## Output variables. ## +-## ----------------- ## +-_ASBOX ++## ----------------- ##" + echo + for ac_var in $ac_subst_vars + do + eval ac_val=\$$ac_var + case $ac_val in +- *\'\''*) ac_val=`echo "$ac_val" | sed "s/'\''/'\''\\\\\\\\'\'''\''/g"`;; ++ *\'\''*) ac_val=`$as_echo "$ac_val" | sed "s/'\''/'\''\\\\\\\\'\'''\''/g"`;; + esac +- echo "$ac_var='\''$ac_val'\''" ++ $as_echo "$ac_var='\''$ac_val'\''" + done | sort + echo + + if test -n "$ac_subst_files"; then +- cat <<\_ASBOX +-## ------------------- ## ++ $as_echo "## ------------------- ## + ## File substitutions. ## +-## ------------------- ## +-_ASBOX ++## ------------------- ##" + echo + for ac_var in $ac_subst_files + do + eval ac_val=\$$ac_var + case $ac_val in +- *\'\''*) ac_val=`echo "$ac_val" | sed "s/'\''/'\''\\\\\\\\'\'''\''/g"`;; ++ *\'\''*) ac_val=`$as_echo "$ac_val" | sed "s/'\''/'\''\\\\\\\\'\'''\''/g"`;; + esac +- echo "$ac_var='\''$ac_val'\''" ++ $as_echo "$ac_var='\''$ac_val'\''" + done | sort + echo + fi + + if test -s confdefs.h; then +- cat <<\_ASBOX +-## ----------- ## ++ $as_echo "## ----------- ## + ## confdefs.h. ## +-## ----------- ## +-_ASBOX ++## ----------- ##" + echo + cat confdefs.h + echo + fi + test "$ac_signal" != 0 && +- echo "$as_me: caught signal $ac_signal" +- echo "$as_me: exit $exit_status" ++ $as_echo "$as_me: caught signal $ac_signal" ++ $as_echo "$as_me: exit $exit_status" + } >&5 + rm -f core *.core core.conftest.* && + rm -f -r conftest* confdefs* conf$$* $ac_clean_files && + exit $exit_status + ' 0 + for ac_signal in 1 2 13 15; do +- trap 'ac_signal='$ac_signal'; { (exit 1); exit 1; }' $ac_signal ++ trap 'ac_signal='$ac_signal'; as_fn_exit 1' $ac_signal + done + ac_signal=0 + + # confdefs.h avoids OS command line length limits that DEFS can exceed. + rm -f -r conftest* confdefs.h + ++$as_echo "/* confdefs.h */" > confdefs.h ++ + # Predefined preprocessor variables. + + cat >>confdefs.h <<_ACEOF + #define PACKAGE_NAME "$PACKAGE_NAME" + _ACEOF + +- + cat >>confdefs.h <<_ACEOF + #define PACKAGE_TARNAME "$PACKAGE_TARNAME" + _ACEOF + +- + cat >>confdefs.h <<_ACEOF + #define PACKAGE_VERSION "$PACKAGE_VERSION" + _ACEOF + +- + cat >>confdefs.h <<_ACEOF + #define PACKAGE_STRING "$PACKAGE_STRING" + _ACEOF + +- + cat >>confdefs.h <<_ACEOF + #define PACKAGE_BUGREPORT "$PACKAGE_BUGREPORT" + _ACEOF + ++cat >>confdefs.h <<_ACEOF ++#define PACKAGE_URL "$PACKAGE_URL" ++_ACEOF ++ + + # Let the site file select an alternate cache file if it wants to. +-# Prefer explicitly selected file to automatically selected ones. ++# Prefer an explicitly selected file to automatically selected ones. ++ac_site_file1=NONE ++ac_site_file2=NONE + if test -n "$CONFIG_SITE"; then +- set x "$CONFIG_SITE" ++ # We do not want a PATH search for config.site. ++ case $CONFIG_SITE in #(( ++ -*) ac_site_file1=./$CONFIG_SITE;; ++ */*) ac_site_file1=$CONFIG_SITE;; ++ *) ac_site_file1=./$CONFIG_SITE;; ++ esac + elif test "x$prefix" != xNONE; then +- set x "$prefix/share/config.site" "$prefix/etc/config.site" ++ ac_site_file1=$prefix/share/config.site ++ ac_site_file2=$prefix/etc/config.site + else +- set x "$ac_default_prefix/share/config.site" \ +- "$ac_default_prefix/etc/config.site" ++ ac_site_file1=$ac_default_prefix/share/config.site ++ ac_site_file2=$ac_default_prefix/etc/config.site + fi +-shift +-for ac_site_file ++for ac_site_file in "$ac_site_file1" "$ac_site_file2" + do +- if test -r "$ac_site_file"; then +- { echo "$as_me:$LINENO: loading site script $ac_site_file" >&5 +-echo "$as_me: loading site script $ac_site_file" >&6;} ++ test "x$ac_site_file" = xNONE && continue ++ if test /dev/null != "$ac_site_file" && test -r "$ac_site_file"; then ++ { $as_echo "$as_me:${as_lineno-$LINENO}: loading site script $ac_site_file" >&5 ++$as_echo "$as_me: loading site script $ac_site_file" >&6;} + sed 's/^/| /' "$ac_site_file" >&5 +- . "$ac_site_file" ++ . "$ac_site_file" \ ++ || { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5 ++$as_echo "$as_me: error: in \`$ac_pwd':" >&2;} ++as_fn_error $? "failed to load site script $ac_site_file ++See \`config.log' for more details" "$LINENO" 5; } + fi + done + + if test -r "$cache_file"; then +- # Some versions of bash will fail to source /dev/null (special +- # files actually), so we avoid doing that. +- if test -f "$cache_file"; then +- { echo "$as_me:$LINENO: loading cache $cache_file" >&5 +-echo "$as_me: loading cache $cache_file" >&6;} ++ # Some versions of bash will fail to source /dev/null (special files ++ # actually), so we avoid doing that. DJGPP emulates it as a regular file. ++ if test /dev/null != "$cache_file" && test -f "$cache_file"; then ++ { $as_echo "$as_me:${as_lineno-$LINENO}: loading cache $cache_file" >&5 ++$as_echo "$as_me: loading cache $cache_file" >&6;} + case $cache_file in + [\\/]* | ?:[\\/]* ) . "$cache_file";; + *) . "./$cache_file";; + esac + fi + else +- { echo "$as_me:$LINENO: creating cache $cache_file" >&5 +-echo "$as_me: creating cache $cache_file" >&6;} ++ { $as_echo "$as_me:${as_lineno-$LINENO}: creating cache $cache_file" >&5 ++$as_echo "$as_me: creating cache $cache_file" >&6;} + >$cache_file + fi + ++as_fn_append ac_header_list " stdlib.h" ++as_fn_append ac_header_list " unistd.h" ++as_fn_append ac_header_list " sys/param.h" + # Check that the precious variables saved in the cache have kept the same + # value. + ac_cache_corrupted=false +@@ -2356,68 +3402,56 @@ for ac_var in $ac_precious_vars; do + eval ac_new_val=\$ac_env_${ac_var}_value + case $ac_old_set,$ac_new_set in + set,) +- { echo "$as_me:$LINENO: error: \`$ac_var' was set to \`$ac_old_val' in the previous run" >&5 +-echo "$as_me: error: \`$ac_var' was set to \`$ac_old_val' in the previous run" >&2;} ++ { $as_echo "$as_me:${as_lineno-$LINENO}: error: \`$ac_var' was set to \`$ac_old_val' in the previous run" >&5 ++$as_echo "$as_me: error: \`$ac_var' was set to \`$ac_old_val' in the previous run" >&2;} + ac_cache_corrupted=: ;; + ,set) +- { echo "$as_me:$LINENO: error: \`$ac_var' was not set in the previous run" >&5 +-echo "$as_me: error: \`$ac_var' was not set in the previous run" >&2;} ++ { $as_echo "$as_me:${as_lineno-$LINENO}: error: \`$ac_var' was not set in the previous run" >&5 ++$as_echo "$as_me: error: \`$ac_var' was not set in the previous run" >&2;} + ac_cache_corrupted=: ;; + ,);; + *) + if test "x$ac_old_val" != "x$ac_new_val"; then +- { echo "$as_me:$LINENO: error: \`$ac_var' has changed since the previous run:" >&5 +-echo "$as_me: error: \`$ac_var' has changed since the previous run:" >&2;} +- { echo "$as_me:$LINENO: former value: $ac_old_val" >&5 +-echo "$as_me: former value: $ac_old_val" >&2;} +- { echo "$as_me:$LINENO: current value: $ac_new_val" >&5 +-echo "$as_me: current value: $ac_new_val" >&2;} +- ac_cache_corrupted=: ++ # differences in whitespace do not lead to failure. ++ ac_old_val_w=`echo x $ac_old_val` ++ ac_new_val_w=`echo x $ac_new_val` ++ if test "$ac_old_val_w" != "$ac_new_val_w"; then ++ { $as_echo "$as_me:${as_lineno-$LINENO}: error: \`$ac_var' has changed since the previous run:" >&5 ++$as_echo "$as_me: error: \`$ac_var' has changed since the previous run:" >&2;} ++ ac_cache_corrupted=: ++ else ++ { $as_echo "$as_me:${as_lineno-$LINENO}: warning: ignoring whitespace changes in \`$ac_var' since the previous run:" >&5 ++$as_echo "$as_me: warning: ignoring whitespace changes in \`$ac_var' since the previous run:" >&2;} ++ eval $ac_var=\$ac_old_val ++ fi ++ { $as_echo "$as_me:${as_lineno-$LINENO}: former value: \`$ac_old_val'" >&5 ++$as_echo "$as_me: former value: \`$ac_old_val'" >&2;} ++ { $as_echo "$as_me:${as_lineno-$LINENO}: current value: \`$ac_new_val'" >&5 ++$as_echo "$as_me: current value: \`$ac_new_val'" >&2;} + fi;; + esac + # Pass precious variables to config.status. + if test "$ac_new_set" = set; then + case $ac_new_val in +- *\'*) ac_arg=$ac_var=`echo "$ac_new_val" | sed "s/'/'\\\\\\\\''/g"` ;; ++ *\'*) ac_arg=$ac_var=`$as_echo "$ac_new_val" | sed "s/'/'\\\\\\\\''/g"` ;; + *) ac_arg=$ac_var=$ac_new_val ;; + esac + case " $ac_configure_args " in + *" '$ac_arg' "*) ;; # Avoid dups. Use of quotes ensures accuracy. +- *) ac_configure_args="$ac_configure_args '$ac_arg'" ;; ++ *) as_fn_append ac_configure_args " '$ac_arg'" ;; + esac + fi + done + if $ac_cache_corrupted; then +- { echo "$as_me:$LINENO: error: changes in the environment can compromise the build" >&5 +-echo "$as_me: error: changes in the environment can compromise the build" >&2;} +- { { echo "$as_me:$LINENO: error: run \`make distclean' and/or \`rm $cache_file' and start over" >&5 +-echo "$as_me: error: run \`make distclean' and/or \`rm $cache_file' and start over" >&2;} +- { (exit 1); exit 1; }; } ++ { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5 ++$as_echo "$as_me: error: in \`$ac_pwd':" >&2;} ++ { $as_echo "$as_me:${as_lineno-$LINENO}: error: changes in the environment can compromise the build" >&5 ++$as_echo "$as_me: error: changes in the environment can compromise the build" >&2;} ++ as_fn_error $? "run \`make distclean' and/or \`rm $cache_file' and start over" "$LINENO" 5 + fi +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- ++## -------------------- ## ++## Main body of script. ## ++## -------------------- ## + + ac_ext=c + ac_cpp='$CPP $CPPFLAGS' +@@ -2454,9 +3488,7 @@ for ac_dir in autotools "$srcdir"/autotools; do + fi + done + if test -z "$ac_aux_dir"; then +- { { echo "$as_me:$LINENO: error: cannot find install-sh or install.sh in autotools \"$srcdir\"/autotools" >&5 +-echo "$as_me: error: cannot find install-sh or install.sh in autotools \"$srcdir\"/autotools" >&2;} +- { (exit 1); exit 1; }; } ++ as_fn_error $? "cannot find install-sh, install.sh, or shtool in autotools \"$srcdir\"/autotools" "$LINENO" 5 + fi + + # These three variables are undocumented and unsupported, +@@ -2470,35 +3502,27 @@ ac_configure="$SHELL $ac_aux_dir/configure" # Please don't use this var. + + # Make sure we can run config.sub. + $SHELL "$ac_aux_dir/config.sub" sun4 >/dev/null 2>&1 || +- { { echo "$as_me:$LINENO: error: cannot run $SHELL $ac_aux_dir/config.sub" >&5 +-echo "$as_me: error: cannot run $SHELL $ac_aux_dir/config.sub" >&2;} +- { (exit 1); exit 1; }; } ++ as_fn_error $? "cannot run $SHELL $ac_aux_dir/config.sub" "$LINENO" 5 + +-{ echo "$as_me:$LINENO: checking build system type" >&5 +-echo $ECHO_N "checking build system type... $ECHO_C" >&6; } +-if test "${ac_cv_build+set}" = set; then +- echo $ECHO_N "(cached) $ECHO_C" >&6 ++{ $as_echo "$as_me:${as_lineno-$LINENO}: checking build system type" >&5 ++$as_echo_n "checking build system type... " >&6; } ++if ${ac_cv_build+:} false; then : ++ $as_echo_n "(cached) " >&6 + else + ac_build_alias=$build_alias + test "x$ac_build_alias" = x && + ac_build_alias=`$SHELL "$ac_aux_dir/config.guess"` + test "x$ac_build_alias" = x && +- { { echo "$as_me:$LINENO: error: cannot guess build type; you must specify one" >&5 +-echo "$as_me: error: cannot guess build type; you must specify one" >&2;} +- { (exit 1); exit 1; }; } ++ as_fn_error $? "cannot guess build type; you must specify one" "$LINENO" 5 + ac_cv_build=`$SHELL "$ac_aux_dir/config.sub" $ac_build_alias` || +- { { echo "$as_me:$LINENO: error: $SHELL $ac_aux_dir/config.sub $ac_build_alias failed" >&5 +-echo "$as_me: error: $SHELL $ac_aux_dir/config.sub $ac_build_alias failed" >&2;} +- { (exit 1); exit 1; }; } ++ as_fn_error $? "$SHELL $ac_aux_dir/config.sub $ac_build_alias failed" "$LINENO" 5 + + fi +-{ echo "$as_me:$LINENO: result: $ac_cv_build" >&5 +-echo "${ECHO_T}$ac_cv_build" >&6; } ++{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_build" >&5 ++$as_echo "$ac_cv_build" >&6; } + case $ac_cv_build in + *-*-*) ;; +-*) { { echo "$as_me:$LINENO: error: invalid value of canonical build" >&5 +-echo "$as_me: error: invalid value of canonical build" >&2;} +- { (exit 1); exit 1; }; };; ++*) as_fn_error $? "invalid value of canonical build" "$LINENO" 5;; + esac + build=$ac_cv_build + ac_save_IFS=$IFS; IFS='-' +@@ -2514,28 +3538,24 @@ IFS=$ac_save_IFS + case $build_os in *\ *) build_os=`echo "$build_os" | sed 's/ /-/g'`;; esac + + +-{ echo "$as_me:$LINENO: checking host system type" >&5 +-echo $ECHO_N "checking host system type... $ECHO_C" >&6; } +-if test "${ac_cv_host+set}" = set; then +- echo $ECHO_N "(cached) $ECHO_C" >&6 ++{ $as_echo "$as_me:${as_lineno-$LINENO}: checking host system type" >&5 ++$as_echo_n "checking host system type... " >&6; } ++if ${ac_cv_host+:} false; then : ++ $as_echo_n "(cached) " >&6 + else + if test "x$host_alias" = x; then + ac_cv_host=$ac_cv_build + else + ac_cv_host=`$SHELL "$ac_aux_dir/config.sub" $host_alias` || +- { { echo "$as_me:$LINENO: error: $SHELL $ac_aux_dir/config.sub $host_alias failed" >&5 +-echo "$as_me: error: $SHELL $ac_aux_dir/config.sub $host_alias failed" >&2;} +- { (exit 1); exit 1; }; } ++ as_fn_error $? "$SHELL $ac_aux_dir/config.sub $host_alias failed" "$LINENO" 5 + fi + + fi +-{ echo "$as_me:$LINENO: result: $ac_cv_host" >&5 +-echo "${ECHO_T}$ac_cv_host" >&6; } ++{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_host" >&5 ++$as_echo "$ac_cv_host" >&6; } + case $ac_cv_host in + *-*-*) ;; +-*) { { echo "$as_me:$LINENO: error: invalid value of canonical host" >&5 +-echo "$as_me: error: invalid value of canonical host" >&2;} +- { (exit 1); exit 1; }; };; ++*) as_fn_error $? "invalid value of canonical host" "$LINENO" 5;; + esac + host=$ac_cv_host + ac_save_IFS=$IFS; IFS='-' +@@ -2551,28 +3571,24 @@ IFS=$ac_save_IFS + case $host_os in *\ *) host_os=`echo "$host_os" | sed 's/ /-/g'`;; esac + + +-{ echo "$as_me:$LINENO: checking target system type" >&5 +-echo $ECHO_N "checking target system type... $ECHO_C" >&6; } +-if test "${ac_cv_target+set}" = set; then +- echo $ECHO_N "(cached) $ECHO_C" >&6 ++{ $as_echo "$as_me:${as_lineno-$LINENO}: checking target system type" >&5 ++$as_echo_n "checking target system type... " >&6; } ++if ${ac_cv_target+:} false; then : ++ $as_echo_n "(cached) " >&6 + else + if test "x$target_alias" = x; then + ac_cv_target=$ac_cv_host + else + ac_cv_target=`$SHELL "$ac_aux_dir/config.sub" $target_alias` || +- { { echo "$as_me:$LINENO: error: $SHELL $ac_aux_dir/config.sub $target_alias failed" >&5 +-echo "$as_me: error: $SHELL $ac_aux_dir/config.sub $target_alias failed" >&2;} +- { (exit 1); exit 1; }; } ++ as_fn_error $? "$SHELL $ac_aux_dir/config.sub $target_alias failed" "$LINENO" 5 + fi + + fi +-{ echo "$as_me:$LINENO: result: $ac_cv_target" >&5 +-echo "${ECHO_T}$ac_cv_target" >&6; } ++{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_target" >&5 ++$as_echo "$ac_cv_target" >&6; } + case $ac_cv_target in + *-*-*) ;; +-*) { { echo "$as_me:$LINENO: error: invalid value of canonical target" >&5 +-echo "$as_me: error: invalid value of canonical target" >&2;} +- { (exit 1); exit 1; }; };; ++*) as_fn_error $? "invalid value of canonical target" "$LINENO" 5;; + esac + target=$ac_cv_target + ac_save_IFS=$IFS; IFS='-' +@@ -2595,6 +3611,7 @@ test -n "$target_alias" && + NONENONEs,x,x, && + program_prefix=${target_alias}- + ++ + am__api_version="1.9" + # Find a good install program. We prefer a C program (faster), + # so one script is as good as another. But avoid the broken or +@@ -2609,22 +3626,23 @@ am__api_version="1.9" + # SVR4 /usr/ucb/install, which tries to use the nonexistent group "staff" + # OS/2's system install, which has a completely different semantic + # ./install, which can be erroneously created by make from ./install.sh. +-{ echo "$as_me:$LINENO: checking for a BSD-compatible install" >&5 +-echo $ECHO_N "checking for a BSD-compatible install... $ECHO_C" >&6; } ++# Reject install programs that cannot install multiple files. ++{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for a BSD-compatible install" >&5 ++$as_echo_n "checking for a BSD-compatible install... " >&6; } + if test -z "$INSTALL"; then +-if test "${ac_cv_path_install+set}" = set; then +- echo $ECHO_N "(cached) $ECHO_C" >&6 ++if ${ac_cv_path_install+:} false; then : ++ $as_echo_n "(cached) " >&6 + else + as_save_IFS=$IFS; IFS=$PATH_SEPARATOR + for as_dir in $PATH + do + IFS=$as_save_IFS + test -z "$as_dir" && as_dir=. +- # Account for people who put trailing slashes in PATH elements. +-case $as_dir/ in +- ./ | .// | /cC/* | \ ++ # Account for people who put trailing slashes in PATH elements. ++case $as_dir/ in #(( ++ ./ | .// | /[cC]/* | \ + /etc/* | /usr/sbin/* | /usr/etc/* | /sbin/* | /usr/afsws/bin/* | \ +- ?:\\/os2\\/install\\/* | ?:\\/OS2\\/INSTALL\\/* | \ ++ ?:[\\/]os2[\\/]install[\\/]* | ?:[\\/]OS2[\\/]INSTALL[\\/]* | \ + /usr/ucb/* ) ;; + *) + # OSF1 and SCO ODT 3.0 have their own names for install. +@@ -2632,7 +3650,7 @@ case $as_dir/ in + # by default. + for ac_prog in ginstall scoinst install; do + for ac_exec_ext in '' $ac_executable_extensions; do +- if { test -f "$as_dir/$ac_prog$ac_exec_ext" && $as_test_x "$as_dir/$ac_prog$ac_exec_ext"; }; then ++ if as_fn_executable_p "$as_dir/$ac_prog$ac_exec_ext"; then + if test $ac_prog = install && + grep dspmsg "$as_dir/$ac_prog$ac_exec_ext" >/dev/null 2>&1; then + # AIX install. It has an incompatible calling convention. +@@ -2642,17 +3660,29 @@ case $as_dir/ in + # program-specific install script used by HP pwplus--don't use. + : + else +- ac_cv_path_install="$as_dir/$ac_prog$ac_exec_ext -c" +- break 3 ++ rm -rf conftest.one conftest.two conftest.dir ++ echo one > conftest.one ++ echo two > conftest.two ++ mkdir conftest.dir ++ if "$as_dir/$ac_prog$ac_exec_ext" -c conftest.one conftest.two "`pwd`/conftest.dir" && ++ test -s conftest.one && test -s conftest.two && ++ test -s conftest.dir/conftest.one && ++ test -s conftest.dir/conftest.two ++ then ++ ac_cv_path_install="$as_dir/$ac_prog$ac_exec_ext -c" ++ break 3 ++ fi + fi + fi + done + done + ;; + esac +-done ++ ++ done + IFS=$as_save_IFS + ++rm -rf conftest.one conftest.two conftest.dir + + fi + if test "${ac_cv_path_install+set}" = set; then +@@ -2665,8 +3695,8 @@ fi + INSTALL=$ac_install_sh + fi + fi +-{ echo "$as_me:$LINENO: result: $INSTALL" >&5 +-echo "${ECHO_T}$INSTALL" >&6; } ++{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $INSTALL" >&5 ++$as_echo "$INSTALL" >&6; } + + # Use test -z because SunOS4 sh mishandles braces in ${var-val}. + # It thinks the first close brace ends the variable substitution. +@@ -2676,8 +3706,8 @@ test -z "$INSTALL_SCRIPT" && INSTALL_SCRIPT='${INSTALL}' + + test -z "$INSTALL_DATA" && INSTALL_DATA='${INSTALL} -m 644' + +-{ echo "$as_me:$LINENO: checking whether build environment is sane" >&5 +-echo $ECHO_N "checking whether build environment is sane... $ECHO_C" >&6; } ++{ $as_echo "$as_me:${as_lineno-$LINENO}: checking whether build environment is sane" >&5 ++$as_echo_n "checking whether build environment is sane... " >&6; } + # Just in case + sleep 1 + echo timestamp > conftest.file +@@ -2700,11 +3730,8 @@ if ( + # if, for instance, CONFIG_SHELL is bash and it inherits a + # broken ls alias from the environment. This has actually + # happened. Such a system could not be considered "sane". +- { { echo "$as_me:$LINENO: error: ls -t appears to fail. Make sure there is not a broken +-alias in your environment" >&5 +-echo "$as_me: error: ls -t appears to fail. Make sure there is not a broken +-alias in your environment" >&2;} +- { (exit 1); exit 1; }; } ++ as_fn_error $? "ls -t appears to fail. Make sure there is not a broken ++alias in your environment" "$LINENO" 5 + fi + + test "$2" = conftest.file +@@ -2713,26 +3740,20 @@ then + # Ok. + : + else +- { { echo "$as_me:$LINENO: error: newly created file is older than distributed files! +-Check your system clock" >&5 +-echo "$as_me: error: newly created file is older than distributed files! +-Check your system clock" >&2;} +- { (exit 1); exit 1; }; } ++ as_fn_error $? "newly created file is older than distributed files! ++Check your system clock" "$LINENO" 5 + fi +-{ echo "$as_me:$LINENO: result: yes" >&5 +-echo "${ECHO_T}yes" >&6; } ++{ $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5 ++$as_echo "yes" >&6; } + test "$program_prefix" != NONE && + program_transform_name="s&^&$program_prefix&;$program_transform_name" + # Use a double $ so make ignores it. + test "$program_suffix" != NONE && + program_transform_name="s&\$&$program_suffix&;$program_transform_name" +-# Double any \ or $. echo might interpret backslashes. ++# Double any \ or $. + # By default was `s,x,x', remove it if useless. +-cat <<\_ACEOF >conftest.sed +-s/[\\$]/&&/g;s/;s,x,x,$// +-_ACEOF +-program_transform_name=`echo $program_transform_name | sed -f conftest.sed` +-rm -f conftest.sed ++ac_script='s/[\\$]/&&/g;s/;s,x,x,$//' ++program_transform_name=`$as_echo "$program_transform_name" | sed "$ac_script"` + + # expand $ac_aux_dir to an absolute path + am_aux_dir=`cd $ac_aux_dir && pwd` +@@ -2743,8 +3764,8 @@ if eval "$MISSING --run true"; then + am_missing_run="$MISSING --run " + else + am_missing_run= +- { echo "$as_me:$LINENO: WARNING: \`missing' script is too old or missing" >&5 +-echo "$as_me: WARNING: \`missing' script is too old or missing" >&2;} ++ { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: \`missing' script is too old or missing" >&5 ++$as_echo "$as_me: WARNING: \`missing' script is too old or missing" >&2;} + fi + + if mkdir -p --version . >/dev/null 2>&1 && test ! -d ./--version; then +@@ -2784,10 +3805,10 @@ for ac_prog in gawk mawk nawk awk + do + # Extract the first word of "$ac_prog", so it can be a program name with args. + set dummy $ac_prog; ac_word=$2 +-{ echo "$as_me:$LINENO: checking for $ac_word" >&5 +-echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6; } +-if test "${ac_cv_prog_AWK+set}" = set; then +- echo $ECHO_N "(cached) $ECHO_C" >&6 ++{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 ++$as_echo_n "checking for $ac_word... " >&6; } ++if ${ac_cv_prog_AWK+:} false; then : ++ $as_echo_n "(cached) " >&6 + else + if test -n "$AWK"; then + ac_cv_prog_AWK="$AWK" # Let the user override the test. +@@ -2797,43 +3818,44 @@ for as_dir in $PATH + do + IFS=$as_save_IFS + test -z "$as_dir" && as_dir=. +- for ac_exec_ext in '' $ac_executable_extensions; do +- if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then ++ for ac_exec_ext in '' $ac_executable_extensions; do ++ if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then + ac_cv_prog_AWK="$ac_prog" +- echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 ++ $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 + break 2 + fi + done +-done ++ done + IFS=$as_save_IFS + + fi + fi + AWK=$ac_cv_prog_AWK + if test -n "$AWK"; then +- { echo "$as_me:$LINENO: result: $AWK" >&5 +-echo "${ECHO_T}$AWK" >&6; } ++ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $AWK" >&5 ++$as_echo "$AWK" >&6; } + else +- { echo "$as_me:$LINENO: result: no" >&5 +-echo "${ECHO_T}no" >&6; } ++ { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 ++$as_echo "no" >&6; } + fi + + + test -n "$AWK" && break + done + +-{ echo "$as_me:$LINENO: checking whether ${MAKE-make} sets \$(MAKE)" >&5 +-echo $ECHO_N "checking whether ${MAKE-make} sets \$(MAKE)... $ECHO_C" >&6; } +-set x ${MAKE-make}; ac_make=`echo "$2" | sed 's/+/p/g; s/[^a-zA-Z0-9_]/_/g'` +-if { as_var=ac_cv_prog_make_${ac_make}_set; eval "test \"\${$as_var+set}\" = set"; }; then +- echo $ECHO_N "(cached) $ECHO_C" >&6 ++{ $as_echo "$as_me:${as_lineno-$LINENO}: checking whether ${MAKE-make} sets \$(MAKE)" >&5 ++$as_echo_n "checking whether ${MAKE-make} sets \$(MAKE)... " >&6; } ++set x ${MAKE-make} ++ac_make=`$as_echo "$2" | sed 's/+/p/g; s/[^a-zA-Z0-9_]/_/g'` ++if eval \${ac_cv_prog_make_${ac_make}_set+:} false; then : ++ $as_echo_n "(cached) " >&6 + else + cat >conftest.make <<\_ACEOF + SHELL = /bin/sh + all: + @echo '@@@%%%=$(MAKE)=@@@%%%' + _ACEOF +-# GNU make sometimes prints "make[1]: Entering...", which would confuse us. ++# GNU make sometimes prints "make[1]: Entering ...", which would confuse us. + case `${MAKE-make} -f conftest.make 2>/dev/null` in + *@@@%%%=?*=@@@%%%*) + eval ac_cv_prog_make_${ac_make}_set=yes;; +@@ -2843,12 +3865,12 @@ esac + rm -f conftest.make + fi + if eval test \$ac_cv_prog_make_${ac_make}_set = yes; then +- { echo "$as_me:$LINENO: result: yes" >&5 +-echo "${ECHO_T}yes" >&6; } ++ { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5 ++$as_echo "yes" >&6; } + SET_MAKE= + else +- { echo "$as_me:$LINENO: result: no" >&5 +-echo "${ECHO_T}no" >&6; } ++ { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 ++$as_echo "no" >&6; } + SET_MAKE="MAKE=${MAKE-make}" + fi + +@@ -2864,9 +3886,7 @@ rmdir .tst 2>/dev/null + # test to see if srcdir already configured + if test "`cd $srcdir && pwd`" != "`pwd`" && + test -f $srcdir/config.status; then +- { { echo "$as_me:$LINENO: error: source directory already configured; run \"make distclean\" there first" >&5 +-echo "$as_me: error: source directory already configured; run \"make distclean\" there first" >&2;} +- { (exit 1); exit 1; }; } ++ as_fn_error $? "source directory already configured; run \"make distclean\" there first" "$LINENO" 5 + fi + + # test whether we have cygpath +@@ -2919,10 +3939,10 @@ if test "$cross_compiling" != no; then + if test -n "$ac_tool_prefix"; then + # Extract the first word of "${ac_tool_prefix}strip", so it can be a program name with args. + set dummy ${ac_tool_prefix}strip; ac_word=$2 +-{ echo "$as_me:$LINENO: checking for $ac_word" >&5 +-echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6; } +-if test "${ac_cv_prog_STRIP+set}" = set; then +- echo $ECHO_N "(cached) $ECHO_C" >&6 ++{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 ++$as_echo_n "checking for $ac_word... " >&6; } ++if ${ac_cv_prog_STRIP+:} false; then : ++ $as_echo_n "(cached) " >&6 + else + if test -n "$STRIP"; then + ac_cv_prog_STRIP="$STRIP" # Let the user override the test. +@@ -2932,25 +3952,25 @@ for as_dir in $PATH + do + IFS=$as_save_IFS + test -z "$as_dir" && as_dir=. +- for ac_exec_ext in '' $ac_executable_extensions; do +- if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then ++ for ac_exec_ext in '' $ac_executable_extensions; do ++ if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then + ac_cv_prog_STRIP="${ac_tool_prefix}strip" +- echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 ++ $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 + break 2 + fi + done +-done ++ done + IFS=$as_save_IFS + + fi + fi + STRIP=$ac_cv_prog_STRIP + if test -n "$STRIP"; then +- { echo "$as_me:$LINENO: result: $STRIP" >&5 +-echo "${ECHO_T}$STRIP" >&6; } ++ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $STRIP" >&5 ++$as_echo "$STRIP" >&6; } + else +- { echo "$as_me:$LINENO: result: no" >&5 +-echo "${ECHO_T}no" >&6; } ++ { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 ++$as_echo "no" >&6; } + fi + + +@@ -2959,10 +3979,10 @@ if test -z "$ac_cv_prog_STRIP"; then + ac_ct_STRIP=$STRIP + # Extract the first word of "strip", so it can be a program name with args. + set dummy strip; ac_word=$2 +-{ echo "$as_me:$LINENO: checking for $ac_word" >&5 +-echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6; } +-if test "${ac_cv_prog_ac_ct_STRIP+set}" = set; then +- echo $ECHO_N "(cached) $ECHO_C" >&6 ++{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 ++$as_echo_n "checking for $ac_word... " >&6; } ++if ${ac_cv_prog_ac_ct_STRIP+:} false; then : ++ $as_echo_n "(cached) " >&6 + else + if test -n "$ac_ct_STRIP"; then + ac_cv_prog_ac_ct_STRIP="$ac_ct_STRIP" # Let the user override the test. +@@ -2972,25 +3992,25 @@ for as_dir in $PATH + do + IFS=$as_save_IFS + test -z "$as_dir" && as_dir=. +- for ac_exec_ext in '' $ac_executable_extensions; do +- if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then ++ for ac_exec_ext in '' $ac_executable_extensions; do ++ if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then + ac_cv_prog_ac_ct_STRIP="strip" +- echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 ++ $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 + break 2 + fi + done +-done ++ done + IFS=$as_save_IFS + + fi + fi + ac_ct_STRIP=$ac_cv_prog_ac_ct_STRIP + if test -n "$ac_ct_STRIP"; then +- { echo "$as_me:$LINENO: result: $ac_ct_STRIP" >&5 +-echo "${ECHO_T}$ac_ct_STRIP" >&6; } ++ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_ct_STRIP" >&5 ++$as_echo "$ac_ct_STRIP" >&6; } + else +- { echo "$as_me:$LINENO: result: no" >&5 +-echo "${ECHO_T}no" >&6; } ++ { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 ++$as_echo "no" >&6; } + fi + + if test "x$ac_ct_STRIP" = x; then +@@ -2998,12 +4018,8 @@ fi + else + case $cross_compiling:$ac_tool_warned in + yes:) +-{ echo "$as_me:$LINENO: WARNING: In the future, Autoconf will not detect cross-tools +-whose name does not start with the host triplet. If you think this +-configuration is useful to you, please write to autoconf@gnu.org." >&5 +-echo "$as_me: WARNING: In the future, Autoconf will not detect cross-tools +-whose name does not start with the host triplet. If you think this +-configuration is useful to you, please write to autoconf@gnu.org." >&2;} ++{ $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet" >&5 ++$as_echo "$as_me: WARNING: using cross tools not prefixed with host triplet" >&2;} + ac_tool_warned=yes ;; + esac + STRIP=$ac_ct_STRIP +@@ -3031,22 +4047,21 @@ ac_config_headers="$ac_config_headers config.h" + + + +-if test "x${enable_maintainer_mode}" != "xno"; then ++if test "x${enable_maintainer_mode}" != "xno"; then : + enable_maintainer_mode="yes" + fi + +- +-{ echo "$as_me:$LINENO: checking whether to enable maintainer-specific portions of Makefiles" >&5 +-echo $ECHO_N "checking whether to enable maintainer-specific portions of Makefiles... $ECHO_C" >&6; } ++{ $as_echo "$as_me:${as_lineno-$LINENO}: checking whether to enable maintainer-specific portions of Makefiles" >&5 ++$as_echo_n "checking whether to enable maintainer-specific portions of Makefiles... " >&6; } + # Check whether --enable-maintainer-mode was given. +-if test "${enable_maintainer_mode+set}" = set; then ++if test "${enable_maintainer_mode+set}" = set; then : + enableval=$enable_maintainer_mode; USE_MAINTAINER_MODE=$enableval + else + USE_MAINTAINER_MODE=no + fi + +- { echo "$as_me:$LINENO: result: $USE_MAINTAINER_MODE" >&5 +-echo "${ECHO_T}$USE_MAINTAINER_MODE" >&6; } ++ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $USE_MAINTAINER_MODE" >&5 ++$as_echo "$USE_MAINTAINER_MODE" >&6; } + + + if test $USE_MAINTAINER_MODE = yes; then +@@ -3077,10 +4092,10 @@ ac_compiler_gnu=$ac_cv_c_compiler_gnu + if test -n "$ac_tool_prefix"; then + # Extract the first word of "${ac_tool_prefix}gcc", so it can be a program name with args. + set dummy ${ac_tool_prefix}gcc; ac_word=$2 +-{ echo "$as_me:$LINENO: checking for $ac_word" >&5 +-echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6; } +-if test "${ac_cv_prog_CC+set}" = set; then +- echo $ECHO_N "(cached) $ECHO_C" >&6 ++{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 ++$as_echo_n "checking for $ac_word... " >&6; } ++if ${ac_cv_prog_CC+:} false; then : ++ $as_echo_n "(cached) " >&6 + else + if test -n "$CC"; then + ac_cv_prog_CC="$CC" # Let the user override the test. +@@ -3090,25 +4105,25 @@ for as_dir in $PATH + do + IFS=$as_save_IFS + test -z "$as_dir" && as_dir=. +- for ac_exec_ext in '' $ac_executable_extensions; do +- if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then ++ for ac_exec_ext in '' $ac_executable_extensions; do ++ if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then + ac_cv_prog_CC="${ac_tool_prefix}gcc" +- echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 ++ $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 + break 2 + fi + done +-done ++ done + IFS=$as_save_IFS + + fi + fi + CC=$ac_cv_prog_CC + if test -n "$CC"; then +- { echo "$as_me:$LINENO: result: $CC" >&5 +-echo "${ECHO_T}$CC" >&6; } ++ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $CC" >&5 ++$as_echo "$CC" >&6; } + else +- { echo "$as_me:$LINENO: result: no" >&5 +-echo "${ECHO_T}no" >&6; } ++ { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 ++$as_echo "no" >&6; } + fi + + +@@ -3117,10 +4132,10 @@ if test -z "$ac_cv_prog_CC"; then + ac_ct_CC=$CC + # Extract the first word of "gcc", so it can be a program name with args. + set dummy gcc; ac_word=$2 +-{ echo "$as_me:$LINENO: checking for $ac_word" >&5 +-echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6; } +-if test "${ac_cv_prog_ac_ct_CC+set}" = set; then +- echo $ECHO_N "(cached) $ECHO_C" >&6 ++{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 ++$as_echo_n "checking for $ac_word... " >&6; } ++if ${ac_cv_prog_ac_ct_CC+:} false; then : ++ $as_echo_n "(cached) " >&6 + else + if test -n "$ac_ct_CC"; then + ac_cv_prog_ac_ct_CC="$ac_ct_CC" # Let the user override the test. +@@ -3130,25 +4145,25 @@ for as_dir in $PATH + do + IFS=$as_save_IFS + test -z "$as_dir" && as_dir=. +- for ac_exec_ext in '' $ac_executable_extensions; do +- if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then ++ for ac_exec_ext in '' $ac_executable_extensions; do ++ if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then + ac_cv_prog_ac_ct_CC="gcc" +- echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 ++ $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 + break 2 + fi + done +-done ++ done + IFS=$as_save_IFS + + fi + fi + ac_ct_CC=$ac_cv_prog_ac_ct_CC + if test -n "$ac_ct_CC"; then +- { echo "$as_me:$LINENO: result: $ac_ct_CC" >&5 +-echo "${ECHO_T}$ac_ct_CC" >&6; } ++ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_ct_CC" >&5 ++$as_echo "$ac_ct_CC" >&6; } + else +- { echo "$as_me:$LINENO: result: no" >&5 +-echo "${ECHO_T}no" >&6; } ++ { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 ++$as_echo "no" >&6; } + fi + + if test "x$ac_ct_CC" = x; then +@@ -3156,12 +4171,8 @@ fi + else + case $cross_compiling:$ac_tool_warned in + yes:) +-{ echo "$as_me:$LINENO: WARNING: In the future, Autoconf will not detect cross-tools +-whose name does not start with the host triplet. If you think this +-configuration is useful to you, please write to autoconf@gnu.org." >&5 +-echo "$as_me: WARNING: In the future, Autoconf will not detect cross-tools +-whose name does not start with the host triplet. If you think this +-configuration is useful to you, please write to autoconf@gnu.org." >&2;} ++{ $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet" >&5 ++$as_echo "$as_me: WARNING: using cross tools not prefixed with host triplet" >&2;} + ac_tool_warned=yes ;; + esac + CC=$ac_ct_CC +@@ -3174,10 +4185,10 @@ if test -z "$CC"; then + if test -n "$ac_tool_prefix"; then + # Extract the first word of "${ac_tool_prefix}cc", so it can be a program name with args. + set dummy ${ac_tool_prefix}cc; ac_word=$2 +-{ echo "$as_me:$LINENO: checking for $ac_word" >&5 +-echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6; } +-if test "${ac_cv_prog_CC+set}" = set; then +- echo $ECHO_N "(cached) $ECHO_C" >&6 ++{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 ++$as_echo_n "checking for $ac_word... " >&6; } ++if ${ac_cv_prog_CC+:} false; then : ++ $as_echo_n "(cached) " >&6 + else + if test -n "$CC"; then + ac_cv_prog_CC="$CC" # Let the user override the test. +@@ -3187,25 +4198,25 @@ for as_dir in $PATH + do + IFS=$as_save_IFS + test -z "$as_dir" && as_dir=. +- for ac_exec_ext in '' $ac_executable_extensions; do +- if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then ++ for ac_exec_ext in '' $ac_executable_extensions; do ++ if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then + ac_cv_prog_CC="${ac_tool_prefix}cc" +- echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 ++ $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 + break 2 + fi + done +-done ++ done + IFS=$as_save_IFS + + fi + fi + CC=$ac_cv_prog_CC + if test -n "$CC"; then +- { echo "$as_me:$LINENO: result: $CC" >&5 +-echo "${ECHO_T}$CC" >&6; } ++ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $CC" >&5 ++$as_echo "$CC" >&6; } + else +- { echo "$as_me:$LINENO: result: no" >&5 +-echo "${ECHO_T}no" >&6; } ++ { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 ++$as_echo "no" >&6; } + fi + + +@@ -3214,10 +4225,10 @@ fi + if test -z "$CC"; then + # Extract the first word of "cc", so it can be a program name with args. + set dummy cc; ac_word=$2 +-{ echo "$as_me:$LINENO: checking for $ac_word" >&5 +-echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6; } +-if test "${ac_cv_prog_CC+set}" = set; then +- echo $ECHO_N "(cached) $ECHO_C" >&6 ++{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 ++$as_echo_n "checking for $ac_word... " >&6; } ++if ${ac_cv_prog_CC+:} false; then : ++ $as_echo_n "(cached) " >&6 + else + if test -n "$CC"; then + ac_cv_prog_CC="$CC" # Let the user override the test. +@@ -3228,18 +4239,18 @@ for as_dir in $PATH + do + IFS=$as_save_IFS + test -z "$as_dir" && as_dir=. +- for ac_exec_ext in '' $ac_executable_extensions; do +- if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then ++ for ac_exec_ext in '' $ac_executable_extensions; do ++ if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then + if test "$as_dir/$ac_word$ac_exec_ext" = "/usr/ucb/cc"; then + ac_prog_rejected=yes + continue + fi + ac_cv_prog_CC="cc" +- echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 ++ $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 + break 2 + fi + done +-done ++ done + IFS=$as_save_IFS + + if test $ac_prog_rejected = yes; then +@@ -3258,11 +4269,11 @@ fi + fi + CC=$ac_cv_prog_CC + if test -n "$CC"; then +- { echo "$as_me:$LINENO: result: $CC" >&5 +-echo "${ECHO_T}$CC" >&6; } ++ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $CC" >&5 ++$as_echo "$CC" >&6; } + else +- { echo "$as_me:$LINENO: result: no" >&5 +-echo "${ECHO_T}no" >&6; } ++ { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 ++$as_echo "no" >&6; } + fi + + +@@ -3273,10 +4284,10 @@ if test -z "$CC"; then + do + # Extract the first word of "$ac_tool_prefix$ac_prog", so it can be a program name with args. + set dummy $ac_tool_prefix$ac_prog; ac_word=$2 +-{ echo "$as_me:$LINENO: checking for $ac_word" >&5 +-echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6; } +-if test "${ac_cv_prog_CC+set}" = set; then +- echo $ECHO_N "(cached) $ECHO_C" >&6 ++{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 ++$as_echo_n "checking for $ac_word... " >&6; } ++if ${ac_cv_prog_CC+:} false; then : ++ $as_echo_n "(cached) " >&6 + else + if test -n "$CC"; then + ac_cv_prog_CC="$CC" # Let the user override the test. +@@ -3286,25 +4297,25 @@ for as_dir in $PATH + do + IFS=$as_save_IFS + test -z "$as_dir" && as_dir=. +- for ac_exec_ext in '' $ac_executable_extensions; do +- if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then ++ for ac_exec_ext in '' $ac_executable_extensions; do ++ if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then + ac_cv_prog_CC="$ac_tool_prefix$ac_prog" +- echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 ++ $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 + break 2 + fi + done +-done ++ done + IFS=$as_save_IFS + + fi + fi + CC=$ac_cv_prog_CC + if test -n "$CC"; then +- { echo "$as_me:$LINENO: result: $CC" >&5 +-echo "${ECHO_T}$CC" >&6; } ++ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $CC" >&5 ++$as_echo "$CC" >&6; } + else +- { echo "$as_me:$LINENO: result: no" >&5 +-echo "${ECHO_T}no" >&6; } ++ { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 ++$as_echo "no" >&6; } + fi + + +@@ -3317,10 +4328,10 @@ if test -z "$CC"; then + do + # Extract the first word of "$ac_prog", so it can be a program name with args. + set dummy $ac_prog; ac_word=$2 +-{ echo "$as_me:$LINENO: checking for $ac_word" >&5 +-echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6; } +-if test "${ac_cv_prog_ac_ct_CC+set}" = set; then +- echo $ECHO_N "(cached) $ECHO_C" >&6 ++{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 ++$as_echo_n "checking for $ac_word... " >&6; } ++if ${ac_cv_prog_ac_ct_CC+:} false; then : ++ $as_echo_n "(cached) " >&6 + else + if test -n "$ac_ct_CC"; then + ac_cv_prog_ac_ct_CC="$ac_ct_CC" # Let the user override the test. +@@ -3330,25 +4341,25 @@ for as_dir in $PATH + do + IFS=$as_save_IFS + test -z "$as_dir" && as_dir=. +- for ac_exec_ext in '' $ac_executable_extensions; do +- if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then ++ for ac_exec_ext in '' $ac_executable_extensions; do ++ if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then + ac_cv_prog_ac_ct_CC="$ac_prog" +- echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 ++ $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 + break 2 + fi + done +-done ++ done + IFS=$as_save_IFS + + fi + fi + ac_ct_CC=$ac_cv_prog_ac_ct_CC + if test -n "$ac_ct_CC"; then +- { echo "$as_me:$LINENO: result: $ac_ct_CC" >&5 +-echo "${ECHO_T}$ac_ct_CC" >&6; } ++ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_ct_CC" >&5 ++$as_echo "$ac_ct_CC" >&6; } + else +- { echo "$as_me:$LINENO: result: no" >&5 +-echo "${ECHO_T}no" >&6; } ++ { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 ++$as_echo "no" >&6; } + fi + + +@@ -3360,12 +4371,8 @@ done + else + case $cross_compiling:$ac_tool_warned in + yes:) +-{ echo "$as_me:$LINENO: WARNING: In the future, Autoconf will not detect cross-tools +-whose name does not start with the host triplet. If you think this +-configuration is useful to you, please write to autoconf@gnu.org." >&5 +-echo "$as_me: WARNING: In the future, Autoconf will not detect cross-tools +-whose name does not start with the host triplet. If you think this +-configuration is useful to you, please write to autoconf@gnu.org." >&2;} ++{ $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet" >&5 ++$as_echo "$as_me: WARNING: using cross tools not prefixed with host triplet" >&2;} + ac_tool_warned=yes ;; + esac + CC=$ac_ct_CC +@@ -3375,51 +4382,37 @@ fi + fi + + +-test -z "$CC" && { { echo "$as_me:$LINENO: error: no acceptable C compiler found in \$PATH +-See \`config.log' for more details." >&5 +-echo "$as_me: error: no acceptable C compiler found in \$PATH +-See \`config.log' for more details." >&2;} +- { (exit 1); exit 1; }; } ++test -z "$CC" && { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5 ++$as_echo "$as_me: error: in \`$ac_pwd':" >&2;} ++as_fn_error $? "no acceptable C compiler found in \$PATH ++See \`config.log' for more details" "$LINENO" 5; } + + # Provide some information about the compiler. +-echo "$as_me:$LINENO: checking for C compiler version" >&5 +-ac_compiler=`set X $ac_compile; echo $2` +-{ (ac_try="$ac_compiler --version >&5" +-case "(($ac_try" in +- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; +- *) ac_try_echo=$ac_try;; +-esac +-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 +- (eval "$ac_compiler --version >&5") 2>&5 +- ac_status=$? +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); } +-{ (ac_try="$ac_compiler -v >&5" +-case "(($ac_try" in +- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; +- *) ac_try_echo=$ac_try;; +-esac +-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 +- (eval "$ac_compiler -v >&5") 2>&5 +- ac_status=$? +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); } +-{ (ac_try="$ac_compiler -V >&5" ++$as_echo "$as_me:${as_lineno-$LINENO}: checking for C compiler version" >&5 ++set X $ac_compile ++ac_compiler=$2 ++for ac_option in --version -v -V -qversion; do ++ { { ac_try="$ac_compiler $ac_option >&5" + case "(($ac_try" in + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 +- (eval "$ac_compiler -V >&5") 2>&5 ++eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\"" ++$as_echo "$ac_try_echo"; } >&5 ++ (eval "$ac_compiler $ac_option >&5") 2>conftest.err + ac_status=$? +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); } ++ if test -s conftest.err; then ++ sed '10a\ ++... rest of stderr output deleted ... ++ 10q' conftest.err >conftest.er1 ++ cat conftest.er1 >&5 ++ fi ++ rm -f conftest.er1 conftest.err ++ $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 ++ test $ac_status = 0; } ++done + +-cat >conftest.$ac_ext <<_ACEOF +-/* confdefs.h. */ +-_ACEOF +-cat confdefs.h >>conftest.$ac_ext +-cat >>conftest.$ac_ext <<_ACEOF ++cat confdefs.h - <<_ACEOF >conftest.$ac_ext + /* end confdefs.h. */ + + int +@@ -3431,42 +4424,38 @@ main () + } + _ACEOF + ac_clean_files_save=$ac_clean_files +-ac_clean_files="$ac_clean_files a.out a.exe b.out" ++ac_clean_files="$ac_clean_files a.out a.out.dSYM a.exe b.out" + # Try to create an executable without -o first, disregard a.out. + # It will help us diagnose broken compilers, and finding out an intuition + # of exeext. +-{ echo "$as_me:$LINENO: checking for C compiler default output file name" >&5 +-echo $ECHO_N "checking for C compiler default output file name... $ECHO_C" >&6; } +-ac_link_default=`echo "$ac_link" | sed 's/ -o *conftest[^ ]*//'` +-# +-# List of possible output files, starting from the most likely. +-# The algorithm is not robust to junk in `.', hence go to wildcards (a.*) +-# only as a last resort. b.out is created by i960 compilers. +-ac_files='a_out.exe a.exe conftest.exe a.out conftest a.* conftest.* b.out' +-# +-# The IRIX 6 linker writes into existing files which may not be +-# executable, retaining their permissions. Remove them first so a +-# subsequent execution test works. ++{ $as_echo "$as_me:${as_lineno-$LINENO}: checking whether the C compiler works" >&5 ++$as_echo_n "checking whether the C compiler works... " >&6; } ++ac_link_default=`$as_echo "$ac_link" | sed 's/ -o *conftest[^ ]*//'` ++ ++# The possible output files: ++ac_files="a.out conftest.exe conftest a.exe a_out.exe b.out conftest.*" ++ + ac_rmfiles= + for ac_file in $ac_files + do + case $ac_file in +- *.$ac_ext | *.xcoff | *.tds | *.d | *.pdb | *.xSYM | *.bb | *.bbg | *.map | *.inf | *.o | *.obj ) ;; ++ *.$ac_ext | *.xcoff | *.tds | *.d | *.pdb | *.xSYM | *.bb | *.bbg | *.map | *.inf | *.dSYM | *.o | *.obj ) ;; + * ) ac_rmfiles="$ac_rmfiles $ac_file";; + esac + done + rm -f $ac_rmfiles + +-if { (ac_try="$ac_link_default" ++if { { ac_try="$ac_link_default" + case "(($ac_try" in + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 ++eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\"" ++$as_echo "$ac_try_echo"; } >&5 + (eval "$ac_link_default") 2>&5 + ac_status=$? +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); }; then ++ $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 ++ test $ac_status = 0; }; then : + # Autoconf-2.13 could set the ac_cv_exeext variable to `no'. + # So ignore a value of `no', otherwise this would lead to `EXEEXT = no' + # in a Makefile. We should not override ac_cv_exeext if it was cached, +@@ -3476,14 +4465,14 @@ for ac_file in $ac_files '' + do + test -f "$ac_file" || continue + case $ac_file in +- *.$ac_ext | *.xcoff | *.tds | *.d | *.pdb | *.xSYM | *.bb | *.bbg | *.map | *.inf | *.o | *.obj ) ++ *.$ac_ext | *.xcoff | *.tds | *.d | *.pdb | *.xSYM | *.bb | *.bbg | *.map | *.inf | *.dSYM | *.o | *.obj ) + ;; + [ab].out ) + # We found the default executable, but exeext='' is most + # certainly right. + break;; + *.* ) +- if test "${ac_cv_exeext+set}" = set && test "$ac_cv_exeext" != no; ++ if test "${ac_cv_exeext+set}" = set && test "$ac_cv_exeext" != no; + then :; else + ac_cv_exeext=`expr "$ac_file" : '[^.]*\(\..*\)'` + fi +@@ -3502,78 +4491,41 @@ test "$ac_cv_exeext" = no && ac_cv_exeext= + else + ac_file='' + fi +- +-{ echo "$as_me:$LINENO: result: $ac_file" >&5 +-echo "${ECHO_T}$ac_file" >&6; } +-if test -z "$ac_file"; then +- echo "$as_me: failed program was:" >&5 ++if test -z "$ac_file"; then : ++ { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 ++$as_echo "no" >&6; } ++$as_echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + +-{ { echo "$as_me:$LINENO: error: C compiler cannot create executables +-See \`config.log' for more details." >&5 +-echo "$as_me: error: C compiler cannot create executables +-See \`config.log' for more details." >&2;} +- { (exit 77); exit 77; }; } ++{ { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5 ++$as_echo "$as_me: error: in \`$ac_pwd':" >&2;} ++as_fn_error 77 "C compiler cannot create executables ++See \`config.log' for more details" "$LINENO" 5; } ++else ++ { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5 ++$as_echo "yes" >&6; } + fi +- ++{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for C compiler default output file name" >&5 ++$as_echo_n "checking for C compiler default output file name... " >&6; } ++{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_file" >&5 ++$as_echo "$ac_file" >&6; } + ac_exeext=$ac_cv_exeext + +-# Check that the compiler produces executables we can run. If not, either +-# the compiler is broken, or we cross compile. +-{ echo "$as_me:$LINENO: checking whether the C compiler works" >&5 +-echo $ECHO_N "checking whether the C compiler works... $ECHO_C" >&6; } +-# FIXME: These cross compiler hacks should be removed for Autoconf 3.0 +-# If not cross compiling, check that we can run a simple program. +-if test "$cross_compiling" != yes; then +- if { ac_try='./$ac_file' +- { (case "(($ac_try" in +- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; +- *) ac_try_echo=$ac_try;; +-esac +-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 +- (eval "$ac_try") 2>&5 +- ac_status=$? +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); }; }; then +- cross_compiling=no +- else +- if test "$cross_compiling" = maybe; then +- cross_compiling=yes +- else +- { { echo "$as_me:$LINENO: error: cannot run C compiled programs. +-If you meant to cross compile, use \`--host'. +-See \`config.log' for more details." >&5 +-echo "$as_me: error: cannot run C compiled programs. +-If you meant to cross compile, use \`--host'. +-See \`config.log' for more details." >&2;} +- { (exit 1); exit 1; }; } +- fi +- fi +-fi +-{ echo "$as_me:$LINENO: result: yes" >&5 +-echo "${ECHO_T}yes" >&6; } +- +-rm -f a.out a.exe conftest$ac_cv_exeext b.out ++rm -f -r a.out a.out.dSYM a.exe conftest$ac_cv_exeext b.out + ac_clean_files=$ac_clean_files_save +-# Check that the compiler produces executables we can run. If not, either +-# the compiler is broken, or we cross compile. +-{ echo "$as_me:$LINENO: checking whether we are cross compiling" >&5 +-echo $ECHO_N "checking whether we are cross compiling... $ECHO_C" >&6; } +-{ echo "$as_me:$LINENO: result: $cross_compiling" >&5 +-echo "${ECHO_T}$cross_compiling" >&6; } +- +-{ echo "$as_me:$LINENO: checking for suffix of executables" >&5 +-echo $ECHO_N "checking for suffix of executables... $ECHO_C" >&6; } +-if { (ac_try="$ac_link" ++{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for suffix of executables" >&5 ++$as_echo_n "checking for suffix of executables... " >&6; } ++if { { ac_try="$ac_link" + case "(($ac_try" in + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 ++eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\"" ++$as_echo "$ac_try_echo"; } >&5 + (eval "$ac_link") 2>&5 + ac_status=$? +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); }; then ++ $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 ++ test $ac_status = 0; }; then : + # If both `conftest.exe' and `conftest' are `present' (well, observable) + # catch `conftest.exe'. For instance with Cygwin, `ls conftest' will + # work properly (i.e., refer to `conftest.exe'), while it won't with +@@ -3581,37 +4533,90 @@ eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + for ac_file in conftest.exe conftest conftest.*; do + test -f "$ac_file" || continue + case $ac_file in +- *.$ac_ext | *.xcoff | *.tds | *.d | *.pdb | *.xSYM | *.bb | *.bbg | *.map | *.inf | *.o | *.obj ) ;; ++ *.$ac_ext | *.xcoff | *.tds | *.d | *.pdb | *.xSYM | *.bb | *.bbg | *.map | *.inf | *.dSYM | *.o | *.obj ) ;; + *.* ) ac_cv_exeext=`expr "$ac_file" : '[^.]*\(\..*\)'` + break;; + * ) break;; + esac + done + else +- { { echo "$as_me:$LINENO: error: cannot compute suffix of executables: cannot compile and link +-See \`config.log' for more details." >&5 +-echo "$as_me: error: cannot compute suffix of executables: cannot compile and link +-See \`config.log' for more details." >&2;} +- { (exit 1); exit 1; }; } ++ { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5 ++$as_echo "$as_me: error: in \`$ac_pwd':" >&2;} ++as_fn_error $? "cannot compute suffix of executables: cannot compile and link ++See \`config.log' for more details" "$LINENO" 5; } + fi +- +-rm -f conftest$ac_cv_exeext +-{ echo "$as_me:$LINENO: result: $ac_cv_exeext" >&5 +-echo "${ECHO_T}$ac_cv_exeext" >&6; } ++rm -f conftest conftest$ac_cv_exeext ++{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_exeext" >&5 ++$as_echo "$ac_cv_exeext" >&6; } + + rm -f conftest.$ac_ext + EXEEXT=$ac_cv_exeext + ac_exeext=$EXEEXT +-{ echo "$as_me:$LINENO: checking for suffix of object files" >&5 +-echo $ECHO_N "checking for suffix of object files... $ECHO_C" >&6; } +-if test "${ac_cv_objext+set}" = set; then +- echo $ECHO_N "(cached) $ECHO_C" >&6 +-else +- cat >conftest.$ac_ext <<_ACEOF +-/* confdefs.h. */ ++cat confdefs.h - <<_ACEOF >conftest.$ac_ext ++/* end confdefs.h. */ ++#include ++int ++main () ++{ ++FILE *f = fopen ("conftest.out", "w"); ++ return ferror (f) || fclose (f) != 0; ++ ++ ; ++ return 0; ++} + _ACEOF +-cat confdefs.h >>conftest.$ac_ext +-cat >>conftest.$ac_ext <<_ACEOF ++ac_clean_files="$ac_clean_files conftest.out" ++# Check that the compiler produces executables we can run. If not, either ++# the compiler is broken, or we cross compile. ++{ $as_echo "$as_me:${as_lineno-$LINENO}: checking whether we are cross compiling" >&5 ++$as_echo_n "checking whether we are cross compiling... " >&6; } ++if test "$cross_compiling" != yes; then ++ { { ac_try="$ac_link" ++case "(($ac_try" in ++ *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; ++ *) ac_try_echo=$ac_try;; ++esac ++eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\"" ++$as_echo "$ac_try_echo"; } >&5 ++ (eval "$ac_link") 2>&5 ++ ac_status=$? ++ $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 ++ test $ac_status = 0; } ++ if { ac_try='./conftest$ac_cv_exeext' ++ { { case "(($ac_try" in ++ *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; ++ *) ac_try_echo=$ac_try;; ++esac ++eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\"" ++$as_echo "$ac_try_echo"; } >&5 ++ (eval "$ac_try") 2>&5 ++ ac_status=$? ++ $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 ++ test $ac_status = 0; }; }; then ++ cross_compiling=no ++ else ++ if test "$cross_compiling" = maybe; then ++ cross_compiling=yes ++ else ++ { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5 ++$as_echo "$as_me: error: in \`$ac_pwd':" >&2;} ++as_fn_error $? "cannot run C compiled programs. ++If you meant to cross compile, use \`--host'. ++See \`config.log' for more details" "$LINENO" 5; } ++ fi ++ fi ++fi ++{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $cross_compiling" >&5 ++$as_echo "$cross_compiling" >&6; } ++ ++rm -f conftest.$ac_ext conftest$ac_cv_exeext conftest.out ++ac_clean_files=$ac_clean_files_save ++{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for suffix of object files" >&5 ++$as_echo_n "checking for suffix of object files... " >&6; } ++if ${ac_cv_objext+:} false; then : ++ $as_echo_n "(cached) " >&6 ++else ++ cat confdefs.h - <<_ACEOF >conftest.$ac_ext + /* end confdefs.h. */ + + int +@@ -3623,51 +4628,46 @@ main () + } + _ACEOF + rm -f conftest.o conftest.obj +-if { (ac_try="$ac_compile" ++if { { ac_try="$ac_compile" + case "(($ac_try" in + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 ++eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\"" ++$as_echo "$ac_try_echo"; } >&5 + (eval "$ac_compile") 2>&5 + ac_status=$? +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); }; then ++ $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 ++ test $ac_status = 0; }; then : + for ac_file in conftest.o conftest.obj conftest.*; do + test -f "$ac_file" || continue; + case $ac_file in +- *.$ac_ext | *.xcoff | *.tds | *.d | *.pdb | *.xSYM | *.bb | *.bbg | *.map | *.inf ) ;; ++ *.$ac_ext | *.xcoff | *.tds | *.d | *.pdb | *.xSYM | *.bb | *.bbg | *.map | *.inf | *.dSYM ) ;; + *) ac_cv_objext=`expr "$ac_file" : '.*\.\(.*\)'` + break;; + esac + done + else +- echo "$as_me: failed program was:" >&5 ++ $as_echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + +-{ { echo "$as_me:$LINENO: error: cannot compute suffix of object files: cannot compile +-See \`config.log' for more details." >&5 +-echo "$as_me: error: cannot compute suffix of object files: cannot compile +-See \`config.log' for more details." >&2;} +- { (exit 1); exit 1; }; } ++{ { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5 ++$as_echo "$as_me: error: in \`$ac_pwd':" >&2;} ++as_fn_error $? "cannot compute suffix of object files: cannot compile ++See \`config.log' for more details" "$LINENO" 5; } + fi +- + rm -f conftest.$ac_cv_objext conftest.$ac_ext + fi +-{ echo "$as_me:$LINENO: result: $ac_cv_objext" >&5 +-echo "${ECHO_T}$ac_cv_objext" >&6; } ++{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_objext" >&5 ++$as_echo "$ac_cv_objext" >&6; } + OBJEXT=$ac_cv_objext + ac_objext=$OBJEXT +-{ echo "$as_me:$LINENO: checking whether we are using the GNU C compiler" >&5 +-echo $ECHO_N "checking whether we are using the GNU C compiler... $ECHO_C" >&6; } +-if test "${ac_cv_c_compiler_gnu+set}" = set; then +- echo $ECHO_N "(cached) $ECHO_C" >&6 ++{ $as_echo "$as_me:${as_lineno-$LINENO}: checking whether we are using the GNU C compiler" >&5 ++$as_echo_n "checking whether we are using the GNU C compiler... " >&6; } ++if ${ac_cv_c_compiler_gnu+:} false; then : ++ $as_echo_n "(cached) " >&6 + else +- cat >conftest.$ac_ext <<_ACEOF +-/* confdefs.h. */ +-_ACEOF +-cat confdefs.h >>conftest.$ac_ext +-cat >>conftest.$ac_ext <<_ACEOF ++ cat confdefs.h - <<_ACEOF >conftest.$ac_ext + /* end confdefs.h. */ + + int +@@ -3681,54 +4681,34 @@ main () + return 0; + } + _ACEOF +-rm -f conftest.$ac_objext +-if { (ac_try="$ac_compile" +-case "(($ac_try" in +- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; +- *) ac_try_echo=$ac_try;; +-esac +-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 +- (eval "$ac_compile") 2>conftest.er1 +- ac_status=$? +- grep -v '^ *+' conftest.er1 >conftest.err +- rm -f conftest.er1 +- cat conftest.err >&5 +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); } && { +- test -z "$ac_c_werror_flag" || +- test ! -s conftest.err +- } && test -s conftest.$ac_objext; then ++if ac_fn_c_try_compile "$LINENO"; then : + ac_compiler_gnu=yes + else +- echo "$as_me: failed program was:" >&5 +-sed 's/^/| /' conftest.$ac_ext >&5 +- +- ac_compiler_gnu=no ++ ac_compiler_gnu=no + fi +- + rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext + ac_cv_c_compiler_gnu=$ac_compiler_gnu + + fi +-{ echo "$as_me:$LINENO: result: $ac_cv_c_compiler_gnu" >&5 +-echo "${ECHO_T}$ac_cv_c_compiler_gnu" >&6; } +-GCC=`test $ac_compiler_gnu = yes && echo yes` ++{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_c_compiler_gnu" >&5 ++$as_echo "$ac_cv_c_compiler_gnu" >&6; } ++if test $ac_compiler_gnu = yes; then ++ GCC=yes ++else ++ GCC= ++fi + ac_test_CFLAGS=${CFLAGS+set} + ac_save_CFLAGS=$CFLAGS +-{ echo "$as_me:$LINENO: checking whether $CC accepts -g" >&5 +-echo $ECHO_N "checking whether $CC accepts -g... $ECHO_C" >&6; } +-if test "${ac_cv_prog_cc_g+set}" = set; then +- echo $ECHO_N "(cached) $ECHO_C" >&6 ++{ $as_echo "$as_me:${as_lineno-$LINENO}: checking whether $CC accepts -g" >&5 ++$as_echo_n "checking whether $CC accepts -g... " >&6; } ++if ${ac_cv_prog_cc_g+:} false; then : ++ $as_echo_n "(cached) " >&6 + else + ac_save_c_werror_flag=$ac_c_werror_flag + ac_c_werror_flag=yes + ac_cv_prog_cc_g=no + CFLAGS="-g" +- cat >conftest.$ac_ext <<_ACEOF +-/* confdefs.h. */ +-_ACEOF +-cat confdefs.h >>conftest.$ac_ext +-cat >>conftest.$ac_ext <<_ACEOF ++ cat confdefs.h - <<_ACEOF >conftest.$ac_ext + /* end confdefs.h. */ + + int +@@ -3739,34 +4719,11 @@ main () + return 0; + } + _ACEOF +-rm -f conftest.$ac_objext +-if { (ac_try="$ac_compile" +-case "(($ac_try" in +- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; +- *) ac_try_echo=$ac_try;; +-esac +-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 +- (eval "$ac_compile") 2>conftest.er1 +- ac_status=$? +- grep -v '^ *+' conftest.er1 >conftest.err +- rm -f conftest.er1 +- cat conftest.err >&5 +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); } && { +- test -z "$ac_c_werror_flag" || +- test ! -s conftest.err +- } && test -s conftest.$ac_objext; then ++if ac_fn_c_try_compile "$LINENO"; then : + ac_cv_prog_cc_g=yes + else +- echo "$as_me: failed program was:" >&5 +-sed 's/^/| /' conftest.$ac_ext >&5 +- +- CFLAGS="" +- cat >conftest.$ac_ext <<_ACEOF +-/* confdefs.h. */ +-_ACEOF +-cat confdefs.h >>conftest.$ac_ext +-cat >>conftest.$ac_ext <<_ACEOF ++ CFLAGS="" ++ cat confdefs.h - <<_ACEOF >conftest.$ac_ext + /* end confdefs.h. */ + + int +@@ -3777,35 +4734,12 @@ main () + return 0; + } + _ACEOF +-rm -f conftest.$ac_objext +-if { (ac_try="$ac_compile" +-case "(($ac_try" in +- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; +- *) ac_try_echo=$ac_try;; +-esac +-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 +- (eval "$ac_compile") 2>conftest.er1 +- ac_status=$? +- grep -v '^ *+' conftest.er1 >conftest.err +- rm -f conftest.er1 +- cat conftest.err >&5 +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); } && { +- test -z "$ac_c_werror_flag" || +- test ! -s conftest.err +- } && test -s conftest.$ac_objext; then +- : +-else +- echo "$as_me: failed program was:" >&5 +-sed 's/^/| /' conftest.$ac_ext >&5 ++if ac_fn_c_try_compile "$LINENO"; then : + +- ac_c_werror_flag=$ac_save_c_werror_flag ++else ++ ac_c_werror_flag=$ac_save_c_werror_flag + CFLAGS="-g" +- cat >conftest.$ac_ext <<_ACEOF +-/* confdefs.h. */ +-_ACEOF +-cat confdefs.h >>conftest.$ac_ext +-cat >>conftest.$ac_ext <<_ACEOF ++ cat confdefs.h - <<_ACEOF >conftest.$ac_ext + /* end confdefs.h. */ + + int +@@ -3816,42 +4750,18 @@ main () + return 0; + } + _ACEOF +-rm -f conftest.$ac_objext +-if { (ac_try="$ac_compile" +-case "(($ac_try" in +- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; +- *) ac_try_echo=$ac_try;; +-esac +-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 +- (eval "$ac_compile") 2>conftest.er1 +- ac_status=$? +- grep -v '^ *+' conftest.er1 >conftest.err +- rm -f conftest.er1 +- cat conftest.err >&5 +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); } && { +- test -z "$ac_c_werror_flag" || +- test ! -s conftest.err +- } && test -s conftest.$ac_objext; then ++if ac_fn_c_try_compile "$LINENO"; then : + ac_cv_prog_cc_g=yes +-else +- echo "$as_me: failed program was:" >&5 +-sed 's/^/| /' conftest.$ac_ext >&5 +- +- + fi +- + rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext + fi +- + rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext + fi +- + rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext + ac_c_werror_flag=$ac_save_c_werror_flag + fi +-{ echo "$as_me:$LINENO: result: $ac_cv_prog_cc_g" >&5 +-echo "${ECHO_T}$ac_cv_prog_cc_g" >&6; } ++{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_prog_cc_g" >&5 ++$as_echo "$ac_cv_prog_cc_g" >&6; } + if test "$ac_test_CFLAGS" = set; then + CFLAGS=$ac_save_CFLAGS + elif test $ac_cv_prog_cc_g = yes; then +@@ -3867,23 +4777,18 @@ else + CFLAGS= + fi + fi +-{ echo "$as_me:$LINENO: checking for $CC option to accept ISO C89" >&5 +-echo $ECHO_N "checking for $CC option to accept ISO C89... $ECHO_C" >&6; } +-if test "${ac_cv_prog_cc_c89+set}" = set; then +- echo $ECHO_N "(cached) $ECHO_C" >&6 ++{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $CC option to accept ISO C89" >&5 ++$as_echo_n "checking for $CC option to accept ISO C89... " >&6; } ++if ${ac_cv_prog_cc_c89+:} false; then : ++ $as_echo_n "(cached) " >&6 + else + ac_cv_prog_cc_c89=no + ac_save_CC=$CC +-cat >conftest.$ac_ext <<_ACEOF +-/* confdefs.h. */ +-_ACEOF +-cat confdefs.h >>conftest.$ac_ext +-cat >>conftest.$ac_ext <<_ACEOF ++cat confdefs.h - <<_ACEOF >conftest.$ac_ext + /* end confdefs.h. */ + #include + #include +-#include +-#include ++struct stat; + /* Most of the following tests are stolen from RCS 5.7's src/conf.sh. */ + struct buf { int x; }; + FILE * (*rcsopen) (struct buf *, struct stat *, int); +@@ -3935,31 +4840,9 @@ for ac_arg in '' -qlanglvl=extc89 -qlanglvl=ansi -std \ + -Ae "-Aa -D_HPUX_SOURCE" "-Xc -D__EXTENSIONS__" + do + CC="$ac_save_CC $ac_arg" +- rm -f conftest.$ac_objext +-if { (ac_try="$ac_compile" +-case "(($ac_try" in +- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; +- *) ac_try_echo=$ac_try;; +-esac +-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 +- (eval "$ac_compile") 2>conftest.er1 +- ac_status=$? +- grep -v '^ *+' conftest.er1 >conftest.err +- rm -f conftest.er1 +- cat conftest.err >&5 +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); } && { +- test -z "$ac_c_werror_flag" || +- test ! -s conftest.err +- } && test -s conftest.$ac_objext; then ++ if ac_fn_c_try_compile "$LINENO"; then : + ac_cv_prog_cc_c89=$ac_arg +-else +- echo "$as_me: failed program was:" >&5 +-sed 's/^/| /' conftest.$ac_ext >&5 +- +- + fi +- + rm -f core conftest.err conftest.$ac_objext + test "x$ac_cv_prog_cc_c89" != "xno" && break + done +@@ -3970,17 +4853,19 @@ fi + # AC_CACHE_VAL + case "x$ac_cv_prog_cc_c89" in + x) +- { echo "$as_me:$LINENO: result: none needed" >&5 +-echo "${ECHO_T}none needed" >&6; } ;; ++ { $as_echo "$as_me:${as_lineno-$LINENO}: result: none needed" >&5 ++$as_echo "none needed" >&6; } ;; + xno) +- { echo "$as_me:$LINENO: result: unsupported" >&5 +-echo "${ECHO_T}unsupported" >&6; } ;; ++ { $as_echo "$as_me:${as_lineno-$LINENO}: result: unsupported" >&5 ++$as_echo "unsupported" >&6; } ;; + *) + CC="$CC $ac_cv_prog_cc_c89" +- { echo "$as_me:$LINENO: result: $ac_cv_prog_cc_c89" >&5 +-echo "${ECHO_T}$ac_cv_prog_cc_c89" >&6; } ;; ++ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_prog_cc_c89" >&5 ++$as_echo "$ac_cv_prog_cc_c89" >&6; } ;; + esac ++if test "x$ac_cv_prog_cc_c89" != xno; then : + ++fi + + ac_ext=c + ac_cpp='$CPP $CPPFLAGS' +@@ -3999,8 +4884,8 @@ am__doit: + .PHONY: am__doit + END + # If we don't find an include directive, just comment out the code. +-{ echo "$as_me:$LINENO: checking for style of include used by $am_make" >&5 +-echo $ECHO_N "checking for style of include used by $am_make... $ECHO_C" >&6; } ++{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for style of include used by $am_make" >&5 ++$as_echo_n "checking for style of include used by $am_make... " >&6; } + am__include="#" + am__quote= + _am_result=none +@@ -4027,12 +4912,12 @@ if test "$am__include" = "#"; then + fi + + +-{ echo "$as_me:$LINENO: result: $_am_result" >&5 +-echo "${ECHO_T}$_am_result" >&6; } ++{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $_am_result" >&5 ++$as_echo "$_am_result" >&6; } + rm -f confinc confmf + + # Check whether --enable-dependency-tracking was given. +-if test "${enable_dependency_tracking+set}" = set; then ++if test "${enable_dependency_tracking+set}" = set; then : + enableval=$enable_dependency_tracking; + fi + +@@ -4055,10 +4940,10 @@ fi + + depcc="$CC" am_compiler_list= + +-{ echo "$as_me:$LINENO: checking dependency style of $depcc" >&5 +-echo $ECHO_N "checking dependency style of $depcc... $ECHO_C" >&6; } +-if test "${am_cv_CC_dependencies_compiler_type+set}" = set; then +- echo $ECHO_N "(cached) $ECHO_C" >&6 ++{ $as_echo "$as_me:${as_lineno-$LINENO}: checking dependency style of $depcc" >&5 ++$as_echo_n "checking dependency style of $depcc... " >&6; } ++if ${am_cv_CC_dependencies_compiler_type+:} false; then : ++ $as_echo_n "(cached) " >&6 + else + if test -z "$AMDEP_TRUE" && test -f "$am_depcomp"; then + # We make a subdir and do the tests there. Otherwise we can end up +@@ -4145,8 +5030,8 @@ else + fi + + fi +-{ echo "$as_me:$LINENO: result: $am_cv_CC_dependencies_compiler_type" >&5 +-echo "${ECHO_T}$am_cv_CC_dependencies_compiler_type" >&6; } ++{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $am_cv_CC_dependencies_compiler_type" >&5 ++$as_echo "$am_cv_CC_dependencies_compiler_type" >&6; } + CCDEPMODE=depmode=$am_cv_CC_dependencies_compiler_type + + +@@ -4163,22 +5048,18 @@ fi + + + if test "x$CC" != xcc; then +- { echo "$as_me:$LINENO: checking whether $CC and cc understand -c and -o together" >&5 +-echo $ECHO_N "checking whether $CC and cc understand -c and -o together... $ECHO_C" >&6; } ++ { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether $CC and cc understand -c and -o together" >&5 ++$as_echo_n "checking whether $CC and cc understand -c and -o together... " >&6; } + else +- { echo "$as_me:$LINENO: checking whether cc understands -c and -o together" >&5 +-echo $ECHO_N "checking whether cc understands -c and -o together... $ECHO_C" >&6; } ++ { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether cc understands -c and -o together" >&5 ++$as_echo_n "checking whether cc understands -c and -o together... " >&6; } + fi +-set dummy $CC; ac_cc=`echo $2 | ++set dummy $CC; ac_cc=`$as_echo "$2" | + sed 's/[^a-zA-Z0-9_]/_/g;s/^[0-9]/_/'` +-if { as_var=ac_cv_prog_cc_${ac_cc}_c_o; eval "test \"\${$as_var+set}\" = set"; }; then +- echo $ECHO_N "(cached) $ECHO_C" >&6 ++if eval \${ac_cv_prog_cc_${ac_cc}_c_o+:} false; then : ++ $as_echo_n "(cached) " >&6 + else +- cat >conftest.$ac_ext <<_ACEOF +-/* confdefs.h. */ +-_ACEOF +-cat confdefs.h >>conftest.$ac_ext +-cat >>conftest.$ac_ext <<_ACEOF ++ cat confdefs.h - <<_ACEOF >conftest.$ac_ext + /* end confdefs.h. */ + + int +@@ -4194,58 +5075,63 @@ _ACEOF + # existing .o file with -o, though they will create one. + ac_try='$CC -c conftest.$ac_ext -o conftest2.$ac_objext >&5' + rm -f conftest2.* +-if { (case "(($ac_try" in ++if { { case "(($ac_try" in + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 ++eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\"" ++$as_echo "$ac_try_echo"; } >&5 + (eval "$ac_try") 2>&5 + ac_status=$? +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); } && +- test -f conftest2.$ac_objext && { (case "(($ac_try" in ++ $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 ++ test $ac_status = 0; } && ++ test -f conftest2.$ac_objext && { { case "(($ac_try" in + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 ++eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\"" ++$as_echo "$ac_try_echo"; } >&5 + (eval "$ac_try") 2>&5 + ac_status=$? +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); }; ++ $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 ++ test $ac_status = 0; }; + then + eval ac_cv_prog_cc_${ac_cc}_c_o=yes + if test "x$CC" != xcc; then + # Test first that cc exists at all. + if { ac_try='cc -c conftest.$ac_ext >&5' +- { (case "(($ac_try" in ++ { { case "(($ac_try" in + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 ++eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\"" ++$as_echo "$ac_try_echo"; } >&5 + (eval "$ac_try") 2>&5 + ac_status=$? +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); }; }; then ++ $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 ++ test $ac_status = 0; }; }; then + ac_try='cc -c conftest.$ac_ext -o conftest2.$ac_objext >&5' + rm -f conftest2.* +- if { (case "(($ac_try" in ++ if { { case "(($ac_try" in + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 ++eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\"" ++$as_echo "$ac_try_echo"; } >&5 + (eval "$ac_try") 2>&5 + ac_status=$? +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); } && +- test -f conftest2.$ac_objext && { (case "(($ac_try" in ++ $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 ++ test $ac_status = 0; } && ++ test -f conftest2.$ac_objext && { { case "(($ac_try" in + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 ++eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\"" ++$as_echo "$ac_try_echo"; } >&5 + (eval "$ac_try") 2>&5 + ac_status=$? +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); }; ++ $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 ++ test $ac_status = 0; }; + then + # cc works too. + : +@@ -4262,15 +5148,13 @@ rm -f core conftest* + + fi + if eval test \$ac_cv_prog_cc_${ac_cc}_c_o = yes; then +- { echo "$as_me:$LINENO: result: yes" >&5 +-echo "${ECHO_T}yes" >&6; } ++ { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5 ++$as_echo "yes" >&6; } + else +- { echo "$as_me:$LINENO: result: no" >&5 +-echo "${ECHO_T}no" >&6; } ++ { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 ++$as_echo "no" >&6; } + +-cat >>confdefs.h <<\_ACEOF +-#define NO_MINUS_C_MINUS_O 1 +-_ACEOF ++$as_echo "#define NO_MINUS_C_MINUS_O 1" >>confdefs.h + + fi + +@@ -4292,15 +5176,15 @@ ac_cpp='$CPP $CPPFLAGS' + ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' + ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' + ac_compiler_gnu=$ac_cv_c_compiler_gnu +-{ echo "$as_me:$LINENO: checking how to run the C preprocessor" >&5 +-echo $ECHO_N "checking how to run the C preprocessor... $ECHO_C" >&6; } ++{ $as_echo "$as_me:${as_lineno-$LINENO}: checking how to run the C preprocessor" >&5 ++$as_echo_n "checking how to run the C preprocessor... " >&6; } + # On Suns, sometimes $CPP names a directory. + if test -n "$CPP" && test -d "$CPP"; then + CPP= + fi + if test -z "$CPP"; then +- if test "${ac_cv_prog_CPP+set}" = set; then +- echo $ECHO_N "(cached) $ECHO_C" >&6 ++ if ${ac_cv_prog_CPP+:} false; then : ++ $as_echo_n "(cached) " >&6 + else + # Double quotes because CPP needs to be expanded + for CPP in "$CC -E" "$CC -E -traditional-cpp" "/lib/cpp" +@@ -4314,11 +5198,7 @@ do + # exists even on freestanding compilers. + # On the NeXT, cc -E runs the code through the compiler's parser, + # not just through cpp. "Syntax error" is here to catch this case. +- cat >conftest.$ac_ext <<_ACEOF +-/* confdefs.h. */ +-_ACEOF +-cat confdefs.h >>conftest.$ac_ext +-cat >>conftest.$ac_ext <<_ACEOF ++ cat confdefs.h - <<_ACEOF >conftest.$ac_ext + /* end confdefs.h. */ + #ifdef __STDC__ + # include +@@ -4327,76 +5207,34 @@ cat >>conftest.$ac_ext <<_ACEOF + #endif + Syntax error + _ACEOF +-if { (ac_try="$ac_cpp conftest.$ac_ext" +-case "(($ac_try" in +- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; +- *) ac_try_echo=$ac_try;; +-esac +-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 +- (eval "$ac_cpp conftest.$ac_ext") 2>conftest.er1 +- ac_status=$? +- grep -v '^ *+' conftest.er1 >conftest.err +- rm -f conftest.er1 +- cat conftest.err >&5 +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); } >/dev/null && { +- test -z "$ac_c_preproc_warn_flag$ac_c_werror_flag" || +- test ! -s conftest.err +- }; then +- : +-else +- echo "$as_me: failed program was:" >&5 +-sed 's/^/| /' conftest.$ac_ext >&5 ++if ac_fn_c_try_cpp "$LINENO"; then : + ++else + # Broken: fails on valid input. + continue + fi +- +-rm -f conftest.err conftest.$ac_ext ++rm -f conftest.err conftest.i conftest.$ac_ext + + # OK, works on sane cases. Now check whether nonexistent headers + # can be detected and how. +- cat >conftest.$ac_ext <<_ACEOF +-/* confdefs.h. */ +-_ACEOF +-cat confdefs.h >>conftest.$ac_ext +-cat >>conftest.$ac_ext <<_ACEOF ++ cat confdefs.h - <<_ACEOF >conftest.$ac_ext + /* end confdefs.h. */ + #include + _ACEOF +-if { (ac_try="$ac_cpp conftest.$ac_ext" +-case "(($ac_try" in +- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; +- *) ac_try_echo=$ac_try;; +-esac +-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 +- (eval "$ac_cpp conftest.$ac_ext") 2>conftest.er1 +- ac_status=$? +- grep -v '^ *+' conftest.er1 >conftest.err +- rm -f conftest.er1 +- cat conftest.err >&5 +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); } >/dev/null && { +- test -z "$ac_c_preproc_warn_flag$ac_c_werror_flag" || +- test ! -s conftest.err +- }; then ++if ac_fn_c_try_cpp "$LINENO"; then : + # Broken: success on invalid input. + continue + else +- echo "$as_me: failed program was:" >&5 +-sed 's/^/| /' conftest.$ac_ext >&5 +- + # Passes both tests. + ac_preproc_ok=: + break + fi +- +-rm -f conftest.err conftest.$ac_ext ++rm -f conftest.err conftest.i conftest.$ac_ext + + done + # Because of `break', _AC_PREPROC_IFELSE's cleaning code was skipped. +-rm -f conftest.err conftest.$ac_ext +-if $ac_preproc_ok; then ++rm -f conftest.i conftest.err conftest.$ac_ext ++if $ac_preproc_ok; then : + break + fi + +@@ -4408,8 +5246,8 @@ fi + else + ac_cv_prog_CPP=$CPP + fi +-{ echo "$as_me:$LINENO: result: $CPP" >&5 +-echo "${ECHO_T}$CPP" >&6; } ++{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $CPP" >&5 ++$as_echo "$CPP" >&6; } + ac_preproc_ok=false + for ac_c_preproc_warn_flag in '' yes + do +@@ -4419,11 +5257,7 @@ do + # exists even on freestanding compilers. + # On the NeXT, cc -E runs the code through the compiler's parser, + # not just through cpp. "Syntax error" is here to catch this case. +- cat >conftest.$ac_ext <<_ACEOF +-/* confdefs.h. */ +-_ACEOF +-cat confdefs.h >>conftest.$ac_ext +-cat >>conftest.$ac_ext <<_ACEOF ++ cat confdefs.h - <<_ACEOF >conftest.$ac_ext + /* end confdefs.h. */ + #ifdef __STDC__ + # include +@@ -4432,83 +5266,40 @@ cat >>conftest.$ac_ext <<_ACEOF + #endif + Syntax error + _ACEOF +-if { (ac_try="$ac_cpp conftest.$ac_ext" +-case "(($ac_try" in +- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; +- *) ac_try_echo=$ac_try;; +-esac +-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 +- (eval "$ac_cpp conftest.$ac_ext") 2>conftest.er1 +- ac_status=$? +- grep -v '^ *+' conftest.er1 >conftest.err +- rm -f conftest.er1 +- cat conftest.err >&5 +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); } >/dev/null && { +- test -z "$ac_c_preproc_warn_flag$ac_c_werror_flag" || +- test ! -s conftest.err +- }; then +- : +-else +- echo "$as_me: failed program was:" >&5 +-sed 's/^/| /' conftest.$ac_ext >&5 ++if ac_fn_c_try_cpp "$LINENO"; then : + ++else + # Broken: fails on valid input. + continue + fi +- +-rm -f conftest.err conftest.$ac_ext ++rm -f conftest.err conftest.i conftest.$ac_ext + + # OK, works on sane cases. Now check whether nonexistent headers + # can be detected and how. +- cat >conftest.$ac_ext <<_ACEOF +-/* confdefs.h. */ +-_ACEOF +-cat confdefs.h >>conftest.$ac_ext +-cat >>conftest.$ac_ext <<_ACEOF ++ cat confdefs.h - <<_ACEOF >conftest.$ac_ext + /* end confdefs.h. */ + #include + _ACEOF +-if { (ac_try="$ac_cpp conftest.$ac_ext" +-case "(($ac_try" in +- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; +- *) ac_try_echo=$ac_try;; +-esac +-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 +- (eval "$ac_cpp conftest.$ac_ext") 2>conftest.er1 +- ac_status=$? +- grep -v '^ *+' conftest.er1 >conftest.err +- rm -f conftest.er1 +- cat conftest.err >&5 +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); } >/dev/null && { +- test -z "$ac_c_preproc_warn_flag$ac_c_werror_flag" || +- test ! -s conftest.err +- }; then ++if ac_fn_c_try_cpp "$LINENO"; then : + # Broken: success on invalid input. + continue + else +- echo "$as_me: failed program was:" >&5 +-sed 's/^/| /' conftest.$ac_ext >&5 +- + # Passes both tests. + ac_preproc_ok=: + break + fi +- +-rm -f conftest.err conftest.$ac_ext ++rm -f conftest.err conftest.i conftest.$ac_ext + + done + # Because of `break', _AC_PREPROC_IFELSE's cleaning code was skipped. +-rm -f conftest.err conftest.$ac_ext +-if $ac_preproc_ok; then +- : ++rm -f conftest.i conftest.err conftest.$ac_ext ++if $ac_preproc_ok; then : ++ + else +- { { echo "$as_me:$LINENO: error: C preprocessor \"$CPP\" fails sanity check +-See \`config.log' for more details." >&5 +-echo "$as_me: error: C preprocessor \"$CPP\" fails sanity check +-See \`config.log' for more details." >&2;} +- { (exit 1); exit 1; }; } ++ { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5 ++$as_echo "$as_me: error: in \`$ac_pwd':" >&2;} ++as_fn_error $? "C preprocessor \"$CPP\" fails sanity check ++See \`config.log' for more details" "$LINENO" 5; } + fi + + ac_ext=c +@@ -4531,10 +5322,10 @@ if test -z "$CXX"; then + do + # Extract the first word of "$ac_tool_prefix$ac_prog", so it can be a program name with args. + set dummy $ac_tool_prefix$ac_prog; ac_word=$2 +-{ echo "$as_me:$LINENO: checking for $ac_word" >&5 +-echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6; } +-if test "${ac_cv_prog_CXX+set}" = set; then +- echo $ECHO_N "(cached) $ECHO_C" >&6 ++{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 ++$as_echo_n "checking for $ac_word... " >&6; } ++if ${ac_cv_prog_CXX+:} false; then : ++ $as_echo_n "(cached) " >&6 + else + if test -n "$CXX"; then + ac_cv_prog_CXX="$CXX" # Let the user override the test. +@@ -4544,25 +5335,25 @@ for as_dir in $PATH + do + IFS=$as_save_IFS + test -z "$as_dir" && as_dir=. +- for ac_exec_ext in '' $ac_executable_extensions; do +- if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then ++ for ac_exec_ext in '' $ac_executable_extensions; do ++ if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then + ac_cv_prog_CXX="$ac_tool_prefix$ac_prog" +- echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 ++ $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 + break 2 + fi + done +-done ++ done + IFS=$as_save_IFS + + fi + fi + CXX=$ac_cv_prog_CXX + if test -n "$CXX"; then +- { echo "$as_me:$LINENO: result: $CXX" >&5 +-echo "${ECHO_T}$CXX" >&6; } ++ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $CXX" >&5 ++$as_echo "$CXX" >&6; } + else +- { echo "$as_me:$LINENO: result: no" >&5 +-echo "${ECHO_T}no" >&6; } ++ { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 ++$as_echo "no" >&6; } + fi + + +@@ -4575,10 +5366,10 @@ if test -z "$CXX"; then + do + # Extract the first word of "$ac_prog", so it can be a program name with args. + set dummy $ac_prog; ac_word=$2 +-{ echo "$as_me:$LINENO: checking for $ac_word" >&5 +-echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6; } +-if test "${ac_cv_prog_ac_ct_CXX+set}" = set; then +- echo $ECHO_N "(cached) $ECHO_C" >&6 ++{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 ++$as_echo_n "checking for $ac_word... " >&6; } ++if ${ac_cv_prog_ac_ct_CXX+:} false; then : ++ $as_echo_n "(cached) " >&6 + else + if test -n "$ac_ct_CXX"; then + ac_cv_prog_ac_ct_CXX="$ac_ct_CXX" # Let the user override the test. +@@ -4588,25 +5379,25 @@ for as_dir in $PATH + do + IFS=$as_save_IFS + test -z "$as_dir" && as_dir=. +- for ac_exec_ext in '' $ac_executable_extensions; do +- if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then ++ for ac_exec_ext in '' $ac_executable_extensions; do ++ if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then + ac_cv_prog_ac_ct_CXX="$ac_prog" +- echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 ++ $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 + break 2 + fi + done +-done ++ done + IFS=$as_save_IFS + + fi + fi + ac_ct_CXX=$ac_cv_prog_ac_ct_CXX + if test -n "$ac_ct_CXX"; then +- { echo "$as_me:$LINENO: result: $ac_ct_CXX" >&5 +-echo "${ECHO_T}$ac_ct_CXX" >&6; } ++ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_ct_CXX" >&5 ++$as_echo "$ac_ct_CXX" >&6; } + else +- { echo "$as_me:$LINENO: result: no" >&5 +-echo "${ECHO_T}no" >&6; } ++ { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 ++$as_echo "no" >&6; } + fi + + +@@ -4618,12 +5409,8 @@ done + else + case $cross_compiling:$ac_tool_warned in + yes:) +-{ echo "$as_me:$LINENO: WARNING: In the future, Autoconf will not detect cross-tools +-whose name does not start with the host triplet. If you think this +-configuration is useful to you, please write to autoconf@gnu.org." >&5 +-echo "$as_me: WARNING: In the future, Autoconf will not detect cross-tools +-whose name does not start with the host triplet. If you think this +-configuration is useful to you, please write to autoconf@gnu.org." >&2;} ++{ $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet" >&5 ++$as_echo "$as_me: WARNING: using cross tools not prefixed with host triplet" >&2;} + ac_tool_warned=yes ;; + esac + CXX=$ac_ct_CXX +@@ -4633,49 +5420,36 @@ fi + fi + fi + # Provide some information about the compiler. +-echo "$as_me:$LINENO: checking for C++ compiler version" >&5 +-ac_compiler=`set X $ac_compile; echo $2` +-{ (ac_try="$ac_compiler --version >&5" +-case "(($ac_try" in +- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; +- *) ac_try_echo=$ac_try;; +-esac +-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 +- (eval "$ac_compiler --version >&5") 2>&5 +- ac_status=$? +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); } +-{ (ac_try="$ac_compiler -v >&5" +-case "(($ac_try" in +- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; +- *) ac_try_echo=$ac_try;; +-esac +-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 +- (eval "$ac_compiler -v >&5") 2>&5 +- ac_status=$? +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); } +-{ (ac_try="$ac_compiler -V >&5" ++$as_echo "$as_me:${as_lineno-$LINENO}: checking for C++ compiler version" >&5 ++set X $ac_compile ++ac_compiler=$2 ++for ac_option in --version -v -V -qversion; do ++ { { ac_try="$ac_compiler $ac_option >&5" + case "(($ac_try" in + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 +- (eval "$ac_compiler -V >&5") 2>&5 ++eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\"" ++$as_echo "$ac_try_echo"; } >&5 ++ (eval "$ac_compiler $ac_option >&5") 2>conftest.err + ac_status=$? +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); } ++ if test -s conftest.err; then ++ sed '10a\ ++... rest of stderr output deleted ... ++ 10q' conftest.err >conftest.er1 ++ cat conftest.er1 >&5 ++ fi ++ rm -f conftest.er1 conftest.err ++ $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 ++ test $ac_status = 0; } ++done + +-{ echo "$as_me:$LINENO: checking whether we are using the GNU C++ compiler" >&5 +-echo $ECHO_N "checking whether we are using the GNU C++ compiler... $ECHO_C" >&6; } +-if test "${ac_cv_cxx_compiler_gnu+set}" = set; then +- echo $ECHO_N "(cached) $ECHO_C" >&6 ++{ $as_echo "$as_me:${as_lineno-$LINENO}: checking whether we are using the GNU C++ compiler" >&5 ++$as_echo_n "checking whether we are using the GNU C++ compiler... " >&6; } ++if ${ac_cv_cxx_compiler_gnu+:} false; then : ++ $as_echo_n "(cached) " >&6 + else +- cat >conftest.$ac_ext <<_ACEOF +-/* confdefs.h. */ +-_ACEOF +-cat confdefs.h >>conftest.$ac_ext +-cat >>conftest.$ac_ext <<_ACEOF ++ cat confdefs.h - <<_ACEOF >conftest.$ac_ext + /* end confdefs.h. */ + + int +@@ -4689,54 +5463,34 @@ main () + return 0; + } + _ACEOF +-rm -f conftest.$ac_objext +-if { (ac_try="$ac_compile" +-case "(($ac_try" in +- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; +- *) ac_try_echo=$ac_try;; +-esac +-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 +- (eval "$ac_compile") 2>conftest.er1 +- ac_status=$? +- grep -v '^ *+' conftest.er1 >conftest.err +- rm -f conftest.er1 +- cat conftest.err >&5 +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); } && { +- test -z "$ac_cxx_werror_flag" || +- test ! -s conftest.err +- } && test -s conftest.$ac_objext; then ++if ac_fn_cxx_try_compile "$LINENO"; then : + ac_compiler_gnu=yes + else +- echo "$as_me: failed program was:" >&5 +-sed 's/^/| /' conftest.$ac_ext >&5 +- +- ac_compiler_gnu=no ++ ac_compiler_gnu=no + fi +- + rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext + ac_cv_cxx_compiler_gnu=$ac_compiler_gnu + + fi +-{ echo "$as_me:$LINENO: result: $ac_cv_cxx_compiler_gnu" >&5 +-echo "${ECHO_T}$ac_cv_cxx_compiler_gnu" >&6; } +-GXX=`test $ac_compiler_gnu = yes && echo yes` ++{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_cxx_compiler_gnu" >&5 ++$as_echo "$ac_cv_cxx_compiler_gnu" >&6; } ++if test $ac_compiler_gnu = yes; then ++ GXX=yes ++else ++ GXX= ++fi + ac_test_CXXFLAGS=${CXXFLAGS+set} + ac_save_CXXFLAGS=$CXXFLAGS +-{ echo "$as_me:$LINENO: checking whether $CXX accepts -g" >&5 +-echo $ECHO_N "checking whether $CXX accepts -g... $ECHO_C" >&6; } +-if test "${ac_cv_prog_cxx_g+set}" = set; then +- echo $ECHO_N "(cached) $ECHO_C" >&6 ++{ $as_echo "$as_me:${as_lineno-$LINENO}: checking whether $CXX accepts -g" >&5 ++$as_echo_n "checking whether $CXX accepts -g... " >&6; } ++if ${ac_cv_prog_cxx_g+:} false; then : ++ $as_echo_n "(cached) " >&6 + else + ac_save_cxx_werror_flag=$ac_cxx_werror_flag + ac_cxx_werror_flag=yes + ac_cv_prog_cxx_g=no + CXXFLAGS="-g" +- cat >conftest.$ac_ext <<_ACEOF +-/* confdefs.h. */ +-_ACEOF +-cat confdefs.h >>conftest.$ac_ext +-cat >>conftest.$ac_ext <<_ACEOF ++ cat confdefs.h - <<_ACEOF >conftest.$ac_ext + /* end confdefs.h. */ + + int +@@ -4747,34 +5501,11 @@ main () + return 0; + } + _ACEOF +-rm -f conftest.$ac_objext +-if { (ac_try="$ac_compile" +-case "(($ac_try" in +- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; +- *) ac_try_echo=$ac_try;; +-esac +-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 +- (eval "$ac_compile") 2>conftest.er1 +- ac_status=$? +- grep -v '^ *+' conftest.er1 >conftest.err +- rm -f conftest.er1 +- cat conftest.err >&5 +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); } && { +- test -z "$ac_cxx_werror_flag" || +- test ! -s conftest.err +- } && test -s conftest.$ac_objext; then ++if ac_fn_cxx_try_compile "$LINENO"; then : + ac_cv_prog_cxx_g=yes + else +- echo "$as_me: failed program was:" >&5 +-sed 's/^/| /' conftest.$ac_ext >&5 +- +- CXXFLAGS="" +- cat >conftest.$ac_ext <<_ACEOF +-/* confdefs.h. */ +-_ACEOF +-cat confdefs.h >>conftest.$ac_ext +-cat >>conftest.$ac_ext <<_ACEOF ++ CXXFLAGS="" ++ cat confdefs.h - <<_ACEOF >conftest.$ac_ext + /* end confdefs.h. */ + + int +@@ -4785,35 +5516,12 @@ main () + return 0; + } + _ACEOF +-rm -f conftest.$ac_objext +-if { (ac_try="$ac_compile" +-case "(($ac_try" in +- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; +- *) ac_try_echo=$ac_try;; +-esac +-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 +- (eval "$ac_compile") 2>conftest.er1 +- ac_status=$? +- grep -v '^ *+' conftest.er1 >conftest.err +- rm -f conftest.er1 +- cat conftest.err >&5 +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); } && { +- test -z "$ac_cxx_werror_flag" || +- test ! -s conftest.err +- } && test -s conftest.$ac_objext; then +- : +-else +- echo "$as_me: failed program was:" >&5 +-sed 's/^/| /' conftest.$ac_ext >&5 ++if ac_fn_cxx_try_compile "$LINENO"; then : + +- ac_cxx_werror_flag=$ac_save_cxx_werror_flag ++else ++ ac_cxx_werror_flag=$ac_save_cxx_werror_flag + CXXFLAGS="-g" +- cat >conftest.$ac_ext <<_ACEOF +-/* confdefs.h. */ +-_ACEOF +-cat confdefs.h >>conftest.$ac_ext +-cat >>conftest.$ac_ext <<_ACEOF ++ cat confdefs.h - <<_ACEOF >conftest.$ac_ext + /* end confdefs.h. */ + + int +@@ -4824,42 +5532,18 @@ main () + return 0; + } + _ACEOF +-rm -f conftest.$ac_objext +-if { (ac_try="$ac_compile" +-case "(($ac_try" in +- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; +- *) ac_try_echo=$ac_try;; +-esac +-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 +- (eval "$ac_compile") 2>conftest.er1 +- ac_status=$? +- grep -v '^ *+' conftest.er1 >conftest.err +- rm -f conftest.er1 +- cat conftest.err >&5 +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); } && { +- test -z "$ac_cxx_werror_flag" || +- test ! -s conftest.err +- } && test -s conftest.$ac_objext; then ++if ac_fn_cxx_try_compile "$LINENO"; then : + ac_cv_prog_cxx_g=yes +-else +- echo "$as_me: failed program was:" >&5 +-sed 's/^/| /' conftest.$ac_ext >&5 +- +- + fi +- + rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext + fi +- + rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext + fi +- + rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext + ac_cxx_werror_flag=$ac_save_cxx_werror_flag + fi +-{ echo "$as_me:$LINENO: result: $ac_cv_prog_cxx_g" >&5 +-echo "${ECHO_T}$ac_cv_prog_cxx_g" >&6; } ++{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_prog_cxx_g" >&5 ++$as_echo "$ac_cv_prog_cxx_g" >&6; } + if test "$ac_test_CXXFLAGS" = set; then + CXXFLAGS=$ac_save_CXXFLAGS + elif test $ac_cv_prog_cxx_g = yes; then +@@ -4883,10 +5567,10 @@ ac_compiler_gnu=$ac_cv_c_compiler_gnu + + depcc="$CXX" am_compiler_list= + +-{ echo "$as_me:$LINENO: checking dependency style of $depcc" >&5 +-echo $ECHO_N "checking dependency style of $depcc... $ECHO_C" >&6; } +-if test "${am_cv_CXX_dependencies_compiler_type+set}" = set; then +- echo $ECHO_N "(cached) $ECHO_C" >&6 ++{ $as_echo "$as_me:${as_lineno-$LINENO}: checking dependency style of $depcc" >&5 ++$as_echo_n "checking dependency style of $depcc... " >&6; } ++if ${am_cv_CXX_dependencies_compiler_type+:} false; then : ++ $as_echo_n "(cached) " >&6 + else + if test -z "$AMDEP_TRUE" && test -f "$am_depcomp"; then + # We make a subdir and do the tests there. Otherwise we can end up +@@ -4973,8 +5657,8 @@ else + fi + + fi +-{ echo "$as_me:$LINENO: result: $am_cv_CXX_dependencies_compiler_type" >&5 +-echo "${ECHO_T}$am_cv_CXX_dependencies_compiler_type" >&6; } ++{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $am_cv_CXX_dependencies_compiler_type" >&5 ++$as_echo "$am_cv_CXX_dependencies_compiler_type" >&6; } + CXXDEPMODE=depmode=$am_cv_CXX_dependencies_compiler_type + + +@@ -4997,11 +5681,11 @@ ac_cpp='$CXXCPP $CPPFLAGS' + ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' + ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' + ac_compiler_gnu=$ac_cv_cxx_compiler_gnu +-{ echo "$as_me:$LINENO: checking how to run the C++ preprocessor" >&5 +-echo $ECHO_N "checking how to run the C++ preprocessor... $ECHO_C" >&6; } ++{ $as_echo "$as_me:${as_lineno-$LINENO}: checking how to run the C++ preprocessor" >&5 ++$as_echo_n "checking how to run the C++ preprocessor... " >&6; } + if test -z "$CXXCPP"; then +- if test "${ac_cv_prog_CXXCPP+set}" = set; then +- echo $ECHO_N "(cached) $ECHO_C" >&6 ++ if ${ac_cv_prog_CXXCPP+:} false; then : ++ $as_echo_n "(cached) " >&6 + else + # Double quotes because CXXCPP needs to be expanded + for CXXCPP in "$CXX -E" "/lib/cpp" +@@ -5015,11 +5699,7 @@ do + # exists even on freestanding compilers. + # On the NeXT, cc -E runs the code through the compiler's parser, + # not just through cpp. "Syntax error" is here to catch this case. +- cat >conftest.$ac_ext <<_ACEOF +-/* confdefs.h. */ +-_ACEOF +-cat confdefs.h >>conftest.$ac_ext +-cat >>conftest.$ac_ext <<_ACEOF ++ cat confdefs.h - <<_ACEOF >conftest.$ac_ext + /* end confdefs.h. */ + #ifdef __STDC__ + # include +@@ -5028,76 +5708,34 @@ cat >>conftest.$ac_ext <<_ACEOF + #endif + Syntax error + _ACEOF +-if { (ac_try="$ac_cpp conftest.$ac_ext" +-case "(($ac_try" in +- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; +- *) ac_try_echo=$ac_try;; +-esac +-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 +- (eval "$ac_cpp conftest.$ac_ext") 2>conftest.er1 +- ac_status=$? +- grep -v '^ *+' conftest.er1 >conftest.err +- rm -f conftest.er1 +- cat conftest.err >&5 +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); } >/dev/null && { +- test -z "$ac_cxx_preproc_warn_flag$ac_cxx_werror_flag" || +- test ! -s conftest.err +- }; then +- : +-else +- echo "$as_me: failed program was:" >&5 +-sed 's/^/| /' conftest.$ac_ext >&5 ++if ac_fn_cxx_try_cpp "$LINENO"; then : + ++else + # Broken: fails on valid input. + continue + fi +- +-rm -f conftest.err conftest.$ac_ext ++rm -f conftest.err conftest.i conftest.$ac_ext + + # OK, works on sane cases. Now check whether nonexistent headers + # can be detected and how. +- cat >conftest.$ac_ext <<_ACEOF +-/* confdefs.h. */ +-_ACEOF +-cat confdefs.h >>conftest.$ac_ext +-cat >>conftest.$ac_ext <<_ACEOF ++ cat confdefs.h - <<_ACEOF >conftest.$ac_ext + /* end confdefs.h. */ + #include + _ACEOF +-if { (ac_try="$ac_cpp conftest.$ac_ext" +-case "(($ac_try" in +- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; +- *) ac_try_echo=$ac_try;; +-esac +-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 +- (eval "$ac_cpp conftest.$ac_ext") 2>conftest.er1 +- ac_status=$? +- grep -v '^ *+' conftest.er1 >conftest.err +- rm -f conftest.er1 +- cat conftest.err >&5 +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); } >/dev/null && { +- test -z "$ac_cxx_preproc_warn_flag$ac_cxx_werror_flag" || +- test ! -s conftest.err +- }; then ++if ac_fn_cxx_try_cpp "$LINENO"; then : + # Broken: success on invalid input. + continue + else +- echo "$as_me: failed program was:" >&5 +-sed 's/^/| /' conftest.$ac_ext >&5 +- + # Passes both tests. + ac_preproc_ok=: + break + fi +- +-rm -f conftest.err conftest.$ac_ext ++rm -f conftest.err conftest.i conftest.$ac_ext + + done + # Because of `break', _AC_PREPROC_IFELSE's cleaning code was skipped. +-rm -f conftest.err conftest.$ac_ext +-if $ac_preproc_ok; then ++rm -f conftest.i conftest.err conftest.$ac_ext ++if $ac_preproc_ok; then : + break + fi + +@@ -5109,8 +5747,8 @@ fi + else + ac_cv_prog_CXXCPP=$CXXCPP + fi +-{ echo "$as_me:$LINENO: result: $CXXCPP" >&5 +-echo "${ECHO_T}$CXXCPP" >&6; } ++{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $CXXCPP" >&5 ++$as_echo "$CXXCPP" >&6; } + ac_preproc_ok=false + for ac_cxx_preproc_warn_flag in '' yes + do +@@ -5120,11 +5758,7 @@ do + # exists even on freestanding compilers. + # On the NeXT, cc -E runs the code through the compiler's parser, + # not just through cpp. "Syntax error" is here to catch this case. +- cat >conftest.$ac_ext <<_ACEOF +-/* confdefs.h. */ +-_ACEOF +-cat confdefs.h >>conftest.$ac_ext +-cat >>conftest.$ac_ext <<_ACEOF ++ cat confdefs.h - <<_ACEOF >conftest.$ac_ext + /* end confdefs.h. */ + #ifdef __STDC__ + # include +@@ -5133,83 +5767,40 @@ cat >>conftest.$ac_ext <<_ACEOF + #endif + Syntax error + _ACEOF +-if { (ac_try="$ac_cpp conftest.$ac_ext" +-case "(($ac_try" in +- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; +- *) ac_try_echo=$ac_try;; +-esac +-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 +- (eval "$ac_cpp conftest.$ac_ext") 2>conftest.er1 +- ac_status=$? +- grep -v '^ *+' conftest.er1 >conftest.err +- rm -f conftest.er1 +- cat conftest.err >&5 +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); } >/dev/null && { +- test -z "$ac_cxx_preproc_warn_flag$ac_cxx_werror_flag" || +- test ! -s conftest.err +- }; then +- : +-else +- echo "$as_me: failed program was:" >&5 +-sed 's/^/| /' conftest.$ac_ext >&5 ++if ac_fn_cxx_try_cpp "$LINENO"; then : + ++else + # Broken: fails on valid input. + continue + fi +- +-rm -f conftest.err conftest.$ac_ext ++rm -f conftest.err conftest.i conftest.$ac_ext + + # OK, works on sane cases. Now check whether nonexistent headers + # can be detected and how. +- cat >conftest.$ac_ext <<_ACEOF +-/* confdefs.h. */ +-_ACEOF +-cat confdefs.h >>conftest.$ac_ext +-cat >>conftest.$ac_ext <<_ACEOF ++ cat confdefs.h - <<_ACEOF >conftest.$ac_ext + /* end confdefs.h. */ + #include + _ACEOF +-if { (ac_try="$ac_cpp conftest.$ac_ext" +-case "(($ac_try" in +- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; +- *) ac_try_echo=$ac_try;; +-esac +-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 +- (eval "$ac_cpp conftest.$ac_ext") 2>conftest.er1 +- ac_status=$? +- grep -v '^ *+' conftest.er1 >conftest.err +- rm -f conftest.er1 +- cat conftest.err >&5 +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); } >/dev/null && { +- test -z "$ac_cxx_preproc_warn_flag$ac_cxx_werror_flag" || +- test ! -s conftest.err +- }; then ++if ac_fn_cxx_try_cpp "$LINENO"; then : + # Broken: success on invalid input. + continue + else +- echo "$as_me: failed program was:" >&5 +-sed 's/^/| /' conftest.$ac_ext >&5 +- + # Passes both tests. + ac_preproc_ok=: + break + fi +- +-rm -f conftest.err conftest.$ac_ext ++rm -f conftest.err conftest.i conftest.$ac_ext + + done + # Because of `break', _AC_PREPROC_IFELSE's cleaning code was skipped. +-rm -f conftest.err conftest.$ac_ext +-if $ac_preproc_ok; then +- : ++rm -f conftest.i conftest.err conftest.$ac_ext ++if $ac_preproc_ok; then : ++ + else +- { { echo "$as_me:$LINENO: error: C++ preprocessor \"$CXXCPP\" fails sanity check +-See \`config.log' for more details." >&5 +-echo "$as_me: error: C++ preprocessor \"$CXXCPP\" fails sanity check +-See \`config.log' for more details." >&2;} +- { (exit 1); exit 1; }; } ++ { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5 ++$as_echo "$as_me: error: in \`$ac_pwd':" >&2;} ++as_fn_error $? "C++ preprocessor \"$CXXCPP\" fails sanity check ++See \`config.log' for more details" "$LINENO" 5; } + fi + + ac_ext=c +@@ -5219,18 +5810,19 @@ ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $ + ac_compiler_gnu=$ac_cv_c_compiler_gnu + + fi +-{ echo "$as_me:$LINENO: checking whether ${MAKE-make} sets \$(MAKE)" >&5 +-echo $ECHO_N "checking whether ${MAKE-make} sets \$(MAKE)... $ECHO_C" >&6; } +-set x ${MAKE-make}; ac_make=`echo "$2" | sed 's/+/p/g; s/[^a-zA-Z0-9_]/_/g'` +-if { as_var=ac_cv_prog_make_${ac_make}_set; eval "test \"\${$as_var+set}\" = set"; }; then +- echo $ECHO_N "(cached) $ECHO_C" >&6 ++{ $as_echo "$as_me:${as_lineno-$LINENO}: checking whether ${MAKE-make} sets \$(MAKE)" >&5 ++$as_echo_n "checking whether ${MAKE-make} sets \$(MAKE)... " >&6; } ++set x ${MAKE-make} ++ac_make=`$as_echo "$2" | sed 's/+/p/g; s/[^a-zA-Z0-9_]/_/g'` ++if eval \${ac_cv_prog_make_${ac_make}_set+:} false; then : ++ $as_echo_n "(cached) " >&6 + else + cat >conftest.make <<\_ACEOF + SHELL = /bin/sh + all: + @echo '@@@%%%=$(MAKE)=@@@%%%' + _ACEOF +-# GNU make sometimes prints "make[1]: Entering...", which would confuse us. ++# GNU make sometimes prints "make[1]: Entering ...", which would confuse us. + case `${MAKE-make} -f conftest.make 2>/dev/null` in + *@@@%%%=?*=@@@%%%*) + eval ac_cv_prog_make_${ac_make}_set=yes;; +@@ -5240,94 +5832,15 @@ esac + rm -f conftest.make + fi + if eval test \$ac_cv_prog_make_${ac_make}_set = yes; then +- { echo "$as_me:$LINENO: result: yes" >&5 +-echo "${ECHO_T}yes" >&6; } ++ { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5 ++$as_echo "yes" >&6; } + SET_MAKE= + else +- { echo "$as_me:$LINENO: result: no" >&5 +-echo "${ECHO_T}no" >&6; } ++ { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 ++$as_echo "no" >&6; } + SET_MAKE="MAKE=${MAKE-make}" + fi + +-# Find a good install program. We prefer a C program (faster), +-# so one script is as good as another. But avoid the broken or +-# incompatible versions: +-# SysV /etc/install, /usr/sbin/install +-# SunOS /usr/etc/install +-# IRIX /sbin/install +-# AIX /bin/install +-# AmigaOS /C/install, which installs bootblocks on floppy discs +-# AIX 4 /usr/bin/installbsd, which doesn't work without a -g flag +-# AFS /usr/afsws/bin/install, which mishandles nonexistent args +-# SVR4 /usr/ucb/install, which tries to use the nonexistent group "staff" +-# OS/2's system install, which has a completely different semantic +-# ./install, which can be erroneously created by make from ./install.sh. +-{ echo "$as_me:$LINENO: checking for a BSD-compatible install" >&5 +-echo $ECHO_N "checking for a BSD-compatible install... $ECHO_C" >&6; } +-if test -z "$INSTALL"; then +-if test "${ac_cv_path_install+set}" = set; then +- echo $ECHO_N "(cached) $ECHO_C" >&6 +-else +- as_save_IFS=$IFS; IFS=$PATH_SEPARATOR +-for as_dir in $PATH +-do +- IFS=$as_save_IFS +- test -z "$as_dir" && as_dir=. +- # Account for people who put trailing slashes in PATH elements. +-case $as_dir/ in +- ./ | .// | /cC/* | \ +- /etc/* | /usr/sbin/* | /usr/etc/* | /sbin/* | /usr/afsws/bin/* | \ +- ?:\\/os2\\/install\\/* | ?:\\/OS2\\/INSTALL\\/* | \ +- /usr/ucb/* ) ;; +- *) +- # OSF1 and SCO ODT 3.0 have their own names for install. +- # Don't use installbsd from OSF since it installs stuff as root +- # by default. +- for ac_prog in ginstall scoinst install; do +- for ac_exec_ext in '' $ac_executable_extensions; do +- if { test -f "$as_dir/$ac_prog$ac_exec_ext" && $as_test_x "$as_dir/$ac_prog$ac_exec_ext"; }; then +- if test $ac_prog = install && +- grep dspmsg "$as_dir/$ac_prog$ac_exec_ext" >/dev/null 2>&1; then +- # AIX install. It has an incompatible calling convention. +- : +- elif test $ac_prog = install && +- grep pwplus "$as_dir/$ac_prog$ac_exec_ext" >/dev/null 2>&1; then +- # program-specific install script used by HP pwplus--don't use. +- : +- else +- ac_cv_path_install="$as_dir/$ac_prog$ac_exec_ext -c" +- break 3 +- fi +- fi +- done +- done +- ;; +-esac +-done +-IFS=$as_save_IFS +- +- +-fi +- if test "${ac_cv_path_install+set}" = set; then +- INSTALL=$ac_cv_path_install +- else +- # As a last resort, use the slow shell script. Don't cache a +- # value for INSTALL within a source directory, because that will +- # break other packages using the cache if that directory is +- # removed, or if the value is a relative name. +- INSTALL=$ac_install_sh +- fi +-fi +-{ echo "$as_me:$LINENO: result: $INSTALL" >&5 +-echo "${ECHO_T}$INSTALL" >&6; } +- +-# Use test -z because SunOS4 sh mishandles braces in ${var-val}. +-# It thinks the first close brace ends the variable substitution. +-test -z "$INSTALL_PROGRAM" && INSTALL_PROGRAM='${INSTALL}' +- +-test -z "$INSTALL_SCRIPT" && INSTALL_SCRIPT='${INSTALL}' +- +-test -z "$INSTALL_DATA" && INSTALL_DATA='${INSTALL} -m 644' + + # By default we simply use the C compiler to build assembly code. + +@@ -5339,45 +5852,40 @@ test "${CCASFLAGS+set}" = set || CCASFLAGS=$CFLAGS + + + +-{ echo "$as_me:$LINENO: checking for grep that handles long lines and -e" >&5 +-echo $ECHO_N "checking for grep that handles long lines and -e... $ECHO_C" >&6; } +-if test "${ac_cv_path_GREP+set}" = set; then +- echo $ECHO_N "(cached) $ECHO_C" >&6 +-else +- # Extract the first word of "grep ggrep" to use in msg output +-if test -z "$GREP"; then +-set dummy grep ggrep; ac_prog_name=$2 +-if test "${ac_cv_path_GREP+set}" = set; then +- echo $ECHO_N "(cached) $ECHO_C" >&6 ++{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for grep that handles long lines and -e" >&5 ++$as_echo_n "checking for grep that handles long lines and -e... " >&6; } ++if ${ac_cv_path_GREP+:} false; then : ++ $as_echo_n "(cached) " >&6 + else ++ if test -z "$GREP"; then + ac_path_GREP_found=false +-# Loop through the user's path and test for each of PROGNAME-LIST +-as_save_IFS=$IFS; IFS=$PATH_SEPARATOR ++ # Loop through the user's path and test for each of PROGNAME-LIST ++ as_save_IFS=$IFS; IFS=$PATH_SEPARATOR + for as_dir in $PATH$PATH_SEPARATOR/usr/xpg4/bin + do + IFS=$as_save_IFS + test -z "$as_dir" && as_dir=. +- for ac_prog in grep ggrep; do +- for ac_exec_ext in '' $ac_executable_extensions; do +- ac_path_GREP="$as_dir/$ac_prog$ac_exec_ext" +- { test -f "$ac_path_GREP" && $as_test_x "$ac_path_GREP"; } || continue +- # Check for GNU ac_path_GREP and select it if it is found. ++ for ac_prog in grep ggrep; do ++ for ac_exec_ext in '' $ac_executable_extensions; do ++ ac_path_GREP="$as_dir/$ac_prog$ac_exec_ext" ++ as_fn_executable_p "$ac_path_GREP" || continue ++# Check for GNU ac_path_GREP and select it if it is found. + # Check for GNU $ac_path_GREP + case `"$ac_path_GREP" --version 2>&1` in + *GNU*) + ac_cv_path_GREP="$ac_path_GREP" ac_path_GREP_found=:;; + *) + ac_count=0 +- echo $ECHO_N "0123456789$ECHO_C" >"conftest.in" ++ $as_echo_n 0123456789 >"conftest.in" + while : + do + cat "conftest.in" "conftest.in" >"conftest.tmp" + mv "conftest.tmp" "conftest.in" + cp "conftest.in" "conftest.nl" +- echo 'GREP' >> "conftest.nl" ++ $as_echo 'GREP' >> "conftest.nl" + "$ac_path_GREP" -e 'GREP$' -e '-(cannot match)-' < "conftest.nl" >"conftest.out" 2>/dev/null || break + diff "conftest.out" "conftest.nl" >/dev/null 2>&1 || break +- ac_count=`expr $ac_count + 1` ++ as_fn_arith $ac_count + 1 && ac_count=$as_val + if test $ac_count -gt ${ac_path_GREP_max-0}; then + # Best one so far, save it but keep looking for a better one + ac_cv_path_GREP="$ac_path_GREP" +@@ -5389,77 +5897,61 @@ case `"$ac_path_GREP" --version 2>&1` in + rm -f conftest.in conftest.tmp conftest.nl conftest.out;; + esac + +- +- $ac_path_GREP_found && break 3 ++ $ac_path_GREP_found && break 3 ++ done ++ done + done +-done +- +-done + IFS=$as_save_IFS +- +- +-fi +- +-GREP="$ac_cv_path_GREP" +-if test -z "$GREP"; then +- { { echo "$as_me:$LINENO: error: no acceptable $ac_prog_name could be found in $PATH$PATH_SEPARATOR/usr/xpg4/bin" >&5 +-echo "$as_me: error: no acceptable $ac_prog_name could be found in $PATH$PATH_SEPARATOR/usr/xpg4/bin" >&2;} +- { (exit 1); exit 1; }; } +-fi +- ++ if test -z "$ac_cv_path_GREP"; then ++ as_fn_error $? "no acceptable grep could be found in $PATH$PATH_SEPARATOR/usr/xpg4/bin" "$LINENO" 5 ++ fi + else + ac_cv_path_GREP=$GREP + fi + +- + fi +-{ echo "$as_me:$LINENO: result: $ac_cv_path_GREP" >&5 +-echo "${ECHO_T}$ac_cv_path_GREP" >&6; } ++{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_path_GREP" >&5 ++$as_echo "$ac_cv_path_GREP" >&6; } + GREP="$ac_cv_path_GREP" + + +-{ echo "$as_me:$LINENO: checking for egrep" >&5 +-echo $ECHO_N "checking for egrep... $ECHO_C" >&6; } +-if test "${ac_cv_path_EGREP+set}" = set; then +- echo $ECHO_N "(cached) $ECHO_C" >&6 ++{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for egrep" >&5 ++$as_echo_n "checking for egrep... " >&6; } ++if ${ac_cv_path_EGREP+:} false; then : ++ $as_echo_n "(cached) " >&6 + else + if echo a | $GREP -E '(a|b)' >/dev/null 2>&1 + then ac_cv_path_EGREP="$GREP -E" + else +- # Extract the first word of "egrep" to use in msg output +-if test -z "$EGREP"; then +-set dummy egrep; ac_prog_name=$2 +-if test "${ac_cv_path_EGREP+set}" = set; then +- echo $ECHO_N "(cached) $ECHO_C" >&6 +-else ++ if test -z "$EGREP"; then + ac_path_EGREP_found=false +-# Loop through the user's path and test for each of PROGNAME-LIST +-as_save_IFS=$IFS; IFS=$PATH_SEPARATOR ++ # Loop through the user's path and test for each of PROGNAME-LIST ++ as_save_IFS=$IFS; IFS=$PATH_SEPARATOR + for as_dir in $PATH$PATH_SEPARATOR/usr/xpg4/bin + do + IFS=$as_save_IFS + test -z "$as_dir" && as_dir=. +- for ac_prog in egrep; do +- for ac_exec_ext in '' $ac_executable_extensions; do +- ac_path_EGREP="$as_dir/$ac_prog$ac_exec_ext" +- { test -f "$ac_path_EGREP" && $as_test_x "$ac_path_EGREP"; } || continue +- # Check for GNU ac_path_EGREP and select it if it is found. ++ for ac_prog in egrep; do ++ for ac_exec_ext in '' $ac_executable_extensions; do ++ ac_path_EGREP="$as_dir/$ac_prog$ac_exec_ext" ++ as_fn_executable_p "$ac_path_EGREP" || continue ++# Check for GNU ac_path_EGREP and select it if it is found. + # Check for GNU $ac_path_EGREP + case `"$ac_path_EGREP" --version 2>&1` in + *GNU*) + ac_cv_path_EGREP="$ac_path_EGREP" ac_path_EGREP_found=:;; + *) + ac_count=0 +- echo $ECHO_N "0123456789$ECHO_C" >"conftest.in" ++ $as_echo_n 0123456789 >"conftest.in" + while : + do + cat "conftest.in" "conftest.in" >"conftest.tmp" + mv "conftest.tmp" "conftest.in" + cp "conftest.in" "conftest.nl" +- echo 'EGREP' >> "conftest.nl" ++ $as_echo 'EGREP' >> "conftest.nl" + "$ac_path_EGREP" 'EGREP$' < "conftest.nl" >"conftest.out" 2>/dev/null || break + diff "conftest.out" "conftest.nl" >/dev/null 2>&1 || break +- ac_count=`expr $ac_count + 1` ++ as_fn_arith $ac_count + 1 && ac_count=$as_val + if test $ac_count -gt ${ac_path_EGREP_max-0}; then + # Best one so far, save it but keep looking for a better one + ac_cv_path_EGREP="$ac_path_EGREP" +@@ -5471,49 +5963,38 @@ case `"$ac_path_EGREP" --version 2>&1` in + rm -f conftest.in conftest.tmp conftest.nl conftest.out;; + esac + +- +- $ac_path_EGREP_found && break 3 ++ $ac_path_EGREP_found && break 3 ++ done ++ done + done +-done +- +-done + IFS=$as_save_IFS +- +- +-fi +- +-EGREP="$ac_cv_path_EGREP" +-if test -z "$EGREP"; then +- { { echo "$as_me:$LINENO: error: no acceptable $ac_prog_name could be found in $PATH$PATH_SEPARATOR/usr/xpg4/bin" >&5 +-echo "$as_me: error: no acceptable $ac_prog_name could be found in $PATH$PATH_SEPARATOR/usr/xpg4/bin" >&2;} +- { (exit 1); exit 1; }; } +-fi +- ++ if test -z "$ac_cv_path_EGREP"; then ++ as_fn_error $? "no acceptable egrep could be found in $PATH$PATH_SEPARATOR/usr/xpg4/bin" "$LINENO" 5 ++ fi + else + ac_cv_path_EGREP=$EGREP + fi + +- + fi + fi +-{ echo "$as_me:$LINENO: result: $ac_cv_path_EGREP" >&5 +-echo "${ECHO_T}$ac_cv_path_EGREP" >&6; } ++{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_path_EGREP" >&5 ++$as_echo "$ac_cv_path_EGREP" >&6; } + EGREP="$ac_cv_path_EGREP" + + +-cat >conftest.$ac_ext <<_ACEOF +-/* confdefs.h. */ +-_ACEOF +-cat confdefs.h >>conftest.$ac_ext +-cat >>conftest.$ac_ext <<_ACEOF ++cat confdefs.h - <<_ACEOF >conftest.$ac_ext + /* end confdefs.h. */ + foo + _ACEOF ++if (eval "$ac_cpp conftest.$ac_ext") 2>&5 | ++ $EGREP "foo" >/dev/null 2>&1; then : ++ ++fi + rm -f conftest* + + +-{ echo "$as_me:$LINENO: checking for an Objective-C compiler" >&5 +-echo $ECHO_N "checking for an Objective-C compiler... $ECHO_C" >&6; } ++{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for an Objective-C compiler" >&5 ++$as_echo_n "checking for an Objective-C compiler... " >&6; } + OBJC="${CXX}" + + OBJCFLAGS="${CXXFLAGS} -fgnu-runtime -fconstant-string-class=NSConstantString" +@@ -5523,10 +6004,10 @@ OBJCFLAGS="${CXXFLAGS} -fgnu-runtime -fconstant-string-class=NSConstantString" + + depcc="$OBJC" am_compiler_list='gcc3 gcc' + +-{ echo "$as_me:$LINENO: checking dependency style of $depcc" >&5 +-echo $ECHO_N "checking dependency style of $depcc... $ECHO_C" >&6; } +-if test "${am_cv_OBJC_dependencies_compiler_type+set}" = set; then +- echo $ECHO_N "(cached) $ECHO_C" >&6 ++{ $as_echo "$as_me:${as_lineno-$LINENO}: checking dependency style of $depcc" >&5 ++$as_echo_n "checking dependency style of $depcc... " >&6; } ++if ${am_cv_OBJC_dependencies_compiler_type+:} false; then : ++ $as_echo_n "(cached) " >&6 + else + if test -z "$AMDEP_TRUE" && test -f "$am_depcomp"; then + # We make a subdir and do the tests there. Otherwise we can end up +@@ -5613,8 +6094,8 @@ else + fi + + fi +-{ echo "$as_me:$LINENO: result: $am_cv_OBJC_dependencies_compiler_type" >&5 +-echo "${ECHO_T}$am_cv_OBJC_dependencies_compiler_type" >&6; } ++{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $am_cv_OBJC_dependencies_compiler_type" >&5 ++$as_echo "$am_cv_OBJC_dependencies_compiler_type" >&6; } + OBJCDEPMODE=depmode=$am_cv_OBJC_dependencies_compiler_type + + +@@ -5630,16 +6111,16 @@ else + fi + + +-{ echo "$as_me:$LINENO: result: not implemented yet" >&5 +-echo "${ECHO_T}not implemented yet" >&6; } ++{ $as_echo "$as_me:${as_lineno-$LINENO}: result: not implemented yet" >&5 ++$as_echo "not implemented yet" >&6; } + + if test -n "$ac_tool_prefix"; then + # Extract the first word of "${ac_tool_prefix}ranlib", so it can be a program name with args. + set dummy ${ac_tool_prefix}ranlib; ac_word=$2 +-{ echo "$as_me:$LINENO: checking for $ac_word" >&5 +-echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6; } +-if test "${ac_cv_prog_RANLIB+set}" = set; then +- echo $ECHO_N "(cached) $ECHO_C" >&6 ++{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 ++$as_echo_n "checking for $ac_word... " >&6; } ++if ${ac_cv_prog_RANLIB+:} false; then : ++ $as_echo_n "(cached) " >&6 + else + if test -n "$RANLIB"; then + ac_cv_prog_RANLIB="$RANLIB" # Let the user override the test. +@@ -5649,25 +6130,25 @@ for as_dir in $PATH + do + IFS=$as_save_IFS + test -z "$as_dir" && as_dir=. +- for ac_exec_ext in '' $ac_executable_extensions; do +- if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then ++ for ac_exec_ext in '' $ac_executable_extensions; do ++ if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then + ac_cv_prog_RANLIB="${ac_tool_prefix}ranlib" +- echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 ++ $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 + break 2 + fi + done +-done ++ done + IFS=$as_save_IFS + + fi + fi + RANLIB=$ac_cv_prog_RANLIB + if test -n "$RANLIB"; then +- { echo "$as_me:$LINENO: result: $RANLIB" >&5 +-echo "${ECHO_T}$RANLIB" >&6; } ++ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $RANLIB" >&5 ++$as_echo "$RANLIB" >&6; } + else +- { echo "$as_me:$LINENO: result: no" >&5 +-echo "${ECHO_T}no" >&6; } ++ { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 ++$as_echo "no" >&6; } + fi + + +@@ -5676,10 +6157,10 @@ if test -z "$ac_cv_prog_RANLIB"; then + ac_ct_RANLIB=$RANLIB + # Extract the first word of "ranlib", so it can be a program name with args. + set dummy ranlib; ac_word=$2 +-{ echo "$as_me:$LINENO: checking for $ac_word" >&5 +-echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6; } +-if test "${ac_cv_prog_ac_ct_RANLIB+set}" = set; then +- echo $ECHO_N "(cached) $ECHO_C" >&6 ++{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 ++$as_echo_n "checking for $ac_word... " >&6; } ++if ${ac_cv_prog_ac_ct_RANLIB+:} false; then : ++ $as_echo_n "(cached) " >&6 + else + if test -n "$ac_ct_RANLIB"; then + ac_cv_prog_ac_ct_RANLIB="$ac_ct_RANLIB" # Let the user override the test. +@@ -5689,25 +6170,25 @@ for as_dir in $PATH + do + IFS=$as_save_IFS + test -z "$as_dir" && as_dir=. +- for ac_exec_ext in '' $ac_executable_extensions; do +- if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then ++ for ac_exec_ext in '' $ac_executable_extensions; do ++ if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then + ac_cv_prog_ac_ct_RANLIB="ranlib" +- echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 ++ $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 + break 2 + fi + done +-done ++ done + IFS=$as_save_IFS + + fi + fi + ac_ct_RANLIB=$ac_cv_prog_ac_ct_RANLIB + if test -n "$ac_ct_RANLIB"; then +- { echo "$as_me:$LINENO: result: $ac_ct_RANLIB" >&5 +-echo "${ECHO_T}$ac_ct_RANLIB" >&6; } ++ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_ct_RANLIB" >&5 ++$as_echo "$ac_ct_RANLIB" >&6; } + else +- { echo "$as_me:$LINENO: result: no" >&5 +-echo "${ECHO_T}no" >&6; } ++ { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 ++$as_echo "no" >&6; } + fi + + if test "x$ac_ct_RANLIB" = x; then +@@ -5715,12 +6196,8 @@ fi + else + case $cross_compiling:$ac_tool_warned in + yes:) +-{ echo "$as_me:$LINENO: WARNING: In the future, Autoconf will not detect cross-tools +-whose name does not start with the host triplet. If you think this +-configuration is useful to you, please write to autoconf@gnu.org." >&5 +-echo "$as_me: WARNING: In the future, Autoconf will not detect cross-tools +-whose name does not start with the host triplet. If you think this +-configuration is useful to you, please write to autoconf@gnu.org." >&2;} ++{ $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet" >&5 ++$as_echo "$as_me: WARNING: using cross tools not prefixed with host triplet" >&2;} + ac_tool_warned=yes ;; + esac + RANLIB=$ac_ct_RANLIB +@@ -5732,10 +6209,10 @@ fi + if test -n "$ac_tool_prefix"; then + # Extract the first word of "${ac_tool_prefix}strip", so it can be a program name with args. + set dummy ${ac_tool_prefix}strip; ac_word=$2 +-{ echo "$as_me:$LINENO: checking for $ac_word" >&5 +-echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6; } +-if test "${ac_cv_prog_STRIP+set}" = set; then +- echo $ECHO_N "(cached) $ECHO_C" >&6 ++{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 ++$as_echo_n "checking for $ac_word... " >&6; } ++if ${ac_cv_prog_STRIP+:} false; then : ++ $as_echo_n "(cached) " >&6 + else + if test -n "$STRIP"; then + ac_cv_prog_STRIP="$STRIP" # Let the user override the test. +@@ -5745,25 +6222,25 @@ for as_dir in $PATH + do + IFS=$as_save_IFS + test -z "$as_dir" && as_dir=. +- for ac_exec_ext in '' $ac_executable_extensions; do +- if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then ++ for ac_exec_ext in '' $ac_executable_extensions; do ++ if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then + ac_cv_prog_STRIP="${ac_tool_prefix}strip" +- echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 ++ $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 + break 2 + fi + done +-done ++ done + IFS=$as_save_IFS + + fi + fi + STRIP=$ac_cv_prog_STRIP + if test -n "$STRIP"; then +- { echo "$as_me:$LINENO: result: $STRIP" >&5 +-echo "${ECHO_T}$STRIP" >&6; } ++ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $STRIP" >&5 ++$as_echo "$STRIP" >&6; } + else +- { echo "$as_me:$LINENO: result: no" >&5 +-echo "${ECHO_T}no" >&6; } ++ { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 ++$as_echo "no" >&6; } + fi + + +@@ -5772,10 +6249,10 @@ if test -z "$ac_cv_prog_STRIP"; then + ac_ct_STRIP=$STRIP + # Extract the first word of "strip", so it can be a program name with args. + set dummy strip; ac_word=$2 +-{ echo "$as_me:$LINENO: checking for $ac_word" >&5 +-echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6; } +-if test "${ac_cv_prog_ac_ct_STRIP+set}" = set; then +- echo $ECHO_N "(cached) $ECHO_C" >&6 ++{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 ++$as_echo_n "checking for $ac_word... " >&6; } ++if ${ac_cv_prog_ac_ct_STRIP+:} false; then : ++ $as_echo_n "(cached) " >&6 + else + if test -n "$ac_ct_STRIP"; then + ac_cv_prog_ac_ct_STRIP="$ac_ct_STRIP" # Let the user override the test. +@@ -5785,25 +6262,25 @@ for as_dir in $PATH + do + IFS=$as_save_IFS + test -z "$as_dir" && as_dir=. +- for ac_exec_ext in '' $ac_executable_extensions; do +- if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then ++ for ac_exec_ext in '' $ac_executable_extensions; do ++ if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then + ac_cv_prog_ac_ct_STRIP="strip" +- echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 ++ $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 + break 2 + fi + done +-done ++ done + IFS=$as_save_IFS + + fi + fi + ac_ct_STRIP=$ac_cv_prog_ac_ct_STRIP + if test -n "$ac_ct_STRIP"; then +- { echo "$as_me:$LINENO: result: $ac_ct_STRIP" >&5 +-echo "${ECHO_T}$ac_ct_STRIP" >&6; } ++ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_ct_STRIP" >&5 ++$as_echo "$ac_ct_STRIP" >&6; } + else +- { echo "$as_me:$LINENO: result: no" >&5 +-echo "${ECHO_T}no" >&6; } ++ { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 ++$as_echo "no" >&6; } + fi + + if test "x$ac_ct_STRIP" = x; then +@@ -5811,12 +6288,8 @@ fi + else + case $cross_compiling:$ac_tool_warned in + yes:) +-{ echo "$as_me:$LINENO: WARNING: In the future, Autoconf will not detect cross-tools +-whose name does not start with the host triplet. If you think this +-configuration is useful to you, please write to autoconf@gnu.org." >&5 +-echo "$as_me: WARNING: In the future, Autoconf will not detect cross-tools +-whose name does not start with the host triplet. If you think this +-configuration is useful to you, please write to autoconf@gnu.org." >&2;} ++{ $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet" >&5 ++$as_echo "$as_me: WARNING: using cross tools not prefixed with host triplet" >&2;} + ac_tool_warned=yes ;; + esac + STRIP=$ac_ct_STRIP +@@ -5828,10 +6301,10 @@ fi + if test -n "$ac_tool_prefix"; then + # Extract the first word of "${ac_tool_prefix}ar", so it can be a program name with args. + set dummy ${ac_tool_prefix}ar; ac_word=$2 +-{ echo "$as_me:$LINENO: checking for $ac_word" >&5 +-echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6; } +-if test "${ac_cv_prog_AR+set}" = set; then +- echo $ECHO_N "(cached) $ECHO_C" >&6 ++{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 ++$as_echo_n "checking for $ac_word... " >&6; } ++if ${ac_cv_prog_AR+:} false; then : ++ $as_echo_n "(cached) " >&6 + else + if test -n "$AR"; then + ac_cv_prog_AR="$AR" # Let the user override the test. +@@ -5841,25 +6314,25 @@ for as_dir in $PATH + do + IFS=$as_save_IFS + test -z "$as_dir" && as_dir=. +- for ac_exec_ext in '' $ac_executable_extensions; do +- if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then ++ for ac_exec_ext in '' $ac_executable_extensions; do ++ if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then + ac_cv_prog_AR="${ac_tool_prefix}ar" +- echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 ++ $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 + break 2 + fi + done +-done ++ done + IFS=$as_save_IFS + + fi + fi + AR=$ac_cv_prog_AR + if test -n "$AR"; then +- { echo "$as_me:$LINENO: result: $AR" >&5 +-echo "${ECHO_T}$AR" >&6; } ++ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $AR" >&5 ++$as_echo "$AR" >&6; } + else +- { echo "$as_me:$LINENO: result: no" >&5 +-echo "${ECHO_T}no" >&6; } ++ { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 ++$as_echo "no" >&6; } + fi + + +@@ -5868,10 +6341,10 @@ if test -z "$ac_cv_prog_AR"; then + ac_ct_AR=$AR + # Extract the first word of "ar", so it can be a program name with args. + set dummy ar; ac_word=$2 +-{ echo "$as_me:$LINENO: checking for $ac_word" >&5 +-echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6; } +-if test "${ac_cv_prog_ac_ct_AR+set}" = set; then +- echo $ECHO_N "(cached) $ECHO_C" >&6 ++{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 ++$as_echo_n "checking for $ac_word... " >&6; } ++if ${ac_cv_prog_ac_ct_AR+:} false; then : ++ $as_echo_n "(cached) " >&6 + else + if test -n "$ac_ct_AR"; then + ac_cv_prog_ac_ct_AR="$ac_ct_AR" # Let the user override the test. +@@ -5881,25 +6354,25 @@ for as_dir in $PATH + do + IFS=$as_save_IFS + test -z "$as_dir" && as_dir=. +- for ac_exec_ext in '' $ac_executable_extensions; do +- if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then ++ for ac_exec_ext in '' $ac_executable_extensions; do ++ if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then + ac_cv_prog_ac_ct_AR="ar" +- echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 ++ $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 + break 2 + fi + done +-done ++ done + IFS=$as_save_IFS + + fi + fi + ac_ct_AR=$ac_cv_prog_ac_ct_AR + if test -n "$ac_ct_AR"; then +- { echo "$as_me:$LINENO: result: $ac_ct_AR" >&5 +-echo "${ECHO_T}$ac_ct_AR" >&6; } ++ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_ct_AR" >&5 ++$as_echo "$ac_ct_AR" >&6; } + else +- { echo "$as_me:$LINENO: result: no" >&5 +-echo "${ECHO_T}no" >&6; } ++ { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 ++$as_echo "no" >&6; } + fi + + if test "x$ac_ct_AR" = x; then +@@ -5907,12 +6380,8 @@ fi + else + case $cross_compiling:$ac_tool_warned in + yes:) +-{ echo "$as_me:$LINENO: WARNING: In the future, Autoconf will not detect cross-tools +-whose name does not start with the host triplet. If you think this +-configuration is useful to you, please write to autoconf@gnu.org." >&5 +-echo "$as_me: WARNING: In the future, Autoconf will not detect cross-tools +-whose name does not start with the host triplet. If you think this +-configuration is useful to you, please write to autoconf@gnu.org." >&2;} ++{ $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet" >&5 ++$as_echo "$as_me: WARNING: using cross tools not prefixed with host triplet" >&2;} + ac_tool_warned=yes ;; + esac + AR=$ac_ct_AR +@@ -5924,10 +6393,10 @@ fi + if test -n "$ac_tool_prefix"; then + # Extract the first word of "${ac_tool_prefix}ld", so it can be a program name with args. + set dummy ${ac_tool_prefix}ld; ac_word=$2 +-{ echo "$as_me:$LINENO: checking for $ac_word" >&5 +-echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6; } +-if test "${ac_cv_prog_LD+set}" = set; then +- echo $ECHO_N "(cached) $ECHO_C" >&6 ++{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 ++$as_echo_n "checking for $ac_word... " >&6; } ++if ${ac_cv_prog_LD+:} false; then : ++ $as_echo_n "(cached) " >&6 + else + if test -n "$LD"; then + ac_cv_prog_LD="$LD" # Let the user override the test. +@@ -5937,25 +6406,25 @@ for as_dir in $PATH + do + IFS=$as_save_IFS + test -z "$as_dir" && as_dir=. +- for ac_exec_ext in '' $ac_executable_extensions; do +- if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then ++ for ac_exec_ext in '' $ac_executable_extensions; do ++ if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then + ac_cv_prog_LD="${ac_tool_prefix}ld" +- echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 ++ $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 + break 2 + fi + done +-done ++ done + IFS=$as_save_IFS + + fi + fi + LD=$ac_cv_prog_LD + if test -n "$LD"; then +- { echo "$as_me:$LINENO: result: $LD" >&5 +-echo "${ECHO_T}$LD" >&6; } ++ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $LD" >&5 ++$as_echo "$LD" >&6; } + else +- { echo "$as_me:$LINENO: result: no" >&5 +-echo "${ECHO_T}no" >&6; } ++ { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 ++$as_echo "no" >&6; } + fi + + +@@ -5964,10 +6433,10 @@ if test -z "$ac_cv_prog_LD"; then + ac_ct_LD=$LD + # Extract the first word of "ld", so it can be a program name with args. + set dummy ld; ac_word=$2 +-{ echo "$as_me:$LINENO: checking for $ac_word" >&5 +-echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6; } +-if test "${ac_cv_prog_ac_ct_LD+set}" = set; then +- echo $ECHO_N "(cached) $ECHO_C" >&6 ++{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 ++$as_echo_n "checking for $ac_word... " >&6; } ++if ${ac_cv_prog_ac_ct_LD+:} false; then : ++ $as_echo_n "(cached) " >&6 + else + if test -n "$ac_ct_LD"; then + ac_cv_prog_ac_ct_LD="$ac_ct_LD" # Let the user override the test. +@@ -5977,25 +6446,25 @@ for as_dir in $PATH + do + IFS=$as_save_IFS + test -z "$as_dir" && as_dir=. +- for ac_exec_ext in '' $ac_executable_extensions; do +- if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then ++ for ac_exec_ext in '' $ac_executable_extensions; do ++ if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then + ac_cv_prog_ac_ct_LD="ld" +- echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 ++ $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 + break 2 + fi + done +-done ++ done + IFS=$as_save_IFS + + fi + fi + ac_ct_LD=$ac_cv_prog_ac_ct_LD + if test -n "$ac_ct_LD"; then +- { echo "$as_me:$LINENO: result: $ac_ct_LD" >&5 +-echo "${ECHO_T}$ac_ct_LD" >&6; } ++ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_ct_LD" >&5 ++$as_echo "$ac_ct_LD" >&6; } + else +- { echo "$as_me:$LINENO: result: no" >&5 +-echo "${ECHO_T}no" >&6; } ++ { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 ++$as_echo "no" >&6; } + fi + + if test "x$ac_ct_LD" = x; then +@@ -6003,12 +6472,8 @@ fi + else + case $cross_compiling:$ac_tool_warned in + yes:) +-{ echo "$as_me:$LINENO: WARNING: In the future, Autoconf will not detect cross-tools +-whose name does not start with the host triplet. If you think this +-configuration is useful to you, please write to autoconf@gnu.org." >&5 +-echo "$as_me: WARNING: In the future, Autoconf will not detect cross-tools +-whose name does not start with the host triplet. If you think this +-configuration is useful to you, please write to autoconf@gnu.org." >&2;} ++{ $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet" >&5 ++$as_echo "$as_me: WARNING: using cross tools not prefixed with host triplet" >&2;} + ac_tool_warned=yes ;; + esac + LD=$ac_ct_LD +@@ -6019,7 +6484,7 @@ fi + + + # Check whether --enable-static was given. +-if test "${enable_static+set}" = set; then ++if test "${enable_static+set}" = set; then : + enableval=$enable_static; p=${PACKAGE-default} + case $enableval in + yes) enable_static=yes ;; +@@ -6048,7 +6513,7 @@ fi + + + # Check whether --enable-shared was given. +-if test "${enable_shared+set}" = set; then ++if test "${enable_shared+set}" = set; then : + enableval=$enable_shared; p=${PACKAGE-default} + case $enableval in + yes) enable_shared=yes ;; +@@ -6072,7 +6537,7 @@ fi + + + # Check whether --enable-fast-install was given. +-if test "${enable_fast_install+set}" = set; then ++if test "${enable_fast_install+set}" = set; then : + enableval=$enable_fast_install; p=${PACKAGE-default} + case $enableval in + yes) enable_fast_install=yes ;; +@@ -6095,10 +6560,10 @@ else + fi + + +-{ echo "$as_me:$LINENO: checking for a sed that does not truncate output" >&5 +-echo $ECHO_N "checking for a sed that does not truncate output... $ECHO_C" >&6; } +-if test "${lt_cv_path_SED+set}" = set; then +- echo $ECHO_N "(cached) $ECHO_C" >&6 ++{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for a sed that does not truncate output" >&5 ++$as_echo_n "checking for a sed that does not truncate output... " >&6; } ++if ${lt_cv_path_SED+:} false; then : ++ $as_echo_n "(cached) " >&6 + else + # Loop through the user's path and test for sed and gsed. + # Then use that list of sed's as ones to test for truncation. +@@ -6109,7 +6574,7 @@ do + test -z "$as_dir" && as_dir=. + for lt_ac_prog in sed gsed; do + for ac_exec_ext in '' $ac_executable_extensions; do +- if { test -f "$as_dir/$lt_ac_prog$ac_exec_ext" && $as_test_x "$as_dir/$lt_ac_prog$ac_exec_ext"; }; then ++ if as_fn_executable_p "$as_dir/$lt_ac_prog$ac_exec_ext"; then + lt_ac_sed_list="$lt_ac_sed_list $as_dir/$lt_ac_prog$ac_exec_ext" + fi + done +@@ -6151,12 +6616,12 @@ fi + + SED=$lt_cv_path_SED + +-{ echo "$as_me:$LINENO: result: $SED" >&5 +-echo "${ECHO_T}$SED" >&6; } ++{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $SED" >&5 ++$as_echo "$SED" >&6; } + + + # Check whether --with-gnu-ld was given. +-if test "${with_gnu_ld+set}" = set; then ++if test "${with_gnu_ld+set}" = set; then : + withval=$with_gnu_ld; test "$withval" = no || with_gnu_ld=yes + else + with_gnu_ld=no +@@ -6165,8 +6630,8 @@ fi + ac_prog=ld + if test "$GCC" = yes; then + # Check if gcc -print-prog-name=ld gives a path. +- { echo "$as_me:$LINENO: checking for ld used by $CC" >&5 +-echo $ECHO_N "checking for ld used by $CC... $ECHO_C" >&6; } ++ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for ld used by $CC" >&5 ++$as_echo_n "checking for ld used by $CC... " >&6; } + case $host in + *-*-mingw*) + # gcc leaves a trailing carriage return which upsets mingw +@@ -6195,14 +6660,14 @@ echo $ECHO_N "checking for ld used by $CC... $ECHO_C" >&6; } + ;; + esac + elif test "$with_gnu_ld" = yes; then +- { echo "$as_me:$LINENO: checking for GNU ld" >&5 +-echo $ECHO_N "checking for GNU ld... $ECHO_C" >&6; } ++ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for GNU ld" >&5 ++$as_echo_n "checking for GNU ld... " >&6; } + else +- { echo "$as_me:$LINENO: checking for non-GNU ld" >&5 +-echo $ECHO_N "checking for non-GNU ld... $ECHO_C" >&6; } ++ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for non-GNU ld" >&5 ++$as_echo_n "checking for non-GNU ld... " >&6; } + fi +-if test "${lt_cv_path_LD+set}" = set; then +- echo $ECHO_N "(cached) $ECHO_C" >&6 ++if ${lt_cv_path_LD+:} false; then : ++ $as_echo_n "(cached) " >&6 + else + if test -z "$LD"; then + lt_save_ifs="$IFS"; IFS=$PATH_SEPARATOR +@@ -6232,19 +6697,17 @@ fi + + LD="$lt_cv_path_LD" + if test -n "$LD"; then +- { echo "$as_me:$LINENO: result: $LD" >&5 +-echo "${ECHO_T}$LD" >&6; } ++ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $LD" >&5 ++$as_echo "$LD" >&6; } + else +- { echo "$as_me:$LINENO: result: no" >&5 +-echo "${ECHO_T}no" >&6; } ++ { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 ++$as_echo "no" >&6; } + fi +-test -z "$LD" && { { echo "$as_me:$LINENO: error: no acceptable ld found in \$PATH" >&5 +-echo "$as_me: error: no acceptable ld found in \$PATH" >&2;} +- { (exit 1); exit 1; }; } +-{ echo "$as_me:$LINENO: checking if the linker ($LD) is GNU ld" >&5 +-echo $ECHO_N "checking if the linker ($LD) is GNU ld... $ECHO_C" >&6; } +-if test "${lt_cv_prog_gnu_ld+set}" = set; then +- echo $ECHO_N "(cached) $ECHO_C" >&6 ++test -z "$LD" && as_fn_error $? "no acceptable ld found in \$PATH" "$LINENO" 5 ++{ $as_echo "$as_me:${as_lineno-$LINENO}: checking if the linker ($LD) is GNU ld" >&5 ++$as_echo_n "checking if the linker ($LD) is GNU ld... " >&6; } ++if ${lt_cv_prog_gnu_ld+:} false; then : ++ $as_echo_n "(cached) " >&6 + else + # I'd rather use --version here, but apparently some GNU lds only accept -v. + case `$LD -v 2>&1 &1 &5 +-echo "${ECHO_T}$lt_cv_prog_gnu_ld" >&6; } ++{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_cv_prog_gnu_ld" >&5 ++$as_echo "$lt_cv_prog_gnu_ld" >&6; } + with_gnu_ld=$lt_cv_prog_gnu_ld + + +-{ echo "$as_me:$LINENO: checking for $LD option to reload object files" >&5 +-echo $ECHO_N "checking for $LD option to reload object files... $ECHO_C" >&6; } +-if test "${lt_cv_ld_reload_flag+set}" = set; then +- echo $ECHO_N "(cached) $ECHO_C" >&6 ++{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $LD option to reload object files" >&5 ++$as_echo_n "checking for $LD option to reload object files... " >&6; } ++if ${lt_cv_ld_reload_flag+:} false; then : ++ $as_echo_n "(cached) " >&6 + else + lt_cv_ld_reload_flag='-r' + fi +-{ echo "$as_me:$LINENO: result: $lt_cv_ld_reload_flag" >&5 +-echo "${ECHO_T}$lt_cv_ld_reload_flag" >&6; } ++{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_cv_ld_reload_flag" >&5 ++$as_echo "$lt_cv_ld_reload_flag" >&6; } + reload_flag=$lt_cv_ld_reload_flag + case $reload_flag in + "" | " "*) ;; +@@ -6286,10 +6749,10 @@ case $host_os in + ;; + esac + +-{ echo "$as_me:$LINENO: checking for BSD-compatible nm" >&5 +-echo $ECHO_N "checking for BSD-compatible nm... $ECHO_C" >&6; } +-if test "${lt_cv_path_NM+set}" = set; then +- echo $ECHO_N "(cached) $ECHO_C" >&6 ++{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for BSD-compatible nm" >&5 ++$as_echo_n "checking for BSD-compatible nm... " >&6; } ++if ${lt_cv_path_NM+:} false; then : ++ $as_echo_n "(cached) " >&6 + else + if test -n "$NM"; then + # Let the user override the test. +@@ -6335,25 +6798,25 @@ else + test -z "$lt_cv_path_NM" && lt_cv_path_NM=nm + fi + fi +-{ echo "$as_me:$LINENO: result: $lt_cv_path_NM" >&5 +-echo "${ECHO_T}$lt_cv_path_NM" >&6; } ++{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_cv_path_NM" >&5 ++$as_echo "$lt_cv_path_NM" >&6; } + NM="$lt_cv_path_NM" + +-{ echo "$as_me:$LINENO: checking whether ln -s works" >&5 +-echo $ECHO_N "checking whether ln -s works... $ECHO_C" >&6; } ++{ $as_echo "$as_me:${as_lineno-$LINENO}: checking whether ln -s works" >&5 ++$as_echo_n "checking whether ln -s works... " >&6; } + LN_S=$as_ln_s + if test "$LN_S" = "ln -s"; then +- { echo "$as_me:$LINENO: result: yes" >&5 +-echo "${ECHO_T}yes" >&6; } ++ { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5 ++$as_echo "yes" >&6; } + else +- { echo "$as_me:$LINENO: result: no, using $LN_S" >&5 +-echo "${ECHO_T}no, using $LN_S" >&6; } ++ { $as_echo "$as_me:${as_lineno-$LINENO}: result: no, using $LN_S" >&5 ++$as_echo "no, using $LN_S" >&6; } + fi + +-{ echo "$as_me:$LINENO: checking how to recognize dependent libraries" >&5 +-echo $ECHO_N "checking how to recognize dependent libraries... $ECHO_C" >&6; } +-if test "${lt_cv_deplibs_check_method+set}" = set; then +- echo $ECHO_N "(cached) $ECHO_C" >&6 ++{ $as_echo "$as_me:${as_lineno-$LINENO}: checking how to recognize dependent libraries" >&5 ++$as_echo_n "checking how to recognize dependent libraries... " >&6; } ++if ${lt_cv_deplibs_check_method+:} false; then : ++ $as_echo_n "(cached) " >&6 + else + lt_cv_file_magic_cmd='$MAGIC_CMD' + lt_cv_file_magic_test_file= +@@ -6536,8 +6999,8 @@ sysv5* | sco3.2v5* | sco5v6* | unixware* | OpenUNIX* | sysv4*uw2*) + esac + + fi +-{ echo "$as_me:$LINENO: result: $lt_cv_deplibs_check_method" >&5 +-echo "${ECHO_T}$lt_cv_deplibs_check_method" >&6; } ++{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_cv_deplibs_check_method" >&5 ++$as_echo "$lt_cv_deplibs_check_method" >&6; } + file_magic_cmd=$lt_cv_file_magic_cmd + deplibs_check_method=$lt_cv_deplibs_check_method + test -z "$deplibs_check_method" && deplibs_check_method=unknown +@@ -6555,7 +7018,7 @@ LTCFLAGS=${LTCFLAGS-"$CFLAGS"} + compiler=$CC + + # Check whether --enable-libtool-lock was given. +-if test "${enable_libtool_lock+set}" = set; then ++if test "${enable_libtool_lock+set}" = set; then : + enableval=$enable_libtool_lock; + fi + +@@ -6567,11 +7030,11 @@ case $host in + ia64-*-hpux*) + # Find out which ABI we are using. + echo 'int i;' > conftest.$ac_ext +- if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 ++ if { { eval echo "\"\$as_me\":${as_lineno-$LINENO}: \"$ac_compile\""; } >&5 + (eval $ac_compile) 2>&5 + ac_status=$? +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); }; then ++ $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 ++ test $ac_status = 0; }; then + case `/usr/bin/file conftest.$ac_objext` in + *ELF-32*) + HPUX_IA64_MODE="32" +@@ -6585,12 +7048,12 @@ ia64-*-hpux*) + ;; + *-*-irix6*) + # Find out which ABI we are using. +- echo '#line 6588 "configure"' > conftest.$ac_ext +- if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 ++ echo '#line 7051 "configure"' > conftest.$ac_ext ++ if { { eval echo "\"\$as_me\":${as_lineno-$LINENO}: \"$ac_compile\""; } >&5 + (eval $ac_compile) 2>&5 + ac_status=$? +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); }; then ++ $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 ++ test $ac_status = 0; }; then + if test "$lt_cv_prog_gnu_ld" = yes; then + case `/usr/bin/file conftest.$ac_objext` in + *32-bit*) +@@ -6624,11 +7087,11 @@ x86_64-*kfreebsd*-gnu|x86_64-*linux*|ppc*-*linux*|powerpc*-*linux*| \ + s390*-*linux*|sparc*-*linux*) + # Find out which ABI we are using. + echo 'int i;' > conftest.$ac_ext +- if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 ++ if { { eval echo "\"\$as_me\":${as_lineno-$LINENO}: \"$ac_compile\""; } >&5 + (eval $ac_compile) 2>&5 + ac_status=$? +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); }; then ++ $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 ++ test $ac_status = 0; }; then + case `/usr/bin/file conftest.o` in + *32-bit*) + case $host in +@@ -6677,10 +7140,10 @@ s390*-*linux*|sparc*-*linux*) + # On SCO OpenServer 5, we need -belf to get full-featured binaries. + SAVE_CFLAGS="$CFLAGS" + CFLAGS="$CFLAGS -belf" +- { echo "$as_me:$LINENO: checking whether the C compiler needs -belf" >&5 +-echo $ECHO_N "checking whether the C compiler needs -belf... $ECHO_C" >&6; } +-if test "${lt_cv_cc_needs_belf+set}" = set; then +- echo $ECHO_N "(cached) $ECHO_C" >&6 ++ { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether the C compiler needs -belf" >&5 ++$as_echo_n "checking whether the C compiler needs -belf... " >&6; } ++if ${lt_cv_cc_needs_belf+:} false; then : ++ $as_echo_n "(cached) " >&6 + else + ac_ext=c + ac_cpp='$CPP $CPPFLAGS' +@@ -6688,11 +7151,7 @@ ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' + ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' + ac_compiler_gnu=$ac_cv_c_compiler_gnu + +- cat >conftest.$ac_ext <<_ACEOF +-/* confdefs.h. */ +-_ACEOF +-cat confdefs.h >>conftest.$ac_ext +-cat >>conftest.$ac_ext <<_ACEOF ++ cat confdefs.h - <<_ACEOF >conftest.$ac_ext + /* end confdefs.h. */ + + int +@@ -6703,34 +7162,13 @@ main () + return 0; + } + _ACEOF +-rm -f conftest.$ac_objext conftest$ac_exeext +-if { (ac_try="$ac_link" +-case "(($ac_try" in +- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; +- *) ac_try_echo=$ac_try;; +-esac +-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 +- (eval "$ac_link") 2>conftest.er1 +- ac_status=$? +- grep -v '^ *+' conftest.er1 >conftest.err +- rm -f conftest.er1 +- cat conftest.err >&5 +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); } && { +- test -z "$ac_c_werror_flag" || +- test ! -s conftest.err +- } && test -s conftest$ac_exeext && +- $as_test_x conftest$ac_exeext; then ++if ac_fn_c_try_link "$LINENO"; then : + lt_cv_cc_needs_belf=yes + else +- echo "$as_me: failed program was:" >&5 +-sed 's/^/| /' conftest.$ac_ext >&5 +- +- lt_cv_cc_needs_belf=no ++ lt_cv_cc_needs_belf=no + fi +- +-rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ +- conftest$ac_exeext conftest.$ac_ext ++rm -f core conftest.err conftest.$ac_objext \ ++ conftest$ac_exeext conftest.$ac_ext + ac_ext=c + ac_cpp='$CPP $CPPFLAGS' + ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' +@@ -6738,8 +7176,8 @@ ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $ + ac_compiler_gnu=$ac_cv_c_compiler_gnu + + fi +-{ echo "$as_me:$LINENO: result: $lt_cv_cc_needs_belf" >&5 +-echo "${ECHO_T}$lt_cv_cc_needs_belf" >&6; } ++{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_cv_cc_needs_belf" >&5 ++$as_echo "$lt_cv_cc_needs_belf" >&6; } + if test x"$lt_cv_cc_needs_belf" != x"yes"; then + # this is probably gcc 2.8.0, egcs 1.0 or newer; no need for -belf + CFLAGS="$SAVE_CFLAGS" +@@ -6748,11 +7186,11 @@ echo "${ECHO_T}$lt_cv_cc_needs_belf" >&6; } + sparc*-*solaris*) + # Find out which ABI we are using. + echo 'int i;' > conftest.$ac_ext +- if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 ++ if { { eval echo "\"\$as_me\":${as_lineno-$LINENO}: \"$ac_compile\""; } >&5 + (eval $ac_compile) 2>&5 + ac_status=$? +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); }; then ++ $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 ++ test $ac_status = 0; }; then + case `/usr/bin/file conftest.o` in + *64-bit*) + case $lt_cv_prog_gnu_ld in +@@ -6773,10 +7211,10 @@ sparc*-*solaris*) + if test -n "$ac_tool_prefix"; then + # Extract the first word of "${ac_tool_prefix}dlltool", so it can be a program name with args. + set dummy ${ac_tool_prefix}dlltool; ac_word=$2 +-{ echo "$as_me:$LINENO: checking for $ac_word" >&5 +-echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6; } +-if test "${ac_cv_prog_DLLTOOL+set}" = set; then +- echo $ECHO_N "(cached) $ECHO_C" >&6 ++{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 ++$as_echo_n "checking for $ac_word... " >&6; } ++if ${ac_cv_prog_DLLTOOL+:} false; then : ++ $as_echo_n "(cached) " >&6 + else + if test -n "$DLLTOOL"; then + ac_cv_prog_DLLTOOL="$DLLTOOL" # Let the user override the test. +@@ -6786,25 +7224,25 @@ for as_dir in $PATH + do + IFS=$as_save_IFS + test -z "$as_dir" && as_dir=. +- for ac_exec_ext in '' $ac_executable_extensions; do +- if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then ++ for ac_exec_ext in '' $ac_executable_extensions; do ++ if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then + ac_cv_prog_DLLTOOL="${ac_tool_prefix}dlltool" +- echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 ++ $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 + break 2 + fi + done +-done ++ done + IFS=$as_save_IFS + + fi + fi + DLLTOOL=$ac_cv_prog_DLLTOOL + if test -n "$DLLTOOL"; then +- { echo "$as_me:$LINENO: result: $DLLTOOL" >&5 +-echo "${ECHO_T}$DLLTOOL" >&6; } ++ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $DLLTOOL" >&5 ++$as_echo "$DLLTOOL" >&6; } + else +- { echo "$as_me:$LINENO: result: no" >&5 +-echo "${ECHO_T}no" >&6; } ++ { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 ++$as_echo "no" >&6; } + fi + + +@@ -6813,10 +7251,10 @@ if test -z "$ac_cv_prog_DLLTOOL"; then + ac_ct_DLLTOOL=$DLLTOOL + # Extract the first word of "dlltool", so it can be a program name with args. + set dummy dlltool; ac_word=$2 +-{ echo "$as_me:$LINENO: checking for $ac_word" >&5 +-echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6; } +-if test "${ac_cv_prog_ac_ct_DLLTOOL+set}" = set; then +- echo $ECHO_N "(cached) $ECHO_C" >&6 ++{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 ++$as_echo_n "checking for $ac_word... " >&6; } ++if ${ac_cv_prog_ac_ct_DLLTOOL+:} false; then : ++ $as_echo_n "(cached) " >&6 + else + if test -n "$ac_ct_DLLTOOL"; then + ac_cv_prog_ac_ct_DLLTOOL="$ac_ct_DLLTOOL" # Let the user override the test. +@@ -6826,25 +7264,25 @@ for as_dir in $PATH + do + IFS=$as_save_IFS + test -z "$as_dir" && as_dir=. +- for ac_exec_ext in '' $ac_executable_extensions; do +- if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then ++ for ac_exec_ext in '' $ac_executable_extensions; do ++ if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then + ac_cv_prog_ac_ct_DLLTOOL="dlltool" +- echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 ++ $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 + break 2 + fi + done +-done ++ done + IFS=$as_save_IFS + + fi + fi + ac_ct_DLLTOOL=$ac_cv_prog_ac_ct_DLLTOOL + if test -n "$ac_ct_DLLTOOL"; then +- { echo "$as_me:$LINENO: result: $ac_ct_DLLTOOL" >&5 +-echo "${ECHO_T}$ac_ct_DLLTOOL" >&6; } ++ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_ct_DLLTOOL" >&5 ++$as_echo "$ac_ct_DLLTOOL" >&6; } + else +- { echo "$as_me:$LINENO: result: no" >&5 +-echo "${ECHO_T}no" >&6; } ++ { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 ++$as_echo "no" >&6; } + fi + + if test "x$ac_ct_DLLTOOL" = x; then +@@ -6852,12 +7290,8 @@ fi + else + case $cross_compiling:$ac_tool_warned in + yes:) +-{ echo "$as_me:$LINENO: WARNING: In the future, Autoconf will not detect cross-tools +-whose name does not start with the host triplet. If you think this +-configuration is useful to you, please write to autoconf@gnu.org." >&5 +-echo "$as_me: WARNING: In the future, Autoconf will not detect cross-tools +-whose name does not start with the host triplet. If you think this +-configuration is useful to you, please write to autoconf@gnu.org." >&2;} ++{ $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet" >&5 ++$as_echo "$as_me: WARNING: using cross tools not prefixed with host triplet" >&2;} + ac_tool_warned=yes ;; + esac + DLLTOOL=$ac_ct_DLLTOOL +@@ -6869,10 +7303,10 @@ fi + if test -n "$ac_tool_prefix"; then + # Extract the first word of "${ac_tool_prefix}as", so it can be a program name with args. + set dummy ${ac_tool_prefix}as; ac_word=$2 +-{ echo "$as_me:$LINENO: checking for $ac_word" >&5 +-echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6; } +-if test "${ac_cv_prog_AS+set}" = set; then +- echo $ECHO_N "(cached) $ECHO_C" >&6 ++{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 ++$as_echo_n "checking for $ac_word... " >&6; } ++if ${ac_cv_prog_AS+:} false; then : ++ $as_echo_n "(cached) " >&6 + else + if test -n "$AS"; then + ac_cv_prog_AS="$AS" # Let the user override the test. +@@ -6882,25 +7316,25 @@ for as_dir in $PATH + do + IFS=$as_save_IFS + test -z "$as_dir" && as_dir=. +- for ac_exec_ext in '' $ac_executable_extensions; do +- if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then ++ for ac_exec_ext in '' $ac_executable_extensions; do ++ if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then + ac_cv_prog_AS="${ac_tool_prefix}as" +- echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 ++ $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 + break 2 + fi + done +-done ++ done + IFS=$as_save_IFS + + fi + fi + AS=$ac_cv_prog_AS + if test -n "$AS"; then +- { echo "$as_me:$LINENO: result: $AS" >&5 +-echo "${ECHO_T}$AS" >&6; } ++ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $AS" >&5 ++$as_echo "$AS" >&6; } + else +- { echo "$as_me:$LINENO: result: no" >&5 +-echo "${ECHO_T}no" >&6; } ++ { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 ++$as_echo "no" >&6; } + fi + + +@@ -6909,10 +7343,10 @@ if test -z "$ac_cv_prog_AS"; then + ac_ct_AS=$AS + # Extract the first word of "as", so it can be a program name with args. + set dummy as; ac_word=$2 +-{ echo "$as_me:$LINENO: checking for $ac_word" >&5 +-echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6; } +-if test "${ac_cv_prog_ac_ct_AS+set}" = set; then +- echo $ECHO_N "(cached) $ECHO_C" >&6 ++{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 ++$as_echo_n "checking for $ac_word... " >&6; } ++if ${ac_cv_prog_ac_ct_AS+:} false; then : ++ $as_echo_n "(cached) " >&6 + else + if test -n "$ac_ct_AS"; then + ac_cv_prog_ac_ct_AS="$ac_ct_AS" # Let the user override the test. +@@ -6922,25 +7356,25 @@ for as_dir in $PATH + do + IFS=$as_save_IFS + test -z "$as_dir" && as_dir=. +- for ac_exec_ext in '' $ac_executable_extensions; do +- if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then ++ for ac_exec_ext in '' $ac_executable_extensions; do ++ if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then + ac_cv_prog_ac_ct_AS="as" +- echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 ++ $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 + break 2 + fi + done +-done ++ done + IFS=$as_save_IFS + + fi + fi + ac_ct_AS=$ac_cv_prog_ac_ct_AS + if test -n "$ac_ct_AS"; then +- { echo "$as_me:$LINENO: result: $ac_ct_AS" >&5 +-echo "${ECHO_T}$ac_ct_AS" >&6; } ++ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_ct_AS" >&5 ++$as_echo "$ac_ct_AS" >&6; } + else +- { echo "$as_me:$LINENO: result: no" >&5 +-echo "${ECHO_T}no" >&6; } ++ { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 ++$as_echo "no" >&6; } + fi + + if test "x$ac_ct_AS" = x; then +@@ -6948,12 +7382,8 @@ fi + else + case $cross_compiling:$ac_tool_warned in + yes:) +-{ echo "$as_me:$LINENO: WARNING: In the future, Autoconf will not detect cross-tools +-whose name does not start with the host triplet. If you think this +-configuration is useful to you, please write to autoconf@gnu.org." >&5 +-echo "$as_me: WARNING: In the future, Autoconf will not detect cross-tools +-whose name does not start with the host triplet. If you think this +-configuration is useful to you, please write to autoconf@gnu.org." >&2;} ++{ $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet" >&5 ++$as_echo "$as_me: WARNING: using cross tools not prefixed with host triplet" >&2;} + ac_tool_warned=yes ;; + esac + AS=$ac_ct_AS +@@ -6965,10 +7395,10 @@ fi + if test -n "$ac_tool_prefix"; then + # Extract the first word of "${ac_tool_prefix}objdump", so it can be a program name with args. + set dummy ${ac_tool_prefix}objdump; ac_word=$2 +-{ echo "$as_me:$LINENO: checking for $ac_word" >&5 +-echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6; } +-if test "${ac_cv_prog_OBJDUMP+set}" = set; then +- echo $ECHO_N "(cached) $ECHO_C" >&6 ++{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 ++$as_echo_n "checking for $ac_word... " >&6; } ++if ${ac_cv_prog_OBJDUMP+:} false; then : ++ $as_echo_n "(cached) " >&6 + else + if test -n "$OBJDUMP"; then + ac_cv_prog_OBJDUMP="$OBJDUMP" # Let the user override the test. +@@ -6978,25 +7408,25 @@ for as_dir in $PATH + do + IFS=$as_save_IFS + test -z "$as_dir" && as_dir=. +- for ac_exec_ext in '' $ac_executable_extensions; do +- if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then ++ for ac_exec_ext in '' $ac_executable_extensions; do ++ if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then + ac_cv_prog_OBJDUMP="${ac_tool_prefix}objdump" +- echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 ++ $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 + break 2 + fi + done +-done ++ done + IFS=$as_save_IFS + + fi + fi + OBJDUMP=$ac_cv_prog_OBJDUMP + if test -n "$OBJDUMP"; then +- { echo "$as_me:$LINENO: result: $OBJDUMP" >&5 +-echo "${ECHO_T}$OBJDUMP" >&6; } ++ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $OBJDUMP" >&5 ++$as_echo "$OBJDUMP" >&6; } + else +- { echo "$as_me:$LINENO: result: no" >&5 +-echo "${ECHO_T}no" >&6; } ++ { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 ++$as_echo "no" >&6; } + fi + + +@@ -7005,10 +7435,10 @@ if test -z "$ac_cv_prog_OBJDUMP"; then + ac_ct_OBJDUMP=$OBJDUMP + # Extract the first word of "objdump", so it can be a program name with args. + set dummy objdump; ac_word=$2 +-{ echo "$as_me:$LINENO: checking for $ac_word" >&5 +-echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6; } +-if test "${ac_cv_prog_ac_ct_OBJDUMP+set}" = set; then +- echo $ECHO_N "(cached) $ECHO_C" >&6 ++{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 ++$as_echo_n "checking for $ac_word... " >&6; } ++if ${ac_cv_prog_ac_ct_OBJDUMP+:} false; then : ++ $as_echo_n "(cached) " >&6 + else + if test -n "$ac_ct_OBJDUMP"; then + ac_cv_prog_ac_ct_OBJDUMP="$ac_ct_OBJDUMP" # Let the user override the test. +@@ -7018,25 +7448,25 @@ for as_dir in $PATH + do + IFS=$as_save_IFS + test -z "$as_dir" && as_dir=. +- for ac_exec_ext in '' $ac_executable_extensions; do +- if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then ++ for ac_exec_ext in '' $ac_executable_extensions; do ++ if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then + ac_cv_prog_ac_ct_OBJDUMP="objdump" +- echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 ++ $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 + break 2 + fi + done +-done ++ done + IFS=$as_save_IFS + + fi + fi + ac_ct_OBJDUMP=$ac_cv_prog_ac_ct_OBJDUMP + if test -n "$ac_ct_OBJDUMP"; then +- { echo "$as_me:$LINENO: result: $ac_ct_OBJDUMP" >&5 +-echo "${ECHO_T}$ac_ct_OBJDUMP" >&6; } ++ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_ct_OBJDUMP" >&5 ++$as_echo "$ac_ct_OBJDUMP" >&6; } + else +- { echo "$as_me:$LINENO: result: no" >&5 +-echo "${ECHO_T}no" >&6; } ++ { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 ++$as_echo "no" >&6; } + fi + + if test "x$ac_ct_OBJDUMP" = x; then +@@ -7044,12 +7474,8 @@ fi + else + case $cross_compiling:$ac_tool_warned in + yes:) +-{ echo "$as_me:$LINENO: WARNING: In the future, Autoconf will not detect cross-tools +-whose name does not start with the host triplet. If you think this +-configuration is useful to you, please write to autoconf@gnu.org." >&5 +-echo "$as_me: WARNING: In the future, Autoconf will not detect cross-tools +-whose name does not start with the host triplet. If you think this +-configuration is useful to you, please write to autoconf@gnu.org." >&2;} ++{ $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet" >&5 ++$as_echo "$as_me: WARNING: using cross tools not prefixed with host triplet" >&2;} + ac_tool_warned=yes ;; + esac + OBJDUMP=$ac_ct_OBJDUMP +@@ -7065,16 +7491,12 @@ esac + need_locks="$enable_libtool_lock" + + +-{ echo "$as_me:$LINENO: checking for ANSI C header files" >&5 +-echo $ECHO_N "checking for ANSI C header files... $ECHO_C" >&6; } +-if test "${ac_cv_header_stdc+set}" = set; then +- echo $ECHO_N "(cached) $ECHO_C" >&6 ++{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for ANSI C header files" >&5 ++$as_echo_n "checking for ANSI C header files... " >&6; } ++if ${ac_cv_header_stdc+:} false; then : ++ $as_echo_n "(cached) " >&6 + else +- cat >conftest.$ac_ext <<_ACEOF +-/* confdefs.h. */ +-_ACEOF +-cat confdefs.h >>conftest.$ac_ext +-cat >>conftest.$ac_ext <<_ACEOF ++ cat confdefs.h - <<_ACEOF >conftest.$ac_ext + /* end confdefs.h. */ + #include + #include +@@ -7089,47 +7511,23 @@ main () + return 0; + } + _ACEOF +-rm -f conftest.$ac_objext +-if { (ac_try="$ac_compile" +-case "(($ac_try" in +- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; +- *) ac_try_echo=$ac_try;; +-esac +-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 +- (eval "$ac_compile") 2>conftest.er1 +- ac_status=$? +- grep -v '^ *+' conftest.er1 >conftest.err +- rm -f conftest.er1 +- cat conftest.err >&5 +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); } && { +- test -z "$ac_c_werror_flag" || +- test ! -s conftest.err +- } && test -s conftest.$ac_objext; then ++if ac_fn_c_try_compile "$LINENO"; then : + ac_cv_header_stdc=yes + else +- echo "$as_me: failed program was:" >&5 +-sed 's/^/| /' conftest.$ac_ext >&5 +- +- ac_cv_header_stdc=no ++ ac_cv_header_stdc=no + fi +- + rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext + + if test $ac_cv_header_stdc = yes; then + # SunOS 4.x string.h does not declare mem*, contrary to ANSI. +- cat >conftest.$ac_ext <<_ACEOF +-/* confdefs.h. */ +-_ACEOF +-cat confdefs.h >>conftest.$ac_ext +-cat >>conftest.$ac_ext <<_ACEOF ++ cat confdefs.h - <<_ACEOF >conftest.$ac_ext + /* end confdefs.h. */ + #include + + _ACEOF + if (eval "$ac_cpp conftest.$ac_ext") 2>&5 | +- $EGREP "memchr" >/dev/null 2>&1; then +- : ++ $EGREP "memchr" >/dev/null 2>&1; then : ++ + else + ac_cv_header_stdc=no + fi +@@ -7139,18 +7537,14 @@ fi + + if test $ac_cv_header_stdc = yes; then + # ISC 2.0.2 stdlib.h does not declare free, contrary to ANSI. +- cat >conftest.$ac_ext <<_ACEOF +-/* confdefs.h. */ +-_ACEOF +-cat confdefs.h >>conftest.$ac_ext +-cat >>conftest.$ac_ext <<_ACEOF ++ cat confdefs.h - <<_ACEOF >conftest.$ac_ext + /* end confdefs.h. */ + #include + + _ACEOF + if (eval "$ac_cpp conftest.$ac_ext") 2>&5 | +- $EGREP "free" >/dev/null 2>&1; then +- : ++ $EGREP "free" >/dev/null 2>&1; then : ++ + else + ac_cv_header_stdc=no + fi +@@ -7160,14 +7554,10 @@ fi + + if test $ac_cv_header_stdc = yes; then + # /bin/cc in Irix-4.0.5 gets non-ANSI ctype macros unless using -ansi. +- if test "$cross_compiling" = yes; then ++ if test "$cross_compiling" = yes; then : + : + else +- cat >conftest.$ac_ext <<_ACEOF +-/* confdefs.h. */ +-_ACEOF +-cat confdefs.h >>conftest.$ac_ext +-cat >>conftest.$ac_ext <<_ACEOF ++ cat confdefs.h - <<_ACEOF >conftest.$ac_ext + /* end confdefs.h. */ + #include + #include +@@ -7194,113 +7584,35 @@ main () + return 0; + } + _ACEOF +-rm -f conftest$ac_exeext +-if { (ac_try="$ac_link" +-case "(($ac_try" in +- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; +- *) ac_try_echo=$ac_try;; +-esac +-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 +- (eval "$ac_link") 2>&5 +- ac_status=$? +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); } && { ac_try='./conftest$ac_exeext' +- { (case "(($ac_try" in +- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; +- *) ac_try_echo=$ac_try;; +-esac +-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 +- (eval "$ac_try") 2>&5 +- ac_status=$? +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); }; }; then +- : +-else +- echo "$as_me: program exited with status $ac_status" >&5 +-echo "$as_me: failed program was:" >&5 +-sed 's/^/| /' conftest.$ac_ext >&5 ++if ac_fn_c_try_run "$LINENO"; then : + +-( exit $ac_status ) +-ac_cv_header_stdc=no ++else ++ ac_cv_header_stdc=no + fi +-rm -f core *.core core.conftest.* gmon.out bb.out conftest$ac_exeext conftest.$ac_objext conftest.$ac_ext ++rm -f core *.core core.conftest.* gmon.out bb.out conftest$ac_exeext \ ++ conftest.$ac_objext conftest.beam conftest.$ac_ext + fi + +- + fi + fi +-{ echo "$as_me:$LINENO: result: $ac_cv_header_stdc" >&5 +-echo "${ECHO_T}$ac_cv_header_stdc" >&6; } ++{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_header_stdc" >&5 ++$as_echo "$ac_cv_header_stdc" >&6; } + if test $ac_cv_header_stdc = yes; then + +-cat >>confdefs.h <<\_ACEOF +-#define STDC_HEADERS 1 +-_ACEOF ++$as_echo "#define STDC_HEADERS 1" >>confdefs.h + + fi + + # On IRIX 5.3, sys/types and inttypes.h are conflicting. +- +- +- +- +- +- +- +- +- + for ac_header in sys/types.h sys/stat.h stdlib.h string.h memory.h strings.h \ + inttypes.h stdint.h unistd.h +-do +-as_ac_Header=`echo "ac_cv_header_$ac_header" | $as_tr_sh` +-{ echo "$as_me:$LINENO: checking for $ac_header" >&5 +-echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6; } +-if { as_var=$as_ac_Header; eval "test \"\${$as_var+set}\" = set"; }; then +- echo $ECHO_N "(cached) $ECHO_C" >&6 +-else +- cat >conftest.$ac_ext <<_ACEOF +-/* confdefs.h. */ +-_ACEOF +-cat confdefs.h >>conftest.$ac_ext +-cat >>conftest.$ac_ext <<_ACEOF +-/* end confdefs.h. */ +-$ac_includes_default +- +-#include <$ac_header> +-_ACEOF +-rm -f conftest.$ac_objext +-if { (ac_try="$ac_compile" +-case "(($ac_try" in +- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; +- *) ac_try_echo=$ac_try;; +-esac +-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 +- (eval "$ac_compile") 2>conftest.er1 +- ac_status=$? +- grep -v '^ *+' conftest.er1 >conftest.err +- rm -f conftest.er1 +- cat conftest.err >&5 +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); } && { +- test -z "$ac_c_werror_flag" || +- test ! -s conftest.err +- } && test -s conftest.$ac_objext; then +- eval "$as_ac_Header=yes" +-else +- echo "$as_me: failed program was:" >&5 +-sed 's/^/| /' conftest.$ac_ext >&5 +- +- eval "$as_ac_Header=no" +-fi +- +-rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext +-fi +-ac_res=`eval echo '${'$as_ac_Header'}'` +- { echo "$as_me:$LINENO: result: $ac_res" >&5 +-echo "${ECHO_T}$ac_res" >&6; } +-if test `eval echo '${'$as_ac_Header'}'` = yes; then ++do : ++ as_ac_Header=`$as_echo "ac_cv_header_$ac_header" | $as_tr_sh` ++ac_fn_c_check_header_compile "$LINENO" "$ac_header" "$as_ac_Header" "$ac_includes_default ++" ++if eval test \"x\$"$as_ac_Header"\" = x"yes"; then : + cat >>confdefs.h <<_ACEOF +-#define `echo "HAVE_$ac_header" | $as_tr_cpp` 1 ++#define `$as_echo "HAVE_$ac_header" | $as_tr_cpp` 1 + _ACEOF + + fi +@@ -7308,140 +7620,12 @@ fi + done + + +- + for ac_header in dlfcn.h +-do +-as_ac_Header=`echo "ac_cv_header_$ac_header" | $as_tr_sh` +-if { as_var=$as_ac_Header; eval "test \"\${$as_var+set}\" = set"; }; then +- { echo "$as_me:$LINENO: checking for $ac_header" >&5 +-echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6; } +-if { as_var=$as_ac_Header; eval "test \"\${$as_var+set}\" = set"; }; then +- echo $ECHO_N "(cached) $ECHO_C" >&6 +-fi +-ac_res=`eval echo '${'$as_ac_Header'}'` +- { echo "$as_me:$LINENO: result: $ac_res" >&5 +-echo "${ECHO_T}$ac_res" >&6; } +-else +- # Is the header compilable? +-{ echo "$as_me:$LINENO: checking $ac_header usability" >&5 +-echo $ECHO_N "checking $ac_header usability... $ECHO_C" >&6; } +-cat >conftest.$ac_ext <<_ACEOF +-/* confdefs.h. */ +-_ACEOF +-cat confdefs.h >>conftest.$ac_ext +-cat >>conftest.$ac_ext <<_ACEOF +-/* end confdefs.h. */ +-$ac_includes_default +-#include <$ac_header> +-_ACEOF +-rm -f conftest.$ac_objext +-if { (ac_try="$ac_compile" +-case "(($ac_try" in +- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; +- *) ac_try_echo=$ac_try;; +-esac +-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 +- (eval "$ac_compile") 2>conftest.er1 +- ac_status=$? +- grep -v '^ *+' conftest.er1 >conftest.err +- rm -f conftest.er1 +- cat conftest.err >&5 +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); } && { +- test -z "$ac_c_werror_flag" || +- test ! -s conftest.err +- } && test -s conftest.$ac_objext; then +- ac_header_compiler=yes +-else +- echo "$as_me: failed program was:" >&5 +-sed 's/^/| /' conftest.$ac_ext >&5 +- +- ac_header_compiler=no +-fi +- +-rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext +-{ echo "$as_me:$LINENO: result: $ac_header_compiler" >&5 +-echo "${ECHO_T}$ac_header_compiler" >&6; } +- +-# Is the header present? +-{ echo "$as_me:$LINENO: checking $ac_header presence" >&5 +-echo $ECHO_N "checking $ac_header presence... $ECHO_C" >&6; } +-cat >conftest.$ac_ext <<_ACEOF +-/* confdefs.h. */ +-_ACEOF +-cat confdefs.h >>conftest.$ac_ext +-cat >>conftest.$ac_ext <<_ACEOF +-/* end confdefs.h. */ +-#include <$ac_header> +-_ACEOF +-if { (ac_try="$ac_cpp conftest.$ac_ext" +-case "(($ac_try" in +- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; +- *) ac_try_echo=$ac_try;; +-esac +-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 +- (eval "$ac_cpp conftest.$ac_ext") 2>conftest.er1 +- ac_status=$? +- grep -v '^ *+' conftest.er1 >conftest.err +- rm -f conftest.er1 +- cat conftest.err >&5 +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); } >/dev/null && { +- test -z "$ac_c_preproc_warn_flag$ac_c_werror_flag" || +- test ! -s conftest.err +- }; then +- ac_header_preproc=yes +-else +- echo "$as_me: failed program was:" >&5 +-sed 's/^/| /' conftest.$ac_ext >&5 +- +- ac_header_preproc=no +-fi +- +-rm -f conftest.err conftest.$ac_ext +-{ echo "$as_me:$LINENO: result: $ac_header_preproc" >&5 +-echo "${ECHO_T}$ac_header_preproc" >&6; } +- +-# So? What about this header? +-case $ac_header_compiler:$ac_header_preproc:$ac_c_preproc_warn_flag in +- yes:no: ) +- { echo "$as_me:$LINENO: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&5 +-echo "$as_me: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&2;} +- { echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the compiler's result" >&5 +-echo "$as_me: WARNING: $ac_header: proceeding with the compiler's result" >&2;} +- ac_header_preproc=yes +- ;; +- no:yes:* ) +- { echo "$as_me:$LINENO: WARNING: $ac_header: present but cannot be compiled" >&5 +-echo "$as_me: WARNING: $ac_header: present but cannot be compiled" >&2;} +- { echo "$as_me:$LINENO: WARNING: $ac_header: check for missing prerequisite headers?" >&5 +-echo "$as_me: WARNING: $ac_header: check for missing prerequisite headers?" >&2;} +- { echo "$as_me:$LINENO: WARNING: $ac_header: see the Autoconf documentation" >&5 +-echo "$as_me: WARNING: $ac_header: see the Autoconf documentation" >&2;} +- { echo "$as_me:$LINENO: WARNING: $ac_header: section \"Present But Cannot Be Compiled\"" >&5 +-echo "$as_me: WARNING: $ac_header: section \"Present But Cannot Be Compiled\"" >&2;} +- { echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the preprocessor's result" >&5 +-echo "$as_me: WARNING: $ac_header: proceeding with the preprocessor's result" >&2;} +- { echo "$as_me:$LINENO: WARNING: $ac_header: in the future, the compiler will take precedence" >&5 +-echo "$as_me: WARNING: $ac_header: in the future, the compiler will take precedence" >&2;} +- +- ;; +-esac +-{ echo "$as_me:$LINENO: checking for $ac_header" >&5 +-echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6; } +-if { as_var=$as_ac_Header; eval "test \"\${$as_var+set}\" = set"; }; then +- echo $ECHO_N "(cached) $ECHO_C" >&6 +-else +- eval "$as_ac_Header=\$ac_header_preproc" +-fi +-ac_res=`eval echo '${'$as_ac_Header'}'` +- { echo "$as_me:$LINENO: result: $ac_res" >&5 +-echo "${ECHO_T}$ac_res" >&6; } +- +-fi +-if test `eval echo '${'$as_ac_Header'}'` = yes; then ++do : ++ ac_fn_c_check_header_mongrel "$LINENO" "dlfcn.h" "ac_cv_header_dlfcn_h" "$ac_includes_default" ++if test "x$ac_cv_header_dlfcn_h" = xyes; then : + cat >>confdefs.h <<_ACEOF +-#define `echo "HAVE_$ac_header" | $as_tr_cpp` 1 ++#define HAVE_DLFCN_H 1 + _ACEOF + + fi +@@ -7458,11 +7642,11 @@ ac_cpp='$CXXCPP $CPPFLAGS' + ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' + ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' + ac_compiler_gnu=$ac_cv_cxx_compiler_gnu +-{ echo "$as_me:$LINENO: checking how to run the C++ preprocessor" >&5 +-echo $ECHO_N "checking how to run the C++ preprocessor... $ECHO_C" >&6; } ++{ $as_echo "$as_me:${as_lineno-$LINENO}: checking how to run the C++ preprocessor" >&5 ++$as_echo_n "checking how to run the C++ preprocessor... " >&6; } + if test -z "$CXXCPP"; then +- if test "${ac_cv_prog_CXXCPP+set}" = set; then +- echo $ECHO_N "(cached) $ECHO_C" >&6 ++ if ${ac_cv_prog_CXXCPP+:} false; then : ++ $as_echo_n "(cached) " >&6 + else + # Double quotes because CXXCPP needs to be expanded + for CXXCPP in "$CXX -E" "/lib/cpp" +@@ -7476,11 +7660,7 @@ do + # exists even on freestanding compilers. + # On the NeXT, cc -E runs the code through the compiler's parser, + # not just through cpp. "Syntax error" is here to catch this case. +- cat >conftest.$ac_ext <<_ACEOF +-/* confdefs.h. */ +-_ACEOF +-cat confdefs.h >>conftest.$ac_ext +-cat >>conftest.$ac_ext <<_ACEOF ++ cat confdefs.h - <<_ACEOF >conftest.$ac_ext + /* end confdefs.h. */ + #ifdef __STDC__ + # include +@@ -7489,76 +7669,34 @@ cat >>conftest.$ac_ext <<_ACEOF + #endif + Syntax error + _ACEOF +-if { (ac_try="$ac_cpp conftest.$ac_ext" +-case "(($ac_try" in +- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; +- *) ac_try_echo=$ac_try;; +-esac +-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 +- (eval "$ac_cpp conftest.$ac_ext") 2>conftest.er1 +- ac_status=$? +- grep -v '^ *+' conftest.er1 >conftest.err +- rm -f conftest.er1 +- cat conftest.err >&5 +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); } >/dev/null && { +- test -z "$ac_cxx_preproc_warn_flag$ac_cxx_werror_flag" || +- test ! -s conftest.err +- }; then +- : +-else +- echo "$as_me: failed program was:" >&5 +-sed 's/^/| /' conftest.$ac_ext >&5 ++if ac_fn_cxx_try_cpp "$LINENO"; then : + ++else + # Broken: fails on valid input. + continue + fi +- +-rm -f conftest.err conftest.$ac_ext ++rm -f conftest.err conftest.i conftest.$ac_ext + + # OK, works on sane cases. Now check whether nonexistent headers + # can be detected and how. +- cat >conftest.$ac_ext <<_ACEOF +-/* confdefs.h. */ +-_ACEOF +-cat confdefs.h >>conftest.$ac_ext +-cat >>conftest.$ac_ext <<_ACEOF ++ cat confdefs.h - <<_ACEOF >conftest.$ac_ext + /* end confdefs.h. */ + #include + _ACEOF +-if { (ac_try="$ac_cpp conftest.$ac_ext" +-case "(($ac_try" in +- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; +- *) ac_try_echo=$ac_try;; +-esac +-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 +- (eval "$ac_cpp conftest.$ac_ext") 2>conftest.er1 +- ac_status=$? +- grep -v '^ *+' conftest.er1 >conftest.err +- rm -f conftest.er1 +- cat conftest.err >&5 +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); } >/dev/null && { +- test -z "$ac_cxx_preproc_warn_flag$ac_cxx_werror_flag" || +- test ! -s conftest.err +- }; then ++if ac_fn_cxx_try_cpp "$LINENO"; then : + # Broken: success on invalid input. + continue + else +- echo "$as_me: failed program was:" >&5 +-sed 's/^/| /' conftest.$ac_ext >&5 +- + # Passes both tests. + ac_preproc_ok=: + break + fi +- +-rm -f conftest.err conftest.$ac_ext ++rm -f conftest.err conftest.i conftest.$ac_ext + + done + # Because of `break', _AC_PREPROC_IFELSE's cleaning code was skipped. +-rm -f conftest.err conftest.$ac_ext +-if $ac_preproc_ok; then ++rm -f conftest.i conftest.err conftest.$ac_ext ++if $ac_preproc_ok; then : + break + fi + +@@ -7570,8 +7708,8 @@ fi + else + ac_cv_prog_CXXCPP=$CXXCPP + fi +-{ echo "$as_me:$LINENO: result: $CXXCPP" >&5 +-echo "${ECHO_T}$CXXCPP" >&6; } ++{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $CXXCPP" >&5 ++$as_echo "$CXXCPP" >&6; } + ac_preproc_ok=false + for ac_cxx_preproc_warn_flag in '' yes + do +@@ -7581,11 +7719,7 @@ do + # exists even on freestanding compilers. + # On the NeXT, cc -E runs the code through the compiler's parser, + # not just through cpp. "Syntax error" is here to catch this case. +- cat >conftest.$ac_ext <<_ACEOF +-/* confdefs.h. */ +-_ACEOF +-cat confdefs.h >>conftest.$ac_ext +-cat >>conftest.$ac_ext <<_ACEOF ++ cat confdefs.h - <<_ACEOF >conftest.$ac_ext + /* end confdefs.h. */ + #ifdef __STDC__ + # include +@@ -7594,83 +7728,40 @@ cat >>conftest.$ac_ext <<_ACEOF + #endif + Syntax error + _ACEOF +-if { (ac_try="$ac_cpp conftest.$ac_ext" +-case "(($ac_try" in +- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; +- *) ac_try_echo=$ac_try;; +-esac +-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 +- (eval "$ac_cpp conftest.$ac_ext") 2>conftest.er1 +- ac_status=$? +- grep -v '^ *+' conftest.er1 >conftest.err +- rm -f conftest.er1 +- cat conftest.err >&5 +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); } >/dev/null && { +- test -z "$ac_cxx_preproc_warn_flag$ac_cxx_werror_flag" || +- test ! -s conftest.err +- }; then +- : +-else +- echo "$as_me: failed program was:" >&5 +-sed 's/^/| /' conftest.$ac_ext >&5 ++if ac_fn_cxx_try_cpp "$LINENO"; then : + ++else + # Broken: fails on valid input. + continue + fi +- +-rm -f conftest.err conftest.$ac_ext ++rm -f conftest.err conftest.i conftest.$ac_ext + + # OK, works on sane cases. Now check whether nonexistent headers + # can be detected and how. +- cat >conftest.$ac_ext <<_ACEOF +-/* confdefs.h. */ +-_ACEOF +-cat confdefs.h >>conftest.$ac_ext +-cat >>conftest.$ac_ext <<_ACEOF ++ cat confdefs.h - <<_ACEOF >conftest.$ac_ext + /* end confdefs.h. */ + #include + _ACEOF +-if { (ac_try="$ac_cpp conftest.$ac_ext" +-case "(($ac_try" in +- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; +- *) ac_try_echo=$ac_try;; +-esac +-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 +- (eval "$ac_cpp conftest.$ac_ext") 2>conftest.er1 +- ac_status=$? +- grep -v '^ *+' conftest.er1 >conftest.err +- rm -f conftest.er1 +- cat conftest.err >&5 +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); } >/dev/null && { +- test -z "$ac_cxx_preproc_warn_flag$ac_cxx_werror_flag" || +- test ! -s conftest.err +- }; then ++if ac_fn_cxx_try_cpp "$LINENO"; then : + # Broken: success on invalid input. + continue + else +- echo "$as_me: failed program was:" >&5 +-sed 's/^/| /' conftest.$ac_ext >&5 +- + # Passes both tests. + ac_preproc_ok=: + break + fi +- +-rm -f conftest.err conftest.$ac_ext ++rm -f conftest.err conftest.i conftest.$ac_ext + + done + # Because of `break', _AC_PREPROC_IFELSE's cleaning code was skipped. +-rm -f conftest.err conftest.$ac_ext +-if $ac_preproc_ok; then +- : ++rm -f conftest.i conftest.err conftest.$ac_ext ++if $ac_preproc_ok; then : ++ + else +- { { echo "$as_me:$LINENO: error: C++ preprocessor \"$CXXCPP\" fails sanity check +-See \`config.log' for more details." >&5 +-echo "$as_me: error: C++ preprocessor \"$CXXCPP\" fails sanity check +-See \`config.log' for more details." >&2;} +- { (exit 1); exit 1; }; } ++ { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5 ++$as_echo "$as_me: error: in \`$ac_pwd':" >&2;} ++as_fn_error $? "C++ preprocessor \"$CXXCPP\" fails sanity check ++See \`config.log' for more details" "$LINENO" 5; } + fi + + ac_ext=cpp +@@ -7687,14 +7778,14 @@ ac_compile='$F77 -c $FFLAGS conftest.$ac_ext >&5' + ac_link='$F77 -o conftest$ac_exeext $FFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' + ac_compiler_gnu=$ac_cv_f77_compiler_gnu + if test -n "$ac_tool_prefix"; then +- for ac_prog in g77 xlf f77 frt pgf77 cf77 fort77 fl32 af77 xlf90 f90 pgf90 pghpf epcf90 gfortran g95 xlf95 f95 fort ifort ifc efc pgf95 lf95 ftn ++ for ac_prog in g77 xlf f77 frt pgf77 cf77 fort77 fl32 af77 xlf90 f90 pgf90 pghpf epcf90 gfortran g95 xlf95 f95 fort ifort ifc efc pgfortran pgf95 lf95 ftn nagfor + do + # Extract the first word of "$ac_tool_prefix$ac_prog", so it can be a program name with args. + set dummy $ac_tool_prefix$ac_prog; ac_word=$2 +-{ echo "$as_me:$LINENO: checking for $ac_word" >&5 +-echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6; } +-if test "${ac_cv_prog_F77+set}" = set; then +- echo $ECHO_N "(cached) $ECHO_C" >&6 ++{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 ++$as_echo_n "checking for $ac_word... " >&6; } ++if ${ac_cv_prog_F77+:} false; then : ++ $as_echo_n "(cached) " >&6 + else + if test -n "$F77"; then + ac_cv_prog_F77="$F77" # Let the user override the test. +@@ -7704,25 +7795,25 @@ for as_dir in $PATH + do + IFS=$as_save_IFS + test -z "$as_dir" && as_dir=. +- for ac_exec_ext in '' $ac_executable_extensions; do +- if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then ++ for ac_exec_ext in '' $ac_executable_extensions; do ++ if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then + ac_cv_prog_F77="$ac_tool_prefix$ac_prog" +- echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 ++ $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 + break 2 + fi + done +-done ++ done + IFS=$as_save_IFS + + fi + fi + F77=$ac_cv_prog_F77 + if test -n "$F77"; then +- { echo "$as_me:$LINENO: result: $F77" >&5 +-echo "${ECHO_T}$F77" >&6; } ++ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $F77" >&5 ++$as_echo "$F77" >&6; } + else +- { echo "$as_me:$LINENO: result: no" >&5 +-echo "${ECHO_T}no" >&6; } ++ { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 ++$as_echo "no" >&6; } + fi + + +@@ -7731,14 +7822,14 @@ fi + fi + if test -z "$F77"; then + ac_ct_F77=$F77 +- for ac_prog in g77 xlf f77 frt pgf77 cf77 fort77 fl32 af77 xlf90 f90 pgf90 pghpf epcf90 gfortran g95 xlf95 f95 fort ifort ifc efc pgf95 lf95 ftn ++ for ac_prog in g77 xlf f77 frt pgf77 cf77 fort77 fl32 af77 xlf90 f90 pgf90 pghpf epcf90 gfortran g95 xlf95 f95 fort ifort ifc efc pgfortran pgf95 lf95 ftn nagfor + do + # Extract the first word of "$ac_prog", so it can be a program name with args. + set dummy $ac_prog; ac_word=$2 +-{ echo "$as_me:$LINENO: checking for $ac_word" >&5 +-echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6; } +-if test "${ac_cv_prog_ac_ct_F77+set}" = set; then +- echo $ECHO_N "(cached) $ECHO_C" >&6 ++{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 ++$as_echo_n "checking for $ac_word... " >&6; } ++if ${ac_cv_prog_ac_ct_F77+:} false; then : ++ $as_echo_n "(cached) " >&6 + else + if test -n "$ac_ct_F77"; then + ac_cv_prog_ac_ct_F77="$ac_ct_F77" # Let the user override the test. +@@ -7748,25 +7839,25 @@ for as_dir in $PATH + do + IFS=$as_save_IFS + test -z "$as_dir" && as_dir=. +- for ac_exec_ext in '' $ac_executable_extensions; do +- if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then ++ for ac_exec_ext in '' $ac_executable_extensions; do ++ if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then + ac_cv_prog_ac_ct_F77="$ac_prog" +- echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 ++ $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 + break 2 + fi + done +-done ++ done + IFS=$as_save_IFS + + fi + fi + ac_ct_F77=$ac_cv_prog_ac_ct_F77 + if test -n "$ac_ct_F77"; then +- { echo "$as_me:$LINENO: result: $ac_ct_F77" >&5 +-echo "${ECHO_T}$ac_ct_F77" >&6; } ++ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_ct_F77" >&5 ++$as_echo "$ac_ct_F77" >&6; } + else +- { echo "$as_me:$LINENO: result: no" >&5 +-echo "${ECHO_T}no" >&6; } ++ { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 ++$as_echo "no" >&6; } + fi + + +@@ -7778,12 +7869,8 @@ done + else + case $cross_compiling:$ac_tool_warned in + yes:) +-{ echo "$as_me:$LINENO: WARNING: In the future, Autoconf will not detect cross-tools +-whose name does not start with the host triplet. If you think this +-configuration is useful to you, please write to autoconf@gnu.org." >&5 +-echo "$as_me: WARNING: In the future, Autoconf will not detect cross-tools +-whose name does not start with the host triplet. If you think this +-configuration is useful to you, please write to autoconf@gnu.org." >&2;} ++{ $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet" >&5 ++$as_echo "$as_me: WARNING: using cross tools not prefixed with host triplet" >&2;} + ac_tool_warned=yes ;; + esac + F77=$ac_ct_F77 +@@ -7792,50 +7879,41 @@ fi + + + # Provide some information about the compiler. +-echo "$as_me:$LINENO: checking for Fortran 77 compiler version" >&5 +-ac_compiler=`set X $ac_compile; echo $2` +-{ (ac_try="$ac_compiler --version >&5" ++$as_echo "$as_me:${as_lineno-$LINENO}: checking for Fortran 77 compiler version" >&5 ++set X $ac_compile ++ac_compiler=$2 ++for ac_option in --version -v -V -qversion; do ++ { { ac_try="$ac_compiler $ac_option >&5" + case "(($ac_try" in + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac +-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 +- (eval "$ac_compiler --version >&5") 2>&5 ++eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\"" ++$as_echo "$ac_try_echo"; } >&5 ++ (eval "$ac_compiler $ac_option >&5") 2>conftest.err + ac_status=$? +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); } +-{ (ac_try="$ac_compiler -v >&5" +-case "(($ac_try" in +- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; +- *) ac_try_echo=$ac_try;; +-esac +-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 +- (eval "$ac_compiler -v >&5") 2>&5 +- ac_status=$? +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); } +-{ (ac_try="$ac_compiler -V >&5" +-case "(($ac_try" in +- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; +- *) ac_try_echo=$ac_try;; +-esac +-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 +- (eval "$ac_compiler -V >&5") 2>&5 +- ac_status=$? +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); } ++ if test -s conftest.err; then ++ sed '10a\ ++... rest of stderr output deleted ... ++ 10q' conftest.err >conftest.er1 ++ cat conftest.er1 >&5 ++ fi ++ rm -f conftest.er1 conftest.err ++ $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 ++ test $ac_status = 0; } ++done + rm -f a.out + + # If we don't use `.F' as extension, the preprocessor is not run on the + # input file. (Note that this only needs to work for GNU compilers.) + ac_save_ext=$ac_ext + ac_ext=F +-{ echo "$as_me:$LINENO: checking whether we are using the GNU Fortran 77 compiler" >&5 +-echo $ECHO_N "checking whether we are using the GNU Fortran 77 compiler... $ECHO_C" >&6; } +-if test "${ac_cv_f77_compiler_gnu+set}" = set; then +- echo $ECHO_N "(cached) $ECHO_C" >&6 ++{ $as_echo "$as_me:${as_lineno-$LINENO}: checking whether we are using the GNU Fortran 77 compiler" >&5 ++$as_echo_n "checking whether we are using the GNU Fortran 77 compiler... " >&6; } ++if ${ac_cv_f77_compiler_gnu+:} false; then : ++ $as_echo_n "(cached) " >&6 + else +- cat >conftest.$ac_ext <<_ACEOF ++ cat > conftest.$ac_ext <<_ACEOF + program main + #ifndef __GNUC__ + choke me +@@ -7843,82 +7921,42 @@ else + + end + _ACEOF +-rm -f conftest.$ac_objext +-if { (ac_try="$ac_compile" +-case "(($ac_try" in +- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; +- *) ac_try_echo=$ac_try;; +-esac +-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 +- (eval "$ac_compile") 2>conftest.er1 +- ac_status=$? +- grep -v '^ *+' conftest.er1 >conftest.err +- rm -f conftest.er1 +- cat conftest.err >&5 +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); } && { +- test -z "$ac_f77_werror_flag" || +- test ! -s conftest.err +- } && test -s conftest.$ac_objext; then ++if ac_fn_f77_try_compile "$LINENO"; then : + ac_compiler_gnu=yes + else +- echo "$as_me: failed program was:" >&5 +-sed 's/^/| /' conftest.$ac_ext >&5 +- +- ac_compiler_gnu=no ++ ac_compiler_gnu=no + fi +- + rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext + ac_cv_f77_compiler_gnu=$ac_compiler_gnu + + fi +-{ echo "$as_me:$LINENO: result: $ac_cv_f77_compiler_gnu" >&5 +-echo "${ECHO_T}$ac_cv_f77_compiler_gnu" >&6; } ++{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_f77_compiler_gnu" >&5 ++$as_echo "$ac_cv_f77_compiler_gnu" >&6; } + ac_ext=$ac_save_ext + ac_test_FFLAGS=${FFLAGS+set} + ac_save_FFLAGS=$FFLAGS + FFLAGS= +-{ echo "$as_me:$LINENO: checking whether $F77 accepts -g" >&5 +-echo $ECHO_N "checking whether $F77 accepts -g... $ECHO_C" >&6; } +-if test "${ac_cv_prog_f77_g+set}" = set; then +- echo $ECHO_N "(cached) $ECHO_C" >&6 ++{ $as_echo "$as_me:${as_lineno-$LINENO}: checking whether $F77 accepts -g" >&5 ++$as_echo_n "checking whether $F77 accepts -g... " >&6; } ++if ${ac_cv_prog_f77_g+:} false; then : ++ $as_echo_n "(cached) " >&6 + else + FFLAGS=-g +-cat >conftest.$ac_ext <<_ACEOF ++cat > conftest.$ac_ext <<_ACEOF + program main + + end + _ACEOF +-rm -f conftest.$ac_objext +-if { (ac_try="$ac_compile" +-case "(($ac_try" in +- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; +- *) ac_try_echo=$ac_try;; +-esac +-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 +- (eval "$ac_compile") 2>conftest.er1 +- ac_status=$? +- grep -v '^ *+' conftest.er1 >conftest.err +- rm -f conftest.er1 +- cat conftest.err >&5 +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); } && { +- test -z "$ac_f77_werror_flag" || +- test ! -s conftest.err +- } && test -s conftest.$ac_objext; then ++if ac_fn_f77_try_compile "$LINENO"; then : + ac_cv_prog_f77_g=yes + else +- echo "$as_me: failed program was:" >&5 +-sed 's/^/| /' conftest.$ac_ext >&5 +- +- ac_cv_prog_f77_g=no ++ ac_cv_prog_f77_g=no + fi +- + rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext + + fi +-{ echo "$as_me:$LINENO: result: $ac_cv_prog_f77_g" >&5 +-echo "${ECHO_T}$ac_cv_prog_f77_g" >&6; } ++{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_prog_f77_g" >&5 ++$as_echo "$ac_cv_prog_f77_g" >&6; } + if test "$ac_test_FFLAGS" = set; then + FFLAGS=$ac_save_FFLAGS + elif test $ac_cv_prog_f77_g = yes; then +@@ -7935,7 +7973,11 @@ else + fi + fi + +-G77=`test $ac_compiler_gnu = yes && echo yes` ++if test $ac_compiler_gnu = yes; then ++ G77=yes ++else ++ G77= ++fi + ac_ext=c + ac_cpp='$CPP $CPPFLAGS' + ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' +@@ -7946,10 +7988,10 @@ ac_compiler_gnu=$ac_cv_c_compiler_gnu + + # Autoconf 2.13's AC_OBJEXT and AC_EXEEXT macros only works for C compilers! + # find the maximum length of command line arguments +-{ echo "$as_me:$LINENO: checking the maximum length of command line arguments" >&5 +-echo $ECHO_N "checking the maximum length of command line arguments... $ECHO_C" >&6; } +-if test "${lt_cv_sys_max_cmd_len+set}" = set; then +- echo $ECHO_N "(cached) $ECHO_C" >&6 ++{ $as_echo "$as_me:${as_lineno-$LINENO}: checking the maximum length of command line arguments" >&5 ++$as_echo_n "checking the maximum length of command line arguments... " >&6; } ++if ${lt_cv_sys_max_cmd_len+:} false; then : ++ $as_echo_n "(cached) " >&6 + else + i=0 + teststring="ABCD" +@@ -8058,11 +8100,11 @@ else + fi + + if test -n $lt_cv_sys_max_cmd_len ; then +- { echo "$as_me:$LINENO: result: $lt_cv_sys_max_cmd_len" >&5 +-echo "${ECHO_T}$lt_cv_sys_max_cmd_len" >&6; } ++ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_cv_sys_max_cmd_len" >&5 ++$as_echo "$lt_cv_sys_max_cmd_len" >&6; } + else +- { echo "$as_me:$LINENO: result: none" >&5 +-echo "${ECHO_T}none" >&6; } ++ { $as_echo "$as_me:${as_lineno-$LINENO}: result: none" >&5 ++$as_echo "none" >&6; } + fi + + +@@ -8070,10 +8112,10 @@ fi + + + # Check for command to grab the raw symbol name followed by C symbol from nm. +-{ echo "$as_me:$LINENO: checking command to parse $NM output from $compiler object" >&5 +-echo $ECHO_N "checking command to parse $NM output from $compiler object... $ECHO_C" >&6; } +-if test "${lt_cv_sys_global_symbol_pipe+set}" = set; then +- echo $ECHO_N "(cached) $ECHO_C" >&6 ++{ $as_echo "$as_me:${as_lineno-$LINENO}: checking command to parse $NM output from $compiler object" >&5 ++$as_echo_n "checking command to parse $NM output from $compiler object... " >&6; } ++if ${lt_cv_sys_global_symbol_pipe+:} false; then : ++ $as_echo_n "(cached) " >&6 + else + + # These are sane defaults that work on at least a few old systems. +@@ -8175,18 +8217,18 @@ void nm_test_func(){} + int main(){nm_test_var='a';nm_test_func();return(0);} + EOF + +- if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 ++ if { { eval echo "\"\$as_me\":${as_lineno-$LINENO}: \"$ac_compile\""; } >&5 + (eval $ac_compile) 2>&5 + ac_status=$? +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); }; then ++ $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 ++ test $ac_status = 0; }; then + # Now try to grab the symbols. + nlist=conftest.nm +- if { (eval echo "$as_me:$LINENO: \"$NM conftest.$ac_objext \| $lt_cv_sys_global_symbol_pipe \> $nlist\"") >&5 ++ if { { eval echo "\"\$as_me\":${as_lineno-$LINENO}: \"$NM conftest.$ac_objext \| $lt_cv_sys_global_symbol_pipe \> $nlist\""; } >&5 + (eval $NM conftest.$ac_objext \| $lt_cv_sys_global_symbol_pipe \> $nlist) 2>&5 + ac_status=$? +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); } && test -s "$nlist"; then ++ $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 ++ test $ac_status = 0; } && test -s "$nlist"; then + # Try sorting and uniquifying the output. + if sort "$nlist" | uniq > "$nlist"T; then + mv -f "$nlist"T "$nlist" +@@ -8237,11 +8279,11 @@ EOF + lt_save_CFLAGS="$CFLAGS" + LIBS="conftstm.$ac_objext" + CFLAGS="$CFLAGS$lt_prog_compiler_no_builtin_flag" +- if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5 ++ if { { eval echo "\"\$as_me\":${as_lineno-$LINENO}: \"$ac_link\""; } >&5 + (eval $ac_link) 2>&5 + ac_status=$? +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); } && test -s conftest${ac_exeext}; then ++ $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 ++ test $ac_status = 0; } && test -s conftest${ac_exeext}; then + pipe_works=yes + fi + LIBS="$lt_save_LIBS" +@@ -8275,17 +8317,17 @@ if test -z "$lt_cv_sys_global_symbol_pipe"; then + lt_cv_sys_global_symbol_to_cdecl= + fi + if test -z "$lt_cv_sys_global_symbol_pipe$lt_cv_sys_global_symbol_to_cdecl"; then +- { echo "$as_me:$LINENO: result: failed" >&5 +-echo "${ECHO_T}failed" >&6; } ++ { $as_echo "$as_me:${as_lineno-$LINENO}: result: failed" >&5 ++$as_echo "failed" >&6; } + else +- { echo "$as_me:$LINENO: result: ok" >&5 +-echo "${ECHO_T}ok" >&6; } ++ { $as_echo "$as_me:${as_lineno-$LINENO}: result: ok" >&5 ++$as_echo "ok" >&6; } + fi + +-{ echo "$as_me:$LINENO: checking for objdir" >&5 +-echo $ECHO_N "checking for objdir... $ECHO_C" >&6; } +-if test "${lt_cv_objdir+set}" = set; then +- echo $ECHO_N "(cached) $ECHO_C" >&6 ++{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for objdir" >&5 ++$as_echo_n "checking for objdir... " >&6; } ++if ${lt_cv_objdir+:} false; then : ++ $as_echo_n "(cached) " >&6 + else + rm -f .libs 2>/dev/null + mkdir .libs 2>/dev/null +@@ -8297,8 +8339,8 @@ else + fi + rmdir .libs 2>/dev/null + fi +-{ echo "$as_me:$LINENO: result: $lt_cv_objdir" >&5 +-echo "${ECHO_T}$lt_cv_objdir" >&6; } ++{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_cv_objdir" >&5 ++$as_echo "$lt_cv_objdir" >&6; } + objdir=$lt_cv_objdir + + +@@ -8349,10 +8391,10 @@ with_gnu_ld="$lt_cv_prog_gnu_ld" + if test -n "$ac_tool_prefix"; then + # Extract the first word of "${ac_tool_prefix}ar", so it can be a program name with args. + set dummy ${ac_tool_prefix}ar; ac_word=$2 +-{ echo "$as_me:$LINENO: checking for $ac_word" >&5 +-echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6; } +-if test "${ac_cv_prog_AR+set}" = set; then +- echo $ECHO_N "(cached) $ECHO_C" >&6 ++{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 ++$as_echo_n "checking for $ac_word... " >&6; } ++if ${ac_cv_prog_AR+:} false; then : ++ $as_echo_n "(cached) " >&6 + else + if test -n "$AR"; then + ac_cv_prog_AR="$AR" # Let the user override the test. +@@ -8362,25 +8404,25 @@ for as_dir in $PATH + do + IFS=$as_save_IFS + test -z "$as_dir" && as_dir=. +- for ac_exec_ext in '' $ac_executable_extensions; do +- if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then ++ for ac_exec_ext in '' $ac_executable_extensions; do ++ if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then + ac_cv_prog_AR="${ac_tool_prefix}ar" +- echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 ++ $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 + break 2 + fi + done +-done ++ done + IFS=$as_save_IFS + + fi + fi + AR=$ac_cv_prog_AR + if test -n "$AR"; then +- { echo "$as_me:$LINENO: result: $AR" >&5 +-echo "${ECHO_T}$AR" >&6; } ++ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $AR" >&5 ++$as_echo "$AR" >&6; } + else +- { echo "$as_me:$LINENO: result: no" >&5 +-echo "${ECHO_T}no" >&6; } ++ { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 ++$as_echo "no" >&6; } + fi + + +@@ -8389,10 +8431,10 @@ if test -z "$ac_cv_prog_AR"; then + ac_ct_AR=$AR + # Extract the first word of "ar", so it can be a program name with args. + set dummy ar; ac_word=$2 +-{ echo "$as_me:$LINENO: checking for $ac_word" >&5 +-echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6; } +-if test "${ac_cv_prog_ac_ct_AR+set}" = set; then +- echo $ECHO_N "(cached) $ECHO_C" >&6 ++{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 ++$as_echo_n "checking for $ac_word... " >&6; } ++if ${ac_cv_prog_ac_ct_AR+:} false; then : ++ $as_echo_n "(cached) " >&6 + else + if test -n "$ac_ct_AR"; then + ac_cv_prog_ac_ct_AR="$ac_ct_AR" # Let the user override the test. +@@ -8402,25 +8444,25 @@ for as_dir in $PATH + do + IFS=$as_save_IFS + test -z "$as_dir" && as_dir=. +- for ac_exec_ext in '' $ac_executable_extensions; do +- if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then ++ for ac_exec_ext in '' $ac_executable_extensions; do ++ if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then + ac_cv_prog_ac_ct_AR="ar" +- echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 ++ $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 + break 2 + fi + done +-done ++ done + IFS=$as_save_IFS + + fi + fi + ac_ct_AR=$ac_cv_prog_ac_ct_AR + if test -n "$ac_ct_AR"; then +- { echo "$as_me:$LINENO: result: $ac_ct_AR" >&5 +-echo "${ECHO_T}$ac_ct_AR" >&6; } ++ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_ct_AR" >&5 ++$as_echo "$ac_ct_AR" >&6; } + else +- { echo "$as_me:$LINENO: result: no" >&5 +-echo "${ECHO_T}no" >&6; } ++ { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 ++$as_echo "no" >&6; } + fi + + if test "x$ac_ct_AR" = x; then +@@ -8428,12 +8470,8 @@ fi + else + case $cross_compiling:$ac_tool_warned in + yes:) +-{ echo "$as_me:$LINENO: WARNING: In the future, Autoconf will not detect cross-tools +-whose name does not start with the host triplet. If you think this +-configuration is useful to you, please write to autoconf@gnu.org." >&5 +-echo "$as_me: WARNING: In the future, Autoconf will not detect cross-tools +-whose name does not start with the host triplet. If you think this +-configuration is useful to you, please write to autoconf@gnu.org." >&2;} ++{ $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet" >&5 ++$as_echo "$as_me: WARNING: using cross tools not prefixed with host triplet" >&2;} + ac_tool_warned=yes ;; + esac + AR=$ac_ct_AR +@@ -8445,10 +8483,10 @@ fi + if test -n "$ac_tool_prefix"; then + # Extract the first word of "${ac_tool_prefix}ranlib", so it can be a program name with args. + set dummy ${ac_tool_prefix}ranlib; ac_word=$2 +-{ echo "$as_me:$LINENO: checking for $ac_word" >&5 +-echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6; } +-if test "${ac_cv_prog_RANLIB+set}" = set; then +- echo $ECHO_N "(cached) $ECHO_C" >&6 ++{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 ++$as_echo_n "checking for $ac_word... " >&6; } ++if ${ac_cv_prog_RANLIB+:} false; then : ++ $as_echo_n "(cached) " >&6 + else + if test -n "$RANLIB"; then + ac_cv_prog_RANLIB="$RANLIB" # Let the user override the test. +@@ -8458,25 +8496,25 @@ for as_dir in $PATH + do + IFS=$as_save_IFS + test -z "$as_dir" && as_dir=. +- for ac_exec_ext in '' $ac_executable_extensions; do +- if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then ++ for ac_exec_ext in '' $ac_executable_extensions; do ++ if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then + ac_cv_prog_RANLIB="${ac_tool_prefix}ranlib" +- echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 ++ $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 + break 2 + fi + done +-done ++ done + IFS=$as_save_IFS + + fi + fi + RANLIB=$ac_cv_prog_RANLIB + if test -n "$RANLIB"; then +- { echo "$as_me:$LINENO: result: $RANLIB" >&5 +-echo "${ECHO_T}$RANLIB" >&6; } ++ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $RANLIB" >&5 ++$as_echo "$RANLIB" >&6; } + else +- { echo "$as_me:$LINENO: result: no" >&5 +-echo "${ECHO_T}no" >&6; } ++ { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 ++$as_echo "no" >&6; } + fi + + +@@ -8485,10 +8523,10 @@ if test -z "$ac_cv_prog_RANLIB"; then + ac_ct_RANLIB=$RANLIB + # Extract the first word of "ranlib", so it can be a program name with args. + set dummy ranlib; ac_word=$2 +-{ echo "$as_me:$LINENO: checking for $ac_word" >&5 +-echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6; } +-if test "${ac_cv_prog_ac_ct_RANLIB+set}" = set; then +- echo $ECHO_N "(cached) $ECHO_C" >&6 ++{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 ++$as_echo_n "checking for $ac_word... " >&6; } ++if ${ac_cv_prog_ac_ct_RANLIB+:} false; then : ++ $as_echo_n "(cached) " >&6 + else + if test -n "$ac_ct_RANLIB"; then + ac_cv_prog_ac_ct_RANLIB="$ac_ct_RANLIB" # Let the user override the test. +@@ -8498,25 +8536,25 @@ for as_dir in $PATH + do + IFS=$as_save_IFS + test -z "$as_dir" && as_dir=. +- for ac_exec_ext in '' $ac_executable_extensions; do +- if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then ++ for ac_exec_ext in '' $ac_executable_extensions; do ++ if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then + ac_cv_prog_ac_ct_RANLIB="ranlib" +- echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 ++ $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 + break 2 + fi + done +-done ++ done + IFS=$as_save_IFS + + fi + fi + ac_ct_RANLIB=$ac_cv_prog_ac_ct_RANLIB + if test -n "$ac_ct_RANLIB"; then +- { echo "$as_me:$LINENO: result: $ac_ct_RANLIB" >&5 +-echo "${ECHO_T}$ac_ct_RANLIB" >&6; } ++ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_ct_RANLIB" >&5 ++$as_echo "$ac_ct_RANLIB" >&6; } + else +- { echo "$as_me:$LINENO: result: no" >&5 +-echo "${ECHO_T}no" >&6; } ++ { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 ++$as_echo "no" >&6; } + fi + + if test "x$ac_ct_RANLIB" = x; then +@@ -8524,12 +8562,8 @@ fi + else + case $cross_compiling:$ac_tool_warned in + yes:) +-{ echo "$as_me:$LINENO: WARNING: In the future, Autoconf will not detect cross-tools +-whose name does not start with the host triplet. If you think this +-configuration is useful to you, please write to autoconf@gnu.org." >&5 +-echo "$as_me: WARNING: In the future, Autoconf will not detect cross-tools +-whose name does not start with the host triplet. If you think this +-configuration is useful to you, please write to autoconf@gnu.org." >&2;} ++{ $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet" >&5 ++$as_echo "$as_me: WARNING: using cross tools not prefixed with host triplet" >&2;} + ac_tool_warned=yes ;; + esac + RANLIB=$ac_ct_RANLIB +@@ -8541,10 +8575,10 @@ fi + if test -n "$ac_tool_prefix"; then + # Extract the first word of "${ac_tool_prefix}strip", so it can be a program name with args. + set dummy ${ac_tool_prefix}strip; ac_word=$2 +-{ echo "$as_me:$LINENO: checking for $ac_word" >&5 +-echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6; } +-if test "${ac_cv_prog_STRIP+set}" = set; then +- echo $ECHO_N "(cached) $ECHO_C" >&6 ++{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 ++$as_echo_n "checking for $ac_word... " >&6; } ++if ${ac_cv_prog_STRIP+:} false; then : ++ $as_echo_n "(cached) " >&6 + else + if test -n "$STRIP"; then + ac_cv_prog_STRIP="$STRIP" # Let the user override the test. +@@ -8554,25 +8588,25 @@ for as_dir in $PATH + do + IFS=$as_save_IFS + test -z "$as_dir" && as_dir=. +- for ac_exec_ext in '' $ac_executable_extensions; do +- if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then ++ for ac_exec_ext in '' $ac_executable_extensions; do ++ if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then + ac_cv_prog_STRIP="${ac_tool_prefix}strip" +- echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 ++ $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 + break 2 + fi + done +-done ++ done + IFS=$as_save_IFS + + fi + fi + STRIP=$ac_cv_prog_STRIP + if test -n "$STRIP"; then +- { echo "$as_me:$LINENO: result: $STRIP" >&5 +-echo "${ECHO_T}$STRIP" >&6; } ++ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $STRIP" >&5 ++$as_echo "$STRIP" >&6; } + else +- { echo "$as_me:$LINENO: result: no" >&5 +-echo "${ECHO_T}no" >&6; } ++ { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 ++$as_echo "no" >&6; } + fi + + +@@ -8581,10 +8615,10 @@ if test -z "$ac_cv_prog_STRIP"; then + ac_ct_STRIP=$STRIP + # Extract the first word of "strip", so it can be a program name with args. + set dummy strip; ac_word=$2 +-{ echo "$as_me:$LINENO: checking for $ac_word" >&5 +-echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6; } +-if test "${ac_cv_prog_ac_ct_STRIP+set}" = set; then +- echo $ECHO_N "(cached) $ECHO_C" >&6 ++{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 ++$as_echo_n "checking for $ac_word... " >&6; } ++if ${ac_cv_prog_ac_ct_STRIP+:} false; then : ++ $as_echo_n "(cached) " >&6 + else + if test -n "$ac_ct_STRIP"; then + ac_cv_prog_ac_ct_STRIP="$ac_ct_STRIP" # Let the user override the test. +@@ -8594,25 +8628,25 @@ for as_dir in $PATH + do + IFS=$as_save_IFS + test -z "$as_dir" && as_dir=. +- for ac_exec_ext in '' $ac_executable_extensions; do +- if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then ++ for ac_exec_ext in '' $ac_executable_extensions; do ++ if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then + ac_cv_prog_ac_ct_STRIP="strip" +- echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 ++ $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 + break 2 + fi + done +-done ++ done + IFS=$as_save_IFS + + fi + fi + ac_ct_STRIP=$ac_cv_prog_ac_ct_STRIP + if test -n "$ac_ct_STRIP"; then +- { echo "$as_me:$LINENO: result: $ac_ct_STRIP" >&5 +-echo "${ECHO_T}$ac_ct_STRIP" >&6; } ++ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_ct_STRIP" >&5 ++$as_echo "$ac_ct_STRIP" >&6; } + else +- { echo "$as_me:$LINENO: result: no" >&5 +-echo "${ECHO_T}no" >&6; } ++ { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 ++$as_echo "no" >&6; } + fi + + if test "x$ac_ct_STRIP" = x; then +@@ -8620,12 +8654,8 @@ fi + else + case $cross_compiling:$ac_tool_warned in + yes:) +-{ echo "$as_me:$LINENO: WARNING: In the future, Autoconf will not detect cross-tools +-whose name does not start with the host triplet. If you think this +-configuration is useful to you, please write to autoconf@gnu.org." >&5 +-echo "$as_me: WARNING: In the future, Autoconf will not detect cross-tools +-whose name does not start with the host triplet. If you think this +-configuration is useful to you, please write to autoconf@gnu.org." >&2;} ++{ $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet" >&5 ++$as_echo "$as_me: WARNING: using cross tools not prefixed with host triplet" >&2;} + ac_tool_warned=yes ;; + esac + STRIP=$ac_ct_STRIP +@@ -8688,10 +8718,10 @@ cc_basename=`$echo "X$cc_temp" | $Xsed -e 's%.*/%%' -e "s%^$host_alias-%%"` + case $deplibs_check_method in + file_magic*) + if test "$file_magic_cmd" = '$MAGIC_CMD'; then +- { echo "$as_me:$LINENO: checking for ${ac_tool_prefix}file" >&5 +-echo $ECHO_N "checking for ${ac_tool_prefix}file... $ECHO_C" >&6; } +-if test "${lt_cv_path_MAGIC_CMD+set}" = set; then +- echo $ECHO_N "(cached) $ECHO_C" >&6 ++ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for ${ac_tool_prefix}file" >&5 ++$as_echo_n "checking for ${ac_tool_prefix}file... " >&6; } ++if ${lt_cv_path_MAGIC_CMD+:} false; then : ++ $as_echo_n "(cached) " >&6 + else + case $MAGIC_CMD in + [\\/*] | ?:[\\/]*) +@@ -8741,19 +8771,19 @@ fi + + MAGIC_CMD="$lt_cv_path_MAGIC_CMD" + if test -n "$MAGIC_CMD"; then +- { echo "$as_me:$LINENO: result: $MAGIC_CMD" >&5 +-echo "${ECHO_T}$MAGIC_CMD" >&6; } ++ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $MAGIC_CMD" >&5 ++$as_echo "$MAGIC_CMD" >&6; } + else +- { echo "$as_me:$LINENO: result: no" >&5 +-echo "${ECHO_T}no" >&6; } ++ { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 ++$as_echo "no" >&6; } + fi + + if test -z "$lt_cv_path_MAGIC_CMD"; then + if test -n "$ac_tool_prefix"; then +- { echo "$as_me:$LINENO: checking for file" >&5 +-echo $ECHO_N "checking for file... $ECHO_C" >&6; } +-if test "${lt_cv_path_MAGIC_CMD+set}" = set; then +- echo $ECHO_N "(cached) $ECHO_C" >&6 ++ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for file" >&5 ++$as_echo_n "checking for file... " >&6; } ++if ${lt_cv_path_MAGIC_CMD+:} false; then : ++ $as_echo_n "(cached) " >&6 + else + case $MAGIC_CMD in + [\\/*] | ?:[\\/]*) +@@ -8803,11 +8833,11 @@ fi + + MAGIC_CMD="$lt_cv_path_MAGIC_CMD" + if test -n "$MAGIC_CMD"; then +- { echo "$as_me:$LINENO: result: $MAGIC_CMD" >&5 +-echo "${ECHO_T}$MAGIC_CMD" >&6; } ++ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $MAGIC_CMD" >&5 ++$as_echo "$MAGIC_CMD" >&6; } + else +- { echo "$as_me:$LINENO: result: no" >&5 +-echo "${ECHO_T}no" >&6; } ++ { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 ++$as_echo "no" >&6; } + fi + + else +@@ -8825,10 +8855,10 @@ esac + if test -n "$ac_tool_prefix"; then + # Extract the first word of "${ac_tool_prefix}dsymutil", so it can be a program name with args. + set dummy ${ac_tool_prefix}dsymutil; ac_word=$2 +-{ echo "$as_me:$LINENO: checking for $ac_word" >&5 +-echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6; } +-if test "${ac_cv_prog_DSYMUTIL+set}" = set; then +- echo $ECHO_N "(cached) $ECHO_C" >&6 ++{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 ++$as_echo_n "checking for $ac_word... " >&6; } ++if ${ac_cv_prog_DSYMUTIL+:} false; then : ++ $as_echo_n "(cached) " >&6 + else + if test -n "$DSYMUTIL"; then + ac_cv_prog_DSYMUTIL="$DSYMUTIL" # Let the user override the test. +@@ -8838,25 +8868,25 @@ for as_dir in $PATH + do + IFS=$as_save_IFS + test -z "$as_dir" && as_dir=. +- for ac_exec_ext in '' $ac_executable_extensions; do +- if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then ++ for ac_exec_ext in '' $ac_executable_extensions; do ++ if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then + ac_cv_prog_DSYMUTIL="${ac_tool_prefix}dsymutil" +- echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 ++ $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 + break 2 + fi + done +-done ++ done + IFS=$as_save_IFS + + fi + fi + DSYMUTIL=$ac_cv_prog_DSYMUTIL + if test -n "$DSYMUTIL"; then +- { echo "$as_me:$LINENO: result: $DSYMUTIL" >&5 +-echo "${ECHO_T}$DSYMUTIL" >&6; } ++ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $DSYMUTIL" >&5 ++$as_echo "$DSYMUTIL" >&6; } + else +- { echo "$as_me:$LINENO: result: no" >&5 +-echo "${ECHO_T}no" >&6; } ++ { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 ++$as_echo "no" >&6; } + fi + + +@@ -8865,10 +8895,10 @@ if test -z "$ac_cv_prog_DSYMUTIL"; then + ac_ct_DSYMUTIL=$DSYMUTIL + # Extract the first word of "dsymutil", so it can be a program name with args. + set dummy dsymutil; ac_word=$2 +-{ echo "$as_me:$LINENO: checking for $ac_word" >&5 +-echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6; } +-if test "${ac_cv_prog_ac_ct_DSYMUTIL+set}" = set; then +- echo $ECHO_N "(cached) $ECHO_C" >&6 ++{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 ++$as_echo_n "checking for $ac_word... " >&6; } ++if ${ac_cv_prog_ac_ct_DSYMUTIL+:} false; then : ++ $as_echo_n "(cached) " >&6 + else + if test -n "$ac_ct_DSYMUTIL"; then + ac_cv_prog_ac_ct_DSYMUTIL="$ac_ct_DSYMUTIL" # Let the user override the test. +@@ -8878,25 +8908,25 @@ for as_dir in $PATH + do + IFS=$as_save_IFS + test -z "$as_dir" && as_dir=. +- for ac_exec_ext in '' $ac_executable_extensions; do +- if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then ++ for ac_exec_ext in '' $ac_executable_extensions; do ++ if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then + ac_cv_prog_ac_ct_DSYMUTIL="dsymutil" +- echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 ++ $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 + break 2 + fi + done +-done ++ done + IFS=$as_save_IFS + + fi + fi + ac_ct_DSYMUTIL=$ac_cv_prog_ac_ct_DSYMUTIL + if test -n "$ac_ct_DSYMUTIL"; then +- { echo "$as_me:$LINENO: result: $ac_ct_DSYMUTIL" >&5 +-echo "${ECHO_T}$ac_ct_DSYMUTIL" >&6; } ++ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_ct_DSYMUTIL" >&5 ++$as_echo "$ac_ct_DSYMUTIL" >&6; } + else +- { echo "$as_me:$LINENO: result: no" >&5 +-echo "${ECHO_T}no" >&6; } ++ { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 ++$as_echo "no" >&6; } + fi + + if test "x$ac_ct_DSYMUTIL" = x; then +@@ -8904,12 +8934,8 @@ fi + else + case $cross_compiling:$ac_tool_warned in + yes:) +-{ echo "$as_me:$LINENO: WARNING: In the future, Autoconf will not detect cross-tools +-whose name does not start with the host triplet. If you think this +-configuration is useful to you, please write to autoconf@gnu.org." >&5 +-echo "$as_me: WARNING: In the future, Autoconf will not detect cross-tools +-whose name does not start with the host triplet. If you think this +-configuration is useful to you, please write to autoconf@gnu.org." >&2;} ++{ $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet" >&5 ++$as_echo "$as_me: WARNING: using cross tools not prefixed with host triplet" >&2;} + ac_tool_warned=yes ;; + esac + DSYMUTIL=$ac_ct_DSYMUTIL +@@ -8921,10 +8947,10 @@ fi + if test -n "$ac_tool_prefix"; then + # Extract the first word of "${ac_tool_prefix}nmedit", so it can be a program name with args. + set dummy ${ac_tool_prefix}nmedit; ac_word=$2 +-{ echo "$as_me:$LINENO: checking for $ac_word" >&5 +-echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6; } +-if test "${ac_cv_prog_NMEDIT+set}" = set; then +- echo $ECHO_N "(cached) $ECHO_C" >&6 ++{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 ++$as_echo_n "checking for $ac_word... " >&6; } ++if ${ac_cv_prog_NMEDIT+:} false; then : ++ $as_echo_n "(cached) " >&6 + else + if test -n "$NMEDIT"; then + ac_cv_prog_NMEDIT="$NMEDIT" # Let the user override the test. +@@ -8934,25 +8960,25 @@ for as_dir in $PATH + do + IFS=$as_save_IFS + test -z "$as_dir" && as_dir=. +- for ac_exec_ext in '' $ac_executable_extensions; do +- if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then ++ for ac_exec_ext in '' $ac_executable_extensions; do ++ if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then + ac_cv_prog_NMEDIT="${ac_tool_prefix}nmedit" +- echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 ++ $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 + break 2 + fi + done +-done ++ done + IFS=$as_save_IFS + + fi + fi + NMEDIT=$ac_cv_prog_NMEDIT + if test -n "$NMEDIT"; then +- { echo "$as_me:$LINENO: result: $NMEDIT" >&5 +-echo "${ECHO_T}$NMEDIT" >&6; } ++ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $NMEDIT" >&5 ++$as_echo "$NMEDIT" >&6; } + else +- { echo "$as_me:$LINENO: result: no" >&5 +-echo "${ECHO_T}no" >&6; } ++ { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 ++$as_echo "no" >&6; } + fi + + +@@ -8961,10 +8987,10 @@ if test -z "$ac_cv_prog_NMEDIT"; then + ac_ct_NMEDIT=$NMEDIT + # Extract the first word of "nmedit", so it can be a program name with args. + set dummy nmedit; ac_word=$2 +-{ echo "$as_me:$LINENO: checking for $ac_word" >&5 +-echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6; } +-if test "${ac_cv_prog_ac_ct_NMEDIT+set}" = set; then +- echo $ECHO_N "(cached) $ECHO_C" >&6 ++{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 ++$as_echo_n "checking for $ac_word... " >&6; } ++if ${ac_cv_prog_ac_ct_NMEDIT+:} false; then : ++ $as_echo_n "(cached) " >&6 + else + if test -n "$ac_ct_NMEDIT"; then + ac_cv_prog_ac_ct_NMEDIT="$ac_ct_NMEDIT" # Let the user override the test. +@@ -8974,25 +9000,25 @@ for as_dir in $PATH + do + IFS=$as_save_IFS + test -z "$as_dir" && as_dir=. +- for ac_exec_ext in '' $ac_executable_extensions; do +- if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then ++ for ac_exec_ext in '' $ac_executable_extensions; do ++ if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then + ac_cv_prog_ac_ct_NMEDIT="nmedit" +- echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 ++ $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 + break 2 + fi + done +-done ++ done + IFS=$as_save_IFS + + fi + fi + ac_ct_NMEDIT=$ac_cv_prog_ac_ct_NMEDIT + if test -n "$ac_ct_NMEDIT"; then +- { echo "$as_me:$LINENO: result: $ac_ct_NMEDIT" >&5 +-echo "${ECHO_T}$ac_ct_NMEDIT" >&6; } ++ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_ct_NMEDIT" >&5 ++$as_echo "$ac_ct_NMEDIT" >&6; } + else +- { echo "$as_me:$LINENO: result: no" >&5 +-echo "${ECHO_T}no" >&6; } ++ { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 ++$as_echo "no" >&6; } + fi + + if test "x$ac_ct_NMEDIT" = x; then +@@ -9000,12 +9026,8 @@ fi + else + case $cross_compiling:$ac_tool_warned in + yes:) +-{ echo "$as_me:$LINENO: WARNING: In the future, Autoconf will not detect cross-tools +-whose name does not start with the host triplet. If you think this +-configuration is useful to you, please write to autoconf@gnu.org." >&5 +-echo "$as_me: WARNING: In the future, Autoconf will not detect cross-tools +-whose name does not start with the host triplet. If you think this +-configuration is useful to you, please write to autoconf@gnu.org." >&2;} ++{ $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet" >&5 ++$as_echo "$as_me: WARNING: using cross tools not prefixed with host triplet" >&2;} + ac_tool_warned=yes ;; + esac + NMEDIT=$ac_ct_NMEDIT +@@ -9015,10 +9037,10 @@ else + fi + + +- { echo "$as_me:$LINENO: checking for -single_module linker flag" >&5 +-echo $ECHO_N "checking for -single_module linker flag... $ECHO_C" >&6; } +-if test "${lt_cv_apple_cc_single_mod+set}" = set; then +- echo $ECHO_N "(cached) $ECHO_C" >&6 ++ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for -single_module linker flag" >&5 ++$as_echo_n "checking for -single_module linker flag... " >&6; } ++if ${lt_cv_apple_cc_single_mod+:} false; then : ++ $as_echo_n "(cached) " >&6 + else + lt_cv_apple_cc_single_mod=no + if test -z "${LT_MULTI_MODULE}"; then +@@ -9036,22 +9058,18 @@ else + rm conftest.c + fi + fi +-{ echo "$as_me:$LINENO: result: $lt_cv_apple_cc_single_mod" >&5 +-echo "${ECHO_T}$lt_cv_apple_cc_single_mod" >&6; } +- { echo "$as_me:$LINENO: checking for -exported_symbols_list linker flag" >&5 +-echo $ECHO_N "checking for -exported_symbols_list linker flag... $ECHO_C" >&6; } +-if test "${lt_cv_ld_exported_symbols_list+set}" = set; then +- echo $ECHO_N "(cached) $ECHO_C" >&6 ++{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_cv_apple_cc_single_mod" >&5 ++$as_echo "$lt_cv_apple_cc_single_mod" >&6; } ++ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for -exported_symbols_list linker flag" >&5 ++$as_echo_n "checking for -exported_symbols_list linker flag... " >&6; } ++if ${lt_cv_ld_exported_symbols_list+:} false; then : ++ $as_echo_n "(cached) " >&6 + else + lt_cv_ld_exported_symbols_list=no + save_LDFLAGS=$LDFLAGS + echo "_main" > conftest.sym + LDFLAGS="$LDFLAGS -Wl,-exported_symbols_list,conftest.sym" +- cat >conftest.$ac_ext <<_ACEOF +-/* confdefs.h. */ +-_ACEOF +-cat confdefs.h >>conftest.$ac_ext +-cat >>conftest.$ac_ext <<_ACEOF ++ cat confdefs.h - <<_ACEOF >conftest.$ac_ext + /* end confdefs.h. */ + + int +@@ -9062,39 +9080,18 @@ main () + return 0; + } + _ACEOF +-rm -f conftest.$ac_objext conftest$ac_exeext +-if { (ac_try="$ac_link" +-case "(($ac_try" in +- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; +- *) ac_try_echo=$ac_try;; +-esac +-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 +- (eval "$ac_link") 2>conftest.er1 +- ac_status=$? +- grep -v '^ *+' conftest.er1 >conftest.err +- rm -f conftest.er1 +- cat conftest.err >&5 +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); } && { +- test -z "$ac_c_werror_flag" || +- test ! -s conftest.err +- } && test -s conftest$ac_exeext && +- $as_test_x conftest$ac_exeext; then ++if ac_fn_c_try_link "$LINENO"; then : + lt_cv_ld_exported_symbols_list=yes + else +- echo "$as_me: failed program was:" >&5 +-sed 's/^/| /' conftest.$ac_ext >&5 +- +- lt_cv_ld_exported_symbols_list=no ++ lt_cv_ld_exported_symbols_list=no + fi +- +-rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ +- conftest$ac_exeext conftest.$ac_ext ++rm -f core conftest.err conftest.$ac_objext \ ++ conftest$ac_exeext conftest.$ac_ext + LDFLAGS="$save_LDFLAGS" + + fi +-{ echo "$as_me:$LINENO: result: $lt_cv_ld_exported_symbols_list" >&5 +-echo "${ECHO_T}$lt_cv_ld_exported_symbols_list" >&6; } ++{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_cv_ld_exported_symbols_list" >&5 ++$as_echo "$lt_cv_ld_exported_symbols_list" >&6; } + case $host_os in + rhapsody* | darwin1.[0123]) + _lt_dar_allow_undefined='${wl}-undefined ${wl}suppress' ;; +@@ -9135,7 +9132,7 @@ enable_dlopen=yes + enable_win32_dll=yes + + # Check whether --enable-libtool-lock was given. +-if test "${enable_libtool_lock+set}" = set; then ++if test "${enable_libtool_lock+set}" = set; then : + enableval=$enable_libtool_lock; + fi + +@@ -9143,7 +9140,7 @@ test "x$enable_libtool_lock" != xno && enable_libtool_lock=yes + + + # Check whether --with-pic was given. +-if test "${with_pic+set}" = set; then ++if test "${with_pic+set}" = set; then : + withval=$with_pic; pic_mode="$withval" + else + pic_mode=default +@@ -9206,10 +9203,10 @@ if test "$GCC" = yes; then + lt_prog_compiler_no_builtin_flag=' -fno-builtin' + + +-{ echo "$as_me:$LINENO: checking if $compiler supports -fno-rtti -fno-exceptions" >&5 +-echo $ECHO_N "checking if $compiler supports -fno-rtti -fno-exceptions... $ECHO_C" >&6; } +-if test "${lt_cv_prog_compiler_rtti_exceptions+set}" = set; then +- echo $ECHO_N "(cached) $ECHO_C" >&6 ++{ $as_echo "$as_me:${as_lineno-$LINENO}: checking if $compiler supports -fno-rtti -fno-exceptions" >&5 ++$as_echo_n "checking if $compiler supports -fno-rtti -fno-exceptions... " >&6; } ++if ${lt_cv_prog_compiler_rtti_exceptions+:} false; then : ++ $as_echo_n "(cached) " >&6 + else + lt_cv_prog_compiler_rtti_exceptions=no + ac_outfile=conftest.$ac_objext +@@ -9224,11 +9221,11 @@ else + -e 's:.*FLAGS}\{0,1\} :&$lt_compiler_flag :; t' \ + -e 's: [^ ]*conftest\.: $lt_compiler_flag&:; t' \ + -e 's:$: $lt_compiler_flag:'` +- (eval echo "\"\$as_me:9227: $lt_compile\"" >&5) ++ (eval echo "\"\$as_me:9224: $lt_compile\"" >&5) + (eval "$lt_compile" 2>conftest.err) + ac_status=$? + cat conftest.err >&5 +- echo "$as_me:9231: \$? = $ac_status" >&5 ++ echo "$as_me:9228: \$? = $ac_status" >&5 + if (exit $ac_status) && test -s "$ac_outfile"; then + # The compiler can only warn and ignore the option if not recognized + # So say no if there are warnings other than the usual output. +@@ -9241,8 +9238,8 @@ else + $rm conftest* + + fi +-{ echo "$as_me:$LINENO: result: $lt_cv_prog_compiler_rtti_exceptions" >&5 +-echo "${ECHO_T}$lt_cv_prog_compiler_rtti_exceptions" >&6; } ++{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_cv_prog_compiler_rtti_exceptions" >&5 ++$as_echo "$lt_cv_prog_compiler_rtti_exceptions" >&6; } + + if test x"$lt_cv_prog_compiler_rtti_exceptions" = xyes; then + lt_prog_compiler_no_builtin_flag="$lt_prog_compiler_no_builtin_flag -fno-rtti -fno-exceptions" +@@ -9256,8 +9253,8 @@ lt_prog_compiler_wl= + lt_prog_compiler_pic= + lt_prog_compiler_static= + +-{ echo "$as_me:$LINENO: checking for $compiler option to produce PIC" >&5 +-echo $ECHO_N "checking for $compiler option to produce PIC... $ECHO_C" >&6; } ++{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $compiler option to produce PIC" >&5 ++$as_echo_n "checking for $compiler option to produce PIC... " >&6; } + + if test "$GCC" = yes; then + lt_prog_compiler_wl='-Wl,' +@@ -9488,18 +9485,18 @@ echo $ECHO_N "checking for $compiler option to produce PIC... $ECHO_C" >&6; } + esac + fi + +-{ echo "$as_me:$LINENO: result: $lt_prog_compiler_pic" >&5 +-echo "${ECHO_T}$lt_prog_compiler_pic" >&6; } ++{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_prog_compiler_pic" >&5 ++$as_echo "$lt_prog_compiler_pic" >&6; } + + # + # Check to make sure the PIC flag actually works. + # + if test -n "$lt_prog_compiler_pic"; then + +-{ echo "$as_me:$LINENO: checking if $compiler PIC flag $lt_prog_compiler_pic works" >&5 +-echo $ECHO_N "checking if $compiler PIC flag $lt_prog_compiler_pic works... $ECHO_C" >&6; } +-if test "${lt_cv_prog_compiler_pic_works+set}" = set; then +- echo $ECHO_N "(cached) $ECHO_C" >&6 ++{ $as_echo "$as_me:${as_lineno-$LINENO}: checking if $compiler PIC flag $lt_prog_compiler_pic works" >&5 ++$as_echo_n "checking if $compiler PIC flag $lt_prog_compiler_pic works... " >&6; } ++if ${lt_cv_prog_compiler_pic_works+:} false; then : ++ $as_echo_n "(cached) " >&6 + else + lt_cv_prog_compiler_pic_works=no + ac_outfile=conftest.$ac_objext +@@ -9514,11 +9511,11 @@ else + -e 's:.*FLAGS}\{0,1\} :&$lt_compiler_flag :; t' \ + -e 's: [^ ]*conftest\.: $lt_compiler_flag&:; t' \ + -e 's:$: $lt_compiler_flag:'` +- (eval echo "\"\$as_me:9517: $lt_compile\"" >&5) ++ (eval echo "\"\$as_me:9514: $lt_compile\"" >&5) + (eval "$lt_compile" 2>conftest.err) + ac_status=$? + cat conftest.err >&5 +- echo "$as_me:9521: \$? = $ac_status" >&5 ++ echo "$as_me:9518: \$? = $ac_status" >&5 + if (exit $ac_status) && test -s "$ac_outfile"; then + # The compiler can only warn and ignore the option if not recognized + # So say no if there are warnings other than the usual output. +@@ -9531,8 +9528,8 @@ else + $rm conftest* + + fi +-{ echo "$as_me:$LINENO: result: $lt_cv_prog_compiler_pic_works" >&5 +-echo "${ECHO_T}$lt_cv_prog_compiler_pic_works" >&6; } ++{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_cv_prog_compiler_pic_works" >&5 ++$as_echo "$lt_cv_prog_compiler_pic_works" >&6; } + + if test x"$lt_cv_prog_compiler_pic_works" = xyes; then + case $lt_prog_compiler_pic in +@@ -9559,10 +9556,10 @@ esac + # Check to make sure the static flag actually works. + # + wl=$lt_prog_compiler_wl eval lt_tmp_static_flag=\"$lt_prog_compiler_static\" +-{ echo "$as_me:$LINENO: checking if $compiler static flag $lt_tmp_static_flag works" >&5 +-echo $ECHO_N "checking if $compiler static flag $lt_tmp_static_flag works... $ECHO_C" >&6; } +-if test "${lt_cv_prog_compiler_static_works+set}" = set; then +- echo $ECHO_N "(cached) $ECHO_C" >&6 ++{ $as_echo "$as_me:${as_lineno-$LINENO}: checking if $compiler static flag $lt_tmp_static_flag works" >&5 ++$as_echo_n "checking if $compiler static flag $lt_tmp_static_flag works... " >&6; } ++if ${lt_cv_prog_compiler_static_works+:} false; then : ++ $as_echo_n "(cached) " >&6 + else + lt_cv_prog_compiler_static_works=no + save_LDFLAGS="$LDFLAGS" +@@ -9587,8 +9584,8 @@ else + LDFLAGS="$save_LDFLAGS" + + fi +-{ echo "$as_me:$LINENO: result: $lt_cv_prog_compiler_static_works" >&5 +-echo "${ECHO_T}$lt_cv_prog_compiler_static_works" >&6; } ++{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_cv_prog_compiler_static_works" >&5 ++$as_echo "$lt_cv_prog_compiler_static_works" >&6; } + + if test x"$lt_cv_prog_compiler_static_works" = xyes; then + : +@@ -9597,10 +9594,10 @@ else + fi + + +-{ echo "$as_me:$LINENO: checking if $compiler supports -c -o file.$ac_objext" >&5 +-echo $ECHO_N "checking if $compiler supports -c -o file.$ac_objext... $ECHO_C" >&6; } +-if test "${lt_cv_prog_compiler_c_o+set}" = set; then +- echo $ECHO_N "(cached) $ECHO_C" >&6 ++{ $as_echo "$as_me:${as_lineno-$LINENO}: checking if $compiler supports -c -o file.$ac_objext" >&5 ++$as_echo_n "checking if $compiler supports -c -o file.$ac_objext... " >&6; } ++if ${lt_cv_prog_compiler_c_o+:} false; then : ++ $as_echo_n "(cached) " >&6 + else + lt_cv_prog_compiler_c_o=no + $rm -r conftest 2>/dev/null +@@ -9618,11 +9615,11 @@ else + -e 's:.*FLAGS}\{0,1\} :&$lt_compiler_flag :; t' \ + -e 's: [^ ]*conftest\.: $lt_compiler_flag&:; t' \ + -e 's:$: $lt_compiler_flag:'` +- (eval echo "\"\$as_me:9621: $lt_compile\"" >&5) ++ (eval echo "\"\$as_me:9618: $lt_compile\"" >&5) + (eval "$lt_compile" 2>out/conftest.err) + ac_status=$? + cat out/conftest.err >&5 +- echo "$as_me:9625: \$? = $ac_status" >&5 ++ echo "$as_me:9622: \$? = $ac_status" >&5 + if (exit $ac_status) && test -s out/conftest2.$ac_objext + then + # The compiler can only warn and ignore the option if not recognized +@@ -9644,34 +9641,34 @@ else + $rm conftest* + + fi +-{ echo "$as_me:$LINENO: result: $lt_cv_prog_compiler_c_o" >&5 +-echo "${ECHO_T}$lt_cv_prog_compiler_c_o" >&6; } ++{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_cv_prog_compiler_c_o" >&5 ++$as_echo "$lt_cv_prog_compiler_c_o" >&6; } + + + hard_links="nottested" + if test "$lt_cv_prog_compiler_c_o" = no && test "$need_locks" != no; then + # do not overwrite the value of need_locks provided by the user +- { echo "$as_me:$LINENO: checking if we can lock with hard links" >&5 +-echo $ECHO_N "checking if we can lock with hard links... $ECHO_C" >&6; } ++ { $as_echo "$as_me:${as_lineno-$LINENO}: checking if we can lock with hard links" >&5 ++$as_echo_n "checking if we can lock with hard links... " >&6; } + hard_links=yes + $rm conftest* + ln conftest.a conftest.b 2>/dev/null && hard_links=no + touch conftest.a + ln conftest.a conftest.b 2>&5 || hard_links=no + ln conftest.a conftest.b 2>/dev/null && hard_links=no +- { echo "$as_me:$LINENO: result: $hard_links" >&5 +-echo "${ECHO_T}$hard_links" >&6; } ++ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $hard_links" >&5 ++$as_echo "$hard_links" >&6; } + if test "$hard_links" = no; then +- { echo "$as_me:$LINENO: WARNING: \`$CC' does not support \`-c -o', so \`make -j' may be unsafe" >&5 +-echo "$as_me: WARNING: \`$CC' does not support \`-c -o', so \`make -j' may be unsafe" >&2;} ++ { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: \`$CC' does not support \`-c -o', so \`make -j' may be unsafe" >&5 ++$as_echo "$as_me: WARNING: \`$CC' does not support \`-c -o', so \`make -j' may be unsafe" >&2;} + need_locks=warn + fi + else + need_locks=no + fi + +-{ echo "$as_me:$LINENO: checking whether the $compiler linker ($LD) supports shared libraries" >&5 +-echo $ECHO_N "checking whether the $compiler linker ($LD) supports shared libraries... $ECHO_C" >&6; } ++{ $as_echo "$as_me:${as_lineno-$LINENO}: checking whether the $compiler linker ($LD) supports shared libraries" >&5 ++$as_echo_n "checking whether the $compiler linker ($LD) supports shared libraries... " >&6; } + + runpath_var= + allow_undefined_flag= +@@ -10081,11 +10078,7 @@ _LT_EOF + # -berok will link without error, but may produce a broken library. + allow_undefined_flag='-berok' + # Determine the default libpath from the value encoded in an empty executable. +- cat >conftest.$ac_ext <<_ACEOF +-/* confdefs.h. */ +-_ACEOF +-cat confdefs.h >>conftest.$ac_ext +-cat >>conftest.$ac_ext <<_ACEOF ++ cat confdefs.h - <<_ACEOF >conftest.$ac_ext + /* end confdefs.h. */ + + int +@@ -10096,24 +10089,7 @@ main () + return 0; + } + _ACEOF +-rm -f conftest.$ac_objext conftest$ac_exeext +-if { (ac_try="$ac_link" +-case "(($ac_try" in +- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; +- *) ac_try_echo=$ac_try;; +-esac +-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 +- (eval "$ac_link") 2>conftest.er1 +- ac_status=$? +- grep -v '^ *+' conftest.er1 >conftest.err +- rm -f conftest.er1 +- cat conftest.err >&5 +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); } && { +- test -z "$ac_c_werror_flag" || +- test ! -s conftest.err +- } && test -s conftest$ac_exeext && +- $as_test_x conftest$ac_exeext; then ++if ac_fn_c_try_link "$LINENO"; then : + + lt_aix_libpath_sed=' + /Import File Strings/,/^$/ { +@@ -10127,15 +10103,9 @@ aix_libpath=`dump -H conftest$ac_exeext 2>/dev/null | $SED -n -e "$lt_aix_libpat + if test -z "$aix_libpath"; then + aix_libpath=`dump -HX64 conftest$ac_exeext 2>/dev/null | $SED -n -e "$lt_aix_libpath_sed"` + fi +-else +- echo "$as_me: failed program was:" >&5 +-sed 's/^/| /' conftest.$ac_ext >&5 +- +- + fi +- +-rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ +- conftest$ac_exeext conftest.$ac_ext ++rm -f core conftest.err conftest.$ac_objext \ ++ conftest$ac_exeext conftest.$ac_ext + if test -z "$aix_libpath"; then aix_libpath="/usr/lib:/lib"; fi + + hardcode_libdir_flag_spec='${wl}-blibpath:$libdir:'"$aix_libpath" +@@ -10147,11 +10117,7 @@ if test -z "$aix_libpath"; then aix_libpath="/usr/lib:/lib"; fi + archive_expsym_cmds="\$CC $shared_flag"' -o $output_objdir/$soname $libobjs $deplibs '"\${wl}$no_entry_flag"' $compiler_flags ${wl}${allow_undefined_flag} '"\${wl}$exp_sym_flag:\$export_symbols" + else + # Determine the default libpath from the value encoded in an empty executable. +- cat >conftest.$ac_ext <<_ACEOF +-/* confdefs.h. */ +-_ACEOF +-cat confdefs.h >>conftest.$ac_ext +-cat >>conftest.$ac_ext <<_ACEOF ++ cat confdefs.h - <<_ACEOF >conftest.$ac_ext + /* end confdefs.h. */ + + int +@@ -10162,24 +10128,7 @@ main () + return 0; + } + _ACEOF +-rm -f conftest.$ac_objext conftest$ac_exeext +-if { (ac_try="$ac_link" +-case "(($ac_try" in +- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; +- *) ac_try_echo=$ac_try;; +-esac +-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 +- (eval "$ac_link") 2>conftest.er1 +- ac_status=$? +- grep -v '^ *+' conftest.er1 >conftest.err +- rm -f conftest.er1 +- cat conftest.err >&5 +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); } && { +- test -z "$ac_c_werror_flag" || +- test ! -s conftest.err +- } && test -s conftest$ac_exeext && +- $as_test_x conftest$ac_exeext; then ++if ac_fn_c_try_link "$LINENO"; then : + + lt_aix_libpath_sed=' + /Import File Strings/,/^$/ { +@@ -10193,15 +10142,9 @@ aix_libpath=`dump -H conftest$ac_exeext 2>/dev/null | $SED -n -e "$lt_aix_libpat + if test -z "$aix_libpath"; then + aix_libpath=`dump -HX64 conftest$ac_exeext 2>/dev/null | $SED -n -e "$lt_aix_libpath_sed"` + fi +-else +- echo "$as_me: failed program was:" >&5 +-sed 's/^/| /' conftest.$ac_ext >&5 +- +- + fi +- +-rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ +- conftest$ac_exeext conftest.$ac_ext ++rm -f core conftest.err conftest.$ac_objext \ ++ conftest$ac_exeext conftest.$ac_ext + if test -z "$aix_libpath"; then aix_libpath="/usr/lib:/lib"; fi + + hardcode_libdir_flag_spec='${wl}-blibpath:$libdir:'"$aix_libpath" +@@ -10651,8 +10594,8 @@ if test -z "$aix_libpath"; then aix_libpath="/usr/lib:/lib"; fi + esac + fi + +-{ echo "$as_me:$LINENO: result: $ld_shlibs" >&5 +-echo "${ECHO_T}$ld_shlibs" >&6; } ++{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ld_shlibs" >&5 ++$as_echo "$ld_shlibs" >&6; } + test "$ld_shlibs" = no && can_build_shared=no + + # +@@ -10672,16 +10615,16 @@ x|xyes) + # Test whether the compiler implicitly links with -lc since on some + # systems, -lgcc has to come before -lc. If gcc already passes -lc + # to ld, don't add -lc before -lgcc. +- { echo "$as_me:$LINENO: checking whether -lc should be explicitly linked in" >&5 +-echo $ECHO_N "checking whether -lc should be explicitly linked in... $ECHO_C" >&6; } ++ { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether -lc should be explicitly linked in" >&5 ++$as_echo_n "checking whether -lc should be explicitly linked in... " >&6; } + $rm conftest* + echo "$lt_simple_compile_test_code" > conftest.$ac_ext + +- if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 ++ if { { eval echo "\"\$as_me\":${as_lineno-$LINENO}: \"$ac_compile\""; } >&5 + (eval $ac_compile) 2>&5 + ac_status=$? +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); } 2>conftest.err; then ++ $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 ++ test $ac_status = 0; } 2>conftest.err; then + soname=conftest + lib=conftest + libobjs=conftest.$ac_objext +@@ -10695,11 +10638,11 @@ echo $ECHO_N "checking whether -lc should be explicitly linked in... $ECHO_C" >& + libname=conftest + lt_save_allow_undefined_flag=$allow_undefined_flag + allow_undefined_flag= +- if { (eval echo "$as_me:$LINENO: \"$archive_cmds 2\>\&1 \| grep \" -lc \" \>/dev/null 2\>\&1\"") >&5 ++ if { { eval echo "\"\$as_me\":${as_lineno-$LINENO}: \"$archive_cmds 2\>\&1 \| grep \" -lc \" \>/dev/null 2\>\&1\""; } >&5 + (eval $archive_cmds 2\>\&1 \| grep \" -lc \" \>/dev/null 2\>\&1) 2>&5 + ac_status=$? +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); } ++ $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 ++ test $ac_status = 0; } + then + archive_cmds_need_lc=no + else +@@ -10710,16 +10653,16 @@ echo $ECHO_N "checking whether -lc should be explicitly linked in... $ECHO_C" >& + cat conftest.err 1>&5 + fi + $rm conftest* +- { echo "$as_me:$LINENO: result: $archive_cmds_need_lc" >&5 +-echo "${ECHO_T}$archive_cmds_need_lc" >&6; } ++ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $archive_cmds_need_lc" >&5 ++$as_echo "$archive_cmds_need_lc" >&6; } + ;; + esac + fi + ;; + esac + +-{ echo "$as_me:$LINENO: checking dynamic linker characteristics" >&5 +-echo $ECHO_N "checking dynamic linker characteristics... $ECHO_C" >&6; } ++{ $as_echo "$as_me:${as_lineno-$LINENO}: checking dynamic linker characteristics" >&5 ++$as_echo_n "checking dynamic linker characteristics... " >&6; } + library_names_spec= + libname_spec='lib$name' + soname_spec= +@@ -11332,19 +11275,19 @@ uts4*) + dynamic_linker=no + ;; + esac +-{ echo "$as_me:$LINENO: result: $dynamic_linker" >&5 +-echo "${ECHO_T}$dynamic_linker" >&6; } ++{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $dynamic_linker" >&5 ++$as_echo "$dynamic_linker" >&6; } + test "$dynamic_linker" = no && can_build_shared=no + +-if test "${lt_cv_sys_lib_search_path_spec+set}" = set; then +- echo $ECHO_N "(cached) $ECHO_C" >&6 ++if ${lt_cv_sys_lib_search_path_spec+:} false; then : ++ $as_echo_n "(cached) " >&6 + else + lt_cv_sys_lib_search_path_spec="$sys_lib_search_path_spec" + fi + + sys_lib_search_path_spec="$lt_cv_sys_lib_search_path_spec" +-if test "${lt_cv_sys_lib_dlsearch_path_spec+set}" = set; then +- echo $ECHO_N "(cached) $ECHO_C" >&6 ++if ${lt_cv_sys_lib_dlsearch_path_spec+:} false; then : ++ $as_echo_n "(cached) " >&6 + else + lt_cv_sys_lib_dlsearch_path_spec="$sys_lib_dlsearch_path_spec" + fi +@@ -11356,8 +11299,8 @@ if test "$GCC" = yes; then + variables_saved_for_relink="$variables_saved_for_relink GCC_EXEC_PREFIX COMPILER_PATH LIBRARY_PATH" + fi + +-{ echo "$as_me:$LINENO: checking how to hardcode library paths into programs" >&5 +-echo $ECHO_N "checking how to hardcode library paths into programs... $ECHO_C" >&6; } ++{ $as_echo "$as_me:${as_lineno-$LINENO}: checking how to hardcode library paths into programs" >&5 ++$as_echo_n "checking how to hardcode library paths into programs... " >&6; } + hardcode_action= + if test -n "$hardcode_libdir_flag_spec" || \ + test -n "$runpath_var" || \ +@@ -11381,8 +11324,8 @@ else + # directories. + hardcode_action=unsupported + fi +-{ echo "$as_me:$LINENO: result: $hardcode_action" >&5 +-echo "${ECHO_T}$hardcode_action" >&6; } ++{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $hardcode_action" >&5 ++$as_echo "$hardcode_action" >&6; } + + if test "$hardcode_action" = relink; then + # Fast installation is not supported +@@ -11395,13 +11338,13 @@ fi + + striplib= + old_striplib= +-{ echo "$as_me:$LINENO: checking whether stripping libraries is possible" >&5 +-echo $ECHO_N "checking whether stripping libraries is possible... $ECHO_C" >&6; } ++{ $as_echo "$as_me:${as_lineno-$LINENO}: checking whether stripping libraries is possible" >&5 ++$as_echo_n "checking whether stripping libraries is possible... " >&6; } + if test -n "$STRIP" && $STRIP -V 2>&1 | grep "GNU strip" >/dev/null; then + test -z "$old_striplib" && old_striplib="$STRIP --strip-debug" + test -z "$striplib" && striplib="$STRIP --strip-unneeded" +- { echo "$as_me:$LINENO: result: yes" >&5 +-echo "${ECHO_T}yes" >&6; } ++ { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5 ++$as_echo "yes" >&6; } + else + # FIXME - insert some real tests, host_os isn't really good enough + case $host_os in +@@ -11409,16 +11352,16 @@ else + if test -n "$STRIP" ; then + striplib="$STRIP -x" + old_striplib="$STRIP -S" +- { echo "$as_me:$LINENO: result: yes" >&5 +-echo "${ECHO_T}yes" >&6; } ++ { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5 ++$as_echo "yes" >&6; } + else +- { echo "$as_me:$LINENO: result: no" >&5 +-echo "${ECHO_T}no" >&6; } ++ { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 ++$as_echo "no" >&6; } + fi + ;; + *) +- { echo "$as_me:$LINENO: result: no" >&5 +-echo "${ECHO_T}no" >&6; } ++ { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 ++$as_echo "no" >&6; } + ;; + esac + fi +@@ -11450,18 +11393,14 @@ else + + darwin*) + # if libdl is installed we need to link against it +- { echo "$as_me:$LINENO: checking for dlopen in -ldl" >&5 +-echo $ECHO_N "checking for dlopen in -ldl... $ECHO_C" >&6; } +-if test "${ac_cv_lib_dl_dlopen+set}" = set; then +- echo $ECHO_N "(cached) $ECHO_C" >&6 ++ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for dlopen in -ldl" >&5 ++$as_echo_n "checking for dlopen in -ldl... " >&6; } ++if ${ac_cv_lib_dl_dlopen+:} false; then : ++ $as_echo_n "(cached) " >&6 + else + ac_check_lib_save_LIBS=$LIBS + LIBS="-ldl $LIBS" +-cat >conftest.$ac_ext <<_ACEOF +-/* confdefs.h. */ +-_ACEOF +-cat confdefs.h >>conftest.$ac_ext +-cat >>conftest.$ac_ext <<_ACEOF ++cat confdefs.h - <<_ACEOF >conftest.$ac_ext + /* end confdefs.h. */ + + /* Override any GCC internal prototype to avoid an error. +@@ -11479,39 +11418,18 @@ return dlopen (); + return 0; + } + _ACEOF +-rm -f conftest.$ac_objext conftest$ac_exeext +-if { (ac_try="$ac_link" +-case "(($ac_try" in +- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; +- *) ac_try_echo=$ac_try;; +-esac +-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 +- (eval "$ac_link") 2>conftest.er1 +- ac_status=$? +- grep -v '^ *+' conftest.er1 >conftest.err +- rm -f conftest.er1 +- cat conftest.err >&5 +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); } && { +- test -z "$ac_c_werror_flag" || +- test ! -s conftest.err +- } && test -s conftest$ac_exeext && +- $as_test_x conftest$ac_exeext; then ++if ac_fn_c_try_link "$LINENO"; then : + ac_cv_lib_dl_dlopen=yes + else +- echo "$as_me: failed program was:" >&5 +-sed 's/^/| /' conftest.$ac_ext >&5 +- +- ac_cv_lib_dl_dlopen=no ++ ac_cv_lib_dl_dlopen=no + fi +- +-rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ +- conftest$ac_exeext conftest.$ac_ext ++rm -f core conftest.err conftest.$ac_objext \ ++ conftest$ac_exeext conftest.$ac_ext + LIBS=$ac_check_lib_save_LIBS + fi +-{ echo "$as_me:$LINENO: result: $ac_cv_lib_dl_dlopen" >&5 +-echo "${ECHO_T}$ac_cv_lib_dl_dlopen" >&6; } +-if test $ac_cv_lib_dl_dlopen = yes; then ++{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_dl_dlopen" >&5 ++$as_echo "$ac_cv_lib_dl_dlopen" >&6; } ++if test "x$ac_cv_lib_dl_dlopen" = xyes; then : + lt_cv_dlopen="dlopen" lt_cv_dlopen_libs="-ldl" + else + +@@ -11524,102 +11442,18 @@ fi + ;; + + *) +- { echo "$as_me:$LINENO: checking for shl_load" >&5 +-echo $ECHO_N "checking for shl_load... $ECHO_C" >&6; } +-if test "${ac_cv_func_shl_load+set}" = set; then +- echo $ECHO_N "(cached) $ECHO_C" >&6 +-else +- cat >conftest.$ac_ext <<_ACEOF +-/* confdefs.h. */ +-_ACEOF +-cat confdefs.h >>conftest.$ac_ext +-cat >>conftest.$ac_ext <<_ACEOF +-/* end confdefs.h. */ +-/* Define shl_load to an innocuous variant, in case declares shl_load. +- For example, HP-UX 11i declares gettimeofday. */ +-#define shl_load innocuous_shl_load +- +-/* System header to define __stub macros and hopefully few prototypes, +- which can conflict with char shl_load (); below. +- Prefer to if __STDC__ is defined, since +- exists even on freestanding compilers. */ +- +-#ifdef __STDC__ +-# include +-#else +-# include +-#endif +- +-#undef shl_load +- +-/* Override any GCC internal prototype to avoid an error. +- Use char because int might match the return type of a GCC +- builtin and then its argument prototype would still apply. */ +-#ifdef __cplusplus +-extern "C" +-#endif +-char shl_load (); +-/* The GNU C library defines this for functions which it implements +- to always fail with ENOSYS. Some functions are actually named +- something starting with __ and the normal name is an alias. */ +-#if defined __stub_shl_load || defined __stub___shl_load +-choke me +-#endif +- +-int +-main () +-{ +-return shl_load (); +- ; +- return 0; +-} +-_ACEOF +-rm -f conftest.$ac_objext conftest$ac_exeext +-if { (ac_try="$ac_link" +-case "(($ac_try" in +- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; +- *) ac_try_echo=$ac_try;; +-esac +-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 +- (eval "$ac_link") 2>conftest.er1 +- ac_status=$? +- grep -v '^ *+' conftest.er1 >conftest.err +- rm -f conftest.er1 +- cat conftest.err >&5 +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); } && { +- test -z "$ac_c_werror_flag" || +- test ! -s conftest.err +- } && test -s conftest$ac_exeext && +- $as_test_x conftest$ac_exeext; then +- ac_cv_func_shl_load=yes +-else +- echo "$as_me: failed program was:" >&5 +-sed 's/^/| /' conftest.$ac_ext >&5 +- +- ac_cv_func_shl_load=no +-fi +- +-rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ +- conftest$ac_exeext conftest.$ac_ext +-fi +-{ echo "$as_me:$LINENO: result: $ac_cv_func_shl_load" >&5 +-echo "${ECHO_T}$ac_cv_func_shl_load" >&6; } +-if test $ac_cv_func_shl_load = yes; then ++ ac_fn_c_check_func "$LINENO" "shl_load" "ac_cv_func_shl_load" ++if test "x$ac_cv_func_shl_load" = xyes; then : + lt_cv_dlopen="shl_load" + else +- { echo "$as_me:$LINENO: checking for shl_load in -ldld" >&5 +-echo $ECHO_N "checking for shl_load in -ldld... $ECHO_C" >&6; } +-if test "${ac_cv_lib_dld_shl_load+set}" = set; then +- echo $ECHO_N "(cached) $ECHO_C" >&6 ++ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for shl_load in -ldld" >&5 ++$as_echo_n "checking for shl_load in -ldld... " >&6; } ++if ${ac_cv_lib_dld_shl_load+:} false; then : ++ $as_echo_n "(cached) " >&6 + else + ac_check_lib_save_LIBS=$LIBS + LIBS="-ldld $LIBS" +-cat >conftest.$ac_ext <<_ACEOF +-/* confdefs.h. */ +-_ACEOF +-cat confdefs.h >>conftest.$ac_ext +-cat >>conftest.$ac_ext <<_ACEOF ++cat confdefs.h - <<_ACEOF >conftest.$ac_ext + /* end confdefs.h. */ + + /* Override any GCC internal prototype to avoid an error. +@@ -11637,137 +11471,32 @@ return shl_load (); + return 0; + } + _ACEOF +-rm -f conftest.$ac_objext conftest$ac_exeext +-if { (ac_try="$ac_link" +-case "(($ac_try" in +- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; +- *) ac_try_echo=$ac_try;; +-esac +-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 +- (eval "$ac_link") 2>conftest.er1 +- ac_status=$? +- grep -v '^ *+' conftest.er1 >conftest.err +- rm -f conftest.er1 +- cat conftest.err >&5 +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); } && { +- test -z "$ac_c_werror_flag" || +- test ! -s conftest.err +- } && test -s conftest$ac_exeext && +- $as_test_x conftest$ac_exeext; then ++if ac_fn_c_try_link "$LINENO"; then : + ac_cv_lib_dld_shl_load=yes + else +- echo "$as_me: failed program was:" >&5 +-sed 's/^/| /' conftest.$ac_ext >&5 +- +- ac_cv_lib_dld_shl_load=no ++ ac_cv_lib_dld_shl_load=no + fi +- +-rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ +- conftest$ac_exeext conftest.$ac_ext ++rm -f core conftest.err conftest.$ac_objext \ ++ conftest$ac_exeext conftest.$ac_ext + LIBS=$ac_check_lib_save_LIBS + fi +-{ echo "$as_me:$LINENO: result: $ac_cv_lib_dld_shl_load" >&5 +-echo "${ECHO_T}$ac_cv_lib_dld_shl_load" >&6; } +-if test $ac_cv_lib_dld_shl_load = yes; then ++{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_dld_shl_load" >&5 ++$as_echo "$ac_cv_lib_dld_shl_load" >&6; } ++if test "x$ac_cv_lib_dld_shl_load" = xyes; then : + lt_cv_dlopen="shl_load" lt_cv_dlopen_libs="-ldld" + else +- { echo "$as_me:$LINENO: checking for dlopen" >&5 +-echo $ECHO_N "checking for dlopen... $ECHO_C" >&6; } +-if test "${ac_cv_func_dlopen+set}" = set; then +- echo $ECHO_N "(cached) $ECHO_C" >&6 +-else +- cat >conftest.$ac_ext <<_ACEOF +-/* confdefs.h. */ +-_ACEOF +-cat confdefs.h >>conftest.$ac_ext +-cat >>conftest.$ac_ext <<_ACEOF +-/* end confdefs.h. */ +-/* Define dlopen to an innocuous variant, in case declares dlopen. +- For example, HP-UX 11i declares gettimeofday. */ +-#define dlopen innocuous_dlopen +- +-/* System header to define __stub macros and hopefully few prototypes, +- which can conflict with char dlopen (); below. +- Prefer to if __STDC__ is defined, since +- exists even on freestanding compilers. */ +- +-#ifdef __STDC__ +-# include +-#else +-# include +-#endif +- +-#undef dlopen +- +-/* Override any GCC internal prototype to avoid an error. +- Use char because int might match the return type of a GCC +- builtin and then its argument prototype would still apply. */ +-#ifdef __cplusplus +-extern "C" +-#endif +-char dlopen (); +-/* The GNU C library defines this for functions which it implements +- to always fail with ENOSYS. Some functions are actually named +- something starting with __ and the normal name is an alias. */ +-#if defined __stub_dlopen || defined __stub___dlopen +-choke me +-#endif +- +-int +-main () +-{ +-return dlopen (); +- ; +- return 0; +-} +-_ACEOF +-rm -f conftest.$ac_objext conftest$ac_exeext +-if { (ac_try="$ac_link" +-case "(($ac_try" in +- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; +- *) ac_try_echo=$ac_try;; +-esac +-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 +- (eval "$ac_link") 2>conftest.er1 +- ac_status=$? +- grep -v '^ *+' conftest.er1 >conftest.err +- rm -f conftest.er1 +- cat conftest.err >&5 +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); } && { +- test -z "$ac_c_werror_flag" || +- test ! -s conftest.err +- } && test -s conftest$ac_exeext && +- $as_test_x conftest$ac_exeext; then +- ac_cv_func_dlopen=yes +-else +- echo "$as_me: failed program was:" >&5 +-sed 's/^/| /' conftest.$ac_ext >&5 +- +- ac_cv_func_dlopen=no +-fi +- +-rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ +- conftest$ac_exeext conftest.$ac_ext +-fi +-{ echo "$as_me:$LINENO: result: $ac_cv_func_dlopen" >&5 +-echo "${ECHO_T}$ac_cv_func_dlopen" >&6; } +-if test $ac_cv_func_dlopen = yes; then ++ ac_fn_c_check_func "$LINENO" "dlopen" "ac_cv_func_dlopen" ++if test "x$ac_cv_func_dlopen" = xyes; then : + lt_cv_dlopen="dlopen" + else +- { echo "$as_me:$LINENO: checking for dlopen in -ldl" >&5 +-echo $ECHO_N "checking for dlopen in -ldl... $ECHO_C" >&6; } +-if test "${ac_cv_lib_dl_dlopen+set}" = set; then +- echo $ECHO_N "(cached) $ECHO_C" >&6 ++ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for dlopen in -ldl" >&5 ++$as_echo_n "checking for dlopen in -ldl... " >&6; } ++if ${ac_cv_lib_dl_dlopen+:} false; then : ++ $as_echo_n "(cached) " >&6 + else + ac_check_lib_save_LIBS=$LIBS + LIBS="-ldl $LIBS" +-cat >conftest.$ac_ext <<_ACEOF +-/* confdefs.h. */ +-_ACEOF +-cat confdefs.h >>conftest.$ac_ext +-cat >>conftest.$ac_ext <<_ACEOF ++cat confdefs.h - <<_ACEOF >conftest.$ac_ext + /* end confdefs.h. */ + + /* Override any GCC internal prototype to avoid an error. +@@ -11785,53 +11514,28 @@ return dlopen (); + return 0; + } + _ACEOF +-rm -f conftest.$ac_objext conftest$ac_exeext +-if { (ac_try="$ac_link" +-case "(($ac_try" in +- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; +- *) ac_try_echo=$ac_try;; +-esac +-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 +- (eval "$ac_link") 2>conftest.er1 +- ac_status=$? +- grep -v '^ *+' conftest.er1 >conftest.err +- rm -f conftest.er1 +- cat conftest.err >&5 +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); } && { +- test -z "$ac_c_werror_flag" || +- test ! -s conftest.err +- } && test -s conftest$ac_exeext && +- $as_test_x conftest$ac_exeext; then ++if ac_fn_c_try_link "$LINENO"; then : + ac_cv_lib_dl_dlopen=yes + else +- echo "$as_me: failed program was:" >&5 +-sed 's/^/| /' conftest.$ac_ext >&5 +- +- ac_cv_lib_dl_dlopen=no ++ ac_cv_lib_dl_dlopen=no + fi +- +-rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ +- conftest$ac_exeext conftest.$ac_ext ++rm -f core conftest.err conftest.$ac_objext \ ++ conftest$ac_exeext conftest.$ac_ext + LIBS=$ac_check_lib_save_LIBS + fi +-{ echo "$as_me:$LINENO: result: $ac_cv_lib_dl_dlopen" >&5 +-echo "${ECHO_T}$ac_cv_lib_dl_dlopen" >&6; } +-if test $ac_cv_lib_dl_dlopen = yes; then ++{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_dl_dlopen" >&5 ++$as_echo "$ac_cv_lib_dl_dlopen" >&6; } ++if test "x$ac_cv_lib_dl_dlopen" = xyes; then : + lt_cv_dlopen="dlopen" lt_cv_dlopen_libs="-ldl" + else +- { echo "$as_me:$LINENO: checking for dlopen in -lsvld" >&5 +-echo $ECHO_N "checking for dlopen in -lsvld... $ECHO_C" >&6; } +-if test "${ac_cv_lib_svld_dlopen+set}" = set; then +- echo $ECHO_N "(cached) $ECHO_C" >&6 ++ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for dlopen in -lsvld" >&5 ++$as_echo_n "checking for dlopen in -lsvld... " >&6; } ++if ${ac_cv_lib_svld_dlopen+:} false; then : ++ $as_echo_n "(cached) " >&6 + else + ac_check_lib_save_LIBS=$LIBS + LIBS="-lsvld $LIBS" +-cat >conftest.$ac_ext <<_ACEOF +-/* confdefs.h. */ +-_ACEOF +-cat confdefs.h >>conftest.$ac_ext +-cat >>conftest.$ac_ext <<_ACEOF ++cat confdefs.h - <<_ACEOF >conftest.$ac_ext + /* end confdefs.h. */ + + /* Override any GCC internal prototype to avoid an error. +@@ -11849,53 +11553,28 @@ return dlopen (); + return 0; + } + _ACEOF +-rm -f conftest.$ac_objext conftest$ac_exeext +-if { (ac_try="$ac_link" +-case "(($ac_try" in +- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; +- *) ac_try_echo=$ac_try;; +-esac +-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 +- (eval "$ac_link") 2>conftest.er1 +- ac_status=$? +- grep -v '^ *+' conftest.er1 >conftest.err +- rm -f conftest.er1 +- cat conftest.err >&5 +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); } && { +- test -z "$ac_c_werror_flag" || +- test ! -s conftest.err +- } && test -s conftest$ac_exeext && +- $as_test_x conftest$ac_exeext; then ++if ac_fn_c_try_link "$LINENO"; then : + ac_cv_lib_svld_dlopen=yes + else +- echo "$as_me: failed program was:" >&5 +-sed 's/^/| /' conftest.$ac_ext >&5 +- +- ac_cv_lib_svld_dlopen=no ++ ac_cv_lib_svld_dlopen=no + fi +- +-rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ +- conftest$ac_exeext conftest.$ac_ext ++rm -f core conftest.err conftest.$ac_objext \ ++ conftest$ac_exeext conftest.$ac_ext + LIBS=$ac_check_lib_save_LIBS + fi +-{ echo "$as_me:$LINENO: result: $ac_cv_lib_svld_dlopen" >&5 +-echo "${ECHO_T}$ac_cv_lib_svld_dlopen" >&6; } +-if test $ac_cv_lib_svld_dlopen = yes; then ++{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_svld_dlopen" >&5 ++$as_echo "$ac_cv_lib_svld_dlopen" >&6; } ++if test "x$ac_cv_lib_svld_dlopen" = xyes; then : + lt_cv_dlopen="dlopen" lt_cv_dlopen_libs="-lsvld" + else +- { echo "$as_me:$LINENO: checking for dld_link in -ldld" >&5 +-echo $ECHO_N "checking for dld_link in -ldld... $ECHO_C" >&6; } +-if test "${ac_cv_lib_dld_dld_link+set}" = set; then +- echo $ECHO_N "(cached) $ECHO_C" >&6 ++ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for dld_link in -ldld" >&5 ++$as_echo_n "checking for dld_link in -ldld... " >&6; } ++if ${ac_cv_lib_dld_dld_link+:} false; then : ++ $as_echo_n "(cached) " >&6 + else + ac_check_lib_save_LIBS=$LIBS + LIBS="-ldld $LIBS" +-cat >conftest.$ac_ext <<_ACEOF +-/* confdefs.h. */ +-_ACEOF +-cat confdefs.h >>conftest.$ac_ext +-cat >>conftest.$ac_ext <<_ACEOF ++cat confdefs.h - <<_ACEOF >conftest.$ac_ext + /* end confdefs.h. */ + + /* Override any GCC internal prototype to avoid an error. +@@ -11913,39 +11592,18 @@ return dld_link (); + return 0; + } + _ACEOF +-rm -f conftest.$ac_objext conftest$ac_exeext +-if { (ac_try="$ac_link" +-case "(($ac_try" in +- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; +- *) ac_try_echo=$ac_try;; +-esac +-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 +- (eval "$ac_link") 2>conftest.er1 +- ac_status=$? +- grep -v '^ *+' conftest.er1 >conftest.err +- rm -f conftest.er1 +- cat conftest.err >&5 +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); } && { +- test -z "$ac_c_werror_flag" || +- test ! -s conftest.err +- } && test -s conftest$ac_exeext && +- $as_test_x conftest$ac_exeext; then ++if ac_fn_c_try_link "$LINENO"; then : + ac_cv_lib_dld_dld_link=yes + else +- echo "$as_me: failed program was:" >&5 +-sed 's/^/| /' conftest.$ac_ext >&5 +- +- ac_cv_lib_dld_dld_link=no ++ ac_cv_lib_dld_dld_link=no + fi +- +-rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ +- conftest$ac_exeext conftest.$ac_ext ++rm -f core conftest.err conftest.$ac_objext \ ++ conftest$ac_exeext conftest.$ac_ext + LIBS=$ac_check_lib_save_LIBS + fi +-{ echo "$as_me:$LINENO: result: $ac_cv_lib_dld_dld_link" >&5 +-echo "${ECHO_T}$ac_cv_lib_dld_dld_link" >&6; } +-if test $ac_cv_lib_dld_dld_link = yes; then ++{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_dld_dld_link" >&5 ++$as_echo "$ac_cv_lib_dld_dld_link" >&6; } ++if test "x$ac_cv_lib_dld_dld_link" = xyes; then : + lt_cv_dlopen="dld_link" lt_cv_dlopen_libs="-ldld" + fi + +@@ -11984,10 +11642,10 @@ fi + save_LIBS="$LIBS" + LIBS="$lt_cv_dlopen_libs $LIBS" + +- { echo "$as_me:$LINENO: checking whether a program can dlopen itself" >&5 +-echo $ECHO_N "checking whether a program can dlopen itself... $ECHO_C" >&6; } +-if test "${lt_cv_dlopen_self+set}" = set; then +- echo $ECHO_N "(cached) $ECHO_C" >&6 ++ { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether a program can dlopen itself" >&5 ++$as_echo_n "checking whether a program can dlopen itself... " >&6; } ++if ${lt_cv_dlopen_self+:} false; then : ++ $as_echo_n "(cached) " >&6 + else + if test "$cross_compiling" = yes; then : + lt_cv_dlopen_self=cross +@@ -11995,7 +11653,7 @@ else + lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2 + lt_status=$lt_dlunknown + cat > conftest.$ac_ext <&5 ++ if { { eval echo "\"\$as_me\":${as_lineno-$LINENO}: \"$ac_link\""; } >&5 + (eval $ac_link) 2>&5 + ac_status=$? +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); } && test -s conftest${ac_exeext} 2>/dev/null; then ++ $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 ++ test $ac_status = 0; } && test -s conftest${ac_exeext} 2>/dev/null; then + (./conftest; exit; ) >&5 2>/dev/null + lt_status=$? + case x$lt_status in +@@ -12079,15 +11737,15 @@ rm -fr conftest* + + + fi +-{ echo "$as_me:$LINENO: result: $lt_cv_dlopen_self" >&5 +-echo "${ECHO_T}$lt_cv_dlopen_self" >&6; } ++{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_cv_dlopen_self" >&5 ++$as_echo "$lt_cv_dlopen_self" >&6; } + + if test "x$lt_cv_dlopen_self" = xyes; then + wl=$lt_prog_compiler_wl eval LDFLAGS=\"\$LDFLAGS $lt_prog_compiler_static\" +- { echo "$as_me:$LINENO: checking whether a statically linked program can dlopen itself" >&5 +-echo $ECHO_N "checking whether a statically linked program can dlopen itself... $ECHO_C" >&6; } +-if test "${lt_cv_dlopen_self_static+set}" = set; then +- echo $ECHO_N "(cached) $ECHO_C" >&6 ++ { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether a statically linked program can dlopen itself" >&5 ++$as_echo_n "checking whether a statically linked program can dlopen itself... " >&6; } ++if ${lt_cv_dlopen_self_static+:} false; then : ++ $as_echo_n "(cached) " >&6 + else + if test "$cross_compiling" = yes; then : + lt_cv_dlopen_self_static=cross +@@ -12095,7 +11753,7 @@ else + lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2 + lt_status=$lt_dlunknown + cat > conftest.$ac_ext <&5 ++ if { { eval echo "\"\$as_me\":${as_lineno-$LINENO}: \"$ac_link\""; } >&5 + (eval $ac_link) 2>&5 + ac_status=$? +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); } && test -s conftest${ac_exeext} 2>/dev/null; then ++ $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 ++ test $ac_status = 0; } && test -s conftest${ac_exeext} 2>/dev/null; then + (./conftest; exit; ) >&5 2>/dev/null + lt_status=$? + case x$lt_status in +@@ -12179,8 +11837,8 @@ rm -fr conftest* + + + fi +-{ echo "$as_me:$LINENO: result: $lt_cv_dlopen_self_static" >&5 +-echo "${ECHO_T}$lt_cv_dlopen_self_static" >&6; } ++{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_cv_dlopen_self_static" >&5 ++$as_echo "$lt_cv_dlopen_self_static" >&6; } + fi + + CPPFLAGS="$save_CPPFLAGS" +@@ -12202,13 +11860,13 @@ fi + + + # Report which library types will actually be built +-{ echo "$as_me:$LINENO: checking if libtool supports shared libraries" >&5 +-echo $ECHO_N "checking if libtool supports shared libraries... $ECHO_C" >&6; } +-{ echo "$as_me:$LINENO: result: $can_build_shared" >&5 +-echo "${ECHO_T}$can_build_shared" >&6; } ++{ $as_echo "$as_me:${as_lineno-$LINENO}: checking if libtool supports shared libraries" >&5 ++$as_echo_n "checking if libtool supports shared libraries... " >&6; } ++{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $can_build_shared" >&5 ++$as_echo "$can_build_shared" >&6; } + +-{ echo "$as_me:$LINENO: checking whether to build shared libraries" >&5 +-echo $ECHO_N "checking whether to build shared libraries... $ECHO_C" >&6; } ++{ $as_echo "$as_me:${as_lineno-$LINENO}: checking whether to build shared libraries" >&5 ++$as_echo_n "checking whether to build shared libraries... " >&6; } + test "$can_build_shared" = "no" && enable_shared=no + + # On AIX, shared libraries and static libraries use the same namespace, and +@@ -12228,15 +11886,15 @@ aix[4-9]*) + fi + ;; + esac +-{ echo "$as_me:$LINENO: result: $enable_shared" >&5 +-echo "${ECHO_T}$enable_shared" >&6; } ++{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $enable_shared" >&5 ++$as_echo "$enable_shared" >&6; } + +-{ echo "$as_me:$LINENO: checking whether to build static libraries" >&5 +-echo $ECHO_N "checking whether to build static libraries... $ECHO_C" >&6; } ++{ $as_echo "$as_me:${as_lineno-$LINENO}: checking whether to build static libraries" >&5 ++$as_echo_n "checking whether to build static libraries... " >&6; } + # Make sure either enable_shared or enable_static is yes. + test "$enable_shared" = yes || enable_static=yes +-{ echo "$as_me:$LINENO: result: $enable_static" >&5 +-echo "${ECHO_T}$enable_static" >&6; } ++{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $enable_static" >&5 ++$as_echo "$enable_static" >&6; } + + # The else clause should only fire when bootstrapping the + # libtool distribution, otherwise you forgot to ship ltmain.sh +@@ -12329,8 +11987,8 @@ if test -f "$ltmain"; then + cfgfile="${ofile}T" + trap "$rm \"$cfgfile\"; exit 1" 1 2 15 + $rm -f "$cfgfile" +- { echo "$as_me:$LINENO: creating $ofile" >&5 +-echo "$as_me: creating $ofile" >&6;} ++ { $as_echo "$as_me:${as_lineno-$LINENO}: creating $ofile" >&5 ++$as_echo "$as_me: creating $ofile" >&6;} + + cat <<__EOF__ >> "$cfgfile" + #! $SHELL +@@ -12735,25 +12393,25 @@ CC="$lt_save_CC" + + + # Check whether --with-tags was given. +-if test "${with_tags+set}" = set; then ++if test "${with_tags+set}" = set; then : + withval=$with_tags; tagnames="$withval" + fi + + + if test -f "$ltmain" && test -n "$tagnames"; then + if test ! -f "${ofile}"; then +- { echo "$as_me:$LINENO: WARNING: output file \`$ofile' does not exist" >&5 +-echo "$as_me: WARNING: output file \`$ofile' does not exist" >&2;} ++ { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: output file \`$ofile' does not exist" >&5 ++$as_echo "$as_me: WARNING: output file \`$ofile' does not exist" >&2;} + fi + + if test -z "$LTCC"; then + eval "`$SHELL ${ofile} --config | grep '^LTCC='`" + if test -z "$LTCC"; then +- { echo "$as_me:$LINENO: WARNING: output file \`$ofile' does not look like a libtool script" >&5 +-echo "$as_me: WARNING: output file \`$ofile' does not look like a libtool script" >&2;} ++ { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: output file \`$ofile' does not look like a libtool script" >&5 ++$as_echo "$as_me: WARNING: output file \`$ofile' does not look like a libtool script" >&2;} + else +- { echo "$as_me:$LINENO: WARNING: using \`LTCC=$LTCC', extracted from \`$ofile'" >&5 +-echo "$as_me: WARNING: using \`LTCC=$LTCC', extracted from \`$ofile'" >&2;} ++ { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: using \`LTCC=$LTCC', extracted from \`$ofile'" >&5 ++$as_echo "$as_me: WARNING: using \`LTCC=$LTCC', extracted from \`$ofile'" >&2;} + fi + fi + if test -z "$LTCFLAGS"; then +@@ -12770,17 +12428,13 @@ echo "$as_me: WARNING: using \`LTCC=$LTCC', extracted from \`$ofile'" >&2;} + # Check whether tagname contains only valid characters + case `$echo "X$tagname" | $Xsed -e 's:[-_ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz1234567890,/]::g'` in + "") ;; +- *) { { echo "$as_me:$LINENO: error: invalid tag name: $tagname" >&5 +-echo "$as_me: error: invalid tag name: $tagname" >&2;} +- { (exit 1); exit 1; }; } ++ *) as_fn_error $? "invalid tag name: $tagname" "$LINENO" 5 + ;; + esac + + if grep "^# ### BEGIN LIBTOOL TAG CONFIG: $tagname$" < "${ofile}" > /dev/null + then +- { { echo "$as_me:$LINENO: error: tag name \"$tagname\" already exists" >&5 +-echo "$as_me: error: tag name \"$tagname\" already exists" >&2;} +- { (exit 1); exit 1; }; } ++ as_fn_error $? "tag name \"$tagname\" already exists" "$LINENO" 5 + fi + + # Update the list of available tags. +@@ -12913,7 +12567,7 @@ if test "$GXX" = yes; then + + + # Check whether --with-gnu-ld was given. +-if test "${with_gnu_ld+set}" = set; then ++if test "${with_gnu_ld+set}" = set; then : + withval=$with_gnu_ld; test "$withval" = no || with_gnu_ld=yes + else + with_gnu_ld=no +@@ -12922,8 +12576,8 @@ fi + ac_prog=ld + if test "$GCC" = yes; then + # Check if gcc -print-prog-name=ld gives a path. +- { echo "$as_me:$LINENO: checking for ld used by $CC" >&5 +-echo $ECHO_N "checking for ld used by $CC... $ECHO_C" >&6; } ++ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for ld used by $CC" >&5 ++$as_echo_n "checking for ld used by $CC... " >&6; } + case $host in + *-*-mingw*) + # gcc leaves a trailing carriage return which upsets mingw +@@ -12952,14 +12606,14 @@ echo $ECHO_N "checking for ld used by $CC... $ECHO_C" >&6; } + ;; + esac + elif test "$with_gnu_ld" = yes; then +- { echo "$as_me:$LINENO: checking for GNU ld" >&5 +-echo $ECHO_N "checking for GNU ld... $ECHO_C" >&6; } ++ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for GNU ld" >&5 ++$as_echo_n "checking for GNU ld... " >&6; } + else +- { echo "$as_me:$LINENO: checking for non-GNU ld" >&5 +-echo $ECHO_N "checking for non-GNU ld... $ECHO_C" >&6; } ++ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for non-GNU ld" >&5 ++$as_echo_n "checking for non-GNU ld... " >&6; } + fi +-if test "${lt_cv_path_LD+set}" = set; then +- echo $ECHO_N "(cached) $ECHO_C" >&6 ++if ${lt_cv_path_LD+:} false; then : ++ $as_echo_n "(cached) " >&6 + else + if test -z "$LD"; then + lt_save_ifs="$IFS"; IFS=$PATH_SEPARATOR +@@ -12989,19 +12643,17 @@ fi + + LD="$lt_cv_path_LD" + if test -n "$LD"; then +- { echo "$as_me:$LINENO: result: $LD" >&5 +-echo "${ECHO_T}$LD" >&6; } ++ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $LD" >&5 ++$as_echo "$LD" >&6; } + else +- { echo "$as_me:$LINENO: result: no" >&5 +-echo "${ECHO_T}no" >&6; } ++ { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 ++$as_echo "no" >&6; } + fi +-test -z "$LD" && { { echo "$as_me:$LINENO: error: no acceptable ld found in \$PATH" >&5 +-echo "$as_me: error: no acceptable ld found in \$PATH" >&2;} +- { (exit 1); exit 1; }; } +-{ echo "$as_me:$LINENO: checking if the linker ($LD) is GNU ld" >&5 +-echo $ECHO_N "checking if the linker ($LD) is GNU ld... $ECHO_C" >&6; } +-if test "${lt_cv_prog_gnu_ld+set}" = set; then +- echo $ECHO_N "(cached) $ECHO_C" >&6 ++test -z "$LD" && as_fn_error $? "no acceptable ld found in \$PATH" "$LINENO" 5 ++{ $as_echo "$as_me:${as_lineno-$LINENO}: checking if the linker ($LD) is GNU ld" >&5 ++$as_echo_n "checking if the linker ($LD) is GNU ld... " >&6; } ++if ${lt_cv_prog_gnu_ld+:} false; then : ++ $as_echo_n "(cached) " >&6 + else + # I'd rather use --version here, but apparently some GNU lds only accept -v. + case `$LD -v 2>&1 &1 &5 +-echo "${ECHO_T}$lt_cv_prog_gnu_ld" >&6; } ++{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_cv_prog_gnu_ld" >&5 ++$as_echo "$lt_cv_prog_gnu_ld" >&6; } + with_gnu_ld=$lt_cv_prog_gnu_ld + + +@@ -13064,8 +12716,8 @@ else + fi + + # PORTME: fill in a description of your system's C++ link characteristics +-{ echo "$as_me:$LINENO: checking whether the $compiler linker ($LD) supports shared libraries" >&5 +-echo $ECHO_N "checking whether the $compiler linker ($LD) supports shared libraries... $ECHO_C" >&6; } ++{ $as_echo "$as_me:${as_lineno-$LINENO}: checking whether the $compiler linker ($LD) supports shared libraries" >&5 ++$as_echo_n "checking whether the $compiler linker ($LD) supports shared libraries... " >&6; } + ld_shlibs_CXX=yes + case $host_os in + aix3*) +@@ -13161,11 +12813,7 @@ case $host_os in + # -berok will link without error, but may produce a broken library. + allow_undefined_flag_CXX='-berok' + # Determine the default libpath from the value encoded in an empty executable. +- cat >conftest.$ac_ext <<_ACEOF +-/* confdefs.h. */ +-_ACEOF +-cat confdefs.h >>conftest.$ac_ext +-cat >>conftest.$ac_ext <<_ACEOF ++ cat confdefs.h - <<_ACEOF >conftest.$ac_ext + /* end confdefs.h. */ + + int +@@ -13176,24 +12824,7 @@ main () + return 0; + } + _ACEOF +-rm -f conftest.$ac_objext conftest$ac_exeext +-if { (ac_try="$ac_link" +-case "(($ac_try" in +- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; +- *) ac_try_echo=$ac_try;; +-esac +-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 +- (eval "$ac_link") 2>conftest.er1 +- ac_status=$? +- grep -v '^ *+' conftest.er1 >conftest.err +- rm -f conftest.er1 +- cat conftest.err >&5 +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); } && { +- test -z "$ac_cxx_werror_flag" || +- test ! -s conftest.err +- } && test -s conftest$ac_exeext && +- $as_test_x conftest$ac_exeext; then ++if ac_fn_cxx_try_link "$LINENO"; then : + + lt_aix_libpath_sed=' + /Import File Strings/,/^$/ { +@@ -13207,15 +12838,9 @@ aix_libpath=`dump -H conftest$ac_exeext 2>/dev/null | $SED -n -e "$lt_aix_libpat + if test -z "$aix_libpath"; then + aix_libpath=`dump -HX64 conftest$ac_exeext 2>/dev/null | $SED -n -e "$lt_aix_libpath_sed"` + fi +-else +- echo "$as_me: failed program was:" >&5 +-sed 's/^/| /' conftest.$ac_ext >&5 +- +- + fi +- +-rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ +- conftest$ac_exeext conftest.$ac_ext ++rm -f core conftest.err conftest.$ac_objext \ ++ conftest$ac_exeext conftest.$ac_ext + if test -z "$aix_libpath"; then aix_libpath="/usr/lib:/lib"; fi + + hardcode_libdir_flag_spec_CXX='${wl}-blibpath:$libdir:'"$aix_libpath" +@@ -13228,11 +12853,7 @@ if test -z "$aix_libpath"; then aix_libpath="/usr/lib:/lib"; fi + archive_expsym_cmds_CXX="\$CC $shared_flag"' -o $output_objdir/$soname $libobjs $deplibs '"\${wl}$no_entry_flag"' $compiler_flags ${wl}${allow_undefined_flag} '"\${wl}$exp_sym_flag:\$export_symbols" + else + # Determine the default libpath from the value encoded in an empty executable. +- cat >conftest.$ac_ext <<_ACEOF +-/* confdefs.h. */ +-_ACEOF +-cat confdefs.h >>conftest.$ac_ext +-cat >>conftest.$ac_ext <<_ACEOF ++ cat confdefs.h - <<_ACEOF >conftest.$ac_ext + /* end confdefs.h. */ + + int +@@ -13243,24 +12864,7 @@ main () + return 0; + } + _ACEOF +-rm -f conftest.$ac_objext conftest$ac_exeext +-if { (ac_try="$ac_link" +-case "(($ac_try" in +- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; +- *) ac_try_echo=$ac_try;; +-esac +-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 +- (eval "$ac_link") 2>conftest.er1 +- ac_status=$? +- grep -v '^ *+' conftest.er1 >conftest.err +- rm -f conftest.er1 +- cat conftest.err >&5 +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); } && { +- test -z "$ac_cxx_werror_flag" || +- test ! -s conftest.err +- } && test -s conftest$ac_exeext && +- $as_test_x conftest$ac_exeext; then ++if ac_fn_cxx_try_link "$LINENO"; then : + + lt_aix_libpath_sed=' + /Import File Strings/,/^$/ { +@@ -13274,15 +12878,9 @@ aix_libpath=`dump -H conftest$ac_exeext 2>/dev/null | $SED -n -e "$lt_aix_libpat + if test -z "$aix_libpath"; then + aix_libpath=`dump -HX64 conftest$ac_exeext 2>/dev/null | $SED -n -e "$lt_aix_libpath_sed"` + fi +-else +- echo "$as_me: failed program was:" >&5 +-sed 's/^/| /' conftest.$ac_ext >&5 +- +- + fi +- +-rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ +- conftest$ac_exeext conftest.$ac_ext ++rm -f core conftest.err conftest.$ac_objext \ ++ conftest$ac_exeext conftest.$ac_ext + if test -z "$aix_libpath"; then aix_libpath="/usr/lib:/lib"; fi + + hardcode_libdir_flag_spec_CXX='${wl}-blibpath:$libdir:'"$aix_libpath" +@@ -14010,8 +13608,8 @@ if test -z "$aix_libpath"; then aix_libpath="/usr/lib:/lib"; fi + ld_shlibs_CXX=no + ;; + esac +-{ echo "$as_me:$LINENO: result: $ld_shlibs_CXX" >&5 +-echo "${ECHO_T}$ld_shlibs_CXX" >&6; } ++{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ld_shlibs_CXX" >&5 ++$as_echo "$ld_shlibs_CXX" >&6; } + test "$ld_shlibs_CXX" = no && can_build_shared=no + + GCC_CXX="$GXX" +@@ -14027,11 +13625,11 @@ private: + }; + EOF + +-if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 ++if { { eval echo "\"\$as_me\":${as_lineno-$LINENO}: \"$ac_compile\""; } >&5 + (eval $ac_compile) 2>&5 + ac_status=$? +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); }; then ++ $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 ++ test $ac_status = 0; }; then + # Parse the compiler output and extract the necessary + # objects, libraries and library flags. + +@@ -14186,8 +13784,8 @@ lt_prog_compiler_wl_CXX= + lt_prog_compiler_pic_CXX= + lt_prog_compiler_static_CXX= + +-{ echo "$as_me:$LINENO: checking for $compiler option to produce PIC" >&5 +-echo $ECHO_N "checking for $compiler option to produce PIC... $ECHO_C" >&6; } ++{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $compiler option to produce PIC" >&5 ++$as_echo_n "checking for $compiler option to produce PIC... " >&6; } + + # C++ specific cases for pic, static, wl, etc. + if test "$GXX" = yes; then +@@ -14470,18 +14068,18 @@ echo $ECHO_N "checking for $compiler option to produce PIC... $ECHO_C" >&6; } + esac + fi + +-{ echo "$as_me:$LINENO: result: $lt_prog_compiler_pic_CXX" >&5 +-echo "${ECHO_T}$lt_prog_compiler_pic_CXX" >&6; } ++{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_prog_compiler_pic_CXX" >&5 ++$as_echo "$lt_prog_compiler_pic_CXX" >&6; } + + # + # Check to make sure the PIC flag actually works. + # + if test -n "$lt_prog_compiler_pic_CXX"; then + +-{ echo "$as_me:$LINENO: checking if $compiler PIC flag $lt_prog_compiler_pic_CXX works" >&5 +-echo $ECHO_N "checking if $compiler PIC flag $lt_prog_compiler_pic_CXX works... $ECHO_C" >&6; } +-if test "${lt_cv_prog_compiler_pic_works_CXX+set}" = set; then +- echo $ECHO_N "(cached) $ECHO_C" >&6 ++{ $as_echo "$as_me:${as_lineno-$LINENO}: checking if $compiler PIC flag $lt_prog_compiler_pic_CXX works" >&5 ++$as_echo_n "checking if $compiler PIC flag $lt_prog_compiler_pic_CXX works... " >&6; } ++if ${lt_cv_prog_compiler_pic_works_CXX+:} false; then : ++ $as_echo_n "(cached) " >&6 + else + lt_cv_prog_compiler_pic_works_CXX=no + ac_outfile=conftest.$ac_objext +@@ -14496,11 +14094,11 @@ else + -e 's:.*FLAGS}\{0,1\} :&$lt_compiler_flag :; t' \ + -e 's: [^ ]*conftest\.: $lt_compiler_flag&:; t' \ + -e 's:$: $lt_compiler_flag:'` +- (eval echo "\"\$as_me:14499: $lt_compile\"" >&5) ++ (eval echo "\"\$as_me:14097: $lt_compile\"" >&5) + (eval "$lt_compile" 2>conftest.err) + ac_status=$? + cat conftest.err >&5 +- echo "$as_me:14503: \$? = $ac_status" >&5 ++ echo "$as_me:14101: \$? = $ac_status" >&5 + if (exit $ac_status) && test -s "$ac_outfile"; then + # The compiler can only warn and ignore the option if not recognized + # So say no if there are warnings other than the usual output. +@@ -14513,8 +14111,8 @@ else + $rm conftest* + + fi +-{ echo "$as_me:$LINENO: result: $lt_cv_prog_compiler_pic_works_CXX" >&5 +-echo "${ECHO_T}$lt_cv_prog_compiler_pic_works_CXX" >&6; } ++{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_cv_prog_compiler_pic_works_CXX" >&5 ++$as_echo "$lt_cv_prog_compiler_pic_works_CXX" >&6; } + + if test x"$lt_cv_prog_compiler_pic_works_CXX" = xyes; then + case $lt_prog_compiler_pic_CXX in +@@ -14541,10 +14139,10 @@ esac + # Check to make sure the static flag actually works. + # + wl=$lt_prog_compiler_wl_CXX eval lt_tmp_static_flag=\"$lt_prog_compiler_static_CXX\" +-{ echo "$as_me:$LINENO: checking if $compiler static flag $lt_tmp_static_flag works" >&5 +-echo $ECHO_N "checking if $compiler static flag $lt_tmp_static_flag works... $ECHO_C" >&6; } +-if test "${lt_cv_prog_compiler_static_works_CXX+set}" = set; then +- echo $ECHO_N "(cached) $ECHO_C" >&6 ++{ $as_echo "$as_me:${as_lineno-$LINENO}: checking if $compiler static flag $lt_tmp_static_flag works" >&5 ++$as_echo_n "checking if $compiler static flag $lt_tmp_static_flag works... " >&6; } ++if ${lt_cv_prog_compiler_static_works_CXX+:} false; then : ++ $as_echo_n "(cached) " >&6 + else + lt_cv_prog_compiler_static_works_CXX=no + save_LDFLAGS="$LDFLAGS" +@@ -14569,8 +14167,8 @@ else + LDFLAGS="$save_LDFLAGS" + + fi +-{ echo "$as_me:$LINENO: result: $lt_cv_prog_compiler_static_works_CXX" >&5 +-echo "${ECHO_T}$lt_cv_prog_compiler_static_works_CXX" >&6; } ++{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_cv_prog_compiler_static_works_CXX" >&5 ++$as_echo "$lt_cv_prog_compiler_static_works_CXX" >&6; } + + if test x"$lt_cv_prog_compiler_static_works_CXX" = xyes; then + : +@@ -14579,10 +14177,10 @@ else + fi + + +-{ echo "$as_me:$LINENO: checking if $compiler supports -c -o file.$ac_objext" >&5 +-echo $ECHO_N "checking if $compiler supports -c -o file.$ac_objext... $ECHO_C" >&6; } +-if test "${lt_cv_prog_compiler_c_o_CXX+set}" = set; then +- echo $ECHO_N "(cached) $ECHO_C" >&6 ++{ $as_echo "$as_me:${as_lineno-$LINENO}: checking if $compiler supports -c -o file.$ac_objext" >&5 ++$as_echo_n "checking if $compiler supports -c -o file.$ac_objext... " >&6; } ++if ${lt_cv_prog_compiler_c_o_CXX+:} false; then : ++ $as_echo_n "(cached) " >&6 + else + lt_cv_prog_compiler_c_o_CXX=no + $rm -r conftest 2>/dev/null +@@ -14600,11 +14198,11 @@ else + -e 's:.*FLAGS}\{0,1\} :&$lt_compiler_flag :; t' \ + -e 's: [^ ]*conftest\.: $lt_compiler_flag&:; t' \ + -e 's:$: $lt_compiler_flag:'` +- (eval echo "\"\$as_me:14603: $lt_compile\"" >&5) ++ (eval echo "\"\$as_me:14201: $lt_compile\"" >&5) + (eval "$lt_compile" 2>out/conftest.err) + ac_status=$? + cat out/conftest.err >&5 +- echo "$as_me:14607: \$? = $ac_status" >&5 ++ echo "$as_me:14205: \$? = $ac_status" >&5 + if (exit $ac_status) && test -s out/conftest2.$ac_objext + then + # The compiler can only warn and ignore the option if not recognized +@@ -14626,34 +14224,34 @@ else + $rm conftest* + + fi +-{ echo "$as_me:$LINENO: result: $lt_cv_prog_compiler_c_o_CXX" >&5 +-echo "${ECHO_T}$lt_cv_prog_compiler_c_o_CXX" >&6; } ++{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_cv_prog_compiler_c_o_CXX" >&5 ++$as_echo "$lt_cv_prog_compiler_c_o_CXX" >&6; } + + + hard_links="nottested" + if test "$lt_cv_prog_compiler_c_o_CXX" = no && test "$need_locks" != no; then + # do not overwrite the value of need_locks provided by the user +- { echo "$as_me:$LINENO: checking if we can lock with hard links" >&5 +-echo $ECHO_N "checking if we can lock with hard links... $ECHO_C" >&6; } ++ { $as_echo "$as_me:${as_lineno-$LINENO}: checking if we can lock with hard links" >&5 ++$as_echo_n "checking if we can lock with hard links... " >&6; } + hard_links=yes + $rm conftest* + ln conftest.a conftest.b 2>/dev/null && hard_links=no + touch conftest.a + ln conftest.a conftest.b 2>&5 || hard_links=no + ln conftest.a conftest.b 2>/dev/null && hard_links=no +- { echo "$as_me:$LINENO: result: $hard_links" >&5 +-echo "${ECHO_T}$hard_links" >&6; } ++ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $hard_links" >&5 ++$as_echo "$hard_links" >&6; } + if test "$hard_links" = no; then +- { echo "$as_me:$LINENO: WARNING: \`$CC' does not support \`-c -o', so \`make -j' may be unsafe" >&5 +-echo "$as_me: WARNING: \`$CC' does not support \`-c -o', so \`make -j' may be unsafe" >&2;} ++ { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: \`$CC' does not support \`-c -o', so \`make -j' may be unsafe" >&5 ++$as_echo "$as_me: WARNING: \`$CC' does not support \`-c -o', so \`make -j' may be unsafe" >&2;} + need_locks=warn + fi + else + need_locks=no + fi + +-{ echo "$as_me:$LINENO: checking whether the $compiler linker ($LD) supports shared libraries" >&5 +-echo $ECHO_N "checking whether the $compiler linker ($LD) supports shared libraries... $ECHO_C" >&6; } ++{ $as_echo "$as_me:${as_lineno-$LINENO}: checking whether the $compiler linker ($LD) supports shared libraries" >&5 ++$as_echo_n "checking whether the $compiler linker ($LD) supports shared libraries... " >&6; } + + export_symbols_cmds_CXX='$NM $libobjs $convenience | $global_symbol_pipe | $SED '\''s/.* //'\'' | sort | uniq > $export_symbols' + case $host_os in +@@ -14681,8 +14279,8 @@ echo $ECHO_N "checking whether the $compiler linker ($LD) supports shared librar + esac + exclude_expsyms_CXX='_GLOBAL_OFFSET_TABLE_|_GLOBAL__F[ID]_.*' + +-{ echo "$as_me:$LINENO: result: $ld_shlibs_CXX" >&5 +-echo "${ECHO_T}$ld_shlibs_CXX" >&6; } ++{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ld_shlibs_CXX" >&5 ++$as_echo "$ld_shlibs_CXX" >&6; } + test "$ld_shlibs_CXX" = no && can_build_shared=no + + # +@@ -14702,16 +14300,16 @@ x|xyes) + # Test whether the compiler implicitly links with -lc since on some + # systems, -lgcc has to come before -lc. If gcc already passes -lc + # to ld, don't add -lc before -lgcc. +- { echo "$as_me:$LINENO: checking whether -lc should be explicitly linked in" >&5 +-echo $ECHO_N "checking whether -lc should be explicitly linked in... $ECHO_C" >&6; } ++ { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether -lc should be explicitly linked in" >&5 ++$as_echo_n "checking whether -lc should be explicitly linked in... " >&6; } + $rm conftest* + echo "$lt_simple_compile_test_code" > conftest.$ac_ext + +- if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 ++ if { { eval echo "\"\$as_me\":${as_lineno-$LINENO}: \"$ac_compile\""; } >&5 + (eval $ac_compile) 2>&5 + ac_status=$? +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); } 2>conftest.err; then ++ $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 ++ test $ac_status = 0; } 2>conftest.err; then + soname=conftest + lib=conftest + libobjs=conftest.$ac_objext +@@ -14725,11 +14323,11 @@ echo $ECHO_N "checking whether -lc should be explicitly linked in... $ECHO_C" >& + libname=conftest + lt_save_allow_undefined_flag=$allow_undefined_flag_CXX + allow_undefined_flag_CXX= +- if { (eval echo "$as_me:$LINENO: \"$archive_cmds_CXX 2\>\&1 \| grep \" -lc \" \>/dev/null 2\>\&1\"") >&5 ++ if { { eval echo "\"\$as_me\":${as_lineno-$LINENO}: \"$archive_cmds_CXX 2\>\&1 \| grep \" -lc \" \>/dev/null 2\>\&1\""; } >&5 + (eval $archive_cmds_CXX 2\>\&1 \| grep \" -lc \" \>/dev/null 2\>\&1) 2>&5 + ac_status=$? +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); } ++ $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 ++ test $ac_status = 0; } + then + archive_cmds_need_lc_CXX=no + else +@@ -14740,16 +14338,16 @@ echo $ECHO_N "checking whether -lc should be explicitly linked in... $ECHO_C" >& + cat conftest.err 1>&5 + fi + $rm conftest* +- { echo "$as_me:$LINENO: result: $archive_cmds_need_lc_CXX" >&5 +-echo "${ECHO_T}$archive_cmds_need_lc_CXX" >&6; } ++ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $archive_cmds_need_lc_CXX" >&5 ++$as_echo "$archive_cmds_need_lc_CXX" >&6; } + ;; + esac + fi + ;; + esac + +-{ echo "$as_me:$LINENO: checking dynamic linker characteristics" >&5 +-echo $ECHO_N "checking dynamic linker characteristics... $ECHO_C" >&6; } ++{ $as_echo "$as_me:${as_lineno-$LINENO}: checking dynamic linker characteristics" >&5 ++$as_echo_n "checking dynamic linker characteristics... " >&6; } + library_names_spec= + libname_spec='lib$name' + soname_spec= +@@ -15310,19 +14908,19 @@ uts4*) + dynamic_linker=no + ;; + esac +-{ echo "$as_me:$LINENO: result: $dynamic_linker" >&5 +-echo "${ECHO_T}$dynamic_linker" >&6; } ++{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $dynamic_linker" >&5 ++$as_echo "$dynamic_linker" >&6; } + test "$dynamic_linker" = no && can_build_shared=no + +-if test "${lt_cv_sys_lib_search_path_spec+set}" = set; then +- echo $ECHO_N "(cached) $ECHO_C" >&6 ++if ${lt_cv_sys_lib_search_path_spec+:} false; then : ++ $as_echo_n "(cached) " >&6 + else + lt_cv_sys_lib_search_path_spec="$sys_lib_search_path_spec" + fi + + sys_lib_search_path_spec="$lt_cv_sys_lib_search_path_spec" +-if test "${lt_cv_sys_lib_dlsearch_path_spec+set}" = set; then +- echo $ECHO_N "(cached) $ECHO_C" >&6 ++if ${lt_cv_sys_lib_dlsearch_path_spec+:} false; then : ++ $as_echo_n "(cached) " >&6 + else + lt_cv_sys_lib_dlsearch_path_spec="$sys_lib_dlsearch_path_spec" + fi +@@ -15334,8 +14932,8 @@ if test "$GCC" = yes; then + variables_saved_for_relink="$variables_saved_for_relink GCC_EXEC_PREFIX COMPILER_PATH LIBRARY_PATH" + fi + +-{ echo "$as_me:$LINENO: checking how to hardcode library paths into programs" >&5 +-echo $ECHO_N "checking how to hardcode library paths into programs... $ECHO_C" >&6; } ++{ $as_echo "$as_me:${as_lineno-$LINENO}: checking how to hardcode library paths into programs" >&5 ++$as_echo_n "checking how to hardcode library paths into programs... " >&6; } + hardcode_action_CXX= + if test -n "$hardcode_libdir_flag_spec_CXX" || \ + test -n "$runpath_var_CXX" || \ +@@ -15359,8 +14957,8 @@ else + # directories. + hardcode_action_CXX=unsupported + fi +-{ echo "$as_me:$LINENO: result: $hardcode_action_CXX" >&5 +-echo "${ECHO_T}$hardcode_action_CXX" >&6; } ++{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $hardcode_action_CXX" >&5 ++$as_echo "$hardcode_action_CXX" >&6; } + + if test "$hardcode_action_CXX" = relink; then + # Fast installation is not supported +@@ -15898,13 +15496,13 @@ done + cc_basename=`$echo "X$cc_temp" | $Xsed -e 's%.*/%%' -e "s%^$host_alias-%%"` + + +-{ echo "$as_me:$LINENO: checking if libtool supports shared libraries" >&5 +-echo $ECHO_N "checking if libtool supports shared libraries... $ECHO_C" >&6; } +-{ echo "$as_me:$LINENO: result: $can_build_shared" >&5 +-echo "${ECHO_T}$can_build_shared" >&6; } ++{ $as_echo "$as_me:${as_lineno-$LINENO}: checking if libtool supports shared libraries" >&5 ++$as_echo_n "checking if libtool supports shared libraries... " >&6; } ++{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $can_build_shared" >&5 ++$as_echo "$can_build_shared" >&6; } + +-{ echo "$as_me:$LINENO: checking whether to build shared libraries" >&5 +-echo $ECHO_N "checking whether to build shared libraries... $ECHO_C" >&6; } ++{ $as_echo "$as_me:${as_lineno-$LINENO}: checking whether to build shared libraries" >&5 ++$as_echo_n "checking whether to build shared libraries... " >&6; } + test "$can_build_shared" = "no" && enable_shared=no + + # On AIX, shared libraries and static libraries use the same namespace, and +@@ -15923,15 +15521,15 @@ aix[4-9]*) + fi + ;; + esac +-{ echo "$as_me:$LINENO: result: $enable_shared" >&5 +-echo "${ECHO_T}$enable_shared" >&6; } ++{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $enable_shared" >&5 ++$as_echo "$enable_shared" >&6; } + +-{ echo "$as_me:$LINENO: checking whether to build static libraries" >&5 +-echo $ECHO_N "checking whether to build static libraries... $ECHO_C" >&6; } ++{ $as_echo "$as_me:${as_lineno-$LINENO}: checking whether to build static libraries" >&5 ++$as_echo_n "checking whether to build static libraries... " >&6; } + # Make sure either enable_shared or enable_static is yes. + test "$enable_shared" = yes || enable_static=yes +-{ echo "$as_me:$LINENO: result: $enable_static" >&5 +-echo "${ECHO_T}$enable_static" >&6; } ++{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $enable_static" >&5 ++$as_echo "$enable_static" >&6; } + + GCC_F77="$G77" + LD_F77="$LD" +@@ -15940,8 +15538,8 @@ lt_prog_compiler_wl_F77= + lt_prog_compiler_pic_F77= + lt_prog_compiler_static_F77= + +-{ echo "$as_me:$LINENO: checking for $compiler option to produce PIC" >&5 +-echo $ECHO_N "checking for $compiler option to produce PIC... $ECHO_C" >&6; } ++{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $compiler option to produce PIC" >&5 ++$as_echo_n "checking for $compiler option to produce PIC... " >&6; } + + if test "$GCC" = yes; then + lt_prog_compiler_wl_F77='-Wl,' +@@ -16172,18 +15770,18 @@ echo $ECHO_N "checking for $compiler option to produce PIC... $ECHO_C" >&6; } + esac + fi + +-{ echo "$as_me:$LINENO: result: $lt_prog_compiler_pic_F77" >&5 +-echo "${ECHO_T}$lt_prog_compiler_pic_F77" >&6; } ++{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_prog_compiler_pic_F77" >&5 ++$as_echo "$lt_prog_compiler_pic_F77" >&6; } + + # + # Check to make sure the PIC flag actually works. + # + if test -n "$lt_prog_compiler_pic_F77"; then + +-{ echo "$as_me:$LINENO: checking if $compiler PIC flag $lt_prog_compiler_pic_F77 works" >&5 +-echo $ECHO_N "checking if $compiler PIC flag $lt_prog_compiler_pic_F77 works... $ECHO_C" >&6; } +-if test "${lt_cv_prog_compiler_pic_works_F77+set}" = set; then +- echo $ECHO_N "(cached) $ECHO_C" >&6 ++{ $as_echo "$as_me:${as_lineno-$LINENO}: checking if $compiler PIC flag $lt_prog_compiler_pic_F77 works" >&5 ++$as_echo_n "checking if $compiler PIC flag $lt_prog_compiler_pic_F77 works... " >&6; } ++if ${lt_cv_prog_compiler_pic_works_F77+:} false; then : ++ $as_echo_n "(cached) " >&6 + else + lt_cv_prog_compiler_pic_works_F77=no + ac_outfile=conftest.$ac_objext +@@ -16198,11 +15796,11 @@ else + -e 's:.*FLAGS}\{0,1\} :&$lt_compiler_flag :; t' \ + -e 's: [^ ]*conftest\.: $lt_compiler_flag&:; t' \ + -e 's:$: $lt_compiler_flag:'` +- (eval echo "\"\$as_me:16201: $lt_compile\"" >&5) ++ (eval echo "\"\$as_me:15799: $lt_compile\"" >&5) + (eval "$lt_compile" 2>conftest.err) + ac_status=$? + cat conftest.err >&5 +- echo "$as_me:16205: \$? = $ac_status" >&5 ++ echo "$as_me:15803: \$? = $ac_status" >&5 + if (exit $ac_status) && test -s "$ac_outfile"; then + # The compiler can only warn and ignore the option if not recognized + # So say no if there are warnings other than the usual output. +@@ -16215,8 +15813,8 @@ else + $rm conftest* + + fi +-{ echo "$as_me:$LINENO: result: $lt_cv_prog_compiler_pic_works_F77" >&5 +-echo "${ECHO_T}$lt_cv_prog_compiler_pic_works_F77" >&6; } ++{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_cv_prog_compiler_pic_works_F77" >&5 ++$as_echo "$lt_cv_prog_compiler_pic_works_F77" >&6; } + + if test x"$lt_cv_prog_compiler_pic_works_F77" = xyes; then + case $lt_prog_compiler_pic_F77 in +@@ -16243,10 +15841,10 @@ esac + # Check to make sure the static flag actually works. + # + wl=$lt_prog_compiler_wl_F77 eval lt_tmp_static_flag=\"$lt_prog_compiler_static_F77\" +-{ echo "$as_me:$LINENO: checking if $compiler static flag $lt_tmp_static_flag works" >&5 +-echo $ECHO_N "checking if $compiler static flag $lt_tmp_static_flag works... $ECHO_C" >&6; } +-if test "${lt_cv_prog_compiler_static_works_F77+set}" = set; then +- echo $ECHO_N "(cached) $ECHO_C" >&6 ++{ $as_echo "$as_me:${as_lineno-$LINENO}: checking if $compiler static flag $lt_tmp_static_flag works" >&5 ++$as_echo_n "checking if $compiler static flag $lt_tmp_static_flag works... " >&6; } ++if ${lt_cv_prog_compiler_static_works_F77+:} false; then : ++ $as_echo_n "(cached) " >&6 + else + lt_cv_prog_compiler_static_works_F77=no + save_LDFLAGS="$LDFLAGS" +@@ -16271,8 +15869,8 @@ else + LDFLAGS="$save_LDFLAGS" + + fi +-{ echo "$as_me:$LINENO: result: $lt_cv_prog_compiler_static_works_F77" >&5 +-echo "${ECHO_T}$lt_cv_prog_compiler_static_works_F77" >&6; } ++{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_cv_prog_compiler_static_works_F77" >&5 ++$as_echo "$lt_cv_prog_compiler_static_works_F77" >&6; } + + if test x"$lt_cv_prog_compiler_static_works_F77" = xyes; then + : +@@ -16281,10 +15879,10 @@ else + fi + + +-{ echo "$as_me:$LINENO: checking if $compiler supports -c -o file.$ac_objext" >&5 +-echo $ECHO_N "checking if $compiler supports -c -o file.$ac_objext... $ECHO_C" >&6; } +-if test "${lt_cv_prog_compiler_c_o_F77+set}" = set; then +- echo $ECHO_N "(cached) $ECHO_C" >&6 ++{ $as_echo "$as_me:${as_lineno-$LINENO}: checking if $compiler supports -c -o file.$ac_objext" >&5 ++$as_echo_n "checking if $compiler supports -c -o file.$ac_objext... " >&6; } ++if ${lt_cv_prog_compiler_c_o_F77+:} false; then : ++ $as_echo_n "(cached) " >&6 + else + lt_cv_prog_compiler_c_o_F77=no + $rm -r conftest 2>/dev/null +@@ -16302,11 +15900,11 @@ else + -e 's:.*FLAGS}\{0,1\} :&$lt_compiler_flag :; t' \ + -e 's: [^ ]*conftest\.: $lt_compiler_flag&:; t' \ + -e 's:$: $lt_compiler_flag:'` +- (eval echo "\"\$as_me:16305: $lt_compile\"" >&5) ++ (eval echo "\"\$as_me:15903: $lt_compile\"" >&5) + (eval "$lt_compile" 2>out/conftest.err) + ac_status=$? + cat out/conftest.err >&5 +- echo "$as_me:16309: \$? = $ac_status" >&5 ++ echo "$as_me:15907: \$? = $ac_status" >&5 + if (exit $ac_status) && test -s out/conftest2.$ac_objext + then + # The compiler can only warn and ignore the option if not recognized +@@ -16328,34 +15926,34 @@ else + $rm conftest* + + fi +-{ echo "$as_me:$LINENO: result: $lt_cv_prog_compiler_c_o_F77" >&5 +-echo "${ECHO_T}$lt_cv_prog_compiler_c_o_F77" >&6; } ++{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_cv_prog_compiler_c_o_F77" >&5 ++$as_echo "$lt_cv_prog_compiler_c_o_F77" >&6; } + + + hard_links="nottested" + if test "$lt_cv_prog_compiler_c_o_F77" = no && test "$need_locks" != no; then + # do not overwrite the value of need_locks provided by the user +- { echo "$as_me:$LINENO: checking if we can lock with hard links" >&5 +-echo $ECHO_N "checking if we can lock with hard links... $ECHO_C" >&6; } ++ { $as_echo "$as_me:${as_lineno-$LINENO}: checking if we can lock with hard links" >&5 ++$as_echo_n "checking if we can lock with hard links... " >&6; } + hard_links=yes + $rm conftest* + ln conftest.a conftest.b 2>/dev/null && hard_links=no + touch conftest.a + ln conftest.a conftest.b 2>&5 || hard_links=no + ln conftest.a conftest.b 2>/dev/null && hard_links=no +- { echo "$as_me:$LINENO: result: $hard_links" >&5 +-echo "${ECHO_T}$hard_links" >&6; } ++ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $hard_links" >&5 ++$as_echo "$hard_links" >&6; } + if test "$hard_links" = no; then +- { echo "$as_me:$LINENO: WARNING: \`$CC' does not support \`-c -o', so \`make -j' may be unsafe" >&5 +-echo "$as_me: WARNING: \`$CC' does not support \`-c -o', so \`make -j' may be unsafe" >&2;} ++ { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: \`$CC' does not support \`-c -o', so \`make -j' may be unsafe" >&5 ++$as_echo "$as_me: WARNING: \`$CC' does not support \`-c -o', so \`make -j' may be unsafe" >&2;} + need_locks=warn + fi + else + need_locks=no + fi + +-{ echo "$as_me:$LINENO: checking whether the $compiler linker ($LD) supports shared libraries" >&5 +-echo $ECHO_N "checking whether the $compiler linker ($LD) supports shared libraries... $ECHO_C" >&6; } ++{ $as_echo "$as_me:${as_lineno-$LINENO}: checking whether the $compiler linker ($LD) supports shared libraries" >&5 ++$as_echo_n "checking whether the $compiler linker ($LD) supports shared libraries... " >&6; } + + runpath_var= + allow_undefined_flag_F77= +@@ -16765,29 +16363,12 @@ _LT_EOF + # -berok will link without error, but may produce a broken library. + allow_undefined_flag_F77='-berok' + # Determine the default libpath from the value encoded in an empty executable. +- cat >conftest.$ac_ext <<_ACEOF ++ cat > conftest.$ac_ext <<_ACEOF + program main + + end + _ACEOF +-rm -f conftest.$ac_objext conftest$ac_exeext +-if { (ac_try="$ac_link" +-case "(($ac_try" in +- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; +- *) ac_try_echo=$ac_try;; +-esac +-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 +- (eval "$ac_link") 2>conftest.er1 +- ac_status=$? +- grep -v '^ *+' conftest.er1 >conftest.err +- rm -f conftest.er1 +- cat conftest.err >&5 +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); } && { +- test -z "$ac_f77_werror_flag" || +- test ! -s conftest.err +- } && test -s conftest$ac_exeext && +- $as_test_x conftest$ac_exeext; then ++if ac_fn_f77_try_link "$LINENO"; then : + + lt_aix_libpath_sed=' + /Import File Strings/,/^$/ { +@@ -16801,15 +16382,9 @@ aix_libpath=`dump -H conftest$ac_exeext 2>/dev/null | $SED -n -e "$lt_aix_libpat + if test -z "$aix_libpath"; then + aix_libpath=`dump -HX64 conftest$ac_exeext 2>/dev/null | $SED -n -e "$lt_aix_libpath_sed"` + fi +-else +- echo "$as_me: failed program was:" >&5 +-sed 's/^/| /' conftest.$ac_ext >&5 +- +- + fi +- +-rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ +- conftest$ac_exeext conftest.$ac_ext ++rm -f core conftest.err conftest.$ac_objext \ ++ conftest$ac_exeext conftest.$ac_ext + if test -z "$aix_libpath"; then aix_libpath="/usr/lib:/lib"; fi + + hardcode_libdir_flag_spec_F77='${wl}-blibpath:$libdir:'"$aix_libpath" +@@ -16821,29 +16396,12 @@ if test -z "$aix_libpath"; then aix_libpath="/usr/lib:/lib"; fi + archive_expsym_cmds_F77="\$CC $shared_flag"' -o $output_objdir/$soname $libobjs $deplibs '"\${wl}$no_entry_flag"' $compiler_flags ${wl}${allow_undefined_flag} '"\${wl}$exp_sym_flag:\$export_symbols" + else + # Determine the default libpath from the value encoded in an empty executable. +- cat >conftest.$ac_ext <<_ACEOF ++ cat > conftest.$ac_ext <<_ACEOF + program main + + end + _ACEOF +-rm -f conftest.$ac_objext conftest$ac_exeext +-if { (ac_try="$ac_link" +-case "(($ac_try" in +- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; +- *) ac_try_echo=$ac_try;; +-esac +-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 +- (eval "$ac_link") 2>conftest.er1 +- ac_status=$? +- grep -v '^ *+' conftest.er1 >conftest.err +- rm -f conftest.er1 +- cat conftest.err >&5 +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); } && { +- test -z "$ac_f77_werror_flag" || +- test ! -s conftest.err +- } && test -s conftest$ac_exeext && +- $as_test_x conftest$ac_exeext; then ++if ac_fn_f77_try_link "$LINENO"; then : + + lt_aix_libpath_sed=' + /Import File Strings/,/^$/ { +@@ -16857,15 +16415,9 @@ aix_libpath=`dump -H conftest$ac_exeext 2>/dev/null | $SED -n -e "$lt_aix_libpat + if test -z "$aix_libpath"; then + aix_libpath=`dump -HX64 conftest$ac_exeext 2>/dev/null | $SED -n -e "$lt_aix_libpath_sed"` + fi +-else +- echo "$as_me: failed program was:" >&5 +-sed 's/^/| /' conftest.$ac_ext >&5 +- +- + fi +- +-rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ +- conftest$ac_exeext conftest.$ac_ext ++rm -f core conftest.err conftest.$ac_objext \ ++ conftest$ac_exeext conftest.$ac_ext + if test -z "$aix_libpath"; then aix_libpath="/usr/lib:/lib"; fi + + hardcode_libdir_flag_spec_F77='${wl}-blibpath:$libdir:'"$aix_libpath" +@@ -17315,8 +16867,8 @@ if test -z "$aix_libpath"; then aix_libpath="/usr/lib:/lib"; fi + esac + fi + +-{ echo "$as_me:$LINENO: result: $ld_shlibs_F77" >&5 +-echo "${ECHO_T}$ld_shlibs_F77" >&6; } ++{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ld_shlibs_F77" >&5 ++$as_echo "$ld_shlibs_F77" >&6; } + test "$ld_shlibs_F77" = no && can_build_shared=no + + # +@@ -17336,16 +16888,16 @@ x|xyes) + # Test whether the compiler implicitly links with -lc since on some + # systems, -lgcc has to come before -lc. If gcc already passes -lc + # to ld, don't add -lc before -lgcc. +- { echo "$as_me:$LINENO: checking whether -lc should be explicitly linked in" >&5 +-echo $ECHO_N "checking whether -lc should be explicitly linked in... $ECHO_C" >&6; } ++ { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether -lc should be explicitly linked in" >&5 ++$as_echo_n "checking whether -lc should be explicitly linked in... " >&6; } + $rm conftest* + echo "$lt_simple_compile_test_code" > conftest.$ac_ext + +- if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 ++ if { { eval echo "\"\$as_me\":${as_lineno-$LINENO}: \"$ac_compile\""; } >&5 + (eval $ac_compile) 2>&5 + ac_status=$? +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); } 2>conftest.err; then ++ $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 ++ test $ac_status = 0; } 2>conftest.err; then + soname=conftest + lib=conftest + libobjs=conftest.$ac_objext +@@ -17359,11 +16911,11 @@ echo $ECHO_N "checking whether -lc should be explicitly linked in... $ECHO_C" >& + libname=conftest + lt_save_allow_undefined_flag=$allow_undefined_flag_F77 + allow_undefined_flag_F77= +- if { (eval echo "$as_me:$LINENO: \"$archive_cmds_F77 2\>\&1 \| grep \" -lc \" \>/dev/null 2\>\&1\"") >&5 ++ if { { eval echo "\"\$as_me\":${as_lineno-$LINENO}: \"$archive_cmds_F77 2\>\&1 \| grep \" -lc \" \>/dev/null 2\>\&1\""; } >&5 + (eval $archive_cmds_F77 2\>\&1 \| grep \" -lc \" \>/dev/null 2\>\&1) 2>&5 + ac_status=$? +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); } ++ $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 ++ test $ac_status = 0; } + then + archive_cmds_need_lc_F77=no + else +@@ -17374,16 +16926,16 @@ echo $ECHO_N "checking whether -lc should be explicitly linked in... $ECHO_C" >& + cat conftest.err 1>&5 + fi + $rm conftest* +- { echo "$as_me:$LINENO: result: $archive_cmds_need_lc_F77" >&5 +-echo "${ECHO_T}$archive_cmds_need_lc_F77" >&6; } ++ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $archive_cmds_need_lc_F77" >&5 ++$as_echo "$archive_cmds_need_lc_F77" >&6; } + ;; + esac + fi + ;; + esac + +-{ echo "$as_me:$LINENO: checking dynamic linker characteristics" >&5 +-echo $ECHO_N "checking dynamic linker characteristics... $ECHO_C" >&6; } ++{ $as_echo "$as_me:${as_lineno-$LINENO}: checking dynamic linker characteristics" >&5 ++$as_echo_n "checking dynamic linker characteristics... " >&6; } + library_names_spec= + libname_spec='lib$name' + soname_spec= +@@ -17944,19 +17496,19 @@ uts4*) + dynamic_linker=no + ;; + esac +-{ echo "$as_me:$LINENO: result: $dynamic_linker" >&5 +-echo "${ECHO_T}$dynamic_linker" >&6; } ++{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $dynamic_linker" >&5 ++$as_echo "$dynamic_linker" >&6; } + test "$dynamic_linker" = no && can_build_shared=no + +-if test "${lt_cv_sys_lib_search_path_spec+set}" = set; then +- echo $ECHO_N "(cached) $ECHO_C" >&6 ++if ${lt_cv_sys_lib_search_path_spec+:} false; then : ++ $as_echo_n "(cached) " >&6 + else + lt_cv_sys_lib_search_path_spec="$sys_lib_search_path_spec" + fi + + sys_lib_search_path_spec="$lt_cv_sys_lib_search_path_spec" +-if test "${lt_cv_sys_lib_dlsearch_path_spec+set}" = set; then +- echo $ECHO_N "(cached) $ECHO_C" >&6 ++if ${lt_cv_sys_lib_dlsearch_path_spec+:} false; then : ++ $as_echo_n "(cached) " >&6 + else + lt_cv_sys_lib_dlsearch_path_spec="$sys_lib_dlsearch_path_spec" + fi +@@ -17968,8 +17520,8 @@ if test "$GCC" = yes; then + variables_saved_for_relink="$variables_saved_for_relink GCC_EXEC_PREFIX COMPILER_PATH LIBRARY_PATH" + fi + +-{ echo "$as_me:$LINENO: checking how to hardcode library paths into programs" >&5 +-echo $ECHO_N "checking how to hardcode library paths into programs... $ECHO_C" >&6; } ++{ $as_echo "$as_me:${as_lineno-$LINENO}: checking how to hardcode library paths into programs" >&5 ++$as_echo_n "checking how to hardcode library paths into programs... " >&6; } + hardcode_action_F77= + if test -n "$hardcode_libdir_flag_spec_F77" || \ + test -n "$runpath_var_F77" || \ +@@ -17993,8 +17545,8 @@ else + # directories. + hardcode_action_F77=unsupported + fi +-{ echo "$as_me:$LINENO: result: $hardcode_action_F77" >&5 +-echo "${ECHO_T}$hardcode_action_F77" >&6; } ++{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $hardcode_action_F77" >&5 ++$as_echo "$hardcode_action_F77" >&6; } + + if test "$hardcode_action_F77" = relink; then + # Fast installation is not supported +@@ -18504,10 +18056,10 @@ if test "$GCC" = yes; then + lt_prog_compiler_no_builtin_flag_GCJ=' -fno-builtin' + + +-{ echo "$as_me:$LINENO: checking if $compiler supports -fno-rtti -fno-exceptions" >&5 +-echo $ECHO_N "checking if $compiler supports -fno-rtti -fno-exceptions... $ECHO_C" >&6; } +-if test "${lt_cv_prog_compiler_rtti_exceptions+set}" = set; then +- echo $ECHO_N "(cached) $ECHO_C" >&6 ++{ $as_echo "$as_me:${as_lineno-$LINENO}: checking if $compiler supports -fno-rtti -fno-exceptions" >&5 ++$as_echo_n "checking if $compiler supports -fno-rtti -fno-exceptions... " >&6; } ++if ${lt_cv_prog_compiler_rtti_exceptions+:} false; then : ++ $as_echo_n "(cached) " >&6 + else + lt_cv_prog_compiler_rtti_exceptions=no + ac_outfile=conftest.$ac_objext +@@ -18522,11 +18074,11 @@ else + -e 's:.*FLAGS}\{0,1\} :&$lt_compiler_flag :; t' \ + -e 's: [^ ]*conftest\.: $lt_compiler_flag&:; t' \ + -e 's:$: $lt_compiler_flag:'` +- (eval echo "\"\$as_me:18525: $lt_compile\"" >&5) ++ (eval echo "\"\$as_me:18077: $lt_compile\"" >&5) + (eval "$lt_compile" 2>conftest.err) + ac_status=$? + cat conftest.err >&5 +- echo "$as_me:18529: \$? = $ac_status" >&5 ++ echo "$as_me:18081: \$? = $ac_status" >&5 + if (exit $ac_status) && test -s "$ac_outfile"; then + # The compiler can only warn and ignore the option if not recognized + # So say no if there are warnings other than the usual output. +@@ -18539,8 +18091,8 @@ else + $rm conftest* + + fi +-{ echo "$as_me:$LINENO: result: $lt_cv_prog_compiler_rtti_exceptions" >&5 +-echo "${ECHO_T}$lt_cv_prog_compiler_rtti_exceptions" >&6; } ++{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_cv_prog_compiler_rtti_exceptions" >&5 ++$as_echo "$lt_cv_prog_compiler_rtti_exceptions" >&6; } + + if test x"$lt_cv_prog_compiler_rtti_exceptions" = xyes; then + lt_prog_compiler_no_builtin_flag_GCJ="$lt_prog_compiler_no_builtin_flag_GCJ -fno-rtti -fno-exceptions" +@@ -18554,8 +18106,8 @@ lt_prog_compiler_wl_GCJ= + lt_prog_compiler_pic_GCJ= + lt_prog_compiler_static_GCJ= + +-{ echo "$as_me:$LINENO: checking for $compiler option to produce PIC" >&5 +-echo $ECHO_N "checking for $compiler option to produce PIC... $ECHO_C" >&6; } ++{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $compiler option to produce PIC" >&5 ++$as_echo_n "checking for $compiler option to produce PIC... " >&6; } + + if test "$GCC" = yes; then + lt_prog_compiler_wl_GCJ='-Wl,' +@@ -18786,18 +18338,18 @@ echo $ECHO_N "checking for $compiler option to produce PIC... $ECHO_C" >&6; } + esac + fi + +-{ echo "$as_me:$LINENO: result: $lt_prog_compiler_pic_GCJ" >&5 +-echo "${ECHO_T}$lt_prog_compiler_pic_GCJ" >&6; } ++{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_prog_compiler_pic_GCJ" >&5 ++$as_echo "$lt_prog_compiler_pic_GCJ" >&6; } + + # + # Check to make sure the PIC flag actually works. + # + if test -n "$lt_prog_compiler_pic_GCJ"; then + +-{ echo "$as_me:$LINENO: checking if $compiler PIC flag $lt_prog_compiler_pic_GCJ works" >&5 +-echo $ECHO_N "checking if $compiler PIC flag $lt_prog_compiler_pic_GCJ works... $ECHO_C" >&6; } +-if test "${lt_cv_prog_compiler_pic_works_GCJ+set}" = set; then +- echo $ECHO_N "(cached) $ECHO_C" >&6 ++{ $as_echo "$as_me:${as_lineno-$LINENO}: checking if $compiler PIC flag $lt_prog_compiler_pic_GCJ works" >&5 ++$as_echo_n "checking if $compiler PIC flag $lt_prog_compiler_pic_GCJ works... " >&6; } ++if ${lt_cv_prog_compiler_pic_works_GCJ+:} false; then : ++ $as_echo_n "(cached) " >&6 + else + lt_cv_prog_compiler_pic_works_GCJ=no + ac_outfile=conftest.$ac_objext +@@ -18812,11 +18364,11 @@ else + -e 's:.*FLAGS}\{0,1\} :&$lt_compiler_flag :; t' \ + -e 's: [^ ]*conftest\.: $lt_compiler_flag&:; t' \ + -e 's:$: $lt_compiler_flag:'` +- (eval echo "\"\$as_me:18815: $lt_compile\"" >&5) ++ (eval echo "\"\$as_me:18367: $lt_compile\"" >&5) + (eval "$lt_compile" 2>conftest.err) + ac_status=$? + cat conftest.err >&5 +- echo "$as_me:18819: \$? = $ac_status" >&5 ++ echo "$as_me:18371: \$? = $ac_status" >&5 + if (exit $ac_status) && test -s "$ac_outfile"; then + # The compiler can only warn and ignore the option if not recognized + # So say no if there are warnings other than the usual output. +@@ -18829,8 +18381,8 @@ else + $rm conftest* + + fi +-{ echo "$as_me:$LINENO: result: $lt_cv_prog_compiler_pic_works_GCJ" >&5 +-echo "${ECHO_T}$lt_cv_prog_compiler_pic_works_GCJ" >&6; } ++{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_cv_prog_compiler_pic_works_GCJ" >&5 ++$as_echo "$lt_cv_prog_compiler_pic_works_GCJ" >&6; } + + if test x"$lt_cv_prog_compiler_pic_works_GCJ" = xyes; then + case $lt_prog_compiler_pic_GCJ in +@@ -18857,10 +18409,10 @@ esac + # Check to make sure the static flag actually works. + # + wl=$lt_prog_compiler_wl_GCJ eval lt_tmp_static_flag=\"$lt_prog_compiler_static_GCJ\" +-{ echo "$as_me:$LINENO: checking if $compiler static flag $lt_tmp_static_flag works" >&5 +-echo $ECHO_N "checking if $compiler static flag $lt_tmp_static_flag works... $ECHO_C" >&6; } +-if test "${lt_cv_prog_compiler_static_works_GCJ+set}" = set; then +- echo $ECHO_N "(cached) $ECHO_C" >&6 ++{ $as_echo "$as_me:${as_lineno-$LINENO}: checking if $compiler static flag $lt_tmp_static_flag works" >&5 ++$as_echo_n "checking if $compiler static flag $lt_tmp_static_flag works... " >&6; } ++if ${lt_cv_prog_compiler_static_works_GCJ+:} false; then : ++ $as_echo_n "(cached) " >&6 + else + lt_cv_prog_compiler_static_works_GCJ=no + save_LDFLAGS="$LDFLAGS" +@@ -18885,8 +18437,8 @@ else + LDFLAGS="$save_LDFLAGS" + + fi +-{ echo "$as_me:$LINENO: result: $lt_cv_prog_compiler_static_works_GCJ" >&5 +-echo "${ECHO_T}$lt_cv_prog_compiler_static_works_GCJ" >&6; } ++{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_cv_prog_compiler_static_works_GCJ" >&5 ++$as_echo "$lt_cv_prog_compiler_static_works_GCJ" >&6; } + + if test x"$lt_cv_prog_compiler_static_works_GCJ" = xyes; then + : +@@ -18895,10 +18447,10 @@ else + fi + + +-{ echo "$as_me:$LINENO: checking if $compiler supports -c -o file.$ac_objext" >&5 +-echo $ECHO_N "checking if $compiler supports -c -o file.$ac_objext... $ECHO_C" >&6; } +-if test "${lt_cv_prog_compiler_c_o_GCJ+set}" = set; then +- echo $ECHO_N "(cached) $ECHO_C" >&6 ++{ $as_echo "$as_me:${as_lineno-$LINENO}: checking if $compiler supports -c -o file.$ac_objext" >&5 ++$as_echo_n "checking if $compiler supports -c -o file.$ac_objext... " >&6; } ++if ${lt_cv_prog_compiler_c_o_GCJ+:} false; then : ++ $as_echo_n "(cached) " >&6 + else + lt_cv_prog_compiler_c_o_GCJ=no + $rm -r conftest 2>/dev/null +@@ -18916,11 +18468,11 @@ else + -e 's:.*FLAGS}\{0,1\} :&$lt_compiler_flag :; t' \ + -e 's: [^ ]*conftest\.: $lt_compiler_flag&:; t' \ + -e 's:$: $lt_compiler_flag:'` +- (eval echo "\"\$as_me:18919: $lt_compile\"" >&5) ++ (eval echo "\"\$as_me:18471: $lt_compile\"" >&5) + (eval "$lt_compile" 2>out/conftest.err) + ac_status=$? + cat out/conftest.err >&5 +- echo "$as_me:18923: \$? = $ac_status" >&5 ++ echo "$as_me:18475: \$? = $ac_status" >&5 + if (exit $ac_status) && test -s out/conftest2.$ac_objext + then + # The compiler can only warn and ignore the option if not recognized +@@ -18942,34 +18494,34 @@ else + $rm conftest* + + fi +-{ echo "$as_me:$LINENO: result: $lt_cv_prog_compiler_c_o_GCJ" >&5 +-echo "${ECHO_T}$lt_cv_prog_compiler_c_o_GCJ" >&6; } ++{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_cv_prog_compiler_c_o_GCJ" >&5 ++$as_echo "$lt_cv_prog_compiler_c_o_GCJ" >&6; } + + + hard_links="nottested" + if test "$lt_cv_prog_compiler_c_o_GCJ" = no && test "$need_locks" != no; then + # do not overwrite the value of need_locks provided by the user +- { echo "$as_me:$LINENO: checking if we can lock with hard links" >&5 +-echo $ECHO_N "checking if we can lock with hard links... $ECHO_C" >&6; } ++ { $as_echo "$as_me:${as_lineno-$LINENO}: checking if we can lock with hard links" >&5 ++$as_echo_n "checking if we can lock with hard links... " >&6; } + hard_links=yes + $rm conftest* + ln conftest.a conftest.b 2>/dev/null && hard_links=no + touch conftest.a + ln conftest.a conftest.b 2>&5 || hard_links=no + ln conftest.a conftest.b 2>/dev/null && hard_links=no +- { echo "$as_me:$LINENO: result: $hard_links" >&5 +-echo "${ECHO_T}$hard_links" >&6; } ++ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $hard_links" >&5 ++$as_echo "$hard_links" >&6; } + if test "$hard_links" = no; then +- { echo "$as_me:$LINENO: WARNING: \`$CC' does not support \`-c -o', so \`make -j' may be unsafe" >&5 +-echo "$as_me: WARNING: \`$CC' does not support \`-c -o', so \`make -j' may be unsafe" >&2;} ++ { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: \`$CC' does not support \`-c -o', so \`make -j' may be unsafe" >&5 ++$as_echo "$as_me: WARNING: \`$CC' does not support \`-c -o', so \`make -j' may be unsafe" >&2;} + need_locks=warn + fi + else + need_locks=no + fi + +-{ echo "$as_me:$LINENO: checking whether the $compiler linker ($LD) supports shared libraries" >&5 +-echo $ECHO_N "checking whether the $compiler linker ($LD) supports shared libraries... $ECHO_C" >&6; } ++{ $as_echo "$as_me:${as_lineno-$LINENO}: checking whether the $compiler linker ($LD) supports shared libraries" >&5 ++$as_echo_n "checking whether the $compiler linker ($LD) supports shared libraries... " >&6; } + + runpath_var= + allow_undefined_flag_GCJ= +@@ -19379,11 +18931,7 @@ _LT_EOF + # -berok will link without error, but may produce a broken library. + allow_undefined_flag_GCJ='-berok' + # Determine the default libpath from the value encoded in an empty executable. +- cat >conftest.$ac_ext <<_ACEOF +-/* confdefs.h. */ +-_ACEOF +-cat confdefs.h >>conftest.$ac_ext +-cat >>conftest.$ac_ext <<_ACEOF ++ cat confdefs.h - <<_ACEOF >conftest.$ac_ext + /* end confdefs.h. */ + + int +@@ -19394,24 +18942,7 @@ main () + return 0; + } + _ACEOF +-rm -f conftest.$ac_objext conftest$ac_exeext +-if { (ac_try="$ac_link" +-case "(($ac_try" in +- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; +- *) ac_try_echo=$ac_try;; +-esac +-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 +- (eval "$ac_link") 2>conftest.er1 +- ac_status=$? +- grep -v '^ *+' conftest.er1 >conftest.err +- rm -f conftest.er1 +- cat conftest.err >&5 +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); } && { +- test -z "$ac_c_werror_flag" || +- test ! -s conftest.err +- } && test -s conftest$ac_exeext && +- $as_test_x conftest$ac_exeext; then ++if ac_fn_c_try_link "$LINENO"; then : + + lt_aix_libpath_sed=' + /Import File Strings/,/^$/ { +@@ -19425,15 +18956,9 @@ aix_libpath=`dump -H conftest$ac_exeext 2>/dev/null | $SED -n -e "$lt_aix_libpat + if test -z "$aix_libpath"; then + aix_libpath=`dump -HX64 conftest$ac_exeext 2>/dev/null | $SED -n -e "$lt_aix_libpath_sed"` + fi +-else +- echo "$as_me: failed program was:" >&5 +-sed 's/^/| /' conftest.$ac_ext >&5 +- +- + fi +- +-rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ +- conftest$ac_exeext conftest.$ac_ext ++rm -f core conftest.err conftest.$ac_objext \ ++ conftest$ac_exeext conftest.$ac_ext + if test -z "$aix_libpath"; then aix_libpath="/usr/lib:/lib"; fi + + hardcode_libdir_flag_spec_GCJ='${wl}-blibpath:$libdir:'"$aix_libpath" +@@ -19445,11 +18970,7 @@ if test -z "$aix_libpath"; then aix_libpath="/usr/lib:/lib"; fi + archive_expsym_cmds_GCJ="\$CC $shared_flag"' -o $output_objdir/$soname $libobjs $deplibs '"\${wl}$no_entry_flag"' $compiler_flags ${wl}${allow_undefined_flag} '"\${wl}$exp_sym_flag:\$export_symbols" + else + # Determine the default libpath from the value encoded in an empty executable. +- cat >conftest.$ac_ext <<_ACEOF +-/* confdefs.h. */ +-_ACEOF +-cat confdefs.h >>conftest.$ac_ext +-cat >>conftest.$ac_ext <<_ACEOF ++ cat confdefs.h - <<_ACEOF >conftest.$ac_ext + /* end confdefs.h. */ + + int +@@ -19460,24 +18981,7 @@ main () + return 0; + } + _ACEOF +-rm -f conftest.$ac_objext conftest$ac_exeext +-if { (ac_try="$ac_link" +-case "(($ac_try" in +- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; +- *) ac_try_echo=$ac_try;; +-esac +-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 +- (eval "$ac_link") 2>conftest.er1 +- ac_status=$? +- grep -v '^ *+' conftest.er1 >conftest.err +- rm -f conftest.er1 +- cat conftest.err >&5 +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); } && { +- test -z "$ac_c_werror_flag" || +- test ! -s conftest.err +- } && test -s conftest$ac_exeext && +- $as_test_x conftest$ac_exeext; then ++if ac_fn_c_try_link "$LINENO"; then : + + lt_aix_libpath_sed=' + /Import File Strings/,/^$/ { +@@ -19491,15 +18995,9 @@ aix_libpath=`dump -H conftest$ac_exeext 2>/dev/null | $SED -n -e "$lt_aix_libpat + if test -z "$aix_libpath"; then + aix_libpath=`dump -HX64 conftest$ac_exeext 2>/dev/null | $SED -n -e "$lt_aix_libpath_sed"` + fi +-else +- echo "$as_me: failed program was:" >&5 +-sed 's/^/| /' conftest.$ac_ext >&5 +- +- + fi +- +-rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ +- conftest$ac_exeext conftest.$ac_ext ++rm -f core conftest.err conftest.$ac_objext \ ++ conftest$ac_exeext conftest.$ac_ext + if test -z "$aix_libpath"; then aix_libpath="/usr/lib:/lib"; fi + + hardcode_libdir_flag_spec_GCJ='${wl}-blibpath:$libdir:'"$aix_libpath" +@@ -19949,8 +19447,8 @@ if test -z "$aix_libpath"; then aix_libpath="/usr/lib:/lib"; fi + esac + fi + +-{ echo "$as_me:$LINENO: result: $ld_shlibs_GCJ" >&5 +-echo "${ECHO_T}$ld_shlibs_GCJ" >&6; } ++{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ld_shlibs_GCJ" >&5 ++$as_echo "$ld_shlibs_GCJ" >&6; } + test "$ld_shlibs_GCJ" = no && can_build_shared=no + + # +@@ -19970,16 +19468,16 @@ x|xyes) + # Test whether the compiler implicitly links with -lc since on some + # systems, -lgcc has to come before -lc. If gcc already passes -lc + # to ld, don't add -lc before -lgcc. +- { echo "$as_me:$LINENO: checking whether -lc should be explicitly linked in" >&5 +-echo $ECHO_N "checking whether -lc should be explicitly linked in... $ECHO_C" >&6; } ++ { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether -lc should be explicitly linked in" >&5 ++$as_echo_n "checking whether -lc should be explicitly linked in... " >&6; } + $rm conftest* + echo "$lt_simple_compile_test_code" > conftest.$ac_ext + +- if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 ++ if { { eval echo "\"\$as_me\":${as_lineno-$LINENO}: \"$ac_compile\""; } >&5 + (eval $ac_compile) 2>&5 + ac_status=$? +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); } 2>conftest.err; then ++ $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 ++ test $ac_status = 0; } 2>conftest.err; then + soname=conftest + lib=conftest + libobjs=conftest.$ac_objext +@@ -19993,11 +19491,11 @@ echo $ECHO_N "checking whether -lc should be explicitly linked in... $ECHO_C" >& + libname=conftest + lt_save_allow_undefined_flag=$allow_undefined_flag_GCJ + allow_undefined_flag_GCJ= +- if { (eval echo "$as_me:$LINENO: \"$archive_cmds_GCJ 2\>\&1 \| grep \" -lc \" \>/dev/null 2\>\&1\"") >&5 ++ if { { eval echo "\"\$as_me\":${as_lineno-$LINENO}: \"$archive_cmds_GCJ 2\>\&1 \| grep \" -lc \" \>/dev/null 2\>\&1\""; } >&5 + (eval $archive_cmds_GCJ 2\>\&1 \| grep \" -lc \" \>/dev/null 2\>\&1) 2>&5 + ac_status=$? +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); } ++ $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 ++ test $ac_status = 0; } + then + archive_cmds_need_lc_GCJ=no + else +@@ -20008,16 +19506,16 @@ echo $ECHO_N "checking whether -lc should be explicitly linked in... $ECHO_C" >& + cat conftest.err 1>&5 + fi + $rm conftest* +- { echo "$as_me:$LINENO: result: $archive_cmds_need_lc_GCJ" >&5 +-echo "${ECHO_T}$archive_cmds_need_lc_GCJ" >&6; } ++ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $archive_cmds_need_lc_GCJ" >&5 ++$as_echo "$archive_cmds_need_lc_GCJ" >&6; } + ;; + esac + fi + ;; + esac + +-{ echo "$as_me:$LINENO: checking dynamic linker characteristics" >&5 +-echo $ECHO_N "checking dynamic linker characteristics... $ECHO_C" >&6; } ++{ $as_echo "$as_me:${as_lineno-$LINENO}: checking dynamic linker characteristics" >&5 ++$as_echo_n "checking dynamic linker characteristics... " >&6; } + library_names_spec= + libname_spec='lib$name' + soname_spec= +@@ -20578,19 +20076,19 @@ uts4*) + dynamic_linker=no + ;; + esac +-{ echo "$as_me:$LINENO: result: $dynamic_linker" >&5 +-echo "${ECHO_T}$dynamic_linker" >&6; } ++{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $dynamic_linker" >&5 ++$as_echo "$dynamic_linker" >&6; } + test "$dynamic_linker" = no && can_build_shared=no + +-if test "${lt_cv_sys_lib_search_path_spec+set}" = set; then +- echo $ECHO_N "(cached) $ECHO_C" >&6 ++if ${lt_cv_sys_lib_search_path_spec+:} false; then : ++ $as_echo_n "(cached) " >&6 + else + lt_cv_sys_lib_search_path_spec="$sys_lib_search_path_spec" + fi + + sys_lib_search_path_spec="$lt_cv_sys_lib_search_path_spec" +-if test "${lt_cv_sys_lib_dlsearch_path_spec+set}" = set; then +- echo $ECHO_N "(cached) $ECHO_C" >&6 ++if ${lt_cv_sys_lib_dlsearch_path_spec+:} false; then : ++ $as_echo_n "(cached) " >&6 + else + lt_cv_sys_lib_dlsearch_path_spec="$sys_lib_dlsearch_path_spec" + fi +@@ -20602,8 +20100,8 @@ if test "$GCC" = yes; then + variables_saved_for_relink="$variables_saved_for_relink GCC_EXEC_PREFIX COMPILER_PATH LIBRARY_PATH" + fi + +-{ echo "$as_me:$LINENO: checking how to hardcode library paths into programs" >&5 +-echo $ECHO_N "checking how to hardcode library paths into programs... $ECHO_C" >&6; } ++{ $as_echo "$as_me:${as_lineno-$LINENO}: checking how to hardcode library paths into programs" >&5 ++$as_echo_n "checking how to hardcode library paths into programs... " >&6; } + hardcode_action_GCJ= + if test -n "$hardcode_libdir_flag_spec_GCJ" || \ + test -n "$runpath_var_GCJ" || \ +@@ -20627,8 +20125,8 @@ else + # directories. + hardcode_action_GCJ=unsupported + fi +-{ echo "$as_me:$LINENO: result: $hardcode_action_GCJ" >&5 +-echo "${ECHO_T}$hardcode_action_GCJ" >&6; } ++{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $hardcode_action_GCJ" >&5 ++$as_echo "$hardcode_action_GCJ" >&6; } + + if test "$hardcode_action_GCJ" = relink; then + # Fast installation is not supported +@@ -21551,9 +21049,7 @@ CC="$lt_save_CC" + ;; + + *) +- { { echo "$as_me:$LINENO: error: Unsupported tag name: $tagname" >&5 +-echo "$as_me: error: Unsupported tag name: $tagname" >&2;} +- { (exit 1); exit 1; }; } ++ as_fn_error $? "Unsupported tag name: $tagname" "$LINENO" 5 + ;; + esac + +@@ -21571,9 +21067,7 @@ echo "$as_me: error: Unsupported tag name: $tagname" >&2;} + chmod +x "$ofile" + else + rm -f "${ofile}T" +- { { echo "$as_me:$LINENO: error: unable to update list of available tagged configurations." >&5 +-echo "$as_me: error: unable to update list of available tagged configurations." >&2;} +- { (exit 1); exit 1; }; } ++ as_fn_error $? "unable to update list of available tagged configurations." "$LINENO" 5 + fi + fi + +@@ -21608,7 +21102,7 @@ LIBTOOL='$(SHELL) $(top_builddir)/libtool' + + + # Check whether --enable-libtool was given. +-if test "${enable_libtool+set}" = set; then ++if test "${enable_libtool+set}" = set; then : + enableval=$enable_libtool; + else + enable_libtool="no" +@@ -21625,26 +21119,22 @@ else + fi + + +-{ echo "$as_me:$LINENO: checking for an ANSI C-conforming const" >&5 +-echo $ECHO_N "checking for an ANSI C-conforming const... $ECHO_C" >&6; } +-if test "${ac_cv_c_const+set}" = set; then +- echo $ECHO_N "(cached) $ECHO_C" >&6 ++{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for an ANSI C-conforming const" >&5 ++$as_echo_n "checking for an ANSI C-conforming const... " >&6; } ++if ${ac_cv_c_const+:} false; then : ++ $as_echo_n "(cached) " >&6 + else +- cat >conftest.$ac_ext <<_ACEOF +-/* confdefs.h. */ +-_ACEOF +-cat confdefs.h >>conftest.$ac_ext +-cat >>conftest.$ac_ext <<_ACEOF ++ cat confdefs.h - <<_ACEOF >conftest.$ac_ext + /* end confdefs.h. */ + + int + main () + { +-/* FIXME: Include the comments suggested by Paul. */ ++ + #ifndef __cplusplus +- /* Ultrix mips cc rejects this. */ ++ /* Ultrix mips cc rejects this sort of thing. */ + typedef int charset[2]; +- const charset cs; ++ const charset cs = { 0, 0 }; + /* SunOS 4.1.1 cc rejects this. */ + char const *const *pcpcc; + char **ppc; +@@ -21661,8 +21151,9 @@ main () + ++pcpcc; + ppc = (char**) pcpcc; + pcpcc = (char const *const *) ppc; +- { /* SCO 3.2v4 cc rejects this. */ +- char *t; ++ { /* SCO 3.2v4 cc rejects this sort of thing. */ ++ char tx; ++ char *t = &tx; + char const *s = 0 ? (char *) 0 : (char const *) 0; + + *t++ = 0; +@@ -21678,10 +21169,10 @@ main () + iptr p = 0; + ++p; + } +- { /* AIX XL C 1.02.0.0 rejects this saying ++ { /* AIX XL C 1.02.0.0 rejects this sort of thing, saying + "k.c", line 2.27: 1506-025 (S) Operand must be a modifiable lvalue. */ +- struct s { int j; const int *ap[3]; }; +- struct s *b; b->j = 5; ++ struct s { int j; const int *ap[3]; } bx; ++ struct s *b = &bx; b->j = 5; + } + { /* ULTRIX-32 V3.1 (Rev 9) vcc rejects this */ + const int foo = 10; +@@ -21694,55 +21185,29 @@ main () + return 0; + } + _ACEOF +-rm -f conftest.$ac_objext +-if { (ac_try="$ac_compile" +-case "(($ac_try" in +- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; +- *) ac_try_echo=$ac_try;; +-esac +-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 +- (eval "$ac_compile") 2>conftest.er1 +- ac_status=$? +- grep -v '^ *+' conftest.er1 >conftest.err +- rm -f conftest.er1 +- cat conftest.err >&5 +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); } && { +- test -z "$ac_c_werror_flag" || +- test ! -s conftest.err +- } && test -s conftest.$ac_objext; then ++if ac_fn_c_try_compile "$LINENO"; then : + ac_cv_c_const=yes + else +- echo "$as_me: failed program was:" >&5 +-sed 's/^/| /' conftest.$ac_ext >&5 +- +- ac_cv_c_const=no ++ ac_cv_c_const=no + fi +- + rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext + fi +-{ echo "$as_me:$LINENO: result: $ac_cv_c_const" >&5 +-echo "${ECHO_T}$ac_cv_c_const" >&6; } ++{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_c_const" >&5 ++$as_echo "$ac_cv_c_const" >&6; } + if test $ac_cv_c_const = no; then + +-cat >>confdefs.h <<\_ACEOF +-#define const +-_ACEOF ++$as_echo "#define const /**/" >>confdefs.h + + fi + +-{ echo "$as_me:$LINENO: checking for inline" >&5 +-echo $ECHO_N "checking for inline... $ECHO_C" >&6; } +-if test "${ac_cv_c_inline+set}" = set; then +- echo $ECHO_N "(cached) $ECHO_C" >&6 ++{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for inline" >&5 ++$as_echo_n "checking for inline... " >&6; } ++if ${ac_cv_c_inline+:} false; then : ++ $as_echo_n "(cached) " >&6 + else + ac_cv_c_inline=no + for ac_kw in inline __inline__ __inline; do +- cat >conftest.$ac_ext <<_ACEOF +-/* confdefs.h. */ +-_ACEOF +-cat confdefs.h >>conftest.$ac_ext +-cat >>conftest.$ac_ext <<_ACEOF ++ cat confdefs.h - <<_ACEOF >conftest.$ac_ext + /* end confdefs.h. */ + #ifndef __cplusplus + typedef int foo_t; +@@ -21751,39 +21216,16 @@ $ac_kw foo_t foo () {return 0; } + #endif + + _ACEOF +-rm -f conftest.$ac_objext +-if { (ac_try="$ac_compile" +-case "(($ac_try" in +- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; +- *) ac_try_echo=$ac_try;; +-esac +-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 +- (eval "$ac_compile") 2>conftest.er1 +- ac_status=$? +- grep -v '^ *+' conftest.er1 >conftest.err +- rm -f conftest.er1 +- cat conftest.err >&5 +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); } && { +- test -z "$ac_c_werror_flag" || +- test ! -s conftest.err +- } && test -s conftest.$ac_objext; then ++if ac_fn_c_try_compile "$LINENO"; then : + ac_cv_c_inline=$ac_kw +-else +- echo "$as_me: failed program was:" >&5 +-sed 's/^/| /' conftest.$ac_ext >&5 +- +- + fi +- + rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext + test "$ac_cv_c_inline" != no && break + done + + fi +-{ echo "$as_me:$LINENO: result: $ac_cv_c_inline" >&5 +-echo "${ECHO_T}$ac_cv_c_inline" >&6; } +- ++{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_c_inline" >&5 ++$as_echo "$ac_cv_c_inline" >&6; } + + case $ac_cv_c_inline in + inline | yes) ;; +@@ -21803,34 +21245,32 @@ esac + + + # Check whether --with-contrib was given. +-if test "${with_contrib+set}" = set; then ++if test "${with_contrib+set}" = set; then : + withval=$with_contrib; + fi + + if test "${with_contrib}" != "no"; then +- { echo "$as_me:$LINENO: checking for libs in extras/contrib" >&5 +-echo $ECHO_N "checking for libs in extras/contrib... $ECHO_C" >&6; } ++ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for libs in extras/contrib" >&5 ++$as_echo_n "checking for libs in extras/contrib... " >&6; } + topdir="`dirname $0`" + if test "`echo \"$topdir\" | cut -c 1`" != "/"; then + topdir="`pwd`/$topdir" + fi + if test "`grep HOST ${topdir}/extras/contrib/config.mak 2>/dev/null|awk '{print $3}'`" != "`$CC -dumpmachine`"; then + if test "${with_contrib}" = "yes"; then +- { echo "$as_me:$LINENO: result: no" >&5 +-echo "${ECHO_T}no" >&6; } +- { { echo "$as_me:$LINENO: error: not using the libs in extras/contrib as it is not the same host" >&5 +-echo "$as_me: error: not using the libs in extras/contrib as it is not the same host" >&2;} +- { (exit 1); exit 1; }; } ++ { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 ++$as_echo "no" >&6; } ++ as_fn_error $? " not using the libs in extras/contrib as it is not the same host" "$LINENO" 5 + else +- { echo "$as_me:$LINENO: result: no" >&5 +-echo "${ECHO_T}no" >&6; } +- { echo "$as_me:$LINENO: WARNING: not using the libs in extras/contrib as it is not the same host" >&5 +-echo "$as_me: WARNING: not using the libs in extras/contrib as it is not the same host" >&2;} ++ { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 ++$as_echo "no" >&6; } ++ { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: not using the libs in extras/contrib as it is not the same host" >&5 ++$as_echo "$as_me: WARNING: not using the libs in extras/contrib as it is not the same host" >&2;} + fi + else + if test -d ${topdir}/extras/contrib/lib; then +- { echo "$as_me:$LINENO: result: yes" >&5 +-echo "${ECHO_T}yes" >&6; } ++ { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5 ++$as_echo "yes" >&6; } + export PATH=${topdir}/extras/contrib/bin:$PATH + CPPFLAGS="${CPPFLAGS} -I${topdir}/extras/contrib/include" + CPPFLAGS_save="${CPPFLAGS_save} -I${topdir}/extras/contrib/include" +@@ -21875,8 +21315,8 @@ echo "${ECHO_T}yes" >&6; } + export BELIBRARIES=${topdir}/extras/contrib/lib:$BELIBRARIES + fi + else +- { echo "$as_me:$LINENO: result: no" >&5 +-echo "${ECHO_T}no" >&6; } ++ { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 ++$as_echo "no" >&6; } + fi + fi + fi +@@ -21945,10 +21385,10 @@ case "${target_os}" in + if test -n "$ac_tool_prefix"; then + # Extract the first word of "${ac_tool_prefix}windres", so it can be a program name with args. + set dummy ${ac_tool_prefix}windres; ac_word=$2 +-{ echo "$as_me:$LINENO: checking for $ac_word" >&5 +-echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6; } +-if test "${ac_cv_prog_WINDRES+set}" = set; then +- echo $ECHO_N "(cached) $ECHO_C" >&6 ++{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 ++$as_echo_n "checking for $ac_word... " >&6; } ++if ${ac_cv_prog_WINDRES+:} false; then : ++ $as_echo_n "(cached) " >&6 + else + if test -n "$WINDRES"; then + ac_cv_prog_WINDRES="$WINDRES" # Let the user override the test. +@@ -21958,25 +21398,25 @@ for as_dir in $PATH + do + IFS=$as_save_IFS + test -z "$as_dir" && as_dir=. +- for ac_exec_ext in '' $ac_executable_extensions; do +- if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then ++ for ac_exec_ext in '' $ac_executable_extensions; do ++ if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then + ac_cv_prog_WINDRES="${ac_tool_prefix}windres" +- echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 ++ $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 + break 2 + fi + done +-done ++ done + IFS=$as_save_IFS + + fi + fi + WINDRES=$ac_cv_prog_WINDRES + if test -n "$WINDRES"; then +- { echo "$as_me:$LINENO: result: $WINDRES" >&5 +-echo "${ECHO_T}$WINDRES" >&6; } ++ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $WINDRES" >&5 ++$as_echo "$WINDRES" >&6; } + else +- { echo "$as_me:$LINENO: result: no" >&5 +-echo "${ECHO_T}no" >&6; } ++ { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 ++$as_echo "no" >&6; } + fi + + +@@ -21985,10 +21425,10 @@ if test -z "$ac_cv_prog_WINDRES"; then + ac_ct_WINDRES=$WINDRES + # Extract the first word of "windres", so it can be a program name with args. + set dummy windres; ac_word=$2 +-{ echo "$as_me:$LINENO: checking for $ac_word" >&5 +-echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6; } +-if test "${ac_cv_prog_ac_ct_WINDRES+set}" = set; then +- echo $ECHO_N "(cached) $ECHO_C" >&6 ++{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 ++$as_echo_n "checking for $ac_word... " >&6; } ++if ${ac_cv_prog_ac_ct_WINDRES+:} false; then : ++ $as_echo_n "(cached) " >&6 + else + if test -n "$ac_ct_WINDRES"; then + ac_cv_prog_ac_ct_WINDRES="$ac_ct_WINDRES" # Let the user override the test. +@@ -21998,25 +21438,25 @@ for as_dir in $PATH + do + IFS=$as_save_IFS + test -z "$as_dir" && as_dir=. +- for ac_exec_ext in '' $ac_executable_extensions; do +- if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then ++ for ac_exec_ext in '' $ac_executable_extensions; do ++ if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then + ac_cv_prog_ac_ct_WINDRES="windres" +- echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 ++ $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 + break 2 + fi + done +-done ++ done + IFS=$as_save_IFS + + fi + fi + ac_ct_WINDRES=$ac_cv_prog_ac_ct_WINDRES + if test -n "$ac_ct_WINDRES"; then +- { echo "$as_me:$LINENO: result: $ac_ct_WINDRES" >&5 +-echo "${ECHO_T}$ac_ct_WINDRES" >&6; } ++ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_ct_WINDRES" >&5 ++$as_echo "$ac_ct_WINDRES" >&6; } + else +- { echo "$as_me:$LINENO: result: no" >&5 +-echo "${ECHO_T}no" >&6; } ++ { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 ++$as_echo "no" >&6; } + fi + + if test "x$ac_ct_WINDRES" = x; then +@@ -22024,12 +21464,8 @@ fi + else + case $cross_compiling:$ac_tool_warned in + yes:) +-{ echo "$as_me:$LINENO: WARNING: In the future, Autoconf will not detect cross-tools +-whose name does not start with the host triplet. If you think this +-configuration is useful to you, please write to autoconf@gnu.org." >&5 +-echo "$as_me: WARNING: In the future, Autoconf will not detect cross-tools +-whose name does not start with the host triplet. If you think this +-configuration is useful to you, please write to autoconf@gnu.org." >&2;} ++{ $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet" >&5 ++$as_echo "$as_me: WARNING: using cross tools not prefixed with host triplet" >&2;} + ac_tool_warned=yes ;; + esac + WINDRES=$ac_ct_WINDRES +@@ -22044,18 +21480,14 @@ fi + SYS=mingw32 + ;; + *cygwin*) +- cat >conftest.$ac_ext <<_ACEOF +-/* confdefs.h. */ +-_ACEOF +-cat confdefs.h >>conftest.$ac_ext +-cat >>conftest.$ac_ext <<_ACEOF ++ cat confdefs.h - <<_ACEOF >conftest.$ac_ext + /* end confdefs.h. */ + #ifdef WIN32 + yes + #endif + _ACEOF + if (eval "$ac_cpp conftest.$ac_ext") 2>&5 | +- $EGREP "yes" >/dev/null 2>&1; then ++ $EGREP "yes" >/dev/null 2>&1; then : + SYS=mingw32 + else + SYS=cygwin +@@ -22159,6 +21591,12 @@ rm -f conftest* + am_modules_with_ldflags="${am_modules_with_ldflags} ${element}" + done + ++ ++ for element in access_file; do ++ eval "LDFLAGS_${element}="'"'"-lpoll "'$'"{LDFLAGS_${element}} "'"' ++ am_modules_with_ldflags="${am_modules_with_ldflags} ${element}" ++ done ++ + LDFLAGS_save="${LDFLAGS_save} -lintl"; LDFLAGS="${LDFLAGS_save}" + + if test -f /boot/beos/system/lib/libbind.so; then +@@ -22186,6 +21624,48 @@ rm -f conftest* + + fi + ;; ++ haiku*) ++ SYS=haiku ++ CFLAGS_save="${CFLAGS_save} -Wno-multichar"; CFLAGS="${CFLAGS_save}" ++ CXXFLAGS_save="${CXXFLAGS_save} -Wno-multichar"; CXXFLAGS="${CXXFLAGS_save}" ++ ++ for element in haiku; do ++ eval "CXXFLAGS_${element}="'"$'"{CXXFLAGS_${element}} "'"' ++ am_modules_with_cxxflags="${am_modules_with_cxxflags} ${element}" ++ done ++ ++ ++ for element in vlc logger; do ++ eval "LDFLAGS_${element}="'"'"-lbe "'$'"{LDFLAGS_${element}} "'"' ++ am_modules_with_ldflags="${am_modules_with_ldflags} ${element}" ++ done ++ ++ ++ for element in beos; do ++ eval "LDFLAGS_${element}="'"'"-lbe -lmedia -ltranslation -ltracker -lgame "'$'"{LDFLAGS_${element}} "'"' ++ am_modules_with_ldflags="${am_modules_with_ldflags} ${element}" ++ done ++ ++ ++ for element in dvdnav dvdread; do ++ eval "LDFLAGS_${element}="'"'" "'$'"{LDFLAGS_${element}} "'"' ++ am_modules_with_ldflags="${am_modules_with_ldflags} ${element}" ++ done ++ ++ ++ for element in access_file; do ++ eval "LDFLAGS_${element}="'"'"-lroot "'$'"{LDFLAGS_${element}} "'"' ++ am_modules_with_ldflags="${am_modules_with_ldflags} ${element}" ++ done ++ ++ LDFLAGS_save="${LDFLAGS_save} -lintl"; LDFLAGS="${LDFLAGS_save}" ++ ++ for element in access_file access_ftp access_mms access_output_udp telnet netsync sap ipv4 vlc growl; do ++ eval "LDFLAGS_${element}="'"'"-lnetwork "'$'"{LDFLAGS_${element}} "'"' ++ am_modules_with_ldflags="${am_modules_with_ldflags} ${element}" ++ done ++ ++ ;; + *) + SYS="${target_os}" + ;; +@@ -22202,6 +21682,16 @@ fi + + + ++if test "${SYS}" = "haiku"; then ++ HAVE_HAIKU_TRUE= ++ HAVE_HAIKU_FALSE='#' ++else ++ HAVE_HAIKU_TRUE='#' ++ HAVE_HAIKU_FALSE= ++fi ++ ++ ++ + if test "${SYS}" = "darwin"; then + HAVE_DARWIN_TRUE= + HAVE_DARWIN_FALSE='#' +@@ -22233,7 +21723,7 @@ fi + + + # Check whether --with-macosx-sdk was given. +-if test "${with_macosx_sdk+set}" = set; then ++if test "${with_macosx_sdk+set}" = set; then : + withval=$with_macosx_sdk; + else + with_macosx_sdk=no +@@ -22269,10 +21759,10 @@ ALL_LINGUAS="af ar ca co cs da de en_GB es eu fa fr fur gl he hi hu it ja lt lv + + # Extract the first word of "msgfmt", so it can be a program name with args. + set dummy msgfmt; ac_word=$2 +-{ echo "$as_me:$LINENO: checking for $ac_word" >&5 +-echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6; } +-if test "${ac_cv_path_MSGFMT+set}" = set; then +- echo $ECHO_N "(cached) $ECHO_C" >&6 ++{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 ++$as_echo_n "checking for $ac_word... " >&6; } ++if ${ac_cv_path_MSGFMT+:} false; then : ++ $as_echo_n "(cached) " >&6 + else + case "$MSGFMT" in + /*) +@@ -22297,19 +21787,19 @@ esac + fi + MSGFMT="$ac_cv_path_MSGFMT" + if test "$MSGFMT" != ":"; then +- { echo "$as_me:$LINENO: result: $MSGFMT" >&5 +-echo "${ECHO_T}$MSGFMT" >&6; } ++ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $MSGFMT" >&5 ++$as_echo "$MSGFMT" >&6; } + else +- { echo "$as_me:$LINENO: result: no" >&5 +-echo "${ECHO_T}no" >&6; } ++ { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 ++$as_echo "no" >&6; } + fi + + # Extract the first word of "gmsgfmt", so it can be a program name with args. + set dummy gmsgfmt; ac_word=$2 +-{ echo "$as_me:$LINENO: checking for $ac_word" >&5 +-echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6; } +-if test "${ac_cv_path_GMSGFMT+set}" = set; then +- echo $ECHO_N "(cached) $ECHO_C" >&6 ++{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 ++$as_echo_n "checking for $ac_word... " >&6; } ++if ${ac_cv_path_GMSGFMT+:} false; then : ++ $as_echo_n "(cached) " >&6 + else + case $GMSGFMT in + [\\/]* | ?:[\\/]*) +@@ -22321,14 +21811,14 @@ for as_dir in $PATH + do + IFS=$as_save_IFS + test -z "$as_dir" && as_dir=. +- for ac_exec_ext in '' $ac_executable_extensions; do +- if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then ++ for ac_exec_ext in '' $ac_executable_extensions; do ++ if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then + ac_cv_path_GMSGFMT="$as_dir/$ac_word$ac_exec_ext" +- echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 ++ $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 + break 2 + fi + done +-done ++ done + IFS=$as_save_IFS + + test -z "$ac_cv_path_GMSGFMT" && ac_cv_path_GMSGFMT="$MSGFMT" +@@ -22337,21 +21827,21 @@ esac + fi + GMSGFMT=$ac_cv_path_GMSGFMT + if test -n "$GMSGFMT"; then +- { echo "$as_me:$LINENO: result: $GMSGFMT" >&5 +-echo "${ECHO_T}$GMSGFMT" >&6; } ++ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $GMSGFMT" >&5 ++$as_echo "$GMSGFMT" >&6; } + else +- { echo "$as_me:$LINENO: result: no" >&5 +-echo "${ECHO_T}no" >&6; } ++ { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 ++$as_echo "no" >&6; } + fi + + + + # Extract the first word of "xgettext", so it can be a program name with args. + set dummy xgettext; ac_word=$2 +-{ echo "$as_me:$LINENO: checking for $ac_word" >&5 +-echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6; } +-if test "${ac_cv_path_XGETTEXT+set}" = set; then +- echo $ECHO_N "(cached) $ECHO_C" >&6 ++{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 ++$as_echo_n "checking for $ac_word... " >&6; } ++if ${ac_cv_path_XGETTEXT+:} false; then : ++ $as_echo_n "(cached) " >&6 + else + case "$XGETTEXT" in + /*) +@@ -22376,21 +21866,21 @@ esac + fi + XGETTEXT="$ac_cv_path_XGETTEXT" + if test "$XGETTEXT" != ":"; then +- { echo "$as_me:$LINENO: result: $XGETTEXT" >&5 +-echo "${ECHO_T}$XGETTEXT" >&6; } ++ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $XGETTEXT" >&5 ++$as_echo "$XGETTEXT" >&6; } + else +- { echo "$as_me:$LINENO: result: no" >&5 +-echo "${ECHO_T}no" >&6; } ++ { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 ++$as_echo "no" >&6; } + fi + + rm -f messages.po + + # Extract the first word of "msgmerge", so it can be a program name with args. + set dummy msgmerge; ac_word=$2 +-{ echo "$as_me:$LINENO: checking for $ac_word" >&5 +-echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6; } +-if test "${ac_cv_path_MSGMERGE+set}" = set; then +- echo $ECHO_N "(cached) $ECHO_C" >&6 ++{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 ++$as_echo_n "checking for $ac_word... " >&6; } ++if ${ac_cv_path_MSGMERGE+:} false; then : ++ $as_echo_n "(cached) " >&6 + else + case "$MSGMERGE" in + /*) +@@ -22414,11 +21904,11 @@ esac + fi + MSGMERGE="$ac_cv_path_MSGMERGE" + if test "$MSGMERGE" != ":"; then +- { echo "$as_me:$LINENO: result: $MSGMERGE" >&5 +-echo "${ECHO_T}$MSGMERGE" >&6; } ++ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $MSGMERGE" >&5 ++$as_echo "$MSGMERGE" >&6; } + else +- { echo "$as_me:$LINENO: result: no" >&5 +-echo "${ECHO_T}no" >&6; } ++ { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 ++$as_echo "no" >&6; } + fi + + +@@ -22428,8 +21918,8 @@ fi + : ; + else + GMSGFMT=`echo "$GMSGFMT" | sed -e 's,^.*/,,'` +- { echo "$as_me:$LINENO: result: found $GMSGFMT program is not GNU msgfmt; ignore it" >&5 +-echo "${ECHO_T}found $GMSGFMT program is not GNU msgfmt; ignore it" >&6; } ++ { $as_echo "$as_me:${as_lineno-$LINENO}: result: found $GMSGFMT program is not GNU msgfmt; ignore it" >&5 ++$as_echo "found $GMSGFMT program is not GNU msgfmt; ignore it" >&6; } + GMSGFMT=":" + fi + fi +@@ -22439,8 +21929,8 @@ echo "${ECHO_T}found $GMSGFMT program is not GNU msgfmt; ignore it" >&6; } + (if $XGETTEXT --omit-header --copyright-holder= /dev/null 2>&1 >/dev/null | grep usage >/dev/null; then exit 1; else exit 0; fi); then + : ; + else +- { echo "$as_me:$LINENO: result: found xgettext program is not GNU xgettext; ignore it" >&5 +-echo "${ECHO_T}found xgettext program is not GNU xgettext; ignore it" >&6; } ++ { $as_echo "$as_me:${as_lineno-$LINENO}: result: found xgettext program is not GNU xgettext; ignore it" >&5 ++$as_echo "found xgettext program is not GNU xgettext; ignore it" >&6; } + XGETTEXT=":" + fi + rm -f messages.po +@@ -22452,10 +21942,10 @@ echo "${ECHO_T}found xgettext program is not GNU xgettext; ignore it" >&6; } + if test -n "$ac_tool_prefix"; then + # Extract the first word of "${ac_tool_prefix}ranlib", so it can be a program name with args. + set dummy ${ac_tool_prefix}ranlib; ac_word=$2 +-{ echo "$as_me:$LINENO: checking for $ac_word" >&5 +-echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6; } +-if test "${ac_cv_prog_RANLIB+set}" = set; then +- echo $ECHO_N "(cached) $ECHO_C" >&6 ++{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 ++$as_echo_n "checking for $ac_word... " >&6; } ++if ${ac_cv_prog_RANLIB+:} false; then : ++ $as_echo_n "(cached) " >&6 + else + if test -n "$RANLIB"; then + ac_cv_prog_RANLIB="$RANLIB" # Let the user override the test. +@@ -22465,25 +21955,25 @@ for as_dir in $PATH + do + IFS=$as_save_IFS + test -z "$as_dir" && as_dir=. +- for ac_exec_ext in '' $ac_executable_extensions; do +- if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then ++ for ac_exec_ext in '' $ac_executable_extensions; do ++ if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then + ac_cv_prog_RANLIB="${ac_tool_prefix}ranlib" +- echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 ++ $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 + break 2 + fi + done +-done ++ done + IFS=$as_save_IFS + + fi + fi + RANLIB=$ac_cv_prog_RANLIB + if test -n "$RANLIB"; then +- { echo "$as_me:$LINENO: result: $RANLIB" >&5 +-echo "${ECHO_T}$RANLIB" >&6; } ++ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $RANLIB" >&5 ++$as_echo "$RANLIB" >&6; } + else +- { echo "$as_me:$LINENO: result: no" >&5 +-echo "${ECHO_T}no" >&6; } ++ { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 ++$as_echo "no" >&6; } + fi + + +@@ -22492,10 +21982,10 @@ if test -z "$ac_cv_prog_RANLIB"; then + ac_ct_RANLIB=$RANLIB + # Extract the first word of "ranlib", so it can be a program name with args. + set dummy ranlib; ac_word=$2 +-{ echo "$as_me:$LINENO: checking for $ac_word" >&5 +-echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6; } +-if test "${ac_cv_prog_ac_ct_RANLIB+set}" = set; then +- echo $ECHO_N "(cached) $ECHO_C" >&6 ++{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 ++$as_echo_n "checking for $ac_word... " >&6; } ++if ${ac_cv_prog_ac_ct_RANLIB+:} false; then : ++ $as_echo_n "(cached) " >&6 + else + if test -n "$ac_ct_RANLIB"; then + ac_cv_prog_ac_ct_RANLIB="$ac_ct_RANLIB" # Let the user override the test. +@@ -22505,25 +21995,25 @@ for as_dir in $PATH + do + IFS=$as_save_IFS + test -z "$as_dir" && as_dir=. +- for ac_exec_ext in '' $ac_executable_extensions; do +- if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then ++ for ac_exec_ext in '' $ac_executable_extensions; do ++ if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then + ac_cv_prog_ac_ct_RANLIB="ranlib" +- echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 ++ $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 + break 2 + fi + done +-done ++ done + IFS=$as_save_IFS + + fi + fi + ac_ct_RANLIB=$ac_cv_prog_ac_ct_RANLIB + if test -n "$ac_ct_RANLIB"; then +- { echo "$as_me:$LINENO: result: $ac_ct_RANLIB" >&5 +-echo "${ECHO_T}$ac_ct_RANLIB" >&6; } ++ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_ct_RANLIB" >&5 ++$as_echo "$ac_ct_RANLIB" >&6; } + else +- { echo "$as_me:$LINENO: result: no" >&5 +-echo "${ECHO_T}no" >&6; } ++ { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 ++$as_echo "no" >&6; } + fi + + if test "x$ac_ct_RANLIB" = x; then +@@ -22531,12 +22021,8 @@ fi + else + case $cross_compiling:$ac_tool_warned in + yes:) +-{ echo "$as_me:$LINENO: WARNING: In the future, Autoconf will not detect cross-tools +-whose name does not start with the host triplet. If you think this +-configuration is useful to you, please write to autoconf@gnu.org." >&5 +-echo "$as_me: WARNING: In the future, Autoconf will not detect cross-tools +-whose name does not start with the host triplet. If you think this +-configuration is useful to you, please write to autoconf@gnu.org." >&2;} ++{ $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet" >&5 ++$as_echo "$as_me: WARNING: using cross tools not prefixed with host triplet" >&2;} + ac_tool_warned=yes ;; + esac + RANLIB=$ac_ct_RANLIB +@@ -22546,18 +22032,14 @@ else + fi + + +- { echo "$as_me:$LINENO: checking for strerror in -lcposix" >&5 +-echo $ECHO_N "checking for strerror in -lcposix... $ECHO_C" >&6; } +-if test "${ac_cv_lib_cposix_strerror+set}" = set; then +- echo $ECHO_N "(cached) $ECHO_C" >&6 ++ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for strerror in -lcposix" >&5 ++$as_echo_n "checking for strerror in -lcposix... " >&6; } ++if ${ac_cv_lib_cposix_strerror+:} false; then : ++ $as_echo_n "(cached) " >&6 + else + ac_check_lib_save_LIBS=$LIBS + LIBS="-lcposix $LIBS" +-cat >conftest.$ac_ext <<_ACEOF +-/* confdefs.h. */ +-_ACEOF +-cat confdefs.h >>conftest.$ac_ext +-cat >>conftest.$ac_ext <<_ACEOF ++cat confdefs.h - <<_ACEOF >conftest.$ac_ext + /* end confdefs.h. */ + + /* Override any GCC internal prototype to avoid an error. +@@ -22575,99 +22057,26 @@ return strerror (); + return 0; + } + _ACEOF +-rm -f conftest.$ac_objext conftest$ac_exeext +-if { (ac_try="$ac_link" +-case "(($ac_try" in +- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; +- *) ac_try_echo=$ac_try;; +-esac +-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 +- (eval "$ac_link") 2>conftest.er1 +- ac_status=$? +- grep -v '^ *+' conftest.er1 >conftest.err +- rm -f conftest.er1 +- cat conftest.err >&5 +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); } && { +- test -z "$ac_c_werror_flag" || +- test ! -s conftest.err +- } && test -s conftest$ac_exeext && +- $as_test_x conftest$ac_exeext; then ++if ac_fn_c_try_link "$LINENO"; then : + ac_cv_lib_cposix_strerror=yes + else +- echo "$as_me: failed program was:" >&5 +-sed 's/^/| /' conftest.$ac_ext >&5 +- +- ac_cv_lib_cposix_strerror=no ++ ac_cv_lib_cposix_strerror=no + fi +- +-rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ +- conftest$ac_exeext conftest.$ac_ext ++rm -f core conftest.err conftest.$ac_objext \ ++ conftest$ac_exeext conftest.$ac_ext + LIBS=$ac_check_lib_save_LIBS + fi +-{ echo "$as_me:$LINENO: result: $ac_cv_lib_cposix_strerror" >&5 +-echo "${ECHO_T}$ac_cv_lib_cposix_strerror" >&6; } +-if test $ac_cv_lib_cposix_strerror = yes; then ++{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_cposix_strerror" >&5 ++$as_echo "$ac_cv_lib_cposix_strerror" >&6; } ++if test "x$ac_cv_lib_cposix_strerror" = xyes; then : + LIBS="$LIBS -lcposix" + fi + + + +-{ echo "$as_me:$LINENO: checking for off_t" >&5 +-echo $ECHO_N "checking for off_t... $ECHO_C" >&6; } +-if test "${ac_cv_type_off_t+set}" = set; then +- echo $ECHO_N "(cached) $ECHO_C" >&6 +-else +- cat >conftest.$ac_ext <<_ACEOF +-/* confdefs.h. */ +-_ACEOF +-cat confdefs.h >>conftest.$ac_ext +-cat >>conftest.$ac_ext <<_ACEOF +-/* end confdefs.h. */ +-$ac_includes_default +-typedef off_t ac__type_new_; +-int +-main () +-{ +-if ((ac__type_new_ *) 0) +- return 0; +-if (sizeof (ac__type_new_)) +- return 0; +- ; +- return 0; +-} +-_ACEOF +-rm -f conftest.$ac_objext +-if { (ac_try="$ac_compile" +-case "(($ac_try" in +- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; +- *) ac_try_echo=$ac_try;; +-esac +-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 +- (eval "$ac_compile") 2>conftest.er1 +- ac_status=$? +- grep -v '^ *+' conftest.er1 >conftest.err +- rm -f conftest.er1 +- cat conftest.err >&5 +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); } && { +- test -z "$ac_c_werror_flag" || +- test ! -s conftest.err +- } && test -s conftest.$ac_objext; then +- ac_cv_type_off_t=yes +-else +- echo "$as_me: failed program was:" >&5 +-sed 's/^/| /' conftest.$ac_ext >&5 +- +- ac_cv_type_off_t=no +-fi ++ac_fn_c_check_type "$LINENO" "off_t" "ac_cv_type_off_t" "$ac_includes_default" ++if test "x$ac_cv_type_off_t" = xyes; then : + +-rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext +-fi +-{ echo "$as_me:$LINENO: result: $ac_cv_type_off_t" >&5 +-echo "${ECHO_T}$ac_cv_type_off_t" >&6; } +-if test $ac_cv_type_off_t = yes; then +- : + else + + cat >>confdefs.h <<_ACEOF +@@ -22676,61 +22085,9 @@ _ACEOF + + fi + +-{ echo "$as_me:$LINENO: checking for size_t" >&5 +-echo $ECHO_N "checking for size_t... $ECHO_C" >&6; } +-if test "${ac_cv_type_size_t+set}" = set; then +- echo $ECHO_N "(cached) $ECHO_C" >&6 +-else +- cat >conftest.$ac_ext <<_ACEOF +-/* confdefs.h. */ +-_ACEOF +-cat confdefs.h >>conftest.$ac_ext +-cat >>conftest.$ac_ext <<_ACEOF +-/* end confdefs.h. */ +-$ac_includes_default +-typedef size_t ac__type_new_; +-int +-main () +-{ +-if ((ac__type_new_ *) 0) +- return 0; +-if (sizeof (ac__type_new_)) +- return 0; +- ; +- return 0; +-} +-_ACEOF +-rm -f conftest.$ac_objext +-if { (ac_try="$ac_compile" +-case "(($ac_try" in +- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; +- *) ac_try_echo=$ac_try;; +-esac +-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 +- (eval "$ac_compile") 2>conftest.er1 +- ac_status=$? +- grep -v '^ *+' conftest.er1 >conftest.err +- rm -f conftest.er1 +- cat conftest.err >&5 +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); } && { +- test -z "$ac_c_werror_flag" || +- test ! -s conftest.err +- } && test -s conftest.$ac_objext; then +- ac_cv_type_size_t=yes +-else +- echo "$as_me: failed program was:" >&5 +-sed 's/^/| /' conftest.$ac_ext >&5 +- +- ac_cv_type_size_t=no +-fi ++ac_fn_c_check_type "$LINENO" "size_t" "ac_cv_type_size_t" "$ac_includes_default" ++if test "x$ac_cv_type_size_t" = xyes; then : + +-rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext +-fi +-{ echo "$as_me:$LINENO: result: $ac_cv_type_size_t" >&5 +-echo "${ECHO_T}$ac_cv_type_size_t" >&6; } +-if test $ac_cv_type_size_t = yes; then +- : + else + + cat >>confdefs.h <<_ACEOF +@@ -22741,16 +22098,12 @@ fi + + # The Ultrix 4.2 mips builtin alloca declared by alloca.h only works + # for constant arguments. Useless! +-{ echo "$as_me:$LINENO: checking for working alloca.h" >&5 +-echo $ECHO_N "checking for working alloca.h... $ECHO_C" >&6; } +-if test "${ac_cv_working_alloca_h+set}" = set; then +- echo $ECHO_N "(cached) $ECHO_C" >&6 ++{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for working alloca.h" >&5 ++$as_echo_n "checking for working alloca.h... " >&6; } ++if ${ac_cv_working_alloca_h+:} false; then : ++ $as_echo_n "(cached) " >&6 + else +- cat >conftest.$ac_ext <<_ACEOF +-/* confdefs.h. */ +-_ACEOF +-cat confdefs.h >>conftest.$ac_ext +-cat >>conftest.$ac_ext <<_ACEOF ++ cat confdefs.h - <<_ACEOF >conftest.$ac_ext + /* end confdefs.h. */ + #include + int +@@ -22762,55 +22115,28 @@ char *p = (char *) alloca (2 * sizeof (int)); + return 0; + } + _ACEOF +-rm -f conftest.$ac_objext conftest$ac_exeext +-if { (ac_try="$ac_link" +-case "(($ac_try" in +- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; +- *) ac_try_echo=$ac_try;; +-esac +-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 +- (eval "$ac_link") 2>conftest.er1 +- ac_status=$? +- grep -v '^ *+' conftest.er1 >conftest.err +- rm -f conftest.er1 +- cat conftest.err >&5 +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); } && { +- test -z "$ac_c_werror_flag" || +- test ! -s conftest.err +- } && test -s conftest$ac_exeext && +- $as_test_x conftest$ac_exeext; then ++if ac_fn_c_try_link "$LINENO"; then : + ac_cv_working_alloca_h=yes + else +- echo "$as_me: failed program was:" >&5 +-sed 's/^/| /' conftest.$ac_ext >&5 +- +- ac_cv_working_alloca_h=no ++ ac_cv_working_alloca_h=no + fi +- +-rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ +- conftest$ac_exeext conftest.$ac_ext ++rm -f core conftest.err conftest.$ac_objext \ ++ conftest$ac_exeext conftest.$ac_ext + fi +-{ echo "$as_me:$LINENO: result: $ac_cv_working_alloca_h" >&5 +-echo "${ECHO_T}$ac_cv_working_alloca_h" >&6; } ++{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_working_alloca_h" >&5 ++$as_echo "$ac_cv_working_alloca_h" >&6; } + if test $ac_cv_working_alloca_h = yes; then + +-cat >>confdefs.h <<\_ACEOF +-#define HAVE_ALLOCA_H 1 +-_ACEOF ++$as_echo "#define HAVE_ALLOCA_H 1" >>confdefs.h + + fi + +-{ echo "$as_me:$LINENO: checking for alloca" >&5 +-echo $ECHO_N "checking for alloca... $ECHO_C" >&6; } +-if test "${ac_cv_func_alloca_works+set}" = set; then +- echo $ECHO_N "(cached) $ECHO_C" >&6 ++{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for alloca" >&5 ++$as_echo_n "checking for alloca... " >&6; } ++if ${ac_cv_func_alloca_works+:} false; then : ++ $as_echo_n "(cached) " >&6 + else +- cat >conftest.$ac_ext <<_ACEOF +-/* confdefs.h. */ +-_ACEOF +-cat confdefs.h >>conftest.$ac_ext +-cat >>conftest.$ac_ext <<_ACEOF ++ cat confdefs.h - <<_ACEOF >conftest.$ac_ext + /* end confdefs.h. */ + #ifdef __GNUC__ + # define alloca __builtin_alloca +@@ -22826,7 +22152,7 @@ cat >>conftest.$ac_ext <<_ACEOF + #pragma alloca + # else + # ifndef alloca /* predefined by HP cc +Olibcalls */ +-char *alloca (); ++void *alloca (size_t); + # endif + # endif + # endif +@@ -22842,43 +22168,20 @@ char *p = (char *) alloca (1); + return 0; + } + _ACEOF +-rm -f conftest.$ac_objext conftest$ac_exeext +-if { (ac_try="$ac_link" +-case "(($ac_try" in +- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; +- *) ac_try_echo=$ac_try;; +-esac +-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 +- (eval "$ac_link") 2>conftest.er1 +- ac_status=$? +- grep -v '^ *+' conftest.er1 >conftest.err +- rm -f conftest.er1 +- cat conftest.err >&5 +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); } && { +- test -z "$ac_c_werror_flag" || +- test ! -s conftest.err +- } && test -s conftest$ac_exeext && +- $as_test_x conftest$ac_exeext; then ++if ac_fn_c_try_link "$LINENO"; then : + ac_cv_func_alloca_works=yes + else +- echo "$as_me: failed program was:" >&5 +-sed 's/^/| /' conftest.$ac_ext >&5 +- +- ac_cv_func_alloca_works=no ++ ac_cv_func_alloca_works=no + fi +- +-rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ +- conftest$ac_exeext conftest.$ac_ext ++rm -f core conftest.err conftest.$ac_objext \ ++ conftest$ac_exeext conftest.$ac_ext + fi +-{ echo "$as_me:$LINENO: result: $ac_cv_func_alloca_works" >&5 +-echo "${ECHO_T}$ac_cv_func_alloca_works" >&6; } ++{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_func_alloca_works" >&5 ++$as_echo "$ac_cv_func_alloca_works" >&6; } + + if test $ac_cv_func_alloca_works = yes; then + +-cat >>confdefs.h <<\_ACEOF +-#define HAVE_ALLOCA 1 +-_ACEOF ++$as_echo "#define HAVE_ALLOCA 1" >>confdefs.h + + else + # The SVR3 libPW and SVR4 libucb both contain incompatible functions +@@ -22888,21 +22191,15 @@ else + + ALLOCA=\${LIBOBJDIR}alloca.$ac_objext + +-cat >>confdefs.h <<\_ACEOF +-#define C_ALLOCA 1 +-_ACEOF ++$as_echo "#define C_ALLOCA 1" >>confdefs.h + + +-{ echo "$as_me:$LINENO: checking whether \`alloca.c' needs Cray hooks" >&5 +-echo $ECHO_N "checking whether \`alloca.c' needs Cray hooks... $ECHO_C" >&6; } +-if test "${ac_cv_os_cray+set}" = set; then +- echo $ECHO_N "(cached) $ECHO_C" >&6 ++{ $as_echo "$as_me:${as_lineno-$LINENO}: checking whether \`alloca.c' needs Cray hooks" >&5 ++$as_echo_n "checking whether \`alloca.c' needs Cray hooks... " >&6; } ++if ${ac_cv_os_cray+:} false; then : ++ $as_echo_n "(cached) " >&6 + else +- cat >conftest.$ac_ext <<_ACEOF +-/* confdefs.h. */ +-_ACEOF +-cat confdefs.h >>conftest.$ac_ext +-cat >>conftest.$ac_ext <<_ACEOF ++ cat confdefs.h - <<_ACEOF >conftest.$ac_ext + /* end confdefs.h. */ + #if defined CRAY && ! defined CRAY2 + webecray +@@ -22912,7 +22209,7 @@ wenotbecray + + _ACEOF + if (eval "$ac_cpp conftest.$ac_ext") 2>&5 | +- $EGREP "webecray" >/dev/null 2>&1; then ++ $EGREP "webecray" >/dev/null 2>&1; then : + ac_cv_os_cray=yes + else + ac_cv_os_cray=no +@@ -22920,94 +22217,13 @@ fi + rm -f conftest* + + fi +-{ echo "$as_me:$LINENO: result: $ac_cv_os_cray" >&5 +-echo "${ECHO_T}$ac_cv_os_cray" >&6; } ++{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_os_cray" >&5 ++$as_echo "$ac_cv_os_cray" >&6; } + if test $ac_cv_os_cray = yes; then + for ac_func in _getb67 GETB67 getb67; do +- as_ac_var=`echo "ac_cv_func_$ac_func" | $as_tr_sh` +-{ echo "$as_me:$LINENO: checking for $ac_func" >&5 +-echo $ECHO_N "checking for $ac_func... $ECHO_C" >&6; } +-if { as_var=$as_ac_var; eval "test \"\${$as_var+set}\" = set"; }; then +- echo $ECHO_N "(cached) $ECHO_C" >&6 +-else +- cat >conftest.$ac_ext <<_ACEOF +-/* confdefs.h. */ +-_ACEOF +-cat confdefs.h >>conftest.$ac_ext +-cat >>conftest.$ac_ext <<_ACEOF +-/* end confdefs.h. */ +-/* Define $ac_func to an innocuous variant, in case declares $ac_func. +- For example, HP-UX 11i declares gettimeofday. */ +-#define $ac_func innocuous_$ac_func +- +-/* System header to define __stub macros and hopefully few prototypes, +- which can conflict with char $ac_func (); below. +- Prefer to if __STDC__ is defined, since +- exists even on freestanding compilers. */ +- +-#ifdef __STDC__ +-# include +-#else +-# include +-#endif +- +-#undef $ac_func +- +-/* Override any GCC internal prototype to avoid an error. +- Use char because int might match the return type of a GCC +- builtin and then its argument prototype would still apply. */ +-#ifdef __cplusplus +-extern "C" +-#endif +-char $ac_func (); +-/* The GNU C library defines this for functions which it implements +- to always fail with ENOSYS. Some functions are actually named +- something starting with __ and the normal name is an alias. */ +-#if defined __stub_$ac_func || defined __stub___$ac_func +-choke me +-#endif +- +-int +-main () +-{ +-return $ac_func (); +- ; +- return 0; +-} +-_ACEOF +-rm -f conftest.$ac_objext conftest$ac_exeext +-if { (ac_try="$ac_link" +-case "(($ac_try" in +- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; +- *) ac_try_echo=$ac_try;; +-esac +-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 +- (eval "$ac_link") 2>conftest.er1 +- ac_status=$? +- grep -v '^ *+' conftest.er1 >conftest.err +- rm -f conftest.er1 +- cat conftest.err >&5 +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); } && { +- test -z "$ac_c_werror_flag" || +- test ! -s conftest.err +- } && test -s conftest$ac_exeext && +- $as_test_x conftest$ac_exeext; then +- eval "$as_ac_var=yes" +-else +- echo "$as_me: failed program was:" >&5 +-sed 's/^/| /' conftest.$ac_ext >&5 +- +- eval "$as_ac_var=no" +-fi +- +-rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ +- conftest$ac_exeext conftest.$ac_ext +-fi +-ac_res=`eval echo '${'$as_ac_var'}'` +- { echo "$as_me:$LINENO: result: $ac_res" >&5 +-echo "${ECHO_T}$ac_res" >&6; } +-if test `eval echo '${'$as_ac_var'}'` = yes; then ++ as_ac_var=`$as_echo "ac_cv_func_$ac_func" | $as_tr_sh` ++ac_fn_c_check_func "$LINENO" "$ac_func" "$as_ac_var" ++if eval test \"x\$"$as_ac_var"\" = x"yes"; then : + + cat >>confdefs.h <<_ACEOF + #define CRAY_STACKSEG_END $ac_func +@@ -23019,78 +22235,46 @@ fi + done + fi + +-{ echo "$as_me:$LINENO: checking stack direction for C alloca" >&5 +-echo $ECHO_N "checking stack direction for C alloca... $ECHO_C" >&6; } +-if test "${ac_cv_c_stack_direction+set}" = set; then +- echo $ECHO_N "(cached) $ECHO_C" >&6 ++{ $as_echo "$as_me:${as_lineno-$LINENO}: checking stack direction for C alloca" >&5 ++$as_echo_n "checking stack direction for C alloca... " >&6; } ++if ${ac_cv_c_stack_direction+:} false; then : ++ $as_echo_n "(cached) " >&6 + else +- if test "$cross_compiling" = yes; then ++ if test "$cross_compiling" = yes; then : + ac_cv_c_stack_direction=0 + else +- cat >conftest.$ac_ext <<_ACEOF +-/* confdefs.h. */ +-_ACEOF +-cat confdefs.h >>conftest.$ac_ext +-cat >>conftest.$ac_ext <<_ACEOF ++ cat confdefs.h - <<_ACEOF >conftest.$ac_ext + /* end confdefs.h. */ + $ac_includes_default + int +-find_stack_direction () ++find_stack_direction (int *addr, int depth) + { +- static char *addr = 0; +- auto char dummy; +- if (addr == 0) +- { +- addr = &dummy; +- return find_stack_direction (); +- } +- else +- return (&dummy > addr) ? 1 : -1; ++ int dir, dummy = 0; ++ if (! addr) ++ addr = &dummy; ++ *addr = addr < &dummy ? 1 : addr == &dummy ? 0 : -1; ++ dir = depth ? find_stack_direction (addr, depth - 1) : 0; ++ return dir + dummy; + } + + int +-main () ++main (int argc, char **argv) + { +- return find_stack_direction () < 0; ++ return find_stack_direction (0, argc + !argv + 20) < 0; + } + _ACEOF +-rm -f conftest$ac_exeext +-if { (ac_try="$ac_link" +-case "(($ac_try" in +- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; +- *) ac_try_echo=$ac_try;; +-esac +-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 +- (eval "$ac_link") 2>&5 +- ac_status=$? +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); } && { ac_try='./conftest$ac_exeext' +- { (case "(($ac_try" in +- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; +- *) ac_try_echo=$ac_try;; +-esac +-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 +- (eval "$ac_try") 2>&5 +- ac_status=$? +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); }; }; then ++if ac_fn_c_try_run "$LINENO"; then : + ac_cv_c_stack_direction=1 + else +- echo "$as_me: program exited with status $ac_status" >&5 +-echo "$as_me: failed program was:" >&5 +-sed 's/^/| /' conftest.$ac_ext >&5 +- +-( exit $ac_status ) +-ac_cv_c_stack_direction=-1 ++ ac_cv_c_stack_direction=-1 + fi +-rm -f core *.core core.conftest.* gmon.out bb.out conftest$ac_exeext conftest.$ac_objext conftest.$ac_ext ++rm -f core *.core core.conftest.* gmon.out bb.out conftest$ac_exeext \ ++ conftest.$ac_objext conftest.beam conftest.$ac_ext + fi + +- + fi +-{ echo "$as_me:$LINENO: result: $ac_cv_c_stack_direction" >&5 +-echo "${ECHO_T}$ac_cv_c_stack_direction" >&6; } +- ++{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_c_stack_direction" >&5 ++$as_echo "$ac_cv_c_stack_direction" >&6; } + cat >>confdefs.h <<_ACEOF + #define STACK_DIRECTION $ac_cv_c_stack_direction + _ACEOF +@@ -23100,139 +22284,15 @@ fi + + + +-for ac_header in stdlib.h unistd.h +-do +-as_ac_Header=`echo "ac_cv_header_$ac_header" | $as_tr_sh` +-if { as_var=$as_ac_Header; eval "test \"\${$as_var+set}\" = set"; }; then +- { echo "$as_me:$LINENO: checking for $ac_header" >&5 +-echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6; } +-if { as_var=$as_ac_Header; eval "test \"\${$as_var+set}\" = set"; }; then +- echo $ECHO_N "(cached) $ECHO_C" >&6 +-fi +-ac_res=`eval echo '${'$as_ac_Header'}'` +- { echo "$as_me:$LINENO: result: $ac_res" >&5 +-echo "${ECHO_T}$ac_res" >&6; } +-else +- # Is the header compilable? +-{ echo "$as_me:$LINENO: checking $ac_header usability" >&5 +-echo $ECHO_N "checking $ac_header usability... $ECHO_C" >&6; } +-cat >conftest.$ac_ext <<_ACEOF +-/* confdefs.h. */ +-_ACEOF +-cat confdefs.h >>conftest.$ac_ext +-cat >>conftest.$ac_ext <<_ACEOF +-/* end confdefs.h. */ +-$ac_includes_default +-#include <$ac_header> +-_ACEOF +-rm -f conftest.$ac_objext +-if { (ac_try="$ac_compile" +-case "(($ac_try" in +- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; +- *) ac_try_echo=$ac_try;; +-esac +-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 +- (eval "$ac_compile") 2>conftest.er1 +- ac_status=$? +- grep -v '^ *+' conftest.er1 >conftest.err +- rm -f conftest.er1 +- cat conftest.err >&5 +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); } && { +- test -z "$ac_c_werror_flag" || +- test ! -s conftest.err +- } && test -s conftest.$ac_objext; then +- ac_header_compiler=yes +-else +- echo "$as_me: failed program was:" >&5 +-sed 's/^/| /' conftest.$ac_ext >&5 +- +- ac_header_compiler=no +-fi +- +-rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext +-{ echo "$as_me:$LINENO: result: $ac_header_compiler" >&5 +-echo "${ECHO_T}$ac_header_compiler" >&6; } +- +-# Is the header present? +-{ echo "$as_me:$LINENO: checking $ac_header presence" >&5 +-echo $ECHO_N "checking $ac_header presence... $ECHO_C" >&6; } +-cat >conftest.$ac_ext <<_ACEOF +-/* confdefs.h. */ +-_ACEOF +-cat confdefs.h >>conftest.$ac_ext +-cat >>conftest.$ac_ext <<_ACEOF +-/* end confdefs.h. */ +-#include <$ac_header> +-_ACEOF +-if { (ac_try="$ac_cpp conftest.$ac_ext" +-case "(($ac_try" in +- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; +- *) ac_try_echo=$ac_try;; +-esac +-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 +- (eval "$ac_cpp conftest.$ac_ext") 2>conftest.er1 +- ac_status=$? +- grep -v '^ *+' conftest.er1 >conftest.err +- rm -f conftest.er1 +- cat conftest.err >&5 +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); } >/dev/null && { +- test -z "$ac_c_preproc_warn_flag$ac_c_werror_flag" || +- test ! -s conftest.err +- }; then +- ac_header_preproc=yes +-else +- echo "$as_me: failed program was:" >&5 +-sed 's/^/| /' conftest.$ac_ext >&5 +- +- ac_header_preproc=no +-fi +- +-rm -f conftest.err conftest.$ac_ext +-{ echo "$as_me:$LINENO: result: $ac_header_preproc" >&5 +-echo "${ECHO_T}$ac_header_preproc" >&6; } +- +-# So? What about this header? +-case $ac_header_compiler:$ac_header_preproc:$ac_c_preproc_warn_flag in +- yes:no: ) +- { echo "$as_me:$LINENO: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&5 +-echo "$as_me: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&2;} +- { echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the compiler's result" >&5 +-echo "$as_me: WARNING: $ac_header: proceeding with the compiler's result" >&2;} +- ac_header_preproc=yes +- ;; +- no:yes:* ) +- { echo "$as_me:$LINENO: WARNING: $ac_header: present but cannot be compiled" >&5 +-echo "$as_me: WARNING: $ac_header: present but cannot be compiled" >&2;} +- { echo "$as_me:$LINENO: WARNING: $ac_header: check for missing prerequisite headers?" >&5 +-echo "$as_me: WARNING: $ac_header: check for missing prerequisite headers?" >&2;} +- { echo "$as_me:$LINENO: WARNING: $ac_header: see the Autoconf documentation" >&5 +-echo "$as_me: WARNING: $ac_header: see the Autoconf documentation" >&2;} +- { echo "$as_me:$LINENO: WARNING: $ac_header: section \"Present But Cannot Be Compiled\"" >&5 +-echo "$as_me: WARNING: $ac_header: section \"Present But Cannot Be Compiled\"" >&2;} +- { echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the preprocessor's result" >&5 +-echo "$as_me: WARNING: $ac_header: proceeding with the preprocessor's result" >&2;} +- { echo "$as_me:$LINENO: WARNING: $ac_header: in the future, the compiler will take precedence" >&5 +-echo "$as_me: WARNING: $ac_header: in the future, the compiler will take precedence" >&2;} + +- ;; +-esac +-{ echo "$as_me:$LINENO: checking for $ac_header" >&5 +-echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6; } +-if { as_var=$as_ac_Header; eval "test \"\${$as_var+set}\" = set"; }; then +- echo $ECHO_N "(cached) $ECHO_C" >&6 +-else +- eval "$as_ac_Header=\$ac_header_preproc" +-fi +-ac_res=`eval echo '${'$as_ac_Header'}'` +- { echo "$as_me:$LINENO: result: $ac_res" >&5 +-echo "${ECHO_T}$ac_res" >&6; } +- +-fi +-if test `eval echo '${'$as_ac_Header'}'` = yes; then ++ for ac_header in $ac_header_list ++do : ++ as_ac_Header=`$as_echo "ac_cv_header_$ac_header" | $as_tr_sh` ++ac_fn_c_check_header_compile "$LINENO" "$ac_header" "$as_ac_Header" "$ac_includes_default ++" ++if eval test \"x\$"$as_ac_Header"\" = x"yes"; then : + cat >>confdefs.h <<_ACEOF +-#define `echo "HAVE_$ac_header" | $as_tr_cpp` 1 ++#define `$as_echo "HAVE_$ac_header" | $as_tr_cpp` 1 + _ACEOF + + fi +@@ -23240,112 +22300,32 @@ fi + done + + +-for ac_func in getpagesize +-do +-as_ac_var=`echo "ac_cv_func_$ac_func" | $as_tr_sh` +-{ echo "$as_me:$LINENO: checking for $ac_func" >&5 +-echo $ECHO_N "checking for $ac_func... $ECHO_C" >&6; } +-if { as_var=$as_ac_var; eval "test \"\${$as_var+set}\" = set"; }; then +- echo $ECHO_N "(cached) $ECHO_C" >&6 +-else +- cat >conftest.$ac_ext <<_ACEOF +-/* confdefs.h. */ +-_ACEOF +-cat confdefs.h >>conftest.$ac_ext +-cat >>conftest.$ac_ext <<_ACEOF +-/* end confdefs.h. */ +-/* Define $ac_func to an innocuous variant, in case declares $ac_func. +- For example, HP-UX 11i declares gettimeofday. */ +-#define $ac_func innocuous_$ac_func +- +-/* System header to define __stub macros and hopefully few prototypes, +- which can conflict with char $ac_func (); below. +- Prefer to if __STDC__ is defined, since +- exists even on freestanding compilers. */ + +-#ifdef __STDC__ +-# include +-#else +-# include +-#endif + +-#undef $ac_func + +-/* Override any GCC internal prototype to avoid an error. +- Use char because int might match the return type of a GCC +- builtin and then its argument prototype would still apply. */ +-#ifdef __cplusplus +-extern "C" +-#endif +-char $ac_func (); +-/* The GNU C library defines this for functions which it implements +- to always fail with ENOSYS. Some functions are actually named +- something starting with __ and the normal name is an alias. */ +-#if defined __stub_$ac_func || defined __stub___$ac_func +-choke me +-#endif + +-int +-main () +-{ +-return $ac_func (); +- ; +- return 0; +-} +-_ACEOF +-rm -f conftest.$ac_objext conftest$ac_exeext +-if { (ac_try="$ac_link" +-case "(($ac_try" in +- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; +- *) ac_try_echo=$ac_try;; +-esac +-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 +- (eval "$ac_link") 2>conftest.er1 +- ac_status=$? +- grep -v '^ *+' conftest.er1 >conftest.err +- rm -f conftest.er1 +- cat conftest.err >&5 +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); } && { +- test -z "$ac_c_werror_flag" || +- test ! -s conftest.err +- } && test -s conftest$ac_exeext && +- $as_test_x conftest$ac_exeext; then +- eval "$as_ac_var=yes" +-else +- echo "$as_me: failed program was:" >&5 +-sed 's/^/| /' conftest.$ac_ext >&5 + +- eval "$as_ac_var=no" +-fi + +-rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ +- conftest$ac_exeext conftest.$ac_ext +-fi +-ac_res=`eval echo '${'$as_ac_var'}'` +- { echo "$as_me:$LINENO: result: $ac_res" >&5 +-echo "${ECHO_T}$ac_res" >&6; } +-if test `eval echo '${'$as_ac_var'}'` = yes; then ++for ac_func in getpagesize ++do : ++ ac_fn_c_check_func "$LINENO" "getpagesize" "ac_cv_func_getpagesize" ++if test "x$ac_cv_func_getpagesize" = xyes; then : + cat >>confdefs.h <<_ACEOF +-#define `echo "HAVE_$ac_func" | $as_tr_cpp` 1 ++#define HAVE_GETPAGESIZE 1 + _ACEOF + + fi + done + +-{ echo "$as_me:$LINENO: checking for working mmap" >&5 +-echo $ECHO_N "checking for working mmap... $ECHO_C" >&6; } +-if test "${ac_cv_func_mmap_fixed_mapped+set}" = set; then +- echo $ECHO_N "(cached) $ECHO_C" >&6 ++{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for working mmap" >&5 ++$as_echo_n "checking for working mmap... " >&6; } ++if ${ac_cv_func_mmap_fixed_mapped+:} false; then : ++ $as_echo_n "(cached) " >&6 + else +- if test "$cross_compiling" = yes; then ++ if test "$cross_compiling" = yes; then : + ac_cv_func_mmap_fixed_mapped=no + else +- cat >conftest.$ac_ext <<_ACEOF +-/* confdefs.h. */ +-_ACEOF +-cat confdefs.h >>conftest.$ac_ext +-cat >>conftest.$ac_ext <<_ACEOF ++ cat confdefs.h - <<_ACEOF >conftest.$ac_ext + /* end confdefs.h. */ + $ac_includes_default + /* malloc might have been renamed as rpl_malloc. */ +@@ -23382,11 +22362,6 @@ char *malloc (); + + /* This mess was copied from the GNU getpagesize.h. */ + #ifndef HAVE_GETPAGESIZE +-/* Assume that all systems that can run configure have sys/param.h. */ +-# ifndef HAVE_SYS_PARAM_H +-# define HAVE_SYS_PARAM_H 1 +-# endif +- + # ifdef _SC_PAGESIZE + # define getpagesize() sysconf(_SC_PAGESIZE) + # else /* no _SC_PAGESIZE */ +@@ -23421,8 +22396,9 @@ int + main () + { + char *data, *data2, *data3; ++ const char *cdata2; + int i, pagesize; +- int fd; ++ int fd, fd2; + + pagesize = getpagesize (); + +@@ -23435,27 +22411,41 @@ main () + umask (0); + fd = creat ("conftest.mmap", 0600); + if (fd < 0) +- return 1; ++ return 2; + if (write (fd, data, pagesize) != pagesize) +- return 1; ++ return 3; + close (fd); + ++ /* Next, check that the tail of a page is zero-filled. File must have ++ non-zero length, otherwise we risk SIGBUS for entire page. */ ++ fd2 = open ("conftest.txt", O_RDWR | O_CREAT | O_TRUNC, 0600); ++ if (fd2 < 0) ++ return 4; ++ cdata2 = ""; ++ if (write (fd2, cdata2, 1) != 1) ++ return 5; ++ data2 = (char *) mmap (0, pagesize, PROT_READ | PROT_WRITE, MAP_SHARED, fd2, 0L); ++ if (data2 == MAP_FAILED) ++ return 6; ++ for (i = 0; i < pagesize; ++i) ++ if (*(data2 + i)) ++ return 7; ++ close (fd2); ++ if (munmap (data2, pagesize)) ++ return 8; ++ + /* Next, try to mmap the file at a fixed address which already has + something else allocated at it. If we can, also make sure that + we see the same garbage. */ + fd = open ("conftest.mmap", O_RDWR); + if (fd < 0) +- return 1; +- data2 = (char *) malloc (2 * pagesize); +- if (!data2) +- return 1; +- data2 += (pagesize - ((long int) data2 & (pagesize - 1))) & (pagesize - 1); ++ return 9; + if (data2 != mmap (data2, pagesize, PROT_READ | PROT_WRITE, + MAP_PRIVATE | MAP_FIXED, fd, 0L)) +- return 1; ++ return 10; + for (i = 0; i < pagesize; ++i) + if (*(data + i) != *(data2 + i)) +- return 1; ++ return 11; + + /* Finally, make sure that changes to the mapped area do not + percolate back to the file as seen by read(). (This is a bug on +@@ -23464,72 +22454,42 @@ main () + *(data2 + i) = *(data2 + i) + 1; + data3 = (char *) malloc (pagesize); + if (!data3) +- return 1; ++ return 12; + if (read (fd, data3, pagesize) != pagesize) +- return 1; ++ return 13; + for (i = 0; i < pagesize; ++i) + if (*(data + i) != *(data3 + i)) +- return 1; ++ return 14; + close (fd); + return 0; + } + _ACEOF +-rm -f conftest$ac_exeext +-if { (ac_try="$ac_link" +-case "(($ac_try" in +- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; +- *) ac_try_echo=$ac_try;; +-esac +-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 +- (eval "$ac_link") 2>&5 +- ac_status=$? +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); } && { ac_try='./conftest$ac_exeext' +- { (case "(($ac_try" in +- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; +- *) ac_try_echo=$ac_try;; +-esac +-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 +- (eval "$ac_try") 2>&5 +- ac_status=$? +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); }; }; then ++if ac_fn_c_try_run "$LINENO"; then : + ac_cv_func_mmap_fixed_mapped=yes + else +- echo "$as_me: program exited with status $ac_status" >&5 +-echo "$as_me: failed program was:" >&5 +-sed 's/^/| /' conftest.$ac_ext >&5 +- +-( exit $ac_status ) +-ac_cv_func_mmap_fixed_mapped=no ++ ac_cv_func_mmap_fixed_mapped=no + fi +-rm -f core *.core core.conftest.* gmon.out bb.out conftest$ac_exeext conftest.$ac_objext conftest.$ac_ext ++rm -f core *.core core.conftest.* gmon.out bb.out conftest$ac_exeext \ ++ conftest.$ac_objext conftest.beam conftest.$ac_ext + fi + +- + fi +-{ echo "$as_me:$LINENO: result: $ac_cv_func_mmap_fixed_mapped" >&5 +-echo "${ECHO_T}$ac_cv_func_mmap_fixed_mapped" >&6; } ++{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_func_mmap_fixed_mapped" >&5 ++$as_echo "$ac_cv_func_mmap_fixed_mapped" >&6; } + if test $ac_cv_func_mmap_fixed_mapped = yes; then + +-cat >>confdefs.h <<\_ACEOF +-#define HAVE_MMAP 1 +-_ACEOF ++$as_echo "#define HAVE_MMAP 1" >>confdefs.h + + fi +-rm -f conftest.mmap ++rm -f conftest.mmap conftest.txt + + +- { echo "$as_me:$LINENO: checking whether we are using the GNU C Library 2.1 or newer" >&5 +-echo $ECHO_N "checking whether we are using the GNU C Library 2.1 or newer... $ECHO_C" >&6; } +-if test "${ac_cv_gnu_library_2_1+set}" = set; then +- echo $ECHO_N "(cached) $ECHO_C" >&6 ++ { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether we are using the GNU C Library 2.1 or newer" >&5 ++$as_echo_n "checking whether we are using the GNU C Library 2.1 or newer... " >&6; } ++if ${ac_cv_gnu_library_2_1+:} false; then : ++ $as_echo_n "(cached) " >&6 + else +- cat >conftest.$ac_ext <<_ACEOF +-/* confdefs.h. */ +-_ACEOF +-cat confdefs.h >>conftest.$ac_ext +-cat >>conftest.$ac_ext <<_ACEOF ++ cat confdefs.h - <<_ACEOF >conftest.$ac_ext + /* end confdefs.h. */ + + #include +@@ -23541,7 +22501,7 @@ cat >>conftest.$ac_ext <<_ACEOF + + _ACEOF + if (eval "$ac_cpp conftest.$ac_ext") 2>&5 | +- $EGREP "Lucky GNU user" >/dev/null 2>&1; then ++ $EGREP "Lucky GNU user" >/dev/null 2>&1; then : + ac_cv_gnu_library_2_1=yes + else + ac_cv_gnu_library_2_1=no +@@ -23551,21 +22511,21 @@ rm -f conftest* + + + fi +-{ echo "$as_me:$LINENO: result: $ac_cv_gnu_library_2_1" >&5 +-echo "${ECHO_T}$ac_cv_gnu_library_2_1" >&6; } ++{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_gnu_library_2_1" >&5 ++$as_echo "$ac_cv_gnu_library_2_1" >&6; } + + GLIBC21="$ac_cv_gnu_library_2_1" + + + + +- { echo "$as_me:$LINENO: checking whether integer division by zero raises SIGFPE" >&5 +-echo $ECHO_N "checking whether integer division by zero raises SIGFPE... $ECHO_C" >&6; } +-if test "${gt_cv_int_divbyzero_sigfpe+set}" = set; then +- echo $ECHO_N "(cached) $ECHO_C" >&6 ++ { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether integer division by zero raises SIGFPE" >&5 ++$as_echo_n "checking whether integer division by zero raises SIGFPE... " >&6; } ++if ${gt_cv_int_divbyzero_sigfpe+:} false; then : ++ $as_echo_n "(cached) " >&6 + else + +- if test "$cross_compiling" = yes; then ++ if test "$cross_compiling" = yes; then : + + # Guess based on the CPU. + case "$host_cpu" in +@@ -23576,11 +22536,7 @@ else + esac + + else +- cat >conftest.$ac_ext <<_ACEOF +-/* confdefs.h. */ +-_ACEOF +-cat confdefs.h >>conftest.$ac_ext +-cat >>conftest.$ac_ext <<_ACEOF ++ cat confdefs.h - <<_ACEOF >conftest.$ac_ext + /* end confdefs.h. */ + + #include +@@ -23620,43 +22576,19 @@ int main () + } + + _ACEOF +-rm -f conftest$ac_exeext +-if { (ac_try="$ac_link" +-case "(($ac_try" in +- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; +- *) ac_try_echo=$ac_try;; +-esac +-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 +- (eval "$ac_link") 2>&5 +- ac_status=$? +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); } && { ac_try='./conftest$ac_exeext' +- { (case "(($ac_try" in +- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; +- *) ac_try_echo=$ac_try;; +-esac +-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 +- (eval "$ac_try") 2>&5 +- ac_status=$? +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); }; }; then ++if ac_fn_c_try_run "$LINENO"; then : + gt_cv_int_divbyzero_sigfpe=yes + else +- echo "$as_me: program exited with status $ac_status" >&5 +-echo "$as_me: failed program was:" >&5 +-sed 's/^/| /' conftest.$ac_ext >&5 +- +-( exit $ac_status ) +-gt_cv_int_divbyzero_sigfpe=no ++ gt_cv_int_divbyzero_sigfpe=no + fi +-rm -f core *.core core.conftest.* gmon.out bb.out conftest$ac_exeext conftest.$ac_objext conftest.$ac_ext ++rm -f core *.core core.conftest.* gmon.out bb.out conftest$ac_exeext \ ++ conftest.$ac_objext conftest.beam conftest.$ac_ext + fi + + +- + fi +-{ echo "$as_me:$LINENO: result: $gt_cv_int_divbyzero_sigfpe" >&5 +-echo "${ECHO_T}$gt_cv_int_divbyzero_sigfpe" >&6; } ++{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $gt_cv_int_divbyzero_sigfpe" >&5 ++$as_echo "$gt_cv_int_divbyzero_sigfpe" >&6; } + case "$gt_cv_int_divbyzero_sigfpe" in + *yes) value=1;; + *) value=0;; +@@ -23668,16 +22600,12 @@ _ACEOF + + + +- { echo "$as_me:$LINENO: checking for inttypes.h" >&5 +-echo $ECHO_N "checking for inttypes.h... $ECHO_C" >&6; } +-if test "${jm_ac_cv_header_inttypes_h+set}" = set; then +- echo $ECHO_N "(cached) $ECHO_C" >&6 ++ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for inttypes.h" >&5 ++$as_echo_n "checking for inttypes.h... " >&6; } ++if ${jm_ac_cv_header_inttypes_h+:} false; then : ++ $as_echo_n "(cached) " >&6 + else +- cat >conftest.$ac_ext <<_ACEOF +-/* confdefs.h. */ +-_ACEOF +-cat confdefs.h >>conftest.$ac_ext +-cat >>conftest.$ac_ext <<_ACEOF ++ cat confdefs.h - <<_ACEOF >conftest.$ac_ext + /* end confdefs.h. */ + #include + #include +@@ -23689,35 +22617,15 @@ uintmax_t i = (uintmax_t) -1; + return 0; + } + _ACEOF +-rm -f conftest.$ac_objext +-if { (ac_try="$ac_compile" +-case "(($ac_try" in +- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; +- *) ac_try_echo=$ac_try;; +-esac +-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 +- (eval "$ac_compile") 2>conftest.er1 +- ac_status=$? +- grep -v '^ *+' conftest.er1 >conftest.err +- rm -f conftest.er1 +- cat conftest.err >&5 +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); } && { +- test -z "$ac_c_werror_flag" || +- test ! -s conftest.err +- } && test -s conftest.$ac_objext; then ++if ac_fn_c_try_compile "$LINENO"; then : + jm_ac_cv_header_inttypes_h=yes + else +- echo "$as_me: failed program was:" >&5 +-sed 's/^/| /' conftest.$ac_ext >&5 +- +- jm_ac_cv_header_inttypes_h=no ++ jm_ac_cv_header_inttypes_h=no + fi +- + rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext + fi +-{ echo "$as_me:$LINENO: result: $jm_ac_cv_header_inttypes_h" >&5 +-echo "${ECHO_T}$jm_ac_cv_header_inttypes_h" >&6; } ++{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $jm_ac_cv_header_inttypes_h" >&5 ++$as_echo "$jm_ac_cv_header_inttypes_h" >&6; } + if test $jm_ac_cv_header_inttypes_h = yes; then + + cat >>confdefs.h <<_ACEOF +@@ -23727,16 +22635,12 @@ _ACEOF + fi + + +- { echo "$as_me:$LINENO: checking for stdint.h" >&5 +-echo $ECHO_N "checking for stdint.h... $ECHO_C" >&6; } +-if test "${jm_ac_cv_header_stdint_h+set}" = set; then +- echo $ECHO_N "(cached) $ECHO_C" >&6 ++ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for stdint.h" >&5 ++$as_echo_n "checking for stdint.h... " >&6; } ++if ${jm_ac_cv_header_stdint_h+:} false; then : ++ $as_echo_n "(cached) " >&6 + else +- cat >conftest.$ac_ext <<_ACEOF +-/* confdefs.h. */ +-_ACEOF +-cat confdefs.h >>conftest.$ac_ext +-cat >>conftest.$ac_ext <<_ACEOF ++ cat confdefs.h - <<_ACEOF >conftest.$ac_ext + /* end confdefs.h. */ + #include + #include +@@ -23748,35 +22652,15 @@ uintmax_t i = (uintmax_t) -1; + return 0; + } + _ACEOF +-rm -f conftest.$ac_objext +-if { (ac_try="$ac_compile" +-case "(($ac_try" in +- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; +- *) ac_try_echo=$ac_try;; +-esac +-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 +- (eval "$ac_compile") 2>conftest.er1 +- ac_status=$? +- grep -v '^ *+' conftest.er1 >conftest.err +- rm -f conftest.er1 +- cat conftest.err >&5 +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); } && { +- test -z "$ac_c_werror_flag" || +- test ! -s conftest.err +- } && test -s conftest.$ac_objext; then ++if ac_fn_c_try_compile "$LINENO"; then : + jm_ac_cv_header_stdint_h=yes + else +- echo "$as_me: failed program was:" >&5 +-sed 's/^/| /' conftest.$ac_ext >&5 +- +- jm_ac_cv_header_stdint_h=no ++ jm_ac_cv_header_stdint_h=no + fi +- + rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext + fi +-{ echo "$as_me:$LINENO: result: $jm_ac_cv_header_stdint_h" >&5 +-echo "${ECHO_T}$jm_ac_cv_header_stdint_h" >&6; } ++{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $jm_ac_cv_header_stdint_h" >&5 ++$as_echo "$jm_ac_cv_header_stdint_h" >&6; } + if test $jm_ac_cv_header_stdint_h = yes; then + + cat >>confdefs.h <<_ACEOF +@@ -23786,16 +22670,12 @@ _ACEOF + fi + + +- { echo "$as_me:$LINENO: checking for unsigned long long" >&5 +-echo $ECHO_N "checking for unsigned long long... $ECHO_C" >&6; } +-if test "${ac_cv_type_unsigned_long_long+set}" = set; then +- echo $ECHO_N "(cached) $ECHO_C" >&6 ++ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for unsigned long long" >&5 ++$as_echo_n "checking for unsigned long long... " >&6; } ++if ${ac_cv_type_unsigned_long_long+:} false; then : ++ $as_echo_n "(cached) " >&6 + else +- cat >conftest.$ac_ext <<_ACEOF +-/* confdefs.h. */ +-_ACEOF +-cat confdefs.h >>conftest.$ac_ext +-cat >>conftest.$ac_ext <<_ACEOF ++ cat confdefs.h - <<_ACEOF >conftest.$ac_ext + /* end confdefs.h. */ + unsigned long long ull = 1; int i = 63; + int +@@ -23807,42 +22687,19 @@ unsigned long long ullmax = (unsigned long long) -1; + return 0; + } + _ACEOF +-rm -f conftest.$ac_objext conftest$ac_exeext +-if { (ac_try="$ac_link" +-case "(($ac_try" in +- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; +- *) ac_try_echo=$ac_try;; +-esac +-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 +- (eval "$ac_link") 2>conftest.er1 +- ac_status=$? +- grep -v '^ *+' conftest.er1 >conftest.err +- rm -f conftest.er1 +- cat conftest.err >&5 +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); } && { +- test -z "$ac_c_werror_flag" || +- test ! -s conftest.err +- } && test -s conftest$ac_exeext && +- $as_test_x conftest$ac_exeext; then ++if ac_fn_c_try_link "$LINENO"; then : + ac_cv_type_unsigned_long_long=yes + else +- echo "$as_me: failed program was:" >&5 +-sed 's/^/| /' conftest.$ac_ext >&5 +- +- ac_cv_type_unsigned_long_long=no ++ ac_cv_type_unsigned_long_long=no + fi +- +-rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ +- conftest$ac_exeext conftest.$ac_ext ++rm -f core conftest.err conftest.$ac_objext \ ++ conftest$ac_exeext conftest.$ac_ext + fi +-{ echo "$as_me:$LINENO: result: $ac_cv_type_unsigned_long_long" >&5 +-echo "${ECHO_T}$ac_cv_type_unsigned_long_long" >&6; } ++{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_type_unsigned_long_long" >&5 ++$as_echo "$ac_cv_type_unsigned_long_long" >&6; } + if test $ac_cv_type_unsigned_long_long = yes; then + +-cat >>confdefs.h <<\_ACEOF +-#define HAVE_UNSIGNED_LONG_LONG 1 +-_ACEOF ++$as_echo "#define HAVE_UNSIGNED_LONG_LONG 1" >>confdefs.h + + fi + +@@ -23862,17 +22719,13 @@ _ACEOF + fi + + +- { echo "$as_me:$LINENO: checking for inttypes.h" >&5 +-echo $ECHO_N "checking for inttypes.h... $ECHO_C" >&6; } +-if test "${gt_cv_header_inttypes_h+set}" = set; then +- echo $ECHO_N "(cached) $ECHO_C" >&6 ++ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for inttypes.h" >&5 ++$as_echo_n "checking for inttypes.h... " >&6; } ++if ${gt_cv_header_inttypes_h+:} false; then : ++ $as_echo_n "(cached) " >&6 + else + +- cat >conftest.$ac_ext <<_ACEOF +-/* confdefs.h. */ +-_ACEOF +-cat confdefs.h >>conftest.$ac_ext +-cat >>conftest.$ac_ext <<_ACEOF ++ cat confdefs.h - <<_ACEOF >conftest.$ac_ext + /* end confdefs.h. */ + #include + #include +@@ -23884,36 +22737,16 @@ main () + return 0; + } + _ACEOF +-rm -f conftest.$ac_objext +-if { (ac_try="$ac_compile" +-case "(($ac_try" in +- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; +- *) ac_try_echo=$ac_try;; +-esac +-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 +- (eval "$ac_compile") 2>conftest.er1 +- ac_status=$? +- grep -v '^ *+' conftest.er1 >conftest.err +- rm -f conftest.er1 +- cat conftest.err >&5 +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); } && { +- test -z "$ac_c_werror_flag" || +- test ! -s conftest.err +- } && test -s conftest.$ac_objext; then ++if ac_fn_c_try_compile "$LINENO"; then : + gt_cv_header_inttypes_h=yes + else +- echo "$as_me: failed program was:" >&5 +-sed 's/^/| /' conftest.$ac_ext >&5 +- +- gt_cv_header_inttypes_h=no ++ gt_cv_header_inttypes_h=no + fi +- + rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext + + fi +-{ echo "$as_me:$LINENO: result: $gt_cv_header_inttypes_h" >&5 +-echo "${ECHO_T}$gt_cv_header_inttypes_h" >&6; } ++{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $gt_cv_header_inttypes_h" >&5 ++$as_echo "$gt_cv_header_inttypes_h" >&6; } + if test $gt_cv_header_inttypes_h = yes; then + + cat >>confdefs.h <<_ACEOF +@@ -23925,17 +22758,13 @@ _ACEOF + + + if test $gt_cv_header_inttypes_h = yes; then +- { echo "$as_me:$LINENO: checking whether the inttypes.h PRIxNN macros are broken" >&5 +-echo $ECHO_N "checking whether the inttypes.h PRIxNN macros are broken... $ECHO_C" >&6; } +-if test "${gt_cv_inttypes_pri_broken+set}" = set; then +- echo $ECHO_N "(cached) $ECHO_C" >&6 ++ { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether the inttypes.h PRIxNN macros are broken" >&5 ++$as_echo_n "checking whether the inttypes.h PRIxNN macros are broken... " >&6; } ++if ${gt_cv_inttypes_pri_broken+:} false; then : ++ $as_echo_n "(cached) " >&6 + else + +- cat >conftest.$ac_ext <<_ACEOF +-/* confdefs.h. */ +-_ACEOF +-cat confdefs.h >>conftest.$ac_ext +-cat >>conftest.$ac_ext <<_ACEOF ++ cat confdefs.h - <<_ACEOF >conftest.$ac_ext + /* end confdefs.h. */ + #include + #ifdef PRId32 +@@ -23950,36 +22779,16 @@ main () + return 0; + } + _ACEOF +-rm -f conftest.$ac_objext +-if { (ac_try="$ac_compile" +-case "(($ac_try" in +- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; +- *) ac_try_echo=$ac_try;; +-esac +-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 +- (eval "$ac_compile") 2>conftest.er1 +- ac_status=$? +- grep -v '^ *+' conftest.er1 >conftest.err +- rm -f conftest.er1 +- cat conftest.err >&5 +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); } && { +- test -z "$ac_c_werror_flag" || +- test ! -s conftest.err +- } && test -s conftest.$ac_objext; then ++if ac_fn_c_try_compile "$LINENO"; then : + gt_cv_inttypes_pri_broken=no + else +- echo "$as_me: failed program was:" >&5 +-sed 's/^/| /' conftest.$ac_ext >&5 +- +- gt_cv_inttypes_pri_broken=yes ++ gt_cv_inttypes_pri_broken=yes + fi +- + rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext + + fi +-{ echo "$as_me:$LINENO: result: $gt_cv_inttypes_pri_broken" >&5 +-echo "${ECHO_T}$gt_cv_inttypes_pri_broken" >&6; } ++{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $gt_cv_inttypes_pri_broken" >&5 ++$as_echo "$gt_cv_inttypes_pri_broken" >&6; } + fi + if test "$gt_cv_inttypes_pri_broken" = yes; then + +@@ -24007,7 +22816,7 @@ _ACEOF + + + # Check whether --with-gnu-ld was given. +-if test "${with_gnu_ld+set}" = set; then ++if test "${with_gnu_ld+set}" = set; then : + withval=$with_gnu_ld; test "$withval" = no || with_gnu_ld=yes + else + with_gnu_ld=no +@@ -24016,8 +22825,8 @@ fi + ac_prog=ld + if test "$GCC" = yes; then + # Check if gcc -print-prog-name=ld gives a path. +- { echo "$as_me:$LINENO: checking for ld used by GCC" >&5 +-echo $ECHO_N "checking for ld used by GCC... $ECHO_C" >&6; } ++ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for ld used by GCC" >&5 ++$as_echo_n "checking for ld used by GCC... " >&6; } + case $host in + *-*-mingw*) + # gcc leaves a trailing carriage return which upsets mingw +@@ -24046,14 +22855,14 @@ echo $ECHO_N "checking for ld used by GCC... $ECHO_C" >&6; } + ;; + esac + elif test "$with_gnu_ld" = yes; then +- { echo "$as_me:$LINENO: checking for GNU ld" >&5 +-echo $ECHO_N "checking for GNU ld... $ECHO_C" >&6; } ++ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for GNU ld" >&5 ++$as_echo_n "checking for GNU ld... " >&6; } + else +- { echo "$as_me:$LINENO: checking for non-GNU ld" >&5 +-echo $ECHO_N "checking for non-GNU ld... $ECHO_C" >&6; } ++ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for non-GNU ld" >&5 ++$as_echo_n "checking for non-GNU ld... " >&6; } + fi +-if test "${acl_cv_path_LD+set}" = set; then +- echo $ECHO_N "(cached) $ECHO_C" >&6 ++if ${acl_cv_path_LD+:} false; then : ++ $as_echo_n "(cached) " >&6 + else + if test -z "$LD"; then + IFS="${IFS= }"; ac_save_ifs="$IFS"; IFS="${IFS}${PATH_SEPARATOR-:}" +@@ -24079,19 +22888,17 @@ fi + + LD="$acl_cv_path_LD" + if test -n "$LD"; then +- { echo "$as_me:$LINENO: result: $LD" >&5 +-echo "${ECHO_T}$LD" >&6; } ++ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $LD" >&5 ++$as_echo "$LD" >&6; } + else +- { echo "$as_me:$LINENO: result: no" >&5 +-echo "${ECHO_T}no" >&6; } ++ { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 ++$as_echo "no" >&6; } + fi +-test -z "$LD" && { { echo "$as_me:$LINENO: error: no acceptable ld found in \$PATH" >&5 +-echo "$as_me: error: no acceptable ld found in \$PATH" >&2;} +- { (exit 1); exit 1; }; } +-{ echo "$as_me:$LINENO: checking if the linker ($LD) is GNU ld" >&5 +-echo $ECHO_N "checking if the linker ($LD) is GNU ld... $ECHO_C" >&6; } +-if test "${acl_cv_prog_gnu_ld+set}" = set; then +- echo $ECHO_N "(cached) $ECHO_C" >&6 ++test -z "$LD" && as_fn_error $? "no acceptable ld found in \$PATH" "$LINENO" 5 ++{ $as_echo "$as_me:${as_lineno-$LINENO}: checking if the linker ($LD) is GNU ld" >&5 ++$as_echo_n "checking if the linker ($LD) is GNU ld... " >&6; } ++if ${acl_cv_prog_gnu_ld+:} false; then : ++ $as_echo_n "(cached) " >&6 + else + # I'd rather use --version here, but apparently some GNU ld's only accept -v. + if $LD -v 2>&1 &5; then +@@ -24100,16 +22907,16 @@ else + acl_cv_prog_gnu_ld=no + fi + fi +-{ echo "$as_me:$LINENO: result: $acl_cv_prog_gnu_ld" >&5 +-echo "${ECHO_T}$acl_cv_prog_gnu_ld" >&6; } ++{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $acl_cv_prog_gnu_ld" >&5 ++$as_echo "$acl_cv_prog_gnu_ld" >&6; } + with_gnu_ld=$acl_cv_prog_gnu_ld + + + +- { echo "$as_me:$LINENO: checking for shared library run path origin" >&5 +-echo $ECHO_N "checking for shared library run path origin... $ECHO_C" >&6; } +-if test "${acl_cv_rpath+set}" = set; then +- echo $ECHO_N "(cached) $ECHO_C" >&6 ++ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for shared library run path origin" >&5 ++$as_echo_n "checking for shared library run path origin... " >&6; } ++if ${acl_cv_rpath+:} false; then : ++ $as_echo_n "(cached) " >&6 + else + + CC="$CC" GCC="$GCC" LDFLAGS="$LDFLAGS" LD="$LD" with_gnu_ld="$with_gnu_ld" \ +@@ -24119,8 +22926,8 @@ else + acl_cv_rpath=done + + fi +-{ echo "$as_me:$LINENO: result: $acl_cv_rpath" >&5 +-echo "${ECHO_T}$acl_cv_rpath" >&6; } ++{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $acl_cv_rpath" >&5 ++$as_echo "$acl_cv_rpath" >&6; } + wl="$acl_cv_wl" + libext="$acl_cv_libext" + shlibext="$acl_cv_shlibext" +@@ -24131,7 +22938,7 @@ echo "${ECHO_T}$acl_cv_rpath" >&6; } + sys_lib_search_path_spec="$acl_cv_sys_lib_search_path_spec" + sys_lib_dlsearch_path_spec="$acl_cv_sys_lib_dlsearch_path_spec" + # Check whether --enable-rpath was given. +-if test "${enable_rpath+set}" = set; then ++if test "${enable_rpath+set}" = set; then : + enableval=$enable_rpath; : + else + enable_rpath=yes +@@ -24159,7 +22966,7 @@ fi + + + # Check whether --with-libiconv-prefix was given. +-if test "${with_libiconv_prefix+set}" = set; then ++if test "${with_libiconv_prefix+set}" = set; then : + withval=$with_libiconv_prefix; + if test "X$withval" = "Xno"; then + use_additional=no +@@ -24523,267 +23330,29 @@ fi + + + +- +- +- +- +- +- +- +- +- +- +-for ac_header in argz.h limits.h locale.h nl_types.h malloc.h stddef.h \ ++ for ac_header in argz.h limits.h locale.h nl_types.h malloc.h stddef.h \ + stdlib.h string.h unistd.h sys/param.h +-do +-as_ac_Header=`echo "ac_cv_header_$ac_header" | $as_tr_sh` +-if { as_var=$as_ac_Header; eval "test \"\${$as_var+set}\" = set"; }; then +- { echo "$as_me:$LINENO: checking for $ac_header" >&5 +-echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6; } +-if { as_var=$as_ac_Header; eval "test \"\${$as_var+set}\" = set"; }; then +- echo $ECHO_N "(cached) $ECHO_C" >&6 +-fi +-ac_res=`eval echo '${'$as_ac_Header'}'` +- { echo "$as_me:$LINENO: result: $ac_res" >&5 +-echo "${ECHO_T}$ac_res" >&6; } +-else +- # Is the header compilable? +-{ echo "$as_me:$LINENO: checking $ac_header usability" >&5 +-echo $ECHO_N "checking $ac_header usability... $ECHO_C" >&6; } +-cat >conftest.$ac_ext <<_ACEOF +-/* confdefs.h. */ +-_ACEOF +-cat confdefs.h >>conftest.$ac_ext +-cat >>conftest.$ac_ext <<_ACEOF +-/* end confdefs.h. */ +-$ac_includes_default +-#include <$ac_header> +-_ACEOF +-rm -f conftest.$ac_objext +-if { (ac_try="$ac_compile" +-case "(($ac_try" in +- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; +- *) ac_try_echo=$ac_try;; +-esac +-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 +- (eval "$ac_compile") 2>conftest.er1 +- ac_status=$? +- grep -v '^ *+' conftest.er1 >conftest.err +- rm -f conftest.er1 +- cat conftest.err >&5 +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); } && { +- test -z "$ac_c_werror_flag" || +- test ! -s conftest.err +- } && test -s conftest.$ac_objext; then +- ac_header_compiler=yes +-else +- echo "$as_me: failed program was:" >&5 +-sed 's/^/| /' conftest.$ac_ext >&5 +- +- ac_header_compiler=no +-fi +- +-rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext +-{ echo "$as_me:$LINENO: result: $ac_header_compiler" >&5 +-echo "${ECHO_T}$ac_header_compiler" >&6; } +- +-# Is the header present? +-{ echo "$as_me:$LINENO: checking $ac_header presence" >&5 +-echo $ECHO_N "checking $ac_header presence... $ECHO_C" >&6; } +-cat >conftest.$ac_ext <<_ACEOF +-/* confdefs.h. */ +-_ACEOF +-cat confdefs.h >>conftest.$ac_ext +-cat >>conftest.$ac_ext <<_ACEOF +-/* end confdefs.h. */ +-#include <$ac_header> +-_ACEOF +-if { (ac_try="$ac_cpp conftest.$ac_ext" +-case "(($ac_try" in +- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; +- *) ac_try_echo=$ac_try;; +-esac +-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 +- (eval "$ac_cpp conftest.$ac_ext") 2>conftest.er1 +- ac_status=$? +- grep -v '^ *+' conftest.er1 >conftest.err +- rm -f conftest.er1 +- cat conftest.err >&5 +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); } >/dev/null && { +- test -z "$ac_c_preproc_warn_flag$ac_c_werror_flag" || +- test ! -s conftest.err +- }; then +- ac_header_preproc=yes +-else +- echo "$as_me: failed program was:" >&5 +-sed 's/^/| /' conftest.$ac_ext >&5 +- +- ac_header_preproc=no +-fi +- +-rm -f conftest.err conftest.$ac_ext +-{ echo "$as_me:$LINENO: result: $ac_header_preproc" >&5 +-echo "${ECHO_T}$ac_header_preproc" >&6; } +- +-# So? What about this header? +-case $ac_header_compiler:$ac_header_preproc:$ac_c_preproc_warn_flag in +- yes:no: ) +- { echo "$as_me:$LINENO: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&5 +-echo "$as_me: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&2;} +- { echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the compiler's result" >&5 +-echo "$as_me: WARNING: $ac_header: proceeding with the compiler's result" >&2;} +- ac_header_preproc=yes +- ;; +- no:yes:* ) +- { echo "$as_me:$LINENO: WARNING: $ac_header: present but cannot be compiled" >&5 +-echo "$as_me: WARNING: $ac_header: present but cannot be compiled" >&2;} +- { echo "$as_me:$LINENO: WARNING: $ac_header: check for missing prerequisite headers?" >&5 +-echo "$as_me: WARNING: $ac_header: check for missing prerequisite headers?" >&2;} +- { echo "$as_me:$LINENO: WARNING: $ac_header: see the Autoconf documentation" >&5 +-echo "$as_me: WARNING: $ac_header: see the Autoconf documentation" >&2;} +- { echo "$as_me:$LINENO: WARNING: $ac_header: section \"Present But Cannot Be Compiled\"" >&5 +-echo "$as_me: WARNING: $ac_header: section \"Present But Cannot Be Compiled\"" >&2;} +- { echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the preprocessor's result" >&5 +-echo "$as_me: WARNING: $ac_header: proceeding with the preprocessor's result" >&2;} +- { echo "$as_me:$LINENO: WARNING: $ac_header: in the future, the compiler will take precedence" >&5 +-echo "$as_me: WARNING: $ac_header: in the future, the compiler will take precedence" >&2;} +- +- ;; +-esac +-{ echo "$as_me:$LINENO: checking for $ac_header" >&5 +-echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6; } +-if { as_var=$as_ac_Header; eval "test \"\${$as_var+set}\" = set"; }; then +- echo $ECHO_N "(cached) $ECHO_C" >&6 +-else +- eval "$as_ac_Header=\$ac_header_preproc" +-fi +-ac_res=`eval echo '${'$as_ac_Header'}'` +- { echo "$as_me:$LINENO: result: $ac_res" >&5 +-echo "${ECHO_T}$ac_res" >&6; } +- +-fi +-if test `eval echo '${'$as_ac_Header'}'` = yes; then ++do : ++ as_ac_Header=`$as_echo "ac_cv_header_$ac_header" | $as_tr_sh` ++ac_fn_c_check_header_mongrel "$LINENO" "$ac_header" "$as_ac_Header" "$ac_includes_default" ++if eval test \"x\$"$as_ac_Header"\" = x"yes"; then : + cat >>confdefs.h <<_ACEOF +-#define `echo "HAVE_$ac_header" | $as_tr_cpp` 1 ++#define `$as_echo "HAVE_$ac_header" | $as_tr_cpp` 1 + _ACEOF + + fi + + done + +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +-for ac_func in feof_unlocked fgets_unlocked getc_unlocked getcwd getegid \ ++ for ac_func in feof_unlocked fgets_unlocked getc_unlocked getcwd getegid \ + geteuid getgid getuid mempcpy munmap putenv setenv setlocale stpcpy \ + strcasecmp strdup strtoul tsearch __argz_count __argz_stringify __argz_next +-do +-as_ac_var=`echo "ac_cv_func_$ac_func" | $as_tr_sh` +-{ echo "$as_me:$LINENO: checking for $ac_func" >&5 +-echo $ECHO_N "checking for $ac_func... $ECHO_C" >&6; } +-if { as_var=$as_ac_var; eval "test \"\${$as_var+set}\" = set"; }; then +- echo $ECHO_N "(cached) $ECHO_C" >&6 +-else +- cat >conftest.$ac_ext <<_ACEOF +-/* confdefs.h. */ +-_ACEOF +-cat confdefs.h >>conftest.$ac_ext +-cat >>conftest.$ac_ext <<_ACEOF +-/* end confdefs.h. */ +-/* Define $ac_func to an innocuous variant, in case declares $ac_func. +- For example, HP-UX 11i declares gettimeofday. */ +-#define $ac_func innocuous_$ac_func +- +-/* System header to define __stub macros and hopefully few prototypes, +- which can conflict with char $ac_func (); below. +- Prefer to if __STDC__ is defined, since +- exists even on freestanding compilers. */ +- +-#ifdef __STDC__ +-# include +-#else +-# include +-#endif +- +-#undef $ac_func +- +-/* Override any GCC internal prototype to avoid an error. +- Use char because int might match the return type of a GCC +- builtin and then its argument prototype would still apply. */ +-#ifdef __cplusplus +-extern "C" +-#endif +-char $ac_func (); +-/* The GNU C library defines this for functions which it implements +- to always fail with ENOSYS. Some functions are actually named +- something starting with __ and the normal name is an alias. */ +-#if defined __stub_$ac_func || defined __stub___$ac_func +-choke me +-#endif +- +-int +-main () +-{ +-return $ac_func (); +- ; +- return 0; +-} +-_ACEOF +-rm -f conftest.$ac_objext conftest$ac_exeext +-if { (ac_try="$ac_link" +-case "(($ac_try" in +- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; +- *) ac_try_echo=$ac_try;; +-esac +-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 +- (eval "$ac_link") 2>conftest.er1 +- ac_status=$? +- grep -v '^ *+' conftest.er1 >conftest.err +- rm -f conftest.er1 +- cat conftest.err >&5 +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); } && { +- test -z "$ac_c_werror_flag" || +- test ! -s conftest.err +- } && test -s conftest$ac_exeext && +- $as_test_x conftest$ac_exeext; then +- eval "$as_ac_var=yes" +-else +- echo "$as_me: failed program was:" >&5 +-sed 's/^/| /' conftest.$ac_ext >&5 +- +- eval "$as_ac_var=no" +-fi +- +-rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ +- conftest$ac_exeext conftest.$ac_ext +-fi +-ac_res=`eval echo '${'$as_ac_var'}'` +- { echo "$as_me:$LINENO: result: $ac_res" >&5 +-echo "${ECHO_T}$ac_res" >&6; } +-if test `eval echo '${'$as_ac_var'}'` = yes; then ++do : ++ as_ac_var=`$as_echo "ac_cv_func_$ac_func" | $as_tr_sh` ++ac_fn_c_check_func "$LINENO" "$ac_func" "$as_ac_var" ++if eval test \"x\$"$as_ac_var"\" = x"yes"; then : + cat >>confdefs.h <<_ACEOF +-#define `echo "HAVE_$ac_func" | $as_tr_cpp` 1 ++#define `$as_echo "HAVE_$ac_func" | $as_tr_cpp` 1 + _ACEOF + + fi +@@ -24820,19 +23389,15 @@ done + done + + +- { echo "$as_me:$LINENO: checking for iconv" >&5 +-echo $ECHO_N "checking for iconv... $ECHO_C" >&6; } +-if test "${am_cv_func_iconv+set}" = set; then +- echo $ECHO_N "(cached) $ECHO_C" >&6 ++ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for iconv" >&5 ++$as_echo_n "checking for iconv... " >&6; } ++if ${am_cv_func_iconv+:} false; then : ++ $as_echo_n "(cached) " >&6 + else + + am_cv_func_iconv="no, consider installing GNU libiconv" + am_cv_lib_iconv=no +- cat >conftest.$ac_ext <<_ACEOF +-/* confdefs.h. */ +-_ACEOF +-cat confdefs.h >>conftest.$ac_ext +-cat >>conftest.$ac_ext <<_ACEOF ++ cat confdefs.h - <<_ACEOF >conftest.$ac_ext + /* end confdefs.h. */ + #include + #include +@@ -24846,42 +23411,15 @@ iconv_t cd = iconv_open("",""); + return 0; + } + _ACEOF +-rm -f conftest.$ac_objext conftest$ac_exeext +-if { (ac_try="$ac_link" +-case "(($ac_try" in +- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; +- *) ac_try_echo=$ac_try;; +-esac +-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 +- (eval "$ac_link") 2>conftest.er1 +- ac_status=$? +- grep -v '^ *+' conftest.er1 >conftest.err +- rm -f conftest.er1 +- cat conftest.err >&5 +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); } && { +- test -z "$ac_c_werror_flag" || +- test ! -s conftest.err +- } && test -s conftest$ac_exeext && +- $as_test_x conftest$ac_exeext; then ++if ac_fn_c_try_link "$LINENO"; then : + am_cv_func_iconv=yes +-else +- echo "$as_me: failed program was:" >&5 +-sed 's/^/| /' conftest.$ac_ext >&5 +- +- + fi +- +-rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ +- conftest$ac_exeext conftest.$ac_ext ++rm -f core conftest.err conftest.$ac_objext \ ++ conftest$ac_exeext conftest.$ac_ext + if test "$am_cv_func_iconv" != yes; then + am_save_LIBS="$LIBS" + LIBS="$LIBS $LIBICONV" +- cat >conftest.$ac_ext <<_ACEOF +-/* confdefs.h. */ +-_ACEOF +-cat confdefs.h >>conftest.$ac_ext +-cat >>conftest.$ac_ext <<_ACEOF ++ cat confdefs.h - <<_ACEOF >conftest.$ac_ext + /* end confdefs.h. */ + #include + #include +@@ -24895,53 +23433,28 @@ iconv_t cd = iconv_open("",""); + return 0; + } + _ACEOF +-rm -f conftest.$ac_objext conftest$ac_exeext +-if { (ac_try="$ac_link" +-case "(($ac_try" in +- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; +- *) ac_try_echo=$ac_try;; +-esac +-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 +- (eval "$ac_link") 2>conftest.er1 +- ac_status=$? +- grep -v '^ *+' conftest.er1 >conftest.err +- rm -f conftest.er1 +- cat conftest.err >&5 +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); } && { +- test -z "$ac_c_werror_flag" || +- test ! -s conftest.err +- } && test -s conftest$ac_exeext && +- $as_test_x conftest$ac_exeext; then ++if ac_fn_c_try_link "$LINENO"; then : + am_cv_lib_iconv=yes + am_cv_func_iconv=yes +-else +- echo "$as_me: failed program was:" >&5 +-sed 's/^/| /' conftest.$ac_ext >&5 +- +- + fi +- +-rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ +- conftest$ac_exeext conftest.$ac_ext ++rm -f core conftest.err conftest.$ac_objext \ ++ conftest$ac_exeext conftest.$ac_ext + LIBS="$am_save_LIBS" + fi + + fi +-{ echo "$as_me:$LINENO: result: $am_cv_func_iconv" >&5 +-echo "${ECHO_T}$am_cv_func_iconv" >&6; } ++{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $am_cv_func_iconv" >&5 ++$as_echo "$am_cv_func_iconv" >&6; } + if test "$am_cv_func_iconv" = yes; then + +-cat >>confdefs.h <<\_ACEOF +-#define HAVE_ICONV 1 +-_ACEOF ++$as_echo "#define HAVE_ICONV 1" >>confdefs.h + + fi + if test "$am_cv_lib_iconv" = yes; then +- { echo "$as_me:$LINENO: checking how to link with libiconv" >&5 +-echo $ECHO_N "checking how to link with libiconv... $ECHO_C" >&6; } +- { echo "$as_me:$LINENO: result: $LIBICONV" >&5 +-echo "${ECHO_T}$LIBICONV" >&6; } ++ { $as_echo "$as_me:${as_lineno-$LINENO}: checking how to link with libiconv" >&5 ++$as_echo_n "checking how to link with libiconv... " >&6; } ++ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $LIBICONV" >&5 ++$as_echo "$LIBICONV" >&6; } + else + CPPFLAGS="$am_save_CPPFLAGS" + LIBICONV= +@@ -24951,17 +23464,13 @@ echo "${ECHO_T}$LIBICONV" >&6; } + + + if test "$am_cv_func_iconv" = yes; then +- { echo "$as_me:$LINENO: checking for iconv declaration" >&5 +-echo $ECHO_N "checking for iconv declaration... $ECHO_C" >&6; } +- if test "${am_cv_proto_iconv+set}" = set; then +- echo $ECHO_N "(cached) $ECHO_C" >&6 ++ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for iconv declaration" >&5 ++$as_echo_n "checking for iconv declaration... " >&6; } ++ if ${am_cv_proto_iconv+:} false; then : ++ $as_echo_n "(cached) " >&6 + else + +- cat >conftest.$ac_ext <<_ACEOF +-/* confdefs.h. */ +-_ACEOF +-cat confdefs.h >>conftest.$ac_ext +-cat >>conftest.$ac_ext <<_ACEOF ++ cat confdefs.h - <<_ACEOF >conftest.$ac_ext + /* end confdefs.h. */ + + #include +@@ -24984,39 +23493,19 @@ main () + return 0; + } + _ACEOF +-rm -f conftest.$ac_objext +-if { (ac_try="$ac_compile" +-case "(($ac_try" in +- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; +- *) ac_try_echo=$ac_try;; +-esac +-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 +- (eval "$ac_compile") 2>conftest.er1 +- ac_status=$? +- grep -v '^ *+' conftest.er1 >conftest.err +- rm -f conftest.er1 +- cat conftest.err >&5 +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); } && { +- test -z "$ac_c_werror_flag" || +- test ! -s conftest.err +- } && test -s conftest.$ac_objext; then ++if ac_fn_c_try_compile "$LINENO"; then : + am_cv_proto_iconv_arg1="" + else +- echo "$as_me: failed program was:" >&5 +-sed 's/^/| /' conftest.$ac_ext >&5 +- +- am_cv_proto_iconv_arg1="const" ++ am_cv_proto_iconv_arg1="const" + fi +- + rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext + am_cv_proto_iconv="extern size_t iconv (iconv_t cd, $am_cv_proto_iconv_arg1 char * *inbuf, size_t *inbytesleft, char * *outbuf, size_t *outbytesleft);" + fi + + am_cv_proto_iconv=`echo "$am_cv_proto_iconv" | tr -s ' ' | sed -e 's/( /(/'` +- { echo "$as_me:$LINENO: result: ${ac_t:- ++ { $as_echo "$as_me:${as_lineno-$LINENO}: result: ${ac_t:- + }$am_cv_proto_iconv" >&5 +-echo "${ECHO_T}${ac_t:- ++$as_echo "${ac_t:- + }$am_cv_proto_iconv" >&6; } + + cat >>confdefs.h <<_ACEOF +@@ -25026,16 +23515,12 @@ _ACEOF + fi + + +- { echo "$as_me:$LINENO: checking for nl_langinfo and CODESET" >&5 +-echo $ECHO_N "checking for nl_langinfo and CODESET... $ECHO_C" >&6; } +-if test "${am_cv_langinfo_codeset+set}" = set; then +- echo $ECHO_N "(cached) $ECHO_C" >&6 ++ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for nl_langinfo and CODESET" >&5 ++$as_echo_n "checking for nl_langinfo and CODESET... " >&6; } ++if ${am_cv_langinfo_codeset+:} false; then : ++ $as_echo_n "(cached) " >&6 + else +- cat >conftest.$ac_ext <<_ACEOF +-/* confdefs.h. */ +-_ACEOF +-cat confdefs.h >>conftest.$ac_ext +-cat >>conftest.$ac_ext <<_ACEOF ++ cat confdefs.h - <<_ACEOF >conftest.$ac_ext + /* end confdefs.h. */ + #include + int +@@ -25046,58 +23531,31 @@ char* cs = nl_langinfo(CODESET); + return 0; + } + _ACEOF +-rm -f conftest.$ac_objext conftest$ac_exeext +-if { (ac_try="$ac_link" +-case "(($ac_try" in +- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; +- *) ac_try_echo=$ac_try;; +-esac +-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 +- (eval "$ac_link") 2>conftest.er1 +- ac_status=$? +- grep -v '^ *+' conftest.er1 >conftest.err +- rm -f conftest.er1 +- cat conftest.err >&5 +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); } && { +- test -z "$ac_c_werror_flag" || +- test ! -s conftest.err +- } && test -s conftest$ac_exeext && +- $as_test_x conftest$ac_exeext; then ++if ac_fn_c_try_link "$LINENO"; then : + am_cv_langinfo_codeset=yes + else +- echo "$as_me: failed program was:" >&5 +-sed 's/^/| /' conftest.$ac_ext >&5 +- +- am_cv_langinfo_codeset=no ++ am_cv_langinfo_codeset=no + fi +- +-rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ +- conftest$ac_exeext conftest.$ac_ext ++rm -f core conftest.err conftest.$ac_objext \ ++ conftest$ac_exeext conftest.$ac_ext + + fi +-{ echo "$as_me:$LINENO: result: $am_cv_langinfo_codeset" >&5 +-echo "${ECHO_T}$am_cv_langinfo_codeset" >&6; } ++{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $am_cv_langinfo_codeset" >&5 ++$as_echo "$am_cv_langinfo_codeset" >&6; } + if test $am_cv_langinfo_codeset = yes; then + +-cat >>confdefs.h <<\_ACEOF +-#define HAVE_LANGINFO_CODESET 1 +-_ACEOF ++$as_echo "#define HAVE_LANGINFO_CODESET 1" >>confdefs.h + + fi + + if test $ac_cv_header_locale_h = yes; then + +- { echo "$as_me:$LINENO: checking for LC_MESSAGES" >&5 +-echo $ECHO_N "checking for LC_MESSAGES... $ECHO_C" >&6; } +-if test "${am_cv_val_LC_MESSAGES+set}" = set; then +- echo $ECHO_N "(cached) $ECHO_C" >&6 ++ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for LC_MESSAGES" >&5 ++$as_echo_n "checking for LC_MESSAGES... " >&6; } ++if ${am_cv_val_LC_MESSAGES+:} false; then : ++ $as_echo_n "(cached) " >&6 + else +- cat >conftest.$ac_ext <<_ACEOF +-/* confdefs.h. */ +-_ACEOF +-cat confdefs.h >>conftest.$ac_ext +-cat >>conftest.$ac_ext <<_ACEOF ++ cat confdefs.h - <<_ACEOF >conftest.$ac_ext + /* end confdefs.h. */ + #include + int +@@ -25108,42 +23566,19 @@ return LC_MESSAGES + return 0; + } + _ACEOF +-rm -f conftest.$ac_objext conftest$ac_exeext +-if { (ac_try="$ac_link" +-case "(($ac_try" in +- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; +- *) ac_try_echo=$ac_try;; +-esac +-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 +- (eval "$ac_link") 2>conftest.er1 +- ac_status=$? +- grep -v '^ *+' conftest.er1 >conftest.err +- rm -f conftest.er1 +- cat conftest.err >&5 +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); } && { +- test -z "$ac_c_werror_flag" || +- test ! -s conftest.err +- } && test -s conftest$ac_exeext && +- $as_test_x conftest$ac_exeext; then ++if ac_fn_c_try_link "$LINENO"; then : + am_cv_val_LC_MESSAGES=yes + else +- echo "$as_me: failed program was:" >&5 +-sed 's/^/| /' conftest.$ac_ext >&5 +- +- am_cv_val_LC_MESSAGES=no ++ am_cv_val_LC_MESSAGES=no + fi +- +-rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ +- conftest$ac_exeext conftest.$ac_ext ++rm -f core conftest.err conftest.$ac_objext \ ++ conftest$ac_exeext conftest.$ac_ext + fi +-{ echo "$as_me:$LINENO: result: $am_cv_val_LC_MESSAGES" >&5 +-echo "${ECHO_T}$am_cv_val_LC_MESSAGES" >&6; } ++{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $am_cv_val_LC_MESSAGES" >&5 ++$as_echo "$am_cv_val_LC_MESSAGES" >&6; } + if test $am_cv_val_LC_MESSAGES = yes; then + +-cat >>confdefs.h <<\_ACEOF +-#define HAVE_LC_MESSAGES 1 +-_ACEOF ++$as_echo "#define HAVE_LC_MESSAGES 1" >>confdefs.h + + fi + +@@ -25153,10 +23588,10 @@ _ACEOF + do + # Extract the first word of "$ac_prog", so it can be a program name with args. + set dummy $ac_prog; ac_word=$2 +-{ echo "$as_me:$LINENO: checking for $ac_word" >&5 +-echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6; } +-if test "${ac_cv_prog_INTLBISON+set}" = set; then +- echo $ECHO_N "(cached) $ECHO_C" >&6 ++{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 ++$as_echo_n "checking for $ac_word... " >&6; } ++if ${ac_cv_prog_INTLBISON+:} false; then : ++ $as_echo_n "(cached) " >&6 + else + if test -n "$INTLBISON"; then + ac_cv_prog_INTLBISON="$INTLBISON" # Let the user override the test. +@@ -25166,25 +23601,25 @@ for as_dir in $PATH + do + IFS=$as_save_IFS + test -z "$as_dir" && as_dir=. +- for ac_exec_ext in '' $ac_executable_extensions; do +- if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then ++ for ac_exec_ext in '' $ac_executable_extensions; do ++ if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then + ac_cv_prog_INTLBISON="$ac_prog" +- echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 ++ $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 + break 2 + fi + done +-done ++ done + IFS=$as_save_IFS + + fi + fi + INTLBISON=$ac_cv_prog_INTLBISON + if test -n "$INTLBISON"; then +- { echo "$as_me:$LINENO: result: $INTLBISON" >&5 +-echo "${ECHO_T}$INTLBISON" >&6; } ++ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $INTLBISON" >&5 ++$as_echo "$INTLBISON" >&6; } + else +- { echo "$as_me:$LINENO: result: no" >&5 +-echo "${ECHO_T}no" >&6; } ++ { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 ++$as_echo "no" >&6; } + fi + + +@@ -25194,8 +23629,8 @@ done + if test -z "$INTLBISON"; then + ac_verc_fail=yes + else +- { echo "$as_me:$LINENO: checking version of bison" >&5 +-echo $ECHO_N "checking version of bison... $ECHO_C" >&6; } ++ { $as_echo "$as_me:${as_lineno-$LINENO}: checking version of bison" >&5 ++$as_echo_n "checking version of bison... " >&6; } + ac_prog_version=`$INTLBISON --version 2>&1 | sed -n 's/^.*GNU Bison.* \([0-9]*\.[0-9.]*\).*$/\1/p'` + case $ac_prog_version in + '') ac_prog_version="v. ?.??, bad"; ac_verc_fail=yes;; +@@ -25203,8 +23638,8 @@ echo $ECHO_N "checking version of bison... $ECHO_C" >&6; } + ac_prog_version="$ac_prog_version, ok"; ac_verc_fail=no;; + *) ac_prog_version="$ac_prog_version, bad"; ac_verc_fail=yes;; + esac +- { echo "$as_me:$LINENO: result: $ac_prog_version" >&5 +-echo "${ECHO_T}$ac_prog_version" >&6; } ++ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_prog_version" >&5 ++$as_echo "$ac_prog_version" >&6; } + fi + if test $ac_verc_fail = yes; then + INTLBISON=: +@@ -25224,17 +23659,17 @@ echo "${ECHO_T}$ac_prog_version" >&6; } + + + +- { echo "$as_me:$LINENO: checking whether NLS is requested" >&5 +-echo $ECHO_N "checking whether NLS is requested... $ECHO_C" >&6; } ++ { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether NLS is requested" >&5 ++$as_echo_n "checking whether NLS is requested... " >&6; } + # Check whether --enable-nls was given. +-if test "${enable_nls+set}" = set; then ++if test "${enable_nls+set}" = set; then : + enableval=$enable_nls; USE_NLS=$enableval + else + USE_NLS=yes + fi + +- { echo "$as_me:$LINENO: result: $USE_NLS" >&5 +-echo "${ECHO_T}$USE_NLS" >&6; } ++ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $USE_NLS" >&5 ++$as_echo "$USE_NLS" >&6; } + + + +@@ -25248,18 +23683,18 @@ echo "${ECHO_T}$USE_NLS" >&6; } + if test "$USE_NLS" = "yes"; then + gt_use_preinstalled_gnugettext=no + +- { echo "$as_me:$LINENO: checking whether included gettext is requested" >&5 +-echo $ECHO_N "checking whether included gettext is requested... $ECHO_C" >&6; } ++ { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether included gettext is requested" >&5 ++$as_echo_n "checking whether included gettext is requested... " >&6; } + + # Check whether --with-included-gettext was given. +-if test "${with_included_gettext+set}" = set; then ++if test "${with_included_gettext+set}" = set; then : + withval=$with_included_gettext; nls_cv_force_use_gnu_gettext=$withval + else + nls_cv_force_use_gnu_gettext=no + fi + +- { echo "$as_me:$LINENO: result: $nls_cv_force_use_gnu_gettext" >&5 +-echo "${ECHO_T}$nls_cv_force_use_gnu_gettext" >&6; } ++ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $nls_cv_force_use_gnu_gettext" >&5 ++$as_echo "$nls_cv_force_use_gnu_gettext" >&6; } + + nls_cv_use_gnu_gettext="$nls_cv_force_use_gnu_gettext" + if test "$nls_cv_force_use_gnu_gettext" != "yes"; then +@@ -25269,16 +23704,12 @@ echo "${ECHO_T}$nls_cv_force_use_gnu_gettext" >&6; } + + + +- { echo "$as_me:$LINENO: checking for GNU gettext in libc" >&5 +-echo $ECHO_N "checking for GNU gettext in libc... $ECHO_C" >&6; } +-if test "${gt_cv_func_gnugettext1_libc+set}" = set; then +- echo $ECHO_N "(cached) $ECHO_C" >&6 ++ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for GNU gettext in libc" >&5 ++$as_echo_n "checking for GNU gettext in libc... " >&6; } ++if ${gt_cv_func_gnugettext1_libc+:} false; then : ++ $as_echo_n "(cached) " >&6 + else +- cat >conftest.$ac_ext <<_ACEOF +-/* confdefs.h. */ +-_ACEOF +-cat confdefs.h >>conftest.$ac_ext +-cat >>conftest.$ac_ext <<_ACEOF ++ cat confdefs.h - <<_ACEOF >conftest.$ac_ext + /* end confdefs.h. */ + #include + extern int _nl_msg_cat_cntr; +@@ -25292,37 +23723,16 @@ return (int) gettext ("") + _nl_msg_cat_cntr + *_nl_domain_bindings + return 0; + } + _ACEOF +-rm -f conftest.$ac_objext conftest$ac_exeext +-if { (ac_try="$ac_link" +-case "(($ac_try" in +- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; +- *) ac_try_echo=$ac_try;; +-esac +-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 +- (eval "$ac_link") 2>conftest.er1 +- ac_status=$? +- grep -v '^ *+' conftest.er1 >conftest.err +- rm -f conftest.er1 +- cat conftest.err >&5 +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); } && { +- test -z "$ac_c_werror_flag" || +- test ! -s conftest.err +- } && test -s conftest$ac_exeext && +- $as_test_x conftest$ac_exeext; then ++if ac_fn_c_try_link "$LINENO"; then : + gt_cv_func_gnugettext1_libc=yes + else +- echo "$as_me: failed program was:" >&5 +-sed 's/^/| /' conftest.$ac_ext >&5 +- +- gt_cv_func_gnugettext1_libc=no ++ gt_cv_func_gnugettext1_libc=no + fi +- +-rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ +- conftest$ac_exeext conftest.$ac_ext ++rm -f core conftest.err conftest.$ac_objext \ ++ conftest$ac_exeext conftest.$ac_ext + fi +-{ echo "$as_me:$LINENO: result: $gt_cv_func_gnugettext1_libc" >&5 +-echo "${ECHO_T}$gt_cv_func_gnugettext1_libc" >&6; } ++{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $gt_cv_func_gnugettext1_libc" >&5 ++$as_echo "$gt_cv_func_gnugettext1_libc" >&6; } + + if test "$gt_cv_func_gnugettext1_libc" != "yes"; then + +@@ -25343,7 +23753,7 @@ echo "${ECHO_T}$gt_cv_func_gnugettext1_libc" >&6; } + + + # Check whether --with-libintl-prefix was given. +-if test "${with_libintl_prefix+set}" = set; then ++if test "${with_libintl_prefix+set}" = set; then : + withval=$with_libintl_prefix; + if test "X$withval" = "Xno"; then + use_additional=no +@@ -25704,20 +24114,16 @@ fi + done + fi + +- { echo "$as_me:$LINENO: checking for GNU gettext in libintl" >&5 +-echo $ECHO_N "checking for GNU gettext in libintl... $ECHO_C" >&6; } +-if test "${gt_cv_func_gnugettext1_libintl+set}" = set; then +- echo $ECHO_N "(cached) $ECHO_C" >&6 ++ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for GNU gettext in libintl" >&5 ++$as_echo_n "checking for GNU gettext in libintl... " >&6; } ++if ${gt_cv_func_gnugettext1_libintl+:} false; then : ++ $as_echo_n "(cached) " >&6 + else + gt_save_CPPFLAGS="$CPPFLAGS" + CPPFLAGS="$CPPFLAGS $INCINTL" + gt_save_LIBS="$LIBS" + LIBS="$LIBS $LIBINTL" +- cat >conftest.$ac_ext <<_ACEOF +-/* confdefs.h. */ +-_ACEOF +-cat confdefs.h >>conftest.$ac_ext +-cat >>conftest.$ac_ext <<_ACEOF ++ cat confdefs.h - <<_ACEOF >conftest.$ac_ext + /* end confdefs.h. */ + #include + extern int _nl_msg_cat_cntr; +@@ -25735,41 +24141,16 @@ return (int) gettext ("") + _nl_msg_cat_cntr + *_nl_expand_alias (0) + return 0; + } + _ACEOF +-rm -f conftest.$ac_objext conftest$ac_exeext +-if { (ac_try="$ac_link" +-case "(($ac_try" in +- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; +- *) ac_try_echo=$ac_try;; +-esac +-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 +- (eval "$ac_link") 2>conftest.er1 +- ac_status=$? +- grep -v '^ *+' conftest.er1 >conftest.err +- rm -f conftest.er1 +- cat conftest.err >&5 +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); } && { +- test -z "$ac_c_werror_flag" || +- test ! -s conftest.err +- } && test -s conftest$ac_exeext && +- $as_test_x conftest$ac_exeext; then ++if ac_fn_c_try_link "$LINENO"; then : + gt_cv_func_gnugettext1_libintl=yes + else +- echo "$as_me: failed program was:" >&5 +-sed 's/^/| /' conftest.$ac_ext >&5 +- +- gt_cv_func_gnugettext1_libintl=no ++ gt_cv_func_gnugettext1_libintl=no + fi +- +-rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ +- conftest$ac_exeext conftest.$ac_ext ++rm -f core conftest.err conftest.$ac_objext \ ++ conftest$ac_exeext conftest.$ac_ext + if test "$gt_cv_func_gnugettext1_libintl" != yes && test -n "$LIBICONV"; then + LIBS="$LIBS $LIBICONV" +- cat >conftest.$ac_ext <<_ACEOF +-/* confdefs.h. */ +-_ACEOF +-cat confdefs.h >>conftest.$ac_ext +-cat >>conftest.$ac_ext <<_ACEOF ++ cat confdefs.h - <<_ACEOF >conftest.$ac_ext + /* end confdefs.h. */ + #include + extern int _nl_msg_cat_cntr; +@@ -25787,43 +24168,20 @@ return (int) gettext ("") + _nl_msg_cat_cntr + *_nl_expand_alias (0) + return 0; + } + _ACEOF +-rm -f conftest.$ac_objext conftest$ac_exeext +-if { (ac_try="$ac_link" +-case "(($ac_try" in +- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; +- *) ac_try_echo=$ac_try;; +-esac +-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 +- (eval "$ac_link") 2>conftest.er1 +- ac_status=$? +- grep -v '^ *+' conftest.er1 >conftest.err +- rm -f conftest.er1 +- cat conftest.err >&5 +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); } && { +- test -z "$ac_c_werror_flag" || +- test ! -s conftest.err +- } && test -s conftest$ac_exeext && +- $as_test_x conftest$ac_exeext; then ++if ac_fn_c_try_link "$LINENO"; then : + LIBINTL="$LIBINTL $LIBICONV" + LTLIBINTL="$LTLIBINTL $LTLIBICONV" + gt_cv_func_gnugettext1_libintl=yes + +-else +- echo "$as_me: failed program was:" >&5 +-sed 's/^/| /' conftest.$ac_ext >&5 +- +- + fi +- +-rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ +- conftest$ac_exeext conftest.$ac_ext ++rm -f core conftest.err conftest.$ac_objext \ ++ conftest$ac_exeext conftest.$ac_ext + fi + CPPFLAGS="$gt_save_CPPFLAGS" + LIBS="$gt_save_LIBS" + fi +-{ echo "$as_me:$LINENO: result: $gt_cv_func_gnugettext1_libintl" >&5 +-echo "${ECHO_T}$gt_cv_func_gnugettext1_libintl" >&6; } ++{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $gt_cv_func_gnugettext1_libintl" >&5 ++$as_echo "$gt_cv_func_gnugettext1_libintl" >&6; } + fi + + if test "$gt_cv_func_gnugettext1_libc" = "yes" \ +@@ -25860,9 +24218,7 @@ echo "${ECHO_T}$gt_cv_func_gnugettext1_libintl" >&6; } + if test "$gt_use_preinstalled_gnugettext" = "yes" \ + || test "$nls_cv_use_gnu_gettext" = "yes"; then + +-cat >>confdefs.h <<\_ACEOF +-#define ENABLE_NLS 1 +-_ACEOF ++$as_echo "#define ENABLE_NLS 1" >>confdefs.h + + else + USE_NLS=no +@@ -25873,10 +24229,10 @@ _ACEOF + + if test "$gt_use_preinstalled_gnugettext" = "yes"; then + if test "$gt_cv_func_gnugettext1_libintl" = "yes"; then +- { echo "$as_me:$LINENO: checking how to link with libintl" >&5 +-echo $ECHO_N "checking how to link with libintl... $ECHO_C" >&6; } +- { echo "$as_me:$LINENO: result: $LIBINTL" >&5 +-echo "${ECHO_T}$LIBINTL" >&6; } ++ { $as_echo "$as_me:${as_lineno-$LINENO}: checking how to link with libintl" >&5 ++$as_echo_n "checking how to link with libintl... " >&6; } ++ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $LIBINTL" >&5 ++$as_echo "$LIBINTL" >&6; } + + for element in $INCINTL; do + haveit= +@@ -25903,14 +24259,10 @@ echo "${ECHO_T}$LIBINTL" >&6; } + fi + + +-cat >>confdefs.h <<\_ACEOF +-#define HAVE_GETTEXT 1 +-_ACEOF ++$as_echo "#define HAVE_GETTEXT 1" >>confdefs.h + + +-cat >>confdefs.h <<\_ACEOF +-#define HAVE_DCGETTEXT 1 +-_ACEOF ++$as_echo "#define HAVE_DCGETTEXT 1" >>confdefs.h + + fi + +@@ -25952,12 +24304,10 @@ _ACEOF + + if test "${nls_cv_force_use_gnu_gettext}" = "yes"; then + +-cat >>confdefs.h <<\_ACEOF +-#define HAVE_INCLUDED_GETTEXT 1 +-_ACEOF ++$as_echo "#define HAVE_INCLUDED_GETTEXT 1" >>confdefs.h + + AM_CPPFLAGS="${AM_CPPFLAGS} -I\$(top_builddir)/intl" +- if test "${enable_libtool}" != "no"; then ++ if test "${enable_libtool}" != "no"; then : + + INCLUDED_LIBINTL="${LTLIBINTL}" + +@@ -25966,7 +24316,6 @@ else + INCLUDED_LIBINTL="${LIBINTL}" + + fi +- + else + + for element in vlc; do +@@ -25980,12 +24329,9 @@ fi + XGETTEXT="${XGETTEXT} --keyword=_NS --keyword=_ANS" + + if test "${SYS}" != "mingwce"; then +-if test "$am_cv_func_iconv" != "yes"; then +- { { echo "$as_me:$LINENO: error: libiconv is needed for VLC to work properly" >&5 +-echo "$as_me: error: libiconv is needed for VLC to work properly" >&2;} +- { (exit 1); exit 1; }; } ++if test "$am_cv_func_iconv" != "yes"; then : ++ as_fn_error $? "libiconv is needed for VLC to work properly" "$LINENO" 5 + fi +- + fi + + for element in vlc; do +@@ -25993,7 +24339,7 @@ fi + am_modules_with_cflags="${am_modules_with_cflags} ${element}" + done + +-if test "${enable_libtool}" != "no"; then ++if test "${enable_libtool}" != "no"; then : + + + for element in vlc; do +@@ -26013,21 +24359,16 @@ else + + fi + +- + if test "${SYS}" = "mingw32" + then +- { echo "$as_me:$LINENO: checking for opendir in -lmingwex" >&5 +-echo $ECHO_N "checking for opendir in -lmingwex... $ECHO_C" >&6; } +-if test "${ac_cv_lib_mingwex_opendir+set}" = set; then +- echo $ECHO_N "(cached) $ECHO_C" >&6 ++ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for opendir in -lmingwex" >&5 ++$as_echo_n "checking for opendir in -lmingwex... " >&6; } ++if ${ac_cv_lib_mingwex_opendir+:} false; then : ++ $as_echo_n "(cached) " >&6 + else + ac_check_lib_save_LIBS=$LIBS + LIBS="-lmingwex $LIBS" +-cat >conftest.$ac_ext <<_ACEOF +-/* confdefs.h. */ +-_ACEOF +-cat confdefs.h >>conftest.$ac_ext +-cat >>conftest.$ac_ext <<_ACEOF ++cat confdefs.h - <<_ACEOF >conftest.$ac_ext + /* end confdefs.h. */ + + /* Override any GCC internal prototype to avoid an error. +@@ -26045,51 +24386,26 @@ return opendir (); + return 0; + } + _ACEOF +-rm -f conftest.$ac_objext conftest$ac_exeext +-if { (ac_try="$ac_link" +-case "(($ac_try" in +- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; +- *) ac_try_echo=$ac_try;; +-esac +-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 +- (eval "$ac_link") 2>conftest.er1 +- ac_status=$? +- grep -v '^ *+' conftest.er1 >conftest.err +- rm -f conftest.er1 +- cat conftest.err >&5 +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); } && { +- test -z "$ac_c_werror_flag" || +- test ! -s conftest.err +- } && test -s conftest$ac_exeext && +- $as_test_x conftest$ac_exeext; then ++if ac_fn_c_try_link "$LINENO"; then : + ac_cv_lib_mingwex_opendir=yes + else +- echo "$as_me: failed program was:" >&5 +-sed 's/^/| /' conftest.$ac_ext >&5 +- +- ac_cv_lib_mingwex_opendir=no ++ ac_cv_lib_mingwex_opendir=no + fi +- +-rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ +- conftest$ac_exeext conftest.$ac_ext ++rm -f core conftest.err conftest.$ac_objext \ ++ conftest$ac_exeext conftest.$ac_ext + LIBS=$ac_check_lib_save_LIBS + fi +-{ echo "$as_me:$LINENO: result: $ac_cv_lib_mingwex_opendir" >&5 +-echo "${ECHO_T}$ac_cv_lib_mingwex_opendir" >&6; } +-if test $ac_cv_lib_mingwex_opendir = yes; then +- { echo "$as_me:$LINENO: checking for opendir in -lmingw32" >&5 +-echo $ECHO_N "checking for opendir in -lmingw32... $ECHO_C" >&6; } +-if test "${ac_cv_lib_mingw32_opendir+set}" = set; then +- echo $ECHO_N "(cached) $ECHO_C" >&6 ++{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_mingwex_opendir" >&5 ++$as_echo "$ac_cv_lib_mingwex_opendir" >&6; } ++if test "x$ac_cv_lib_mingwex_opendir" = xyes; then : ++ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for opendir in -lmingw32" >&5 ++$as_echo_n "checking for opendir in -lmingw32... " >&6; } ++if ${ac_cv_lib_mingw32_opendir+:} false; then : ++ $as_echo_n "(cached) " >&6 + else + ac_check_lib_save_LIBS=$LIBS + LIBS="-lmingw32 $LIBS" +-cat >conftest.$ac_ext <<_ACEOF +-/* confdefs.h. */ +-_ACEOF +-cat confdefs.h >>conftest.$ac_ext +-cat >>conftest.$ac_ext <<_ACEOF ++cat confdefs.h - <<_ACEOF >conftest.$ac_ext + /* end confdefs.h. */ + + /* Override any GCC internal prototype to avoid an error. +@@ -26107,39 +24423,18 @@ return opendir (); + return 0; + } + _ACEOF +-rm -f conftest.$ac_objext conftest$ac_exeext +-if { (ac_try="$ac_link" +-case "(($ac_try" in +- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; +- *) ac_try_echo=$ac_try;; +-esac +-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 +- (eval "$ac_link") 2>conftest.er1 +- ac_status=$? +- grep -v '^ *+' conftest.er1 >conftest.err +- rm -f conftest.er1 +- cat conftest.err >&5 +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); } && { +- test -z "$ac_c_werror_flag" || +- test ! -s conftest.err +- } && test -s conftest$ac_exeext && +- $as_test_x conftest$ac_exeext; then ++if ac_fn_c_try_link "$LINENO"; then : + ac_cv_lib_mingw32_opendir=yes + else +- echo "$as_me: failed program was:" >&5 +-sed 's/^/| /' conftest.$ac_ext >&5 +- +- ac_cv_lib_mingw32_opendir=no ++ ac_cv_lib_mingw32_opendir=no + fi +- +-rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ +- conftest$ac_exeext conftest.$ac_ext ++rm -f core conftest.err conftest.$ac_objext \ ++ conftest$ac_exeext conftest.$ac_ext + LIBS=$ac_check_lib_save_LIBS + fi +-{ echo "$as_me:$LINENO: result: $ac_cv_lib_mingw32_opendir" >&5 +-echo "${ECHO_T}$ac_cv_lib_mingw32_opendir" >&6; } +-if test $ac_cv_lib_mingw32_opendir = yes; then ++{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_mingw32_opendir" >&5 ++$as_echo "$ac_cv_lib_mingw32_opendir" >&6; } ++if test "x$ac_cv_lib_mingw32_opendir" = xyes; then : + + for element in vlc; do + eval "LDFLAGS_${element}="'"'" "'$'"{LDFLAGS_${element}} "'"' +@@ -26162,17 +24457,13 @@ fi + + if test "${SYS}" = "mingw32" + then +- { echo "$as_me:$LINENO: checking if \$CC accepts -mms-bitfields" >&5 +-echo $ECHO_N "checking if \$CC accepts -mms-bitfields... $ECHO_C" >&6; } +-if test "${ac_cv_c_mms_bitfields+set}" = set; then +- echo $ECHO_N "(cached) $ECHO_C" >&6 ++ { $as_echo "$as_me:${as_lineno-$LINENO}: checking if \$CC accepts -mms-bitfields" >&5 ++$as_echo_n "checking if \$CC accepts -mms-bitfields... " >&6; } ++if ${ac_cv_c_mms_bitfields+:} false; then : ++ $as_echo_n "(cached) " >&6 + else + CFLAGS="${CFLAGS_save} -mms-bitfields" +- cat >conftest.$ac_ext <<_ACEOF +-/* confdefs.h. */ +-_ACEOF +-cat confdefs.h >>conftest.$ac_ext +-cat >>conftest.$ac_ext <<_ACEOF ++ cat confdefs.h - <<_ACEOF >conftest.$ac_ext + /* end confdefs.h. */ + + int +@@ -26183,50 +24474,26 @@ main () + return 0; + } + _ACEOF +-rm -f conftest.$ac_objext +-if { (ac_try="$ac_compile" +-case "(($ac_try" in +- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; +- *) ac_try_echo=$ac_try;; +-esac +-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 +- (eval "$ac_compile") 2>conftest.er1 +- ac_status=$? +- grep -v '^ *+' conftest.er1 >conftest.err +- rm -f conftest.er1 +- cat conftest.err >&5 +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); } && { +- test -z "$ac_c_werror_flag" || +- test ! -s conftest.err +- } && test -s conftest.$ac_objext; then ++if ac_fn_c_try_compile "$LINENO"; then : + ac_cv_c_mms_bitfields=yes + else +- echo "$as_me: failed program was:" >&5 +-sed 's/^/| /' conftest.$ac_ext >&5 +- +- ac_cv_c_mms_bitfields=no ++ ac_cv_c_mms_bitfields=no + fi +- + rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext + fi +-{ echo "$as_me:$LINENO: result: $ac_cv_c_mms_bitfields" >&5 +-echo "${ECHO_T}$ac_cv_c_mms_bitfields" >&6; } ++{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_c_mms_bitfields" >&5 ++$as_echo "$ac_cv_c_mms_bitfields" >&6; } + if test "${ac_cv_c_mms_bitfields}" != "no"; then + CFLAGS_save="${CFLAGS_save} -mms-bitfields"; + CXXFLAGS_save="${CXXFLAGS_save} -mms-bitfields"; + else +- { echo "$as_me:$LINENO: checking if \$CC accepts -fnative-struct" >&5 +-echo $ECHO_N "checking if \$CC accepts -fnative-struct... $ECHO_C" >&6; } +-if test "${ac_cv_c_fnative_struct+set}" = set; then +- echo $ECHO_N "(cached) $ECHO_C" >&6 ++ { $as_echo "$as_me:${as_lineno-$LINENO}: checking if \$CC accepts -fnative-struct" >&5 ++$as_echo_n "checking if \$CC accepts -fnative-struct... " >&6; } ++if ${ac_cv_c_fnative_struct+:} false; then : ++ $as_echo_n "(cached) " >&6 + else + CFLAGS="${CFLAGS_save} -fnative-struct" +- cat >conftest.$ac_ext <<_ACEOF +-/* confdefs.h. */ +-_ACEOF +-cat confdefs.h >>conftest.$ac_ext +-cat >>conftest.$ac_ext <<_ACEOF ++ cat confdefs.h - <<_ACEOF >conftest.$ac_ext + /* end confdefs.h. */ + + int +@@ -26237,35 +24504,15 @@ main () + return 0; + } + _ACEOF +-rm -f conftest.$ac_objext +-if { (ac_try="$ac_compile" +-case "(($ac_try" in +- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; +- *) ac_try_echo=$ac_try;; +-esac +-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 +- (eval "$ac_compile") 2>conftest.er1 +- ac_status=$? +- grep -v '^ *+' conftest.er1 >conftest.err +- rm -f conftest.er1 +- cat conftest.err >&5 +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); } && { +- test -z "$ac_c_werror_flag" || +- test ! -s conftest.err +- } && test -s conftest.$ac_objext; then ++if ac_fn_c_try_compile "$LINENO"; then : + ac_cv_c_fnative_struct=yes + else +- echo "$as_me: failed program was:" >&5 +-sed 's/^/| /' conftest.$ac_ext >&5 +- +- ac_cv_c_fnative_struct=no ++ ac_cv_c_fnative_struct=no + fi +- + rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext + fi +-{ echo "$as_me:$LINENO: result: $ac_cv_c_fnative_struct" >&5 +-echo "${ECHO_T}$ac_cv_c_fnative_struct" >&6; } ++{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_c_fnative_struct" >&5 ++$as_echo "$ac_cv_c_fnative_struct" >&6; } + if test "${ac_cv_c_fnative_struct}" != "no"; then + CFLAGS_save="${CFLAGS_save} -fnative-struct"; + CXXFLAGS_save="${CXXFLAGS_save} -fnative-struct"; +@@ -26283,17 +24530,13 @@ ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' + ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' + ac_compiler_gnu=$ac_cv_cxx_compiler_gnu + +- { echo "$as_me:$LINENO: checking if \$CXX accepts -fvtable-thunks" >&5 +-echo $ECHO_N "checking if \$CXX accepts -fvtable-thunks... $ECHO_C" >&6; } +-if test "${ac_cv_cxx_fvtable_thunks+set}" = set; then +- echo $ECHO_N "(cached) $ECHO_C" >&6 ++ { $as_echo "$as_me:${as_lineno-$LINENO}: checking if \$CXX accepts -fvtable-thunks" >&5 ++$as_echo_n "checking if \$CXX accepts -fvtable-thunks... " >&6; } ++if ${ac_cv_cxx_fvtable_thunks+:} false; then : ++ $as_echo_n "(cached) " >&6 + else + CXXFLAGS="${CXXFLAGS_save} -Wall -Werror -fvtable-thunks" +- cat >conftest.$ac_ext <<_ACEOF +-/* confdefs.h. */ +-_ACEOF +-cat confdefs.h >>conftest.$ac_ext +-cat >>conftest.$ac_ext <<_ACEOF ++ cat confdefs.h - <<_ACEOF >conftest.$ac_ext + /* end confdefs.h. */ + + int +@@ -26304,35 +24547,15 @@ main () + return 0; + } + _ACEOF +-rm -f conftest.$ac_objext +-if { (ac_try="$ac_compile" +-case "(($ac_try" in +- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; +- *) ac_try_echo=$ac_try;; +-esac +-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 +- (eval "$ac_compile") 2>conftest.er1 +- ac_status=$? +- grep -v '^ *+' conftest.er1 >conftest.err +- rm -f conftest.er1 +- cat conftest.err >&5 +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); } && { +- test -z "$ac_cxx_werror_flag" || +- test ! -s conftest.err +- } && test -s conftest.$ac_objext; then ++if ac_fn_cxx_try_compile "$LINENO"; then : + ac_cv_cxx_fvtable_thunks=yes + else +- echo "$as_me: failed program was:" >&5 +-sed 's/^/| /' conftest.$ac_ext >&5 +- +- ac_cv_cxx_fvtable_thunks=no ++ ac_cv_cxx_fvtable_thunks=no + fi +- + rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext + fi +-{ echo "$as_me:$LINENO: result: $ac_cv_cxx_fvtable_thunks" >&5 +-echo "${ECHO_T}$ac_cv_cxx_fvtable_thunks" >&6; } ++{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_cxx_fvtable_thunks" >&5 ++$as_echo "$ac_cv_cxx_fvtable_thunks" >&6; } + if test "${ac_cv_cxx_fvtable_thunks}" = "yes"; then + CXXFLAGS_mingw32_special="-fvtable-thunks" + fi +@@ -26348,8 +24571,8 @@ fi + + + +- { echo "$as_me:$LINENO: checking for shared objects suffix" >&5 +-echo $ECHO_N "checking for shared objects suffix... $ECHO_C" >&6; } ++ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for shared objects suffix" >&5 ++$as_echo_n "checking for shared objects suffix... " >&6; } + case "${target_os}" in + darwin*) + LIBEXT=".dylib" +@@ -26364,8 +24587,8 @@ echo $ECHO_N "checking for shared objects suffix... $ECHO_C" >&6; } + LIBEXT=".so" + ;; + esac +- { echo "$as_me:$LINENO: result: ${LIBEXT}" >&5 +-echo "${ECHO_T}${LIBEXT}" >&6; } ++ { $as_echo "$as_me:${as_lineno-$LINENO}: result: ${LIBEXT}" >&5 ++$as_echo "${LIBEXT}" >&6; } + + cat >>confdefs.h <<_ACEOF + #define LIBEXT "${LIBEXT}" +@@ -26374,20 +24597,20 @@ _ACEOF + + + +- { echo "$as_me:$LINENO: checking for prefix to exported symbols" >&5 +-echo $ECHO_N "checking for prefix to exported symbols... $ECHO_C" >&6; } ++ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for prefix to exported symbols" >&5 ++$as_echo_n "checking for prefix to exported symbols... " >&6; } + SYMPREF="" + case "${target_os}" in + darwin* | *mingw32* | *cygwin* | *wince* | *mingwce* | *pe*) + SYMPREF="_" + ;; + esac +- { echo "$as_me:$LINENO: result: ${SYMPREF}" >&5 +-echo "${ECHO_T}${SYMPREF}" >&6; } ++ { $as_echo "$as_me:${as_lineno-$LINENO}: result: ${SYMPREF}" >&5 ++$as_echo "${SYMPREF}" >&6; } + + + +-if test "${enable_libtool}" = "no"; then ++if test "${enable_libtool}" = "no"; then : + + case "${SYS}" in + mingw32|cygwin) +@@ -26442,71 +24665,192 @@ esac + + fi + +- + CPPFLAGS_save="${CPPFLAGS_save} -DSYS_`echo ${SYS} | sed -e 's/-.*//' | tr 'abcdefghijklmnopqrstuvwxyz.' 'ABCDEFGHIJKLMNOPQRSTUVWXYZ_'`"; CPPFLAGS="${CPPFLAGS_save}" + + need_libc=false + ++for ac_func in gettimeofday strtod strtol strtof strtoll strtoull strsep isatty vasprintf asprintf swab sigrelse getpwuid memalign posix_memalign if_nametoindex atoll getenv putenv setenv gmtime_r ctime_r localtime_r lrintf daemon scandir fork bsearch lstat strlcpy ++do : ++ as_ac_var=`$as_echo "ac_cv_func_$ac_func" | $as_tr_sh` ++ac_fn_c_check_func "$LINENO" "$ac_func" "$as_ac_var" ++if eval test \"x\$"$as_ac_var"\" = x"yes"; then : ++ cat >>confdefs.h <<_ACEOF ++#define `$as_echo "HAVE_$ac_func" | $as_tr_cpp` 1 ++_ACEOF + ++fi ++done + + ++for ac_func in strdup strndup atof ++do : ++ as_ac_var=`$as_echo "ac_cv_func_$ac_func" | $as_tr_sh` ++ac_fn_c_check_func "$LINENO" "$ac_func" "$as_ac_var" ++if eval test \"x\$"$as_ac_var"\" = x"yes"; then : ++ cat >>confdefs.h <<_ACEOF ++#define `$as_echo "HAVE_$ac_func" | $as_tr_cpp` 1 ++_ACEOF + ++fi ++done + ++for ac_func in strcasecmp ++do : ++ ac_fn_c_check_func "$LINENO" "strcasecmp" "ac_cv_func_strcasecmp" ++if test "x$ac_cv_func_strcasecmp" = xyes; then : ++ cat >>confdefs.h <<_ACEOF ++#define HAVE_STRCASECMP 1 ++_ACEOF + ++else ++ for ac_func in stricmp ++do : ++ ac_fn_c_check_func "$LINENO" "stricmp" "ac_cv_func_stricmp" ++if test "x$ac_cv_func_stricmp" = xyes; then : ++ cat >>confdefs.h <<_ACEOF ++#define HAVE_STRICMP 1 ++_ACEOF + ++fi ++done + ++fi ++done + ++for ac_func in strncasecmp ++do : ++ ac_fn_c_check_func "$LINENO" "strncasecmp" "ac_cv_func_strncasecmp" ++if test "x$ac_cv_func_strncasecmp" = xyes; then : ++ cat >>confdefs.h <<_ACEOF ++#define HAVE_STRNCASECMP 1 ++_ACEOF + ++else ++ for ac_func in strnicmp ++do : ++ ac_fn_c_check_func "$LINENO" "strnicmp" "ac_cv_func_strnicmp" ++if test "x$ac_cv_func_strnicmp" = xyes; then : ++ cat >>confdefs.h <<_ACEOF ++#define HAVE_STRNICMP 1 ++_ACEOF + ++fi ++done + ++fi ++done + ++for ac_func in strcasestr ++do : ++ ac_fn_c_check_func "$LINENO" "strcasestr" "ac_cv_func_strcasestr" ++if test "x$ac_cv_func_strcasestr" = xyes; then : ++ cat >>confdefs.h <<_ACEOF ++#define HAVE_STRCASESTR 1 ++_ACEOF + ++else ++ for ac_func in stristr ++do : ++ ac_fn_c_check_func "$LINENO" "stristr" "ac_cv_func_stristr" ++if test "x$ac_cv_func_stristr" = xyes; then : ++ cat >>confdefs.h <<_ACEOF ++#define HAVE_STRISTR 1 ++_ACEOF + ++fi ++done + ++fi ++done + + ++for ac_func in setlocale ++do : ++ ac_fn_c_check_func "$LINENO" "setlocale" "ac_cv_func_setlocale" ++if test "x$ac_cv_func_setlocale" = xyes; then : ++ cat >>confdefs.h <<_ACEOF ++#define HAVE_SETLOCALE 1 ++_ACEOF + ++fi ++done + ++for ac_header in langinfo.h ++do : ++ ac_fn_c_check_header_mongrel "$LINENO" "langinfo.h" "ac_cv_header_langinfo_h" "$ac_includes_default" ++if test "x$ac_cv_header_langinfo_h" = xyes; then : ++ cat >>confdefs.h <<_ACEOF ++#define HAVE_LANGINFO_H 1 ++_ACEOF + ++fi + ++done + ++for ac_func in nl_langinfo ++do : ++ ac_fn_c_check_func "$LINENO" "nl_langinfo" "ac_cv_func_nl_langinfo" ++if test "x$ac_cv_func_nl_langinfo" = xyes; then : ++ cat >>confdefs.h <<_ACEOF ++#define HAVE_NL_LANGINFO 1 ++_ACEOF + ++fi ++done + + ++{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for nl_langinfo and CODESET" >&5 ++$as_echo_n "checking for nl_langinfo and CODESET... " >&6; } ++if ${ac_cv_langinfo_codeset+:} false; then : ++ $as_echo_n "(cached) " >&6 ++else ++ cat confdefs.h - <<_ACEOF >conftest.$ac_ext ++/* end confdefs.h. */ ++#include ++int ++main () ++{ ++char* cs = nl_langinfo(CODESET); ++ ; ++ return 0; ++} ++_ACEOF ++if ac_fn_c_try_link "$LINENO"; then : ++ ac_cv_langinfo_codeset=yes ++else ++ ac_cv_langinfo_codeset=no ++fi ++rm -f core conftest.err conftest.$ac_objext \ ++ conftest$ac_exeext conftest.$ac_ext + ++fi ++{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_langinfo_codeset" >&5 ++$as_echo "$ac_cv_langinfo_codeset" >&6; } ++if test ${ac_cv_langinfo_codeset} = yes; then + ++$as_echo "#define HAVE_LANGINFO_CODESET 1" >>confdefs.h + ++fi + +-for ac_func in gettimeofday strtod strtol strtof strtoll strtoull strsep isatty vasprintf asprintf swab sigrelse getpwuid memalign posix_memalign if_nametoindex atoll getenv putenv setenv gmtime_r ctime_r localtime_r lrintf daemon scandir fork bsearch lstat strlcpy +-do +-as_ac_var=`echo "ac_cv_func_$ac_func" | $as_tr_sh` +-{ echo "$as_me:$LINENO: checking for $ac_func" >&5 +-echo $ECHO_N "checking for $ac_func... $ECHO_C" >&6; } +-if { as_var=$as_ac_var; eval "test \"\${$as_var+set}\" = set"; }; then +- echo $ECHO_N "(cached) $ECHO_C" >&6 +-else +- cat >conftest.$ac_ext <<_ACEOF +-/* confdefs.h. */ ++for ac_func in connect ++do : ++ ac_fn_c_check_func "$LINENO" "connect" "ac_cv_func_connect" ++if test "x$ac_cv_func_connect" = xyes; then : ++ cat >>confdefs.h <<_ACEOF ++#define HAVE_CONNECT 1 + _ACEOF +-cat confdefs.h >>conftest.$ac_ext +-cat >>conftest.$ac_ext <<_ACEOF +-/* end confdefs.h. */ +-/* Define $ac_func to an innocuous variant, in case declares $ac_func. +- For example, HP-UX 11i declares gettimeofday. */ +-#define $ac_func innocuous_$ac_func +- +-/* System header to define __stub macros and hopefully few prototypes, +- which can conflict with char $ac_func (); below. +- Prefer to if __STDC__ is defined, since +- exists even on freestanding compilers. */ + +-#ifdef __STDC__ +-# include +-#else +-# include +-#endif ++else + +-#undef $ac_func ++ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for connect in -lsocket" >&5 ++$as_echo_n "checking for connect in -lsocket... " >&6; } ++if ${ac_cv_lib_socket_connect+:} false; then : ++ $as_echo_n "(cached) " >&6 ++else ++ ac_check_lib_save_LIBS=$LIBS ++LIBS="-lsocket $LIBS" ++cat confdefs.h - <<_ACEOF >conftest.$ac_ext ++/* end confdefs.h. */ + + /* Override any GCC internal prototype to avoid an error. + Use char because int might match the return type of a GCC +@@ -26514,96 +24858,62 @@ cat >>conftest.$ac_ext <<_ACEOF + #ifdef __cplusplus + extern "C" + #endif +-char $ac_func (); +-/* The GNU C library defines this for functions which it implements +- to always fail with ENOSYS. Some functions are actually named +- something starting with __ and the normal name is an alias. */ +-#if defined __stub_$ac_func || defined __stub___$ac_func +-choke me +-#endif +- ++char connect (); + int + main () + { +-return $ac_func (); ++return connect (); + ; + return 0; + } + _ACEOF +-rm -f conftest.$ac_objext conftest$ac_exeext +-if { (ac_try="$ac_link" +-case "(($ac_try" in +- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; +- *) ac_try_echo=$ac_try;; +-esac +-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 +- (eval "$ac_link") 2>conftest.er1 +- ac_status=$? +- grep -v '^ *+' conftest.er1 >conftest.err +- rm -f conftest.er1 +- cat conftest.err >&5 +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); } && { +- test -z "$ac_c_werror_flag" || +- test ! -s conftest.err +- } && test -s conftest$ac_exeext && +- $as_test_x conftest$ac_exeext; then +- eval "$as_ac_var=yes" ++if ac_fn_c_try_link "$LINENO"; then : ++ ac_cv_lib_socket_connect=yes + else +- echo "$as_me: failed program was:" >&5 +-sed 's/^/| /' conftest.$ac_ext >&5 +- +- eval "$as_ac_var=no" ++ ac_cv_lib_socket_connect=no + fi +- +-rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ +- conftest$ac_exeext conftest.$ac_ext ++rm -f core conftest.err conftest.$ac_objext \ ++ conftest$ac_exeext conftest.$ac_ext ++LIBS=$ac_check_lib_save_LIBS + fi +-ac_res=`eval echo '${'$as_ac_var'}'` +- { echo "$as_me:$LINENO: result: $ac_res" >&5 +-echo "${ECHO_T}$ac_res" >&6; } +-if test `eval echo '${'$as_ac_var'}'` = yes; then +- cat >>confdefs.h <<_ACEOF +-#define `echo "HAVE_$ac_func" | $as_tr_cpp` 1 +-_ACEOF ++{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_socket_connect" >&5 ++$as_echo "$ac_cv_lib_socket_connect" >&6; } ++if test "x$ac_cv_lib_socket_connect" = xyes; then : + +-fi +-done + ++ for element in vlc ipv4 ipv6 cdda cddax; do ++ eval "LDFLAGS_${element}="'"'"-lsocket "'$'"{LDFLAGS_${element}} "'"' ++ am_modules_with_ldflags="${am_modules_with_ldflags} ${element}" ++ done ++ ++ LIBS_socket="-lsocket" + ++fi + + ++fi ++done + +-for ac_func in strdup strndup atof +-do +-as_ac_var=`echo "ac_cv_func_$ac_func" | $as_tr_sh` +-{ echo "$as_me:$LINENO: checking for $ac_func" >&5 +-echo $ECHO_N "checking for $ac_func... $ECHO_C" >&6; } +-if { as_var=$as_ac_var; eval "test \"\${$as_var+set}\" = set"; }; then +- echo $ECHO_N "(cached) $ECHO_C" >&6 +-else +- cat >conftest.$ac_ext <<_ACEOF +-/* confdefs.h. */ +-_ACEOF +-cat confdefs.h >>conftest.$ac_ext +-cat >>conftest.$ac_ext <<_ACEOF +-/* end confdefs.h. */ +-/* Define $ac_func to an innocuous variant, in case declares $ac_func. +- For example, HP-UX 11i declares gettimeofday. */ +-#define $ac_func innocuous_$ac_func + +-/* System header to define __stub macros and hopefully few prototypes, +- which can conflict with char $ac_func (); below. +- Prefer to if __STDC__ is defined, since +- exists even on freestanding compilers. */ ++for ac_func in connect ++do : ++ ac_fn_c_check_func "$LINENO" "connect" "ac_cv_func_connect" ++if test "x$ac_cv_func_connect" = xyes; then : ++ cat >>confdefs.h <<_ACEOF ++#define HAVE_CONNECT 1 ++_ACEOF + +-#ifdef __STDC__ +-# include +-#else +-# include +-#endif ++else + +-#undef $ac_func ++ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for connect in -lnetwork" >&5 ++$as_echo_n "checking for connect in -lnetwork... " >&6; } ++if ${ac_cv_lib_network_connect+:} false; then : ++ $as_echo_n "(cached) " >&6 ++else ++ ac_check_lib_save_LIBS=$LIBS ++LIBS="-lnetwork $LIBS" ++cat confdefs.h - <<_ACEOF >conftest.$ac_ext ++/* end confdefs.h. */ + + /* Override any GCC internal prototype to avoid an error. + Use char because int might match the return type of a GCC +@@ -26611,93 +24921,63 @@ cat >>conftest.$ac_ext <<_ACEOF + #ifdef __cplusplus + extern "C" + #endif +-char $ac_func (); +-/* The GNU C library defines this for functions which it implements +- to always fail with ENOSYS. Some functions are actually named +- something starting with __ and the normal name is an alias. */ +-#if defined __stub_$ac_func || defined __stub___$ac_func +-choke me +-#endif +- ++char connect (); + int + main () + { +-return $ac_func (); ++return connect (); + ; + return 0; + } + _ACEOF +-rm -f conftest.$ac_objext conftest$ac_exeext +-if { (ac_try="$ac_link" +-case "(($ac_try" in +- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; +- *) ac_try_echo=$ac_try;; +-esac +-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 +- (eval "$ac_link") 2>conftest.er1 +- ac_status=$? +- grep -v '^ *+' conftest.er1 >conftest.err +- rm -f conftest.er1 +- cat conftest.err >&5 +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); } && { +- test -z "$ac_c_werror_flag" || +- test ! -s conftest.err +- } && test -s conftest$ac_exeext && +- $as_test_x conftest$ac_exeext; then +- eval "$as_ac_var=yes" ++if ac_fn_c_try_link "$LINENO"; then : ++ ac_cv_lib_network_connect=yes + else +- echo "$as_me: failed program was:" >&5 +-sed 's/^/| /' conftest.$ac_ext >&5 +- +- eval "$as_ac_var=no" ++ ac_cv_lib_network_connect=no ++fi ++rm -f core conftest.err conftest.$ac_objext \ ++ conftest$ac_exeext conftest.$ac_ext ++LIBS=$ac_check_lib_save_LIBS + fi ++{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_network_connect" >&5 ++$as_echo "$ac_cv_lib_network_connect" >&6; } ++if test "x$ac_cv_lib_network_connect" = xyes; then : ++ ++ ++ for element in vlc ipv4 ipv6 cdda cddax; do ++ eval "LDFLAGS_${element}="'"'"-lnetwork "'$'"{LDFLAGS_${element}} "'"' ++ am_modules_with_ldflags="${am_modules_with_ldflags} ${element}" ++ done ++ ++ LIBS_socket="-lnetwork" + +-rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ +- conftest$ac_exeext conftest.$ac_ext + fi +-ac_res=`eval echo '${'$as_ac_var'}'` +- { echo "$as_me:$LINENO: result: $ac_res" >&5 +-echo "${ECHO_T}$ac_res" >&6; } +-if test `eval echo '${'$as_ac_var'}'` = yes; then +- cat >>confdefs.h <<_ACEOF +-#define `echo "HAVE_$ac_func" | $as_tr_cpp` 1 +-_ACEOF ++ + + fi + done + + +-for ac_func in strcasecmp +-do +-as_ac_var=`echo "ac_cv_func_$ac_func" | $as_tr_sh` +-{ echo "$as_me:$LINENO: checking for $ac_func" >&5 +-echo $ECHO_N "checking for $ac_func... $ECHO_C" >&6; } +-if { as_var=$as_ac_var; eval "test \"\${$as_var+set}\" = set"; }; then +- echo $ECHO_N "(cached) $ECHO_C" >&6 +-else +- cat >conftest.$ac_ext <<_ACEOF +-/* confdefs.h. */ +-_ACEOF +-cat confdefs.h >>conftest.$ac_ext +-cat >>conftest.$ac_ext <<_ACEOF +-/* end confdefs.h. */ +-/* Define $ac_func to an innocuous variant, in case declares $ac_func. +- For example, HP-UX 11i declares gettimeofday. */ +-#define $ac_func innocuous_$ac_func + +-/* System header to define __stub macros and hopefully few prototypes, +- which can conflict with char $ac_func (); below. +- Prefer to if __STDC__ is defined, since +- exists even on freestanding compilers. */ ++for ac_func in send ++do : ++ ac_fn_c_check_func "$LINENO" "send" "ac_cv_func_send" ++if test "x$ac_cv_func_send" = xyes; then : ++ cat >>confdefs.h <<_ACEOF ++#define HAVE_SEND 1 ++_ACEOF + +-#ifdef __STDC__ +-# include +-#else +-# include +-#endif ++else + +-#undef $ac_func ++ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for send in -lsocket" >&5 ++$as_echo_n "checking for send in -lsocket... " >&6; } ++if ${ac_cv_lib_socket_send+:} false; then : ++ $as_echo_n "(cached) " >&6 ++else ++ ac_check_lib_save_LIBS=$LIBS ++LIBS="-lsocket $LIBS" ++cat confdefs.h - <<_ACEOF >conftest.$ac_ext ++/* end confdefs.h. */ + + /* Override any GCC internal prototype to avoid an error. + Use char because int might match the return type of a GCC +@@ -26705,91 +24985,61 @@ cat >>conftest.$ac_ext <<_ACEOF + #ifdef __cplusplus + extern "C" + #endif +-char $ac_func (); +-/* The GNU C library defines this for functions which it implements +- to always fail with ENOSYS. Some functions are actually named +- something starting with __ and the normal name is an alias. */ +-#if defined __stub_$ac_func || defined __stub___$ac_func +-choke me +-#endif +- ++char send (); + int + main () + { +-return $ac_func (); ++return send (); + ; + return 0; + } + _ACEOF +-rm -f conftest.$ac_objext conftest$ac_exeext +-if { (ac_try="$ac_link" +-case "(($ac_try" in +- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; +- *) ac_try_echo=$ac_try;; +-esac +-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 +- (eval "$ac_link") 2>conftest.er1 +- ac_status=$? +- grep -v '^ *+' conftest.er1 >conftest.err +- rm -f conftest.er1 +- cat conftest.err >&5 +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); } && { +- test -z "$ac_c_werror_flag" || +- test ! -s conftest.err +- } && test -s conftest$ac_exeext && +- $as_test_x conftest$ac_exeext; then +- eval "$as_ac_var=yes" ++if ac_fn_c_try_link "$LINENO"; then : ++ ac_cv_lib_socket_send=yes + else +- echo "$as_me: failed program was:" >&5 +-sed 's/^/| /' conftest.$ac_ext >&5 ++ ac_cv_lib_socket_send=no ++fi ++rm -f core conftest.err conftest.$ac_objext \ ++ conftest$ac_exeext conftest.$ac_ext ++LIBS=$ac_check_lib_save_LIBS ++fi ++{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_socket_send" >&5 ++$as_echo "$ac_cv_lib_socket_send" >&6; } ++if test "x$ac_cv_lib_socket_send" = xyes; then : ++ ++ ++ for element in access_http access_mms access_udp access_tcp access_ftp sap access_output_udp stream_out_standard growl; do ++ eval "LDFLAGS_${element}="'"'"-lsocket "'$'"{LDFLAGS_${element}} "'"' ++ am_modules_with_ldflags="${am_modules_with_ldflags} ${element}" ++ done ++ + +- eval "$as_ac_var=no" + fi + +-rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ +- conftest$ac_exeext conftest.$ac_ext ++ + fi +-ac_res=`eval echo '${'$as_ac_var'}'` +- { echo "$as_me:$LINENO: result: $ac_res" >&5 +-echo "${ECHO_T}$ac_res" >&6; } +-if test `eval echo '${'$as_ac_var'}'` = yes; then ++done ++ ++ ++for ac_func in send ++do : ++ ac_fn_c_check_func "$LINENO" "send" "ac_cv_func_send" ++if test "x$ac_cv_func_send" = xyes; then : + cat >>confdefs.h <<_ACEOF +-#define `echo "HAVE_$ac_func" | $as_tr_cpp` 1 ++#define HAVE_SEND 1 + _ACEOF + + else + +-for ac_func in stricmp +-do +-as_ac_var=`echo "ac_cv_func_$ac_func" | $as_tr_sh` +-{ echo "$as_me:$LINENO: checking for $ac_func" >&5 +-echo $ECHO_N "checking for $ac_func... $ECHO_C" >&6; } +-if { as_var=$as_ac_var; eval "test \"\${$as_var+set}\" = set"; }; then +- echo $ECHO_N "(cached) $ECHO_C" >&6 +-else +- cat >conftest.$ac_ext <<_ACEOF +-/* confdefs.h. */ +-_ACEOF +-cat confdefs.h >>conftest.$ac_ext +-cat >>conftest.$ac_ext <<_ACEOF ++ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for send in -lnetwork" >&5 ++$as_echo_n "checking for send in -lnetwork... " >&6; } ++if ${ac_cv_lib_network_send+:} false; then : ++ $as_echo_n "(cached) " >&6 ++else ++ ac_check_lib_save_LIBS=$LIBS ++LIBS="-lnetwork $LIBS" ++cat confdefs.h - <<_ACEOF >conftest.$ac_ext + /* end confdefs.h. */ +-/* Define $ac_func to an innocuous variant, in case declares $ac_func. +- For example, HP-UX 11i declares gettimeofday. */ +-#define $ac_func innocuous_$ac_func +- +-/* System header to define __stub macros and hopefully few prototypes, +- which can conflict with char $ac_func (); below. +- Prefer to if __STDC__ is defined, since +- exists even on freestanding compilers. */ +- +-#ifdef __STDC__ +-# include +-#else +-# include +-#endif +- +-#undef $ac_func + + /* Override any GCC internal prototype to avoid an error. + Use char because int might match the return type of a GCC +@@ -26797,96 +25047,61 @@ cat >>conftest.$ac_ext <<_ACEOF + #ifdef __cplusplus + extern "C" + #endif +-char $ac_func (); +-/* The GNU C library defines this for functions which it implements +- to always fail with ENOSYS. Some functions are actually named +- something starting with __ and the normal name is an alias. */ +-#if defined __stub_$ac_func || defined __stub___$ac_func +-choke me +-#endif +- ++char send (); + int + main () + { +-return $ac_func (); ++return send (); + ; + return 0; + } + _ACEOF +-rm -f conftest.$ac_objext conftest$ac_exeext +-if { (ac_try="$ac_link" +-case "(($ac_try" in +- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; +- *) ac_try_echo=$ac_try;; +-esac +-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 +- (eval "$ac_link") 2>conftest.er1 +- ac_status=$? +- grep -v '^ *+' conftest.er1 >conftest.err +- rm -f conftest.er1 +- cat conftest.err >&5 +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); } && { +- test -z "$ac_c_werror_flag" || +- test ! -s conftest.err +- } && test -s conftest$ac_exeext && +- $as_test_x conftest$ac_exeext; then +- eval "$as_ac_var=yes" ++if ac_fn_c_try_link "$LINENO"; then : ++ ac_cv_lib_network_send=yes + else +- echo "$as_me: failed program was:" >&5 +-sed 's/^/| /' conftest.$ac_ext >&5 +- +- eval "$as_ac_var=no" ++ ac_cv_lib_network_send=no + fi +- +-rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ +- conftest$ac_exeext conftest.$ac_ext ++rm -f core conftest.err conftest.$ac_objext \ ++ conftest$ac_exeext conftest.$ac_ext ++LIBS=$ac_check_lib_save_LIBS + fi +-ac_res=`eval echo '${'$as_ac_var'}'` +- { echo "$as_me:$LINENO: result: $ac_res" >&5 +-echo "${ECHO_T}$ac_res" >&6; } +-if test `eval echo '${'$as_ac_var'}'` = yes; then +- cat >>confdefs.h <<_ACEOF +-#define `echo "HAVE_$ac_func" | $as_tr_cpp` 1 +-_ACEOF ++{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_network_send" >&5 ++$as_echo "$ac_cv_lib_network_send" >&6; } ++if test "x$ac_cv_lib_network_send" = xyes; then : ++ ++ ++ for element in access_http access_mms access_udp access_tcp access_ftp sap access_output_udp stream_out_standard growl; do ++ eval "LDFLAGS_${element}="'"'"-lnetwork "'$'"{LDFLAGS_${element}} "'"' ++ am_modules_with_ldflags="${am_modules_with_ldflags} ${element}" ++ done ++ + + fi +-done ++ + + fi + done + + +-for ac_func in strncasecmp +-do +-as_ac_var=`echo "ac_cv_func_$ac_func" | $as_tr_sh` +-{ echo "$as_me:$LINENO: checking for $ac_func" >&5 +-echo $ECHO_N "checking for $ac_func... $ECHO_C" >&6; } +-if { as_var=$as_ac_var; eval "test \"\${$as_var+set}\" = set"; }; then +- echo $ECHO_N "(cached) $ECHO_C" >&6 +-else +- cat >conftest.$ac_ext <<_ACEOF +-/* confdefs.h. */ ++for ac_func in gethostbyname ++do : ++ ac_fn_c_check_func "$LINENO" "gethostbyname" "ac_cv_func_gethostbyname" ++if test "x$ac_cv_func_gethostbyname" = xyes; then : ++ cat >>confdefs.h <<_ACEOF ++#define HAVE_GETHOSTBYNAME 1 + _ACEOF +-cat confdefs.h >>conftest.$ac_ext +-cat >>conftest.$ac_ext <<_ACEOF +-/* end confdefs.h. */ +-/* Define $ac_func to an innocuous variant, in case declares $ac_func. +- For example, HP-UX 11i declares gettimeofday. */ +-#define $ac_func innocuous_$ac_func +- +-/* System header to define __stub macros and hopefully few prototypes, +- which can conflict with char $ac_func (); below. +- Prefer to if __STDC__ is defined, since +- exists even on freestanding compilers. */ + +-#ifdef __STDC__ +-# include +-#else +-# include +-#endif ++else + +-#undef $ac_func ++ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for gethostbyname in -lnsl" >&5 ++$as_echo_n "checking for gethostbyname in -lnsl... " >&6; } ++if ${ac_cv_lib_nsl_gethostbyname+:} false; then : ++ $as_echo_n "(cached) " >&6 ++else ++ ac_check_lib_save_LIBS=$LIBS ++LIBS="-lnsl $LIBS" ++cat confdefs.h - <<_ACEOF >conftest.$ac_ext ++/* end confdefs.h. */ + + /* Override any GCC internal prototype to avoid an error. + Use char because int might match the return type of a GCC +@@ -26894,91 +25109,46 @@ cat >>conftest.$ac_ext <<_ACEOF + #ifdef __cplusplus + extern "C" + #endif +-char $ac_func (); +-/* The GNU C library defines this for functions which it implements +- to always fail with ENOSYS. Some functions are actually named +- something starting with __ and the normal name is an alias. */ +-#if defined __stub_$ac_func || defined __stub___$ac_func +-choke me +-#endif +- ++char gethostbyname (); + int + main () + { +-return $ac_func (); ++return gethostbyname (); + ; + return 0; + } + _ACEOF +-rm -f conftest.$ac_objext conftest$ac_exeext +-if { (ac_try="$ac_link" +-case "(($ac_try" in +- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; +- *) ac_try_echo=$ac_try;; +-esac +-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 +- (eval "$ac_link") 2>conftest.er1 +- ac_status=$? +- grep -v '^ *+' conftest.er1 >conftest.err +- rm -f conftest.er1 +- cat conftest.err >&5 +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); } && { +- test -z "$ac_c_werror_flag" || +- test ! -s conftest.err +- } && test -s conftest$ac_exeext && +- $as_test_x conftest$ac_exeext; then +- eval "$as_ac_var=yes" ++if ac_fn_c_try_link "$LINENO"; then : ++ ac_cv_lib_nsl_gethostbyname=yes + else +- echo "$as_me: failed program was:" >&5 +-sed 's/^/| /' conftest.$ac_ext >&5 +- +- eval "$as_ac_var=no" ++ ac_cv_lib_nsl_gethostbyname=no + fi +- +-rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ +- conftest$ac_exeext conftest.$ac_ext ++rm -f core conftest.err conftest.$ac_objext \ ++ conftest$ac_exeext conftest.$ac_ext ++LIBS=$ac_check_lib_save_LIBS + fi +-ac_res=`eval echo '${'$as_ac_var'}'` +- { echo "$as_me:$LINENO: result: $ac_res" >&5 +-echo "${ECHO_T}$ac_res" >&6; } +-if test `eval echo '${'$as_ac_var'}'` = yes; then +- cat >>confdefs.h <<_ACEOF +-#define `echo "HAVE_$ac_func" | $as_tr_cpp` 1 +-_ACEOF ++{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_nsl_gethostbyname" >&5 ++$as_echo "$ac_cv_lib_nsl_gethostbyname" >&6; } ++if test "x$ac_cv_lib_nsl_gethostbyname" = xyes; then : + +-else + +-for ac_func in strnicmp +-do +-as_ac_var=`echo "ac_cv_func_$ac_func" | $as_tr_sh` +-{ echo "$as_me:$LINENO: checking for $ac_func" >&5 +-echo $ECHO_N "checking for $ac_func... $ECHO_C" >&6; } +-if { as_var=$as_ac_var; eval "test \"\${$as_var+set}\" = set"; }; then +- echo $ECHO_N "(cached) $ECHO_C" >&6 +-else +- cat >conftest.$ac_ext <<_ACEOF +-/* confdefs.h. */ +-_ACEOF +-cat confdefs.h >>conftest.$ac_ext +-cat >>conftest.$ac_ext <<_ACEOF +-/* end confdefs.h. */ +-/* Define $ac_func to an innocuous variant, in case declares $ac_func. +- For example, HP-UX 11i declares gettimeofday. */ +-#define $ac_func innocuous_$ac_func ++ for element in cdda cddax ipv4 ipv6 vlc; do ++ eval "LDFLAGS_${element}="'"'"-lnsl "'$'"{LDFLAGS_${element}} "'"' ++ am_modules_with_ldflags="${am_modules_with_ldflags} ${element}" ++ done + +-/* System header to define __stub macros and hopefully few prototypes, +- which can conflict with char $ac_func (); below. +- Prefer to if __STDC__ is defined, since +- exists even on freestanding compilers. */ + +-#ifdef __STDC__ +-# include +-#else +-# include +-#endif ++else + +-#undef $ac_func ++ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for gethostbyname in -lbind" >&5 ++$as_echo_n "checking for gethostbyname in -lbind... " >&6; } ++if ${ac_cv_lib_bind_gethostbyname+:} false; then : ++ $as_echo_n "(cached) " >&6 ++else ++ ac_check_lib_save_LIBS=$LIBS ++LIBS="-lbind $LIBS" ++cat confdefs.h - <<_ACEOF >conftest.$ac_ext ++/* end confdefs.h. */ + + /* Override any GCC internal prototype to avoid an error. + Use char because int might match the return type of a GCC +@@ -26986,96 +25156,64 @@ cat >>conftest.$ac_ext <<_ACEOF + #ifdef __cplusplus + extern "C" + #endif +-char $ac_func (); +-/* The GNU C library defines this for functions which it implements +- to always fail with ENOSYS. Some functions are actually named +- something starting with __ and the normal name is an alias. */ +-#if defined __stub_$ac_func || defined __stub___$ac_func +-choke me +-#endif +- ++char gethostbyname (); + int + main () + { +-return $ac_func (); ++return gethostbyname (); + ; + return 0; + } + _ACEOF +-rm -f conftest.$ac_objext conftest$ac_exeext +-if { (ac_try="$ac_link" +-case "(($ac_try" in +- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; +- *) ac_try_echo=$ac_try;; +-esac +-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 +- (eval "$ac_link") 2>conftest.er1 +- ac_status=$? +- grep -v '^ *+' conftest.er1 >conftest.err +- rm -f conftest.er1 +- cat conftest.err >&5 +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); } && { +- test -z "$ac_c_werror_flag" || +- test ! -s conftest.err +- } && test -s conftest$ac_exeext && +- $as_test_x conftest$ac_exeext; then +- eval "$as_ac_var=yes" ++if ac_fn_c_try_link "$LINENO"; then : ++ ac_cv_lib_bind_gethostbyname=yes + else +- echo "$as_me: failed program was:" >&5 +-sed 's/^/| /' conftest.$ac_ext >&5 +- +- eval "$as_ac_var=no" ++ ac_cv_lib_bind_gethostbyname=no ++fi ++rm -f core conftest.err conftest.$ac_objext \ ++ conftest$ac_exeext conftest.$ac_ext ++LIBS=$ac_check_lib_save_LIBS + fi ++{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_bind_gethostbyname" >&5 ++$as_echo "$ac_cv_lib_bind_gethostbyname" >&6; } ++if test "x$ac_cv_lib_bind_gethostbyname" = xyes; then : ++ ++ ++ for element in ipv4 access_mms; do ++ eval "LDFLAGS_${element}="'"'"-lbind "'$'"{LDFLAGS_${element}} "'"' ++ am_modules_with_ldflags="${am_modules_with_ldflags} ${element}" ++ done ++ + +-rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ +- conftest$ac_exeext conftest.$ac_ext + fi +-ac_res=`eval echo '${'$as_ac_var'}'` +- { echo "$as_me:$LINENO: result: $ac_res" >&5 +-echo "${ECHO_T}$ac_res" >&6; } +-if test `eval echo '${'$as_ac_var'}'` = yes; then +- cat >>confdefs.h <<_ACEOF +-#define `echo "HAVE_$ac_func" | $as_tr_cpp` 1 +-_ACEOF ++ + + fi +-done ++ + + fi + done + + +-for ac_func in strcasestr +-do +-as_ac_var=`echo "ac_cv_func_$ac_func" | $as_tr_sh` +-{ echo "$as_me:$LINENO: checking for $ac_func" >&5 +-echo $ECHO_N "checking for $ac_func... $ECHO_C" >&6; } +-if { as_var=$as_ac_var; eval "test \"\${$as_var+set}\" = set"; }; then +- echo $ECHO_N "(cached) $ECHO_C" >&6 +-else +- cat >conftest.$ac_ext <<_ACEOF +-/* confdefs.h. */ ++for ac_func in gethostbyname ++do : ++ ac_fn_c_check_func "$LINENO" "gethostbyname" "ac_cv_func_gethostbyname" ++if test "x$ac_cv_func_gethostbyname" = xyes; then : ++ cat >>confdefs.h <<_ACEOF ++#define HAVE_GETHOSTBYNAME 1 + _ACEOF +-cat confdefs.h >>conftest.$ac_ext +-cat >>conftest.$ac_ext <<_ACEOF +-/* end confdefs.h. */ +-/* Define $ac_func to an innocuous variant, in case declares $ac_func. +- For example, HP-UX 11i declares gettimeofday. */ +-#define $ac_func innocuous_$ac_func + +-/* System header to define __stub macros and hopefully few prototypes, +- which can conflict with char $ac_func (); below. +- Prefer to if __STDC__ is defined, since +- exists even on freestanding compilers. */ +- +-#ifdef __STDC__ +-# include +-#else +-# include +-#endif ++else + +-#undef $ac_func ++ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for gethostbyname in -lnsl" >&5 ++$as_echo_n "checking for gethostbyname in -lnsl... " >&6; } ++if ${ac_cv_lib_nsl_gethostbyname+:} false; then : ++ $as_echo_n "(cached) " >&6 ++else ++ ac_check_lib_save_LIBS=$LIBS ++LIBS="-lnsl $LIBS" ++cat confdefs.h - <<_ACEOF >conftest.$ac_ext ++/* end confdefs.h. */ + + /* Override any GCC internal prototype to avoid an error. + Use char because int might match the return type of a GCC +@@ -27083,91 +25221,46 @@ cat >>conftest.$ac_ext <<_ACEOF + #ifdef __cplusplus + extern "C" + #endif +-char $ac_func (); +-/* The GNU C library defines this for functions which it implements +- to always fail with ENOSYS. Some functions are actually named +- something starting with __ and the normal name is an alias. */ +-#if defined __stub_$ac_func || defined __stub___$ac_func +-choke me +-#endif +- ++char gethostbyname (); + int + main () + { +-return $ac_func (); ++return gethostbyname (); + ; + return 0; + } + _ACEOF +-rm -f conftest.$ac_objext conftest$ac_exeext +-if { (ac_try="$ac_link" +-case "(($ac_try" in +- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; +- *) ac_try_echo=$ac_try;; +-esac +-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 +- (eval "$ac_link") 2>conftest.er1 +- ac_status=$? +- grep -v '^ *+' conftest.er1 >conftest.err +- rm -f conftest.er1 +- cat conftest.err >&5 +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); } && { +- test -z "$ac_c_werror_flag" || +- test ! -s conftest.err +- } && test -s conftest$ac_exeext && +- $as_test_x conftest$ac_exeext; then +- eval "$as_ac_var=yes" ++if ac_fn_c_try_link "$LINENO"; then : ++ ac_cv_lib_nsl_gethostbyname=yes + else +- echo "$as_me: failed program was:" >&5 +-sed 's/^/| /' conftest.$ac_ext >&5 +- +- eval "$as_ac_var=no" ++ ac_cv_lib_nsl_gethostbyname=no + fi +- +-rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ +- conftest$ac_exeext conftest.$ac_ext ++rm -f core conftest.err conftest.$ac_objext \ ++ conftest$ac_exeext conftest.$ac_ext ++LIBS=$ac_check_lib_save_LIBS + fi +-ac_res=`eval echo '${'$as_ac_var'}'` +- { echo "$as_me:$LINENO: result: $ac_res" >&5 +-echo "${ECHO_T}$ac_res" >&6; } +-if test `eval echo '${'$as_ac_var'}'` = yes; then +- cat >>confdefs.h <<_ACEOF +-#define `echo "HAVE_$ac_func" | $as_tr_cpp` 1 +-_ACEOF ++{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_nsl_gethostbyname" >&5 ++$as_echo "$ac_cv_lib_nsl_gethostbyname" >&6; } ++if test "x$ac_cv_lib_nsl_gethostbyname" = xyes; then : + +-else + +-for ac_func in stristr +-do +-as_ac_var=`echo "ac_cv_func_$ac_func" | $as_tr_sh` +-{ echo "$as_me:$LINENO: checking for $ac_func" >&5 +-echo $ECHO_N "checking for $ac_func... $ECHO_C" >&6; } +-if { as_var=$as_ac_var; eval "test \"\${$as_var+set}\" = set"; }; then +- echo $ECHO_N "(cached) $ECHO_C" >&6 +-else +- cat >conftest.$ac_ext <<_ACEOF +-/* confdefs.h. */ +-_ACEOF +-cat confdefs.h >>conftest.$ac_ext +-cat >>conftest.$ac_ext <<_ACEOF +-/* end confdefs.h. */ +-/* Define $ac_func to an innocuous variant, in case declares $ac_func. +- For example, HP-UX 11i declares gettimeofday. */ +-#define $ac_func innocuous_$ac_func ++ for element in cdda cddax ipv4 ipv6 vlc; do ++ eval "LDFLAGS_${element}="'"'"-lnsl "'$'"{LDFLAGS_${element}} "'"' ++ am_modules_with_ldflags="${am_modules_with_ldflags} ${element}" ++ done + +-/* System header to define __stub macros and hopefully few prototypes, +- which can conflict with char $ac_func (); below. +- Prefer to if __STDC__ is defined, since +- exists even on freestanding compilers. */ + +-#ifdef __STDC__ +-# include +-#else +-# include +-#endif ++else + +-#undef $ac_func ++ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for gethostbyname in -lnetwork" >&5 ++$as_echo_n "checking for gethostbyname in -lnetwork... " >&6; } ++if ${ac_cv_lib_network_gethostbyname+:} false; then : ++ $as_echo_n "(cached) " >&6 ++else ++ ac_check_lib_save_LIBS=$LIBS ++LIBS="-lnetwork $LIBS" ++cat confdefs.h - <<_ACEOF >conftest.$ac_ext ++/* end confdefs.h. */ + + /* Override any GCC internal prototype to avoid an error. + Use char because int might match the return type of a GCC +@@ -27175,331 +25268,131 @@ cat >>conftest.$ac_ext <<_ACEOF + #ifdef __cplusplus + extern "C" + #endif +-char $ac_func (); +-/* The GNU C library defines this for functions which it implements +- to always fail with ENOSYS. Some functions are actually named +- something starting with __ and the normal name is an alias. */ +-#if defined __stub_$ac_func || defined __stub___$ac_func +-choke me +-#endif +- ++char gethostbyname (); + int + main () + { +-return $ac_func (); ++return gethostbyname (); + ; + return 0; + } + _ACEOF +-rm -f conftest.$ac_objext conftest$ac_exeext +-if { (ac_try="$ac_link" +-case "(($ac_try" in +- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; +- *) ac_try_echo=$ac_try;; +-esac +-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 +- (eval "$ac_link") 2>conftest.er1 +- ac_status=$? +- grep -v '^ *+' conftest.er1 >conftest.err +- rm -f conftest.er1 +- cat conftest.err >&5 +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); } && { +- test -z "$ac_c_werror_flag" || +- test ! -s conftest.err +- } && test -s conftest$ac_exeext && +- $as_test_x conftest$ac_exeext; then +- eval "$as_ac_var=yes" ++if ac_fn_c_try_link "$LINENO"; then : ++ ac_cv_lib_network_gethostbyname=yes + else +- echo "$as_me: failed program was:" >&5 +-sed 's/^/| /' conftest.$ac_ext >&5 +- +- eval "$as_ac_var=no" ++ ac_cv_lib_network_gethostbyname=no + fi +- +-rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ +- conftest$ac_exeext conftest.$ac_ext ++rm -f core conftest.err conftest.$ac_objext \ ++ conftest$ac_exeext conftest.$ac_ext ++LIBS=$ac_check_lib_save_LIBS + fi +-ac_res=`eval echo '${'$as_ac_var'}'` +- { echo "$as_me:$LINENO: result: $ac_res" >&5 +-echo "${ECHO_T}$ac_res" >&6; } +-if test `eval echo '${'$as_ac_var'}'` = yes; then +- cat >>confdefs.h <<_ACEOF +-#define `echo "HAVE_$ac_func" | $as_tr_cpp` 1 +-_ACEOF ++{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_network_gethostbyname" >&5 ++$as_echo "$ac_cv_lib_network_gethostbyname" >&6; } ++if test "x$ac_cv_lib_network_gethostbyname" = xyes; then : + +-fi +-done + +-fi +-done ++ for element in ipv4 access_mms; do ++ eval "LDFLAGS_${element}="'"'"-lnetwork "'$'"{LDFLAGS_${element}} "'"' ++ am_modules_with_ldflags="${am_modules_with_ldflags} ${element}" ++ done + + ++fi + +-for ac_func in setlocale +-do +-as_ac_var=`echo "ac_cv_func_$ac_func" | $as_tr_sh` +-{ echo "$as_me:$LINENO: checking for $ac_func" >&5 +-echo $ECHO_N "checking for $ac_func... $ECHO_C" >&6; } +-if { as_var=$as_ac_var; eval "test \"\${$as_var+set}\" = set"; }; then +- echo $ECHO_N "(cached) $ECHO_C" >&6 +-else +- cat >conftest.$ac_ext <<_ACEOF +-/* confdefs.h. */ +-_ACEOF +-cat confdefs.h >>conftest.$ac_ext +-cat >>conftest.$ac_ext <<_ACEOF +-/* end confdefs.h. */ +-/* Define $ac_func to an innocuous variant, in case declares $ac_func. +- For example, HP-UX 11i declares gettimeofday. */ +-#define $ac_func innocuous_$ac_func + +-/* System header to define __stub macros and hopefully few prototypes, +- which can conflict with char $ac_func (); below. +- Prefer to if __STDC__ is defined, since +- exists even on freestanding compilers. */ ++fi + +-#ifdef __STDC__ +-# include +-#else +-# include +-#endif + +-#undef $ac_func ++fi ++done + +-/* Override any GCC internal prototype to avoid an error. +- Use char because int might match the return type of a GCC +- builtin and then its argument prototype would still apply. */ +-#ifdef __cplusplus +-extern "C" +-#endif +-char $ac_func (); +-/* The GNU C library defines this for functions which it implements +- to always fail with ENOSYS. Some functions are actually named +- something starting with __ and the normal name is an alias. */ +-#if defined __stub_$ac_func || defined __stub___$ac_func +-choke me +-#endif + ++{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for socklen_t" >&5 ++$as_echo_n "checking for socklen_t... " >&6; } ++if ${ac_cv_type_socklen_t+:} false; then : ++ $as_echo_n "(cached) " >&6 ++else ++ cat confdefs.h - <<_ACEOF >conftest.$ac_ext ++/* end confdefs.h. */ ++#include ++ #include ++ #include + int + main () + { +-return $ac_func (); ++socklen_t len = 42; return len; + ; + return 0; + } + _ACEOF +-rm -f conftest.$ac_objext conftest$ac_exeext +-if { (ac_try="$ac_link" +-case "(($ac_try" in +- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; +- *) ac_try_echo=$ac_try;; +-esac +-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 +- (eval "$ac_link") 2>conftest.er1 +- ac_status=$? +- grep -v '^ *+' conftest.er1 >conftest.err +- rm -f conftest.er1 +- cat conftest.err >&5 +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); } && { +- test -z "$ac_c_werror_flag" || +- test ! -s conftest.err +- } && test -s conftest$ac_exeext && +- $as_test_x conftest$ac_exeext; then +- eval "$as_ac_var=yes" ++if ac_fn_c_try_compile "$LINENO"; then : ++ ac_cv_type_socklen_t=yes + else +- echo "$as_me: failed program was:" >&5 +-sed 's/^/| /' conftest.$ac_ext >&5 +- +- eval "$as_ac_var=no" ++ ac_cv_type_socklen_t=no + fi +- +-rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ +- conftest$ac_exeext conftest.$ac_ext ++rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext + fi +-ac_res=`eval echo '${'$as_ac_var'}'` +- { echo "$as_me:$LINENO: result: $ac_res" >&5 +-echo "${ECHO_T}$ac_res" >&6; } +-if test `eval echo '${'$as_ac_var'}'` = yes; then +- cat >>confdefs.h <<_ACEOF +-#define `echo "HAVE_$ac_func" | $as_tr_cpp` 1 +-_ACEOF ++{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_type_socklen_t" >&5 ++$as_echo "$ac_cv_type_socklen_t" >&6; } ++if test "${ac_cv_type_socklen_t}" != "no"; then ++ ++$as_echo "#define HAVE_SOCKLEN_T 1" >>confdefs.h + + fi +-done + + +-for ac_header in langinfo.h +-do +-as_ac_Header=`echo "ac_cv_header_$ac_header" | $as_tr_sh` +-if { as_var=$as_ac_Header; eval "test \"\${$as_var+set}\" = set"; }; then +- { echo "$as_me:$LINENO: checking for $ac_header" >&5 +-echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6; } +-if { as_var=$as_ac_Header; eval "test \"\${$as_var+set}\" = set"; }; then +- echo $ECHO_N "(cached) $ECHO_C" >&6 +-fi +-ac_res=`eval echo '${'$as_ac_Header'}'` +- { echo "$as_me:$LINENO: result: $ac_res" >&5 +-echo "${ECHO_T}$ac_res" >&6; } ++ ++{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for struct sockaddr_storage" >&5 ++$as_echo_n "checking for struct sockaddr_storage... " >&6; } ++if ${ac_cv_struct_sockaddr_storage+:} false; then : ++ $as_echo_n "(cached) " >&6 + else +- # Is the header compilable? +-{ echo "$as_me:$LINENO: checking $ac_header usability" >&5 +-echo $ECHO_N "checking $ac_header usability... $ECHO_C" >&6; } +-cat >conftest.$ac_ext <<_ACEOF +-/* confdefs.h. */ +-_ACEOF +-cat confdefs.h >>conftest.$ac_ext +-cat >>conftest.$ac_ext <<_ACEOF ++ cat confdefs.h - <<_ACEOF >conftest.$ac_ext + /* end confdefs.h. */ +-$ac_includes_default +-#include <$ac_header> ++#include ++ #if defined( UNDER_CE ) ++ # include ++ #elif defined( WIN32 ) ++ # include ++ #else ++ # include ++ #endif ++int ++main () ++{ ++struct sockaddr_storage addr; ++ ; ++ return 0; ++} + _ACEOF +-rm -f conftest.$ac_objext +-if { (ac_try="$ac_compile" +-case "(($ac_try" in +- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; +- *) ac_try_echo=$ac_try;; +-esac +-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 +- (eval "$ac_compile") 2>conftest.er1 +- ac_status=$? +- grep -v '^ *+' conftest.er1 >conftest.err +- rm -f conftest.er1 +- cat conftest.err >&5 +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); } && { +- test -z "$ac_c_werror_flag" || +- test ! -s conftest.err +- } && test -s conftest.$ac_objext; then +- ac_header_compiler=yes ++if ac_fn_c_try_compile "$LINENO"; then : ++ ac_cv_struct_sockaddr_storage=yes + else +- echo "$as_me: failed program was:" >&5 +-sed 's/^/| /' conftest.$ac_ext >&5 +- +- ac_header_compiler=no ++ ac_cv_struct_sockaddr_storage=no + fi +- + rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext +-{ echo "$as_me:$LINENO: result: $ac_header_compiler" >&5 +-echo "${ECHO_T}$ac_header_compiler" >&6; } +- +-# Is the header present? +-{ echo "$as_me:$LINENO: checking $ac_header presence" >&5 +-echo $ECHO_N "checking $ac_header presence... $ECHO_C" >&6; } +-cat >conftest.$ac_ext <<_ACEOF +-/* confdefs.h. */ +-_ACEOF +-cat confdefs.h >>conftest.$ac_ext +-cat >>conftest.$ac_ext <<_ACEOF +-/* end confdefs.h. */ +-#include <$ac_header> +-_ACEOF +-if { (ac_try="$ac_cpp conftest.$ac_ext" +-case "(($ac_try" in +- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; +- *) ac_try_echo=$ac_try;; +-esac +-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 +- (eval "$ac_cpp conftest.$ac_ext") 2>conftest.er1 +- ac_status=$? +- grep -v '^ *+' conftest.er1 >conftest.err +- rm -f conftest.er1 +- cat conftest.err >&5 +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); } >/dev/null && { +- test -z "$ac_c_preproc_warn_flag$ac_c_werror_flag" || +- test ! -s conftest.err +- }; then +- ac_header_preproc=yes +-else +- echo "$as_me: failed program was:" >&5 +-sed 's/^/| /' conftest.$ac_ext >&5 +- +- ac_header_preproc=no + fi ++{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_struct_sockaddr_storage" >&5 ++$as_echo "$ac_cv_struct_sockaddr_storage" >&6; } ++if test "${ac_cv_struct_sockaddr_storage}" = no; then : + +-rm -f conftest.err conftest.$ac_ext +-{ echo "$as_me:$LINENO: result: $ac_header_preproc" >&5 +-echo "${ECHO_T}$ac_header_preproc" >&6; } +- +-# So? What about this header? +-case $ac_header_compiler:$ac_header_preproc:$ac_c_preproc_warn_flag in +- yes:no: ) +- { echo "$as_me:$LINENO: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&5 +-echo "$as_me: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&2;} +- { echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the compiler's result" >&5 +-echo "$as_me: WARNING: $ac_header: proceeding with the compiler's result" >&2;} +- ac_header_preproc=yes +- ;; +- no:yes:* ) +- { echo "$as_me:$LINENO: WARNING: $ac_header: present but cannot be compiled" >&5 +-echo "$as_me: WARNING: $ac_header: present but cannot be compiled" >&2;} +- { echo "$as_me:$LINENO: WARNING: $ac_header: check for missing prerequisite headers?" >&5 +-echo "$as_me: WARNING: $ac_header: check for missing prerequisite headers?" >&2;} +- { echo "$as_me:$LINENO: WARNING: $ac_header: see the Autoconf documentation" >&5 +-echo "$as_me: WARNING: $ac_header: see the Autoconf documentation" >&2;} +- { echo "$as_me:$LINENO: WARNING: $ac_header: section \"Present But Cannot Be Compiled\"" >&5 +-echo "$as_me: WARNING: $ac_header: section \"Present But Cannot Be Compiled\"" >&2;} +- { echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the preprocessor's result" >&5 +-echo "$as_me: WARNING: $ac_header: proceeding with the preprocessor's result" >&2;} +- { echo "$as_me:$LINENO: WARNING: $ac_header: in the future, the compiler will take precedence" >&5 +-echo "$as_me: WARNING: $ac_header: in the future, the compiler will take precedence" >&2;} ++ $as_echo "#define sockaddr_storage sockaddr" >>confdefs.h + +- ;; +-esac +-{ echo "$as_me:$LINENO: checking for $ac_header" >&5 +-echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6; } +-if { as_var=$as_ac_Header; eval "test \"\${$as_var+set}\" = set"; }; then +- echo $ECHO_N "(cached) $ECHO_C" >&6 +-else +- eval "$as_ac_Header=\$ac_header_preproc" +-fi +-ac_res=`eval echo '${'$as_ac_Header'}'` +- { echo "$as_me:$LINENO: result: $ac_res" >&5 +-echo "${ECHO_T}$ac_res" >&6; } ++ $as_echo "#define ss_family sa_family" >>confdefs.h + +-fi +-if test `eval echo '${'$as_ac_Header'}'` = yes; then +- cat >>confdefs.h <<_ACEOF +-#define `echo "HAVE_$ac_header" | $as_tr_cpp` 1 +-_ACEOF + + fi + +-done +- ++LIBS_save="${LIBS}" + +-for ac_func in nl_langinfo +-do +-as_ac_var=`echo "ac_cv_func_$ac_func" | $as_tr_sh` +-{ echo "$as_me:$LINENO: checking for $ac_func" >&5 +-echo $ECHO_N "checking for $ac_func... $ECHO_C" >&6; } +-if { as_var=$as_ac_var; eval "test \"\${$as_var+set}\" = set"; }; then +- echo $ECHO_N "(cached) $ECHO_C" >&6 +-else +- cat >conftest.$ac_ext <<_ACEOF +-/* confdefs.h. */ +-_ACEOF +-cat confdefs.h >>conftest.$ac_ext +-cat >>conftest.$ac_ext <<_ACEOF ++{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for library containing getaddrinfo" >&5 ++$as_echo_n "checking for library containing getaddrinfo... " >&6; } ++if ${ac_cv_search_getaddrinfo+:} false; then : ++ $as_echo_n "(cached) " >&6 ++else ++ ac_func_search_save_LIBS=$LIBS ++cat confdefs.h - <<_ACEOF >conftest.$ac_ext + /* end confdefs.h. */ +-/* Define $ac_func to an innocuous variant, in case declares $ac_func. +- For example, HP-UX 11i declares gettimeofday. */ +-#define $ac_func innocuous_$ac_func +- +-/* System header to define __stub macros and hopefully few prototypes, +- which can conflict with char $ac_func (); below. +- Prefer to if __STDC__ is defined, since +- exists even on freestanding compilers. */ +- +-#ifdef __STDC__ +-# include +-#else +-# include +-#endif +- +-#undef $ac_func + + /* Override any GCC internal prototype to avoid an error. + Use char because int might match the return type of a GCC +@@ -27507,228 +25400,226 @@ cat >>conftest.$ac_ext <<_ACEOF + #ifdef __cplusplus + extern "C" + #endif +-char $ac_func (); +-/* The GNU C library defines this for functions which it implements +- to always fail with ENOSYS. Some functions are actually named +- something starting with __ and the normal name is an alias. */ +-#if defined __stub_$ac_func || defined __stub___$ac_func +-choke me +-#endif +- ++char getaddrinfo (); + int + main () + { +-return $ac_func (); ++return getaddrinfo (); + ; + return 0; + } + _ACEOF +-rm -f conftest.$ac_objext conftest$ac_exeext +-if { (ac_try="$ac_link" +-case "(($ac_try" in +- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; +- *) ac_try_echo=$ac_try;; +-esac +-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 +- (eval "$ac_link") 2>conftest.er1 +- ac_status=$? +- grep -v '^ *+' conftest.er1 >conftest.err +- rm -f conftest.er1 +- cat conftest.err >&5 +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); } && { +- test -z "$ac_c_werror_flag" || +- test ! -s conftest.err +- } && test -s conftest$ac_exeext && +- $as_test_x conftest$ac_exeext; then +- eval "$as_ac_var=yes" +-else +- echo "$as_me: failed program was:" >&5 +-sed 's/^/| /' conftest.$ac_ext >&5 +- +- eval "$as_ac_var=no" ++for ac_lib in '' nsl network; do ++ if test -z "$ac_lib"; then ++ ac_res="none required" ++ else ++ ac_res=-l$ac_lib ++ LIBS="-l$ac_lib ${LIBS_socket} $ac_func_search_save_LIBS" ++ fi ++ if ac_fn_c_try_link "$LINENO"; then : ++ ac_cv_search_getaddrinfo=$ac_res + fi +- +-rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ +- conftest$ac_exeext conftest.$ac_ext ++rm -f core conftest.err conftest.$ac_objext \ ++ conftest$ac_exeext ++ if ${ac_cv_search_getaddrinfo+:} false; then : ++ break + fi +-ac_res=`eval echo '${'$as_ac_var'}'` +- { echo "$as_me:$LINENO: result: $ac_res" >&5 +-echo "${ECHO_T}$ac_res" >&6; } +-if test `eval echo '${'$as_ac_var'}'` = yes; then +- cat >>confdefs.h <<_ACEOF +-#define `echo "HAVE_$ac_func" | $as_tr_cpp` 1 +-_ACEOF ++done ++if ${ac_cv_search_getaddrinfo+:} false; then : + ++else ++ ac_cv_search_getaddrinfo=no + fi +-done ++rm conftest.$ac_ext ++LIBS=$ac_func_search_save_LIBS ++fi ++{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_search_getaddrinfo" >&5 ++$as_echo "$ac_cv_search_getaddrinfo" >&6; } ++ac_res=$ac_cv_search_getaddrinfo ++if test "$ac_res" != no; then : ++ test "$ac_res" = "none required" || LIBS="$ac_res $LIBS" ++ $as_echo "#define HAVE_GETADDRINFO 1" >>confdefs.h + ++fi + +-{ echo "$as_me:$LINENO: checking for nl_langinfo and CODESET" >&5 +-echo $ECHO_N "checking for nl_langinfo and CODESET... $ECHO_C" >&6; } +-if test "${ac_cv_langinfo_codeset+set}" = set; then +- echo $ECHO_N "(cached) $ECHO_C" >&6 ++{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for library containing getaddrinfo" >&5 ++$as_echo_n "checking for library containing getaddrinfo... " >&6; } ++if ${ac_cv_search_getaddrinfo+:} false; then : ++ $as_echo_n "(cached) " >&6 + else +- cat >conftest.$ac_ext <<_ACEOF +-/* confdefs.h. */ +-_ACEOF +-cat confdefs.h >>conftest.$ac_ext +-cat >>conftest.$ac_ext <<_ACEOF ++ ac_func_search_save_LIBS=$LIBS ++cat confdefs.h - <<_ACEOF >conftest.$ac_ext + /* end confdefs.h. */ +-#include ++ ++/* Override any GCC internal prototype to avoid an error. ++ Use char because int might match the return type of a GCC ++ builtin and then its argument prototype would still apply. */ ++#ifdef __cplusplus ++extern "C" ++#endif ++char getaddrinfo (); + int + main () + { +-char* cs = nl_langinfo(CODESET); ++return getaddrinfo (); + ; + return 0; + } + _ACEOF +-rm -f conftest.$ac_objext conftest$ac_exeext +-if { (ac_try="$ac_link" +-case "(($ac_try" in +- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; +- *) ac_try_echo=$ac_try;; +-esac +-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 +- (eval "$ac_link") 2>conftest.er1 +- ac_status=$? +- grep -v '^ *+' conftest.er1 >conftest.err +- rm -f conftest.er1 +- cat conftest.err >&5 +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); } && { +- test -z "$ac_c_werror_flag" || +- test ! -s conftest.err +- } && test -s conftest$ac_exeext && +- $as_test_x conftest$ac_exeext; then +- ac_cv_langinfo_codeset=yes ++for ac_lib in '' nsl; do ++ if test -z "$ac_lib"; then ++ ac_res="none required" ++ else ++ ac_res=-l$ac_lib ++ LIBS="-l$ac_lib ${LIBS_socket} $ac_func_search_save_LIBS" ++ fi ++ if ac_fn_c_try_link "$LINENO"; then : ++ ac_cv_search_getaddrinfo=$ac_res ++fi ++rm -f core conftest.err conftest.$ac_objext \ ++ conftest$ac_exeext ++ if ${ac_cv_search_getaddrinfo+:} false; then : ++ break ++fi ++done ++if ${ac_cv_search_getaddrinfo+:} false; then : ++ + else +- echo "$as_me: failed program was:" >&5 +-sed 's/^/| /' conftest.$ac_ext >&5 ++ ac_cv_search_getaddrinfo=no ++fi ++rm conftest.$ac_ext ++LIBS=$ac_func_search_save_LIBS ++fi ++{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_search_getaddrinfo" >&5 ++$as_echo "$ac_cv_search_getaddrinfo" >&6; } ++ac_res=$ac_cv_search_getaddrinfo ++if test "$ac_res" != no; then : ++ test "$ac_res" = "none required" || LIBS="$ac_res $LIBS" ++ $as_echo "#define HAVE_GETADDRINFO 1" >>confdefs.h + +- ac_cv_langinfo_codeset=no + fi + +-rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ +- conftest$ac_exeext conftest.$ac_ext + +-fi +-{ echo "$as_me:$LINENO: result: $ac_cv_langinfo_codeset" >&5 +-echo "${ECHO_T}$ac_cv_langinfo_codeset" >&6; } +-if test ${ac_cv_langinfo_codeset} = yes; then + +-cat >>confdefs.h <<\_ACEOF +-#define HAVE_LANGINFO_CODESET 1 ++LIBS="${LIBS_gai}" ++for ac_func in getnameinfo gai_strerror ++do : ++ as_ac_var=`$as_echo "ac_cv_func_$ac_func" | $as_tr_sh` ++ac_fn_c_check_func "$LINENO" "$ac_func" "$as_ac_var" ++if eval test \"x\$"$as_ac_var"\" = x"yes"; then : ++ cat >>confdefs.h <<_ACEOF ++#define `$as_echo "HAVE_$ac_func" | $as_tr_cpp` 1 + _ACEOF + + fi ++done + ++LIBS="${LIBS_save}" + +-for ac_func in connect +-do +-as_ac_var=`echo "ac_cv_func_$ac_func" | $as_tr_sh` +-{ echo "$as_me:$LINENO: checking for $ac_func" >&5 +-echo $ECHO_N "checking for $ac_func... $ECHO_C" >&6; } +-if { as_var=$as_ac_var; eval "test \"\${$as_var+set}\" = set"; }; then +- echo $ECHO_N "(cached) $ECHO_C" >&6 +-else +- cat >conftest.$ac_ext <<_ACEOF +-/* confdefs.h. */ +-_ACEOF +-cat confdefs.h >>conftest.$ac_ext +-cat >>conftest.$ac_ext <<_ACEOF +-/* end confdefs.h. */ +-/* Define $ac_func to an innocuous variant, in case declares $ac_func. +- For example, HP-UX 11i declares gettimeofday. */ +-#define $ac_func innocuous_$ac_func +- +-/* System header to define __stub macros and hopefully few prototypes, +- which can conflict with char $ac_func (); below. +- Prefer to if __STDC__ is defined, since +- exists even on freestanding compilers. */ + +-#ifdef __STDC__ +-# include ++ac_fn_c_check_type "$LINENO" "struct addrinfo" "ac_cv_type_struct_addrinfo" "#include ++#if defined( WIN32 ) || defined( UNDER_CE ) ++# if defined(UNDER_CE) && defined(sockaddr_storage) ++# undef sockaddr_storage ++# endif ++# include ++# include + #else +-# include ++# include + #endif ++" ++if test "x$ac_cv_type_struct_addrinfo" = xyes; then : + +-#undef $ac_func ++cat >>confdefs.h <<_ACEOF ++#define HAVE_STRUCT_ADDRINFO 1 ++_ACEOF ++ ++$as_echo "#define HAVE_ADDRINFO 1" >>confdefs.h ++ ++fi + +-/* Override any GCC internal prototype to avoid an error. +- Use char because int might match the return type of a GCC +- builtin and then its argument prototype would still apply. */ +-#ifdef __cplusplus +-extern "C" +-#endif +-char $ac_func (); +-/* The GNU C library defines this for functions which it implements +- to always fail with ENOSYS. Some functions are actually named +- something starting with __ and the normal name is an alias. */ +-#if defined __stub_$ac_func || defined __stub___$ac_func +-choke me +-#endif + ++{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for va_copy" >&5 ++$as_echo_n "checking for va_copy... " >&6; } ++if ${ac_cv_c_va_copy+:} false; then : ++ $as_echo_n "(cached) " >&6 ++else ++ cat confdefs.h - <<_ACEOF >conftest.$ac_ext ++/* end confdefs.h. */ ++#include + int + main () + { +-return $ac_func (); ++va_list ap1, ap2; va_copy(ap1,ap2); + ; + return 0; + } + _ACEOF +-rm -f conftest.$ac_objext conftest$ac_exeext +-if { (ac_try="$ac_link" +-case "(($ac_try" in +- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; +- *) ac_try_echo=$ac_try;; +-esac +-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 +- (eval "$ac_link") 2>conftest.er1 +- ac_status=$? +- grep -v '^ *+' conftest.er1 >conftest.err +- rm -f conftest.er1 +- cat conftest.err >&5 +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); } && { +- test -z "$ac_c_werror_flag" || +- test ! -s conftest.err +- } && test -s conftest$ac_exeext && +- $as_test_x conftest$ac_exeext; then +- eval "$as_ac_var=yes" ++if ac_fn_c_try_link "$LINENO"; then : ++ ac_cv_c_va_copy="yes" + else +- echo "$as_me: failed program was:" >&5 +-sed 's/^/| /' conftest.$ac_ext >&5 ++ ac_cv_c_va_copy="no" ++fi ++rm -f core conftest.err conftest.$ac_objext \ ++ conftest$ac_exeext conftest.$ac_ext ++fi ++{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_c_va_copy" >&5 ++$as_echo "$ac_cv_c_va_copy" >&6; } ++if test "${ac_cv_c_va_copy}" = "yes"; then + +- eval "$as_ac_var=no" ++$as_echo "#define HAVE_VA_COPY 1" >>confdefs.h ++ ++fi ++{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for __va_copy" >&5 ++$as_echo_n "checking for __va_copy... " >&6; } ++if ${ac_cv_c___va_copy+:} false; then : ++ $as_echo_n "(cached) " >&6 ++else ++ cat confdefs.h - <<_ACEOF >conftest.$ac_ext ++/* end confdefs.h. */ ++#include ++int ++main () ++{ ++va_list ap1, ap2; __va_copy(ap1,ap2); ++ ; ++ return 0; ++} ++_ACEOF ++if ac_fn_c_try_link "$LINENO"; then : ++ ac_cv_c___va_copy="yes" ++else ++ ac_cv_c___va_copy="no" ++fi ++rm -f core conftest.err conftest.$ac_objext \ ++ conftest$ac_exeext conftest.$ac_ext + fi ++{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_c___va_copy" >&5 ++$as_echo "$ac_cv_c___va_copy" >&6; } ++if test "${ac_cv_c___va_copy}" = "yes"; then ++ ++$as_echo "#define HAVE___VA_COPY 1" >>confdefs.h + +-rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ +- conftest$ac_exeext conftest.$ac_ext + fi +-ac_res=`eval echo '${'$as_ac_var'}'` +- { echo "$as_me:$LINENO: result: $ac_res" >&5 +-echo "${ECHO_T}$ac_res" >&6; } +-if test `eval echo '${'$as_ac_var'}'` = yes; then ++ ++for ac_func in inet_aton ++do : ++ ac_fn_c_check_func "$LINENO" "inet_aton" "ac_cv_func_inet_aton" ++if test "x$ac_cv_func_inet_aton" = xyes; then : + cat >>confdefs.h <<_ACEOF +-#define `echo "HAVE_$ac_func" | $as_tr_cpp` 1 ++#define HAVE_INET_ATON 1 + _ACEOF + + else + +- { echo "$as_me:$LINENO: checking for connect in -lsocket" >&5 +-echo $ECHO_N "checking for connect in -lsocket... $ECHO_C" >&6; } +-if test "${ac_cv_lib_socket_connect+set}" = set; then +- echo $ECHO_N "(cached) $ECHO_C" >&6 ++ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for inet_aton in -lresolv" >&5 ++$as_echo_n "checking for inet_aton in -lresolv... " >&6; } ++if ${ac_cv_lib_resolv_inet_aton+:} false; then : ++ $as_echo_n "(cached) " >&6 + else + ac_check_lib_save_LIBS=$LIBS +-LIBS="-lsocket $LIBS" +-cat >conftest.$ac_ext <<_ACEOF +-/* confdefs.h. */ +-_ACEOF +-cat confdefs.h >>conftest.$ac_ext +-cat >>conftest.$ac_ext <<_ACEOF ++LIBS="-lresolv $LIBS" ++cat confdefs.h - <<_ACEOF >conftest.$ac_ext + /* end confdefs.h. */ + + /* Override any GCC internal prototype to avoid an error. +@@ -27737,56 +25628,34 @@ cat >>conftest.$ac_ext <<_ACEOF + #ifdef __cplusplus + extern "C" + #endif +-char connect (); ++char inet_aton (); + int + main () + { +-return connect (); ++return inet_aton (); + ; + return 0; + } + _ACEOF +-rm -f conftest.$ac_objext conftest$ac_exeext +-if { (ac_try="$ac_link" +-case "(($ac_try" in +- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; +- *) ac_try_echo=$ac_try;; +-esac +-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 +- (eval "$ac_link") 2>conftest.er1 +- ac_status=$? +- grep -v '^ *+' conftest.er1 >conftest.err +- rm -f conftest.er1 +- cat conftest.err >&5 +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); } && { +- test -z "$ac_c_werror_flag" || +- test ! -s conftest.err +- } && test -s conftest$ac_exeext && +- $as_test_x conftest$ac_exeext; then +- ac_cv_lib_socket_connect=yes ++if ac_fn_c_try_link "$LINENO"; then : ++ ac_cv_lib_resolv_inet_aton=yes + else +- echo "$as_me: failed program was:" >&5 +-sed 's/^/| /' conftest.$ac_ext >&5 +- +- ac_cv_lib_socket_connect=no ++ ac_cv_lib_resolv_inet_aton=no + fi +- +-rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ +- conftest$ac_exeext conftest.$ac_ext ++rm -f core conftest.err conftest.$ac_objext \ ++ conftest$ac_exeext conftest.$ac_ext + LIBS=$ac_check_lib_save_LIBS + fi +-{ echo "$as_me:$LINENO: result: $ac_cv_lib_socket_connect" >&5 +-echo "${ECHO_T}$ac_cv_lib_socket_connect" >&6; } +-if test $ac_cv_lib_socket_connect = yes; then ++{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_resolv_inet_aton" >&5 ++$as_echo "$ac_cv_lib_resolv_inet_aton" >&6; } ++if test "x$ac_cv_lib_resolv_inet_aton" = xyes; then : + + +- for element in vlc ipv4 ipv6 cdda cddax; do +- eval "LDFLAGS_${element}="'"'"-lsocket "'$'"{LDFLAGS_${element}} "'"' ++ for element in ipv4 vlc; do ++ eval "LDFLAGS_${element}="'"'"-lresolv "'$'"{LDFLAGS_${element}} "'"' + am_modules_with_ldflags="${am_modules_with_ldflags} ${element}" + done + +- LIBS_socket="-lsocket" + + fi + +@@ -27795,37 +25664,31 @@ fi + done + + +- +-for ac_func in send +-do +-as_ac_var=`echo "ac_cv_func_$ac_func" | $as_tr_sh` +-{ echo "$as_me:$LINENO: checking for $ac_func" >&5 +-echo $ECHO_N "checking for $ac_func... $ECHO_C" >&6; } +-if { as_var=$as_ac_var; eval "test \"\${$as_var+set}\" = set"; }; then +- echo $ECHO_N "(cached) $ECHO_C" >&6 +-else +- cat >conftest.$ac_ext <<_ACEOF +-/* confdefs.h. */ ++if test "${SYS}" = "mingw32" -o "${SYS}" = "mingwce"; then ++need_getopt=: ++else ++need_getopt=false ++for ac_func in getopt_long ++do : ++ ac_fn_c_check_func "$LINENO" "getopt_long" "ac_cv_func_getopt_long" ++if test "x$ac_cv_func_getopt_long" = xyes; then : ++ cat >>confdefs.h <<_ACEOF ++#define HAVE_GETOPT_LONG 1 + _ACEOF +-cat confdefs.h >>conftest.$ac_ext +-cat >>conftest.$ac_ext <<_ACEOF +-/* end confdefs.h. */ +-/* Define $ac_func to an innocuous variant, in case declares $ac_func. +- For example, HP-UX 11i declares gettimeofday. */ +-#define $ac_func innocuous_$ac_func +- +-/* System header to define __stub macros and hopefully few prototypes, +- which can conflict with char $ac_func (); below. +- Prefer to if __STDC__ is defined, since +- exists even on freestanding compilers. */ + +-#ifdef __STDC__ +-# include +-#else +-# include +-#endif ++$as_echo "#define HAVE_GETOPT_LONG 1" >>confdefs.h + +-#undef $ac_func ++else ++ # FreeBSD has a gnugetopt library for this: ++ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for getopt_long in -lgnugetopt" >&5 ++$as_echo_n "checking for getopt_long in -lgnugetopt... " >&6; } ++if ${ac_cv_lib_gnugetopt_getopt_long+:} false; then : ++ $as_echo_n "(cached) " >&6 ++else ++ ac_check_lib_save_LIBS=$LIBS ++LIBS="-lgnugetopt $LIBS" ++cat confdefs.h - <<_ACEOF >conftest.$ac_ext ++/* end confdefs.h. */ + + /* Override any GCC internal prototype to avoid an error. + Use char because int might match the return type of a GCC +@@ -27833,73 +25696,97 @@ cat >>conftest.$ac_ext <<_ACEOF + #ifdef __cplusplus + extern "C" + #endif +-char $ac_func (); +-/* The GNU C library defines this for functions which it implements +- to always fail with ENOSYS. Some functions are actually named +- something starting with __ and the normal name is an alias. */ +-#if defined __stub_$ac_func || defined __stub___$ac_func +-choke me +-#endif +- ++char getopt_long (); + int + main () + { +-return $ac_func (); ++return getopt_long (); + ; + return 0; + } + _ACEOF +-rm -f conftest.$ac_objext conftest$ac_exeext +-if { (ac_try="$ac_link" +-case "(($ac_try" in +- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; +- *) ac_try_echo=$ac_try;; +-esac +-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 +- (eval "$ac_link") 2>conftest.er1 +- ac_status=$? +- grep -v '^ *+' conftest.er1 >conftest.err +- rm -f conftest.er1 +- cat conftest.err >&5 +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); } && { +- test -z "$ac_c_werror_flag" || +- test ! -s conftest.err +- } && test -s conftest$ac_exeext && +- $as_test_x conftest$ac_exeext; then +- eval "$as_ac_var=yes" ++if ac_fn_c_try_link "$LINENO"; then : ++ ac_cv_lib_gnugetopt_getopt_long=yes + else +- echo "$as_me: failed program was:" >&5 +-sed 's/^/| /' conftest.$ac_ext >&5 ++ ac_cv_lib_gnugetopt_getopt_long=no ++fi ++rm -f core conftest.err conftest.$ac_objext \ ++ conftest$ac_exeext conftest.$ac_ext ++LIBS=$ac_check_lib_save_LIBS ++fi ++{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_gnugetopt_getopt_long" >&5 ++$as_echo "$ac_cv_lib_gnugetopt_getopt_long" >&6; } ++if test "x$ac_cv_lib_gnugetopt_getopt_long" = xyes; then : ++ ++$as_echo "#define HAVE_GETOPT_LONG 1" >>confdefs.h + +- eval "$as_ac_var=no" ++ ++ for element in vlc; do ++ eval "LDFLAGS_${element}="'"'"-lgnugetopt "'$'"{LDFLAGS_${element}} "'"' ++ am_modules_with_ldflags="${am_modules_with_ldflags} ${element}" ++ done ++ ++else ++ need_getopt=: + fi + +-rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ +- conftest$ac_exeext conftest.$ac_ext + fi +-ac_res=`eval echo '${'$as_ac_var'}'` +- { echo "$as_me:$LINENO: result: $ac_res" >&5 +-echo "${ECHO_T}$ac_res" >&6; } +-if test `eval echo '${'$as_ac_var'}'` = yes; then +- cat >>confdefs.h <<_ACEOF +-#define `echo "HAVE_$ac_func" | $as_tr_cpp` 1 +-_ACEOF ++done ++ ++fi ++ + ++if ${need_getopt}; then ++ BUILD_GETOPT_TRUE= ++ BUILD_GETOPT_FALSE='#' + else ++ BUILD_GETOPT_TRUE='#' ++ BUILD_GETOPT_FALSE= ++fi + +- { echo "$as_me:$LINENO: checking for send in -lsocket" >&5 +-echo $ECHO_N "checking for send in -lsocket... $ECHO_C" >&6; } +-if test "${ac_cv_lib_socket_send+set}" = set; then +- echo $ECHO_N "(cached) $ECHO_C" >&6 ++ ++if test "${SYS}" != "mingw32" -a "${SYS}" != "mingwce"; then ++{ $as_echo "$as_me:${as_lineno-$LINENO}: checking return type of signal handlers" >&5 ++$as_echo_n "checking return type of signal handlers... " >&6; } ++if ${ac_cv_type_signal+:} false; then : ++ $as_echo_n "(cached) " >&6 + else +- ac_check_lib_save_LIBS=$LIBS +-LIBS="-lsocket $LIBS" +-cat >conftest.$ac_ext <<_ACEOF +-/* confdefs.h. */ ++ cat confdefs.h - <<_ACEOF >conftest.$ac_ext ++/* end confdefs.h. */ ++#include ++#include ++ ++int ++main () ++{ ++return *(signal (0, 0)) (0) == 1; ++ ; ++ return 0; ++} ++_ACEOF ++if ac_fn_c_try_compile "$LINENO"; then : ++ ac_cv_type_signal=int ++else ++ ac_cv_type_signal=void ++fi ++rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext ++fi ++{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_type_signal" >&5 ++$as_echo "$ac_cv_type_signal" >&6; } ++ ++cat >>confdefs.h <<_ACEOF ++#define RETSIGTYPE $ac_cv_type_signal + _ACEOF +-cat confdefs.h >>conftest.$ac_ext +-cat >>conftest.$ac_ext <<_ACEOF ++ ++ ++{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for cos in -lm" >&5 ++$as_echo_n "checking for cos in -lm... " >&6; } ++if ${ac_cv_lib_m_cos+:} false; then : ++ $as_echo_n "(cached) " >&6 ++else ++ ac_check_lib_save_LIBS=$LIBS ++LIBS="-lm $LIBS" ++cat confdefs.h - <<_ACEOF >conftest.$ac_ext + /* end confdefs.h. */ + + /* Override any GCC internal prototype to avoid an error. +@@ -27908,94 +25795,46 @@ cat >>conftest.$ac_ext <<_ACEOF + #ifdef __cplusplus + extern "C" + #endif +-char send (); ++char cos (); + int + main () + { +-return send (); ++return cos (); + ; + return 0; + } + _ACEOF +-rm -f conftest.$ac_objext conftest$ac_exeext +-if { (ac_try="$ac_link" +-case "(($ac_try" in +- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; +- *) ac_try_echo=$ac_try;; +-esac +-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 +- (eval "$ac_link") 2>conftest.er1 +- ac_status=$? +- grep -v '^ *+' conftest.er1 >conftest.err +- rm -f conftest.er1 +- cat conftest.err >&5 +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); } && { +- test -z "$ac_c_werror_flag" || +- test ! -s conftest.err +- } && test -s conftest$ac_exeext && +- $as_test_x conftest$ac_exeext; then +- ac_cv_lib_socket_send=yes ++if ac_fn_c_try_link "$LINENO"; then : ++ ac_cv_lib_m_cos=yes + else +- echo "$as_me: failed program was:" >&5 +-sed 's/^/| /' conftest.$ac_ext >&5 +- +- ac_cv_lib_socket_send=no ++ ac_cv_lib_m_cos=no + fi +- +-rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ +- conftest$ac_exeext conftest.$ac_ext ++rm -f core conftest.err conftest.$ac_objext \ ++ conftest$ac_exeext conftest.$ac_ext + LIBS=$ac_check_lib_save_LIBS + fi +-{ echo "$as_me:$LINENO: result: $ac_cv_lib_socket_send" >&5 +-echo "${ECHO_T}$ac_cv_lib_socket_send" >&6; } +-if test $ac_cv_lib_socket_send = yes; then ++{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_m_cos" >&5 ++$as_echo "$ac_cv_lib_m_cos" >&6; } ++if test "x$ac_cv_lib_m_cos" = xyes; then : + + +- for element in access_http access_mms access_udp access_tcp access_ftp sap access_output_udp stream_out_standard growl; do +- eval "LDFLAGS_${element}="'"'"-lsocket "'$'"{LDFLAGS_${element}} "'"' ++ for element in adjust distort a52tofloat32 dtstofloat32 x264 goom visual opengl; do ++ eval "LDFLAGS_${element}="'"'"-lm "'$'"{LDFLAGS_${element}} "'"' + am_modules_with_ldflags="${am_modules_with_ldflags} ${element}" + done + + + fi + +- +-fi +-done +- +- +- +-for ac_func in gethostbyname +-do +-as_ac_var=`echo "ac_cv_func_$ac_func" | $as_tr_sh` +-{ echo "$as_me:$LINENO: checking for $ac_func" >&5 +-echo $ECHO_N "checking for $ac_func... $ECHO_C" >&6; } +-if { as_var=$as_ac_var; eval "test \"\${$as_var+set}\" = set"; }; then +- echo $ECHO_N "(cached) $ECHO_C" >&6 +-else +- cat >conftest.$ac_ext <<_ACEOF +-/* confdefs.h. */ +-_ACEOF +-cat confdefs.h >>conftest.$ac_ext +-cat >>conftest.$ac_ext <<_ACEOF ++{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for pow in -lm" >&5 ++$as_echo_n "checking for pow in -lm... " >&6; } ++if ${ac_cv_lib_m_pow+:} false; then : ++ $as_echo_n "(cached) " >&6 ++else ++ ac_check_lib_save_LIBS=$LIBS ++LIBS="-lm $LIBS" ++cat confdefs.h - <<_ACEOF >conftest.$ac_ext + /* end confdefs.h. */ +-/* Define $ac_func to an innocuous variant, in case declares $ac_func. +- For example, HP-UX 11i declares gettimeofday. */ +-#define $ac_func innocuous_$ac_func +- +-/* System header to define __stub macros and hopefully few prototypes, +- which can conflict with char $ac_func (); below. +- Prefer to if __STDC__ is defined, since +- exists even on freestanding compilers. */ +- +-#ifdef __STDC__ +-# include +-#else +-# include +-#endif +- +-#undef $ac_func + + /* Override any GCC internal prototype to avoid an error. + Use char because int might match the return type of a GCC +@@ -28003,73 +25842,45 @@ cat >>conftest.$ac_ext <<_ACEOF + #ifdef __cplusplus + extern "C" + #endif +-char $ac_func (); +-/* The GNU C library defines this for functions which it implements +- to always fail with ENOSYS. Some functions are actually named +- something starting with __ and the normal name is an alias. */ +-#if defined __stub_$ac_func || defined __stub___$ac_func +-choke me +-#endif +- ++char pow (); + int + main () + { +-return $ac_func (); ++return pow (); + ; + return 0; + } + _ACEOF +-rm -f conftest.$ac_objext conftest$ac_exeext +-if { (ac_try="$ac_link" +-case "(($ac_try" in +- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; +- *) ac_try_echo=$ac_try;; +-esac +-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 +- (eval "$ac_link") 2>conftest.er1 +- ac_status=$? +- grep -v '^ *+' conftest.er1 >conftest.err +- rm -f conftest.er1 +- cat conftest.err >&5 +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); } && { +- test -z "$ac_c_werror_flag" || +- test ! -s conftest.err +- } && test -s conftest$ac_exeext && +- $as_test_x conftest$ac_exeext; then +- eval "$as_ac_var=yes" ++if ac_fn_c_try_link "$LINENO"; then : ++ ac_cv_lib_m_pow=yes + else +- echo "$as_me: failed program was:" >&5 +-sed 's/^/| /' conftest.$ac_ext >&5 +- +- eval "$as_ac_var=no" ++ ac_cv_lib_m_pow=no + fi +- +-rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ +- conftest$ac_exeext conftest.$ac_ext ++rm -f core conftest.err conftest.$ac_objext \ ++ conftest$ac_exeext conftest.$ac_ext ++LIBS=$ac_check_lib_save_LIBS + fi +-ac_res=`eval echo '${'$as_ac_var'}'` +- { echo "$as_me:$LINENO: result: $ac_res" >&5 +-echo "${ECHO_T}$ac_res" >&6; } +-if test `eval echo '${'$as_ac_var'}'` = yes; then +- cat >>confdefs.h <<_ACEOF +-#define `echo "HAVE_$ac_func" | $as_tr_cpp` 1 +-_ACEOF ++{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_m_pow" >&5 ++$as_echo "$ac_cv_lib_m_pow" >&6; } ++if test "x$ac_cv_lib_m_pow" = xyes; then : + +-else + +- { echo "$as_me:$LINENO: checking for gethostbyname in -lnsl" >&5 +-echo $ECHO_N "checking for gethostbyname in -lnsl... $ECHO_C" >&6; } +-if test "${ac_cv_lib_nsl_gethostbyname+set}" = set; then +- echo $ECHO_N "(cached) $ECHO_C" >&6 ++ for element in ffmpeg ffmpegaltivec stream_out_transrate i420_rgb faad twolame equalizer param_eq vlc freetype mpc dmo quicktime realaudio galaktos; do ++ eval "LDFLAGS_${element}="'"'"-lm "'$'"{LDFLAGS_${element}} "'"' ++ am_modules_with_ldflags="${am_modules_with_ldflags} ${element}" ++ done ++ ++ ++fi ++ ++{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for sqrt in -lm" >&5 ++$as_echo_n "checking for sqrt in -lm... " >&6; } ++if ${ac_cv_lib_m_sqrt+:} false; then : ++ $as_echo_n "(cached) " >&6 + else + ac_check_lib_save_LIBS=$LIBS +-LIBS="-lnsl $LIBS" +-cat >conftest.$ac_ext <<_ACEOF +-/* confdefs.h. */ +-_ACEOF +-cat confdefs.h >>conftest.$ac_ext +-cat >>conftest.$ac_ext <<_ACEOF ++LIBS="-lm $LIBS" ++cat confdefs.h - <<_ACEOF >conftest.$ac_ext + /* end confdefs.h. */ + + /* Override any GCC internal prototype to avoid an error. +@@ -28078,70 +25889,45 @@ cat >>conftest.$ac_ext <<_ACEOF + #ifdef __cplusplus + extern "C" + #endif +-char gethostbyname (); ++char sqrt (); + int + main () + { +-return gethostbyname (); ++return sqrt (); + ; + return 0; + } + _ACEOF +-rm -f conftest.$ac_objext conftest$ac_exeext +-if { (ac_try="$ac_link" +-case "(($ac_try" in +- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; +- *) ac_try_echo=$ac_try;; +-esac +-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 +- (eval "$ac_link") 2>conftest.er1 +- ac_status=$? +- grep -v '^ *+' conftest.er1 >conftest.err +- rm -f conftest.er1 +- cat conftest.err >&5 +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); } && { +- test -z "$ac_c_werror_flag" || +- test ! -s conftest.err +- } && test -s conftest$ac_exeext && +- $as_test_x conftest$ac_exeext; then +- ac_cv_lib_nsl_gethostbyname=yes ++if ac_fn_c_try_link "$LINENO"; then : ++ ac_cv_lib_m_sqrt=yes + else +- echo "$as_me: failed program was:" >&5 +-sed 's/^/| /' conftest.$ac_ext >&5 +- +- ac_cv_lib_nsl_gethostbyname=no ++ ac_cv_lib_m_sqrt=no + fi +- +-rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ +- conftest$ac_exeext conftest.$ac_ext ++rm -f core conftest.err conftest.$ac_objext \ ++ conftest$ac_exeext conftest.$ac_ext + LIBS=$ac_check_lib_save_LIBS + fi +-{ echo "$as_me:$LINENO: result: $ac_cv_lib_nsl_gethostbyname" >&5 +-echo "${ECHO_T}$ac_cv_lib_nsl_gethostbyname" >&6; } +-if test $ac_cv_lib_nsl_gethostbyname = yes; then ++{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_m_sqrt" >&5 ++$as_echo "$ac_cv_lib_m_sqrt" >&6; } ++if test "x$ac_cv_lib_m_sqrt" = xyes; then : + + +- for element in cdda cddax ipv4 ipv6 vlc; do +- eval "LDFLAGS_${element}="'"'"-lnsl "'$'"{LDFLAGS_${element}} "'"' ++ for element in headphone_channel_mixer normvol speex; do ++ eval "LDFLAGS_${element}="'"'"-lm "'$'"{LDFLAGS_${element}} "'"' + am_modules_with_ldflags="${am_modules_with_ldflags} ${element}" + done + + +-else ++fi + +- { echo "$as_me:$LINENO: checking for gethostbyname in -lbind" >&5 +-echo $ECHO_N "checking for gethostbyname in -lbind... $ECHO_C" >&6; } +-if test "${ac_cv_lib_bind_gethostbyname+set}" = set; then +- echo $ECHO_N "(cached) $ECHO_C" >&6 ++{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for ceil in -lm" >&5 ++$as_echo_n "checking for ceil in -lm... " >&6; } ++if ${ac_cv_lib_m_ceil+:} false; then : ++ $as_echo_n "(cached) " >&6 + else + ac_check_lib_save_LIBS=$LIBS +-LIBS="-lbind $LIBS" +-cat >conftest.$ac_ext <<_ACEOF +-/* confdefs.h. */ +-_ACEOF +-cat confdefs.h >>conftest.$ac_ext +-cat >>conftest.$ac_ext <<_ACEOF ++LIBS="-lm $LIBS" ++cat confdefs.h - <<_ACEOF >conftest.$ac_ext + /* end confdefs.h. */ + + /* Override any GCC internal prototype to avoid an error. +@@ -28150,212 +25936,141 @@ cat >>conftest.$ac_ext <<_ACEOF + #ifdef __cplusplus + extern "C" + #endif +-char gethostbyname (); ++char ceil (); + int + main () + { +-return gethostbyname (); ++return ceil (); + ; + return 0; + } + _ACEOF +-rm -f conftest.$ac_objext conftest$ac_exeext +-if { (ac_try="$ac_link" +-case "(($ac_try" in +- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; +- *) ac_try_echo=$ac_try;; +-esac +-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 +- (eval "$ac_link") 2>conftest.er1 +- ac_status=$? +- grep -v '^ *+' conftest.er1 >conftest.err +- rm -f conftest.er1 +- cat conftest.err >&5 +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); } && { +- test -z "$ac_c_werror_flag" || +- test ! -s conftest.err +- } && test -s conftest$ac_exeext && +- $as_test_x conftest$ac_exeext; then +- ac_cv_lib_bind_gethostbyname=yes ++if ac_fn_c_try_link "$LINENO"; then : ++ ac_cv_lib_m_ceil=yes + else +- echo "$as_me: failed program was:" >&5 +-sed 's/^/| /' conftest.$ac_ext >&5 +- +- ac_cv_lib_bind_gethostbyname=no ++ ac_cv_lib_m_ceil=no + fi +- +-rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ +- conftest$ac_exeext conftest.$ac_ext ++rm -f core conftest.err conftest.$ac_objext \ ++ conftest$ac_exeext conftest.$ac_ext + LIBS=$ac_check_lib_save_LIBS + fi +-{ echo "$as_me:$LINENO: result: $ac_cv_lib_bind_gethostbyname" >&5 +-echo "${ECHO_T}$ac_cv_lib_bind_gethostbyname" >&6; } +-if test $ac_cv_lib_bind_gethostbyname = yes; then ++{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_m_ceil" >&5 ++$as_echo "$ac_cv_lib_m_ceil" >&6; } ++if test "x$ac_cv_lib_m_ceil" = xyes; then : + + +- for element in ipv4 access_mms; do +- eval "LDFLAGS_${element}="'"'"-lbind "'$'"{LDFLAGS_${element}} "'"' ++ for element in mosaic; do ++ eval "LDFLAGS_${element}="'"'"-lm "'$'"{LDFLAGS_${element}} "'"' + am_modules_with_ldflags="${am_modules_with_ldflags} ${element}" + done + + + fi + +- +-fi +- +- +-fi +-done +- +- +-{ echo "$as_me:$LINENO: checking for socklen_t" >&5 +-echo $ECHO_N "checking for socklen_t... $ECHO_C" >&6; } +-if test "${ac_cv_type_socklen_t+set}" = set; then +- echo $ECHO_N "(cached) $ECHO_C" >&6 ++{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for sqrtf in -lmx" >&5 ++$as_echo_n "checking for sqrtf in -lmx... " >&6; } ++if ${ac_cv_lib_mx_sqrtf+:} false; then : ++ $as_echo_n "(cached) " >&6 + else +- cat >conftest.$ac_ext <<_ACEOF +-/* confdefs.h. */ +-_ACEOF +-cat confdefs.h >>conftest.$ac_ext +-cat >>conftest.$ac_ext <<_ACEOF ++ ac_check_lib_save_LIBS=$LIBS ++LIBS="-lmx $LIBS" ++cat confdefs.h - <<_ACEOF >conftest.$ac_ext + /* end confdefs.h. */ +-#include +- #include ++ ++/* Override any GCC internal prototype to avoid an error. ++ Use char because int might match the return type of a GCC ++ builtin and then its argument prototype would still apply. */ ++#ifdef __cplusplus ++extern "C" ++#endif ++char sqrtf (); + int + main () + { +-socklen_t len = 42; return len; ++return sqrtf (); + ; + return 0; + } + _ACEOF +-rm -f conftest.$ac_objext +-if { (ac_try="$ac_compile" +-case "(($ac_try" in +- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; +- *) ac_try_echo=$ac_try;; +-esac +-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 +- (eval "$ac_compile") 2>conftest.er1 +- ac_status=$? +- grep -v '^ *+' conftest.er1 >conftest.err +- rm -f conftest.er1 +- cat conftest.err >&5 +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); } && { +- test -z "$ac_c_werror_flag" || +- test ! -s conftest.err +- } && test -s conftest.$ac_objext; then +- ac_cv_type_socklen_t=yes ++if ac_fn_c_try_link "$LINENO"; then : ++ ac_cv_lib_mx_sqrtf=yes + else +- echo "$as_me: failed program was:" >&5 +-sed 's/^/| /' conftest.$ac_ext >&5 +- +- ac_cv_type_socklen_t=no ++ ac_cv_lib_mx_sqrtf=no + fi +- +-rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext ++rm -f core conftest.err conftest.$ac_objext \ ++ conftest$ac_exeext conftest.$ac_ext ++LIBS=$ac_check_lib_save_LIBS + fi +-{ echo "$as_me:$LINENO: result: $ac_cv_type_socklen_t" >&5 +-echo "${ECHO_T}$ac_cv_type_socklen_t" >&6; } +-if test "${ac_cv_type_socklen_t}" != "no"; then ++{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_mx_sqrtf" >&5 ++$as_echo "$ac_cv_lib_mx_sqrtf" >&6; } ++if test "x$ac_cv_lib_mx_sqrtf" = xyes; then : + +-cat >>confdefs.h <<\_ACEOF +-#define HAVE_SOCKLEN_T 1 +-_ACEOF + +-fi ++ for element in x264; do ++ eval "LDFLAGS_${element}="'"'"-lmx "'$'"{LDFLAGS_${element}} "'"' ++ am_modules_with_ldflags="${am_modules_with_ldflags} ${element}" ++ done + + ++fi + ++fi # end "${SYS}" != "mingw32" -a "${SYS}" != "mingwce" + ++ac_cv_have_plugins=no + +-{ echo "$as_me:$LINENO: checking for struct sockaddr_storage" >&5 +-echo $ECHO_N "checking for struct sockaddr_storage... $ECHO_C" >&6; } +-if test "${ac_cv_struct_sockaddr_storage+set}" = set; then +- echo $ECHO_N "(cached) $ECHO_C" >&6 +-else +- cat >conftest.$ac_ext <<_ACEOF +-/* confdefs.h. */ ++# OS X style ++for ac_header in mach-o/dyld.h ++do : ++ ac_fn_c_check_header_mongrel "$LINENO" "mach-o/dyld.h" "ac_cv_header_mach_o_dyld_h" "$ac_includes_default" ++if test "x$ac_cv_header_mach_o_dyld_h" = xyes; then : ++ cat >>confdefs.h <<_ACEOF ++#define HAVE_MACH_O_DYLD_H 1 + _ACEOF +-cat confdefs.h >>conftest.$ac_ext +-cat >>conftest.$ac_ext <<_ACEOF +-/* end confdefs.h. */ +-#include +- #if defined( UNDER_CE ) +- # include +- #elif defined( WIN32 ) +- # include +- #else +- # include +- #endif +-int +-main () +-{ +-struct sockaddr_storage addr; +- ; +- return 0; +-} ++ for ac_func in NSLinkModule ++do : ++ ac_fn_c_check_func "$LINENO" "NSLinkModule" "ac_cv_func_NSLinkModule" ++if test "x$ac_cv_func_NSLinkModule" = xyes; then : ++ cat >>confdefs.h <<_ACEOF ++#define HAVE_NSLINKMODULE 1 + _ACEOF +-rm -f conftest.$ac_objext +-if { (ac_try="$ac_compile" +-case "(($ac_try" in +- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; +- *) ac_try_echo=$ac_try;; +-esac +-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 +- (eval "$ac_compile") 2>conftest.er1 +- ac_status=$? +- grep -v '^ *+' conftest.er1 >conftest.err +- rm -f conftest.er1 +- cat conftest.err >&5 +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); } && { +- test -z "$ac_c_werror_flag" || +- test ! -s conftest.err +- } && test -s conftest.$ac_objext; then +- ac_cv_struct_sockaddr_storage=yes +-else +- echo "$as_me: failed program was:" >&5 +-sed 's/^/| /' conftest.$ac_ext >&5 + +- ac_cv_struct_sockaddr_storage=no ++$as_echo "#define HAVE_DL_DYLD 1" >>confdefs.h ++ ++ ac_cv_have_plugins=yes + fi ++done + +-rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext + fi +-{ echo "$as_me:$LINENO: result: $ac_cv_struct_sockaddr_storage" >&5 +-echo "${ECHO_T}$ac_cv_struct_sockaddr_storage" >&6; } +-if test "${ac_cv_struct_sockaddr_storage}" = no; then + +- cat >>confdefs.h <<\_ACEOF +-#define sockaddr_storage sockaddr +-_ACEOF ++done + +- cat >>confdefs.h <<\_ACEOF +-#define ss_family sa_family +-_ACEOF + ++# HP-UX style ++if test "${ac_cv_have_plugins}" = "no"; then ++ for ac_header in dl.h ++do : ++ ac_fn_c_check_header_mongrel "$LINENO" "dl.h" "ac_cv_header_dl_h" "$ac_includes_default" ++if test "x$ac_cv_header_dl_h" = xyes; then : ++ cat >>confdefs.h <<_ACEOF ++#define HAVE_DL_H 1 ++_ACEOF + + fi + ++done + +-LIBS_save="${LIBS}" +- +- +-{ echo "$as_me:$LINENO: checking for library containing getaddrinfo" >&5 +-echo $ECHO_N "checking for library containing getaddrinfo... $ECHO_C" >&6; } +-if test "${ac_cv_search_getaddrinfo+set}" = set; then +- echo $ECHO_N "(cached) $ECHO_C" >&6 ++ ac_cv_my_have_shl_load=no ++ ac_fn_c_check_func "$LINENO" "shl_load" "ac_cv_func_shl_load" ++if test "x$ac_cv_func_shl_load" = xyes; then : ++ ac_cv_my_have_shl_load=yes, ++ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for shl_load in -ldld" >&5 ++$as_echo_n "checking for shl_load in -ldld... " >&6; } ++if ${ac_cv_lib_dld_shl_load+:} false; then : ++ $as_echo_n "(cached) " >&6 + else +- ac_func_search_save_LIBS=$LIBS +-cat >conftest.$ac_ext <<_ACEOF +-/* confdefs.h. */ +-_ACEOF +-cat confdefs.h >>conftest.$ac_ext +-cat >>conftest.$ac_ext <<_ACEOF ++ ac_check_lib_save_LIBS=$LIBS ++LIBS="-ldld $LIBS" ++cat confdefs.h - <<_ACEOF >conftest.$ac_ext + /* end confdefs.h. */ + + /* Override any GCC internal prototype to avoid an error. +@@ -28364,107 +26079,57 @@ cat >>conftest.$ac_ext <<_ACEOF + #ifdef __cplusplus + extern "C" + #endif +-char getaddrinfo (); ++char shl_load (); + int + main () + { +-return getaddrinfo (); ++return shl_load (); + ; + return 0; + } + _ACEOF +-for ac_lib in '' nsl; do +- if test -z "$ac_lib"; then +- ac_res="none required" +- else +- ac_res=-l$ac_lib +- LIBS="-l$ac_lib ${LIBS_socket} $ac_func_search_save_LIBS" +- fi +- rm -f conftest.$ac_objext conftest$ac_exeext +-if { (ac_try="$ac_link" +-case "(($ac_try" in +- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; +- *) ac_try_echo=$ac_try;; +-esac +-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 +- (eval "$ac_link") 2>conftest.er1 +- ac_status=$? +- grep -v '^ *+' conftest.er1 >conftest.err +- rm -f conftest.er1 +- cat conftest.err >&5 +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); } && { +- test -z "$ac_c_werror_flag" || +- test ! -s conftest.err +- } && test -s conftest$ac_exeext && +- $as_test_x conftest$ac_exeext; then +- ac_cv_search_getaddrinfo=$ac_res ++if ac_fn_c_try_link "$LINENO"; then : ++ ac_cv_lib_dld_shl_load=yes + else +- echo "$as_me: failed program was:" >&5 +-sed 's/^/| /' conftest.$ac_ext >&5 +- +- +-fi +- +-rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ +- conftest$ac_exeext +- if test "${ac_cv_search_getaddrinfo+set}" = set; then +- break ++ ac_cv_lib_dld_shl_load=no + fi +-done +-if test "${ac_cv_search_getaddrinfo+set}" = set; then +- : +-else +- ac_cv_search_getaddrinfo=no ++rm -f core conftest.err conftest.$ac_objext \ ++ conftest$ac_exeext conftest.$ac_ext ++LIBS=$ac_check_lib_save_LIBS + fi +-rm conftest.$ac_ext +-LIBS=$ac_func_search_save_LIBS ++{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_dld_shl_load" >&5 ++$as_echo "$ac_cv_lib_dld_shl_load" >&6; } ++if test "x$ac_cv_lib_dld_shl_load" = xyes; then : ++ ac_cv_my_have_shl_load=yes ++ ++ for element in vlc; do ++ eval "LDFLAGS_${element}="'"'"-ldld "'$'"{LDFLAGS_${element}} "'"' ++ am_modules_with_ldflags="${am_modules_with_ldflags} ${element}" ++ done ++ + fi +-{ echo "$as_me:$LINENO: result: $ac_cv_search_getaddrinfo" >&5 +-echo "${ECHO_T}$ac_cv_search_getaddrinfo" >&6; } +-ac_res=$ac_cv_search_getaddrinfo +-if test "$ac_res" != no; then +- test "$ac_res" = "none required" || LIBS="$ac_res $LIBS" +- cat >>confdefs.h <<\_ACEOF +-#define HAVE_GETADDRINFO 1 +-_ACEOF + + fi + ++ if test "${ac_cv_my_have_shl_load}" = "yes"; then + +-LIBS="${LIBS_gai}" ++$as_echo "#define HAVE_DL_SHL_LOAD 1" >>confdefs.h + ++ ac_cv_have_plugins=yes ++ fi ++fi + +-for ac_func in getnameinfo gai_strerror +-do +-as_ac_var=`echo "ac_cv_func_$ac_func" | $as_tr_sh` +-{ echo "$as_me:$LINENO: checking for $ac_func" >&5 +-echo $ECHO_N "checking for $ac_func... $ECHO_C" >&6; } +-if { as_var=$as_ac_var; eval "test \"\${$as_var+set}\" = set"; }; then +- echo $ECHO_N "(cached) $ECHO_C" >&6 +-else +- cat >conftest.$ac_ext <<_ACEOF +-/* confdefs.h. */ +-_ACEOF +-cat confdefs.h >>conftest.$ac_ext +-cat >>conftest.$ac_ext <<_ACEOF ++# Whatever style ++if test "${ac_cv_have_plugins}" = "no"; then ++ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for dld_link in -ldld" >&5 ++$as_echo_n "checking for dld_link in -ldld... " >&6; } ++if ${ac_cv_lib_dld_dld_link+:} false; then : ++ $as_echo_n "(cached) " >&6 ++else ++ ac_check_lib_save_LIBS=$LIBS ++LIBS="-ldld $LIBS" ++cat confdefs.h - <<_ACEOF >conftest.$ac_ext + /* end confdefs.h. */ +-/* Define $ac_func to an innocuous variant, in case declares $ac_func. +- For example, HP-UX 11i declares gettimeofday. */ +-#define $ac_func innocuous_$ac_func +- +-/* System header to define __stub macros and hopefully few prototypes, +- which can conflict with char $ac_func (); below. +- Prefer to if __STDC__ is defined, since +- exists even on freestanding compilers. */ +- +-#ifdef __STDC__ +-# include +-#else +-# include +-#endif +- +-#undef $ac_func + + /* Override any GCC internal prototype to avoid an error. + Use char because int might match the return type of a GCC +@@ -28472,290 +26137,159 @@ cat >>conftest.$ac_ext <<_ACEOF + #ifdef __cplusplus + extern "C" + #endif +-char $ac_func (); +-/* The GNU C library defines this for functions which it implements +- to always fail with ENOSYS. Some functions are actually named +- something starting with __ and the normal name is an alias. */ +-#if defined __stub_$ac_func || defined __stub___$ac_func +-choke me +-#endif +- ++char dld_link (); + int + main () + { +-return $ac_func (); ++return dld_link (); + ; + return 0; + } + _ACEOF +-rm -f conftest.$ac_objext conftest$ac_exeext +-if { (ac_try="$ac_link" +-case "(($ac_try" in +- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; +- *) ac_try_echo=$ac_try;; +-esac +-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 +- (eval "$ac_link") 2>conftest.er1 +- ac_status=$? +- grep -v '^ *+' conftest.er1 >conftest.err +- rm -f conftest.er1 +- cat conftest.err >&5 +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); } && { +- test -z "$ac_c_werror_flag" || +- test ! -s conftest.err +- } && test -s conftest$ac_exeext && +- $as_test_x conftest$ac_exeext; then +- eval "$as_ac_var=yes" ++if ac_fn_c_try_link "$LINENO"; then : ++ ac_cv_lib_dld_dld_link=yes + else +- echo "$as_me: failed program was:" >&5 +-sed 's/^/| /' conftest.$ac_ext >&5 +- +- eval "$as_ac_var=no" ++ ac_cv_lib_dld_dld_link=no + fi +- +-rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ +- conftest$ac_exeext conftest.$ac_ext ++rm -f core conftest.err conftest.$ac_objext \ ++ conftest$ac_exeext conftest.$ac_ext ++LIBS=$ac_check_lib_save_LIBS + fi +-ac_res=`eval echo '${'$as_ac_var'}'` +- { echo "$as_me:$LINENO: result: $ac_res" >&5 +-echo "${ECHO_T}$ac_res" >&6; } +-if test `eval echo '${'$as_ac_var'}'` = yes; then +- cat >>confdefs.h <<_ACEOF +-#define `echo "HAVE_$ac_func" | $as_tr_cpp` 1 +-_ACEOF ++{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_dld_dld_link" >&5 ++$as_echo "$ac_cv_lib_dld_dld_link" >&6; } ++if test "x$ac_cv_lib_dld_dld_link" = xyes; then : + +-fi +-done ++ for element in vlc; do ++ eval "LDFLAGS_${element}="'"'"-ldld "'$'"{LDFLAGS_${element}} "'"' ++ am_modules_with_ldflags="${am_modules_with_ldflags} ${element}" ++ done + +-LIBS="${LIBS_save}" + ++$as_echo "#define HAVE_DL_DLD_LINK 1" >>confdefs.h ++ ++ ac_cv_have_plugins=yes ++fi + ++fi + +-{ echo "$as_me:$LINENO: checking for struct addrinfo" >&5 +-echo $ECHO_N "checking for struct addrinfo... $ECHO_C" >&6; } +-if test "${ac_cv_type_struct_addrinfo+set}" = set; then +- echo $ECHO_N "(cached) $ECHO_C" >&6 ++# Win32 style ++if test "${ac_cv_have_plugins}" = "no"; then ++ if test "${SYS}" = "mingw32" -o "${SYS}" = "cygwin"; then ++ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for main in -lkernel32" >&5 ++$as_echo_n "checking for main in -lkernel32... " >&6; } ++if ${ac_cv_lib_kernel32_main+:} false; then : ++ $as_echo_n "(cached) " >&6 + else +- cat >conftest.$ac_ext <<_ACEOF +-/* confdefs.h. */ +-_ACEOF +-cat confdefs.h >>conftest.$ac_ext +-cat >>conftest.$ac_ext <<_ACEOF ++ ac_check_lib_save_LIBS=$LIBS ++LIBS="-lkernel32 $LIBS" ++cat confdefs.h - <<_ACEOF >conftest.$ac_ext + /* end confdefs.h. */ +-#include +-#if defined( WIN32 ) || defined( UNDER_CE ) +-# if defined(UNDER_CE) && defined(sockaddr_storage) +-# undef sockaddr_storage +-# endif +-# include +-# include +-#else +-# include +-#endif + +-typedef struct addrinfo ac__type_new_; ++ + int + main () + { +-if ((ac__type_new_ *) 0) +- return 0; +-if (sizeof (ac__type_new_)) +- return 0; ++return main (); + ; + return 0; + } + _ACEOF +-rm -f conftest.$ac_objext +-if { (ac_try="$ac_compile" +-case "(($ac_try" in +- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; +- *) ac_try_echo=$ac_try;; +-esac +-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 +- (eval "$ac_compile") 2>conftest.er1 +- ac_status=$? +- grep -v '^ *+' conftest.er1 >conftest.err +- rm -f conftest.er1 +- cat conftest.err >&5 +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); } && { +- test -z "$ac_c_werror_flag" || +- test ! -s conftest.err +- } && test -s conftest.$ac_objext; then +- ac_cv_type_struct_addrinfo=yes ++if ac_fn_c_try_link "$LINENO"; then : ++ ac_cv_lib_kernel32_main=yes + else +- echo "$as_me: failed program was:" >&5 +-sed 's/^/| /' conftest.$ac_ext >&5 +- +- ac_cv_type_struct_addrinfo=no ++ ac_cv_lib_kernel32_main=no + fi +- +-rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext ++rm -f core conftest.err conftest.$ac_objext \ ++ conftest$ac_exeext conftest.$ac_ext ++LIBS=$ac_check_lib_save_LIBS + fi +-{ echo "$as_me:$LINENO: result: $ac_cv_type_struct_addrinfo" >&5 +-echo "${ECHO_T}$ac_cv_type_struct_addrinfo" >&6; } +-if test $ac_cv_type_struct_addrinfo = yes; then ++{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_kernel32_main" >&5 ++$as_echo "$ac_cv_lib_kernel32_main" >&6; } ++if test "x$ac_cv_lib_kernel32_main" = xyes; then : + +-cat >>confdefs.h <<_ACEOF +-#define HAVE_STRUCT_ADDRINFO 1 +-_ACEOF ++ for element in vlc; do ++ eval "LDFLAGS_${element}="'"'"-lkernel32 "'$'"{LDFLAGS_${element}} "'"' ++ am_modules_with_ldflags="${am_modules_with_ldflags} ${element}" ++ done + +-cat >>confdefs.h <<\_ACEOF +-#define HAVE_ADDRINFO 1 +-_ACEOF + ++$as_echo "#define HAVE_DL_WINDOWS 1" >>confdefs.h ++ ++ ac_cv_have_plugins=yes + fi + ++ fi ++fi + +-{ echo "$as_me:$LINENO: checking for va_copy" >&5 +-echo $ECHO_N "checking for va_copy... $ECHO_C" >&6; } +-if test "${ac_cv_c_va_copy+set}" = set; then +- echo $ECHO_N "(cached) $ECHO_C" >&6 +-else +- cat >conftest.$ac_ext <<_ACEOF +-/* confdefs.h. */ +-_ACEOF +-cat confdefs.h >>conftest.$ac_ext +-cat >>conftest.$ac_ext <<_ACEOF +-/* end confdefs.h. */ +-#include +-int +-main () +-{ +-va_list ap1, ap2; va_copy(ap1,ap2); +- ; +- return 0; +-} +-_ACEOF +-rm -f conftest.$ac_objext conftest$ac_exeext +-if { (ac_try="$ac_link" +-case "(($ac_try" in +- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; +- *) ac_try_echo=$ac_try;; +-esac +-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 +- (eval "$ac_link") 2>conftest.er1 +- ac_status=$? +- grep -v '^ *+' conftest.er1 >conftest.err +- rm -f conftest.er1 +- cat conftest.err >&5 +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); } && { +- test -z "$ac_c_werror_flag" || +- test ! -s conftest.err +- } && test -s conftest$ac_exeext && +- $as_test_x conftest$ac_exeext; then +- ac_cv_c_va_copy="yes" +-else +- echo "$as_me: failed program was:" >&5 +-sed 's/^/| /' conftest.$ac_ext >&5 ++# WinCE style ++if test "${ac_cv_have_plugins}" = "no"; then ++ if test "${SYS}" = "mingwce"; then + +- ac_cv_c_va_copy="no" +-fi ++$as_echo "#define HAVE_DL_WINDOWS 1" >>confdefs.h + +-rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ +- conftest$ac_exeext conftest.$ac_ext ++ ac_cv_have_plugins=yes ++ fi + fi +-{ echo "$as_me:$LINENO: result: $ac_cv_c_va_copy" >&5 +-echo "${ECHO_T}$ac_cv_c_va_copy" >&6; } +-if test "${ac_cv_c_va_copy}" = "yes"; then + +-cat >>confdefs.h <<\_ACEOF +-#define HAVE_VA_COPY 1 ++# BeOS style ++if test "${ac_cv_have_plugins}" = "no"; then ++ for ac_header in image.h ++do : ++ ac_fn_c_check_header_mongrel "$LINENO" "image.h" "ac_cv_header_image_h" "$ac_includes_default" ++if test "x$ac_cv_header_image_h" = xyes; then : ++ cat >>confdefs.h <<_ACEOF ++#define HAVE_IMAGE_H 1 + _ACEOF + + fi +-{ echo "$as_me:$LINENO: checking for __va_copy" >&5 +-echo $ECHO_N "checking for __va_copy... $ECHO_C" >&6; } +-if test "${ac_cv_c___va_copy+set}" = set; then +- echo $ECHO_N "(cached) $ECHO_C" >&6 +-else +- cat >conftest.$ac_ext <<_ACEOF +-/* confdefs.h. */ +-_ACEOF +-cat confdefs.h >>conftest.$ac_ext +-cat >>conftest.$ac_ext <<_ACEOF +-/* end confdefs.h. */ +-#include +-int +-main () +-{ +-va_list ap1, ap2; __va_copy(ap1,ap2); +- ; +- return 0; +-} ++ ++done ++ ++ for ac_func in load_add_on ++do : ++ ac_fn_c_check_func "$LINENO" "load_add_on" "ac_cv_func_load_add_on" ++if test "x$ac_cv_func_load_add_on" = xyes; then : ++ cat >>confdefs.h <<_ACEOF ++#define HAVE_LOAD_ADD_ON 1 + _ACEOF +-rm -f conftest.$ac_objext conftest$ac_exeext +-if { (ac_try="$ac_link" +-case "(($ac_try" in +- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; +- *) ac_try_echo=$ac_try;; +-esac +-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 +- (eval "$ac_link") 2>conftest.er1 +- ac_status=$? +- grep -v '^ *+' conftest.er1 >conftest.err +- rm -f conftest.er1 +- cat conftest.err >&5 +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); } && { +- test -z "$ac_c_werror_flag" || +- test ! -s conftest.err +- } && test -s conftest$ac_exeext && +- $as_test_x conftest$ac_exeext; then +- ac_cv_c___va_copy="yes" +-else +- echo "$as_me: failed program was:" >&5 +-sed 's/^/| /' conftest.$ac_ext >&5 + +- ac_cv_c___va_copy="no" ++$as_echo "#define HAVE_DL_BEOS 1" >>confdefs.h ++ ++ ac_cv_have_plugins=yes + fi ++done + +-rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ +- conftest$ac_exeext conftest.$ac_ext + fi +-{ echo "$as_me:$LINENO: result: $ac_cv_c___va_copy" >&5 +-echo "${ECHO_T}$ac_cv_c___va_copy" >&6; } +-if test "${ac_cv_c___va_copy}" = "yes"; then + +-cat >>confdefs.h <<\_ACEOF +-#define HAVE___VA_COPY 1 ++# Only test for dlopen() if the others didn't work ++if test "${ac_cv_have_plugins}" = "no"; then ++ for ac_header in dlfcn.h sys/dl.h ++do : ++ as_ac_Header=`$as_echo "ac_cv_header_$ac_header" | $as_tr_sh` ++ac_fn_c_check_header_mongrel "$LINENO" "$ac_header" "$as_ac_Header" "$ac_includes_default" ++if eval test \"x\$"$as_ac_Header"\" = x"yes"; then : ++ cat >>confdefs.h <<_ACEOF ++#define `$as_echo "HAVE_$ac_header" | $as_tr_cpp` 1 + _ACEOF + + fi + ++done + +-for ac_func in inet_aton +-do +-as_ac_var=`echo "ac_cv_func_$ac_func" | $as_tr_sh` +-{ echo "$as_me:$LINENO: checking for $ac_func" >&5 +-echo $ECHO_N "checking for $ac_func... $ECHO_C" >&6; } +-if { as_var=$as_ac_var; eval "test \"\${$as_var+set}\" = set"; }; then +- echo $ECHO_N "(cached) $ECHO_C" >&6 +-else +- cat >conftest.$ac_ext <<_ACEOF +-/* confdefs.h. */ +-_ACEOF +-cat confdefs.h >>conftest.$ac_ext +-cat >>conftest.$ac_ext <<_ACEOF ++ ac_cv_my_have_dlopen=no ++ ac_fn_c_check_func "$LINENO" "dlopen" "ac_cv_func_dlopen" ++if test "x$ac_cv_func_dlopen" = xyes; then : ++ ac_cv_my_have_dlopen=yes ++else ++ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for dlopen in -ldl" >&5 ++$as_echo_n "checking for dlopen in -ldl... " >&6; } ++if ${ac_cv_lib_dl_dlopen+:} false; then : ++ $as_echo_n "(cached) " >&6 ++else ++ ac_check_lib_save_LIBS=$LIBS ++LIBS="-ldl $LIBS" ++cat confdefs.h - <<_ACEOF >conftest.$ac_ext + /* end confdefs.h. */ +-/* Define $ac_func to an innocuous variant, in case declares $ac_func. +- For example, HP-UX 11i declares gettimeofday. */ +-#define $ac_func innocuous_$ac_func +- +-/* System header to define __stub macros and hopefully few prototypes, +- which can conflict with char $ac_func (); below. +- Prefer to if __STDC__ is defined, since +- exists even on freestanding compilers. */ +- +-#ifdef __STDC__ +-# include +-#else +-# include +-#endif +- +-#undef $ac_func + + /* Override any GCC internal prototype to avoid an error. + Use char because int might match the return type of a GCC +@@ -28763,73 +26297,43 @@ cat >>conftest.$ac_ext <<_ACEOF + #ifdef __cplusplus + extern "C" + #endif +-char $ac_func (); +-/* The GNU C library defines this for functions which it implements +- to always fail with ENOSYS. Some functions are actually named +- something starting with __ and the normal name is an alias. */ +-#if defined __stub_$ac_func || defined __stub___$ac_func +-choke me +-#endif +- ++char dlopen (); + int + main () + { +-return $ac_func (); ++return dlopen (); + ; + return 0; + } + _ACEOF +-rm -f conftest.$ac_objext conftest$ac_exeext +-if { (ac_try="$ac_link" +-case "(($ac_try" in +- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; +- *) ac_try_echo=$ac_try;; +-esac +-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 +- (eval "$ac_link") 2>conftest.er1 +- ac_status=$? +- grep -v '^ *+' conftest.er1 >conftest.err +- rm -f conftest.er1 +- cat conftest.err >&5 +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); } && { +- test -z "$ac_c_werror_flag" || +- test ! -s conftest.err +- } && test -s conftest$ac_exeext && +- $as_test_x conftest$ac_exeext; then +- eval "$as_ac_var=yes" ++if ac_fn_c_try_link "$LINENO"; then : ++ ac_cv_lib_dl_dlopen=yes + else +- echo "$as_me: failed program was:" >&5 +-sed 's/^/| /' conftest.$ac_ext >&5 +- +- eval "$as_ac_var=no" ++ ac_cv_lib_dl_dlopen=no + fi +- +-rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ +- conftest$ac_exeext conftest.$ac_ext ++rm -f core conftest.err conftest.$ac_objext \ ++ conftest$ac_exeext conftest.$ac_ext ++LIBS=$ac_check_lib_save_LIBS + fi +-ac_res=`eval echo '${'$as_ac_var'}'` +- { echo "$as_me:$LINENO: result: $ac_res" >&5 +-echo "${ECHO_T}$ac_res" >&6; } +-if test `eval echo '${'$as_ac_var'}'` = yes; then +- cat >>confdefs.h <<_ACEOF +-#define `echo "HAVE_$ac_func" | $as_tr_cpp` 1 +-_ACEOF ++{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_dl_dlopen" >&5 ++$as_echo "$ac_cv_lib_dl_dlopen" >&6; } ++if test "x$ac_cv_lib_dl_dlopen" = xyes; then : ++ ac_cv_my_have_dlopen=yes + +-else ++ for element in vlc; do ++ eval "LDFLAGS_${element}="'"'"-ldl "'$'"{LDFLAGS_${element}} "'"' ++ am_modules_with_ldflags="${am_modules_with_ldflags} ${element}" ++ done + +- { echo "$as_me:$LINENO: checking for inet_aton in -lresolv" >&5 +-echo $ECHO_N "checking for inet_aton in -lresolv... $ECHO_C" >&6; } +-if test "${ac_cv_lib_resolv_inet_aton+set}" = set; then +- echo $ECHO_N "(cached) $ECHO_C" >&6 ++else ++ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for dlopen in -lsvld" >&5 ++$as_echo_n "checking for dlopen in -lsvld... " >&6; } ++if ${ac_cv_lib_svld_dlopen+:} false; then : ++ $as_echo_n "(cached) " >&6 + else + ac_check_lib_save_LIBS=$LIBS +-LIBS="-lresolv $LIBS" +-cat >conftest.$ac_ext <<_ACEOF +-/* confdefs.h. */ +-_ACEOF +-cat confdefs.h >>conftest.$ac_ext +-cat >>conftest.$ac_ext <<_ACEOF ++LIBS="-lsvld $LIBS" ++cat confdefs.h - <<_ACEOF >conftest.$ac_ext + /* end confdefs.h. */ + + /* Override any GCC internal prototype to avoid an error. +@@ -28838,326 +26342,225 @@ cat >>conftest.$ac_ext <<_ACEOF + #ifdef __cplusplus + extern "C" + #endif +-char inet_aton (); ++char dlopen (); + int + main () + { +-return inet_aton (); ++return dlopen (); + ; + return 0; + } + _ACEOF +-rm -f conftest.$ac_objext conftest$ac_exeext +-if { (ac_try="$ac_link" +-case "(($ac_try" in +- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; +- *) ac_try_echo=$ac_try;; +-esac +-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 +- (eval "$ac_link") 2>conftest.er1 +- ac_status=$? +- grep -v '^ *+' conftest.er1 >conftest.err +- rm -f conftest.er1 +- cat conftest.err >&5 +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); } && { +- test -z "$ac_c_werror_flag" || +- test ! -s conftest.err +- } && test -s conftest$ac_exeext && +- $as_test_x conftest$ac_exeext; then +- ac_cv_lib_resolv_inet_aton=yes ++if ac_fn_c_try_link "$LINENO"; then : ++ ac_cv_lib_svld_dlopen=yes + else +- echo "$as_me: failed program was:" >&5 +-sed 's/^/| /' conftest.$ac_ext >&5 +- +- ac_cv_lib_resolv_inet_aton=no ++ ac_cv_lib_svld_dlopen=no + fi +- +-rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ +- conftest$ac_exeext conftest.$ac_ext ++rm -f core conftest.err conftest.$ac_objext \ ++ conftest$ac_exeext conftest.$ac_ext + LIBS=$ac_check_lib_save_LIBS + fi +-{ echo "$as_me:$LINENO: result: $ac_cv_lib_resolv_inet_aton" >&5 +-echo "${ECHO_T}$ac_cv_lib_resolv_inet_aton" >&6; } +-if test $ac_cv_lib_resolv_inet_aton = yes; then +- ++{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_svld_dlopen" >&5 ++$as_echo "$ac_cv_lib_svld_dlopen" >&6; } ++if test "x$ac_cv_lib_svld_dlopen" = xyes; then : ++ ac_cv_my_have_dlopen=yes + +- for element in ipv4 vlc; do +- eval "LDFLAGS_${element}="'"'"-lresolv "'$'"{LDFLAGS_${element}} "'"' ++ for element in vlc; do ++ eval "LDFLAGS_${element}="'"'"-lsvld "'$'"{LDFLAGS_${element}} "'"' + am_modules_with_ldflags="${am_modules_with_ldflags} ${element}" + done + +- + fi + ++fi + + fi +-done + ++ if test "${ac_cv_my_have_dlopen}" = "yes"; then + +-if test "${SYS}" = "mingw32" -o "${SYS}" = "mingwce"; then +-need_getopt=: +-else +-need_getopt=false ++$as_echo "#define HAVE_DL_DLOPEN 1" >>confdefs.h + +-for ac_func in getopt_long +-do +-as_ac_var=`echo "ac_cv_func_$ac_func" | $as_tr_sh` +-{ echo "$as_me:$LINENO: checking for $ac_func" >&5 +-echo $ECHO_N "checking for $ac_func... $ECHO_C" >&6; } +-if { as_var=$as_ac_var; eval "test \"\${$as_var+set}\" = set"; }; then +- echo $ECHO_N "(cached) $ECHO_C" >&6 +-else +- cat >conftest.$ac_ext <<_ACEOF +-/* confdefs.h. */ +-_ACEOF +-cat confdefs.h >>conftest.$ac_ext +-cat >>conftest.$ac_ext <<_ACEOF +-/* end confdefs.h. */ +-/* Define $ac_func to an innocuous variant, in case declares $ac_func. +- For example, HP-UX 11i declares gettimeofday. */ +-#define $ac_func innocuous_$ac_func ++ ac_cv_have_plugins=yes ++ fi ++fi + +-/* System header to define __stub macros and hopefully few prototypes, +- which can conflict with char $ac_func (); below. +- Prefer to if __STDC__ is defined, since +- exists even on freestanding compilers. */ +- +-#ifdef __STDC__ +-# include +-#else +-# include +-#endif +- +-#undef $ac_func ++if test "${SYS}" != "mingw32" -a "${SYS}" != "mingwce"; then ++THREAD_LIB=error ++if test "${THREAD_LIB}" = "error"; then ++ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for main in -lpthread" >&5 ++$as_echo_n "checking for main in -lpthread... " >&6; } ++if ${ac_cv_lib_pthread_main+:} false; then : ++ $as_echo_n "(cached) " >&6 ++else ++ ac_check_lib_save_LIBS=$LIBS ++LIBS="-lpthread $LIBS" ++cat confdefs.h - <<_ACEOF >conftest.$ac_ext ++/* end confdefs.h. */ + +-/* Override any GCC internal prototype to avoid an error. +- Use char because int might match the return type of a GCC +- builtin and then its argument prototype would still apply. */ +-#ifdef __cplusplus +-extern "C" +-#endif +-char $ac_func (); +-/* The GNU C library defines this for functions which it implements +- to always fail with ENOSYS. Some functions are actually named +- something starting with __ and the normal name is an alias. */ +-#if defined __stub_$ac_func || defined __stub___$ac_func +-choke me +-#endif + + int + main () + { +-return $ac_func (); ++return main (); + ; + return 0; + } + _ACEOF +-rm -f conftest.$ac_objext conftest$ac_exeext +-if { (ac_try="$ac_link" +-case "(($ac_try" in +- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; +- *) ac_try_echo=$ac_try;; +-esac +-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 +- (eval "$ac_link") 2>conftest.er1 +- ac_status=$? +- grep -v '^ *+' conftest.er1 >conftest.err +- rm -f conftest.er1 +- cat conftest.err >&5 +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); } && { +- test -z "$ac_c_werror_flag" || +- test ! -s conftest.err +- } && test -s conftest$ac_exeext && +- $as_test_x conftest$ac_exeext; then +- eval "$as_ac_var=yes" ++if ac_fn_c_try_link "$LINENO"; then : ++ ac_cv_lib_pthread_main=yes + else +- echo "$as_me: failed program was:" >&5 +-sed 's/^/| /' conftest.$ac_ext >&5 +- +- eval "$as_ac_var=no" ++ ac_cv_lib_pthread_main=no + fi +- +-rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ +- conftest$ac_exeext conftest.$ac_ext ++rm -f core conftest.err conftest.$ac_objext \ ++ conftest$ac_exeext conftest.$ac_ext ++LIBS=$ac_check_lib_save_LIBS ++fi ++{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_pthread_main" >&5 ++$as_echo "$ac_cv_lib_pthread_main" >&6; } ++if test "x$ac_cv_lib_pthread_main" = xyes; then : ++ THREAD_LIB="-lpthread" + fi +-ac_res=`eval echo '${'$as_ac_var'}'` +- { echo "$as_me:$LINENO: result: $ac_res" >&5 +-echo "${ECHO_T}$ac_res" >&6; } +-if test `eval echo '${'$as_ac_var'}'` = yes; then +- cat >>confdefs.h <<_ACEOF +-#define `echo "HAVE_$ac_func" | $as_tr_cpp` 1 +-_ACEOF +- +-cat >>confdefs.h <<\_ACEOF +-#define HAVE_GETOPT_LONG 1 +-_ACEOF + +-else +- # FreeBSD has a gnugetopt library for this: +- { echo "$as_me:$LINENO: checking for getopt_long in -lgnugetopt" >&5 +-echo $ECHO_N "checking for getopt_long in -lgnugetopt... $ECHO_C" >&6; } +-if test "${ac_cv_lib_gnugetopt_getopt_long+set}" = set; then +- echo $ECHO_N "(cached) $ECHO_C" >&6 ++fi ++if test "${THREAD_LIB}" = "error"; then ++ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for main in -lpthreads" >&5 ++$as_echo_n "checking for main in -lpthreads... " >&6; } ++if ${ac_cv_lib_pthreads_main+:} false; then : ++ $as_echo_n "(cached) " >&6 + else + ac_check_lib_save_LIBS=$LIBS +-LIBS="-lgnugetopt $LIBS" +-cat >conftest.$ac_ext <<_ACEOF +-/* confdefs.h. */ +-_ACEOF +-cat confdefs.h >>conftest.$ac_ext +-cat >>conftest.$ac_ext <<_ACEOF ++LIBS="-lpthreads $LIBS" ++cat confdefs.h - <<_ACEOF >conftest.$ac_ext + /* end confdefs.h. */ + +-/* Override any GCC internal prototype to avoid an error. +- Use char because int might match the return type of a GCC +- builtin and then its argument prototype would still apply. */ +-#ifdef __cplusplus +-extern "C" +-#endif +-char getopt_long (); ++ + int + main () + { +-return getopt_long (); ++return main (); + ; + return 0; + } + _ACEOF +-rm -f conftest.$ac_objext conftest$ac_exeext +-if { (ac_try="$ac_link" +-case "(($ac_try" in +- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; +- *) ac_try_echo=$ac_try;; +-esac +-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 +- (eval "$ac_link") 2>conftest.er1 +- ac_status=$? +- grep -v '^ *+' conftest.er1 >conftest.err +- rm -f conftest.er1 +- cat conftest.err >&5 +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); } && { +- test -z "$ac_c_werror_flag" || +- test ! -s conftest.err +- } && test -s conftest$ac_exeext && +- $as_test_x conftest$ac_exeext; then +- ac_cv_lib_gnugetopt_getopt_long=yes ++if ac_fn_c_try_link "$LINENO"; then : ++ ac_cv_lib_pthreads_main=yes + else +- echo "$as_me: failed program was:" >&5 +-sed 's/^/| /' conftest.$ac_ext >&5 +- +- ac_cv_lib_gnugetopt_getopt_long=no ++ ac_cv_lib_pthreads_main=no + fi +- +-rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ +- conftest$ac_exeext conftest.$ac_ext ++rm -f core conftest.err conftest.$ac_objext \ ++ conftest$ac_exeext conftest.$ac_ext + LIBS=$ac_check_lib_save_LIBS + fi +-{ echo "$as_me:$LINENO: result: $ac_cv_lib_gnugetopt_getopt_long" >&5 +-echo "${ECHO_T}$ac_cv_lib_gnugetopt_getopt_long" >&6; } +-if test $ac_cv_lib_gnugetopt_getopt_long = yes; then +- +-cat >>confdefs.h <<\_ACEOF +-#define HAVE_GETOPT_LONG 1 +-_ACEOF ++{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_pthreads_main" >&5 ++$as_echo "$ac_cv_lib_pthreads_main" >&6; } ++if test "x$ac_cv_lib_pthreads_main" = xyes; then : ++ THREAD_LIB="-lpthreads" ++fi + ++fi ++if test "${THREAD_LIB}" = "error"; then ++ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for main in -lc_r" >&5 ++$as_echo_n "checking for main in -lc_r... " >&6; } ++if ${ac_cv_lib_c_r_main+:} false; then : ++ $as_echo_n "(cached) " >&6 ++else ++ ac_check_lib_save_LIBS=$LIBS ++LIBS="-lc_r $LIBS" ++cat confdefs.h - <<_ACEOF >conftest.$ac_ext ++/* end confdefs.h. */ + +- for element in vlc; do +- eval "LDFLAGS_${element}="'"'"-lgnugetopt "'$'"{LDFLAGS_${element}} "'"' +- am_modules_with_ldflags="${am_modules_with_ldflags} ${element}" +- done + ++int ++main () ++{ ++return main (); ++ ; ++ return 0; ++} ++_ACEOF ++if ac_fn_c_try_link "$LINENO"; then : ++ ac_cv_lib_c_r_main=yes + else +- need_getopt=: ++ ac_cv_lib_c_r_main=no + fi +- ++rm -f core conftest.err conftest.$ac_objext \ ++ conftest$ac_exeext conftest.$ac_ext ++LIBS=$ac_check_lib_save_LIBS + fi +-done +- ++{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_c_r_main" >&5 ++$as_echo "$ac_cv_lib_c_r_main" >&6; } ++if test "x$ac_cv_lib_c_r_main" = xyes; then : ++ THREAD_LIB="-lc_r" + fi + ++fi ++if test "${THREAD_LIB}" = "error"; then ++ for ac_func in pthread_mutex_lock ++do : ++ ac_fn_c_check_func "$LINENO" "pthread_mutex_lock" "ac_cv_func_pthread_mutex_lock" ++if test "x$ac_cv_func_pthread_mutex_lock" = xyes; then : ++ cat >>confdefs.h <<_ACEOF ++#define HAVE_PTHREAD_MUTEX_LOCK 1 ++_ACEOF + +-if ${need_getopt}; then +- BUILD_GETOPT_TRUE= +- BUILD_GETOPT_FALSE='#' +-else +- BUILD_GETOPT_TRUE='#' +- BUILD_GETOPT_FALSE= + fi ++done + ++ THREAD_LIB="" ++fi + +-if test "${SYS}" != "mingw32" -a "${SYS}" != "mingwce"; then +-{ echo "$as_me:$LINENO: checking return type of signal handlers" >&5 +-echo $ECHO_N "checking return type of signal handlers... $ECHO_C" >&6; } +-if test "${ac_cv_type_signal+set}" = set; then +- echo $ECHO_N "(cached) $ECHO_C" >&6 ++{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for cthread_fork in -lthreads" >&5 ++$as_echo_n "checking for cthread_fork in -lthreads... " >&6; } ++if ${ac_cv_lib_threads_cthread_fork+:} false; then : ++ $as_echo_n "(cached) " >&6 + else +- cat >conftest.$ac_ext <<_ACEOF +-/* confdefs.h. */ +-_ACEOF +-cat confdefs.h >>conftest.$ac_ext +-cat >>conftest.$ac_ext <<_ACEOF ++ ac_check_lib_save_LIBS=$LIBS ++LIBS="-lthreads $LIBS" ++cat confdefs.h - <<_ACEOF >conftest.$ac_ext + /* end confdefs.h. */ +-#include +-#include + ++/* Override any GCC internal prototype to avoid an error. ++ Use char because int might match the return type of a GCC ++ builtin and then its argument prototype would still apply. */ ++#ifdef __cplusplus ++extern "C" ++#endif ++char cthread_fork (); + int + main () + { +-return *(signal (0, 0)) (0) == 1; ++return cthread_fork (); + ; + return 0; + } + _ACEOF +-rm -f conftest.$ac_objext +-if { (ac_try="$ac_compile" +-case "(($ac_try" in +- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; +- *) ac_try_echo=$ac_try;; +-esac +-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 +- (eval "$ac_compile") 2>conftest.er1 +- ac_status=$? +- grep -v '^ *+' conftest.er1 >conftest.err +- rm -f conftest.er1 +- cat conftest.err >&5 +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); } && { +- test -z "$ac_c_werror_flag" || +- test ! -s conftest.err +- } && test -s conftest.$ac_objext; then +- ac_cv_type_signal=int ++if ac_fn_c_try_link "$LINENO"; then : ++ ac_cv_lib_threads_cthread_fork=yes + else +- echo "$as_me: failed program was:" >&5 +-sed 's/^/| /' conftest.$ac_ext >&5 +- +- ac_cv_type_signal=void ++ ac_cv_lib_threads_cthread_fork=no + fi +- +-rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext ++rm -f core conftest.err conftest.$ac_objext \ ++ conftest$ac_exeext conftest.$ac_ext ++LIBS=$ac_check_lib_save_LIBS ++fi ++{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_threads_cthread_fork" >&5 ++$as_echo "$ac_cv_lib_threads_cthread_fork" >&6; } ++if test "x$ac_cv_lib_threads_cthread_fork" = xyes; then : ++ THREAD_LIB="-lthreads" + fi +-{ echo "$as_me:$LINENO: result: $ac_cv_type_signal" >&5 +-echo "${ECHO_T}$ac_cv_type_signal" >&6; } +- +-cat >>confdefs.h <<_ACEOF +-#define RETSIGTYPE $ac_cv_type_signal +-_ACEOF + + +-{ echo "$as_me:$LINENO: checking for cos in -lm" >&5 +-echo $ECHO_N "checking for cos in -lm... $ECHO_C" >&6; } +-if test "${ac_cv_lib_m_cos+set}" = set; then +- echo $ECHO_N "(cached) $ECHO_C" >&6 ++# Check whether --enable-pth was given. ++if test "${enable_pth+set}" = set; then : ++ enableval=$enable_pth; if test "${enable_pth}" = "yes"; then ++ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for pth_init in -lpth" >&5 ++$as_echo_n "checking for pth_init in -lpth... " >&6; } ++if ${ac_cv_lib_pth_pth_init+:} false; then : ++ $as_echo_n "(cached) " >&6 + else + ac_check_lib_save_LIBS=$LIBS +-LIBS="-lm $LIBS" +-cat >conftest.$ac_ext <<_ACEOF +-/* confdefs.h. */ +-_ACEOF +-cat confdefs.h >>conftest.$ac_ext +-cat >>conftest.$ac_ext <<_ACEOF ++LIBS="-lpth $LIBS" ++cat confdefs.h - <<_ACEOF >conftest.$ac_ext + /* end confdefs.h. */ + + /* Override any GCC internal prototype to avoid an error. +@@ -29166,70 +26569,76 @@ cat >>conftest.$ac_ext <<_ACEOF + #ifdef __cplusplus + extern "C" + #endif +-char cos (); ++char pth_init (); + int + main () + { +-return cos (); ++return pth_init (); + ; + return 0; + } + _ACEOF +-rm -f conftest.$ac_objext conftest$ac_exeext +-if { (ac_try="$ac_link" +-case "(($ac_try" in +- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; +- *) ac_try_echo=$ac_try;; +-esac +-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 +- (eval "$ac_link") 2>conftest.er1 +- ac_status=$? +- grep -v '^ *+' conftest.er1 >conftest.err +- rm -f conftest.er1 +- cat conftest.err >&5 +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); } && { +- test -z "$ac_c_werror_flag" || +- test ! -s conftest.err +- } && test -s conftest$ac_exeext && +- $as_test_x conftest$ac_exeext; then +- ac_cv_lib_m_cos=yes ++if ac_fn_c_try_link "$LINENO"; then : ++ ac_cv_lib_pth_pth_init=yes + else +- echo "$as_me: failed program was:" >&5 +-sed 's/^/| /' conftest.$ac_ext >&5 +- +- ac_cv_lib_m_cos=no ++ ac_cv_lib_pth_pth_init=no + fi +- +-rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ +- conftest$ac_exeext conftest.$ac_ext ++rm -f core conftest.err conftest.$ac_objext \ ++ conftest$ac_exeext conftest.$ac_ext + LIBS=$ac_check_lib_save_LIBS + fi +-{ echo "$as_me:$LINENO: result: $ac_cv_lib_m_cos" >&5 +-echo "${ECHO_T}$ac_cv_lib_m_cos" >&6; } +-if test $ac_cv_lib_m_cos = yes; then ++{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_pth_pth_init" >&5 ++$as_echo "$ac_cv_lib_pth_pth_init" >&6; } ++if test "x$ac_cv_lib_pth_pth_init" = xyes; then : ++ cat >>confdefs.h <<_ACEOF ++#define HAVE_LIBPTH 1 ++_ACEOF ++ ++ LIBS="-lpth $LIBS" ++ ++fi + ++ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for pth_init in pth.h" >&5 ++$as_echo_n "checking for pth_init in pth.h... " >&6; } ++ cat confdefs.h - <<_ACEOF >conftest.$ac_ext ++/* end confdefs.h. */ ++#include + +- for element in adjust distort a52tofloat32 dtstofloat32 x264 goom visual opengl; do +- eval "LDFLAGS_${element}="'"'"-lm "'$'"{LDFLAGS_${element}} "'"' +- am_modules_with_ldflags="${am_modules_with_ldflags} ${element}" +- done ++_ACEOF ++if (eval "$ac_cpp conftest.$ac_ext") 2>&5 | ++ $EGREP "pth_init" >/dev/null 2>&1; then : ++ ++ { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5 ++$as_echo "yes" >&6; } ++ ++$as_echo "#define PTH_INIT_IN_PTH_H 1" >>confdefs.h ++ ++ THREAD_LIB="-lpth" ++ ++else ++ ++ { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 ++$as_echo "no" >&6; } + ++fi ++rm -f conftest* ++ ++ fi + + fi + +-{ echo "$as_me:$LINENO: checking for pow in -lm" >&5 +-echo $ECHO_N "checking for pow in -lm... $ECHO_C" >&6; } +-if test "${ac_cv_lib_m_pow+set}" = set; then +- echo $ECHO_N "(cached) $ECHO_C" >&6 ++ ++# Check whether --enable-st was given. ++if test "${enable_st+set}" = set; then : ++ enableval=$enable_st; if test "${enable_st}" = "yes"; then ++ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for st_init in -lst" >&5 ++$as_echo_n "checking for st_init in -lst... " >&6; } ++if ${ac_cv_lib_st_st_init+:} false; then : ++ $as_echo_n "(cached) " >&6 + else + ac_check_lib_save_LIBS=$LIBS +-LIBS="-lm $LIBS" +-cat >conftest.$ac_ext <<_ACEOF +-/* confdefs.h. */ +-_ACEOF +-cat confdefs.h >>conftest.$ac_ext +-cat >>conftest.$ac_ext <<_ACEOF ++LIBS="-lst $LIBS" ++cat confdefs.h - <<_ACEOF >conftest.$ac_ext + /* end confdefs.h. */ + + /* Override any GCC internal prototype to avoid an error. +@@ -29238,70 +26647,81 @@ cat >>conftest.$ac_ext <<_ACEOF + #ifdef __cplusplus + extern "C" + #endif +-char pow (); ++char st_init (); + int + main () + { +-return pow (); ++return st_init (); + ; + return 0; + } + _ACEOF +-rm -f conftest.$ac_objext conftest$ac_exeext +-if { (ac_try="$ac_link" +-case "(($ac_try" in +- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; +- *) ac_try_echo=$ac_try;; +-esac +-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 +- (eval "$ac_link") 2>conftest.er1 +- ac_status=$? +- grep -v '^ *+' conftest.er1 >conftest.err +- rm -f conftest.er1 +- cat conftest.err >&5 +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); } && { +- test -z "$ac_c_werror_flag" || +- test ! -s conftest.err +- } && test -s conftest$ac_exeext && +- $as_test_x conftest$ac_exeext; then +- ac_cv_lib_m_pow=yes ++if ac_fn_c_try_link "$LINENO"; then : ++ ac_cv_lib_st_st_init=yes + else +- echo "$as_me: failed program was:" >&5 +-sed 's/^/| /' conftest.$ac_ext >&5 ++ ac_cv_lib_st_st_init=no ++fi ++rm -f core conftest.err conftest.$ac_objext \ ++ conftest$ac_exeext conftest.$ac_ext ++LIBS=$ac_check_lib_save_LIBS ++fi ++{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_st_st_init" >&5 ++$as_echo "$ac_cv_lib_st_st_init" >&6; } ++if test "x$ac_cv_lib_st_st_init" = xyes; then : ++ cat >>confdefs.h <<_ACEOF ++#define HAVE_LIBST 1 ++_ACEOF ++ ++ LIBS="-lst $LIBS" + +- ac_cv_lib_m_pow=no + fi + +-rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ +- conftest$ac_exeext conftest.$ac_ext +-LIBS=$ac_check_lib_save_LIBS ++ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for st_init in st.h" >&5 ++$as_echo_n "checking for st_init in st.h... " >&6; } ++ cat confdefs.h - <<_ACEOF >conftest.$ac_ext ++/* end confdefs.h. */ ++#include ++ ++_ACEOF ++if (eval "$ac_cpp conftest.$ac_ext") 2>&5 | ++ $EGREP "st_init" >/dev/null 2>&1; then : ++ ++ { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5 ++$as_echo "yes" >&6; } ++ ++$as_echo "#define ST_INIT_IN_ST_H 1" >>confdefs.h ++ ++ THREAD_LIB="-lst" ++ ++else ++ ++ { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5 ++$as_echo "yes" >&6; } ++ + fi +-{ echo "$as_me:$LINENO: result: $ac_cv_lib_m_pow" >&5 +-echo "${ECHO_T}$ac_cv_lib_m_pow" >&6; } +-if test $ac_cv_lib_m_pow = yes; then ++rm -f conftest* ++ ++ fi + ++fi + +- for element in ffmpeg ffmpegaltivec stream_out_transrate i420_rgb faad twolame equalizer param_eq vlc freetype mpc dmo quicktime realaudio galaktos; do +- eval "LDFLAGS_${element}="'"'"-lm "'$'"{LDFLAGS_${element}} "'"' ++ ++ ++ for element in vlc plugin; do ++ eval "LDFLAGS_${element}="'"'"${THREAD_LIB} "'$'"{LDFLAGS_${element}} "'"' + am_modules_with_ldflags="${am_modules_with_ldflags} ${element}" + done + + +-fi +- +-{ echo "$as_me:$LINENO: checking for sqrt in -lm" >&5 +-echo $ECHO_N "checking for sqrt in -lm... $ECHO_C" >&6; } +-if test "${ac_cv_lib_m_sqrt+set}" = set; then +- echo $ECHO_N "(cached) $ECHO_C" >&6 ++if test "${THREAD_LIB}" != "-lpth" && test "${THREAD_LIB}" != "-lst"; then ++ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for sem_init in -lrt" >&5 ++$as_echo_n "checking for sem_init in -lrt... " >&6; } ++if ${ac_cv_lib_rt_sem_init+:} false; then : ++ $as_echo_n "(cached) " >&6 + else + ac_check_lib_save_LIBS=$LIBS +-LIBS="-lm $LIBS" +-cat >conftest.$ac_ext <<_ACEOF +-/* confdefs.h. */ +-_ACEOF +-cat confdefs.h >>conftest.$ac_ext +-cat >>conftest.$ac_ext <<_ACEOF ++LIBS="-lrt $LIBS" ++cat confdefs.h - <<_ACEOF >conftest.$ac_ext + /* end confdefs.h. */ + + /* Override any GCC internal prototype to avoid an error. +@@ -29310,70 +26730,55 @@ cat >>conftest.$ac_ext <<_ACEOF + #ifdef __cplusplus + extern "C" + #endif +-char sqrt (); ++char sem_init (); + int + main () + { +-return sqrt (); ++return sem_init (); + ; + return 0; + } + _ACEOF +-rm -f conftest.$ac_objext conftest$ac_exeext +-if { (ac_try="$ac_link" +-case "(($ac_try" in +- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; +- *) ac_try_echo=$ac_try;; +-esac +-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 +- (eval "$ac_link") 2>conftest.er1 +- ac_status=$? +- grep -v '^ *+' conftest.er1 >conftest.err +- rm -f conftest.er1 +- cat conftest.err >&5 +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); } && { +- test -z "$ac_c_werror_flag" || +- test ! -s conftest.err +- } && test -s conftest$ac_exeext && +- $as_test_x conftest$ac_exeext; then +- ac_cv_lib_m_sqrt=yes ++if ac_fn_c_try_link "$LINENO"; then : ++ ac_cv_lib_rt_sem_init=yes + else +- echo "$as_me: failed program was:" >&5 +-sed 's/^/| /' conftest.$ac_ext >&5 +- +- ac_cv_lib_m_sqrt=no ++ ac_cv_lib_rt_sem_init=no + fi +- +-rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ +- conftest$ac_exeext conftest.$ac_ext ++rm -f core conftest.err conftest.$ac_objext \ ++ conftest$ac_exeext conftest.$ac_ext + LIBS=$ac_check_lib_save_LIBS + fi +-{ echo "$as_me:$LINENO: result: $ac_cv_lib_m_sqrt" >&5 +-echo "${ECHO_T}$ac_cv_lib_m_sqrt" >&6; } +-if test $ac_cv_lib_m_sqrt = yes; then ++{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_rt_sem_init" >&5 ++$as_echo "$ac_cv_lib_rt_sem_init" >&6; } ++if test "x$ac_cv_lib_rt_sem_init" = xyes; then : + +- +- for element in headphone_channel_mixer normvol speex; do +- eval "LDFLAGS_${element}="'"'"-lm "'$'"{LDFLAGS_${element}} "'"' ++ for element in vlc; do ++ eval "LDFLAGS_${element}="'"'"-lrt "'$'"{LDFLAGS_${element}} "'"' + am_modules_with_ldflags="${am_modules_with_ldflags} ${element}" + done + +- + fi + +-{ echo "$as_me:$LINENO: checking for ceil in -lm" >&5 +-echo $ECHO_N "checking for ceil in -lm... $ECHO_C" >&6; } +-if test "${ac_cv_lib_m_ceil+set}" = set; then +- echo $ECHO_N "(cached) $ECHO_C" >&6 ++ ++ have_nanosleep=false ++ for ac_func in nanosleep ++do : ++ ac_fn_c_check_func "$LINENO" "nanosleep" "ac_cv_func_nanosleep" ++if test "x$ac_cv_func_nanosleep" = xyes; then : ++ cat >>confdefs.h <<_ACEOF ++#define HAVE_NANOSLEEP 1 ++_ACEOF ++ have_nanosleep=: ++else ++ ++ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for nanosleep in -lrt" >&5 ++$as_echo_n "checking for nanosleep in -lrt... " >&6; } ++if ${ac_cv_lib_rt_nanosleep+:} false; then : ++ $as_echo_n "(cached) " >&6 + else + ac_check_lib_save_LIBS=$LIBS +-LIBS="-lm $LIBS" +-cat >conftest.$ac_ext <<_ACEOF +-/* confdefs.h. */ +-_ACEOF +-cat confdefs.h >>conftest.$ac_ext +-cat >>conftest.$ac_ext <<_ACEOF ++LIBS="-lrt $LIBS" ++cat confdefs.h - <<_ACEOF >conftest.$ac_ext + /* end confdefs.h. */ + + /* Override any GCC internal prototype to avoid an error. +@@ -29382,70 +26787,42 @@ cat >>conftest.$ac_ext <<_ACEOF + #ifdef __cplusplus + extern "C" + #endif +-char ceil (); ++char nanosleep (); + int + main () + { +-return ceil (); ++return nanosleep (); + ; + return 0; + } + _ACEOF +-rm -f conftest.$ac_objext conftest$ac_exeext +-if { (ac_try="$ac_link" +-case "(($ac_try" in +- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; +- *) ac_try_echo=$ac_try;; +-esac +-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 +- (eval "$ac_link") 2>conftest.er1 +- ac_status=$? +- grep -v '^ *+' conftest.er1 >conftest.err +- rm -f conftest.er1 +- cat conftest.err >&5 +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); } && { +- test -z "$ac_c_werror_flag" || +- test ! -s conftest.err +- } && test -s conftest$ac_exeext && +- $as_test_x conftest$ac_exeext; then +- ac_cv_lib_m_ceil=yes ++if ac_fn_c_try_link "$LINENO"; then : ++ ac_cv_lib_rt_nanosleep=yes + else +- echo "$as_me: failed program was:" >&5 +-sed 's/^/| /' conftest.$ac_ext >&5 +- +- ac_cv_lib_m_ceil=no ++ ac_cv_lib_rt_nanosleep=no + fi +- +-rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ +- conftest$ac_exeext conftest.$ac_ext ++rm -f core conftest.err conftest.$ac_objext \ ++ conftest$ac_exeext conftest.$ac_ext + LIBS=$ac_check_lib_save_LIBS + fi +-{ echo "$as_me:$LINENO: result: $ac_cv_lib_m_ceil" >&5 +-echo "${ECHO_T}$ac_cv_lib_m_ceil" >&6; } +-if test $ac_cv_lib_m_ceil = yes; then +- ++{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_rt_nanosleep" >&5 ++$as_echo "$ac_cv_lib_rt_nanosleep" >&6; } ++if test "x$ac_cv_lib_rt_nanosleep" = xyes; then : + +- for element in mosaic; do +- eval "LDFLAGS_${element}="'"'"-lm "'$'"{LDFLAGS_${element}} "'"' ++ for element in vlc; do ++ eval "LDFLAGS_${element}="'"'"-lrt "'$'"{LDFLAGS_${element}} "'"' + am_modules_with_ldflags="${am_modules_with_ldflags} ${element}" + done +- +- +-fi +- +-{ echo "$as_me:$LINENO: checking for sqrtf in -lmx" >&5 +-echo $ECHO_N "checking for sqrtf in -lmx... $ECHO_C" >&6; } +-if test "${ac_cv_lib_mx_sqrtf+set}" = set; then +- echo $ECHO_N "(cached) $ECHO_C" >&6 ++ have_nanosleep=: ++else ++ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for nanosleep in -lposix4" >&5 ++$as_echo_n "checking for nanosleep in -lposix4... " >&6; } ++if ${ac_cv_lib_posix4_nanosleep+:} false; then : ++ $as_echo_n "(cached) " >&6 + else + ac_check_lib_save_LIBS=$LIBS +-LIBS="-lmx $LIBS" +-cat >conftest.$ac_ext <<_ACEOF +-/* confdefs.h. */ +-_ACEOF +-cat confdefs.h >>conftest.$ac_ext +-cat >>conftest.$ac_ext <<_ACEOF ++LIBS="-lposix4 $LIBS" ++cat confdefs.h - <<_ACEOF >conftest.$ac_ext + /* end confdefs.h. */ + + /* Override any GCC internal prototype to avoid an error. +@@ -29454,952 +26831,600 @@ cat >>conftest.$ac_ext <<_ACEOF + #ifdef __cplusplus + extern "C" + #endif +-char sqrtf (); ++char nanosleep (); + int + main () + { +-return sqrtf (); ++return nanosleep (); + ; + return 0; + } + _ACEOF +-rm -f conftest.$ac_objext conftest$ac_exeext +-if { (ac_try="$ac_link" +-case "(($ac_try" in +- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; +- *) ac_try_echo=$ac_try;; +-esac +-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 +- (eval "$ac_link") 2>conftest.er1 +- ac_status=$? +- grep -v '^ *+' conftest.er1 >conftest.err +- rm -f conftest.er1 +- cat conftest.err >&5 +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); } && { +- test -z "$ac_c_werror_flag" || +- test ! -s conftest.err +- } && test -s conftest$ac_exeext && +- $as_test_x conftest$ac_exeext; then +- ac_cv_lib_mx_sqrtf=yes ++if ac_fn_c_try_link "$LINENO"; then : ++ ac_cv_lib_posix4_nanosleep=yes + else +- echo "$as_me: failed program was:" >&5 +-sed 's/^/| /' conftest.$ac_ext >&5 +- +- ac_cv_lib_mx_sqrtf=no ++ ac_cv_lib_posix4_nanosleep=no + fi +- +-rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ +- conftest$ac_exeext conftest.$ac_ext ++rm -f core conftest.err conftest.$ac_objext \ ++ conftest$ac_exeext conftest.$ac_ext + LIBS=$ac_check_lib_save_LIBS + fi +-{ echo "$as_me:$LINENO: result: $ac_cv_lib_mx_sqrtf" >&5 +-echo "${ECHO_T}$ac_cv_lib_mx_sqrtf" >&6; } +-if test $ac_cv_lib_mx_sqrtf = yes; then +- ++{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_posix4_nanosleep" >&5 ++$as_echo "$ac_cv_lib_posix4_nanosleep" >&6; } ++if test "x$ac_cv_lib_posix4_nanosleep" = xyes; then : + +- for element in x264; do +- eval "LDFLAGS_${element}="'"'"-lmx "'$'"{LDFLAGS_${element}} "'"' ++ for element in vlc; do ++ eval "LDFLAGS_${element}="'"'"-lposix4 "'$'"{LDFLAGS_${element}} "'"' + am_modules_with_ldflags="${am_modules_with_ldflags} ${element}" + done ++ have_nanosleep=: ++fi + + + fi + +-fi # end "${SYS}" != "mingw32" -a "${SYS}" != "mingwce" + +-ac_cv_have_plugins=no ++fi ++done + +-# OS X style ++ if ${have_nanosleep}; then + +-for ac_header in mach-o/dyld.h +-do +-as_ac_Header=`echo "ac_cv_header_$ac_header" | $as_tr_sh` +-if { as_var=$as_ac_Header; eval "test \"\${$as_var+set}\" = set"; }; then +- { echo "$as_me:$LINENO: checking for $ac_header" >&5 +-echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6; } +-if { as_var=$as_ac_Header; eval "test \"\${$as_var+set}\" = set"; }; then +- echo $ECHO_N "(cached) $ECHO_C" >&6 ++$as_echo "#define HAVE_NANOSLEEP 1" >>confdefs.h ++ ++ fi + fi +-ac_res=`eval echo '${'$as_ac_Header'}'` +- { echo "$as_me:$LINENO: result: $ac_res" >&5 +-echo "${ECHO_T}$ac_res" >&6; } +-else +- # Is the header compilable? +-{ echo "$as_me:$LINENO: checking $ac_header usability" >&5 +-echo $ECHO_N "checking $ac_header usability... $ECHO_C" >&6; } +-cat >conftest.$ac_ext <<_ACEOF +-/* confdefs.h. */ +-_ACEOF +-cat confdefs.h >>conftest.$ac_ext +-cat >>conftest.$ac_ext <<_ACEOF ++ ++{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for pthread_cond_t in pthread.h" >&5 ++$as_echo_n "checking for pthread_cond_t in pthread.h... " >&6; } ++cat confdefs.h - <<_ACEOF >conftest.$ac_ext + /* end confdefs.h. */ +-$ac_includes_default +-#include <$ac_header> ++#include ++ + _ACEOF +-rm -f conftest.$ac_objext +-if { (ac_try="$ac_compile" +-case "(($ac_try" in +- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; +- *) ac_try_echo=$ac_try;; +-esac +-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 +- (eval "$ac_compile") 2>conftest.er1 +- ac_status=$? +- grep -v '^ *+' conftest.er1 >conftest.err +- rm -f conftest.er1 +- cat conftest.err >&5 +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); } && { +- test -z "$ac_c_werror_flag" || +- test ! -s conftest.err +- } && test -s conftest.$ac_objext; then +- ac_header_compiler=yes ++if (eval "$ac_cpp conftest.$ac_ext") 2>&5 | ++ $EGREP "pthread_cond_t" >/dev/null 2>&1; then : ++ ++ { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5 ++$as_echo "yes" >&6; } ++ ++$as_echo "#define PTHREAD_COND_T_IN_PTHREAD_H 1" >>confdefs.h ++ + else +- echo "$as_me: failed program was:" >&5 +-sed 's/^/| /' conftest.$ac_ext >&5 + +- ac_header_compiler=no ++ { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 ++$as_echo "no" >&6; } + fi ++rm -f conftest* + +-rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext +-{ echo "$as_me:$LINENO: result: $ac_header_compiler" >&5 +-echo "${ECHO_T}$ac_header_compiler" >&6; } + +-# Is the header present? +-{ echo "$as_me:$LINENO: checking $ac_header presence" >&5 +-echo $ECHO_N "checking $ac_header presence... $ECHO_C" >&6; } +-cat >conftest.$ac_ext <<_ACEOF +-/* confdefs.h. */ +-_ACEOF +-cat confdefs.h >>conftest.$ac_ext +-cat >>conftest.$ac_ext <<_ACEOF ++{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for pthread_once in pthread.h" >&5 ++$as_echo_n "checking for pthread_once in pthread.h... " >&6; } ++cat confdefs.h - <<_ACEOF >conftest.$ac_ext + /* end confdefs.h. */ +-#include <$ac_header> +-_ACEOF +-if { (ac_try="$ac_cpp conftest.$ac_ext" +-case "(($ac_try" in +- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; +- *) ac_try_echo=$ac_try;; +-esac +-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 +- (eval "$ac_cpp conftest.$ac_ext") 2>conftest.er1 +- ac_status=$? +- grep -v '^ *+' conftest.er1 >conftest.err +- rm -f conftest.er1 +- cat conftest.err >&5 +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); } >/dev/null && { +- test -z "$ac_c_preproc_warn_flag$ac_c_werror_flag" || +- test ! -s conftest.err +- }; then +- ac_header_preproc=yes +-else +- echo "$as_me: failed program was:" >&5 +-sed 's/^/| /' conftest.$ac_ext >&5 ++#include + +- ac_header_preproc=no +-fi ++_ACEOF ++if (eval "$ac_cpp conftest.$ac_ext") 2>&5 | ++ $EGREP "pthread_once" >/dev/null 2>&1; then : + +-rm -f conftest.err conftest.$ac_ext +-{ echo "$as_me:$LINENO: result: $ac_header_preproc" >&5 +-echo "${ECHO_T}$ac_header_preproc" >&6; } ++ { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5 ++$as_echo "yes" >&6; } + +-# So? What about this header? +-case $ac_header_compiler:$ac_header_preproc:$ac_c_preproc_warn_flag in +- yes:no: ) +- { echo "$as_me:$LINENO: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&5 +-echo "$as_me: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&2;} +- { echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the compiler's result" >&5 +-echo "$as_me: WARNING: $ac_header: proceeding with the compiler's result" >&2;} +- ac_header_preproc=yes +- ;; +- no:yes:* ) +- { echo "$as_me:$LINENO: WARNING: $ac_header: present but cannot be compiled" >&5 +-echo "$as_me: WARNING: $ac_header: present but cannot be compiled" >&2;} +- { echo "$as_me:$LINENO: WARNING: $ac_header: check for missing prerequisite headers?" >&5 +-echo "$as_me: WARNING: $ac_header: check for missing prerequisite headers?" >&2;} +- { echo "$as_me:$LINENO: WARNING: $ac_header: see the Autoconf documentation" >&5 +-echo "$as_me: WARNING: $ac_header: see the Autoconf documentation" >&2;} +- { echo "$as_me:$LINENO: WARNING: $ac_header: section \"Present But Cannot Be Compiled\"" >&5 +-echo "$as_me: WARNING: $ac_header: section \"Present But Cannot Be Compiled\"" >&2;} +- { echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the preprocessor's result" >&5 +-echo "$as_me: WARNING: $ac_header: proceeding with the preprocessor's result" >&2;} +- { echo "$as_me:$LINENO: WARNING: $ac_header: in the future, the compiler will take precedence" >&5 +-echo "$as_me: WARNING: $ac_header: in the future, the compiler will take precedence" >&2;} ++$as_echo "#define PTHREAD_ONCE_IN_PTHREAD_H 1" >>confdefs.h + +- ;; +-esac +-{ echo "$as_me:$LINENO: checking for $ac_header" >&5 +-echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6; } +-if { as_var=$as_ac_Header; eval "test \"\${$as_var+set}\" = set"; }; then +- echo $ECHO_N "(cached) $ECHO_C" >&6 + else +- eval "$as_ac_Header=\$ac_header_preproc" +-fi +-ac_res=`eval echo '${'$as_ac_Header'}'` +- { echo "$as_me:$LINENO: result: $ac_res" >&5 +-echo "${ECHO_T}$ac_res" >&6; } + ++ { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 ++$as_echo "no" >&6; } + fi +-if test `eval echo '${'$as_ac_Header'}'` = yes; then +- cat >>confdefs.h <<_ACEOF +-#define `echo "HAVE_$ac_header" | $as_tr_cpp` 1 +-_ACEOF ++rm -f conftest* + +-for ac_func in NSLinkModule +-do +-as_ac_var=`echo "ac_cv_func_$ac_func" | $as_tr_sh` +-{ echo "$as_me:$LINENO: checking for $ac_func" >&5 +-echo $ECHO_N "checking for $ac_func... $ECHO_C" >&6; } +-if { as_var=$as_ac_var; eval "test \"\${$as_var+set}\" = set"; }; then +- echo $ECHO_N "(cached) $ECHO_C" >&6 +-else +- cat >conftest.$ac_ext <<_ACEOF +-/* confdefs.h. */ +-_ACEOF +-cat confdefs.h >>conftest.$ac_ext +-cat >>conftest.$ac_ext <<_ACEOF +-/* end confdefs.h. */ +-/* Define $ac_func to an innocuous variant, in case declares $ac_func. +- For example, HP-UX 11i declares gettimeofday. */ +-#define $ac_func innocuous_$ac_func ++fi # end "${SYS}" != "mingw32" -a "${SYS}" != "mingwce" + +-/* System header to define __stub macros and hopefully few prototypes, +- which can conflict with char $ac_func (); below. +- Prefer to if __STDC__ is defined, since +- exists even on freestanding compilers. */ ++{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for strncasecmp in strings.h" >&5 ++$as_echo_n "checking for strncasecmp in strings.h... " >&6; } ++cat confdefs.h - <<_ACEOF >conftest.$ac_ext ++/* end confdefs.h. */ ++#include + +-#ifdef __STDC__ +-# include +-#else +-# include +-#endif ++_ACEOF ++if (eval "$ac_cpp conftest.$ac_ext") 2>&5 | ++ $EGREP "strncasecmp" >/dev/null 2>&1; then : + +-#undef $ac_func ++ { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5 ++$as_echo "yes" >&6; } + +-/* Override any GCC internal prototype to avoid an error. +- Use char because int might match the return type of a GCC +- builtin and then its argument prototype would still apply. */ +-#ifdef __cplusplus +-extern "C" +-#endif +-char $ac_func (); +-/* The GNU C library defines this for functions which it implements +- to always fail with ENOSYS. Some functions are actually named +- something starting with __ and the normal name is an alias. */ +-#if defined __stub_$ac_func || defined __stub___$ac_func +-choke me +-#endif ++$as_echo "#define STRNCASECMP_IN_STRINGS_H 1" >>confdefs.h + +-int +-main () +-{ +-return $ac_func (); +- ; +- return 0; +-} +-_ACEOF +-rm -f conftest.$ac_objext conftest$ac_exeext +-if { (ac_try="$ac_link" +-case "(($ac_try" in +- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; +- *) ac_try_echo=$ac_try;; +-esac +-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 +- (eval "$ac_link") 2>conftest.er1 +- ac_status=$? +- grep -v '^ *+' conftest.er1 >conftest.err +- rm -f conftest.er1 +- cat conftest.err >&5 +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); } && { +- test -z "$ac_c_werror_flag" || +- test ! -s conftest.err +- } && test -s conftest$ac_exeext && +- $as_test_x conftest$ac_exeext; then +- eval "$as_ac_var=yes" + else +- echo "$as_me: failed program was:" >&5 +-sed 's/^/| /' conftest.$ac_ext >&5 + +- eval "$as_ac_var=no" ++ { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 ++$as_echo "no" >&6; } + fi ++rm -f conftest* + +-rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ +- conftest$ac_exeext conftest.$ac_ext +-fi +-ac_res=`eval echo '${'$as_ac_var'}'` +- { echo "$as_me:$LINENO: result: $ac_res" >&5 +-echo "${ECHO_T}$ac_res" >&6; } +-if test `eval echo '${'$as_ac_var'}'` = yes; then +- cat >>confdefs.h <<_ACEOF +-#define `echo "HAVE_$ac_func" | $as_tr_cpp` 1 +-_ACEOF + +-cat >>confdefs.h <<\_ACEOF +-#define HAVE_DL_DYLD 1 ++for ac_header in signal.h time.h errno.h stdint.h stdbool.h getopt.h strings.h inttypes.h sys/int_types.h wchar.h ++do : ++ as_ac_Header=`$as_echo "ac_cv_header_$ac_header" | $as_tr_sh` ++ac_fn_c_check_header_mongrel "$LINENO" "$ac_header" "$as_ac_Header" "$ac_includes_default" ++if eval test \"x\$"$as_ac_Header"\" = x"yes"; then : ++ cat >>confdefs.h <<_ACEOF ++#define `$as_echo "HAVE_$ac_header" | $as_tr_cpp` 1 + _ACEOF + +- ac_cv_have_plugins=yes +-fi +-done +- + fi + + done + +- +-# HP-UX style +-if test "${ac_cv_have_plugins}" = "no"; then +- +-for ac_header in dl.h +-do +-as_ac_Header=`echo "ac_cv_header_$ac_header" | $as_tr_sh` +-if { as_var=$as_ac_Header; eval "test \"\${$as_var+set}\" = set"; }; then +- { echo "$as_me:$LINENO: checking for $ac_header" >&5 +-echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6; } +-if { as_var=$as_ac_Header; eval "test \"\${$as_var+set}\" = set"; }; then +- echo $ECHO_N "(cached) $ECHO_C" >&6 +-fi +-ac_res=`eval echo '${'$as_ac_Header'}'` +- { echo "$as_me:$LINENO: result: $ac_res" >&5 +-echo "${ECHO_T}$ac_res" >&6; } +-else +- # Is the header compilable? +-{ echo "$as_me:$LINENO: checking $ac_header usability" >&5 +-echo $ECHO_N "checking $ac_header usability... $ECHO_C" >&6; } +-cat >conftest.$ac_ext <<_ACEOF +-/* confdefs.h. */ +-_ACEOF +-cat confdefs.h >>conftest.$ac_ext +-cat >>conftest.$ac_ext <<_ACEOF +-/* end confdefs.h. */ +-$ac_includes_default +-#include <$ac_header> ++for ac_header in sys/sockio.h fcntl.h sys/types.h sys/time.h sys/times.h sys/ioctl.h sys/stat.h ++do : ++ as_ac_Header=`$as_echo "ac_cv_header_$ac_header" | $as_tr_sh` ++ac_fn_c_check_header_mongrel "$LINENO" "$ac_header" "$as_ac_Header" "$ac_includes_default" ++if eval test \"x\$"$as_ac_Header"\" = x"yes"; then : ++ cat >>confdefs.h <<_ACEOF ++#define `$as_echo "HAVE_$ac_header" | $as_tr_cpp` 1 + _ACEOF +-rm -f conftest.$ac_objext +-if { (ac_try="$ac_compile" +-case "(($ac_try" in +- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; +- *) ac_try_echo=$ac_try;; +-esac +-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 +- (eval "$ac_compile") 2>conftest.er1 +- ac_status=$? +- grep -v '^ *+' conftest.er1 >conftest.err +- rm -f conftest.er1 +- cat conftest.err >&5 +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); } && { +- test -z "$ac_c_werror_flag" || +- test ! -s conftest.err +- } && test -s conftest.$ac_objext; then +- ac_header_compiler=yes +-else +- echo "$as_me: failed program was:" >&5 +-sed 's/^/| /' conftest.$ac_ext >&5 + +- ac_header_compiler=no + fi + +-rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext +-{ echo "$as_me:$LINENO: result: $ac_header_compiler" >&5 +-echo "${ECHO_T}$ac_header_compiler" >&6; } ++done + +-# Is the header present? +-{ echo "$as_me:$LINENO: checking $ac_header presence" >&5 +-echo $ECHO_N "checking $ac_header presence... $ECHO_C" >&6; } +-cat >conftest.$ac_ext <<_ACEOF +-/* confdefs.h. */ +-_ACEOF +-cat confdefs.h >>conftest.$ac_ext +-cat >>conftest.$ac_ext <<_ACEOF +-/* end confdefs.h. */ +-#include <$ac_header> ++for ac_header in arpa/inet.h net/if.h netinet/in.h sys/socket.h ++do : ++ as_ac_Header=`$as_echo "ac_cv_header_$ac_header" | $as_tr_sh` ++ac_fn_c_check_header_mongrel "$LINENO" "$ac_header" "$as_ac_Header" "$ac_includes_default" ++if eval test \"x\$"$as_ac_Header"\" = x"yes"; then : ++ cat >>confdefs.h <<_ACEOF ++#define `$as_echo "HAVE_$ac_header" | $as_tr_cpp` 1 + _ACEOF +-if { (ac_try="$ac_cpp conftest.$ac_ext" +-case "(($ac_try" in +- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; +- *) ac_try_echo=$ac_try;; +-esac +-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 +- (eval "$ac_cpp conftest.$ac_ext") 2>conftest.er1 +- ac_status=$? +- grep -v '^ *+' conftest.er1 >conftest.err +- rm -f conftest.er1 +- cat conftest.err >&5 +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); } >/dev/null && { +- test -z "$ac_c_preproc_warn_flag$ac_c_werror_flag" || +- test ! -s conftest.err +- }; then +- ac_header_preproc=yes +-else +- echo "$as_me: failed program was:" >&5 +-sed 's/^/| /' conftest.$ac_ext >&5 + +- ac_header_preproc=no + fi + +-rm -f conftest.err conftest.$ac_ext +-{ echo "$as_me:$LINENO: result: $ac_header_preproc" >&5 +-echo "${ECHO_T}$ac_header_preproc" >&6; } +- +-# So? What about this header? +-case $ac_header_compiler:$ac_header_preproc:$ac_c_preproc_warn_flag in +- yes:no: ) +- { echo "$as_me:$LINENO: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&5 +-echo "$as_me: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&2;} +- { echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the compiler's result" >&5 +-echo "$as_me: WARNING: $ac_header: proceeding with the compiler's result" >&2;} +- ac_header_preproc=yes +- ;; +- no:yes:* ) +- { echo "$as_me:$LINENO: WARNING: $ac_header: present but cannot be compiled" >&5 +-echo "$as_me: WARNING: $ac_header: present but cannot be compiled" >&2;} +- { echo "$as_me:$LINENO: WARNING: $ac_header: check for missing prerequisite headers?" >&5 +-echo "$as_me: WARNING: $ac_header: check for missing prerequisite headers?" >&2;} +- { echo "$as_me:$LINENO: WARNING: $ac_header: see the Autoconf documentation" >&5 +-echo "$as_me: WARNING: $ac_header: see the Autoconf documentation" >&2;} +- { echo "$as_me:$LINENO: WARNING: $ac_header: section \"Present But Cannot Be Compiled\"" >&5 +-echo "$as_me: WARNING: $ac_header: section \"Present But Cannot Be Compiled\"" >&2;} +- { echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the preprocessor's result" >&5 +-echo "$as_me: WARNING: $ac_header: proceeding with the preprocessor's result" >&2;} +- { echo "$as_me:$LINENO: WARNING: $ac_header: in the future, the compiler will take precedence" >&5 +-echo "$as_me: WARNING: $ac_header: in the future, the compiler will take precedence" >&2;} +- +- ;; +-esac +-{ echo "$as_me:$LINENO: checking for $ac_header" >&5 +-echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6; } +-if { as_var=$as_ac_Header; eval "test \"\${$as_var+set}\" = set"; }; then +- echo $ECHO_N "(cached) $ECHO_C" >&6 +-else +- eval "$as_ac_Header=\$ac_header_preproc" +-fi +-ac_res=`eval echo '${'$as_ac_Header'}'` +- { echo "$as_me:$LINENO: result: $ac_res" >&5 +-echo "${ECHO_T}$ac_res" >&6; } ++done + +-fi +-if test `eval echo '${'$as_ac_Header'}'` = yes; then ++if test "${SYS}" != "mingw32" -a "${SYS}" != "mingwce"; then ++for ac_header in machine/param.h sys/shm.h ++do : ++ as_ac_Header=`$as_echo "ac_cv_header_$ac_header" | $as_tr_sh` ++ac_fn_c_check_header_mongrel "$LINENO" "$ac_header" "$as_ac_Header" "$ac_includes_default" ++if eval test \"x\$"$as_ac_Header"\" = x"yes"; then : + cat >>confdefs.h <<_ACEOF +-#define `echo "HAVE_$ac_header" | $as_tr_cpp` 1 ++#define `$as_echo "HAVE_$ac_header" | $as_tr_cpp` 1 + _ACEOF + + fi + + done + +- ac_cv_my_have_shl_load=no +- { echo "$as_me:$LINENO: checking for shl_load" >&5 +-echo $ECHO_N "checking for shl_load... $ECHO_C" >&6; } +-if test "${ac_cv_func_shl_load+set}" = set; then +- echo $ECHO_N "(cached) $ECHO_C" >&6 +-else +- cat >conftest.$ac_ext <<_ACEOF +-/* confdefs.h. */ ++for ac_header in linux/version.h ++do : ++ ac_fn_c_check_header_mongrel "$LINENO" "linux/version.h" "ac_cv_header_linux_version_h" "$ac_includes_default" ++if test "x$ac_cv_header_linux_version_h" = xyes; then : ++ cat >>confdefs.h <<_ACEOF ++#define HAVE_LINUX_VERSION_H 1 + _ACEOF +-cat confdefs.h >>conftest.$ac_ext +-cat >>conftest.$ac_ext <<_ACEOF +-/* end confdefs.h. */ +-/* Define shl_load to an innocuous variant, in case declares shl_load. +- For example, HP-UX 11i declares gettimeofday. */ +-#define shl_load innocuous_shl_load +- +-/* System header to define __stub macros and hopefully few prototypes, +- which can conflict with char shl_load (); below. +- Prefer to if __STDC__ is defined, since +- exists even on freestanding compilers. */ +- +-#ifdef __STDC__ +-# include +-#else +-# include +-#endif + +-#undef shl_load ++fi + +-/* Override any GCC internal prototype to avoid an error. +- Use char because int might match the return type of a GCC +- builtin and then its argument prototype would still apply. */ +-#ifdef __cplusplus +-extern "C" +-#endif +-char shl_load (); +-/* The GNU C library defines this for functions which it implements +- to always fail with ENOSYS. Some functions are actually named +- something starting with __ and the normal name is an alias. */ +-#if defined __stub_shl_load || defined __stub___shl_load +-choke me +-#endif ++done + +-int +-main () +-{ +-return shl_load (); +- ; +- return 0; +-} ++for ac_header in syslog.h ++do : ++ ac_fn_c_check_header_mongrel "$LINENO" "syslog.h" "ac_cv_header_syslog_h" "$ac_includes_default" ++if test "x$ac_cv_header_syslog_h" = xyes; then : ++ cat >>confdefs.h <<_ACEOF ++#define HAVE_SYSLOG_H 1 + _ACEOF +-rm -f conftest.$ac_objext conftest$ac_exeext +-if { (ac_try="$ac_link" +-case "(($ac_try" in +- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; +- *) ac_try_echo=$ac_try;; +-esac +-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 +- (eval "$ac_link") 2>conftest.er1 +- ac_status=$? +- grep -v '^ *+' conftest.er1 >conftest.err +- rm -f conftest.er1 +- cat conftest.err >&5 +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); } && { +- test -z "$ac_c_werror_flag" || +- test ! -s conftest.err +- } && test -s conftest$ac_exeext && +- $as_test_x conftest$ac_exeext; then +- ac_cv_func_shl_load=yes +-else +- echo "$as_me: failed program was:" >&5 +-sed 's/^/| /' conftest.$ac_ext >&5 + +- ac_cv_func_shl_load=no + fi + +-rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ +- conftest$ac_exeext conftest.$ac_ext +-fi +-{ echo "$as_me:$LINENO: result: $ac_cv_func_shl_load" >&5 +-echo "${ECHO_T}$ac_cv_func_shl_load" >&6; } +-if test $ac_cv_func_shl_load = yes; then +- ac_cv_my_have_shl_load=yes, +- { echo "$as_me:$LINENO: checking for shl_load in -ldld" >&5 +-echo $ECHO_N "checking for shl_load in -ldld... $ECHO_C" >&6; } +-if test "${ac_cv_lib_dld_shl_load+set}" = set; then +- echo $ECHO_N "(cached) $ECHO_C" >&6 ++done ++ ++fi # end "${SYS}" != "mingw32" -a "${SYS}" != "mingwce" ++ ++{ $as_echo "$as_me:${as_lineno-$LINENO}: checking whether time.h and sys/time.h may both be included" >&5 ++$as_echo_n "checking whether time.h and sys/time.h may both be included... " >&6; } ++if ${ac_cv_header_time+:} false; then : ++ $as_echo_n "(cached) " >&6 + else +- ac_check_lib_save_LIBS=$LIBS +-LIBS="-ldld $LIBS" +-cat >conftest.$ac_ext <<_ACEOF +-/* confdefs.h. */ +-_ACEOF +-cat confdefs.h >>conftest.$ac_ext +-cat >>conftest.$ac_ext <<_ACEOF ++ cat confdefs.h - <<_ACEOF >conftest.$ac_ext + /* end confdefs.h. */ ++#include ++#include ++#include + +-/* Override any GCC internal prototype to avoid an error. +- Use char because int might match the return type of a GCC +- builtin and then its argument prototype would still apply. */ +-#ifdef __cplusplus +-extern "C" +-#endif +-char shl_load (); + int + main () + { +-return shl_load (); ++if ((struct tm *) 0) ++return 0; + ; + return 0; + } + _ACEOF +-rm -f conftest.$ac_objext conftest$ac_exeext +-if { (ac_try="$ac_link" +-case "(($ac_try" in +- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; +- *) ac_try_echo=$ac_try;; +-esac +-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 +- (eval "$ac_link") 2>conftest.er1 +- ac_status=$? +- grep -v '^ *+' conftest.er1 >conftest.err +- rm -f conftest.er1 +- cat conftest.err >&5 +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); } && { +- test -z "$ac_c_werror_flag" || +- test ! -s conftest.err +- } && test -s conftest$ac_exeext && +- $as_test_x conftest$ac_exeext; then +- ac_cv_lib_dld_shl_load=yes ++if ac_fn_c_try_compile "$LINENO"; then : ++ ac_cv_header_time=yes + else +- echo "$as_me: failed program was:" >&5 +-sed 's/^/| /' conftest.$ac_ext >&5 +- +- ac_cv_lib_dld_shl_load=no ++ ac_cv_header_time=no + fi +- +-rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ +- conftest$ac_exeext conftest.$ac_ext +-LIBS=$ac_check_lib_save_LIBS ++rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext + fi +-{ echo "$as_me:$LINENO: result: $ac_cv_lib_dld_shl_load" >&5 +-echo "${ECHO_T}$ac_cv_lib_dld_shl_load" >&6; } +-if test $ac_cv_lib_dld_shl_load = yes; then +- ac_cv_my_have_shl_load=yes +- +- for element in vlc; do +- eval "LDFLAGS_${element}="'"'"-ldld "'$'"{LDFLAGS_${element}} "'"' +- am_modules_with_ldflags="${am_modules_with_ldflags} ${element}" +- done ++{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_header_time" >&5 ++$as_echo "$ac_cv_header_time" >&6; } ++if test $ac_cv_header_time = yes; then + +-fi ++$as_echo "#define TIME_WITH_SYS_TIME 1" >>confdefs.h + + fi + +- if test "${ac_cv_my_have_shl_load}" = "yes"; then + +-cat >>confdefs.h <<\_ACEOF +-#define HAVE_DL_SHL_LOAD 1 ++need_dirent=false ++for ac_header in dirent.h ++do : ++ ac_fn_c_check_header_mongrel "$LINENO" "dirent.h" "ac_cv_header_dirent_h" "$ac_includes_default" ++if test "x$ac_cv_header_dirent_h" = xyes; then : ++ cat >>confdefs.h <<_ACEOF ++#define HAVE_DIRENT_H 1 + _ACEOF + +- ac_cv_have_plugins=yes +- fi ++else ++ need_dirent=: + fi + +-# Whatever style +-if test "${ac_cv_have_plugins}" = "no"; then +- { echo "$as_me:$LINENO: checking for dld_link in -ldld" >&5 +-echo $ECHO_N "checking for dld_link in -ldld... $ECHO_C" >&6; } +-if test "${ac_cv_lib_dld_dld_link+set}" = set; then +- echo $ECHO_N "(cached) $ECHO_C" >&6 ++done ++ ++ ++ ++if ${need_dirent}; then ++ BUILD_DIRENT_TRUE= ++ BUILD_DIRENT_FALSE='#' + else +- ac_check_lib_save_LIBS=$LIBS +-LIBS="-ldld $LIBS" +-cat >conftest.$ac_ext <<_ACEOF +-/* confdefs.h. */ +-_ACEOF +-cat confdefs.h >>conftest.$ac_ext +-cat >>conftest.$ac_ext <<_ACEOF ++ BUILD_DIRENT_TRUE='#' ++ BUILD_DIRENT_FALSE= ++fi ++ ++ ++if test "${SYS}" != "mingw32" -a "${SYS}" != "mingwce"; then ++{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for nanosleep in time.h" >&5 ++$as_echo_n "checking for nanosleep in time.h... " >&6; } ++cat confdefs.h - <<_ACEOF >conftest.$ac_ext + /* end confdefs.h. */ ++#include + +-/* Override any GCC internal prototype to avoid an error. +- Use char because int might match the return type of a GCC +- builtin and then its argument prototype would still apply. */ +-#ifdef __cplusplus +-extern "C" +-#endif +-char dld_link (); +-int +-main () +-{ +-return dld_link (); +- ; +- return 0; +-} + _ACEOF +-rm -f conftest.$ac_objext conftest$ac_exeext +-if { (ac_try="$ac_link" +-case "(($ac_try" in +- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; +- *) ac_try_echo=$ac_try;; +-esac +-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 +- (eval "$ac_link") 2>conftest.er1 +- ac_status=$? +- grep -v '^ *+' conftest.er1 >conftest.err +- rm -f conftest.er1 +- cat conftest.err >&5 +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); } && { +- test -z "$ac_c_werror_flag" || +- test ! -s conftest.err +- } && test -s conftest$ac_exeext && +- $as_test_x conftest$ac_exeext; then +- ac_cv_lib_dld_dld_link=yes ++if (eval "$ac_cpp conftest.$ac_ext") 2>&5 | ++ $EGREP "nanosleep" >/dev/null 2>&1; then : ++ ++ { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5 ++$as_echo "yes" >&6; } ++ ++$as_echo "#define HAVE_DECL_NANOSLEEP 1" >>confdefs.h ++ ++ + else +- echo "$as_me: failed program was:" >&5 +-sed 's/^/| /' conftest.$ac_ext >&5 + +- ac_cv_lib_dld_dld_link=no +-fi ++ { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 ++$as_echo "no" >&6; } + +-rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ +- conftest$ac_exeext conftest.$ac_ext +-LIBS=$ac_check_lib_save_LIBS + fi +-{ echo "$as_me:$LINENO: result: $ac_cv_lib_dld_dld_link" >&5 +-echo "${ECHO_T}$ac_cv_lib_dld_dld_link" >&6; } +-if test $ac_cv_lib_dld_dld_link = yes; then ++rm -f conftest* + +- for element in vlc; do +- eval "LDFLAGS_${element}="'"'"-ldld "'$'"{LDFLAGS_${element}} "'"' +- am_modules_with_ldflags="${am_modules_with_ldflags} ${element}" +- done ++fi # end "${SYS}" != "mingw32" -a "${SYS}" != "mingwce" + ++{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for timespec in sys/time.h" >&5 ++$as_echo_n "checking for timespec in sys/time.h... " >&6; } ++cat confdefs.h - <<_ACEOF >conftest.$ac_ext ++/* end confdefs.h. */ ++#include + +-cat >>confdefs.h <<\_ACEOF +-#define HAVE_DL_DLD_LINK 1 + _ACEOF ++if (eval "$ac_cpp conftest.$ac_ext") 2>&5 | ++ $EGREP "timespec" >/dev/null 2>&1; then : + +- ac_cv_have_plugins=yes +-fi ++ { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5 ++$as_echo "yes" >&6; } ++ ++$as_echo "#define HAVE_STRUCT_TIMESPEC 1" >>confdefs.h + +-fi + +-# Win32 style +-if test "${ac_cv_have_plugins}" = "no"; then +- if test "${SYS}" = "mingw32" -o "${SYS}" = "cygwin"; then +- { echo "$as_me:$LINENO: checking for main in -lkernel32" >&5 +-echo $ECHO_N "checking for main in -lkernel32... $ECHO_C" >&6; } +-if test "${ac_cv_lib_kernel32_main+set}" = set; then +- echo $ECHO_N "(cached) $ECHO_C" >&6 + else +- ac_check_lib_save_LIBS=$LIBS +-LIBS="-lkernel32 $LIBS" +-cat >conftest.$ac_ext <<_ACEOF +-/* confdefs.h. */ +-_ACEOF +-cat confdefs.h >>conftest.$ac_ext +-cat >>conftest.$ac_ext <<_ACEOF +-/* end confdefs.h. */ + ++ { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 ++$as_echo "no" >&6; } + +-int +-main () +-{ +-return main (); +- ; +- return 0; +-} ++fi ++rm -f conftest* ++ ++ ++if test "${SYS}" != "mingw32" -a "${SYS}" != "mingwce"; then ++for ac_header in cthreads.h pthread.h kernel/scheduler.h kernel/OS.h ++do : ++ as_ac_Header=`$as_echo "ac_cv_header_$ac_header" | $as_tr_sh` ++ac_fn_c_check_header_mongrel "$LINENO" "$ac_header" "$as_ac_Header" "$ac_includes_default" ++if eval test \"x\$"$as_ac_Header"\" = x"yes"; then : ++ cat >>confdefs.h <<_ACEOF ++#define `$as_echo "HAVE_$ac_header" | $as_tr_cpp` 1 + _ACEOF +-rm -f conftest.$ac_objext conftest$ac_exeext +-if { (ac_try="$ac_link" +-case "(($ac_try" in +- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; +- *) ac_try_echo=$ac_try;; +-esac +-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 +- (eval "$ac_link") 2>conftest.er1 +- ac_status=$? +- grep -v '^ *+' conftest.er1 >conftest.err +- rm -f conftest.er1 +- cat conftest.err >&5 +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); } && { +- test -z "$ac_c_werror_flag" || +- test ! -s conftest.err +- } && test -s conftest$ac_exeext && +- $as_test_x conftest$ac_exeext; then +- ac_cv_lib_kernel32_main=yes +-else +- echo "$as_me: failed program was:" >&5 +-sed 's/^/| /' conftest.$ac_ext >&5 + +- ac_cv_lib_kernel32_main=no + fi + +-rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ +- conftest$ac_exeext conftest.$ac_ext +-LIBS=$ac_check_lib_save_LIBS +-fi +-{ echo "$as_me:$LINENO: result: $ac_cv_lib_kernel32_main" >&5 +-echo "${ECHO_T}$ac_cv_lib_kernel32_main" >&6; } +-if test $ac_cv_lib_kernel32_main = yes; then ++done + +- for element in vlc; do +- eval "LDFLAGS_${element}="'"'"-lkernel32 "'$'"{LDFLAGS_${element}} "'"' +- am_modules_with_ldflags="${am_modules_with_ldflags} ${element}" +- done ++fi # end "${SYS}" != "mingw32" -a "${SYS}" != "mingwce" + ++{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for X" >&5 ++$as_echo_n "checking for X... " >&6; } + +-cat >>confdefs.h <<\_ACEOF +-#define HAVE_DL_WINDOWS 1 +-_ACEOF + +- ac_cv_have_plugins=yes ++# Check whether --with-x was given. ++if test "${with_x+set}" = set; then : ++ withval=$with_x; + fi + ++# $have_x is `yes', `no', `disabled', or empty when we do not yet know. ++if test "x$with_x" = xno; then ++ # The user explicitly disabled X. ++ have_x=disabled ++else ++ case $x_includes,$x_libraries in #( ++ *\'*) as_fn_error $? "cannot use X directory names containing '" "$LINENO" 5;; #( ++ *,NONE | NONE,*) if ${ac_cv_have_x+:} false; then : ++ $as_echo_n "(cached) " >&6 ++else ++ # One or both of the vars are not set, and there is no cached value. ++ac_x_includes=no ac_x_libraries=no ++rm -f -r conftest.dir ++if mkdir conftest.dir; then ++ cd conftest.dir ++ cat >Imakefile <<'_ACEOF' ++incroot: ++ @echo incroot='${INCROOT}' ++usrlibdir: ++ @echo usrlibdir='${USRLIBDIR}' ++libdir: ++ @echo libdir='${LIBDIR}' ++_ACEOF ++ if (export CC; ${XMKMF-xmkmf}) >/dev/null 2>/dev/null && test -f Makefile; then ++ # GNU make sometimes prints "make[1]: Entering ...", which would confuse us. ++ for ac_var in incroot usrlibdir libdir; do ++ eval "ac_im_$ac_var=\`\${MAKE-make} $ac_var 2>/dev/null | sed -n 's/^$ac_var=//p'\`" ++ done ++ # Open Windows xmkmf reportedly sets LIBDIR instead of USRLIBDIR. ++ for ac_extension in a so sl dylib la dll; do ++ if test ! -f "$ac_im_usrlibdir/libX11.$ac_extension" && ++ test -f "$ac_im_libdir/libX11.$ac_extension"; then ++ ac_im_usrlibdir=$ac_im_libdir; break ++ fi ++ done ++ # Screen out bogus values from the imake configuration. They are ++ # bogus both because they are the default anyway, and because ++ # using them would break gcc on systems where it needs fixed includes. ++ case $ac_im_incroot in ++ /usr/include) ac_x_includes= ;; ++ *) test -f "$ac_im_incroot/X11/Xos.h" && ac_x_includes=$ac_im_incroot;; ++ esac ++ case $ac_im_usrlibdir in ++ /usr/lib | /usr/lib64 | /lib | /lib64) ;; ++ *) test -d "$ac_im_usrlibdir" && ac_x_libraries=$ac_im_usrlibdir ;; ++ esac + fi ++ cd .. ++ rm -f -r conftest.dir + fi + +-# WinCE style +-if test "${ac_cv_have_plugins}" = "no"; then +- if test "${SYS}" = "mingwce"; then ++# Standard set of common directories for X headers. ++# Check X11 before X11Rn because it is often a symlink to the current release. ++ac_x_header_dirs=' ++/usr/X11/include ++/usr/X11R7/include ++/usr/X11R6/include ++/usr/X11R5/include ++/usr/X11R4/include + +-cat >>confdefs.h <<\_ACEOF +-#define HAVE_DL_WINDOWS 1 +-_ACEOF ++/usr/include/X11 ++/usr/include/X11R7 ++/usr/include/X11R6 ++/usr/include/X11R5 ++/usr/include/X11R4 + +- ac_cv_have_plugins=yes +- fi +-fi ++/usr/local/X11/include ++/usr/local/X11R7/include ++/usr/local/X11R6/include ++/usr/local/X11R5/include ++/usr/local/X11R4/include + +-# BeOS style +-if test "${ac_cv_have_plugins}" = "no"; then ++/usr/local/include/X11 ++/usr/local/include/X11R7 ++/usr/local/include/X11R6 ++/usr/local/include/X11R5 ++/usr/local/include/X11R4 + +-for ac_header in image.h +-do +-as_ac_Header=`echo "ac_cv_header_$ac_header" | $as_tr_sh` +-if { as_var=$as_ac_Header; eval "test \"\${$as_var+set}\" = set"; }; then +- { echo "$as_me:$LINENO: checking for $ac_header" >&5 +-echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6; } +-if { as_var=$as_ac_Header; eval "test \"\${$as_var+set}\" = set"; }; then +- echo $ECHO_N "(cached) $ECHO_C" >&6 +-fi +-ac_res=`eval echo '${'$as_ac_Header'}'` +- { echo "$as_me:$LINENO: result: $ac_res" >&5 +-echo "${ECHO_T}$ac_res" >&6; } +-else +- # Is the header compilable? +-{ echo "$as_me:$LINENO: checking $ac_header usability" >&5 +-echo $ECHO_N "checking $ac_header usability... $ECHO_C" >&6; } +-cat >conftest.$ac_ext <<_ACEOF +-/* confdefs.h. */ +-_ACEOF +-cat confdefs.h >>conftest.$ac_ext +-cat >>conftest.$ac_ext <<_ACEOF ++/usr/X386/include ++/usr/x386/include ++/usr/XFree86/include/X11 ++ ++/usr/include ++/usr/local/include ++/usr/unsupported/include ++/usr/athena/include ++/usr/local/x11r5/include ++/usr/lpp/Xamples/include ++ ++/usr/openwin/include ++/usr/openwin/share/include' ++ ++if test "$ac_x_includes" = no; then ++ # Guess where to find include files, by looking for Xlib.h. ++ # First, try using that file with no special directory specified. ++ cat confdefs.h - <<_ACEOF >conftest.$ac_ext + /* end confdefs.h. */ +-$ac_includes_default +-#include <$ac_header> ++#include + _ACEOF +-rm -f conftest.$ac_objext +-if { (ac_try="$ac_compile" +-case "(($ac_try" in +- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; +- *) ac_try_echo=$ac_try;; +-esac +-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 +- (eval "$ac_compile") 2>conftest.er1 +- ac_status=$? +- grep -v '^ *+' conftest.er1 >conftest.err +- rm -f conftest.er1 +- cat conftest.err >&5 +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); } && { +- test -z "$ac_c_werror_flag" || +- test ! -s conftest.err +- } && test -s conftest.$ac_objext; then +- ac_header_compiler=yes ++if ac_fn_c_try_cpp "$LINENO"; then : ++ # We can compile using X headers with no special include directory. ++ac_x_includes= + else +- echo "$as_me: failed program was:" >&5 +-sed 's/^/| /' conftest.$ac_ext >&5 +- +- ac_header_compiler=no ++ for ac_dir in $ac_x_header_dirs; do ++ if test -r "$ac_dir/X11/Xlib.h"; then ++ ac_x_includes=$ac_dir ++ break ++ fi ++done + fi ++rm -f conftest.err conftest.i conftest.$ac_ext ++fi # $ac_x_includes = no + +-rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext +-{ echo "$as_me:$LINENO: result: $ac_header_compiler" >&5 +-echo "${ECHO_T}$ac_header_compiler" >&6; } +- +-# Is the header present? +-{ echo "$as_me:$LINENO: checking $ac_header presence" >&5 +-echo $ECHO_N "checking $ac_header presence... $ECHO_C" >&6; } +-cat >conftest.$ac_ext <<_ACEOF +-/* confdefs.h. */ +-_ACEOF +-cat confdefs.h >>conftest.$ac_ext +-cat >>conftest.$ac_ext <<_ACEOF ++if test "$ac_x_libraries" = no; then ++ # Check for the libraries. ++ # See if we find them without any special options. ++ # Don't add to $LIBS permanently. ++ ac_save_LIBS=$LIBS ++ LIBS="-lX11 $LIBS" ++ cat confdefs.h - <<_ACEOF >conftest.$ac_ext + /* end confdefs.h. */ +-#include <$ac_header> ++#include ++int ++main () ++{ ++XrmInitialize () ++ ; ++ return 0; ++} + _ACEOF +-if { (ac_try="$ac_cpp conftest.$ac_ext" +-case "(($ac_try" in +- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; +- *) ac_try_echo=$ac_try;; +-esac +-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 +- (eval "$ac_cpp conftest.$ac_ext") 2>conftest.er1 +- ac_status=$? +- grep -v '^ *+' conftest.er1 >conftest.err +- rm -f conftest.er1 +- cat conftest.err >&5 +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); } >/dev/null && { +- test -z "$ac_c_preproc_warn_flag$ac_c_werror_flag" || +- test ! -s conftest.err +- }; then +- ac_header_preproc=yes ++if ac_fn_c_try_link "$LINENO"; then : ++ LIBS=$ac_save_LIBS ++# We can link X programs with no special library path. ++ac_x_libraries= + else +- echo "$as_me: failed program was:" >&5 +-sed 's/^/| /' conftest.$ac_ext >&5 +- +- ac_header_preproc=no ++ LIBS=$ac_save_LIBS ++for ac_dir in `$as_echo "$ac_x_includes $ac_x_header_dirs" | sed s/include/lib/g` ++do ++ # Don't even attempt the hair of trying to link an X program! ++ for ac_extension in a so sl dylib la dll; do ++ if test -r "$ac_dir/libX11.$ac_extension"; then ++ ac_x_libraries=$ac_dir ++ break 2 ++ fi ++ done ++done + fi ++rm -f core conftest.err conftest.$ac_objext \ ++ conftest$ac_exeext conftest.$ac_ext ++fi # $ac_x_libraries = no + +-rm -f conftest.err conftest.$ac_ext +-{ echo "$as_me:$LINENO: result: $ac_header_preproc" >&5 +-echo "${ECHO_T}$ac_header_preproc" >&6; } +- +-# So? What about this header? +-case $ac_header_compiler:$ac_header_preproc:$ac_c_preproc_warn_flag in +- yes:no: ) +- { echo "$as_me:$LINENO: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&5 +-echo "$as_me: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&2;} +- { echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the compiler's result" >&5 +-echo "$as_me: WARNING: $ac_header: proceeding with the compiler's result" >&2;} +- ac_header_preproc=yes +- ;; +- no:yes:* ) +- { echo "$as_me:$LINENO: WARNING: $ac_header: present but cannot be compiled" >&5 +-echo "$as_me: WARNING: $ac_header: present but cannot be compiled" >&2;} +- { echo "$as_me:$LINENO: WARNING: $ac_header: check for missing prerequisite headers?" >&5 +-echo "$as_me: WARNING: $ac_header: check for missing prerequisite headers?" >&2;} +- { echo "$as_me:$LINENO: WARNING: $ac_header: see the Autoconf documentation" >&5 +-echo "$as_me: WARNING: $ac_header: see the Autoconf documentation" >&2;} +- { echo "$as_me:$LINENO: WARNING: $ac_header: section \"Present But Cannot Be Compiled\"" >&5 +-echo "$as_me: WARNING: $ac_header: section \"Present But Cannot Be Compiled\"" >&2;} +- { echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the preprocessor's result" >&5 +-echo "$as_me: WARNING: $ac_header: proceeding with the preprocessor's result" >&2;} +- { echo "$as_me:$LINENO: WARNING: $ac_header: in the future, the compiler will take precedence" >&5 +-echo "$as_me: WARNING: $ac_header: in the future, the compiler will take precedence" >&2;} +- +- ;; ++case $ac_x_includes,$ac_x_libraries in #( ++ no,* | *,no | *\'*) ++ # Didn't find X, or a directory has "'" in its name. ++ ac_cv_have_x="have_x=no";; #( ++ *) ++ # Record where we found X for the cache. ++ ac_cv_have_x="have_x=yes\ ++ ac_x_includes='$ac_x_includes'\ ++ ac_x_libraries='$ac_x_libraries'" + esac +-{ echo "$as_me:$LINENO: checking for $ac_header" >&5 +-echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6; } +-if { as_var=$as_ac_Header; eval "test \"\${$as_var+set}\" = set"; }; then +- echo $ECHO_N "(cached) $ECHO_C" >&6 +-else +- eval "$as_ac_Header=\$ac_header_preproc" + fi +-ac_res=`eval echo '${'$as_ac_Header'}'` +- { echo "$as_me:$LINENO: result: $ac_res" >&5 +-echo "${ECHO_T}$ac_res" >&6; } ++;; #( ++ *) have_x=yes;; ++ esac ++ eval "$ac_cv_have_x" ++fi # $with_x != no + ++if test "$have_x" != yes; then ++ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $have_x" >&5 ++$as_echo "$have_x" >&6; } ++ no_x=yes ++else ++ # If each of the values was on the command line, it overrides each guess. ++ test "x$x_includes" = xNONE && x_includes=$ac_x_includes ++ test "x$x_libraries" = xNONE && x_libraries=$ac_x_libraries ++ # Update the cache value to reflect the command line values. ++ ac_cv_have_x="have_x=yes\ ++ ac_x_includes='$x_includes'\ ++ ac_x_libraries='$x_libraries'" ++ { $as_echo "$as_me:${as_lineno-$LINENO}: result: libraries $x_libraries, headers $x_includes" >&5 ++$as_echo "libraries $x_libraries, headers $x_includes" >&6; } + fi +-if test `eval echo '${'$as_ac_Header'}'` = yes; then +- cat >>confdefs.h <<_ACEOF +-#define `echo "HAVE_$ac_header" | $as_tr_cpp` 1 +-_ACEOF + +-fi ++if test "$no_x" = yes; then ++ # Not all programs may use this symbol, but it does not hurt to define it. + +-done ++$as_echo "#define X_DISPLAY_MISSING 1" >>confdefs.h ++ ++ X_CFLAGS= X_PRE_LIBS= X_LIBS= X_EXTRA_LIBS= ++else ++ if test -n "$x_includes"; then ++ X_CFLAGS="$X_CFLAGS -I$x_includes" ++ fi + ++ # It would also be nice to do this for all -L options, not just this one. ++ if test -n "$x_libraries"; then ++ X_LIBS="$X_LIBS -L$x_libraries" ++ # For Solaris; some versions of Sun CC require a space after -R and ++ # others require no space. Words are not sufficient . . . . ++ { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether -R must be followed by a space" >&5 ++$as_echo_n "checking whether -R must be followed by a space... " >&6; } ++ ac_xsave_LIBS=$LIBS; LIBS="$LIBS -R$x_libraries" ++ ac_xsave_c_werror_flag=$ac_c_werror_flag ++ ac_c_werror_flag=yes ++ cat confdefs.h - <<_ACEOF >conftest.$ac_ext ++/* end confdefs.h. */ + +-for ac_func in load_add_on +-do +-as_ac_var=`echo "ac_cv_func_$ac_func" | $as_tr_sh` +-{ echo "$as_me:$LINENO: checking for $ac_func" >&5 +-echo $ECHO_N "checking for $ac_func... $ECHO_C" >&6; } +-if { as_var=$as_ac_var; eval "test \"\${$as_var+set}\" = set"; }; then +- echo $ECHO_N "(cached) $ECHO_C" >&6 +-else +- cat >conftest.$ac_ext <<_ACEOF +-/* confdefs.h. */ ++int ++main () ++{ ++ ++ ; ++ return 0; ++} + _ACEOF +-cat confdefs.h >>conftest.$ac_ext +-cat >>conftest.$ac_ext <<_ACEOF ++if ac_fn_c_try_link "$LINENO"; then : ++ { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 ++$as_echo "no" >&6; } ++ X_LIBS="$X_LIBS -R$x_libraries" ++else ++ LIBS="$ac_xsave_LIBS -R $x_libraries" ++ cat confdefs.h - <<_ACEOF >conftest.$ac_ext + /* end confdefs.h. */ +-/* Define $ac_func to an innocuous variant, in case declares $ac_func. +- For example, HP-UX 11i declares gettimeofday. */ +-#define $ac_func innocuous_$ac_func + +-/* System header to define __stub macros and hopefully few prototypes, +- which can conflict with char $ac_func (); below. +- Prefer to if __STDC__ is defined, since +- exists even on freestanding compilers. */ ++int ++main () ++{ + +-#ifdef __STDC__ +-# include +-#else +-# include +-#endif ++ ; ++ return 0; ++} ++_ACEOF ++if ac_fn_c_try_link "$LINENO"; then : ++ { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5 ++$as_echo "yes" >&6; } ++ X_LIBS="$X_LIBS -R $x_libraries" ++else ++ { $as_echo "$as_me:${as_lineno-$LINENO}: result: neither works" >&5 ++$as_echo "neither works" >&6; } ++fi ++rm -f core conftest.err conftest.$ac_objext \ ++ conftest$ac_exeext conftest.$ac_ext ++fi ++rm -f core conftest.err conftest.$ac_objext \ ++ conftest$ac_exeext conftest.$ac_ext ++ ac_c_werror_flag=$ac_xsave_c_werror_flag ++ LIBS=$ac_xsave_LIBS ++ fi ++ ++ # Check for system-dependent libraries X programs must link with. ++ # Do this before checking for the system-independent R6 libraries ++ # (-lICE), since we may need -lsocket or whatever for X linking. + +-#undef $ac_func ++ if test "$ISC" = yes; then ++ X_EXTRA_LIBS="$X_EXTRA_LIBS -lnsl_s -linet" ++ else ++ # Martyn Johnson says this is needed for Ultrix, if the X ++ # libraries were built with DECnet support. And Karl Berry says ++ # the Alpha needs dnet_stub (dnet does not exist). ++ ac_xsave_LIBS="$LIBS"; LIBS="$LIBS $X_LIBS -lX11" ++ cat confdefs.h - <<_ACEOF >conftest.$ac_ext ++/* end confdefs.h. */ + + /* Override any GCC internal prototype to avoid an error. + Use char because int might match the return type of a GCC +@@ -30407,380 +27432,68 @@ cat >>conftest.$ac_ext <<_ACEOF + #ifdef __cplusplus + extern "C" + #endif +-char $ac_func (); +-/* The GNU C library defines this for functions which it implements +- to always fail with ENOSYS. Some functions are actually named +- something starting with __ and the normal name is an alias. */ +-#if defined __stub_$ac_func || defined __stub___$ac_func +-choke me +-#endif +- ++char XOpenDisplay (); + int + main () + { +-return $ac_func (); ++return XOpenDisplay (); + ; + return 0; + } + _ACEOF +-rm -f conftest.$ac_objext conftest$ac_exeext +-if { (ac_try="$ac_link" +-case "(($ac_try" in +- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; +- *) ac_try_echo=$ac_try;; +-esac +-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 +- (eval "$ac_link") 2>conftest.er1 +- ac_status=$? +- grep -v '^ *+' conftest.er1 >conftest.err +- rm -f conftest.er1 +- cat conftest.err >&5 +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); } && { +- test -z "$ac_c_werror_flag" || +- test ! -s conftest.err +- } && test -s conftest$ac_exeext && +- $as_test_x conftest$ac_exeext; then +- eval "$as_ac_var=yes" ++if ac_fn_c_try_link "$LINENO"; then : ++ + else +- echo "$as_me: failed program was:" >&5 +-sed 's/^/| /' conftest.$ac_ext >&5 ++ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for dnet_ntoa in -ldnet" >&5 ++$as_echo_n "checking for dnet_ntoa in -ldnet... " >&6; } ++if ${ac_cv_lib_dnet_dnet_ntoa+:} false; then : ++ $as_echo_n "(cached) " >&6 ++else ++ ac_check_lib_save_LIBS=$LIBS ++LIBS="-ldnet $LIBS" ++cat confdefs.h - <<_ACEOF >conftest.$ac_ext ++/* end confdefs.h. */ + +- eval "$as_ac_var=no" ++/* Override any GCC internal prototype to avoid an error. ++ Use char because int might match the return type of a GCC ++ builtin and then its argument prototype would still apply. */ ++#ifdef __cplusplus ++extern "C" ++#endif ++char dnet_ntoa (); ++int ++main () ++{ ++return dnet_ntoa (); ++ ; ++ return 0; ++} ++_ACEOF ++if ac_fn_c_try_link "$LINENO"; then : ++ ac_cv_lib_dnet_dnet_ntoa=yes ++else ++ ac_cv_lib_dnet_dnet_ntoa=no + fi +- +-rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ +- conftest$ac_exeext conftest.$ac_ext ++rm -f core conftest.err conftest.$ac_objext \ ++ conftest$ac_exeext conftest.$ac_ext ++LIBS=$ac_check_lib_save_LIBS + fi +-ac_res=`eval echo '${'$as_ac_var'}'` +- { echo "$as_me:$LINENO: result: $ac_res" >&5 +-echo "${ECHO_T}$ac_res" >&6; } +-if test `eval echo '${'$as_ac_var'}'` = yes; then +- cat >>confdefs.h <<_ACEOF +-#define `echo "HAVE_$ac_func" | $as_tr_cpp` 1 +-_ACEOF +- +-cat >>confdefs.h <<\_ACEOF +-#define HAVE_DL_BEOS 1 +-_ACEOF +- +- ac_cv_have_plugins=yes ++{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_dnet_dnet_ntoa" >&5 ++$as_echo "$ac_cv_lib_dnet_dnet_ntoa" >&6; } ++if test "x$ac_cv_lib_dnet_dnet_ntoa" = xyes; then : ++ X_EXTRA_LIBS="$X_EXTRA_LIBS -ldnet" + fi +-done + +-fi +- +-# Only test for dlopen() if the others didn't work +-if test "${ac_cv_have_plugins}" = "no"; then +- +- +-for ac_header in dlfcn.h sys/dl.h +-do +-as_ac_Header=`echo "ac_cv_header_$ac_header" | $as_tr_sh` +-if { as_var=$as_ac_Header; eval "test \"\${$as_var+set}\" = set"; }; then +- { echo "$as_me:$LINENO: checking for $ac_header" >&5 +-echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6; } +-if { as_var=$as_ac_Header; eval "test \"\${$as_var+set}\" = set"; }; then +- echo $ECHO_N "(cached) $ECHO_C" >&6 +-fi +-ac_res=`eval echo '${'$as_ac_Header'}'` +- { echo "$as_me:$LINENO: result: $ac_res" >&5 +-echo "${ECHO_T}$ac_res" >&6; } +-else +- # Is the header compilable? +-{ echo "$as_me:$LINENO: checking $ac_header usability" >&5 +-echo $ECHO_N "checking $ac_header usability... $ECHO_C" >&6; } +-cat >conftest.$ac_ext <<_ACEOF +-/* confdefs.h. */ +-_ACEOF +-cat confdefs.h >>conftest.$ac_ext +-cat >>conftest.$ac_ext <<_ACEOF +-/* end confdefs.h. */ +-$ac_includes_default +-#include <$ac_header> +-_ACEOF +-rm -f conftest.$ac_objext +-if { (ac_try="$ac_compile" +-case "(($ac_try" in +- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; +- *) ac_try_echo=$ac_try;; +-esac +-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 +- (eval "$ac_compile") 2>conftest.er1 +- ac_status=$? +- grep -v '^ *+' conftest.er1 >conftest.err +- rm -f conftest.er1 +- cat conftest.err >&5 +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); } && { +- test -z "$ac_c_werror_flag" || +- test ! -s conftest.err +- } && test -s conftest.$ac_objext; then +- ac_header_compiler=yes +-else +- echo "$as_me: failed program was:" >&5 +-sed 's/^/| /' conftest.$ac_ext >&5 +- +- ac_header_compiler=no +-fi +- +-rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext +-{ echo "$as_me:$LINENO: result: $ac_header_compiler" >&5 +-echo "${ECHO_T}$ac_header_compiler" >&6; } +- +-# Is the header present? +-{ echo "$as_me:$LINENO: checking $ac_header presence" >&5 +-echo $ECHO_N "checking $ac_header presence... $ECHO_C" >&6; } +-cat >conftest.$ac_ext <<_ACEOF +-/* confdefs.h. */ +-_ACEOF +-cat confdefs.h >>conftest.$ac_ext +-cat >>conftest.$ac_ext <<_ACEOF +-/* end confdefs.h. */ +-#include <$ac_header> +-_ACEOF +-if { (ac_try="$ac_cpp conftest.$ac_ext" +-case "(($ac_try" in +- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; +- *) ac_try_echo=$ac_try;; +-esac +-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 +- (eval "$ac_cpp conftest.$ac_ext") 2>conftest.er1 +- ac_status=$? +- grep -v '^ *+' conftest.er1 >conftest.err +- rm -f conftest.er1 +- cat conftest.err >&5 +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); } >/dev/null && { +- test -z "$ac_c_preproc_warn_flag$ac_c_werror_flag" || +- test ! -s conftest.err +- }; then +- ac_header_preproc=yes +-else +- echo "$as_me: failed program was:" >&5 +-sed 's/^/| /' conftest.$ac_ext >&5 +- +- ac_header_preproc=no +-fi +- +-rm -f conftest.err conftest.$ac_ext +-{ echo "$as_me:$LINENO: result: $ac_header_preproc" >&5 +-echo "${ECHO_T}$ac_header_preproc" >&6; } +- +-# So? What about this header? +-case $ac_header_compiler:$ac_header_preproc:$ac_c_preproc_warn_flag in +- yes:no: ) +- { echo "$as_me:$LINENO: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&5 +-echo "$as_me: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&2;} +- { echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the compiler's result" >&5 +-echo "$as_me: WARNING: $ac_header: proceeding with the compiler's result" >&2;} +- ac_header_preproc=yes +- ;; +- no:yes:* ) +- { echo "$as_me:$LINENO: WARNING: $ac_header: present but cannot be compiled" >&5 +-echo "$as_me: WARNING: $ac_header: present but cannot be compiled" >&2;} +- { echo "$as_me:$LINENO: WARNING: $ac_header: check for missing prerequisite headers?" >&5 +-echo "$as_me: WARNING: $ac_header: check for missing prerequisite headers?" >&2;} +- { echo "$as_me:$LINENO: WARNING: $ac_header: see the Autoconf documentation" >&5 +-echo "$as_me: WARNING: $ac_header: see the Autoconf documentation" >&2;} +- { echo "$as_me:$LINENO: WARNING: $ac_header: section \"Present But Cannot Be Compiled\"" >&5 +-echo "$as_me: WARNING: $ac_header: section \"Present But Cannot Be Compiled\"" >&2;} +- { echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the preprocessor's result" >&5 +-echo "$as_me: WARNING: $ac_header: proceeding with the preprocessor's result" >&2;} +- { echo "$as_me:$LINENO: WARNING: $ac_header: in the future, the compiler will take precedence" >&5 +-echo "$as_me: WARNING: $ac_header: in the future, the compiler will take precedence" >&2;} +- +- ;; +-esac +-{ echo "$as_me:$LINENO: checking for $ac_header" >&5 +-echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6; } +-if { as_var=$as_ac_Header; eval "test \"\${$as_var+set}\" = set"; }; then +- echo $ECHO_N "(cached) $ECHO_C" >&6 +-else +- eval "$as_ac_Header=\$ac_header_preproc" +-fi +-ac_res=`eval echo '${'$as_ac_Header'}'` +- { echo "$as_me:$LINENO: result: $ac_res" >&5 +-echo "${ECHO_T}$ac_res" >&6; } +- +-fi +-if test `eval echo '${'$as_ac_Header'}'` = yes; then +- cat >>confdefs.h <<_ACEOF +-#define `echo "HAVE_$ac_header" | $as_tr_cpp` 1 +-_ACEOF +- +-fi +- +-done +- +- ac_cv_my_have_dlopen=no +- { echo "$as_me:$LINENO: checking for dlopen" >&5 +-echo $ECHO_N "checking for dlopen... $ECHO_C" >&6; } +-if test "${ac_cv_func_dlopen+set}" = set; then +- echo $ECHO_N "(cached) $ECHO_C" >&6 +-else +- cat >conftest.$ac_ext <<_ACEOF +-/* confdefs.h. */ +-_ACEOF +-cat confdefs.h >>conftest.$ac_ext +-cat >>conftest.$ac_ext <<_ACEOF +-/* end confdefs.h. */ +-/* Define dlopen to an innocuous variant, in case declares dlopen. +- For example, HP-UX 11i declares gettimeofday. */ +-#define dlopen innocuous_dlopen +- +-/* System header to define __stub macros and hopefully few prototypes, +- which can conflict with char dlopen (); below. +- Prefer to if __STDC__ is defined, since +- exists even on freestanding compilers. */ +- +-#ifdef __STDC__ +-# include +-#else +-# include +-#endif +- +-#undef dlopen +- +-/* Override any GCC internal prototype to avoid an error. +- Use char because int might match the return type of a GCC +- builtin and then its argument prototype would still apply. */ +-#ifdef __cplusplus +-extern "C" +-#endif +-char dlopen (); +-/* The GNU C library defines this for functions which it implements +- to always fail with ENOSYS. Some functions are actually named +- something starting with __ and the normal name is an alias. */ +-#if defined __stub_dlopen || defined __stub___dlopen +-choke me +-#endif +- +-int +-main () +-{ +-return dlopen (); +- ; +- return 0; +-} +-_ACEOF +-rm -f conftest.$ac_objext conftest$ac_exeext +-if { (ac_try="$ac_link" +-case "(($ac_try" in +- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; +- *) ac_try_echo=$ac_try;; +-esac +-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 +- (eval "$ac_link") 2>conftest.er1 +- ac_status=$? +- grep -v '^ *+' conftest.er1 >conftest.err +- rm -f conftest.er1 +- cat conftest.err >&5 +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); } && { +- test -z "$ac_c_werror_flag" || +- test ! -s conftest.err +- } && test -s conftest$ac_exeext && +- $as_test_x conftest$ac_exeext; then +- ac_cv_func_dlopen=yes +-else +- echo "$as_me: failed program was:" >&5 +-sed 's/^/| /' conftest.$ac_ext >&5 +- +- ac_cv_func_dlopen=no +-fi +- +-rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ +- conftest$ac_exeext conftest.$ac_ext +-fi +-{ echo "$as_me:$LINENO: result: $ac_cv_func_dlopen" >&5 +-echo "${ECHO_T}$ac_cv_func_dlopen" >&6; } +-if test $ac_cv_func_dlopen = yes; then +- ac_cv_my_have_dlopen=yes +-else +- { echo "$as_me:$LINENO: checking for dlopen in -ldl" >&5 +-echo $ECHO_N "checking for dlopen in -ldl... $ECHO_C" >&6; } +-if test "${ac_cv_lib_dl_dlopen+set}" = set; then +- echo $ECHO_N "(cached) $ECHO_C" >&6 +-else +- ac_check_lib_save_LIBS=$LIBS +-LIBS="-ldl $LIBS" +-cat >conftest.$ac_ext <<_ACEOF +-/* confdefs.h. */ +-_ACEOF +-cat confdefs.h >>conftest.$ac_ext +-cat >>conftest.$ac_ext <<_ACEOF +-/* end confdefs.h. */ +- +-/* Override any GCC internal prototype to avoid an error. +- Use char because int might match the return type of a GCC +- builtin and then its argument prototype would still apply. */ +-#ifdef __cplusplus +-extern "C" +-#endif +-char dlopen (); +-int +-main () +-{ +-return dlopen (); +- ; +- return 0; +-} +-_ACEOF +-rm -f conftest.$ac_objext conftest$ac_exeext +-if { (ac_try="$ac_link" +-case "(($ac_try" in +- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; +- *) ac_try_echo=$ac_try;; +-esac +-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 +- (eval "$ac_link") 2>conftest.er1 +- ac_status=$? +- grep -v '^ *+' conftest.er1 >conftest.err +- rm -f conftest.er1 +- cat conftest.err >&5 +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); } && { +- test -z "$ac_c_werror_flag" || +- test ! -s conftest.err +- } && test -s conftest$ac_exeext && +- $as_test_x conftest$ac_exeext; then +- ac_cv_lib_dl_dlopen=yes +-else +- echo "$as_me: failed program was:" >&5 +-sed 's/^/| /' conftest.$ac_ext >&5 +- +- ac_cv_lib_dl_dlopen=no +-fi +- +-rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ +- conftest$ac_exeext conftest.$ac_ext +-LIBS=$ac_check_lib_save_LIBS +-fi +-{ echo "$as_me:$LINENO: result: $ac_cv_lib_dl_dlopen" >&5 +-echo "${ECHO_T}$ac_cv_lib_dl_dlopen" >&6; } +-if test $ac_cv_lib_dl_dlopen = yes; then +- ac_cv_my_have_dlopen=yes +- +- for element in vlc; do +- eval "LDFLAGS_${element}="'"'"-ldl "'$'"{LDFLAGS_${element}} "'"' +- am_modules_with_ldflags="${am_modules_with_ldflags} ${element}" +- done +- +-else +- { echo "$as_me:$LINENO: checking for dlopen in -lsvld" >&5 +-echo $ECHO_N "checking for dlopen in -lsvld... $ECHO_C" >&6; } +-if test "${ac_cv_lib_svld_dlopen+set}" = set; then +- echo $ECHO_N "(cached) $ECHO_C" >&6 +-else +- ac_check_lib_save_LIBS=$LIBS +-LIBS="-lsvld $LIBS" +-cat >conftest.$ac_ext <<_ACEOF +-/* confdefs.h. */ +-_ACEOF +-cat confdefs.h >>conftest.$ac_ext +-cat >>conftest.$ac_ext <<_ACEOF +-/* end confdefs.h. */ ++ if test $ac_cv_lib_dnet_dnet_ntoa = no; then ++ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for dnet_ntoa in -ldnet_stub" >&5 ++$as_echo_n "checking for dnet_ntoa in -ldnet_stub... " >&6; } ++if ${ac_cv_lib_dnet_stub_dnet_ntoa+:} false; then : ++ $as_echo_n "(cached) " >&6 ++else ++ ac_check_lib_save_LIBS=$LIBS ++LIBS="-ldnet_stub $LIBS" ++cat confdefs.h - <<_ACEOF >conftest.$ac_ext ++/* end confdefs.h. */ + + /* Override any GCC internal prototype to avoid an error. + Use char because int might match the return type of a GCC +@@ -30788,288 +27501,59 @@ cat >>conftest.$ac_ext <<_ACEOF + #ifdef __cplusplus + extern "C" + #endif +-char dlopen (); +-int +-main () +-{ +-return dlopen (); +- ; +- return 0; +-} +-_ACEOF +-rm -f conftest.$ac_objext conftest$ac_exeext +-if { (ac_try="$ac_link" +-case "(($ac_try" in +- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; +- *) ac_try_echo=$ac_try;; +-esac +-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 +- (eval "$ac_link") 2>conftest.er1 +- ac_status=$? +- grep -v '^ *+' conftest.er1 >conftest.err +- rm -f conftest.er1 +- cat conftest.err >&5 +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); } && { +- test -z "$ac_c_werror_flag" || +- test ! -s conftest.err +- } && test -s conftest$ac_exeext && +- $as_test_x conftest$ac_exeext; then +- ac_cv_lib_svld_dlopen=yes +-else +- echo "$as_me: failed program was:" >&5 +-sed 's/^/| /' conftest.$ac_ext >&5 +- +- ac_cv_lib_svld_dlopen=no +-fi +- +-rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ +- conftest$ac_exeext conftest.$ac_ext +-LIBS=$ac_check_lib_save_LIBS +-fi +-{ echo "$as_me:$LINENO: result: $ac_cv_lib_svld_dlopen" >&5 +-echo "${ECHO_T}$ac_cv_lib_svld_dlopen" >&6; } +-if test $ac_cv_lib_svld_dlopen = yes; then +- ac_cv_my_have_dlopen=yes +- +- for element in vlc; do +- eval "LDFLAGS_${element}="'"'"-lsvld "'$'"{LDFLAGS_${element}} "'"' +- am_modules_with_ldflags="${am_modules_with_ldflags} ${element}" +- done +- +-fi +- +-fi +- +-fi +- +- if test "${ac_cv_my_have_dlopen}" = "yes"; then +- +-cat >>confdefs.h <<\_ACEOF +-#define HAVE_DL_DLOPEN 1 +-_ACEOF +- +- ac_cv_have_plugins=yes +- fi +-fi +- +-if test "${SYS}" != "mingw32" -a "${SYS}" != "mingwce"; then +-THREAD_LIB=error +-if test "${THREAD_LIB}" = "error"; then +- { echo "$as_me:$LINENO: checking for main in -lpthread" >&5 +-echo $ECHO_N "checking for main in -lpthread... $ECHO_C" >&6; } +-if test "${ac_cv_lib_pthread_main+set}" = set; then +- echo $ECHO_N "(cached) $ECHO_C" >&6 +-else +- ac_check_lib_save_LIBS=$LIBS +-LIBS="-lpthread $LIBS" +-cat >conftest.$ac_ext <<_ACEOF +-/* confdefs.h. */ +-_ACEOF +-cat confdefs.h >>conftest.$ac_ext +-cat >>conftest.$ac_ext <<_ACEOF +-/* end confdefs.h. */ +- +- ++char dnet_ntoa (); + int + main () + { +-return main (); ++return dnet_ntoa (); + ; + return 0; + } + _ACEOF +-rm -f conftest.$ac_objext conftest$ac_exeext +-if { (ac_try="$ac_link" +-case "(($ac_try" in +- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; +- *) ac_try_echo=$ac_try;; +-esac +-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 +- (eval "$ac_link") 2>conftest.er1 +- ac_status=$? +- grep -v '^ *+' conftest.er1 >conftest.err +- rm -f conftest.er1 +- cat conftest.err >&5 +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); } && { +- test -z "$ac_c_werror_flag" || +- test ! -s conftest.err +- } && test -s conftest$ac_exeext && +- $as_test_x conftest$ac_exeext; then +- ac_cv_lib_pthread_main=yes ++if ac_fn_c_try_link "$LINENO"; then : ++ ac_cv_lib_dnet_stub_dnet_ntoa=yes + else +- echo "$as_me: failed program was:" >&5 +-sed 's/^/| /' conftest.$ac_ext >&5 +- +- ac_cv_lib_pthread_main=no ++ ac_cv_lib_dnet_stub_dnet_ntoa=no + fi +- +-rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ +- conftest$ac_exeext conftest.$ac_ext ++rm -f core conftest.err conftest.$ac_objext \ ++ conftest$ac_exeext conftest.$ac_ext + LIBS=$ac_check_lib_save_LIBS + fi +-{ echo "$as_me:$LINENO: result: $ac_cv_lib_pthread_main" >&5 +-echo "${ECHO_T}$ac_cv_lib_pthread_main" >&6; } +-if test $ac_cv_lib_pthread_main = yes; then +- THREAD_LIB="-lpthread" ++{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_dnet_stub_dnet_ntoa" >&5 ++$as_echo "$ac_cv_lib_dnet_stub_dnet_ntoa" >&6; } ++if test "x$ac_cv_lib_dnet_stub_dnet_ntoa" = xyes; then : ++ X_EXTRA_LIBS="$X_EXTRA_LIBS -ldnet_stub" + fi + ++ fi + fi +-if test "${THREAD_LIB}" = "error"; then +- { echo "$as_me:$LINENO: checking for main in -lpthreads" >&5 +-echo $ECHO_N "checking for main in -lpthreads... $ECHO_C" >&6; } +-if test "${ac_cv_lib_pthreads_main+set}" = set; then +- echo $ECHO_N "(cached) $ECHO_C" >&6 +-else +- ac_check_lib_save_LIBS=$LIBS +-LIBS="-lpthreads $LIBS" +-cat >conftest.$ac_ext <<_ACEOF +-/* confdefs.h. */ +-_ACEOF +-cat confdefs.h >>conftest.$ac_ext +-cat >>conftest.$ac_ext <<_ACEOF +-/* end confdefs.h. */ +- +- +-int +-main () +-{ +-return main (); +- ; +- return 0; +-} +-_ACEOF +-rm -f conftest.$ac_objext conftest$ac_exeext +-if { (ac_try="$ac_link" +-case "(($ac_try" in +- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; +- *) ac_try_echo=$ac_try;; +-esac +-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 +- (eval "$ac_link") 2>conftest.er1 +- ac_status=$? +- grep -v '^ *+' conftest.er1 >conftest.err +- rm -f conftest.er1 +- cat conftest.err >&5 +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); } && { +- test -z "$ac_c_werror_flag" || +- test ! -s conftest.err +- } && test -s conftest$ac_exeext && +- $as_test_x conftest$ac_exeext; then +- ac_cv_lib_pthreads_main=yes +-else +- echo "$as_me: failed program was:" >&5 +-sed 's/^/| /' conftest.$ac_ext >&5 ++rm -f core conftest.err conftest.$ac_objext \ ++ conftest$ac_exeext conftest.$ac_ext ++ LIBS="$ac_xsave_LIBS" + +- ac_cv_lib_pthreads_main=no +-fi ++ # msh@cis.ufl.edu says -lnsl (and -lsocket) are needed for his 386/AT, ++ # to get the SysV transport functions. ++ # Chad R. Larson says the Pyramis MIS-ES running DC/OSx (SVR4) ++ # needs -lnsl. ++ # The nsl library prevents programs from opening the X display ++ # on Irix 5.2, according to T.E. Dickey. ++ # The functions gethostbyname, getservbyname, and inet_addr are ++ # in -lbsd on LynxOS 3.0.1/i386, according to Lars Hecking. ++ ac_fn_c_check_func "$LINENO" "gethostbyname" "ac_cv_func_gethostbyname" ++if test "x$ac_cv_func_gethostbyname" = xyes; then : + +-rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ +- conftest$ac_exeext conftest.$ac_ext +-LIBS=$ac_check_lib_save_LIBS +-fi +-{ echo "$as_me:$LINENO: result: $ac_cv_lib_pthreads_main" >&5 +-echo "${ECHO_T}$ac_cv_lib_pthreads_main" >&6; } +-if test $ac_cv_lib_pthreads_main = yes; then +- THREAD_LIB="-lpthreads" + fi + +-fi +-if test "${THREAD_LIB}" = "error"; then +- { echo "$as_me:$LINENO: checking for main in -lc_r" >&5 +-echo $ECHO_N "checking for main in -lc_r... $ECHO_C" >&6; } +-if test "${ac_cv_lib_c_r_main+set}" = set; then +- echo $ECHO_N "(cached) $ECHO_C" >&6 ++ if test $ac_cv_func_gethostbyname = no; then ++ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for gethostbyname in -lnsl" >&5 ++$as_echo_n "checking for gethostbyname in -lnsl... " >&6; } ++if ${ac_cv_lib_nsl_gethostbyname+:} false; then : ++ $as_echo_n "(cached) " >&6 + else + ac_check_lib_save_LIBS=$LIBS +-LIBS="-lc_r $LIBS" +-cat >conftest.$ac_ext <<_ACEOF +-/* confdefs.h. */ +-_ACEOF +-cat confdefs.h >>conftest.$ac_ext +-cat >>conftest.$ac_ext <<_ACEOF +-/* end confdefs.h. */ +- +- +-int +-main () +-{ +-return main (); +- ; +- return 0; +-} +-_ACEOF +-rm -f conftest.$ac_objext conftest$ac_exeext +-if { (ac_try="$ac_link" +-case "(($ac_try" in +- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; +- *) ac_try_echo=$ac_try;; +-esac +-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 +- (eval "$ac_link") 2>conftest.er1 +- ac_status=$? +- grep -v '^ *+' conftest.er1 >conftest.err +- rm -f conftest.er1 +- cat conftest.err >&5 +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); } && { +- test -z "$ac_c_werror_flag" || +- test ! -s conftest.err +- } && test -s conftest$ac_exeext && +- $as_test_x conftest$ac_exeext; then +- ac_cv_lib_c_r_main=yes +-else +- echo "$as_me: failed program was:" >&5 +-sed 's/^/| /' conftest.$ac_ext >&5 +- +- ac_cv_lib_c_r_main=no +-fi +- +-rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ +- conftest$ac_exeext conftest.$ac_ext +-LIBS=$ac_check_lib_save_LIBS +-fi +-{ echo "$as_me:$LINENO: result: $ac_cv_lib_c_r_main" >&5 +-echo "${ECHO_T}$ac_cv_lib_c_r_main" >&6; } +-if test $ac_cv_lib_c_r_main = yes; then +- THREAD_LIB="-lc_r" +-fi +- +-fi +-if test "${THREAD_LIB}" = "error"; then +- +-for ac_func in pthread_mutex_lock +-do +-as_ac_var=`echo "ac_cv_func_$ac_func" | $as_tr_sh` +-{ echo "$as_me:$LINENO: checking for $ac_func" >&5 +-echo $ECHO_N "checking for $ac_func... $ECHO_C" >&6; } +-if { as_var=$as_ac_var; eval "test \"\${$as_var+set}\" = set"; }; then +- echo $ECHO_N "(cached) $ECHO_C" >&6 +-else +- cat >conftest.$ac_ext <<_ACEOF +-/* confdefs.h. */ +-_ACEOF +-cat confdefs.h >>conftest.$ac_ext +-cat >>conftest.$ac_ext <<_ACEOF ++LIBS="-lnsl $LIBS" ++cat confdefs.h - <<_ACEOF >conftest.$ac_ext + /* end confdefs.h. */ +-/* Define $ac_func to an innocuous variant, in case declares $ac_func. +- For example, HP-UX 11i declares gettimeofday. */ +-#define $ac_func innocuous_$ac_func +- +-/* System header to define __stub macros and hopefully few prototypes, +- which can conflict with char $ac_func (); below. +- Prefer to if __STDC__ is defined, since +- exists even on freestanding compilers. */ +- +-#ifdef __STDC__ +-# include +-#else +-# include +-#endif +- +-#undef $ac_func + + /* Override any GCC internal prototype to avoid an error. + Use char because int might match the return type of a GCC +@@ -31077,77 +27561,39 @@ cat >>conftest.$ac_ext <<_ACEOF + #ifdef __cplusplus + extern "C" + #endif +-char $ac_func (); +-/* The GNU C library defines this for functions which it implements +- to always fail with ENOSYS. Some functions are actually named +- something starting with __ and the normal name is an alias. */ +-#if defined __stub_$ac_func || defined __stub___$ac_func +-choke me +-#endif +- ++char gethostbyname (); + int + main () + { +-return $ac_func (); ++return gethostbyname (); + ; + return 0; + } + _ACEOF +-rm -f conftest.$ac_objext conftest$ac_exeext +-if { (ac_try="$ac_link" +-case "(($ac_try" in +- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; +- *) ac_try_echo=$ac_try;; +-esac +-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 +- (eval "$ac_link") 2>conftest.er1 +- ac_status=$? +- grep -v '^ *+' conftest.er1 >conftest.err +- rm -f conftest.er1 +- cat conftest.err >&5 +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); } && { +- test -z "$ac_c_werror_flag" || +- test ! -s conftest.err +- } && test -s conftest$ac_exeext && +- $as_test_x conftest$ac_exeext; then +- eval "$as_ac_var=yes" ++if ac_fn_c_try_link "$LINENO"; then : ++ ac_cv_lib_nsl_gethostbyname=yes + else +- echo "$as_me: failed program was:" >&5 +-sed 's/^/| /' conftest.$ac_ext >&5 +- +- eval "$as_ac_var=no" +-fi +- +-rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ +- conftest$ac_exeext conftest.$ac_ext ++ ac_cv_lib_nsl_gethostbyname=no + fi +-ac_res=`eval echo '${'$as_ac_var'}'` +- { echo "$as_me:$LINENO: result: $ac_res" >&5 +-echo "${ECHO_T}$ac_res" >&6; } +-if test `eval echo '${'$as_ac_var'}'` = yes; then +- cat >>confdefs.h <<_ACEOF +-#define `echo "HAVE_$ac_func" | $as_tr_cpp` 1 +-_ACEOF +- ++rm -f core conftest.err conftest.$ac_objext \ ++ conftest$ac_exeext conftest.$ac_ext ++LIBS=$ac_check_lib_save_LIBS + fi +-done +- +- THREAD_LIB="" ++{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_nsl_gethostbyname" >&5 ++$as_echo "$ac_cv_lib_nsl_gethostbyname" >&6; } ++if test "x$ac_cv_lib_nsl_gethostbyname" = xyes; then : ++ X_EXTRA_LIBS="$X_EXTRA_LIBS -lnsl" + fi + +-{ echo "$as_me:$LINENO: checking for cthread_fork in -lthreads" >&5 +-echo $ECHO_N "checking for cthread_fork in -lthreads... $ECHO_C" >&6; } +-if test "${ac_cv_lib_threads_cthread_fork+set}" = set; then +- echo $ECHO_N "(cached) $ECHO_C" >&6 ++ if test $ac_cv_lib_nsl_gethostbyname = no; then ++ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for gethostbyname in -lbsd" >&5 ++$as_echo_n "checking for gethostbyname in -lbsd... " >&6; } ++if ${ac_cv_lib_bsd_gethostbyname+:} false; then : ++ $as_echo_n "(cached) " >&6 + else + ac_check_lib_save_LIBS=$LIBS +-LIBS="-lthreads $LIBS" +-cat >conftest.$ac_ext <<_ACEOF +-/* confdefs.h. */ +-_ACEOF +-cat confdefs.h >>conftest.$ac_ext +-cat >>conftest.$ac_ext <<_ACEOF ++LIBS="-lbsd $LIBS" ++cat confdefs.h - <<_ACEOF >conftest.$ac_ext + /* end confdefs.h. */ + + /* Override any GCC internal prototype to avoid an error. +@@ -31156,68 +27602,54 @@ cat >>conftest.$ac_ext <<_ACEOF + #ifdef __cplusplus + extern "C" + #endif +-char cthread_fork (); ++char gethostbyname (); + int + main () + { +-return cthread_fork (); ++return gethostbyname (); + ; + return 0; + } + _ACEOF +-rm -f conftest.$ac_objext conftest$ac_exeext +-if { (ac_try="$ac_link" +-case "(($ac_try" in +- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; +- *) ac_try_echo=$ac_try;; +-esac +-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 +- (eval "$ac_link") 2>conftest.er1 +- ac_status=$? +- grep -v '^ *+' conftest.er1 >conftest.err +- rm -f conftest.er1 +- cat conftest.err >&5 +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); } && { +- test -z "$ac_c_werror_flag" || +- test ! -s conftest.err +- } && test -s conftest$ac_exeext && +- $as_test_x conftest$ac_exeext; then +- ac_cv_lib_threads_cthread_fork=yes ++if ac_fn_c_try_link "$LINENO"; then : ++ ac_cv_lib_bsd_gethostbyname=yes + else +- echo "$as_me: failed program was:" >&5 +-sed 's/^/| /' conftest.$ac_ext >&5 +- +- ac_cv_lib_threads_cthread_fork=no ++ ac_cv_lib_bsd_gethostbyname=no + fi +- +-rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ +- conftest$ac_exeext conftest.$ac_ext ++rm -f core conftest.err conftest.$ac_objext \ ++ conftest$ac_exeext conftest.$ac_ext + LIBS=$ac_check_lib_save_LIBS + fi +-{ echo "$as_me:$LINENO: result: $ac_cv_lib_threads_cthread_fork" >&5 +-echo "${ECHO_T}$ac_cv_lib_threads_cthread_fork" >&6; } +-if test $ac_cv_lib_threads_cthread_fork = yes; then +- THREAD_LIB="-lthreads" ++{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_bsd_gethostbyname" >&5 ++$as_echo "$ac_cv_lib_bsd_gethostbyname" >&6; } ++if test "x$ac_cv_lib_bsd_gethostbyname" = xyes; then : ++ X_EXTRA_LIBS="$X_EXTRA_LIBS -lbsd" + fi + ++ fi ++ fi + +-# Check whether --enable-pth was given. +-if test "${enable_pth+set}" = set; then +- enableval=$enable_pth; if test "${enable_pth}" = "yes"; then ++ # lieder@skyler.mavd.honeywell.com says without -lsocket, ++ # socket/setsockopt and other routines are undefined under SCO ODT ++ # 2.0. But -lsocket is broken on IRIX 5.2 (and is not necessary ++ # on later versions), says Simon Leinen: it contains gethostby* ++ # variants that don't use the name server (or something). -lsocket ++ # must be given before -lnsl if both are needed. We assume that ++ # if connect needs -lnsl, so does gethostbyname. ++ ac_fn_c_check_func "$LINENO" "connect" "ac_cv_func_connect" ++if test "x$ac_cv_func_connect" = xyes; then : + +-{ echo "$as_me:$LINENO: checking for pth_init in -lpth" >&5 +-echo $ECHO_N "checking for pth_init in -lpth... $ECHO_C" >&6; } +-if test "${ac_cv_lib_pth_pth_init+set}" = set; then +- echo $ECHO_N "(cached) $ECHO_C" >&6 ++fi ++ ++ if test $ac_cv_func_connect = no; then ++ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for connect in -lsocket" >&5 ++$as_echo_n "checking for connect in -lsocket... " >&6; } ++if ${ac_cv_lib_socket_connect+:} false; then : ++ $as_echo_n "(cached) " >&6 + else + ac_check_lib_save_LIBS=$LIBS +-LIBS="-lpth $LIBS" +-cat >conftest.$ac_ext <<_ACEOF +-/* confdefs.h. */ +-_ACEOF +-cat confdefs.h >>conftest.$ac_ext +-cat >>conftest.$ac_ext <<_ACEOF ++LIBS="-lsocket $X_EXTRA_LIBS $LIBS" ++cat confdefs.h - <<_ACEOF >conftest.$ac_ext + /* end confdefs.h. */ + + /* Override any GCC internal prototype to avoid an error. +@@ -31226,108 +27658,47 @@ cat >>conftest.$ac_ext <<_ACEOF + #ifdef __cplusplus + extern "C" + #endif +-char pth_init (); ++char connect (); + int + main () + { +-return pth_init (); ++return connect (); + ; + return 0; + } + _ACEOF +-rm -f conftest.$ac_objext conftest$ac_exeext +-if { (ac_try="$ac_link" +-case "(($ac_try" in +- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; +- *) ac_try_echo=$ac_try;; +-esac +-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 +- (eval "$ac_link") 2>conftest.er1 +- ac_status=$? +- grep -v '^ *+' conftest.er1 >conftest.err +- rm -f conftest.er1 +- cat conftest.err >&5 +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); } && { +- test -z "$ac_c_werror_flag" || +- test ! -s conftest.err +- } && test -s conftest$ac_exeext && +- $as_test_x conftest$ac_exeext; then +- ac_cv_lib_pth_pth_init=yes ++if ac_fn_c_try_link "$LINENO"; then : ++ ac_cv_lib_socket_connect=yes + else +- echo "$as_me: failed program was:" >&5 +-sed 's/^/| /' conftest.$ac_ext >&5 +- +- ac_cv_lib_pth_pth_init=no ++ ac_cv_lib_socket_connect=no + fi +- +-rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ +- conftest$ac_exeext conftest.$ac_ext ++rm -f core conftest.err conftest.$ac_objext \ ++ conftest$ac_exeext conftest.$ac_ext + LIBS=$ac_check_lib_save_LIBS + fi +-{ echo "$as_me:$LINENO: result: $ac_cv_lib_pth_pth_init" >&5 +-echo "${ECHO_T}$ac_cv_lib_pth_pth_init" >&6; } +-if test $ac_cv_lib_pth_pth_init = yes; then +- cat >>confdefs.h <<_ACEOF +-#define HAVE_LIBPTH 1 +-_ACEOF +- +- LIBS="-lpth $LIBS" +- +-fi +- +- { echo "$as_me:$LINENO: checking for pth_init in pth.h" >&5 +-echo $ECHO_N "checking for pth_init in pth.h... $ECHO_C" >&6; } +- cat >conftest.$ac_ext <<_ACEOF +-/* confdefs.h. */ +-_ACEOF +-cat confdefs.h >>conftest.$ac_ext +-cat >>conftest.$ac_ext <<_ACEOF +-/* end confdefs.h. */ +-#include +- +-_ACEOF +-if (eval "$ac_cpp conftest.$ac_ext") 2>&5 | +- $EGREP "pth_init" >/dev/null 2>&1; then +- +- { echo "$as_me:$LINENO: result: yes" >&5 +-echo "${ECHO_T}yes" >&6; } +- +-cat >>confdefs.h <<\_ACEOF +-#define PTH_INIT_IN_PTH_H 1 +-_ACEOF +- +- THREAD_LIB="-lpth" +- +-else +- +- { echo "$as_me:$LINENO: result: no" >&5 +-echo "${ECHO_T}no" >&6; } +- ++{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_socket_connect" >&5 ++$as_echo "$ac_cv_lib_socket_connect" >&6; } ++if test "x$ac_cv_lib_socket_connect" = xyes; then : ++ X_EXTRA_LIBS="-lsocket $X_EXTRA_LIBS" + fi +-rm -f conftest* + + fi + +-fi +- ++ # Guillermo Gomez says -lposix is necessary on A/UX. ++ ac_fn_c_check_func "$LINENO" "remove" "ac_cv_func_remove" ++if test "x$ac_cv_func_remove" = xyes; then : + +-# Check whether --enable-st was given. +-if test "${enable_st+set}" = set; then +- enableval=$enable_st; if test "${enable_st}" = "yes"; then ++fi + +-{ echo "$as_me:$LINENO: checking for st_init in -lst" >&5 +-echo $ECHO_N "checking for st_init in -lst... $ECHO_C" >&6; } +-if test "${ac_cv_lib_st_st_init+set}" = set; then +- echo $ECHO_N "(cached) $ECHO_C" >&6 ++ if test $ac_cv_func_remove = no; then ++ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for remove in -lposix" >&5 ++$as_echo_n "checking for remove in -lposix... " >&6; } ++if ${ac_cv_lib_posix_remove+:} false; then : ++ $as_echo_n "(cached) " >&6 + else + ac_check_lib_save_LIBS=$LIBS +-LIBS="-lst $LIBS" +-cat >conftest.$ac_ext <<_ACEOF +-/* confdefs.h. */ +-_ACEOF +-cat confdefs.h >>conftest.$ac_ext +-cat >>conftest.$ac_ext <<_ACEOF ++LIBS="-lposix $LIBS" ++cat confdefs.h - <<_ACEOF >conftest.$ac_ext + /* end confdefs.h. */ + + /* Override any GCC internal prototype to avoid an error. +@@ -31336,9025 +27707,277 @@ cat >>conftest.$ac_ext <<_ACEOF + #ifdef __cplusplus + extern "C" + #endif +-char st_init (); ++char remove (); + int + main () + { +-return st_init (); +- ; +- return 0; +-} +-_ACEOF +-rm -f conftest.$ac_objext conftest$ac_exeext +-if { (ac_try="$ac_link" +-case "(($ac_try" in +- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; +- *) ac_try_echo=$ac_try;; +-esac +-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 +- (eval "$ac_link") 2>conftest.er1 +- ac_status=$? +- grep -v '^ *+' conftest.er1 >conftest.err +- rm -f conftest.er1 +- cat conftest.err >&5 +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); } && { +- test -z "$ac_c_werror_flag" || +- test ! -s conftest.err +- } && test -s conftest$ac_exeext && +- $as_test_x conftest$ac_exeext; then +- ac_cv_lib_st_st_init=yes +-else +- echo "$as_me: failed program was:" >&5 +-sed 's/^/| /' conftest.$ac_ext >&5 +- +- ac_cv_lib_st_st_init=no +-fi +- +-rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ +- conftest$ac_exeext conftest.$ac_ext +-LIBS=$ac_check_lib_save_LIBS +-fi +-{ echo "$as_me:$LINENO: result: $ac_cv_lib_st_st_init" >&5 +-echo "${ECHO_T}$ac_cv_lib_st_st_init" >&6; } +-if test $ac_cv_lib_st_st_init = yes; then +- cat >>confdefs.h <<_ACEOF +-#define HAVE_LIBST 1 +-_ACEOF +- +- LIBS="-lst $LIBS" +- +-fi +- +- { echo "$as_me:$LINENO: checking for st_init in st.h" >&5 +-echo $ECHO_N "checking for st_init in st.h... $ECHO_C" >&6; } +- cat >conftest.$ac_ext <<_ACEOF +-/* confdefs.h. */ +-_ACEOF +-cat confdefs.h >>conftest.$ac_ext +-cat >>conftest.$ac_ext <<_ACEOF +-/* end confdefs.h. */ +-#include +- +-_ACEOF +-if (eval "$ac_cpp conftest.$ac_ext") 2>&5 | +- $EGREP "st_init" >/dev/null 2>&1; then +- +- { echo "$as_me:$LINENO: result: yes" >&5 +-echo "${ECHO_T}yes" >&6; } +- +-cat >>confdefs.h <<\_ACEOF +-#define ST_INIT_IN_ST_H 1 +-_ACEOF +- +- THREAD_LIB="-lst" +- +-else +- +- { echo "$as_me:$LINENO: result: yes" >&5 +-echo "${ECHO_T}yes" >&6; } +- +-fi +-rm -f conftest* +- +- fi +- +-fi +- +- +- +- for element in vlc plugin; do +- eval "LDFLAGS_${element}="'"'"${THREAD_LIB} "'$'"{LDFLAGS_${element}} "'"' +- am_modules_with_ldflags="${am_modules_with_ldflags} ${element}" +- done +- +- +-if test "${THREAD_LIB}" != "-lpth" && test "${THREAD_LIB}" != "-lst"; then +- { echo "$as_me:$LINENO: checking for sem_init in -lrt" >&5 +-echo $ECHO_N "checking for sem_init in -lrt... $ECHO_C" >&6; } +-if test "${ac_cv_lib_rt_sem_init+set}" = set; then +- echo $ECHO_N "(cached) $ECHO_C" >&6 +-else +- ac_check_lib_save_LIBS=$LIBS +-LIBS="-lrt $LIBS" +-cat >conftest.$ac_ext <<_ACEOF +-/* confdefs.h. */ +-_ACEOF +-cat confdefs.h >>conftest.$ac_ext +-cat >>conftest.$ac_ext <<_ACEOF +-/* end confdefs.h. */ +- +-/* Override any GCC internal prototype to avoid an error. +- Use char because int might match the return type of a GCC +- builtin and then its argument prototype would still apply. */ +-#ifdef __cplusplus +-extern "C" +-#endif +-char sem_init (); +-int +-main () +-{ +-return sem_init (); +- ; +- return 0; +-} +-_ACEOF +-rm -f conftest.$ac_objext conftest$ac_exeext +-if { (ac_try="$ac_link" +-case "(($ac_try" in +- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; +- *) ac_try_echo=$ac_try;; +-esac +-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 +- (eval "$ac_link") 2>conftest.er1 +- ac_status=$? +- grep -v '^ *+' conftest.er1 >conftest.err +- rm -f conftest.er1 +- cat conftest.err >&5 +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); } && { +- test -z "$ac_c_werror_flag" || +- test ! -s conftest.err +- } && test -s conftest$ac_exeext && +- $as_test_x conftest$ac_exeext; then +- ac_cv_lib_rt_sem_init=yes +-else +- echo "$as_me: failed program was:" >&5 +-sed 's/^/| /' conftest.$ac_ext >&5 +- +- ac_cv_lib_rt_sem_init=no +-fi +- +-rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ +- conftest$ac_exeext conftest.$ac_ext +-LIBS=$ac_check_lib_save_LIBS +-fi +-{ echo "$as_me:$LINENO: result: $ac_cv_lib_rt_sem_init" >&5 +-echo "${ECHO_T}$ac_cv_lib_rt_sem_init" >&6; } +-if test $ac_cv_lib_rt_sem_init = yes; then +- +- for element in vlc; do +- eval "LDFLAGS_${element}="'"'"-lrt "'$'"{LDFLAGS_${element}} "'"' +- am_modules_with_ldflags="${am_modules_with_ldflags} ${element}" +- done +- +-fi +- +- +- have_nanosleep=false +- +-for ac_func in nanosleep +-do +-as_ac_var=`echo "ac_cv_func_$ac_func" | $as_tr_sh` +-{ echo "$as_me:$LINENO: checking for $ac_func" >&5 +-echo $ECHO_N "checking for $ac_func... $ECHO_C" >&6; } +-if { as_var=$as_ac_var; eval "test \"\${$as_var+set}\" = set"; }; then +- echo $ECHO_N "(cached) $ECHO_C" >&6 +-else +- cat >conftest.$ac_ext <<_ACEOF +-/* confdefs.h. */ +-_ACEOF +-cat confdefs.h >>conftest.$ac_ext +-cat >>conftest.$ac_ext <<_ACEOF +-/* end confdefs.h. */ +-/* Define $ac_func to an innocuous variant, in case declares $ac_func. +- For example, HP-UX 11i declares gettimeofday. */ +-#define $ac_func innocuous_$ac_func +- +-/* System header to define __stub macros and hopefully few prototypes, +- which can conflict with char $ac_func (); below. +- Prefer to if __STDC__ is defined, since +- exists even on freestanding compilers. */ +- +-#ifdef __STDC__ +-# include +-#else +-# include +-#endif +- +-#undef $ac_func +- +-/* Override any GCC internal prototype to avoid an error. +- Use char because int might match the return type of a GCC +- builtin and then its argument prototype would still apply. */ +-#ifdef __cplusplus +-extern "C" +-#endif +-char $ac_func (); +-/* The GNU C library defines this for functions which it implements +- to always fail with ENOSYS. Some functions are actually named +- something starting with __ and the normal name is an alias. */ +-#if defined __stub_$ac_func || defined __stub___$ac_func +-choke me +-#endif +- +-int +-main () +-{ +-return $ac_func (); +- ; +- return 0; +-} +-_ACEOF +-rm -f conftest.$ac_objext conftest$ac_exeext +-if { (ac_try="$ac_link" +-case "(($ac_try" in +- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; +- *) ac_try_echo=$ac_try;; +-esac +-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 +- (eval "$ac_link") 2>conftest.er1 +- ac_status=$? +- grep -v '^ *+' conftest.er1 >conftest.err +- rm -f conftest.er1 +- cat conftest.err >&5 +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); } && { +- test -z "$ac_c_werror_flag" || +- test ! -s conftest.err +- } && test -s conftest$ac_exeext && +- $as_test_x conftest$ac_exeext; then +- eval "$as_ac_var=yes" +-else +- echo "$as_me: failed program was:" >&5 +-sed 's/^/| /' conftest.$ac_ext >&5 +- +- eval "$as_ac_var=no" +-fi +- +-rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ +- conftest$ac_exeext conftest.$ac_ext +-fi +-ac_res=`eval echo '${'$as_ac_var'}'` +- { echo "$as_me:$LINENO: result: $ac_res" >&5 +-echo "${ECHO_T}$ac_res" >&6; } +-if test `eval echo '${'$as_ac_var'}'` = yes; then +- cat >>confdefs.h <<_ACEOF +-#define `echo "HAVE_$ac_func" | $as_tr_cpp` 1 +-_ACEOF +- have_nanosleep=: +-else +- +- { echo "$as_me:$LINENO: checking for nanosleep in -lrt" >&5 +-echo $ECHO_N "checking for nanosleep in -lrt... $ECHO_C" >&6; } +-if test "${ac_cv_lib_rt_nanosleep+set}" = set; then +- echo $ECHO_N "(cached) $ECHO_C" >&6 +-else +- ac_check_lib_save_LIBS=$LIBS +-LIBS="-lrt $LIBS" +-cat >conftest.$ac_ext <<_ACEOF +-/* confdefs.h. */ +-_ACEOF +-cat confdefs.h >>conftest.$ac_ext +-cat >>conftest.$ac_ext <<_ACEOF +-/* end confdefs.h. */ +- +-/* Override any GCC internal prototype to avoid an error. +- Use char because int might match the return type of a GCC +- builtin and then its argument prototype would still apply. */ +-#ifdef __cplusplus +-extern "C" +-#endif +-char nanosleep (); +-int +-main () +-{ +-return nanosleep (); +- ; +- return 0; +-} +-_ACEOF +-rm -f conftest.$ac_objext conftest$ac_exeext +-if { (ac_try="$ac_link" +-case "(($ac_try" in +- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; +- *) ac_try_echo=$ac_try;; +-esac +-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 +- (eval "$ac_link") 2>conftest.er1 +- ac_status=$? +- grep -v '^ *+' conftest.er1 >conftest.err +- rm -f conftest.er1 +- cat conftest.err >&5 +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); } && { +- test -z "$ac_c_werror_flag" || +- test ! -s conftest.err +- } && test -s conftest$ac_exeext && +- $as_test_x conftest$ac_exeext; then +- ac_cv_lib_rt_nanosleep=yes +-else +- echo "$as_me: failed program was:" >&5 +-sed 's/^/| /' conftest.$ac_ext >&5 +- +- ac_cv_lib_rt_nanosleep=no +-fi +- +-rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ +- conftest$ac_exeext conftest.$ac_ext +-LIBS=$ac_check_lib_save_LIBS +-fi +-{ echo "$as_me:$LINENO: result: $ac_cv_lib_rt_nanosleep" >&5 +-echo "${ECHO_T}$ac_cv_lib_rt_nanosleep" >&6; } +-if test $ac_cv_lib_rt_nanosleep = yes; then +- +- for element in vlc; do +- eval "LDFLAGS_${element}="'"'"-lrt "'$'"{LDFLAGS_${element}} "'"' +- am_modules_with_ldflags="${am_modules_with_ldflags} ${element}" +- done +- have_nanosleep=: +-else +- { echo "$as_me:$LINENO: checking for nanosleep in -lposix4" >&5 +-echo $ECHO_N "checking for nanosleep in -lposix4... $ECHO_C" >&6; } +-if test "${ac_cv_lib_posix4_nanosleep+set}" = set; then +- echo $ECHO_N "(cached) $ECHO_C" >&6 +-else +- ac_check_lib_save_LIBS=$LIBS +-LIBS="-lposix4 $LIBS" +-cat >conftest.$ac_ext <<_ACEOF +-/* confdefs.h. */ +-_ACEOF +-cat confdefs.h >>conftest.$ac_ext +-cat >>conftest.$ac_ext <<_ACEOF +-/* end confdefs.h. */ +- +-/* Override any GCC internal prototype to avoid an error. +- Use char because int might match the return type of a GCC +- builtin and then its argument prototype would still apply. */ +-#ifdef __cplusplus +-extern "C" +-#endif +-char nanosleep (); +-int +-main () +-{ +-return nanosleep (); +- ; +- return 0; +-} +-_ACEOF +-rm -f conftest.$ac_objext conftest$ac_exeext +-if { (ac_try="$ac_link" +-case "(($ac_try" in +- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; +- *) ac_try_echo=$ac_try;; +-esac +-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 +- (eval "$ac_link") 2>conftest.er1 +- ac_status=$? +- grep -v '^ *+' conftest.er1 >conftest.err +- rm -f conftest.er1 +- cat conftest.err >&5 +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); } && { +- test -z "$ac_c_werror_flag" || +- test ! -s conftest.err +- } && test -s conftest$ac_exeext && +- $as_test_x conftest$ac_exeext; then +- ac_cv_lib_posix4_nanosleep=yes +-else +- echo "$as_me: failed program was:" >&5 +-sed 's/^/| /' conftest.$ac_ext >&5 +- +- ac_cv_lib_posix4_nanosleep=no +-fi +- +-rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ +- conftest$ac_exeext conftest.$ac_ext +-LIBS=$ac_check_lib_save_LIBS +-fi +-{ echo "$as_me:$LINENO: result: $ac_cv_lib_posix4_nanosleep" >&5 +-echo "${ECHO_T}$ac_cv_lib_posix4_nanosleep" >&6; } +-if test $ac_cv_lib_posix4_nanosleep = yes; then +- +- for element in vlc; do +- eval "LDFLAGS_${element}="'"'"-lposix4 "'$'"{LDFLAGS_${element}} "'"' +- am_modules_with_ldflags="${am_modules_with_ldflags} ${element}" +- done +- have_nanosleep=: +-fi +- +- +-fi +- +- +-fi +-done +- +- if ${have_nanosleep}; then +- +-cat >>confdefs.h <<\_ACEOF +-#define HAVE_NANOSLEEP 1 +-_ACEOF +- +- fi +-fi +- +-{ echo "$as_me:$LINENO: checking for pthread_cond_t in pthread.h" >&5 +-echo $ECHO_N "checking for pthread_cond_t in pthread.h... $ECHO_C" >&6; } +-cat >conftest.$ac_ext <<_ACEOF +-/* confdefs.h. */ +-_ACEOF +-cat confdefs.h >>conftest.$ac_ext +-cat >>conftest.$ac_ext <<_ACEOF +-/* end confdefs.h. */ +-#include +- +-_ACEOF +-if (eval "$ac_cpp conftest.$ac_ext") 2>&5 | +- $EGREP "pthread_cond_t" >/dev/null 2>&1; then +- +- { echo "$as_me:$LINENO: result: yes" >&5 +-echo "${ECHO_T}yes" >&6; } +- +-cat >>confdefs.h <<\_ACEOF +-#define PTHREAD_COND_T_IN_PTHREAD_H 1 +-_ACEOF +- +-else +- +- { echo "$as_me:$LINENO: result: no" >&5 +-echo "${ECHO_T}no" >&6; } +-fi +-rm -f conftest* +- +- +-{ echo "$as_me:$LINENO: checking for pthread_once in pthread.h" >&5 +-echo $ECHO_N "checking for pthread_once in pthread.h... $ECHO_C" >&6; } +-cat >conftest.$ac_ext <<_ACEOF +-/* confdefs.h. */ +-_ACEOF +-cat confdefs.h >>conftest.$ac_ext +-cat >>conftest.$ac_ext <<_ACEOF +-/* end confdefs.h. */ +-#include +- +-_ACEOF +-if (eval "$ac_cpp conftest.$ac_ext") 2>&5 | +- $EGREP "pthread_once" >/dev/null 2>&1; then +- +- { echo "$as_me:$LINENO: result: yes" >&5 +-echo "${ECHO_T}yes" >&6; } +- +-cat >>confdefs.h <<\_ACEOF +-#define PTHREAD_ONCE_IN_PTHREAD_H 1 +-_ACEOF +- +-else +- +- { echo "$as_me:$LINENO: result: no" >&5 +-echo "${ECHO_T}no" >&6; } +-fi +-rm -f conftest* +- +-fi # end "${SYS}" != "mingw32" -a "${SYS}" != "mingwce" +- +-{ echo "$as_me:$LINENO: checking for strncasecmp in strings.h" >&5 +-echo $ECHO_N "checking for strncasecmp in strings.h... $ECHO_C" >&6; } +-cat >conftest.$ac_ext <<_ACEOF +-/* confdefs.h. */ +-_ACEOF +-cat confdefs.h >>conftest.$ac_ext +-cat >>conftest.$ac_ext <<_ACEOF +-/* end confdefs.h. */ +-#include +- +-_ACEOF +-if (eval "$ac_cpp conftest.$ac_ext") 2>&5 | +- $EGREP "strncasecmp" >/dev/null 2>&1; then +- +- { echo "$as_me:$LINENO: result: yes" >&5 +-echo "${ECHO_T}yes" >&6; } +- +-cat >>confdefs.h <<\_ACEOF +-#define STRNCASECMP_IN_STRINGS_H 1 +-_ACEOF +- +-else +- +- { echo "$as_me:$LINENO: result: no" >&5 +-echo "${ECHO_T}no" >&6; } +-fi +-rm -f conftest* +- +- +- +- +- +- +- +- +- +- +- +- +-for ac_header in signal.h time.h errno.h stdint.h stdbool.h getopt.h strings.h inttypes.h sys/int_types.h wchar.h +-do +-as_ac_Header=`echo "ac_cv_header_$ac_header" | $as_tr_sh` +-if { as_var=$as_ac_Header; eval "test \"\${$as_var+set}\" = set"; }; then +- { echo "$as_me:$LINENO: checking for $ac_header" >&5 +-echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6; } +-if { as_var=$as_ac_Header; eval "test \"\${$as_var+set}\" = set"; }; then +- echo $ECHO_N "(cached) $ECHO_C" >&6 +-fi +-ac_res=`eval echo '${'$as_ac_Header'}'` +- { echo "$as_me:$LINENO: result: $ac_res" >&5 +-echo "${ECHO_T}$ac_res" >&6; } +-else +- # Is the header compilable? +-{ echo "$as_me:$LINENO: checking $ac_header usability" >&5 +-echo $ECHO_N "checking $ac_header usability... $ECHO_C" >&6; } +-cat >conftest.$ac_ext <<_ACEOF +-/* confdefs.h. */ +-_ACEOF +-cat confdefs.h >>conftest.$ac_ext +-cat >>conftest.$ac_ext <<_ACEOF +-/* end confdefs.h. */ +-$ac_includes_default +-#include <$ac_header> +-_ACEOF +-rm -f conftest.$ac_objext +-if { (ac_try="$ac_compile" +-case "(($ac_try" in +- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; +- *) ac_try_echo=$ac_try;; +-esac +-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 +- (eval "$ac_compile") 2>conftest.er1 +- ac_status=$? +- grep -v '^ *+' conftest.er1 >conftest.err +- rm -f conftest.er1 +- cat conftest.err >&5 +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); } && { +- test -z "$ac_c_werror_flag" || +- test ! -s conftest.err +- } && test -s conftest.$ac_objext; then +- ac_header_compiler=yes +-else +- echo "$as_me: failed program was:" >&5 +-sed 's/^/| /' conftest.$ac_ext >&5 +- +- ac_header_compiler=no +-fi +- +-rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext +-{ echo "$as_me:$LINENO: result: $ac_header_compiler" >&5 +-echo "${ECHO_T}$ac_header_compiler" >&6; } +- +-# Is the header present? +-{ echo "$as_me:$LINENO: checking $ac_header presence" >&5 +-echo $ECHO_N "checking $ac_header presence... $ECHO_C" >&6; } +-cat >conftest.$ac_ext <<_ACEOF +-/* confdefs.h. */ +-_ACEOF +-cat confdefs.h >>conftest.$ac_ext +-cat >>conftest.$ac_ext <<_ACEOF +-/* end confdefs.h. */ +-#include <$ac_header> +-_ACEOF +-if { (ac_try="$ac_cpp conftest.$ac_ext" +-case "(($ac_try" in +- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; +- *) ac_try_echo=$ac_try;; +-esac +-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 +- (eval "$ac_cpp conftest.$ac_ext") 2>conftest.er1 +- ac_status=$? +- grep -v '^ *+' conftest.er1 >conftest.err +- rm -f conftest.er1 +- cat conftest.err >&5 +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); } >/dev/null && { +- test -z "$ac_c_preproc_warn_flag$ac_c_werror_flag" || +- test ! -s conftest.err +- }; then +- ac_header_preproc=yes +-else +- echo "$as_me: failed program was:" >&5 +-sed 's/^/| /' conftest.$ac_ext >&5 +- +- ac_header_preproc=no +-fi +- +-rm -f conftest.err conftest.$ac_ext +-{ echo "$as_me:$LINENO: result: $ac_header_preproc" >&5 +-echo "${ECHO_T}$ac_header_preproc" >&6; } +- +-# So? What about this header? +-case $ac_header_compiler:$ac_header_preproc:$ac_c_preproc_warn_flag in +- yes:no: ) +- { echo "$as_me:$LINENO: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&5 +-echo "$as_me: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&2;} +- { echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the compiler's result" >&5 +-echo "$as_me: WARNING: $ac_header: proceeding with the compiler's result" >&2;} +- ac_header_preproc=yes +- ;; +- no:yes:* ) +- { echo "$as_me:$LINENO: WARNING: $ac_header: present but cannot be compiled" >&5 +-echo "$as_me: WARNING: $ac_header: present but cannot be compiled" >&2;} +- { echo "$as_me:$LINENO: WARNING: $ac_header: check for missing prerequisite headers?" >&5 +-echo "$as_me: WARNING: $ac_header: check for missing prerequisite headers?" >&2;} +- { echo "$as_me:$LINENO: WARNING: $ac_header: see the Autoconf documentation" >&5 +-echo "$as_me: WARNING: $ac_header: see the Autoconf documentation" >&2;} +- { echo "$as_me:$LINENO: WARNING: $ac_header: section \"Present But Cannot Be Compiled\"" >&5 +-echo "$as_me: WARNING: $ac_header: section \"Present But Cannot Be Compiled\"" >&2;} +- { echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the preprocessor's result" >&5 +-echo "$as_me: WARNING: $ac_header: proceeding with the preprocessor's result" >&2;} +- { echo "$as_me:$LINENO: WARNING: $ac_header: in the future, the compiler will take precedence" >&5 +-echo "$as_me: WARNING: $ac_header: in the future, the compiler will take precedence" >&2;} +- +- ;; +-esac +-{ echo "$as_me:$LINENO: checking for $ac_header" >&5 +-echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6; } +-if { as_var=$as_ac_Header; eval "test \"\${$as_var+set}\" = set"; }; then +- echo $ECHO_N "(cached) $ECHO_C" >&6 +-else +- eval "$as_ac_Header=\$ac_header_preproc" +-fi +-ac_res=`eval echo '${'$as_ac_Header'}'` +- { echo "$as_me:$LINENO: result: $ac_res" >&5 +-echo "${ECHO_T}$ac_res" >&6; } +- +-fi +-if test `eval echo '${'$as_ac_Header'}'` = yes; then +- cat >>confdefs.h <<_ACEOF +-#define `echo "HAVE_$ac_header" | $as_tr_cpp` 1 +-_ACEOF +- +-fi +- +-done +- +- +- +- +- +- +- +- +-for ac_header in sys/sockio.h fcntl.h sys/types.h sys/time.h sys/times.h sys/ioctl.h sys/stat.h +-do +-as_ac_Header=`echo "ac_cv_header_$ac_header" | $as_tr_sh` +-if { as_var=$as_ac_Header; eval "test \"\${$as_var+set}\" = set"; }; then +- { echo "$as_me:$LINENO: checking for $ac_header" >&5 +-echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6; } +-if { as_var=$as_ac_Header; eval "test \"\${$as_var+set}\" = set"; }; then +- echo $ECHO_N "(cached) $ECHO_C" >&6 +-fi +-ac_res=`eval echo '${'$as_ac_Header'}'` +- { echo "$as_me:$LINENO: result: $ac_res" >&5 +-echo "${ECHO_T}$ac_res" >&6; } +-else +- # Is the header compilable? +-{ echo "$as_me:$LINENO: checking $ac_header usability" >&5 +-echo $ECHO_N "checking $ac_header usability... $ECHO_C" >&6; } +-cat >conftest.$ac_ext <<_ACEOF +-/* confdefs.h. */ +-_ACEOF +-cat confdefs.h >>conftest.$ac_ext +-cat >>conftest.$ac_ext <<_ACEOF +-/* end confdefs.h. */ +-$ac_includes_default +-#include <$ac_header> +-_ACEOF +-rm -f conftest.$ac_objext +-if { (ac_try="$ac_compile" +-case "(($ac_try" in +- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; +- *) ac_try_echo=$ac_try;; +-esac +-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 +- (eval "$ac_compile") 2>conftest.er1 +- ac_status=$? +- grep -v '^ *+' conftest.er1 >conftest.err +- rm -f conftest.er1 +- cat conftest.err >&5 +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); } && { +- test -z "$ac_c_werror_flag" || +- test ! -s conftest.err +- } && test -s conftest.$ac_objext; then +- ac_header_compiler=yes +-else +- echo "$as_me: failed program was:" >&5 +-sed 's/^/| /' conftest.$ac_ext >&5 +- +- ac_header_compiler=no +-fi +- +-rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext +-{ echo "$as_me:$LINENO: result: $ac_header_compiler" >&5 +-echo "${ECHO_T}$ac_header_compiler" >&6; } +- +-# Is the header present? +-{ echo "$as_me:$LINENO: checking $ac_header presence" >&5 +-echo $ECHO_N "checking $ac_header presence... $ECHO_C" >&6; } +-cat >conftest.$ac_ext <<_ACEOF +-/* confdefs.h. */ +-_ACEOF +-cat confdefs.h >>conftest.$ac_ext +-cat >>conftest.$ac_ext <<_ACEOF +-/* end confdefs.h. */ +-#include <$ac_header> +-_ACEOF +-if { (ac_try="$ac_cpp conftest.$ac_ext" +-case "(($ac_try" in +- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; +- *) ac_try_echo=$ac_try;; +-esac +-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 +- (eval "$ac_cpp conftest.$ac_ext") 2>conftest.er1 +- ac_status=$? +- grep -v '^ *+' conftest.er1 >conftest.err +- rm -f conftest.er1 +- cat conftest.err >&5 +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); } >/dev/null && { +- test -z "$ac_c_preproc_warn_flag$ac_c_werror_flag" || +- test ! -s conftest.err +- }; then +- ac_header_preproc=yes +-else +- echo "$as_me: failed program was:" >&5 +-sed 's/^/| /' conftest.$ac_ext >&5 +- +- ac_header_preproc=no +-fi +- +-rm -f conftest.err conftest.$ac_ext +-{ echo "$as_me:$LINENO: result: $ac_header_preproc" >&5 +-echo "${ECHO_T}$ac_header_preproc" >&6; } +- +-# So? What about this header? +-case $ac_header_compiler:$ac_header_preproc:$ac_c_preproc_warn_flag in +- yes:no: ) +- { echo "$as_me:$LINENO: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&5 +-echo "$as_me: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&2;} +- { echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the compiler's result" >&5 +-echo "$as_me: WARNING: $ac_header: proceeding with the compiler's result" >&2;} +- ac_header_preproc=yes +- ;; +- no:yes:* ) +- { echo "$as_me:$LINENO: WARNING: $ac_header: present but cannot be compiled" >&5 +-echo "$as_me: WARNING: $ac_header: present but cannot be compiled" >&2;} +- { echo "$as_me:$LINENO: WARNING: $ac_header: check for missing prerequisite headers?" >&5 +-echo "$as_me: WARNING: $ac_header: check for missing prerequisite headers?" >&2;} +- { echo "$as_me:$LINENO: WARNING: $ac_header: see the Autoconf documentation" >&5 +-echo "$as_me: WARNING: $ac_header: see the Autoconf documentation" >&2;} +- { echo "$as_me:$LINENO: WARNING: $ac_header: section \"Present But Cannot Be Compiled\"" >&5 +-echo "$as_me: WARNING: $ac_header: section \"Present But Cannot Be Compiled\"" >&2;} +- { echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the preprocessor's result" >&5 +-echo "$as_me: WARNING: $ac_header: proceeding with the preprocessor's result" >&2;} +- { echo "$as_me:$LINENO: WARNING: $ac_header: in the future, the compiler will take precedence" >&5 +-echo "$as_me: WARNING: $ac_header: in the future, the compiler will take precedence" >&2;} +- +- ;; +-esac +-{ echo "$as_me:$LINENO: checking for $ac_header" >&5 +-echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6; } +-if { as_var=$as_ac_Header; eval "test \"\${$as_var+set}\" = set"; }; then +- echo $ECHO_N "(cached) $ECHO_C" >&6 +-else +- eval "$as_ac_Header=\$ac_header_preproc" +-fi +-ac_res=`eval echo '${'$as_ac_Header'}'` +- { echo "$as_me:$LINENO: result: $ac_res" >&5 +-echo "${ECHO_T}$ac_res" >&6; } +- +-fi +-if test `eval echo '${'$as_ac_Header'}'` = yes; then +- cat >>confdefs.h <<_ACEOF +-#define `echo "HAVE_$ac_header" | $as_tr_cpp` 1 +-_ACEOF +- +-fi +- +-done +- +- +- +- +- +-for ac_header in arpa/inet.h net/if.h netinet/in.h sys/socket.h +-do +-as_ac_Header=`echo "ac_cv_header_$ac_header" | $as_tr_sh` +-if { as_var=$as_ac_Header; eval "test \"\${$as_var+set}\" = set"; }; then +- { echo "$as_me:$LINENO: checking for $ac_header" >&5 +-echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6; } +-if { as_var=$as_ac_Header; eval "test \"\${$as_var+set}\" = set"; }; then +- echo $ECHO_N "(cached) $ECHO_C" >&6 +-fi +-ac_res=`eval echo '${'$as_ac_Header'}'` +- { echo "$as_me:$LINENO: result: $ac_res" >&5 +-echo "${ECHO_T}$ac_res" >&6; } +-else +- # Is the header compilable? +-{ echo "$as_me:$LINENO: checking $ac_header usability" >&5 +-echo $ECHO_N "checking $ac_header usability... $ECHO_C" >&6; } +-cat >conftest.$ac_ext <<_ACEOF +-/* confdefs.h. */ +-_ACEOF +-cat confdefs.h >>conftest.$ac_ext +-cat >>conftest.$ac_ext <<_ACEOF +-/* end confdefs.h. */ +-$ac_includes_default +-#include <$ac_header> +-_ACEOF +-rm -f conftest.$ac_objext +-if { (ac_try="$ac_compile" +-case "(($ac_try" in +- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; +- *) ac_try_echo=$ac_try;; +-esac +-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 +- (eval "$ac_compile") 2>conftest.er1 +- ac_status=$? +- grep -v '^ *+' conftest.er1 >conftest.err +- rm -f conftest.er1 +- cat conftest.err >&5 +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); } && { +- test -z "$ac_c_werror_flag" || +- test ! -s conftest.err +- } && test -s conftest.$ac_objext; then +- ac_header_compiler=yes +-else +- echo "$as_me: failed program was:" >&5 +-sed 's/^/| /' conftest.$ac_ext >&5 +- +- ac_header_compiler=no +-fi +- +-rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext +-{ echo "$as_me:$LINENO: result: $ac_header_compiler" >&5 +-echo "${ECHO_T}$ac_header_compiler" >&6; } +- +-# Is the header present? +-{ echo "$as_me:$LINENO: checking $ac_header presence" >&5 +-echo $ECHO_N "checking $ac_header presence... $ECHO_C" >&6; } +-cat >conftest.$ac_ext <<_ACEOF +-/* confdefs.h. */ +-_ACEOF +-cat confdefs.h >>conftest.$ac_ext +-cat >>conftest.$ac_ext <<_ACEOF +-/* end confdefs.h. */ +-#include <$ac_header> +-_ACEOF +-if { (ac_try="$ac_cpp conftest.$ac_ext" +-case "(($ac_try" in +- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; +- *) ac_try_echo=$ac_try;; +-esac +-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 +- (eval "$ac_cpp conftest.$ac_ext") 2>conftest.er1 +- ac_status=$? +- grep -v '^ *+' conftest.er1 >conftest.err +- rm -f conftest.er1 +- cat conftest.err >&5 +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); } >/dev/null && { +- test -z "$ac_c_preproc_warn_flag$ac_c_werror_flag" || +- test ! -s conftest.err +- }; then +- ac_header_preproc=yes +-else +- echo "$as_me: failed program was:" >&5 +-sed 's/^/| /' conftest.$ac_ext >&5 +- +- ac_header_preproc=no +-fi +- +-rm -f conftest.err conftest.$ac_ext +-{ echo "$as_me:$LINENO: result: $ac_header_preproc" >&5 +-echo "${ECHO_T}$ac_header_preproc" >&6; } +- +-# So? What about this header? +-case $ac_header_compiler:$ac_header_preproc:$ac_c_preproc_warn_flag in +- yes:no: ) +- { echo "$as_me:$LINENO: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&5 +-echo "$as_me: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&2;} +- { echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the compiler's result" >&5 +-echo "$as_me: WARNING: $ac_header: proceeding with the compiler's result" >&2;} +- ac_header_preproc=yes +- ;; +- no:yes:* ) +- { echo "$as_me:$LINENO: WARNING: $ac_header: present but cannot be compiled" >&5 +-echo "$as_me: WARNING: $ac_header: present but cannot be compiled" >&2;} +- { echo "$as_me:$LINENO: WARNING: $ac_header: check for missing prerequisite headers?" >&5 +-echo "$as_me: WARNING: $ac_header: check for missing prerequisite headers?" >&2;} +- { echo "$as_me:$LINENO: WARNING: $ac_header: see the Autoconf documentation" >&5 +-echo "$as_me: WARNING: $ac_header: see the Autoconf documentation" >&2;} +- { echo "$as_me:$LINENO: WARNING: $ac_header: section \"Present But Cannot Be Compiled\"" >&5 +-echo "$as_me: WARNING: $ac_header: section \"Present But Cannot Be Compiled\"" >&2;} +- { echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the preprocessor's result" >&5 +-echo "$as_me: WARNING: $ac_header: proceeding with the preprocessor's result" >&2;} +- { echo "$as_me:$LINENO: WARNING: $ac_header: in the future, the compiler will take precedence" >&5 +-echo "$as_me: WARNING: $ac_header: in the future, the compiler will take precedence" >&2;} +- +- ;; +-esac +-{ echo "$as_me:$LINENO: checking for $ac_header" >&5 +-echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6; } +-if { as_var=$as_ac_Header; eval "test \"\${$as_var+set}\" = set"; }; then +- echo $ECHO_N "(cached) $ECHO_C" >&6 +-else +- eval "$as_ac_Header=\$ac_header_preproc" +-fi +-ac_res=`eval echo '${'$as_ac_Header'}'` +- { echo "$as_me:$LINENO: result: $ac_res" >&5 +-echo "${ECHO_T}$ac_res" >&6; } +- +-fi +-if test `eval echo '${'$as_ac_Header'}'` = yes; then +- cat >>confdefs.h <<_ACEOF +-#define `echo "HAVE_$ac_header" | $as_tr_cpp` 1 +-_ACEOF +- +-fi +- +-done +- +-if test "${SYS}" != "mingw32" -a "${SYS}" != "mingwce"; then +- +- +-for ac_header in machine/param.h sys/shm.h +-do +-as_ac_Header=`echo "ac_cv_header_$ac_header" | $as_tr_sh` +-if { as_var=$as_ac_Header; eval "test \"\${$as_var+set}\" = set"; }; then +- { echo "$as_me:$LINENO: checking for $ac_header" >&5 +-echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6; } +-if { as_var=$as_ac_Header; eval "test \"\${$as_var+set}\" = set"; }; then +- echo $ECHO_N "(cached) $ECHO_C" >&6 +-fi +-ac_res=`eval echo '${'$as_ac_Header'}'` +- { echo "$as_me:$LINENO: result: $ac_res" >&5 +-echo "${ECHO_T}$ac_res" >&6; } +-else +- # Is the header compilable? +-{ echo "$as_me:$LINENO: checking $ac_header usability" >&5 +-echo $ECHO_N "checking $ac_header usability... $ECHO_C" >&6; } +-cat >conftest.$ac_ext <<_ACEOF +-/* confdefs.h. */ +-_ACEOF +-cat confdefs.h >>conftest.$ac_ext +-cat >>conftest.$ac_ext <<_ACEOF +-/* end confdefs.h. */ +-$ac_includes_default +-#include <$ac_header> +-_ACEOF +-rm -f conftest.$ac_objext +-if { (ac_try="$ac_compile" +-case "(($ac_try" in +- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; +- *) ac_try_echo=$ac_try;; +-esac +-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 +- (eval "$ac_compile") 2>conftest.er1 +- ac_status=$? +- grep -v '^ *+' conftest.er1 >conftest.err +- rm -f conftest.er1 +- cat conftest.err >&5 +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); } && { +- test -z "$ac_c_werror_flag" || +- test ! -s conftest.err +- } && test -s conftest.$ac_objext; then +- ac_header_compiler=yes +-else +- echo "$as_me: failed program was:" >&5 +-sed 's/^/| /' conftest.$ac_ext >&5 +- +- ac_header_compiler=no +-fi +- +-rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext +-{ echo "$as_me:$LINENO: result: $ac_header_compiler" >&5 +-echo "${ECHO_T}$ac_header_compiler" >&6; } +- +-# Is the header present? +-{ echo "$as_me:$LINENO: checking $ac_header presence" >&5 +-echo $ECHO_N "checking $ac_header presence... $ECHO_C" >&6; } +-cat >conftest.$ac_ext <<_ACEOF +-/* confdefs.h. */ +-_ACEOF +-cat confdefs.h >>conftest.$ac_ext +-cat >>conftest.$ac_ext <<_ACEOF +-/* end confdefs.h. */ +-#include <$ac_header> +-_ACEOF +-if { (ac_try="$ac_cpp conftest.$ac_ext" +-case "(($ac_try" in +- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; +- *) ac_try_echo=$ac_try;; +-esac +-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 +- (eval "$ac_cpp conftest.$ac_ext") 2>conftest.er1 +- ac_status=$? +- grep -v '^ *+' conftest.er1 >conftest.err +- rm -f conftest.er1 +- cat conftest.err >&5 +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); } >/dev/null && { +- test -z "$ac_c_preproc_warn_flag$ac_c_werror_flag" || +- test ! -s conftest.err +- }; then +- ac_header_preproc=yes +-else +- echo "$as_me: failed program was:" >&5 +-sed 's/^/| /' conftest.$ac_ext >&5 +- +- ac_header_preproc=no +-fi +- +-rm -f conftest.err conftest.$ac_ext +-{ echo "$as_me:$LINENO: result: $ac_header_preproc" >&5 +-echo "${ECHO_T}$ac_header_preproc" >&6; } +- +-# So? What about this header? +-case $ac_header_compiler:$ac_header_preproc:$ac_c_preproc_warn_flag in +- yes:no: ) +- { echo "$as_me:$LINENO: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&5 +-echo "$as_me: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&2;} +- { echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the compiler's result" >&5 +-echo "$as_me: WARNING: $ac_header: proceeding with the compiler's result" >&2;} +- ac_header_preproc=yes +- ;; +- no:yes:* ) +- { echo "$as_me:$LINENO: WARNING: $ac_header: present but cannot be compiled" >&5 +-echo "$as_me: WARNING: $ac_header: present but cannot be compiled" >&2;} +- { echo "$as_me:$LINENO: WARNING: $ac_header: check for missing prerequisite headers?" >&5 +-echo "$as_me: WARNING: $ac_header: check for missing prerequisite headers?" >&2;} +- { echo "$as_me:$LINENO: WARNING: $ac_header: see the Autoconf documentation" >&5 +-echo "$as_me: WARNING: $ac_header: see the Autoconf documentation" >&2;} +- { echo "$as_me:$LINENO: WARNING: $ac_header: section \"Present But Cannot Be Compiled\"" >&5 +-echo "$as_me: WARNING: $ac_header: section \"Present But Cannot Be Compiled\"" >&2;} +- { echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the preprocessor's result" >&5 +-echo "$as_me: WARNING: $ac_header: proceeding with the preprocessor's result" >&2;} +- { echo "$as_me:$LINENO: WARNING: $ac_header: in the future, the compiler will take precedence" >&5 +-echo "$as_me: WARNING: $ac_header: in the future, the compiler will take precedence" >&2;} +- +- ;; +-esac +-{ echo "$as_me:$LINENO: checking for $ac_header" >&5 +-echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6; } +-if { as_var=$as_ac_Header; eval "test \"\${$as_var+set}\" = set"; }; then +- echo $ECHO_N "(cached) $ECHO_C" >&6 +-else +- eval "$as_ac_Header=\$ac_header_preproc" +-fi +-ac_res=`eval echo '${'$as_ac_Header'}'` +- { echo "$as_me:$LINENO: result: $ac_res" >&5 +-echo "${ECHO_T}$ac_res" >&6; } +- +-fi +-if test `eval echo '${'$as_ac_Header'}'` = yes; then +- cat >>confdefs.h <<_ACEOF +-#define `echo "HAVE_$ac_header" | $as_tr_cpp` 1 +-_ACEOF +- +-fi +- +-done +- +- +-for ac_header in linux/version.h +-do +-as_ac_Header=`echo "ac_cv_header_$ac_header" | $as_tr_sh` +-if { as_var=$as_ac_Header; eval "test \"\${$as_var+set}\" = set"; }; then +- { echo "$as_me:$LINENO: checking for $ac_header" >&5 +-echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6; } +-if { as_var=$as_ac_Header; eval "test \"\${$as_var+set}\" = set"; }; then +- echo $ECHO_N "(cached) $ECHO_C" >&6 +-fi +-ac_res=`eval echo '${'$as_ac_Header'}'` +- { echo "$as_me:$LINENO: result: $ac_res" >&5 +-echo "${ECHO_T}$ac_res" >&6; } +-else +- # Is the header compilable? +-{ echo "$as_me:$LINENO: checking $ac_header usability" >&5 +-echo $ECHO_N "checking $ac_header usability... $ECHO_C" >&6; } +-cat >conftest.$ac_ext <<_ACEOF +-/* confdefs.h. */ +-_ACEOF +-cat confdefs.h >>conftest.$ac_ext +-cat >>conftest.$ac_ext <<_ACEOF +-/* end confdefs.h. */ +-$ac_includes_default +-#include <$ac_header> +-_ACEOF +-rm -f conftest.$ac_objext +-if { (ac_try="$ac_compile" +-case "(($ac_try" in +- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; +- *) ac_try_echo=$ac_try;; +-esac +-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 +- (eval "$ac_compile") 2>conftest.er1 +- ac_status=$? +- grep -v '^ *+' conftest.er1 >conftest.err +- rm -f conftest.er1 +- cat conftest.err >&5 +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); } && { +- test -z "$ac_c_werror_flag" || +- test ! -s conftest.err +- } && test -s conftest.$ac_objext; then +- ac_header_compiler=yes +-else +- echo "$as_me: failed program was:" >&5 +-sed 's/^/| /' conftest.$ac_ext >&5 +- +- ac_header_compiler=no +-fi +- +-rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext +-{ echo "$as_me:$LINENO: result: $ac_header_compiler" >&5 +-echo "${ECHO_T}$ac_header_compiler" >&6; } +- +-# Is the header present? +-{ echo "$as_me:$LINENO: checking $ac_header presence" >&5 +-echo $ECHO_N "checking $ac_header presence... $ECHO_C" >&6; } +-cat >conftest.$ac_ext <<_ACEOF +-/* confdefs.h. */ +-_ACEOF +-cat confdefs.h >>conftest.$ac_ext +-cat >>conftest.$ac_ext <<_ACEOF +-/* end confdefs.h. */ +-#include <$ac_header> +-_ACEOF +-if { (ac_try="$ac_cpp conftest.$ac_ext" +-case "(($ac_try" in +- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; +- *) ac_try_echo=$ac_try;; +-esac +-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 +- (eval "$ac_cpp conftest.$ac_ext") 2>conftest.er1 +- ac_status=$? +- grep -v '^ *+' conftest.er1 >conftest.err +- rm -f conftest.er1 +- cat conftest.err >&5 +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); } >/dev/null && { +- test -z "$ac_c_preproc_warn_flag$ac_c_werror_flag" || +- test ! -s conftest.err +- }; then +- ac_header_preproc=yes +-else +- echo "$as_me: failed program was:" >&5 +-sed 's/^/| /' conftest.$ac_ext >&5 +- +- ac_header_preproc=no +-fi +- +-rm -f conftest.err conftest.$ac_ext +-{ echo "$as_me:$LINENO: result: $ac_header_preproc" >&5 +-echo "${ECHO_T}$ac_header_preproc" >&6; } +- +-# So? What about this header? +-case $ac_header_compiler:$ac_header_preproc:$ac_c_preproc_warn_flag in +- yes:no: ) +- { echo "$as_me:$LINENO: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&5 +-echo "$as_me: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&2;} +- { echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the compiler's result" >&5 +-echo "$as_me: WARNING: $ac_header: proceeding with the compiler's result" >&2;} +- ac_header_preproc=yes +- ;; +- no:yes:* ) +- { echo "$as_me:$LINENO: WARNING: $ac_header: present but cannot be compiled" >&5 +-echo "$as_me: WARNING: $ac_header: present but cannot be compiled" >&2;} +- { echo "$as_me:$LINENO: WARNING: $ac_header: check for missing prerequisite headers?" >&5 +-echo "$as_me: WARNING: $ac_header: check for missing prerequisite headers?" >&2;} +- { echo "$as_me:$LINENO: WARNING: $ac_header: see the Autoconf documentation" >&5 +-echo "$as_me: WARNING: $ac_header: see the Autoconf documentation" >&2;} +- { echo "$as_me:$LINENO: WARNING: $ac_header: section \"Present But Cannot Be Compiled\"" >&5 +-echo "$as_me: WARNING: $ac_header: section \"Present But Cannot Be Compiled\"" >&2;} +- { echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the preprocessor's result" >&5 +-echo "$as_me: WARNING: $ac_header: proceeding with the preprocessor's result" >&2;} +- { echo "$as_me:$LINENO: WARNING: $ac_header: in the future, the compiler will take precedence" >&5 +-echo "$as_me: WARNING: $ac_header: in the future, the compiler will take precedence" >&2;} +- +- ;; +-esac +-{ echo "$as_me:$LINENO: checking for $ac_header" >&5 +-echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6; } +-if { as_var=$as_ac_Header; eval "test \"\${$as_var+set}\" = set"; }; then +- echo $ECHO_N "(cached) $ECHO_C" >&6 +-else +- eval "$as_ac_Header=\$ac_header_preproc" +-fi +-ac_res=`eval echo '${'$as_ac_Header'}'` +- { echo "$as_me:$LINENO: result: $ac_res" >&5 +-echo "${ECHO_T}$ac_res" >&6; } +- +-fi +-if test `eval echo '${'$as_ac_Header'}'` = yes; then +- cat >>confdefs.h <<_ACEOF +-#define `echo "HAVE_$ac_header" | $as_tr_cpp` 1 +-_ACEOF +- +-fi +- +-done +- +- +-for ac_header in syslog.h +-do +-as_ac_Header=`echo "ac_cv_header_$ac_header" | $as_tr_sh` +-if { as_var=$as_ac_Header; eval "test \"\${$as_var+set}\" = set"; }; then +- { echo "$as_me:$LINENO: checking for $ac_header" >&5 +-echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6; } +-if { as_var=$as_ac_Header; eval "test \"\${$as_var+set}\" = set"; }; then +- echo $ECHO_N "(cached) $ECHO_C" >&6 +-fi +-ac_res=`eval echo '${'$as_ac_Header'}'` +- { echo "$as_me:$LINENO: result: $ac_res" >&5 +-echo "${ECHO_T}$ac_res" >&6; } +-else +- # Is the header compilable? +-{ echo "$as_me:$LINENO: checking $ac_header usability" >&5 +-echo $ECHO_N "checking $ac_header usability... $ECHO_C" >&6; } +-cat >conftest.$ac_ext <<_ACEOF +-/* confdefs.h. */ +-_ACEOF +-cat confdefs.h >>conftest.$ac_ext +-cat >>conftest.$ac_ext <<_ACEOF +-/* end confdefs.h. */ +-$ac_includes_default +-#include <$ac_header> +-_ACEOF +-rm -f conftest.$ac_objext +-if { (ac_try="$ac_compile" +-case "(($ac_try" in +- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; +- *) ac_try_echo=$ac_try;; +-esac +-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 +- (eval "$ac_compile") 2>conftest.er1 +- ac_status=$? +- grep -v '^ *+' conftest.er1 >conftest.err +- rm -f conftest.er1 +- cat conftest.err >&5 +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); } && { +- test -z "$ac_c_werror_flag" || +- test ! -s conftest.err +- } && test -s conftest.$ac_objext; then +- ac_header_compiler=yes +-else +- echo "$as_me: failed program was:" >&5 +-sed 's/^/| /' conftest.$ac_ext >&5 +- +- ac_header_compiler=no +-fi +- +-rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext +-{ echo "$as_me:$LINENO: result: $ac_header_compiler" >&5 +-echo "${ECHO_T}$ac_header_compiler" >&6; } +- +-# Is the header present? +-{ echo "$as_me:$LINENO: checking $ac_header presence" >&5 +-echo $ECHO_N "checking $ac_header presence... $ECHO_C" >&6; } +-cat >conftest.$ac_ext <<_ACEOF +-/* confdefs.h. */ +-_ACEOF +-cat confdefs.h >>conftest.$ac_ext +-cat >>conftest.$ac_ext <<_ACEOF +-/* end confdefs.h. */ +-#include <$ac_header> +-_ACEOF +-if { (ac_try="$ac_cpp conftest.$ac_ext" +-case "(($ac_try" in +- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; +- *) ac_try_echo=$ac_try;; +-esac +-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 +- (eval "$ac_cpp conftest.$ac_ext") 2>conftest.er1 +- ac_status=$? +- grep -v '^ *+' conftest.er1 >conftest.err +- rm -f conftest.er1 +- cat conftest.err >&5 +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); } >/dev/null && { +- test -z "$ac_c_preproc_warn_flag$ac_c_werror_flag" || +- test ! -s conftest.err +- }; then +- ac_header_preproc=yes +-else +- echo "$as_me: failed program was:" >&5 +-sed 's/^/| /' conftest.$ac_ext >&5 +- +- ac_header_preproc=no +-fi +- +-rm -f conftest.err conftest.$ac_ext +-{ echo "$as_me:$LINENO: result: $ac_header_preproc" >&5 +-echo "${ECHO_T}$ac_header_preproc" >&6; } +- +-# So? What about this header? +-case $ac_header_compiler:$ac_header_preproc:$ac_c_preproc_warn_flag in +- yes:no: ) +- { echo "$as_me:$LINENO: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&5 +-echo "$as_me: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&2;} +- { echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the compiler's result" >&5 +-echo "$as_me: WARNING: $ac_header: proceeding with the compiler's result" >&2;} +- ac_header_preproc=yes +- ;; +- no:yes:* ) +- { echo "$as_me:$LINENO: WARNING: $ac_header: present but cannot be compiled" >&5 +-echo "$as_me: WARNING: $ac_header: present but cannot be compiled" >&2;} +- { echo "$as_me:$LINENO: WARNING: $ac_header: check for missing prerequisite headers?" >&5 +-echo "$as_me: WARNING: $ac_header: check for missing prerequisite headers?" >&2;} +- { echo "$as_me:$LINENO: WARNING: $ac_header: see the Autoconf documentation" >&5 +-echo "$as_me: WARNING: $ac_header: see the Autoconf documentation" >&2;} +- { echo "$as_me:$LINENO: WARNING: $ac_header: section \"Present But Cannot Be Compiled\"" >&5 +-echo "$as_me: WARNING: $ac_header: section \"Present But Cannot Be Compiled\"" >&2;} +- { echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the preprocessor's result" >&5 +-echo "$as_me: WARNING: $ac_header: proceeding with the preprocessor's result" >&2;} +- { echo "$as_me:$LINENO: WARNING: $ac_header: in the future, the compiler will take precedence" >&5 +-echo "$as_me: WARNING: $ac_header: in the future, the compiler will take precedence" >&2;} +- +- ;; +-esac +-{ echo "$as_me:$LINENO: checking for $ac_header" >&5 +-echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6; } +-if { as_var=$as_ac_Header; eval "test \"\${$as_var+set}\" = set"; }; then +- echo $ECHO_N "(cached) $ECHO_C" >&6 +-else +- eval "$as_ac_Header=\$ac_header_preproc" +-fi +-ac_res=`eval echo '${'$as_ac_Header'}'` +- { echo "$as_me:$LINENO: result: $ac_res" >&5 +-echo "${ECHO_T}$ac_res" >&6; } +- +-fi +-if test `eval echo '${'$as_ac_Header'}'` = yes; then +- cat >>confdefs.h <<_ACEOF +-#define `echo "HAVE_$ac_header" | $as_tr_cpp` 1 +-_ACEOF +- +-fi +- +-done +- +-fi # end "${SYS}" != "mingw32" -a "${SYS}" != "mingwce" +- +-{ echo "$as_me:$LINENO: checking whether time.h and sys/time.h may both be included" >&5 +-echo $ECHO_N "checking whether time.h and sys/time.h may both be included... $ECHO_C" >&6; } +-if test "${ac_cv_header_time+set}" = set; then +- echo $ECHO_N "(cached) $ECHO_C" >&6 +-else +- cat >conftest.$ac_ext <<_ACEOF +-/* confdefs.h. */ +-_ACEOF +-cat confdefs.h >>conftest.$ac_ext +-cat >>conftest.$ac_ext <<_ACEOF +-/* end confdefs.h. */ +-#include +-#include +-#include +- +-int +-main () +-{ +-if ((struct tm *) 0) +-return 0; +- ; +- return 0; +-} +-_ACEOF +-rm -f conftest.$ac_objext +-if { (ac_try="$ac_compile" +-case "(($ac_try" in +- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; +- *) ac_try_echo=$ac_try;; +-esac +-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 +- (eval "$ac_compile") 2>conftest.er1 +- ac_status=$? +- grep -v '^ *+' conftest.er1 >conftest.err +- rm -f conftest.er1 +- cat conftest.err >&5 +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); } && { +- test -z "$ac_c_werror_flag" || +- test ! -s conftest.err +- } && test -s conftest.$ac_objext; then +- ac_cv_header_time=yes +-else +- echo "$as_me: failed program was:" >&5 +-sed 's/^/| /' conftest.$ac_ext >&5 +- +- ac_cv_header_time=no +-fi +- +-rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext +-fi +-{ echo "$as_me:$LINENO: result: $ac_cv_header_time" >&5 +-echo "${ECHO_T}$ac_cv_header_time" >&6; } +-if test $ac_cv_header_time = yes; then +- +-cat >>confdefs.h <<\_ACEOF +-#define TIME_WITH_SYS_TIME 1 +-_ACEOF +- +-fi +- +- +-need_dirent=false +- +-for ac_header in dirent.h +-do +-as_ac_Header=`echo "ac_cv_header_$ac_header" | $as_tr_sh` +-if { as_var=$as_ac_Header; eval "test \"\${$as_var+set}\" = set"; }; then +- { echo "$as_me:$LINENO: checking for $ac_header" >&5 +-echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6; } +-if { as_var=$as_ac_Header; eval "test \"\${$as_var+set}\" = set"; }; then +- echo $ECHO_N "(cached) $ECHO_C" >&6 +-fi +-ac_res=`eval echo '${'$as_ac_Header'}'` +- { echo "$as_me:$LINENO: result: $ac_res" >&5 +-echo "${ECHO_T}$ac_res" >&6; } +-else +- # Is the header compilable? +-{ echo "$as_me:$LINENO: checking $ac_header usability" >&5 +-echo $ECHO_N "checking $ac_header usability... $ECHO_C" >&6; } +-cat >conftest.$ac_ext <<_ACEOF +-/* confdefs.h. */ +-_ACEOF +-cat confdefs.h >>conftest.$ac_ext +-cat >>conftest.$ac_ext <<_ACEOF +-/* end confdefs.h. */ +-$ac_includes_default +-#include <$ac_header> +-_ACEOF +-rm -f conftest.$ac_objext +-if { (ac_try="$ac_compile" +-case "(($ac_try" in +- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; +- *) ac_try_echo=$ac_try;; +-esac +-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 +- (eval "$ac_compile") 2>conftest.er1 +- ac_status=$? +- grep -v '^ *+' conftest.er1 >conftest.err +- rm -f conftest.er1 +- cat conftest.err >&5 +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); } && { +- test -z "$ac_c_werror_flag" || +- test ! -s conftest.err +- } && test -s conftest.$ac_objext; then +- ac_header_compiler=yes +-else +- echo "$as_me: failed program was:" >&5 +-sed 's/^/| /' conftest.$ac_ext >&5 +- +- ac_header_compiler=no +-fi +- +-rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext +-{ echo "$as_me:$LINENO: result: $ac_header_compiler" >&5 +-echo "${ECHO_T}$ac_header_compiler" >&6; } +- +-# Is the header present? +-{ echo "$as_me:$LINENO: checking $ac_header presence" >&5 +-echo $ECHO_N "checking $ac_header presence... $ECHO_C" >&6; } +-cat >conftest.$ac_ext <<_ACEOF +-/* confdefs.h. */ +-_ACEOF +-cat confdefs.h >>conftest.$ac_ext +-cat >>conftest.$ac_ext <<_ACEOF +-/* end confdefs.h. */ +-#include <$ac_header> +-_ACEOF +-if { (ac_try="$ac_cpp conftest.$ac_ext" +-case "(($ac_try" in +- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; +- *) ac_try_echo=$ac_try;; +-esac +-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 +- (eval "$ac_cpp conftest.$ac_ext") 2>conftest.er1 +- ac_status=$? +- grep -v '^ *+' conftest.er1 >conftest.err +- rm -f conftest.er1 +- cat conftest.err >&5 +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); } >/dev/null && { +- test -z "$ac_c_preproc_warn_flag$ac_c_werror_flag" || +- test ! -s conftest.err +- }; then +- ac_header_preproc=yes +-else +- echo "$as_me: failed program was:" >&5 +-sed 's/^/| /' conftest.$ac_ext >&5 +- +- ac_header_preproc=no +-fi +- +-rm -f conftest.err conftest.$ac_ext +-{ echo "$as_me:$LINENO: result: $ac_header_preproc" >&5 +-echo "${ECHO_T}$ac_header_preproc" >&6; } +- +-# So? What about this header? +-case $ac_header_compiler:$ac_header_preproc:$ac_c_preproc_warn_flag in +- yes:no: ) +- { echo "$as_me:$LINENO: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&5 +-echo "$as_me: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&2;} +- { echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the compiler's result" >&5 +-echo "$as_me: WARNING: $ac_header: proceeding with the compiler's result" >&2;} +- ac_header_preproc=yes +- ;; +- no:yes:* ) +- { echo "$as_me:$LINENO: WARNING: $ac_header: present but cannot be compiled" >&5 +-echo "$as_me: WARNING: $ac_header: present but cannot be compiled" >&2;} +- { echo "$as_me:$LINENO: WARNING: $ac_header: check for missing prerequisite headers?" >&5 +-echo "$as_me: WARNING: $ac_header: check for missing prerequisite headers?" >&2;} +- { echo "$as_me:$LINENO: WARNING: $ac_header: see the Autoconf documentation" >&5 +-echo "$as_me: WARNING: $ac_header: see the Autoconf documentation" >&2;} +- { echo "$as_me:$LINENO: WARNING: $ac_header: section \"Present But Cannot Be Compiled\"" >&5 +-echo "$as_me: WARNING: $ac_header: section \"Present But Cannot Be Compiled\"" >&2;} +- { echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the preprocessor's result" >&5 +-echo "$as_me: WARNING: $ac_header: proceeding with the preprocessor's result" >&2;} +- { echo "$as_me:$LINENO: WARNING: $ac_header: in the future, the compiler will take precedence" >&5 +-echo "$as_me: WARNING: $ac_header: in the future, the compiler will take precedence" >&2;} +- +- ;; +-esac +-{ echo "$as_me:$LINENO: checking for $ac_header" >&5 +-echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6; } +-if { as_var=$as_ac_Header; eval "test \"\${$as_var+set}\" = set"; }; then +- echo $ECHO_N "(cached) $ECHO_C" >&6 +-else +- eval "$as_ac_Header=\$ac_header_preproc" +-fi +-ac_res=`eval echo '${'$as_ac_Header'}'` +- { echo "$as_me:$LINENO: result: $ac_res" >&5 +-echo "${ECHO_T}$ac_res" >&6; } +- +-fi +-if test `eval echo '${'$as_ac_Header'}'` = yes; then +- cat >>confdefs.h <<_ACEOF +-#define `echo "HAVE_$ac_header" | $as_tr_cpp` 1 +-_ACEOF +- +-else +- need_dirent=: +-fi +- +-done +- +- +- +-if ${need_dirent}; then +- BUILD_DIRENT_TRUE= +- BUILD_DIRENT_FALSE='#' +-else +- BUILD_DIRENT_TRUE='#' +- BUILD_DIRENT_FALSE= +-fi +- +- +-if test "${SYS}" != "mingw32" -a "${SYS}" != "mingwce"; then +-{ echo "$as_me:$LINENO: checking for nanosleep in time.h" >&5 +-echo $ECHO_N "checking for nanosleep in time.h... $ECHO_C" >&6; } +-cat >conftest.$ac_ext <<_ACEOF +-/* confdefs.h. */ +-_ACEOF +-cat confdefs.h >>conftest.$ac_ext +-cat >>conftest.$ac_ext <<_ACEOF +-/* end confdefs.h. */ +-#include +- +-_ACEOF +-if (eval "$ac_cpp conftest.$ac_ext") 2>&5 | +- $EGREP "nanosleep" >/dev/null 2>&1; then +- +- { echo "$as_me:$LINENO: result: yes" >&5 +-echo "${ECHO_T}yes" >&6; } +- +-cat >>confdefs.h <<\_ACEOF +-#define HAVE_DECL_NANOSLEEP 1 +-_ACEOF +- +- +-else +- +- { echo "$as_me:$LINENO: result: no" >&5 +-echo "${ECHO_T}no" >&6; } +- +-fi +-rm -f conftest* +- +-fi # end "${SYS}" != "mingw32" -a "${SYS}" != "mingwce" +- +-{ echo "$as_me:$LINENO: checking for timespec in sys/time.h" >&5 +-echo $ECHO_N "checking for timespec in sys/time.h... $ECHO_C" >&6; } +-cat >conftest.$ac_ext <<_ACEOF +-/* confdefs.h. */ +-_ACEOF +-cat confdefs.h >>conftest.$ac_ext +-cat >>conftest.$ac_ext <<_ACEOF +-/* end confdefs.h. */ +-#include +- +-_ACEOF +-if (eval "$ac_cpp conftest.$ac_ext") 2>&5 | +- $EGREP "timespec" >/dev/null 2>&1; then +- +- { echo "$as_me:$LINENO: result: yes" >&5 +-echo "${ECHO_T}yes" >&6; } +- +-cat >>confdefs.h <<\_ACEOF +-#define HAVE_STRUCT_TIMESPEC 1 +-_ACEOF +- +- +-else +- +- { echo "$as_me:$LINENO: result: no" >&5 +-echo "${ECHO_T}no" >&6; } +- +-fi +-rm -f conftest* +- +- +-if test "${SYS}" != "mingw32" -a "${SYS}" != "mingwce"; then +- +- +- +- +-for ac_header in cthreads.h pthread.h kernel/scheduler.h kernel/OS.h +-do +-as_ac_Header=`echo "ac_cv_header_$ac_header" | $as_tr_sh` +-if { as_var=$as_ac_Header; eval "test \"\${$as_var+set}\" = set"; }; then +- { echo "$as_me:$LINENO: checking for $ac_header" >&5 +-echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6; } +-if { as_var=$as_ac_Header; eval "test \"\${$as_var+set}\" = set"; }; then +- echo $ECHO_N "(cached) $ECHO_C" >&6 +-fi +-ac_res=`eval echo '${'$as_ac_Header'}'` +- { echo "$as_me:$LINENO: result: $ac_res" >&5 +-echo "${ECHO_T}$ac_res" >&6; } +-else +- # Is the header compilable? +-{ echo "$as_me:$LINENO: checking $ac_header usability" >&5 +-echo $ECHO_N "checking $ac_header usability... $ECHO_C" >&6; } +-cat >conftest.$ac_ext <<_ACEOF +-/* confdefs.h. */ +-_ACEOF +-cat confdefs.h >>conftest.$ac_ext +-cat >>conftest.$ac_ext <<_ACEOF +-/* end confdefs.h. */ +-$ac_includes_default +-#include <$ac_header> +-_ACEOF +-rm -f conftest.$ac_objext +-if { (ac_try="$ac_compile" +-case "(($ac_try" in +- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; +- *) ac_try_echo=$ac_try;; +-esac +-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 +- (eval "$ac_compile") 2>conftest.er1 +- ac_status=$? +- grep -v '^ *+' conftest.er1 >conftest.err +- rm -f conftest.er1 +- cat conftest.err >&5 +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); } && { +- test -z "$ac_c_werror_flag" || +- test ! -s conftest.err +- } && test -s conftest.$ac_objext; then +- ac_header_compiler=yes +-else +- echo "$as_me: failed program was:" >&5 +-sed 's/^/| /' conftest.$ac_ext >&5 +- +- ac_header_compiler=no +-fi +- +-rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext +-{ echo "$as_me:$LINENO: result: $ac_header_compiler" >&5 +-echo "${ECHO_T}$ac_header_compiler" >&6; } +- +-# Is the header present? +-{ echo "$as_me:$LINENO: checking $ac_header presence" >&5 +-echo $ECHO_N "checking $ac_header presence... $ECHO_C" >&6; } +-cat >conftest.$ac_ext <<_ACEOF +-/* confdefs.h. */ +-_ACEOF +-cat confdefs.h >>conftest.$ac_ext +-cat >>conftest.$ac_ext <<_ACEOF +-/* end confdefs.h. */ +-#include <$ac_header> +-_ACEOF +-if { (ac_try="$ac_cpp conftest.$ac_ext" +-case "(($ac_try" in +- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; +- *) ac_try_echo=$ac_try;; +-esac +-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 +- (eval "$ac_cpp conftest.$ac_ext") 2>conftest.er1 +- ac_status=$? +- grep -v '^ *+' conftest.er1 >conftest.err +- rm -f conftest.er1 +- cat conftest.err >&5 +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); } >/dev/null && { +- test -z "$ac_c_preproc_warn_flag$ac_c_werror_flag" || +- test ! -s conftest.err +- }; then +- ac_header_preproc=yes +-else +- echo "$as_me: failed program was:" >&5 +-sed 's/^/| /' conftest.$ac_ext >&5 +- +- ac_header_preproc=no +-fi +- +-rm -f conftest.err conftest.$ac_ext +-{ echo "$as_me:$LINENO: result: $ac_header_preproc" >&5 +-echo "${ECHO_T}$ac_header_preproc" >&6; } +- +-# So? What about this header? +-case $ac_header_compiler:$ac_header_preproc:$ac_c_preproc_warn_flag in +- yes:no: ) +- { echo "$as_me:$LINENO: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&5 +-echo "$as_me: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&2;} +- { echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the compiler's result" >&5 +-echo "$as_me: WARNING: $ac_header: proceeding with the compiler's result" >&2;} +- ac_header_preproc=yes +- ;; +- no:yes:* ) +- { echo "$as_me:$LINENO: WARNING: $ac_header: present but cannot be compiled" >&5 +-echo "$as_me: WARNING: $ac_header: present but cannot be compiled" >&2;} +- { echo "$as_me:$LINENO: WARNING: $ac_header: check for missing prerequisite headers?" >&5 +-echo "$as_me: WARNING: $ac_header: check for missing prerequisite headers?" >&2;} +- { echo "$as_me:$LINENO: WARNING: $ac_header: see the Autoconf documentation" >&5 +-echo "$as_me: WARNING: $ac_header: see the Autoconf documentation" >&2;} +- { echo "$as_me:$LINENO: WARNING: $ac_header: section \"Present But Cannot Be Compiled\"" >&5 +-echo "$as_me: WARNING: $ac_header: section \"Present But Cannot Be Compiled\"" >&2;} +- { echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the preprocessor's result" >&5 +-echo "$as_me: WARNING: $ac_header: proceeding with the preprocessor's result" >&2;} +- { echo "$as_me:$LINENO: WARNING: $ac_header: in the future, the compiler will take precedence" >&5 +-echo "$as_me: WARNING: $ac_header: in the future, the compiler will take precedence" >&2;} +- +- ;; +-esac +-{ echo "$as_me:$LINENO: checking for $ac_header" >&5 +-echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6; } +-if { as_var=$as_ac_Header; eval "test \"\${$as_var+set}\" = set"; }; then +- echo $ECHO_N "(cached) $ECHO_C" >&6 +-else +- eval "$as_ac_Header=\$ac_header_preproc" +-fi +-ac_res=`eval echo '${'$as_ac_Header'}'` +- { echo "$as_me:$LINENO: result: $ac_res" >&5 +-echo "${ECHO_T}$ac_res" >&6; } +- +-fi +-if test `eval echo '${'$as_ac_Header'}'` = yes; then +- cat >>confdefs.h <<_ACEOF +-#define `echo "HAVE_$ac_header" | $as_tr_cpp` 1 +-_ACEOF +- +-fi +- +-done +- +-fi # end "${SYS}" != "mingw32" -a "${SYS}" != "mingwce" +- +-{ echo "$as_me:$LINENO: checking for X" >&5 +-echo $ECHO_N "checking for X... $ECHO_C" >&6; } +- +- +-# Check whether --with-x was given. +-if test "${with_x+set}" = set; then +- withval=$with_x; +-fi +- +-# $have_x is `yes', `no', `disabled', or empty when we do not yet know. +-if test "x$with_x" = xno; then +- # The user explicitly disabled X. +- have_x=disabled +-else +- case $x_includes,$x_libraries in #( +- *\'*) { { echo "$as_me:$LINENO: error: Cannot use X directory names containing '" >&5 +-echo "$as_me: error: Cannot use X directory names containing '" >&2;} +- { (exit 1); exit 1; }; };; #( +- *,NONE | NONE,*) if test "${ac_cv_have_x+set}" = set; then +- echo $ECHO_N "(cached) $ECHO_C" >&6 +-else +- # One or both of the vars are not set, and there is no cached value. +-ac_x_includes=no ac_x_libraries=no +-rm -f -r conftest.dir +-if mkdir conftest.dir; then +- cd conftest.dir +- cat >Imakefile <<'_ACEOF' +-incroot: +- @echo incroot='${INCROOT}' +-usrlibdir: +- @echo usrlibdir='${USRLIBDIR}' +-libdir: +- @echo libdir='${LIBDIR}' +-_ACEOF +- if (export CC; ${XMKMF-xmkmf}) >/dev/null 2>/dev/null && test -f Makefile; then +- # GNU make sometimes prints "make[1]: Entering...", which would confuse us. +- for ac_var in incroot usrlibdir libdir; do +- eval "ac_im_$ac_var=\`\${MAKE-make} $ac_var 2>/dev/null | sed -n 's/^$ac_var=//p'\`" +- done +- # Open Windows xmkmf reportedly sets LIBDIR instead of USRLIBDIR. +- for ac_extension in a so sl; do +- if test ! -f "$ac_im_usrlibdir/libX11.$ac_extension" && +- test -f "$ac_im_libdir/libX11.$ac_extension"; then +- ac_im_usrlibdir=$ac_im_libdir; break +- fi +- done +- # Screen out bogus values from the imake configuration. They are +- # bogus both because they are the default anyway, and because +- # using them would break gcc on systems where it needs fixed includes. +- case $ac_im_incroot in +- /usr/include) ac_x_includes= ;; +- *) test -f "$ac_im_incroot/X11/Xos.h" && ac_x_includes=$ac_im_incroot;; +- esac +- case $ac_im_usrlibdir in +- /usr/lib | /lib) ;; +- *) test -d "$ac_im_usrlibdir" && ac_x_libraries=$ac_im_usrlibdir ;; +- esac +- fi +- cd .. +- rm -f -r conftest.dir +-fi +- +-# Standard set of common directories for X headers. +-# Check X11 before X11Rn because it is often a symlink to the current release. +-ac_x_header_dirs=' +-/usr/X11/include +-/usr/X11R6/include +-/usr/X11R5/include +-/usr/X11R4/include +- +-/usr/include/X11 +-/usr/include/X11R6 +-/usr/include/X11R5 +-/usr/include/X11R4 +- +-/usr/local/X11/include +-/usr/local/X11R6/include +-/usr/local/X11R5/include +-/usr/local/X11R4/include +- +-/usr/local/include/X11 +-/usr/local/include/X11R6 +-/usr/local/include/X11R5 +-/usr/local/include/X11R4 +- +-/usr/X386/include +-/usr/x386/include +-/usr/XFree86/include/X11 +- +-/usr/include +-/usr/local/include +-/usr/unsupported/include +-/usr/athena/include +-/usr/local/x11r5/include +-/usr/lpp/Xamples/include +- +-/usr/openwin/include +-/usr/openwin/share/include' +- +-if test "$ac_x_includes" = no; then +- # Guess where to find include files, by looking for Xlib.h. +- # First, try using that file with no special directory specified. +- cat >conftest.$ac_ext <<_ACEOF +-/* confdefs.h. */ +-_ACEOF +-cat confdefs.h >>conftest.$ac_ext +-cat >>conftest.$ac_ext <<_ACEOF +-/* end confdefs.h. */ +-#include +-_ACEOF +-if { (ac_try="$ac_cpp conftest.$ac_ext" +-case "(($ac_try" in +- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; +- *) ac_try_echo=$ac_try;; +-esac +-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 +- (eval "$ac_cpp conftest.$ac_ext") 2>conftest.er1 +- ac_status=$? +- grep -v '^ *+' conftest.er1 >conftest.err +- rm -f conftest.er1 +- cat conftest.err >&5 +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); } >/dev/null && { +- test -z "$ac_c_preproc_warn_flag$ac_c_werror_flag" || +- test ! -s conftest.err +- }; then +- # We can compile using X headers with no special include directory. +-ac_x_includes= +-else +- echo "$as_me: failed program was:" >&5 +-sed 's/^/| /' conftest.$ac_ext >&5 +- +- for ac_dir in $ac_x_header_dirs; do +- if test -r "$ac_dir/X11/Xlib.h"; then +- ac_x_includes=$ac_dir +- break +- fi +-done +-fi +- +-rm -f conftest.err conftest.$ac_ext +-fi # $ac_x_includes = no +- +-if test "$ac_x_libraries" = no; then +- # Check for the libraries. +- # See if we find them without any special options. +- # Don't add to $LIBS permanently. +- ac_save_LIBS=$LIBS +- LIBS="-lX11 $LIBS" +- cat >conftest.$ac_ext <<_ACEOF +-/* confdefs.h. */ +-_ACEOF +-cat confdefs.h >>conftest.$ac_ext +-cat >>conftest.$ac_ext <<_ACEOF +-/* end confdefs.h. */ +-#include +-int +-main () +-{ +-XrmInitialize () +- ; +- return 0; +-} +-_ACEOF +-rm -f conftest.$ac_objext conftest$ac_exeext +-if { (ac_try="$ac_link" +-case "(($ac_try" in +- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; +- *) ac_try_echo=$ac_try;; +-esac +-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 +- (eval "$ac_link") 2>conftest.er1 +- ac_status=$? +- grep -v '^ *+' conftest.er1 >conftest.err +- rm -f conftest.er1 +- cat conftest.err >&5 +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); } && { +- test -z "$ac_c_werror_flag" || +- test ! -s conftest.err +- } && test -s conftest$ac_exeext && +- $as_test_x conftest$ac_exeext; then +- LIBS=$ac_save_LIBS +-# We can link X programs with no special library path. +-ac_x_libraries= +-else +- echo "$as_me: failed program was:" >&5 +-sed 's/^/| /' conftest.$ac_ext >&5 +- +- LIBS=$ac_save_LIBS +-for ac_dir in `echo "$ac_x_includes $ac_x_header_dirs" | sed s/include/lib/g` +-do +- # Don't even attempt the hair of trying to link an X program! +- for ac_extension in a so sl; do +- if test -r "$ac_dir/libX11.$ac_extension"; then +- ac_x_libraries=$ac_dir +- break 2 +- fi +- done +-done +-fi +- +-rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ +- conftest$ac_exeext conftest.$ac_ext +-fi # $ac_x_libraries = no +- +-case $ac_x_includes,$ac_x_libraries in #( +- no,* | *,no | *\'*) +- # Didn't find X, or a directory has "'" in its name. +- ac_cv_have_x="have_x=no";; #( +- *) +- # Record where we found X for the cache. +- ac_cv_have_x="have_x=yes\ +- ac_x_includes='$ac_x_includes'\ +- ac_x_libraries='$ac_x_libraries'" +-esac +-fi +-;; #( +- *) have_x=yes;; +- esac +- eval "$ac_cv_have_x" +-fi # $with_x != no +- +-if test "$have_x" != yes; then +- { echo "$as_me:$LINENO: result: $have_x" >&5 +-echo "${ECHO_T}$have_x" >&6; } +- no_x=yes +-else +- # If each of the values was on the command line, it overrides each guess. +- test "x$x_includes" = xNONE && x_includes=$ac_x_includes +- test "x$x_libraries" = xNONE && x_libraries=$ac_x_libraries +- # Update the cache value to reflect the command line values. +- ac_cv_have_x="have_x=yes\ +- ac_x_includes='$x_includes'\ +- ac_x_libraries='$x_libraries'" +- { echo "$as_me:$LINENO: result: libraries $x_libraries, headers $x_includes" >&5 +-echo "${ECHO_T}libraries $x_libraries, headers $x_includes" >&6; } +-fi +- +-if test "$no_x" = yes; then +- # Not all programs may use this symbol, but it does not hurt to define it. +- +-cat >>confdefs.h <<\_ACEOF +-#define X_DISPLAY_MISSING 1 +-_ACEOF +- +- X_CFLAGS= X_PRE_LIBS= X_LIBS= X_EXTRA_LIBS= +-else +- if test -n "$x_includes"; then +- X_CFLAGS="$X_CFLAGS -I$x_includes" +- fi +- +- # It would also be nice to do this for all -L options, not just this one. +- if test -n "$x_libraries"; then +- X_LIBS="$X_LIBS -L$x_libraries" +- # For Solaris; some versions of Sun CC require a space after -R and +- # others require no space. Words are not sufficient . . . . +- { echo "$as_me:$LINENO: checking whether -R must be followed by a space" >&5 +-echo $ECHO_N "checking whether -R must be followed by a space... $ECHO_C" >&6; } +- ac_xsave_LIBS=$LIBS; LIBS="$LIBS -R$x_libraries" +- ac_xsave_c_werror_flag=$ac_c_werror_flag +- ac_c_werror_flag=yes +- cat >conftest.$ac_ext <<_ACEOF +-/* confdefs.h. */ +-_ACEOF +-cat confdefs.h >>conftest.$ac_ext +-cat >>conftest.$ac_ext <<_ACEOF +-/* end confdefs.h. */ +- +-int +-main () +-{ +- +- ; +- return 0; +-} +-_ACEOF +-rm -f conftest.$ac_objext conftest$ac_exeext +-if { (ac_try="$ac_link" +-case "(($ac_try" in +- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; +- *) ac_try_echo=$ac_try;; +-esac +-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 +- (eval "$ac_link") 2>conftest.er1 +- ac_status=$? +- grep -v '^ *+' conftest.er1 >conftest.err +- rm -f conftest.er1 +- cat conftest.err >&5 +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); } && { +- test -z "$ac_c_werror_flag" || +- test ! -s conftest.err +- } && test -s conftest$ac_exeext && +- $as_test_x conftest$ac_exeext; then +- { echo "$as_me:$LINENO: result: no" >&5 +-echo "${ECHO_T}no" >&6; } +- X_LIBS="$X_LIBS -R$x_libraries" +-else +- echo "$as_me: failed program was:" >&5 +-sed 's/^/| /' conftest.$ac_ext >&5 +- +- LIBS="$ac_xsave_LIBS -R $x_libraries" +- cat >conftest.$ac_ext <<_ACEOF +-/* confdefs.h. */ +-_ACEOF +-cat confdefs.h >>conftest.$ac_ext +-cat >>conftest.$ac_ext <<_ACEOF +-/* end confdefs.h. */ +- +-int +-main () +-{ +- +- ; +- return 0; +-} +-_ACEOF +-rm -f conftest.$ac_objext conftest$ac_exeext +-if { (ac_try="$ac_link" +-case "(($ac_try" in +- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; +- *) ac_try_echo=$ac_try;; +-esac +-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 +- (eval "$ac_link") 2>conftest.er1 +- ac_status=$? +- grep -v '^ *+' conftest.er1 >conftest.err +- rm -f conftest.er1 +- cat conftest.err >&5 +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); } && { +- test -z "$ac_c_werror_flag" || +- test ! -s conftest.err +- } && test -s conftest$ac_exeext && +- $as_test_x conftest$ac_exeext; then +- { echo "$as_me:$LINENO: result: yes" >&5 +-echo "${ECHO_T}yes" >&6; } +- X_LIBS="$X_LIBS -R $x_libraries" +-else +- echo "$as_me: failed program was:" >&5 +-sed 's/^/| /' conftest.$ac_ext >&5 +- +- { echo "$as_me:$LINENO: result: neither works" >&5 +-echo "${ECHO_T}neither works" >&6; } +-fi +- +-rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ +- conftest$ac_exeext conftest.$ac_ext +-fi +- +-rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ +- conftest$ac_exeext conftest.$ac_ext +- ac_c_werror_flag=$ac_xsave_c_werror_flag +- LIBS=$ac_xsave_LIBS +- fi +- +- # Check for system-dependent libraries X programs must link with. +- # Do this before checking for the system-independent R6 libraries +- # (-lICE), since we may need -lsocket or whatever for X linking. +- +- if test "$ISC" = yes; then +- X_EXTRA_LIBS="$X_EXTRA_LIBS -lnsl_s -linet" +- else +- # Martyn Johnson says this is needed for Ultrix, if the X +- # libraries were built with DECnet support. And Karl Berry says +- # the Alpha needs dnet_stub (dnet does not exist). +- ac_xsave_LIBS="$LIBS"; LIBS="$LIBS $X_LIBS -lX11" +- cat >conftest.$ac_ext <<_ACEOF +-/* confdefs.h. */ +-_ACEOF +-cat confdefs.h >>conftest.$ac_ext +-cat >>conftest.$ac_ext <<_ACEOF +-/* end confdefs.h. */ +- +-/* Override any GCC internal prototype to avoid an error. +- Use char because int might match the return type of a GCC +- builtin and then its argument prototype would still apply. */ +-#ifdef __cplusplus +-extern "C" +-#endif +-char XOpenDisplay (); +-int +-main () +-{ +-return XOpenDisplay (); +- ; +- return 0; +-} +-_ACEOF +-rm -f conftest.$ac_objext conftest$ac_exeext +-if { (ac_try="$ac_link" +-case "(($ac_try" in +- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; +- *) ac_try_echo=$ac_try;; +-esac +-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 +- (eval "$ac_link") 2>conftest.er1 +- ac_status=$? +- grep -v '^ *+' conftest.er1 >conftest.err +- rm -f conftest.er1 +- cat conftest.err >&5 +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); } && { +- test -z "$ac_c_werror_flag" || +- test ! -s conftest.err +- } && test -s conftest$ac_exeext && +- $as_test_x conftest$ac_exeext; then +- : +-else +- echo "$as_me: failed program was:" >&5 +-sed 's/^/| /' conftest.$ac_ext >&5 +- +- { echo "$as_me:$LINENO: checking for dnet_ntoa in -ldnet" >&5 +-echo $ECHO_N "checking for dnet_ntoa in -ldnet... $ECHO_C" >&6; } +-if test "${ac_cv_lib_dnet_dnet_ntoa+set}" = set; then +- echo $ECHO_N "(cached) $ECHO_C" >&6 +-else +- ac_check_lib_save_LIBS=$LIBS +-LIBS="-ldnet $LIBS" +-cat >conftest.$ac_ext <<_ACEOF +-/* confdefs.h. */ +-_ACEOF +-cat confdefs.h >>conftest.$ac_ext +-cat >>conftest.$ac_ext <<_ACEOF +-/* end confdefs.h. */ +- +-/* Override any GCC internal prototype to avoid an error. +- Use char because int might match the return type of a GCC +- builtin and then its argument prototype would still apply. */ +-#ifdef __cplusplus +-extern "C" +-#endif +-char dnet_ntoa (); +-int +-main () +-{ +-return dnet_ntoa (); +- ; +- return 0; +-} +-_ACEOF +-rm -f conftest.$ac_objext conftest$ac_exeext +-if { (ac_try="$ac_link" +-case "(($ac_try" in +- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; +- *) ac_try_echo=$ac_try;; +-esac +-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 +- (eval "$ac_link") 2>conftest.er1 +- ac_status=$? +- grep -v '^ *+' conftest.er1 >conftest.err +- rm -f conftest.er1 +- cat conftest.err >&5 +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); } && { +- test -z "$ac_c_werror_flag" || +- test ! -s conftest.err +- } && test -s conftest$ac_exeext && +- $as_test_x conftest$ac_exeext; then +- ac_cv_lib_dnet_dnet_ntoa=yes +-else +- echo "$as_me: failed program was:" >&5 +-sed 's/^/| /' conftest.$ac_ext >&5 +- +- ac_cv_lib_dnet_dnet_ntoa=no +-fi +- +-rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ +- conftest$ac_exeext conftest.$ac_ext +-LIBS=$ac_check_lib_save_LIBS +-fi +-{ echo "$as_me:$LINENO: result: $ac_cv_lib_dnet_dnet_ntoa" >&5 +-echo "${ECHO_T}$ac_cv_lib_dnet_dnet_ntoa" >&6; } +-if test $ac_cv_lib_dnet_dnet_ntoa = yes; then +- X_EXTRA_LIBS="$X_EXTRA_LIBS -ldnet" +-fi +- +- if test $ac_cv_lib_dnet_dnet_ntoa = no; then +- { echo "$as_me:$LINENO: checking for dnet_ntoa in -ldnet_stub" >&5 +-echo $ECHO_N "checking for dnet_ntoa in -ldnet_stub... $ECHO_C" >&6; } +-if test "${ac_cv_lib_dnet_stub_dnet_ntoa+set}" = set; then +- echo $ECHO_N "(cached) $ECHO_C" >&6 +-else +- ac_check_lib_save_LIBS=$LIBS +-LIBS="-ldnet_stub $LIBS" +-cat >conftest.$ac_ext <<_ACEOF +-/* confdefs.h. */ +-_ACEOF +-cat confdefs.h >>conftest.$ac_ext +-cat >>conftest.$ac_ext <<_ACEOF +-/* end confdefs.h. */ +- +-/* Override any GCC internal prototype to avoid an error. +- Use char because int might match the return type of a GCC +- builtin and then its argument prototype would still apply. */ +-#ifdef __cplusplus +-extern "C" +-#endif +-char dnet_ntoa (); +-int +-main () +-{ +-return dnet_ntoa (); +- ; +- return 0; +-} +-_ACEOF +-rm -f conftest.$ac_objext conftest$ac_exeext +-if { (ac_try="$ac_link" +-case "(($ac_try" in +- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; +- *) ac_try_echo=$ac_try;; +-esac +-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 +- (eval "$ac_link") 2>conftest.er1 +- ac_status=$? +- grep -v '^ *+' conftest.er1 >conftest.err +- rm -f conftest.er1 +- cat conftest.err >&5 +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); } && { +- test -z "$ac_c_werror_flag" || +- test ! -s conftest.err +- } && test -s conftest$ac_exeext && +- $as_test_x conftest$ac_exeext; then +- ac_cv_lib_dnet_stub_dnet_ntoa=yes +-else +- echo "$as_me: failed program was:" >&5 +-sed 's/^/| /' conftest.$ac_ext >&5 +- +- ac_cv_lib_dnet_stub_dnet_ntoa=no +-fi +- +-rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ +- conftest$ac_exeext conftest.$ac_ext +-LIBS=$ac_check_lib_save_LIBS +-fi +-{ echo "$as_me:$LINENO: result: $ac_cv_lib_dnet_stub_dnet_ntoa" >&5 +-echo "${ECHO_T}$ac_cv_lib_dnet_stub_dnet_ntoa" >&6; } +-if test $ac_cv_lib_dnet_stub_dnet_ntoa = yes; then +- X_EXTRA_LIBS="$X_EXTRA_LIBS -ldnet_stub" +-fi +- +- fi +-fi +- +-rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ +- conftest$ac_exeext conftest.$ac_ext +- LIBS="$ac_xsave_LIBS" +- +- # msh@cis.ufl.edu says -lnsl (and -lsocket) are needed for his 386/AT, +- # to get the SysV transport functions. +- # Chad R. Larson says the Pyramis MIS-ES running DC/OSx (SVR4) +- # needs -lnsl. +- # The nsl library prevents programs from opening the X display +- # on Irix 5.2, according to T.E. Dickey. +- # The functions gethostbyname, getservbyname, and inet_addr are +- # in -lbsd on LynxOS 3.0.1/i386, according to Lars Hecking. +- { echo "$as_me:$LINENO: checking for gethostbyname" >&5 +-echo $ECHO_N "checking for gethostbyname... $ECHO_C" >&6; } +-if test "${ac_cv_func_gethostbyname+set}" = set; then +- echo $ECHO_N "(cached) $ECHO_C" >&6 +-else +- cat >conftest.$ac_ext <<_ACEOF +-/* confdefs.h. */ +-_ACEOF +-cat confdefs.h >>conftest.$ac_ext +-cat >>conftest.$ac_ext <<_ACEOF +-/* end confdefs.h. */ +-/* Define gethostbyname to an innocuous variant, in case declares gethostbyname. +- For example, HP-UX 11i declares gettimeofday. */ +-#define gethostbyname innocuous_gethostbyname +- +-/* System header to define __stub macros and hopefully few prototypes, +- which can conflict with char gethostbyname (); below. +- Prefer to if __STDC__ is defined, since +- exists even on freestanding compilers. */ +- +-#ifdef __STDC__ +-# include +-#else +-# include +-#endif +- +-#undef gethostbyname +- +-/* Override any GCC internal prototype to avoid an error. +- Use char because int might match the return type of a GCC +- builtin and then its argument prototype would still apply. */ +-#ifdef __cplusplus +-extern "C" +-#endif +-char gethostbyname (); +-/* The GNU C library defines this for functions which it implements +- to always fail with ENOSYS. Some functions are actually named +- something starting with __ and the normal name is an alias. */ +-#if defined __stub_gethostbyname || defined __stub___gethostbyname +-choke me +-#endif +- +-int +-main () +-{ +-return gethostbyname (); +- ; +- return 0; +-} +-_ACEOF +-rm -f conftest.$ac_objext conftest$ac_exeext +-if { (ac_try="$ac_link" +-case "(($ac_try" in +- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; +- *) ac_try_echo=$ac_try;; +-esac +-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 +- (eval "$ac_link") 2>conftest.er1 +- ac_status=$? +- grep -v '^ *+' conftest.er1 >conftest.err +- rm -f conftest.er1 +- cat conftest.err >&5 +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); } && { +- test -z "$ac_c_werror_flag" || +- test ! -s conftest.err +- } && test -s conftest$ac_exeext && +- $as_test_x conftest$ac_exeext; then +- ac_cv_func_gethostbyname=yes +-else +- echo "$as_me: failed program was:" >&5 +-sed 's/^/| /' conftest.$ac_ext >&5 +- +- ac_cv_func_gethostbyname=no +-fi +- +-rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ +- conftest$ac_exeext conftest.$ac_ext +-fi +-{ echo "$as_me:$LINENO: result: $ac_cv_func_gethostbyname" >&5 +-echo "${ECHO_T}$ac_cv_func_gethostbyname" >&6; } +- +- if test $ac_cv_func_gethostbyname = no; then +- { echo "$as_me:$LINENO: checking for gethostbyname in -lnsl" >&5 +-echo $ECHO_N "checking for gethostbyname in -lnsl... $ECHO_C" >&6; } +-if test "${ac_cv_lib_nsl_gethostbyname+set}" = set; then +- echo $ECHO_N "(cached) $ECHO_C" >&6 +-else +- ac_check_lib_save_LIBS=$LIBS +-LIBS="-lnsl $LIBS" +-cat >conftest.$ac_ext <<_ACEOF +-/* confdefs.h. */ +-_ACEOF +-cat confdefs.h >>conftest.$ac_ext +-cat >>conftest.$ac_ext <<_ACEOF +-/* end confdefs.h. */ +- +-/* Override any GCC internal prototype to avoid an error. +- Use char because int might match the return type of a GCC +- builtin and then its argument prototype would still apply. */ +-#ifdef __cplusplus +-extern "C" +-#endif +-char gethostbyname (); +-int +-main () +-{ +-return gethostbyname (); +- ; +- return 0; +-} +-_ACEOF +-rm -f conftest.$ac_objext conftest$ac_exeext +-if { (ac_try="$ac_link" +-case "(($ac_try" in +- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; +- *) ac_try_echo=$ac_try;; +-esac +-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 +- (eval "$ac_link") 2>conftest.er1 +- ac_status=$? +- grep -v '^ *+' conftest.er1 >conftest.err +- rm -f conftest.er1 +- cat conftest.err >&5 +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); } && { +- test -z "$ac_c_werror_flag" || +- test ! -s conftest.err +- } && test -s conftest$ac_exeext && +- $as_test_x conftest$ac_exeext; then +- ac_cv_lib_nsl_gethostbyname=yes +-else +- echo "$as_me: failed program was:" >&5 +-sed 's/^/| /' conftest.$ac_ext >&5 +- +- ac_cv_lib_nsl_gethostbyname=no +-fi +- +-rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ +- conftest$ac_exeext conftest.$ac_ext +-LIBS=$ac_check_lib_save_LIBS +-fi +-{ echo "$as_me:$LINENO: result: $ac_cv_lib_nsl_gethostbyname" >&5 +-echo "${ECHO_T}$ac_cv_lib_nsl_gethostbyname" >&6; } +-if test $ac_cv_lib_nsl_gethostbyname = yes; then +- X_EXTRA_LIBS="$X_EXTRA_LIBS -lnsl" +-fi +- +- if test $ac_cv_lib_nsl_gethostbyname = no; then +- { echo "$as_me:$LINENO: checking for gethostbyname in -lbsd" >&5 +-echo $ECHO_N "checking for gethostbyname in -lbsd... $ECHO_C" >&6; } +-if test "${ac_cv_lib_bsd_gethostbyname+set}" = set; then +- echo $ECHO_N "(cached) $ECHO_C" >&6 +-else +- ac_check_lib_save_LIBS=$LIBS +-LIBS="-lbsd $LIBS" +-cat >conftest.$ac_ext <<_ACEOF +-/* confdefs.h. */ +-_ACEOF +-cat confdefs.h >>conftest.$ac_ext +-cat >>conftest.$ac_ext <<_ACEOF +-/* end confdefs.h. */ +- +-/* Override any GCC internal prototype to avoid an error. +- Use char because int might match the return type of a GCC +- builtin and then its argument prototype would still apply. */ +-#ifdef __cplusplus +-extern "C" +-#endif +-char gethostbyname (); +-int +-main () +-{ +-return gethostbyname (); +- ; +- return 0; +-} +-_ACEOF +-rm -f conftest.$ac_objext conftest$ac_exeext +-if { (ac_try="$ac_link" +-case "(($ac_try" in +- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; +- *) ac_try_echo=$ac_try;; +-esac +-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 +- (eval "$ac_link") 2>conftest.er1 +- ac_status=$? +- grep -v '^ *+' conftest.er1 >conftest.err +- rm -f conftest.er1 +- cat conftest.err >&5 +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); } && { +- test -z "$ac_c_werror_flag" || +- test ! -s conftest.err +- } && test -s conftest$ac_exeext && +- $as_test_x conftest$ac_exeext; then +- ac_cv_lib_bsd_gethostbyname=yes +-else +- echo "$as_me: failed program was:" >&5 +-sed 's/^/| /' conftest.$ac_ext >&5 +- +- ac_cv_lib_bsd_gethostbyname=no +-fi +- +-rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ +- conftest$ac_exeext conftest.$ac_ext +-LIBS=$ac_check_lib_save_LIBS +-fi +-{ echo "$as_me:$LINENO: result: $ac_cv_lib_bsd_gethostbyname" >&5 +-echo "${ECHO_T}$ac_cv_lib_bsd_gethostbyname" >&6; } +-if test $ac_cv_lib_bsd_gethostbyname = yes; then +- X_EXTRA_LIBS="$X_EXTRA_LIBS -lbsd" +-fi +- +- fi +- fi +- +- # lieder@skyler.mavd.honeywell.com says without -lsocket, +- # socket/setsockopt and other routines are undefined under SCO ODT +- # 2.0. But -lsocket is broken on IRIX 5.2 (and is not necessary +- # on later versions), says Simon Leinen: it contains gethostby* +- # variants that don't use the name server (or something). -lsocket +- # must be given before -lnsl if both are needed. We assume that +- # if connect needs -lnsl, so does gethostbyname. +- { echo "$as_me:$LINENO: checking for connect" >&5 +-echo $ECHO_N "checking for connect... $ECHO_C" >&6; } +-if test "${ac_cv_func_connect+set}" = set; then +- echo $ECHO_N "(cached) $ECHO_C" >&6 +-else +- cat >conftest.$ac_ext <<_ACEOF +-/* confdefs.h. */ +-_ACEOF +-cat confdefs.h >>conftest.$ac_ext +-cat >>conftest.$ac_ext <<_ACEOF +-/* end confdefs.h. */ +-/* Define connect to an innocuous variant, in case declares connect. +- For example, HP-UX 11i declares gettimeofday. */ +-#define connect innocuous_connect +- +-/* System header to define __stub macros and hopefully few prototypes, +- which can conflict with char connect (); below. +- Prefer to if __STDC__ is defined, since +- exists even on freestanding compilers. */ +- +-#ifdef __STDC__ +-# include +-#else +-# include +-#endif +- +-#undef connect +- +-/* Override any GCC internal prototype to avoid an error. +- Use char because int might match the return type of a GCC +- builtin and then its argument prototype would still apply. */ +-#ifdef __cplusplus +-extern "C" +-#endif +-char connect (); +-/* The GNU C library defines this for functions which it implements +- to always fail with ENOSYS. Some functions are actually named +- something starting with __ and the normal name is an alias. */ +-#if defined __stub_connect || defined __stub___connect +-choke me +-#endif +- +-int +-main () +-{ +-return connect (); +- ; +- return 0; +-} +-_ACEOF +-rm -f conftest.$ac_objext conftest$ac_exeext +-if { (ac_try="$ac_link" +-case "(($ac_try" in +- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; +- *) ac_try_echo=$ac_try;; +-esac +-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 +- (eval "$ac_link") 2>conftest.er1 +- ac_status=$? +- grep -v '^ *+' conftest.er1 >conftest.err +- rm -f conftest.er1 +- cat conftest.err >&5 +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); } && { +- test -z "$ac_c_werror_flag" || +- test ! -s conftest.err +- } && test -s conftest$ac_exeext && +- $as_test_x conftest$ac_exeext; then +- ac_cv_func_connect=yes +-else +- echo "$as_me: failed program was:" >&5 +-sed 's/^/| /' conftest.$ac_ext >&5 +- +- ac_cv_func_connect=no +-fi +- +-rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ +- conftest$ac_exeext conftest.$ac_ext +-fi +-{ echo "$as_me:$LINENO: result: $ac_cv_func_connect" >&5 +-echo "${ECHO_T}$ac_cv_func_connect" >&6; } +- +- if test $ac_cv_func_connect = no; then +- { echo "$as_me:$LINENO: checking for connect in -lsocket" >&5 +-echo $ECHO_N "checking for connect in -lsocket... $ECHO_C" >&6; } +-if test "${ac_cv_lib_socket_connect+set}" = set; then +- echo $ECHO_N "(cached) $ECHO_C" >&6 +-else +- ac_check_lib_save_LIBS=$LIBS +-LIBS="-lsocket $X_EXTRA_LIBS $LIBS" +-cat >conftest.$ac_ext <<_ACEOF +-/* confdefs.h. */ +-_ACEOF +-cat confdefs.h >>conftest.$ac_ext +-cat >>conftest.$ac_ext <<_ACEOF +-/* end confdefs.h. */ +- +-/* Override any GCC internal prototype to avoid an error. +- Use char because int might match the return type of a GCC +- builtin and then its argument prototype would still apply. */ +-#ifdef __cplusplus +-extern "C" +-#endif +-char connect (); +-int +-main () +-{ +-return connect (); +- ; +- return 0; +-} +-_ACEOF +-rm -f conftest.$ac_objext conftest$ac_exeext +-if { (ac_try="$ac_link" +-case "(($ac_try" in +- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; +- *) ac_try_echo=$ac_try;; +-esac +-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 +- (eval "$ac_link") 2>conftest.er1 +- ac_status=$? +- grep -v '^ *+' conftest.er1 >conftest.err +- rm -f conftest.er1 +- cat conftest.err >&5 +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); } && { +- test -z "$ac_c_werror_flag" || +- test ! -s conftest.err +- } && test -s conftest$ac_exeext && +- $as_test_x conftest$ac_exeext; then +- ac_cv_lib_socket_connect=yes +-else +- echo "$as_me: failed program was:" >&5 +-sed 's/^/| /' conftest.$ac_ext >&5 +- +- ac_cv_lib_socket_connect=no +-fi +- +-rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ +- conftest$ac_exeext conftest.$ac_ext +-LIBS=$ac_check_lib_save_LIBS +-fi +-{ echo "$as_me:$LINENO: result: $ac_cv_lib_socket_connect" >&5 +-echo "${ECHO_T}$ac_cv_lib_socket_connect" >&6; } +-if test $ac_cv_lib_socket_connect = yes; then +- X_EXTRA_LIBS="-lsocket $X_EXTRA_LIBS" +-fi +- +- fi +- +- # Guillermo Gomez says -lposix is necessary on A/UX. +- { echo "$as_me:$LINENO: checking for remove" >&5 +-echo $ECHO_N "checking for remove... $ECHO_C" >&6; } +-if test "${ac_cv_func_remove+set}" = set; then +- echo $ECHO_N "(cached) $ECHO_C" >&6 +-else +- cat >conftest.$ac_ext <<_ACEOF +-/* confdefs.h. */ +-_ACEOF +-cat confdefs.h >>conftest.$ac_ext +-cat >>conftest.$ac_ext <<_ACEOF +-/* end confdefs.h. */ +-/* Define remove to an innocuous variant, in case declares remove. +- For example, HP-UX 11i declares gettimeofday. */ +-#define remove innocuous_remove +- +-/* System header to define __stub macros and hopefully few prototypes, +- which can conflict with char remove (); below. +- Prefer to if __STDC__ is defined, since +- exists even on freestanding compilers. */ +- +-#ifdef __STDC__ +-# include +-#else +-# include +-#endif +- +-#undef remove +- +-/* Override any GCC internal prototype to avoid an error. +- Use char because int might match the return type of a GCC +- builtin and then its argument prototype would still apply. */ +-#ifdef __cplusplus +-extern "C" +-#endif +-char remove (); +-/* The GNU C library defines this for functions which it implements +- to always fail with ENOSYS. Some functions are actually named +- something starting with __ and the normal name is an alias. */ +-#if defined __stub_remove || defined __stub___remove +-choke me +-#endif +- +-int +-main () +-{ +-return remove (); +- ; +- return 0; +-} +-_ACEOF +-rm -f conftest.$ac_objext conftest$ac_exeext +-if { (ac_try="$ac_link" +-case "(($ac_try" in +- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; +- *) ac_try_echo=$ac_try;; +-esac +-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 +- (eval "$ac_link") 2>conftest.er1 +- ac_status=$? +- grep -v '^ *+' conftest.er1 >conftest.err +- rm -f conftest.er1 +- cat conftest.err >&5 +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); } && { +- test -z "$ac_c_werror_flag" || +- test ! -s conftest.err +- } && test -s conftest$ac_exeext && +- $as_test_x conftest$ac_exeext; then +- ac_cv_func_remove=yes +-else +- echo "$as_me: failed program was:" >&5 +-sed 's/^/| /' conftest.$ac_ext >&5 +- +- ac_cv_func_remove=no +-fi +- +-rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ +- conftest$ac_exeext conftest.$ac_ext +-fi +-{ echo "$as_me:$LINENO: result: $ac_cv_func_remove" >&5 +-echo "${ECHO_T}$ac_cv_func_remove" >&6; } +- +- if test $ac_cv_func_remove = no; then +- { echo "$as_me:$LINENO: checking for remove in -lposix" >&5 +-echo $ECHO_N "checking for remove in -lposix... $ECHO_C" >&6; } +-if test "${ac_cv_lib_posix_remove+set}" = set; then +- echo $ECHO_N "(cached) $ECHO_C" >&6 +-else +- ac_check_lib_save_LIBS=$LIBS +-LIBS="-lposix $LIBS" +-cat >conftest.$ac_ext <<_ACEOF +-/* confdefs.h. */ +-_ACEOF +-cat confdefs.h >>conftest.$ac_ext +-cat >>conftest.$ac_ext <<_ACEOF +-/* end confdefs.h. */ +- +-/* Override any GCC internal prototype to avoid an error. +- Use char because int might match the return type of a GCC +- builtin and then its argument prototype would still apply. */ +-#ifdef __cplusplus +-extern "C" +-#endif +-char remove (); +-int +-main () +-{ +-return remove (); +- ; +- return 0; +-} +-_ACEOF +-rm -f conftest.$ac_objext conftest$ac_exeext +-if { (ac_try="$ac_link" +-case "(($ac_try" in +- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; +- *) ac_try_echo=$ac_try;; +-esac +-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 +- (eval "$ac_link") 2>conftest.er1 +- ac_status=$? +- grep -v '^ *+' conftest.er1 >conftest.err +- rm -f conftest.er1 +- cat conftest.err >&5 +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); } && { +- test -z "$ac_c_werror_flag" || +- test ! -s conftest.err +- } && test -s conftest$ac_exeext && +- $as_test_x conftest$ac_exeext; then +- ac_cv_lib_posix_remove=yes +-else +- echo "$as_me: failed program was:" >&5 +-sed 's/^/| /' conftest.$ac_ext >&5 +- +- ac_cv_lib_posix_remove=no +-fi +- +-rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ +- conftest$ac_exeext conftest.$ac_ext +-LIBS=$ac_check_lib_save_LIBS +-fi +-{ echo "$as_me:$LINENO: result: $ac_cv_lib_posix_remove" >&5 +-echo "${ECHO_T}$ac_cv_lib_posix_remove" >&6; } +-if test $ac_cv_lib_posix_remove = yes; then +- X_EXTRA_LIBS="$X_EXTRA_LIBS -lposix" +-fi +- +- fi +- +- # BSDI BSD/OS 2.1 needs -lipc for XOpenDisplay. +- { echo "$as_me:$LINENO: checking for shmat" >&5 +-echo $ECHO_N "checking for shmat... $ECHO_C" >&6; } +-if test "${ac_cv_func_shmat+set}" = set; then +- echo $ECHO_N "(cached) $ECHO_C" >&6 +-else +- cat >conftest.$ac_ext <<_ACEOF +-/* confdefs.h. */ +-_ACEOF +-cat confdefs.h >>conftest.$ac_ext +-cat >>conftest.$ac_ext <<_ACEOF +-/* end confdefs.h. */ +-/* Define shmat to an innocuous variant, in case declares shmat. +- For example, HP-UX 11i declares gettimeofday. */ +-#define shmat innocuous_shmat +- +-/* System header to define __stub macros and hopefully few prototypes, +- which can conflict with char shmat (); below. +- Prefer to if __STDC__ is defined, since +- exists even on freestanding compilers. */ +- +-#ifdef __STDC__ +-# include +-#else +-# include +-#endif +- +-#undef shmat +- +-/* Override any GCC internal prototype to avoid an error. +- Use char because int might match the return type of a GCC +- builtin and then its argument prototype would still apply. */ +-#ifdef __cplusplus +-extern "C" +-#endif +-char shmat (); +-/* The GNU C library defines this for functions which it implements +- to always fail with ENOSYS. Some functions are actually named +- something starting with __ and the normal name is an alias. */ +-#if defined __stub_shmat || defined __stub___shmat +-choke me +-#endif +- +-int +-main () +-{ +-return shmat (); +- ; +- return 0; +-} +-_ACEOF +-rm -f conftest.$ac_objext conftest$ac_exeext +-if { (ac_try="$ac_link" +-case "(($ac_try" in +- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; +- *) ac_try_echo=$ac_try;; +-esac +-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 +- (eval "$ac_link") 2>conftest.er1 +- ac_status=$? +- grep -v '^ *+' conftest.er1 >conftest.err +- rm -f conftest.er1 +- cat conftest.err >&5 +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); } && { +- test -z "$ac_c_werror_flag" || +- test ! -s conftest.err +- } && test -s conftest$ac_exeext && +- $as_test_x conftest$ac_exeext; then +- ac_cv_func_shmat=yes +-else +- echo "$as_me: failed program was:" >&5 +-sed 's/^/| /' conftest.$ac_ext >&5 +- +- ac_cv_func_shmat=no +-fi +- +-rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ +- conftest$ac_exeext conftest.$ac_ext +-fi +-{ echo "$as_me:$LINENO: result: $ac_cv_func_shmat" >&5 +-echo "${ECHO_T}$ac_cv_func_shmat" >&6; } +- +- if test $ac_cv_func_shmat = no; then +- { echo "$as_me:$LINENO: checking for shmat in -lipc" >&5 +-echo $ECHO_N "checking for shmat in -lipc... $ECHO_C" >&6; } +-if test "${ac_cv_lib_ipc_shmat+set}" = set; then +- echo $ECHO_N "(cached) $ECHO_C" >&6 +-else +- ac_check_lib_save_LIBS=$LIBS +-LIBS="-lipc $LIBS" +-cat >conftest.$ac_ext <<_ACEOF +-/* confdefs.h. */ +-_ACEOF +-cat confdefs.h >>conftest.$ac_ext +-cat >>conftest.$ac_ext <<_ACEOF +-/* end confdefs.h. */ +- +-/* Override any GCC internal prototype to avoid an error. +- Use char because int might match the return type of a GCC +- builtin and then its argument prototype would still apply. */ +-#ifdef __cplusplus +-extern "C" +-#endif +-char shmat (); +-int +-main () +-{ +-return shmat (); +- ; +- return 0; +-} +-_ACEOF +-rm -f conftest.$ac_objext conftest$ac_exeext +-if { (ac_try="$ac_link" +-case "(($ac_try" in +- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; +- *) ac_try_echo=$ac_try;; +-esac +-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 +- (eval "$ac_link") 2>conftest.er1 +- ac_status=$? +- grep -v '^ *+' conftest.er1 >conftest.err +- rm -f conftest.er1 +- cat conftest.err >&5 +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); } && { +- test -z "$ac_c_werror_flag" || +- test ! -s conftest.err +- } && test -s conftest$ac_exeext && +- $as_test_x conftest$ac_exeext; then +- ac_cv_lib_ipc_shmat=yes +-else +- echo "$as_me: failed program was:" >&5 +-sed 's/^/| /' conftest.$ac_ext >&5 +- +- ac_cv_lib_ipc_shmat=no +-fi +- +-rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ +- conftest$ac_exeext conftest.$ac_ext +-LIBS=$ac_check_lib_save_LIBS +-fi +-{ echo "$as_me:$LINENO: result: $ac_cv_lib_ipc_shmat" >&5 +-echo "${ECHO_T}$ac_cv_lib_ipc_shmat" >&6; } +-if test $ac_cv_lib_ipc_shmat = yes; then +- X_EXTRA_LIBS="$X_EXTRA_LIBS -lipc" +-fi +- +- fi +- fi +- +- # Check for libraries that X11R6 Xt/Xaw programs need. +- ac_save_LDFLAGS=$LDFLAGS +- test -n "$x_libraries" && LDFLAGS="$LDFLAGS -L$x_libraries" +- # SM needs ICE to (dynamically) link under SunOS 4.x (so we have to +- # check for ICE first), but we must link in the order -lSM -lICE or +- # we get undefined symbols. So assume we have SM if we have ICE. +- # These have to be linked with before -lX11, unlike the other +- # libraries we check for below, so use a different variable. +- # John Interrante, Karl Berry +- { echo "$as_me:$LINENO: checking for IceConnectionNumber in -lICE" >&5 +-echo $ECHO_N "checking for IceConnectionNumber in -lICE... $ECHO_C" >&6; } +-if test "${ac_cv_lib_ICE_IceConnectionNumber+set}" = set; then +- echo $ECHO_N "(cached) $ECHO_C" >&6 +-else +- ac_check_lib_save_LIBS=$LIBS +-LIBS="-lICE $X_EXTRA_LIBS $LIBS" +-cat >conftest.$ac_ext <<_ACEOF +-/* confdefs.h. */ +-_ACEOF +-cat confdefs.h >>conftest.$ac_ext +-cat >>conftest.$ac_ext <<_ACEOF +-/* end confdefs.h. */ +- +-/* Override any GCC internal prototype to avoid an error. +- Use char because int might match the return type of a GCC +- builtin and then its argument prototype would still apply. */ +-#ifdef __cplusplus +-extern "C" +-#endif +-char IceConnectionNumber (); +-int +-main () +-{ +-return IceConnectionNumber (); +- ; +- return 0; +-} +-_ACEOF +-rm -f conftest.$ac_objext conftest$ac_exeext +-if { (ac_try="$ac_link" +-case "(($ac_try" in +- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; +- *) ac_try_echo=$ac_try;; +-esac +-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 +- (eval "$ac_link") 2>conftest.er1 +- ac_status=$? +- grep -v '^ *+' conftest.er1 >conftest.err +- rm -f conftest.er1 +- cat conftest.err >&5 +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); } && { +- test -z "$ac_c_werror_flag" || +- test ! -s conftest.err +- } && test -s conftest$ac_exeext && +- $as_test_x conftest$ac_exeext; then +- ac_cv_lib_ICE_IceConnectionNumber=yes +-else +- echo "$as_me: failed program was:" >&5 +-sed 's/^/| /' conftest.$ac_ext >&5 +- +- ac_cv_lib_ICE_IceConnectionNumber=no +-fi +- +-rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ +- conftest$ac_exeext conftest.$ac_ext +-LIBS=$ac_check_lib_save_LIBS +-fi +-{ echo "$as_me:$LINENO: result: $ac_cv_lib_ICE_IceConnectionNumber" >&5 +-echo "${ECHO_T}$ac_cv_lib_ICE_IceConnectionNumber" >&6; } +-if test $ac_cv_lib_ICE_IceConnectionNumber = yes; then +- X_PRE_LIBS="$X_PRE_LIBS -lSM -lICE" +-fi +- +- LDFLAGS=$ac_save_LDFLAGS +- +-fi +- +- +- +- +- +-if test "x$ac_cv_env_PKG_CONFIG_set" != "xset"; then +- if test -n "$ac_tool_prefix"; then +- # Extract the first word of "${ac_tool_prefix}pkg-config", so it can be a program name with args. +-set dummy ${ac_tool_prefix}pkg-config; ac_word=$2 +-{ echo "$as_me:$LINENO: checking for $ac_word" >&5 +-echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6; } +-if test "${ac_cv_path_PKG_CONFIG+set}" = set; then +- echo $ECHO_N "(cached) $ECHO_C" >&6 +-else +- case $PKG_CONFIG in +- [\\/]* | ?:[\\/]*) +- ac_cv_path_PKG_CONFIG="$PKG_CONFIG" # Let the user override the test with a path. +- ;; +- *) +- as_save_IFS=$IFS; IFS=$PATH_SEPARATOR +-for as_dir in $PATH +-do +- IFS=$as_save_IFS +- test -z "$as_dir" && as_dir=. +- for ac_exec_ext in '' $ac_executable_extensions; do +- if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then +- ac_cv_path_PKG_CONFIG="$as_dir/$ac_word$ac_exec_ext" +- echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 +- break 2 +- fi +-done +-done +-IFS=$as_save_IFS +- +- ;; +-esac +-fi +-PKG_CONFIG=$ac_cv_path_PKG_CONFIG +-if test -n "$PKG_CONFIG"; then +- { echo "$as_me:$LINENO: result: $PKG_CONFIG" >&5 +-echo "${ECHO_T}$PKG_CONFIG" >&6; } +-else +- { echo "$as_me:$LINENO: result: no" >&5 +-echo "${ECHO_T}no" >&6; } +-fi +- +- +-fi +-if test -z "$ac_cv_path_PKG_CONFIG"; then +- ac_pt_PKG_CONFIG=$PKG_CONFIG +- # Extract the first word of "pkg-config", so it can be a program name with args. +-set dummy pkg-config; ac_word=$2 +-{ echo "$as_me:$LINENO: checking for $ac_word" >&5 +-echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6; } +-if test "${ac_cv_path_ac_pt_PKG_CONFIG+set}" = set; then +- echo $ECHO_N "(cached) $ECHO_C" >&6 +-else +- case $ac_pt_PKG_CONFIG in +- [\\/]* | ?:[\\/]*) +- ac_cv_path_ac_pt_PKG_CONFIG="$ac_pt_PKG_CONFIG" # Let the user override the test with a path. +- ;; +- *) +- as_save_IFS=$IFS; IFS=$PATH_SEPARATOR +-for as_dir in $PATH +-do +- IFS=$as_save_IFS +- test -z "$as_dir" && as_dir=. +- for ac_exec_ext in '' $ac_executable_extensions; do +- if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then +- ac_cv_path_ac_pt_PKG_CONFIG="$as_dir/$ac_word$ac_exec_ext" +- echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 +- break 2 +- fi +-done +-done +-IFS=$as_save_IFS +- +- ;; +-esac +-fi +-ac_pt_PKG_CONFIG=$ac_cv_path_ac_pt_PKG_CONFIG +-if test -n "$ac_pt_PKG_CONFIG"; then +- { echo "$as_me:$LINENO: result: $ac_pt_PKG_CONFIG" >&5 +-echo "${ECHO_T}$ac_pt_PKG_CONFIG" >&6; } +-else +- { echo "$as_me:$LINENO: result: no" >&5 +-echo "${ECHO_T}no" >&6; } +-fi +- +- if test "x$ac_pt_PKG_CONFIG" = x; then +- PKG_CONFIG="" +- else +- case $cross_compiling:$ac_tool_warned in +-yes:) +-{ echo "$as_me:$LINENO: WARNING: In the future, Autoconf will not detect cross-tools +-whose name does not start with the host triplet. If you think this +-configuration is useful to you, please write to autoconf@gnu.org." >&5 +-echo "$as_me: WARNING: In the future, Autoconf will not detect cross-tools +-whose name does not start with the host triplet. If you think this +-configuration is useful to you, please write to autoconf@gnu.org." >&2;} +-ac_tool_warned=yes ;; +-esac +- PKG_CONFIG=$ac_pt_PKG_CONFIG +- fi +-else +- PKG_CONFIG="$ac_cv_path_PKG_CONFIG" +-fi +- +-fi +-if test -n "$PKG_CONFIG"; then +- _pkg_min_version=0.9.0 +- { echo "$as_me:$LINENO: checking pkg-config is at least version $_pkg_min_version" >&5 +-echo $ECHO_N "checking pkg-config is at least version $_pkg_min_version... $ECHO_C" >&6; } +- if $PKG_CONFIG --atleast-pkgconfig-version $_pkg_min_version; then +- { echo "$as_me:$LINENO: result: yes" >&5 +-echo "${ECHO_T}yes" >&6; } +- else +- { echo "$as_me:$LINENO: result: no" >&5 +-echo "${ECHO_T}no" >&6; } +- PKG_CONFIG="" +- fi +- +-fi +- +-# Check whether --enable-hal was given. +-if test "${enable_hal+set}" = set; then +- enableval=$enable_hal; +-fi +- +- +-if test "${enable_hal}" != "no" +-then +- +-pkg_failed=no +-{ echo "$as_me:$LINENO: checking for HAL" >&5 +-echo $ECHO_N "checking for HAL... $ECHO_C" >&6; } +- +-if test -n "$PKG_CONFIG"; then +- if test -n "$HAL_CFLAGS"; then +- pkg_cv_HAL_CFLAGS="$HAL_CFLAGS" +- else +- if test -n "$PKG_CONFIG" && \ +- { (echo "$as_me:$LINENO: \$PKG_CONFIG --exists --print-errors \"hal >= 0.5.0\"") >&5 +- ($PKG_CONFIG --exists --print-errors "hal >= 0.5.0") 2>&5 +- ac_status=$? +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); }; then +- pkg_cv_HAL_CFLAGS=`$PKG_CONFIG --cflags "hal >= 0.5.0" 2>/dev/null` +-else +- pkg_failed=yes +-fi +- fi +-else +- pkg_failed=untried +-fi +-if test -n "$PKG_CONFIG"; then +- if test -n "$HAL_LIBS"; then +- pkg_cv_HAL_LIBS="$HAL_LIBS" +- else +- if test -n "$PKG_CONFIG" && \ +- { (echo "$as_me:$LINENO: \$PKG_CONFIG --exists --print-errors \"hal >= 0.5.0\"") >&5 +- ($PKG_CONFIG --exists --print-errors "hal >= 0.5.0") 2>&5 +- ac_status=$? +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); }; then +- pkg_cv_HAL_LIBS=`$PKG_CONFIG --libs "hal >= 0.5.0" 2>/dev/null` +-else +- pkg_failed=yes +-fi +- fi +-else +- pkg_failed=untried +-fi +- +- +- +-if test $pkg_failed = yes; then +- +-if $PKG_CONFIG --atleast-pkgconfig-version 0.20; then +- _pkg_short_errors_supported=yes +-else +- _pkg_short_errors_supported=no +-fi +- if test $_pkg_short_errors_supported = yes; then +- HAL_PKG_ERRORS=`$PKG_CONFIG --short-errors --errors-to-stdout --print-errors "hal >= 0.5.0"` +- else +- HAL_PKG_ERRORS=`$PKG_CONFIG --errors-to-stdout --print-errors "hal >= 0.5.0"` +- fi +- # Put the nasty error message in config.log where it belongs +- echo "$HAL_PKG_ERRORS" >&5 +- +- { echo "$as_me:$LINENO: result: no" >&5 +-echo "${ECHO_T}no" >&6; } +- +-pkg_failed=no +-{ echo "$as_me:$LINENO: checking for HAL" >&5 +-echo $ECHO_N "checking for HAL... $ECHO_C" >&6; } +- +-if test -n "$PKG_CONFIG"; then +- if test -n "$HAL_CFLAGS"; then +- pkg_cv_HAL_CFLAGS="$HAL_CFLAGS" +- else +- if test -n "$PKG_CONFIG" && \ +- { (echo "$as_me:$LINENO: \$PKG_CONFIG --exists --print-errors \"hal >= 0.2.97\"") >&5 +- ($PKG_CONFIG --exists --print-errors "hal >= 0.2.97") 2>&5 +- ac_status=$? +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); }; then +- pkg_cv_HAL_CFLAGS=`$PKG_CONFIG --cflags "hal >= 0.2.97" 2>/dev/null` +-else +- pkg_failed=yes +-fi +- fi +-else +- pkg_failed=untried +-fi +-if test -n "$PKG_CONFIG"; then +- if test -n "$HAL_LIBS"; then +- pkg_cv_HAL_LIBS="$HAL_LIBS" +- else +- if test -n "$PKG_CONFIG" && \ +- { (echo "$as_me:$LINENO: \$PKG_CONFIG --exists --print-errors \"hal >= 0.2.97\"") >&5 +- ($PKG_CONFIG --exists --print-errors "hal >= 0.2.97") 2>&5 +- ac_status=$? +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); }; then +- pkg_cv_HAL_LIBS=`$PKG_CONFIG --libs "hal >= 0.2.97" 2>/dev/null` +-else +- pkg_failed=yes +-fi +- fi +-else +- pkg_failed=untried +-fi +- +- +- +-if test $pkg_failed = yes; then +- +-if $PKG_CONFIG --atleast-pkgconfig-version 0.20; then +- _pkg_short_errors_supported=yes +-else +- _pkg_short_errors_supported=no +-fi +- if test $_pkg_short_errors_supported = yes; then +- HAL_PKG_ERRORS=`$PKG_CONFIG --short-errors --errors-to-stdout --print-errors "hal >= 0.2.97"` +- else +- HAL_PKG_ERRORS=`$PKG_CONFIG --errors-to-stdout --print-errors "hal >= 0.2.97"` +- fi +- # Put the nasty error message in config.log where it belongs +- echo "$HAL_PKG_ERRORS" >&5 +- +- { echo "$as_me:$LINENO: result: no" >&5 +-echo "${ECHO_T}no" >&6; } +- { echo "$as_me:$LINENO: WARNING: HAL library not found" >&5 +-echo "$as_me: WARNING: HAL library not found" >&2;} +-elif test $pkg_failed = untried; then +- { echo "$as_me:$LINENO: WARNING: HAL library not found" >&5 +-echo "$as_me: WARNING: HAL library not found" >&2;} +-else +- HAL_CFLAGS=$pkg_cv_HAL_CFLAGS +- HAL_LIBS=$pkg_cv_HAL_LIBS +- { echo "$as_me:$LINENO: result: yes" >&5 +-echo "${ECHO_T}yes" >&6; } +- +-cat >>confdefs.h <<\_ACEOF +-#define HAVE_HAL +-_ACEOF +- +- +- PLUGINS="${PLUGINS} hal" +- +- +- for element in vlc hal; do +- eval "LDFLAGS_${element}="'"'"$HAL_LIBS "'$'"{LDFLAGS_${element}} "'"' +- am_modules_with_ldflags="${am_modules_with_ldflags} ${element}" +- done +- +- +- for element in vlc hal; do +- eval "CFLAGS_${element}="'"$'"{CFLAGS_${element}} $HAL_CFLAGS"'"' +- am_modules_with_cflags="${am_modules_with_cflags} ${element}" +- done +- +-fi +- +- +-elif test $pkg_failed = untried; then +- +-pkg_failed=no +-{ echo "$as_me:$LINENO: checking for HAL" >&5 +-echo $ECHO_N "checking for HAL... $ECHO_C" >&6; } +- +-if test -n "$PKG_CONFIG"; then +- if test -n "$HAL_CFLAGS"; then +- pkg_cv_HAL_CFLAGS="$HAL_CFLAGS" +- else +- if test -n "$PKG_CONFIG" && \ +- { (echo "$as_me:$LINENO: \$PKG_CONFIG --exists --print-errors \"hal >= 0.2.97\"") >&5 +- ($PKG_CONFIG --exists --print-errors "hal >= 0.2.97") 2>&5 +- ac_status=$? +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); }; then +- pkg_cv_HAL_CFLAGS=`$PKG_CONFIG --cflags "hal >= 0.2.97" 2>/dev/null` +-else +- pkg_failed=yes +-fi +- fi +-else +- pkg_failed=untried +-fi +-if test -n "$PKG_CONFIG"; then +- if test -n "$HAL_LIBS"; then +- pkg_cv_HAL_LIBS="$HAL_LIBS" +- else +- if test -n "$PKG_CONFIG" && \ +- { (echo "$as_me:$LINENO: \$PKG_CONFIG --exists --print-errors \"hal >= 0.2.97\"") >&5 +- ($PKG_CONFIG --exists --print-errors "hal >= 0.2.97") 2>&5 +- ac_status=$? +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); }; then +- pkg_cv_HAL_LIBS=`$PKG_CONFIG --libs "hal >= 0.2.97" 2>/dev/null` +-else +- pkg_failed=yes +-fi +- fi +-else +- pkg_failed=untried +-fi +- +- +- +-if test $pkg_failed = yes; then +- +-if $PKG_CONFIG --atleast-pkgconfig-version 0.20; then +- _pkg_short_errors_supported=yes +-else +- _pkg_short_errors_supported=no +-fi +- if test $_pkg_short_errors_supported = yes; then +- HAL_PKG_ERRORS=`$PKG_CONFIG --short-errors --errors-to-stdout --print-errors "hal >= 0.2.97"` +- else +- HAL_PKG_ERRORS=`$PKG_CONFIG --errors-to-stdout --print-errors "hal >= 0.2.97"` +- fi +- # Put the nasty error message in config.log where it belongs +- echo "$HAL_PKG_ERRORS" >&5 +- +- { echo "$as_me:$LINENO: result: no" >&5 +-echo "${ECHO_T}no" >&6; } +- { echo "$as_me:$LINENO: WARNING: HAL library not found" >&5 +-echo "$as_me: WARNING: HAL library not found" >&2;} +-elif test $pkg_failed = untried; then +- { echo "$as_me:$LINENO: WARNING: HAL library not found" >&5 +-echo "$as_me: WARNING: HAL library not found" >&2;} +-else +- HAL_CFLAGS=$pkg_cv_HAL_CFLAGS +- HAL_LIBS=$pkg_cv_HAL_LIBS +- { echo "$as_me:$LINENO: result: yes" >&5 +-echo "${ECHO_T}yes" >&6; } +- +-cat >>confdefs.h <<\_ACEOF +-#define HAVE_HAL +-_ACEOF +- +- +- PLUGINS="${PLUGINS} hal" +- +- +- for element in vlc hal; do +- eval "LDFLAGS_${element}="'"'"$HAL_LIBS "'$'"{LDFLAGS_${element}} "'"' +- am_modules_with_ldflags="${am_modules_with_ldflags} ${element}" +- done +- +- +- for element in vlc hal; do +- eval "CFLAGS_${element}="'"$'"{CFLAGS_${element}} $HAL_CFLAGS"'"' +- am_modules_with_cflags="${am_modules_with_cflags} ${element}" +- done +- +-fi +- +- +-else +- HAL_CFLAGS=$pkg_cv_HAL_CFLAGS +- HAL_LIBS=$pkg_cv_HAL_LIBS +- { echo "$as_me:$LINENO: result: yes" >&5 +-echo "${ECHO_T}yes" >&6; } +- +-cat >>confdefs.h <<\_ACEOF +-#define HAVE_HAL_1 +-_ACEOF +- +- +-cat >>confdefs.h <<\_ACEOF +-#define HAVE_HAL +-_ACEOF +- +- +- PLUGINS="${PLUGINS} hal" +- +- +- for element in vlc hal; do +- eval "LDFLAGS_${element}="'"'"$HAL_LIBS "'$'"{LDFLAGS_${element}} "'"' +- am_modules_with_ldflags="${am_modules_with_ldflags} ${element}" +- done +- +- +- for element in vlc hal; do +- eval "CFLAGS_${element}="'"$'"{CFLAGS_${element}} $HAL_CFLAGS"'"' +- am_modules_with_cflags="${am_modules_with_cflags} ${element}" +- done +- +-fi +-fi +- +-NEED_GTK_MAIN=no +-NEED_GNOME_MAIN=no +-NEED_GTK2_MAIN=no +-NEED_GNOME2_MAIN=no +- +-NEED_QTE_MAIN=no +- +-{ echo "$as_me:$LINENO: checking for ntohl in sys/param.h" >&5 +-echo $ECHO_N "checking for ntohl in sys/param.h... $ECHO_C" >&6; } +-if test "${ac_cv_c_ntohl_sys_param_h+set}" = set; then +- echo $ECHO_N "(cached) $ECHO_C" >&6 +-else +- CFLAGS="${CFLAGS_save} -Wall -Werror" +- cat >conftest.$ac_ext <<_ACEOF +-/* confdefs.h. */ +-_ACEOF +-cat confdefs.h >>conftest.$ac_ext +-cat >>conftest.$ac_ext <<_ACEOF +-/* end confdefs.h. */ +-#include +-int +-main () +-{ +-void foo() { int meuh; ntohl(meuh); } +- ; +- return 0; +-} +-_ACEOF +-rm -f conftest.$ac_objext +-if { (ac_try="$ac_compile" +-case "(($ac_try" in +- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; +- *) ac_try_echo=$ac_try;; +-esac +-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 +- (eval "$ac_compile") 2>conftest.er1 +- ac_status=$? +- grep -v '^ *+' conftest.er1 >conftest.err +- rm -f conftest.er1 +- cat conftest.err >&5 +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); } && { +- test -z "$ac_c_werror_flag" || +- test ! -s conftest.err +- } && test -s conftest.$ac_objext; then +- ac_cv_c_ntohl_sys_param_h=yes +-else +- echo "$as_me: failed program was:" >&5 +-sed 's/^/| /' conftest.$ac_ext >&5 +- +- ac_cv_c_ntohl_sys_param_h=no +-fi +- +-rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext +-fi +-{ echo "$as_me:$LINENO: result: $ac_cv_c_ntohl_sys_param_h" >&5 +-echo "${ECHO_T}$ac_cv_c_ntohl_sys_param_h" >&6; } +-if test "${ac_cv_c_ntohl_sys_param_h}" != "no"; then +- +-cat >>confdefs.h <<\_ACEOF +-#define NTOHL_IN_SYS_PARAM_H 1 +-_ACEOF +- +-fi +- +-# XXX: do this with an M4 macro? +-#dnl Check for various -W flags +-#for flag in "" all unreachable-code conversion sign-compare disabled-optimization +-#do +-# AC_CACHE_CHECK([if \$CC accepts -W${flag}], +-# [ac_cv_c_W${flag}], +-# [CFLAGS="-W${flag} ${CFLAGS_save}" +-# AC_TRY_COMPILE([],,ac_cv_c_W${flag}=yes, ac_cv_c_W${flag}=no)]) +-# if test "${ac_cv_c_W${flag}}" != "no"; then +-# CFLAGS_save="-W${flag} ${CFLAGS_save}"; CFLAGS="${CFLAGS_save}" +-# CXXFLAGS_save="-W${flag} ${CFLAGS_save}"; CXXFLAGS="${CXXFLAGS_save}" +-# OBJCFLAGS_save="-W${flag} ${OBJCFLAGS_save}"; OBJCFLAGS="${OBJCFLAGS_save}" +-# fi +-#done +- +-{ echo "$as_me:$LINENO: checking if \$CC accepts -Wall" >&5 +-echo $ECHO_N "checking if \$CC accepts -Wall... $ECHO_C" >&6; } +-if test "${ac_cv_c_Wall+set}" = set; then +- echo $ECHO_N "(cached) $ECHO_C" >&6 +-else +- CFLAGS="-Wall ${CFLAGS_save}" +- cat >conftest.$ac_ext <<_ACEOF +-/* confdefs.h. */ +-_ACEOF +-cat confdefs.h >>conftest.$ac_ext +-cat >>conftest.$ac_ext <<_ACEOF +-/* end confdefs.h. */ +- +-int +-main () +-{ +- +- ; +- return 0; +-} +-_ACEOF +-rm -f conftest.$ac_objext +-if { (ac_try="$ac_compile" +-case "(($ac_try" in +- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; +- *) ac_try_echo=$ac_try;; +-esac +-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 +- (eval "$ac_compile") 2>conftest.er1 +- ac_status=$? +- grep -v '^ *+' conftest.er1 >conftest.err +- rm -f conftest.er1 +- cat conftest.err >&5 +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); } && { +- test -z "$ac_c_werror_flag" || +- test ! -s conftest.err +- } && test -s conftest.$ac_objext; then +- ac_cv_c_Wall=yes +-else +- echo "$as_me: failed program was:" >&5 +-sed 's/^/| /' conftest.$ac_ext >&5 +- +- ac_cv_c_Wall=no +-fi +- +-rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext +-fi +-{ echo "$as_me:$LINENO: result: $ac_cv_c_Wall" >&5 +-echo "${ECHO_T}$ac_cv_c_Wall" >&6; } +- +-{ echo "$as_me:$LINENO: checking if \$CC accepts -Wconversion" >&5 +-echo $ECHO_N "checking if \$CC accepts -Wconversion... $ECHO_C" >&6; } +-if test "${ac_cv_c_Wconversion+set}" = set; then +- echo $ECHO_N "(cached) $ECHO_C" >&6 +-else +- CFLAGS="-Wconversion ${CFLAGS_save}" +- cat >conftest.$ac_ext <<_ACEOF +-/* confdefs.h. */ +-_ACEOF +-cat confdefs.h >>conftest.$ac_ext +-cat >>conftest.$ac_ext <<_ACEOF +-/* end confdefs.h. */ +- +-int +-main () +-{ +- +- ; +- return 0; +-} +-_ACEOF +-rm -f conftest.$ac_objext +-if { (ac_try="$ac_compile" +-case "(($ac_try" in +- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; +- *) ac_try_echo=$ac_try;; +-esac +-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 +- (eval "$ac_compile") 2>conftest.er1 +- ac_status=$? +- grep -v '^ *+' conftest.er1 >conftest.err +- rm -f conftest.er1 +- cat conftest.err >&5 +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); } && { +- test -z "$ac_c_werror_flag" || +- test ! -s conftest.err +- } && test -s conftest.$ac_objext; then +- ac_cv_c_Wconversion=yes +-else +- echo "$as_me: failed program was:" >&5 +-sed 's/^/| /' conftest.$ac_ext >&5 +- +- ac_cv_c_Wconversion=no +-fi +- +-rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext +-fi +-{ echo "$as_me:$LINENO: result: $ac_cv_c_Wconversion" >&5 +-echo "${ECHO_T}$ac_cv_c_Wconversion" >&6; } +- +-{ echo "$as_me:$LINENO: checking if \$CC accepts -Wunreachable-code" >&5 +-echo $ECHO_N "checking if \$CC accepts -Wunreachable-code... $ECHO_C" >&6; } +-if test "${ac_cv_c_Wunreachable_code+set}" = set; then +- echo $ECHO_N "(cached) $ECHO_C" >&6 +-else +- CFLAGS="-Wunreachable-code ${CFLAGS_save}" +- cat >conftest.$ac_ext <<_ACEOF +-/* confdefs.h. */ +-_ACEOF +-cat confdefs.h >>conftest.$ac_ext +-cat >>conftest.$ac_ext <<_ACEOF +-/* end confdefs.h. */ +- +-int +-main () +-{ +- +- ; +- return 0; +-} +-_ACEOF +-rm -f conftest.$ac_objext +-if { (ac_try="$ac_compile" +-case "(($ac_try" in +- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; +- *) ac_try_echo=$ac_try;; +-esac +-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 +- (eval "$ac_compile") 2>conftest.er1 +- ac_status=$? +- grep -v '^ *+' conftest.er1 >conftest.err +- rm -f conftest.er1 +- cat conftest.err >&5 +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); } && { +- test -z "$ac_c_werror_flag" || +- test ! -s conftest.err +- } && test -s conftest.$ac_objext; then +- ac_cv_c_Wunreachable_code=yes +-else +- echo "$as_me: failed program was:" >&5 +-sed 's/^/| /' conftest.$ac_ext >&5 +- +- ac_cv_c_Wunreachable_code=no +-fi +- +-rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext +-fi +-{ echo "$as_me:$LINENO: result: $ac_cv_c_Wunreachable_code" >&5 +-echo "${ECHO_T}$ac_cv_c_Wunreachable_code" >&6; } +- +-{ echo "$as_me:$LINENO: checking if \$CC accepts -Wsign-compare" >&5 +-echo $ECHO_N "checking if \$CC accepts -Wsign-compare... $ECHO_C" >&6; } +-if test "${ac_cv_c_Wsign_compare+set}" = set; then +- echo $ECHO_N "(cached) $ECHO_C" >&6 +-else +- CFLAGS="-Wsign-compare ${CFLAGS_save}" +- cat >conftest.$ac_ext <<_ACEOF +-/* confdefs.h. */ +-_ACEOF +-cat confdefs.h >>conftest.$ac_ext +-cat >>conftest.$ac_ext <<_ACEOF +-/* end confdefs.h. */ +- +-int +-main () +-{ +- +- ; +- return 0; +-} +-_ACEOF +-rm -f conftest.$ac_objext +-if { (ac_try="$ac_compile" +-case "(($ac_try" in +- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; +- *) ac_try_echo=$ac_try;; +-esac +-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 +- (eval "$ac_compile") 2>conftest.er1 +- ac_status=$? +- grep -v '^ *+' conftest.er1 >conftest.err +- rm -f conftest.er1 +- cat conftest.err >&5 +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); } && { +- test -z "$ac_c_werror_flag" || +- test ! -s conftest.err +- } && test -s conftest.$ac_objext; then +- ac_cv_c_Wsign_compare=yes +-else +- echo "$as_me: failed program was:" >&5 +-sed 's/^/| /' conftest.$ac_ext >&5 +- +- ac_cv_c_Wsign_compare=no +-fi +- +-rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext +-fi +-{ echo "$as_me:$LINENO: result: $ac_cv_c_Wsign_compare" >&5 +-echo "${ECHO_T}$ac_cv_c_Wsign_compare" >&6; } +- +-if test "${ac_cv_c_Wall}" != "no"; then +- CFLAGS_save="-Wall ${CFLAGS_save}"; CFLAGS="${CFLAGS_save}" +- CXXFLAGS_save="-Wall ${CXXFLAGS_save}"; CXXFLAGS="${CXXFLAGS_save}" +- OBJCFLAGS_save="-Wall ${OBJCFLAGS_save}"; OBJCFLAGS="${OBJCFLAGS_save}" +-fi +- +-if test "${ac_cv_c_Wsign_compare}" != "no"; then +- CFLAGS_save="-Wsign-compare ${CFLAGS_save}"; CFLAGS="${CFLAGS_save}" +- CXXFLAGS_save="-Wsign-compare ${CXXFLAGS_save}"; CXXFLAGS="${CXXFLAGS_save}" +- OBJCFLAGS_save="-Wsign-compare ${OBJCFLAGS_save}"; OBJCFLAGS="${OBJCFLAGS_save}" +-fi +- +-{ echo "$as_me:$LINENO: checking if \$CC accepts -pipe" >&5 +-echo $ECHO_N "checking if \$CC accepts -pipe... $ECHO_C" >&6; } +-if test "${ac_cv_c_pipe+set}" = set; then +- echo $ECHO_N "(cached) $ECHO_C" >&6 +-else +- CFLAGS="${CFLAGS_save} -pipe" +- cat >conftest.$ac_ext <<_ACEOF +-/* confdefs.h. */ +-_ACEOF +-cat confdefs.h >>conftest.$ac_ext +-cat >>conftest.$ac_ext <<_ACEOF +-/* end confdefs.h. */ +- +-int +-main () +-{ +- +- ; +- return 0; +-} +-_ACEOF +-rm -f conftest.$ac_objext +-if { (ac_try="$ac_compile" +-case "(($ac_try" in +- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; +- *) ac_try_echo=$ac_try;; +-esac +-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 +- (eval "$ac_compile") 2>conftest.er1 +- ac_status=$? +- grep -v '^ *+' conftest.er1 >conftest.err +- rm -f conftest.er1 +- cat conftest.err >&5 +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); } && { +- test -z "$ac_c_werror_flag" || +- test ! -s conftest.err +- } && test -s conftest.$ac_objext; then +- ac_cv_c_pipe=yes +-else +- echo "$as_me: failed program was:" >&5 +-sed 's/^/| /' conftest.$ac_ext >&5 +- +- ac_cv_c_pipe=no +-fi +- +-rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext +-fi +-{ echo "$as_me:$LINENO: result: $ac_cv_c_pipe" >&5 +-echo "${ECHO_T}$ac_cv_c_pipe" >&6; } +-if test "${ac_cv_c_pipe}" != "no"; then +- CFLAGS_save="${CFLAGS_save} -pipe"; CFLAGS="${CFLAGS_save}" +- CXXFLAGS_save="${CXXFLAGS_save} -pipe"; CXXFLAGS="${CXXFLAGS_save}" +- OBJCFLAGS_save="${OBJCFLAGS_save} -pipe"; OBJCFLAGS="${OBJCFLAGS_save}" +-fi +- +-{ echo "$as_me:$LINENO: checking if \$CC accepts -Os" >&5 +-echo $ECHO_N "checking if \$CC accepts -Os... $ECHO_C" >&6; } +-if test "${ac_cv_c_os+set}" = set; then +- echo $ECHO_N "(cached) $ECHO_C" >&6 +-else +- CFLAGS="${CFLAGS_save} -Os" +- cat >conftest.$ac_ext <<_ACEOF +-/* confdefs.h. */ +-_ACEOF +-cat confdefs.h >>conftest.$ac_ext +-cat >>conftest.$ac_ext <<_ACEOF +-/* end confdefs.h. */ +- +-int +-main () +-{ +- +- ; +- return 0; +-} +-_ACEOF +-rm -f conftest.$ac_objext +-if { (ac_try="$ac_compile" +-case "(($ac_try" in +- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; +- *) ac_try_echo=$ac_try;; +-esac +-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 +- (eval "$ac_compile") 2>conftest.er1 +- ac_status=$? +- grep -v '^ *+' conftest.er1 >conftest.err +- rm -f conftest.er1 +- cat conftest.err >&5 +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); } && { +- test -z "$ac_c_werror_flag" || +- test ! -s conftest.err +- } && test -s conftest.$ac_objext; then +- ac_cv_c_os=yes +-else +- echo "$as_me: failed program was:" >&5 +-sed 's/^/| /' conftest.$ac_ext >&5 +- +- ac_cv_c_os=no +-fi +- +-rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext +-fi +-{ echo "$as_me:$LINENO: result: $ac_cv_c_os" >&5 +-echo "${ECHO_T}$ac_cv_c_os" >&6; } +-if test "${ac_cv_c_os}" != "no" -a "${target_cpu}" = "mipsel"; then +- CFLAGS_OPTIM="${CFLAGS_OPTIM} -Os" +-fi +- +-{ echo "$as_me:$LINENO: checking if \$CC accepts -O3" >&5 +-echo $ECHO_N "checking if \$CC accepts -O3... $ECHO_C" >&6; } +-if test "${ac_cv_c_o3+set}" = set; then +- echo $ECHO_N "(cached) $ECHO_C" >&6 +-else +- CFLAGS="${CFLAGS_save} -O3" +- cat >conftest.$ac_ext <<_ACEOF +-/* confdefs.h. */ +-_ACEOF +-cat confdefs.h >>conftest.$ac_ext +-cat >>conftest.$ac_ext <<_ACEOF +-/* end confdefs.h. */ +- +-int +-main () +-{ +- +- ; +- return 0; +-} +-_ACEOF +-rm -f conftest.$ac_objext +-if { (ac_try="$ac_compile" +-case "(($ac_try" in +- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; +- *) ac_try_echo=$ac_try;; +-esac +-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 +- (eval "$ac_compile") 2>conftest.er1 +- ac_status=$? +- grep -v '^ *+' conftest.er1 >conftest.err +- rm -f conftest.er1 +- cat conftest.err >&5 +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); } && { +- test -z "$ac_c_werror_flag" || +- test ! -s conftest.err +- } && test -s conftest.$ac_objext; then +- ac_cv_c_o3=yes +-else +- echo "$as_me: failed program was:" >&5 +-sed 's/^/| /' conftest.$ac_ext >&5 +- +- ac_cv_c_o3=no +-fi +- +-rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext +-fi +-{ echo "$as_me:$LINENO: result: $ac_cv_c_o3" >&5 +-echo "${ECHO_T}$ac_cv_c_o3" >&6; } +-if test "${ac_cv_c_o3}" != "no" -a "${target_cpu}" != "mipsel"; then +- CFLAGS_OPTIM="${CFLAGS_OPTIM} -O3" +-fi +- +-{ echo "$as_me:$LINENO: checking if \$CC accepts -O2" >&5 +-echo $ECHO_N "checking if \$CC accepts -O2... $ECHO_C" >&6; } +-if test "${ac_cv_c_o2+set}" = set; then +- echo $ECHO_N "(cached) $ECHO_C" >&6 +-else +- CFLAGS="${CFLAGS_save} -O2" +- cat >conftest.$ac_ext <<_ACEOF +-/* confdefs.h. */ +-_ACEOF +-cat confdefs.h >>conftest.$ac_ext +-cat >>conftest.$ac_ext <<_ACEOF +-/* end confdefs.h. */ +- +-int +-main () +-{ +- +- ; +- return 0; +-} +-_ACEOF +-rm -f conftest.$ac_objext +-if { (ac_try="$ac_compile" +-case "(($ac_try" in +- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; +- *) ac_try_echo=$ac_try;; +-esac +-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 +- (eval "$ac_compile") 2>conftest.er1 +- ac_status=$? +- grep -v '^ *+' conftest.er1 >conftest.err +- rm -f conftest.er1 +- cat conftest.err >&5 +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); } && { +- test -z "$ac_c_werror_flag" || +- test ! -s conftest.err +- } && test -s conftest.$ac_objext; then +- ac_cv_c_o2=yes +-else +- echo "$as_me: failed program was:" >&5 +-sed 's/^/| /' conftest.$ac_ext >&5 +- +- ac_cv_c_o2=no +-fi +- +-rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext +-fi +-{ echo "$as_me:$LINENO: result: $ac_cv_c_o2" >&5 +-echo "${ECHO_T}$ac_cv_c_o2" >&6; } +-if test "${ac_cv_c_o2}" != "no" -a "${target_cpu}" != "mipsel"; then +- if test "${ac_cv_c_o3}" = "no"; then +- CFLAGS_OPTIM="${CFLAGS_OPTIM} -O2" +- fi +- CFLAGS_NOOPTIM="${CFLAGS_NOOPTIM} -O2" +-else +- { echo "$as_me:$LINENO: checking if \$CC accepts -O" >&5 +-echo $ECHO_N "checking if \$CC accepts -O... $ECHO_C" >&6; } +-if test "${ac_cv_c_o+set}" = set; then +- echo $ECHO_N "(cached) $ECHO_C" >&6 +-else +- CFLAGS="${CFLAGS_save} -O" +- cat >conftest.$ac_ext <<_ACEOF +-/* confdefs.h. */ +-_ACEOF +-cat confdefs.h >>conftest.$ac_ext +-cat >>conftest.$ac_ext <<_ACEOF +-/* end confdefs.h. */ +- +-int +-main () +-{ +- +- ; +- return 0; +-} +-_ACEOF +-rm -f conftest.$ac_objext +-if { (ac_try="$ac_compile" +-case "(($ac_try" in +- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; +- *) ac_try_echo=$ac_try;; +-esac +-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 +- (eval "$ac_compile") 2>conftest.er1 +- ac_status=$? +- grep -v '^ *+' conftest.er1 >conftest.err +- rm -f conftest.er1 +- cat conftest.err >&5 +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); } && { +- test -z "$ac_c_werror_flag" || +- test ! -s conftest.err +- } && test -s conftest.$ac_objext; then +- ac_cv_c_o=yes +-else +- echo "$as_me: failed program was:" >&5 +-sed 's/^/| /' conftest.$ac_ext >&5 +- +- ac_cv_c_o=no +-fi +- +-rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext +-fi +-{ echo "$as_me:$LINENO: result: $ac_cv_c_o" >&5 +-echo "${ECHO_T}$ac_cv_c_o" >&6; } +- if test "${ac_cv_c_o}" != "no" -a "${target_cpu}" != "mipsel"; then +- if test "${ac_cv_c_o3}" = "no"; then +- CFLAGS_OPTIM="${CFLAGS_OPTIM} -O" +- fi +- CFLAGS_NOOPTIM="${CFLAGS_NOOPTIM} -O" +- fi +-fi +- +-{ echo "$as_me:$LINENO: checking if \$CC accepts -ffast-math" >&5 +-echo $ECHO_N "checking if \$CC accepts -ffast-math... $ECHO_C" >&6; } +-if test "${ac_cv_c_fast_math+set}" = set; then +- echo $ECHO_N "(cached) $ECHO_C" >&6 +-else +- CFLAGS="${CFLAGS_save} -ffast-math" +- cat >conftest.$ac_ext <<_ACEOF +-/* confdefs.h. */ +-_ACEOF +-cat confdefs.h >>conftest.$ac_ext +-cat >>conftest.$ac_ext <<_ACEOF +-/* end confdefs.h. */ +- +-int +-main () +-{ +- +- ; +- return 0; +-} +-_ACEOF +-rm -f conftest.$ac_objext +-if { (ac_try="$ac_compile" +-case "(($ac_try" in +- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; +- *) ac_try_echo=$ac_try;; +-esac +-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 +- (eval "$ac_compile") 2>conftest.er1 +- ac_status=$? +- grep -v '^ *+' conftest.er1 >conftest.err +- rm -f conftest.er1 +- cat conftest.err >&5 +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); } && { +- test -z "$ac_c_werror_flag" || +- test ! -s conftest.err +- } && test -s conftest.$ac_objext; then +- ac_cv_c_fast_math=yes +-else +- echo "$as_me: failed program was:" >&5 +-sed 's/^/| /' conftest.$ac_ext >&5 +- +- ac_cv_c_fast_math=no +-fi +- +-rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext +-fi +-{ echo "$as_me:$LINENO: result: $ac_cv_c_fast_math" >&5 +-echo "${ECHO_T}$ac_cv_c_fast_math" >&6; } +-if test "${ac_cv_c_fast_math}" != "no"; then +- CFLAGS_OPTIM="${CFLAGS_OPTIM} -ffast-math" +-fi +- +-if test "${SYS}" != "beos" +-then +- { echo "$as_me:$LINENO: checking if \$CC accepts -funroll-loops" >&5 +-echo $ECHO_N "checking if \$CC accepts -funroll-loops... $ECHO_C" >&6; } +-if test "${ac_cv_c_unroll_loops+set}" = set; then +- echo $ECHO_N "(cached) $ECHO_C" >&6 +-else +- CFLAGS="${CFLAGS_save} -funroll-loops" +- cat >conftest.$ac_ext <<_ACEOF +-/* confdefs.h. */ +-_ACEOF +-cat confdefs.h >>conftest.$ac_ext +-cat >>conftest.$ac_ext <<_ACEOF +-/* end confdefs.h. */ +- +-int +-main () +-{ +- +- ; +- return 0; +-} +-_ACEOF +-rm -f conftest.$ac_objext +-if { (ac_try="$ac_compile" +-case "(($ac_try" in +- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; +- *) ac_try_echo=$ac_try;; +-esac +-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 +- (eval "$ac_compile") 2>conftest.er1 +- ac_status=$? +- grep -v '^ *+' conftest.er1 >conftest.err +- rm -f conftest.er1 +- cat conftest.err >&5 +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); } && { +- test -z "$ac_c_werror_flag" || +- test ! -s conftest.err +- } && test -s conftest.$ac_objext; then +- ac_cv_c_unroll_loops=yes +-else +- echo "$as_me: failed program was:" >&5 +-sed 's/^/| /' conftest.$ac_ext >&5 +- +- ac_cv_c_unroll_loops=no +-fi +- +-rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext +-fi +-{ echo "$as_me:$LINENO: result: $ac_cv_c_unroll_loops" >&5 +-echo "${ECHO_T}$ac_cv_c_unroll_loops" >&6; } +- if test "${ac_cv_c_unroll_loops}" != "no"; then +- CFLAGS_OPTIM="${CFLAGS_OPTIM} -funroll-loops" +- fi +-fi +- +-{ echo "$as_me:$LINENO: checking if \$CC accepts -fomit-frame-pointer" >&5 +-echo $ECHO_N "checking if \$CC accepts -fomit-frame-pointer... $ECHO_C" >&6; } +-if test "${ac_cv_c_omit_frame_pointer+set}" = set; then +- echo $ECHO_N "(cached) $ECHO_C" >&6 +-else +- CFLAGS="${CFLAGS_save} -fomit-frame-pointer" +- cat >conftest.$ac_ext <<_ACEOF +-/* confdefs.h. */ +-_ACEOF +-cat confdefs.h >>conftest.$ac_ext +-cat >>conftest.$ac_ext <<_ACEOF +-/* end confdefs.h. */ +- +-int +-main () +-{ +- +- ; +- return 0; +-} +-_ACEOF +-rm -f conftest.$ac_objext +-if { (ac_try="$ac_compile" +-case "(($ac_try" in +- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; +- *) ac_try_echo=$ac_try;; +-esac +-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 +- (eval "$ac_compile") 2>conftest.er1 +- ac_status=$? +- grep -v '^ *+' conftest.er1 >conftest.err +- rm -f conftest.er1 +- cat conftest.err >&5 +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); } && { +- test -z "$ac_c_werror_flag" || +- test ! -s conftest.err +- } && test -s conftest.$ac_objext; then +- ac_cv_c_omit_frame_pointer=yes +-else +- echo "$as_me: failed program was:" >&5 +-sed 's/^/| /' conftest.$ac_ext >&5 +- +- ac_cv_c_omit_frame_pointer=no +-fi +- +-rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext +-fi +-{ echo "$as_me:$LINENO: result: $ac_cv_c_omit_frame_pointer" >&5 +-echo "${ECHO_T}$ac_cv_c_omit_frame_pointer" >&6; } +-if test "${ac_cv_c_omit_frame_pointer}" != "no"; then +- CFLAGS_OPTIM_NODEBUG="${CFLAGS_OPTIM_NODEBUG} -fomit-frame-pointer" +- # this plugin does not compile without -fomit-frame-pointer, damn gcc! +- +- for element in i420_yuy2_mmx; do +- eval "CFLAGS_${element}="'"$'"{CFLAGS_${element}} -fomit-frame-pointer"'"' +- am_modules_with_cflags="${am_modules_with_cflags} ${element}" +- done +- +-fi +- +-{ echo "$as_me:$LINENO: checking if \$CC accepts -mdynamic-no-pic" >&5 +-echo $ECHO_N "checking if \$CC accepts -mdynamic-no-pic... $ECHO_C" >&6; } +-if test "${ac_cv_c_dynamic_no_pic+set}" = set; then +- echo $ECHO_N "(cached) $ECHO_C" >&6 +-else +- CFLAGS="${CFLAGS_save} -mdynamic-no-pic" +- cat >conftest.$ac_ext <<_ACEOF +-/* confdefs.h. */ +-_ACEOF +-cat confdefs.h >>conftest.$ac_ext +-cat >>conftest.$ac_ext <<_ACEOF +-/* end confdefs.h. */ +- +-int +-main () +-{ +- +- ; +- return 0; +-} +-_ACEOF +-rm -f conftest.$ac_objext +-if { (ac_try="$ac_compile" +-case "(($ac_try" in +- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; +- *) ac_try_echo=$ac_try;; +-esac +-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 +- (eval "$ac_compile") 2>conftest.er1 +- ac_status=$? +- grep -v '^ *+' conftest.er1 >conftest.err +- rm -f conftest.er1 +- cat conftest.err >&5 +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); } && { +- test -z "$ac_c_werror_flag" || +- test ! -s conftest.err +- } && test -s conftest.$ac_objext; then +- ac_cv_c_dynamic_no_pic=yes +-else +- echo "$as_me: failed program was:" >&5 +-sed 's/^/| /' conftest.$ac_ext >&5 +- +- ac_cv_c_dynamic_no_pic=no +-fi +- +-rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext +-fi +-{ echo "$as_me:$LINENO: result: $ac_cv_c_dynamic_no_pic" >&5 +-echo "${ECHO_T}$ac_cv_c_dynamic_no_pic" >&6; } +-if test "${enable_libtool}" = "no" && test "${ac_cv_c_dynamic_no_pic}" != "no"; then +- +- +- for element in builtin; do +- eval "CFLAGS_${element}="'"$'"{CFLAGS_${element}} -mdynamic-no-pic"'"' +- am_modules_with_cflags="${am_modules_with_cflags} ${element}" +- done +- +- +- for element in libvlc; do +- eval "CFLAGS_${element}="'"$'"{CFLAGS_${element}} -mdynamic-no-pic"'"' +- am_modules_with_cflags="${am_modules_with_cflags} ${element}" +- done +- +- +-fi +- +- +-{ echo "$as_me:$LINENO: checking if \$CC accepts -bundle -undefined error" >&5 +-echo $ECHO_N "checking if \$CC accepts -bundle -undefined error... $ECHO_C" >&6; } +-if test "${ac_cv_ld_darwin+set}" = set; then +- echo $ECHO_N "(cached) $ECHO_C" >&6 +-else +- CFLAGS="${CFLAGS_save} -bundle -undefined error" +- cat >conftest.$ac_ext <<_ACEOF +-/* confdefs.h. */ +-_ACEOF +-cat confdefs.h >>conftest.$ac_ext +-cat >>conftest.$ac_ext <<_ACEOF +-/* end confdefs.h. */ +- +-int +-main () +-{ +- +- ; +- return 0; +-} +-_ACEOF +-rm -f conftest.$ac_objext +-if { (ac_try="$ac_compile" +-case "(($ac_try" in +- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; +- *) ac_try_echo=$ac_try;; +-esac +-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 +- (eval "$ac_compile") 2>conftest.er1 +- ac_status=$? +- grep -v '^ *+' conftest.er1 >conftest.err +- rm -f conftest.er1 +- cat conftest.err >&5 +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); } && { +- test -z "$ac_c_werror_flag" || +- test ! -s conftest.err +- } && test -s conftest.$ac_objext; then +- ac_cv_ld_darwin=yes +-else +- echo "$as_me: failed program was:" >&5 +-sed 's/^/| /' conftest.$ac_ext >&5 +- +- ac_cv_ld_darwin=no +-fi +- +-rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext +-fi +-{ echo "$as_me:$LINENO: result: $ac_cv_ld_darwin" >&5 +-echo "${ECHO_T}$ac_cv_ld_darwin" >&6; } +-if test "${ac_cv_ld_darwin}" != "no"; then +- +- for element in plugin; do +- eval "LDFLAGS_${element}="'"'"-bundle -undefined error "'$'"{LDFLAGS_${element}} "'"' +- am_modules_with_ldflags="${am_modules_with_ldflags} ${element}" +- done +- +-fi +- +-if test "${SYS}" = "beos"; then +- +- for element in plugin mozilla; do +- eval "LDFLAGS_${element}="'"'"-nostart "'$'"{LDFLAGS_${element}} "'"' +- am_modules_with_ldflags="${am_modules_with_ldflags} ${element}" +- done +- +-else +- { echo "$as_me:$LINENO: checking if \$CC accepts -shared" >&5 +-echo $ECHO_N "checking if \$CC accepts -shared... $ECHO_C" >&6; } +-if test "${ac_cv_ld_plugins+set}" = set; then +- echo $ECHO_N "(cached) $ECHO_C" >&6 +-else +- CFLAGS="${CFLAGS_save} -shared" +- cat >conftest.$ac_ext <<_ACEOF +-/* confdefs.h. */ +-_ACEOF +-cat confdefs.h >>conftest.$ac_ext +-cat >>conftest.$ac_ext <<_ACEOF +-/* end confdefs.h. */ +- +-int +-main () +-{ +- +- ; +- return 0; +-} +-_ACEOF +-rm -f conftest.$ac_objext +-if { (ac_try="$ac_compile" +-case "(($ac_try" in +- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; +- *) ac_try_echo=$ac_try;; +-esac +-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 +- (eval "$ac_compile") 2>conftest.er1 +- ac_status=$? +- grep -v '^ *+' conftest.er1 >conftest.err +- rm -f conftest.er1 +- cat conftest.err >&5 +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); } && { +- test -z "$ac_c_werror_flag" || +- test ! -s conftest.err +- } && test -s conftest.$ac_objext; then +- ac_cv_ld_plugins=yes +-else +- echo "$as_me: failed program was:" >&5 +-sed 's/^/| /' conftest.$ac_ext >&5 +- +- ac_cv_ld_plugins=no +-fi +- +-rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext +-fi +-{ echo "$as_me:$LINENO: result: $ac_cv_ld_plugins" >&5 +-echo "${ECHO_T}$ac_cv_ld_plugins" >&6; } +- if test "${ac_cv_ld_plugins}" != "no"; then +- +- for element in plugin mozilla; do +- eval "LDFLAGS_${element}="'"'"-shared "'$'"{LDFLAGS_${element}} "'"' +- am_modules_with_ldflags="${am_modules_with_ldflags} ${element}" +- done +- +- fi +-fi +- +-{ echo "$as_me:$LINENO: checking for variadic cpp macros" >&5 +-echo $ECHO_N "checking for variadic cpp macros... $ECHO_C" >&6; } +-if test "${ac_cv_cpp_variadic_macros+set}" = set; then +- echo $ECHO_N "(cached) $ECHO_C" >&6 +-else +- CFLAGS="${CFLAGS_save}" +- cat >conftest.$ac_ext <<_ACEOF +-/* confdefs.h. */ +-_ACEOF +-cat confdefs.h >>conftest.$ac_ext +-cat >>conftest.$ac_ext <<_ACEOF +-/* end confdefs.h. */ +-#include +- #define a(b,c...) printf(b,##c) +-int +-main () +-{ +-a("foo");a("%s","bar");a("%s%s","baz","quux"); +- ; +- return 0; +-} +-_ACEOF +-rm -f conftest.$ac_objext +-if { (ac_try="$ac_compile" +-case "(($ac_try" in +- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; +- *) ac_try_echo=$ac_try;; +-esac +-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 +- (eval "$ac_compile") 2>conftest.er1 +- ac_status=$? +- grep -v '^ *+' conftest.er1 >conftest.err +- rm -f conftest.er1 +- cat conftest.err >&5 +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); } && { +- test -z "$ac_c_werror_flag" || +- test ! -s conftest.err +- } && test -s conftest.$ac_objext; then +- ac_cv_cpp_variadic_macros=yes +-else +- echo "$as_me: failed program was:" >&5 +-sed 's/^/| /' conftest.$ac_ext >&5 +- +- ac_cv_cpp_variadic_macros=no +-fi +- +-rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext +-fi +-{ echo "$as_me:$LINENO: result: $ac_cv_cpp_variadic_macros" >&5 +-echo "${ECHO_T}$ac_cv_cpp_variadic_macros" >&6; } +-if test "${ac_cv_cpp_variadic_macros}" != "no"; then +- +-cat >>confdefs.h <<\_ACEOF +-#define HAVE_VARIADIC_MACROS 1 +-_ACEOF +- +-fi +- +-{ echo "$as_me:$LINENO: checking __attribute__ ((aligned ())) support" >&5 +-echo $ECHO_N "checking __attribute__ ((aligned ())) support... $ECHO_C" >&6; } +-if test "${ac_cv_c_attribute_aligned+set}" = set; then +- echo $ECHO_N "(cached) $ECHO_C" >&6 +-else +- ac_cv_c_attribute_aligned=0 +- CFLAGS="${CFLAGS_save} -Werror" +- for ac_cv_c_attr_align_try in 2 4 8 16 32 64; do +- cat >conftest.$ac_ext <<_ACEOF +-/* confdefs.h. */ +-_ACEOF +-cat confdefs.h >>conftest.$ac_ext +-cat >>conftest.$ac_ext <<_ACEOF +-/* end confdefs.h. */ +- +-int +-main () +-{ +-static char c __attribute__ ((aligned(${ac_cv_c_attr_align_try}))) = 0; return c; +- ; +- return 0; +-} +-_ACEOF +-rm -f conftest.$ac_objext +-if { (ac_try="$ac_compile" +-case "(($ac_try" in +- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; +- *) ac_try_echo=$ac_try;; +-esac +-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 +- (eval "$ac_compile") 2>conftest.er1 +- ac_status=$? +- grep -v '^ *+' conftest.er1 >conftest.err +- rm -f conftest.er1 +- cat conftest.err >&5 +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); } && { +- test -z "$ac_c_werror_flag" || +- test ! -s conftest.err +- } && test -s conftest.$ac_objext; then +- ac_cv_c_attribute_aligned="${ac_cv_c_attr_align_try}" +-else +- echo "$as_me: failed program was:" >&5 +-sed 's/^/| /' conftest.$ac_ext >&5 +- +- +-fi +- +-rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext +- done +- CFLAGS="${CFLAGS_save}" +-fi +-{ echo "$as_me:$LINENO: result: $ac_cv_c_attribute_aligned" >&5 +-echo "${ECHO_T}$ac_cv_c_attribute_aligned" >&6; } +-if test "${ac_cv_c_attribute_aligned}" != "0"; then +- +-cat >>confdefs.h <<_ACEOF +-#define ATTRIBUTE_ALIGNED_MAX ${ac_cv_c_attribute_aligned} +-_ACEOF +- +-fi +- +-{ echo "$as_me:$LINENO: checking __attribute__ ((format ())) support with function pointers" >&5 +-echo $ECHO_N "checking __attribute__ ((format ())) support with function pointers... $ECHO_C" >&6; } +-if test "${ac_cv_c_attribute_format+set}" = set; then +- echo $ECHO_N "(cached) $ECHO_C" >&6 +-else +- ac_cv_c_attribute_format=no +- CFLAGS="${CFLAGS_save} -Werror" +- cat >conftest.$ac_ext <<_ACEOF +-/* confdefs.h. */ +-_ACEOF +-cat confdefs.h >>conftest.$ac_ext +-cat >>conftest.$ac_ext <<_ACEOF +-/* end confdefs.h. */ +- +-int +-main () +-{ +-static void (*pf_printf)(const char *, ...) __attribute__ ((format(printf,1,2)));(void)pf_printf; +- ; +- return 0; +-} +-_ACEOF +-rm -f conftest.$ac_objext +-if { (ac_try="$ac_compile" +-case "(($ac_try" in +- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; +- *) ac_try_echo=$ac_try;; +-esac +-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 +- (eval "$ac_compile") 2>conftest.er1 +- ac_status=$? +- grep -v '^ *+' conftest.er1 >conftest.err +- rm -f conftest.er1 +- cat conftest.err >&5 +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); } && { +- test -z "$ac_c_werror_flag" || +- test ! -s conftest.err +- } && test -s conftest.$ac_objext; then +- ac_cv_c_attribute_format=yes +-else +- echo "$as_me: failed program was:" >&5 +-sed 's/^/| /' conftest.$ac_ext >&5 +- +- +-fi +- +-rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext +- CFLAGS="${CFLAGS_save}" +-fi +-{ echo "$as_me:$LINENO: result: $ac_cv_c_attribute_format" >&5 +-echo "${ECHO_T}$ac_cv_c_attribute_format" >&6; } +-if test "${ac_cv_c_attribute_format}" != "no"; then +- +-cat >>confdefs.h <<\_ACEOF +-#define HAVE_ATTRIBUTE_FORMAT 1 +-_ACEOF +- +-fi +- +-{ echo "$as_me:$LINENO: checking for __attribute__((packed))" >&5 +-echo $ECHO_N "checking for __attribute__((packed))... $ECHO_C" >&6; } +-if test "${ac_cv_c_attribute_packed+set}" = set; then +- echo $ECHO_N "(cached) $ECHO_C" >&6 +-else +- ac_cv_c_attribute_packed=no +- cat >conftest.$ac_ext <<_ACEOF +-/* confdefs.h. */ +-_ACEOF +-cat confdefs.h >>conftest.$ac_ext +-cat >>conftest.$ac_ext <<_ACEOF +-/* end confdefs.h. */ +- +-int +-main () +-{ +-struct __attribute__((__packed__)) foo { int a; } b; +- ; +- return 0; +-} +-_ACEOF +-rm -f conftest.$ac_objext +-if { (ac_try="$ac_compile" +-case "(($ac_try" in +- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; +- *) ac_try_echo=$ac_try;; +-esac +-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 +- (eval "$ac_compile") 2>conftest.er1 +- ac_status=$? +- grep -v '^ *+' conftest.er1 >conftest.err +- rm -f conftest.er1 +- cat conftest.err >&5 +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); } && { +- test -z "$ac_c_werror_flag" || +- test ! -s conftest.err +- } && test -s conftest.$ac_objext; then +- ac_cv_c_attribute_packed=yes +-else +- echo "$as_me: failed program was:" >&5 +-sed 's/^/| /' conftest.$ac_ext >&5 +- +- +-fi +- +-rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext +-fi +-{ echo "$as_me:$LINENO: result: $ac_cv_c_attribute_packed" >&5 +-echo "${ECHO_T}$ac_cv_c_attribute_packed" >&6; } +-if test "${ac_cv_c_attribute_packed}" != "no"; then +- +-cat >>confdefs.h <<\_ACEOF +-#define HAVE_ATTRIBUTE_PACKED 1 +-_ACEOF +- +-fi +- +-case "${target_cpu}" in +- "") +- ARCH=unknown +- ;; +- *) +- ARCH="${target_cpu}" +- ;; +-esac +- +-# Check whether --enable-gprof was given. +-if test "${enable_gprof+set}" = set; then +- enableval=$enable_gprof; +-fi +- +-# Check whether --enable-cprof was given. +-if test "${enable_cprof+set}" = set; then +- enableval=$enable_cprof; +-fi +- +-test "${enable_gprof}" != "yes" && enable_gprof="no" +-test "${enable_cprof}" != "yes" && enable_cprof="no" +- +- +- PLUGINS="${PLUGINS} dummy logger memcpy" +- +- +- PLUGINS="${PLUGINS} mpgv mpga m4v m4a h264 ps pva avi asf mp4 rawdv nsv real aiff mjpeg demuxdump flac tta" +- +- +- PLUGINS="${PLUGINS} cvdsub svcdsub spudec telx subsdec dvbsub mpeg_audio lpcm a52 dts cinepak flacdec" +- +- +- PLUGINS="${PLUGINS} deinterlace invert adjust transform distort motionblur rv32" +- +- +- PLUGINS="${PLUGINS} fixed32tos16 s16tofixed32 u8tofixed32" +- +- +- PLUGINS="${PLUGINS} trivial_resampler ugly_resampler" +- +- +- PLUGINS="${PLUGINS} trivial_channel_mixer trivial_mixer" +- +- +- PLUGINS="${PLUGINS} playlist export sgimb m3u nsc xtag" +- +- +- PLUGINS="${PLUGINS} i420_rgb rawvideo blend scale image logo magnify" +- +- +- PLUGINS="${PLUGINS} wav araw subtitle vobsub adpcm a52sys dtssys au ty voc xa nuv" +- +- +- PLUGINS="${PLUGINS} access_directory access_file access_udp access_tcp" +- +- +- PLUGINS="${PLUGINS} access_http access_mms access_ftp ipv4" +- +- +- PLUGINS="${PLUGINS} packetizer_mpegvideo packetizer_h264" +- +- +- PLUGINS="${PLUGINS} packetizer_mpeg4video packetizer_mpeg4audio" +- +- +-if test "${SYS}" != "mingwce"; then +- +- PLUGINS="${PLUGINS} access_fake access_filter_timeshift access_filter_record access_filter_dump" +- +- +- PLUGINS="${PLUGINS} gestures rc telnet hotkeys netsync showintf time marq podcast shout sap fake" +- +- +- PLUGINS="${PLUGINS} rss mosaic wall motiondetect clone crop" +- +- +- PLUGINS="${PLUGINS} i420_yuy2 i422_yuy2 i420_ymga" +- +- +- PLUGINS="${PLUGINS} aout_file linear_resampler bandlimited_resampler" +- +- +- PLUGINS="${PLUGINS} float32_mixer spdif_mixer simple_channel_mixer" +- +- +- PLUGINS="${PLUGINS} dolby_surround_decoder headphone_channel_mixer normvol equalizer param_eq" +- +- +- PLUGINS="${PLUGINS} fixed32tofloat32 float32tos16 float32tos8 float32tou16 float32tou8 a52tospdif dtstospdif s16tofloat32 s16tofloat32swab s8tofloat32 u8tofloat32 audio_format" +- +-fi +- +-# Check whether --enable-mostly-builtin was given. +-if test "${enable_mostly_builtin+set}" = set; then +- enableval=$enable_mostly_builtin; +-fi +- +-if test "${enable_mostly_builtin}" = "yes"; then +- +- BUILTINS="${BUILTINS} ${PLUGINS}" +- +- PLUGINS="" +-fi +- +-if test "${SYS}" != "mingw32" -a "${SYS}" != "mingwce"; then +- +- PLUGINS="${PLUGINS} screensaver" +- +-elif test "${SYS}" != "mingwce"; then +- +- PLUGINS="${PLUGINS} ntservice access_smb dmo msn" +- +- +- for element in dmo; do +- eval "LDFLAGS_${element}="'"'"-lole32 "'$'"{LDFLAGS_${element}} "'"' +- am_modules_with_ldflags="${am_modules_with_ldflags} ${element}" +- done +- +-else +- +- PLUGINS="${PLUGINS} win32text" +- +-fi +- +-MMX_MODULES="memcpymmx i420_rgb_mmx i422_yuy2_mmx i420_ymga_mmx" +-#MMX_MODULES="${MMX_MODULES} idctmmx motionmmx" +-MMXEXT_MODULES="memcpymmxext" +-#MMXEXT_MODULES="${MMXEXT_MODULES} idctmmxext motionmmxext" +-THREEDNOW_MODULES="memcpy3dn" +-SSE_MODULES="" +-ALTIVEC_MODULES="memcpyaltivec i420_yuy2_altivec" +-#ALTIVEC_MODULES="${ALTIVEC_MODULES} idctaltivec motionaltivec" +- +-if test "${enable_gprof}" != "yes" +-then +- MMX_MODULES="${MMX_MODULES} i420_yuy2_mmx" +-fi +- +-{ echo "$as_me:$LINENO: checking if \$CC groks MMX inline assembly" >&5 +-echo $ECHO_N "checking if \$CC groks MMX inline assembly... $ECHO_C" >&6; } +-if test "${ac_cv_mmx_inline+set}" = set; then +- echo $ECHO_N "(cached) $ECHO_C" >&6 +-else +- CFLAGS="${CFLAGS_save}" +- cat >conftest.$ac_ext <<_ACEOF +-/* confdefs.h. */ +-_ACEOF +-cat confdefs.h >>conftest.$ac_ext +-cat >>conftest.$ac_ext <<_ACEOF +-/* end confdefs.h. */ +- +-int +-main () +-{ +-void *p;asm volatile("packuswb %%mm1,%%mm2"::"r"(p)); +- ; +- return 0; +-} +-_ACEOF +-rm -f conftest.$ac_objext +-if { (ac_try="$ac_compile" +-case "(($ac_try" in +- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; +- *) ac_try_echo=$ac_try;; +-esac +-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 +- (eval "$ac_compile") 2>conftest.er1 +- ac_status=$? +- grep -v '^ *+' conftest.er1 >conftest.err +- rm -f conftest.er1 +- cat conftest.err >&5 +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); } && { +- test -z "$ac_c_werror_flag" || +- test ! -s conftest.err +- } && test -s conftest.$ac_objext; then +- ac_cv_mmx_inline=yes +-else +- echo "$as_me: failed program was:" >&5 +-sed 's/^/| /' conftest.$ac_ext >&5 +- +- ac_cv_mmx_inline=no +-fi +- +-rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext +-fi +-{ echo "$as_me:$LINENO: result: $ac_cv_mmx_inline" >&5 +-echo "${ECHO_T}$ac_cv_mmx_inline" >&6; } +-if test "${ac_cv_mmx_inline}" != "no"; then +- +-cat >>confdefs.h <<\_ACEOF +-#define CAN_COMPILE_MMX 1 +-_ACEOF +- +- ACCEL_MODULES="${ACCEL_MODULES} ${MMX_MODULES}" +-fi +- +-{ echo "$as_me:$LINENO: checking if \$CC groks MMX intrinsics" >&5 +-echo $ECHO_N "checking if \$CC groks MMX intrinsics... $ECHO_C" >&6; } +-if test "${ac_cv_c_mmx_intrinsics+set}" = set; then +- echo $ECHO_N "(cached) $ECHO_C" >&6 +-else +- CFLAGS="${CFLAGS_save} -O -mmmx" +- cat >conftest.$ac_ext <<_ACEOF +-/* confdefs.h. */ +-_ACEOF +-cat confdefs.h >>conftest.$ac_ext +-cat >>conftest.$ac_ext <<_ACEOF +-/* end confdefs.h. */ +-#include +- #include +- uint64_t frobzor; +-int +-main () +-{ +-__m64 a, b, c; +- a = b = c = (__m64)frobzor; +- a = _mm_slli_pi16(a, 3); +- a = _mm_adds_pi16(a, b); +- c = _mm_srli_pi16(c, 8); +- c = _mm_slli_pi16(c, 3); +- b = _mm_adds_pi16(b, c); +- a = _mm_unpacklo_pi8(a, b); +- frobzor = (uint64_t)a; +- ; +- return 0; +-} +-_ACEOF +-rm -f conftest.$ac_objext +-if { (ac_try="$ac_compile" +-case "(($ac_try" in +- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; +- *) ac_try_echo=$ac_try;; +-esac +-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 +- (eval "$ac_compile") 2>conftest.er1 +- ac_status=$? +- grep -v '^ *+' conftest.er1 >conftest.err +- rm -f conftest.er1 +- cat conftest.err >&5 +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); } && { +- test -z "$ac_c_werror_flag" || +- test ! -s conftest.err +- } && test -s conftest.$ac_objext; then +- ac_cv_c_mmx_intrinsics=yes +-else +- echo "$as_me: failed program was:" >&5 +-sed 's/^/| /' conftest.$ac_ext >&5 +- +- ac_cv_c_mmx_intrinsics=no +-fi +- +-rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext +-fi +-{ echo "$as_me:$LINENO: result: $ac_cv_c_mmx_intrinsics" >&5 +-echo "${ECHO_T}$ac_cv_c_mmx_intrinsics" >&6; } +-if test "${ac_cv_c_mmx_intrinsics}" != "no"; then +- +-cat >>confdefs.h <<\_ACEOF +-#define HAVE_MMX_INTRINSICS 1 +-_ACEOF +- +- +- for element in i420_rgb_mmx; do +- eval "CFLAGS_${element}="'"$'"{CFLAGS_${element}} -mmmx"'"' +- am_modules_with_cflags="${am_modules_with_cflags} ${element}" +- done +- +-fi +- +-{ echo "$as_me:$LINENO: checking if \$CC groks MMX EXT inline assembly" >&5 +-echo $ECHO_N "checking if \$CC groks MMX EXT inline assembly... $ECHO_C" >&6; } +-if test "${ac_cv_mmxext_inline+set}" = set; then +- echo $ECHO_N "(cached) $ECHO_C" >&6 +-else +- CFLAGS="${CFLAGS_save}" +- cat >conftest.$ac_ext <<_ACEOF +-/* confdefs.h. */ +-_ACEOF +-cat confdefs.h >>conftest.$ac_ext +-cat >>conftest.$ac_ext <<_ACEOF +-/* end confdefs.h. */ +- +-int +-main () +-{ +-void *p;asm volatile("maskmovq %%mm1,%%mm2"::"r"(p)); +- ; +- return 0; +-} +-_ACEOF +-rm -f conftest.$ac_objext +-if { (ac_try="$ac_compile" +-case "(($ac_try" in +- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; +- *) ac_try_echo=$ac_try;; +-esac +-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 +- (eval "$ac_compile") 2>conftest.er1 +- ac_status=$? +- grep -v '^ *+' conftest.er1 >conftest.err +- rm -f conftest.er1 +- cat conftest.err >&5 +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); } && { +- test -z "$ac_c_werror_flag" || +- test ! -s conftest.err +- } && test -s conftest.$ac_objext; then +- ac_cv_mmxext_inline=yes +-else +- echo "$as_me: failed program was:" >&5 +-sed 's/^/| /' conftest.$ac_ext >&5 +- +- ac_cv_mmxext_inline=no +-fi +- +-rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext +-fi +-{ echo "$as_me:$LINENO: result: $ac_cv_mmxext_inline" >&5 +-echo "${ECHO_T}$ac_cv_mmxext_inline" >&6; } +-if test "${ac_cv_mmxext_inline}" != "no"; then +- +-cat >>confdefs.h <<\_ACEOF +-#define CAN_COMPILE_MMXEXT 1 +-_ACEOF +- +- ACCEL_MODULES="${ACCEL_MODULES} ${MMXEXT_MODULES}" +-fi +- +-{ echo "$as_me:$LINENO: checking if \$CC groks 3D Now! inline assembly" >&5 +-echo $ECHO_N "checking if \$CC groks 3D Now! inline assembly... $ECHO_C" >&6; } +-if test "${ac_cv_3dnow_inline+set}" = set; then +- echo $ECHO_N "(cached) $ECHO_C" >&6 +-else +- CFLAGS="${CFLAGS_save}" +- cat >conftest.$ac_ext <<_ACEOF +-/* confdefs.h. */ +-_ACEOF +-cat confdefs.h >>conftest.$ac_ext +-cat >>conftest.$ac_ext <<_ACEOF +-/* end confdefs.h. */ +- +-int +-main () +-{ +-void *p;asm volatile("pfadd %%mm1,%%mm2"::"r"(p)); +- ; +- return 0; +-} +-_ACEOF +-rm -f conftest.$ac_objext +-if { (ac_try="$ac_compile" +-case "(($ac_try" in +- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; +- *) ac_try_echo=$ac_try;; +-esac +-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 +- (eval "$ac_compile") 2>conftest.er1 +- ac_status=$? +- grep -v '^ *+' conftest.er1 >conftest.err +- rm -f conftest.er1 +- cat conftest.err >&5 +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); } && { +- test -z "$ac_c_werror_flag" || +- test ! -s conftest.err +- } && test -s conftest.$ac_objext; then +- ac_cv_3dnow_inline=yes +-else +- echo "$as_me: failed program was:" >&5 +-sed 's/^/| /' conftest.$ac_ext >&5 +- +- ac_cv_3dnow_inline=no +-fi +- +-rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext +-fi +-{ echo "$as_me:$LINENO: result: $ac_cv_3dnow_inline" >&5 +-echo "${ECHO_T}$ac_cv_3dnow_inline" >&6; } +-if test "${ac_cv_3dnow_inline}" != "no"; then +- +-cat >>confdefs.h <<\_ACEOF +-#define CAN_COMPILE_3DNOW 1 +-_ACEOF +- +- ACCEL_MODULES="${ACCEL_MODULES} ${THREEDNOW_MODULES}" +-fi +- +-{ echo "$as_me:$LINENO: checking if \$CC groks SSE inline assembly" >&5 +-echo $ECHO_N "checking if \$CC groks SSE inline assembly... $ECHO_C" >&6; } +-if test "${ac_cv_sse_inline+set}" = set; then +- echo $ECHO_N "(cached) $ECHO_C" >&6 +-else +- CFLAGS="${CFLAGS_save}" +- cat >conftest.$ac_ext <<_ACEOF +-/* confdefs.h. */ +-_ACEOF +-cat confdefs.h >>conftest.$ac_ext +-cat >>conftest.$ac_ext <<_ACEOF +-/* end confdefs.h. */ +- +-int +-main () +-{ +-void *p;asm volatile("xorps %%xmm1,%%xmm2"::"r"(p)); +- ; +- return 0; +-} +-_ACEOF +-rm -f conftest.$ac_objext +-if { (ac_try="$ac_compile" +-case "(($ac_try" in +- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; +- *) ac_try_echo=$ac_try;; +-esac +-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 +- (eval "$ac_compile") 2>conftest.er1 +- ac_status=$? +- grep -v '^ *+' conftest.er1 >conftest.err +- rm -f conftest.er1 +- cat conftest.err >&5 +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); } && { +- test -z "$ac_c_werror_flag" || +- test ! -s conftest.err +- } && test -s conftest.$ac_objext; then +- ac_cv_sse_inline=yes +-else +- echo "$as_me: failed program was:" >&5 +-sed 's/^/| /' conftest.$ac_ext >&5 +- +- ac_cv_sse_inline=no +-fi +- +-rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext +-fi +-{ echo "$as_me:$LINENO: result: $ac_cv_sse_inline" >&5 +-echo "${ECHO_T}$ac_cv_sse_inline" >&6; } +-if test "${ac_cv_sse_inline}" != "no" -a "${SYS}" != "solaris"; then +- +-cat >>confdefs.h <<\_ACEOF +-#define CAN_COMPILE_SSE 1 +-_ACEOF +- +- ACCEL_MODULES="${ACCEL_MODULES} ${SSE_MODULES}" +-fi +- +-if test "${SYS}" != "mingw32" -a "${SYS}" != "mingwce"; then +-{ echo "$as_me:$LINENO: checking if \$CC groks AltiVec inline assembly" >&5 +-echo $ECHO_N "checking if \$CC groks AltiVec inline assembly... $ECHO_C" >&6; } +-if test "${ac_cv_altivec_inline+set}" = set; then +- echo $ECHO_N "(cached) $ECHO_C" >&6 +-else +- CFLAGS="${CFLAGS_save}" +- cat >conftest.$ac_ext <<_ACEOF +-/* confdefs.h. */ +-_ACEOF +-cat confdefs.h >>conftest.$ac_ext +-cat >>conftest.$ac_ext <<_ACEOF +-/* end confdefs.h. */ +- +-int +-main () +-{ +-asm volatile("vperm 0,1,2,3"); +- ; +- return 0; +-} +-_ACEOF +-rm -f conftest.$ac_objext +-if { (ac_try="$ac_compile" +-case "(($ac_try" in +- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; +- *) ac_try_echo=$ac_try;; +-esac +-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 +- (eval "$ac_compile") 2>conftest.er1 +- ac_status=$? +- grep -v '^ *+' conftest.er1 >conftest.err +- rm -f conftest.er1 +- cat conftest.err >&5 +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); } && { +- test -z "$ac_c_werror_flag" || +- test ! -s conftest.err +- } && test -s conftest.$ac_objext; then +- ac_cv_altivec_inline=yes +-else +- echo "$as_me: failed program was:" >&5 +-sed 's/^/| /' conftest.$ac_ext >&5 +- +- CFLAGS="${CFLAGS_save} -Wa,-m7400" +- cat >conftest.$ac_ext <<_ACEOF +-/* confdefs.h. */ +-_ACEOF +-cat confdefs.h >>conftest.$ac_ext +-cat >>conftest.$ac_ext <<_ACEOF +-/* end confdefs.h. */ +- +-int +-main () +-{ +-asm volatile("vperm 0,1,2,3"); +- ; +- return 0; +-} +-_ACEOF +-rm -f conftest.$ac_objext +-if { (ac_try="$ac_compile" +-case "(($ac_try" in +- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; +- *) ac_try_echo=$ac_try;; +-esac +-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 +- (eval "$ac_compile") 2>conftest.er1 +- ac_status=$? +- grep -v '^ *+' conftest.er1 >conftest.err +- rm -f conftest.er1 +- cat conftest.err >&5 +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); } && { +- test -z "$ac_c_werror_flag" || +- test ! -s conftest.err +- } && test -s conftest.$ac_objext; then +- ac_cv_altivec_inline="-Wa,-m7400" +-else +- echo "$as_me: failed program was:" >&5 +-sed 's/^/| /' conftest.$ac_ext >&5 +- +- ac_cv_altivec_inline=no +-fi +- +-rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext +- +-fi +- +-rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext +-fi +-{ echo "$as_me:$LINENO: result: $ac_cv_altivec_inline" >&5 +-echo "${ECHO_T}$ac_cv_altivec_inline" >&6; } +-if test "${ac_cv_altivec_inline}" != "no"; then +- +-cat >>confdefs.h <<\_ACEOF +-#define CAN_COMPILE_ALTIVEC 1 +-_ACEOF +- +- if test "${ac_cv_altivec_inline}" != "yes"; then +- +- for element in idctaltivec; do +- eval "CFLAGS_${element}="'"$'"{CFLAGS_${element}} ${ac_cv_altivec_inline}"'"' +- am_modules_with_cflags="${am_modules_with_cflags} ${element}" +- done +- +- +- for element in motionaltivec; do +- eval "CFLAGS_${element}="'"$'"{CFLAGS_${element}} ${ac_cv_altivec_inline}"'"' +- am_modules_with_cflags="${am_modules_with_cflags} ${element}" +- done +- +- +- for element in memcpyaltivec; do +- eval "CFLAGS_${element}="'"$'"{CFLAGS_${element}} ${ac_cv_altivec_inline}"'"' +- am_modules_with_cflags="${am_modules_with_cflags} ${element}" +- done +- +- +- for element in i420_yuy2_altivec; do +- eval "CFLAGS_${element}="'"$'"{CFLAGS_${element}} ${ac_cv_altivec_inline}"'"' +- am_modules_with_cflags="${am_modules_with_cflags} ${element}" +- done +- +- +- for element in vlc; do +- eval "CFLAGS_${element}="'"$'"{CFLAGS_${element}} ${ac_cv_altivec_inline}"'"' +- am_modules_with_cflags="${am_modules_with_cflags} ${element}" +- done +- +- fi +- ACCEL_MODULES="${ACCEL_MODULES} ${ALTIVEC_MODULES}" +-fi +- +-{ echo "$as_me:$LINENO: checking if \$CC groks AltiVec C extensions" >&5 +-echo $ECHO_N "checking if \$CC groks AltiVec C extensions... $ECHO_C" >&6; } +-if test "${ac_cv_c_altivec+set}" = set; then +- echo $ECHO_N "(cached) $ECHO_C" >&6 +-else +- # OS X/PPC test (gcc 4.x) +- CFLAGS="${CFLAGS_save} -mpim-altivec -force_cpusubtype_ALL" +- cat >conftest.$ac_ext <<_ACEOF +-/* confdefs.h. */ +-_ACEOF +-cat confdefs.h >>conftest.$ac_ext +-cat >>conftest.$ac_ext <<_ACEOF +-/* end confdefs.h. */ +- +-int +-main () +-{ +-vec_ld(0, (unsigned char *)0); +- ; +- return 0; +-} +-_ACEOF +-rm -f conftest.$ac_objext +-if { (ac_try="$ac_compile" +-case "(($ac_try" in +- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; +- *) ac_try_echo=$ac_try;; +-esac +-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 +- (eval "$ac_compile") 2>conftest.er1 +- ac_status=$? +- grep -v '^ *+' conftest.er1 >conftest.err +- rm -f conftest.er1 +- cat conftest.err >&5 +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); } && { +- test -z "$ac_c_werror_flag" || +- test ! -s conftest.err +- } && test -s conftest.$ac_objext; then +- ac_cv_c_altivec="-mpim-altivec -force_cpusubtype_ALL" +-else +- echo "$as_me: failed program was:" >&5 +-sed 's/^/| /' conftest.$ac_ext >&5 +- +- # OS X/PPC test (gcc 3.x) +- CFLAGS="${CFLAGS_save} -faltivec" +- cat >conftest.$ac_ext <<_ACEOF +-/* confdefs.h. */ +-_ACEOF +-cat confdefs.h >>conftest.$ac_ext +-cat >>conftest.$ac_ext <<_ACEOF +-/* end confdefs.h. */ +- +-int +-main () +-{ +-vec_ld(1 * sizeof(vector float), (unsigned char *)0); +- ; +- return 0; +-} +-_ACEOF +-rm -f conftest.$ac_objext +-if { (ac_try="$ac_compile" +-case "(($ac_try" in +- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; +- *) ac_try_echo=$ac_try;; +-esac +-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 +- (eval "$ac_compile") 2>conftest.er1 +- ac_status=$? +- grep -v '^ *+' conftest.er1 >conftest.err +- rm -f conftest.er1 +- cat conftest.err >&5 +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); } && { +- test -z "$ac_c_werror_flag" || +- test ! -s conftest.err +- } && test -s conftest.$ac_objext; then +- ac_cv_c_altivec="-faltivec" +-else +- echo "$as_me: failed program was:" >&5 +-sed 's/^/| /' conftest.$ac_ext >&5 +- +- # Linux/PPC test (gcc 4.x) +- CFLAGS="${CFLAGS_save} -maltivec" +- cat >conftest.$ac_ext <<_ACEOF +-/* confdefs.h. */ +-_ACEOF +-cat confdefs.h >>conftest.$ac_ext +-cat >>conftest.$ac_ext <<_ACEOF +-/* end confdefs.h. */ +-#include +-int +-main () +-{ +-vec_ld(0, (unsigned char *)0); +- ; +- return 0; +-} +-_ACEOF +-rm -f conftest.$ac_objext +-if { (ac_try="$ac_compile" +-case "(($ac_try" in +- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; +- *) ac_try_echo=$ac_try;; +-esac +-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 +- (eval "$ac_compile") 2>conftest.er1 +- ac_status=$? +- grep -v '^ *+' conftest.er1 >conftest.err +- rm -f conftest.er1 +- cat conftest.err >&5 +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); } && { +- test -z "$ac_c_werror_flag" || +- test ! -s conftest.err +- } && test -s conftest.$ac_objext; then +- ac_cv_c_altivec="-maltivec" +-else +- echo "$as_me: failed program was:" >&5 +-sed 's/^/| /' conftest.$ac_ext >&5 +- +- # Linux/PPC test (gcc 3.3) +- CFLAGS="${CFLAGS_save} -maltivec -mabi=altivec" +- cat >conftest.$ac_ext <<_ACEOF +-/* confdefs.h. */ +-_ACEOF +-cat confdefs.h >>conftest.$ac_ext +-cat >>conftest.$ac_ext <<_ACEOF +-/* end confdefs.h. */ +-#include +-int +-main () +-{ +-vec_ld(0, (unsigned char *)0); +- ; +- return 0; +-} +-_ACEOF +-rm -f conftest.$ac_objext +-if { (ac_try="$ac_compile" +-case "(($ac_try" in +- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; +- *) ac_try_echo=$ac_try;; +-esac +-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 +- (eval "$ac_compile") 2>conftest.er1 +- ac_status=$? +- grep -v '^ *+' conftest.er1 >conftest.err +- rm -f conftest.er1 +- cat conftest.err >&5 +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); } && { +- test -z "$ac_c_werror_flag" || +- test ! -s conftest.err +- } && test -s conftest.$ac_objext; then +- ac_cv_c_altivec="" +- ac_cv_c_altivec_abi="-maltivec -mabi=altivec" +-else +- echo "$as_me: failed program was:" >&5 +-sed 's/^/| /' conftest.$ac_ext >&5 +- +- # Linux/PPC test (gcc 3.3) +- CFLAGS="${CFLAGS_save} -fvec" +- cat >conftest.$ac_ext <<_ACEOF +-/* confdefs.h. */ +-_ACEOF +-cat confdefs.h >>conftest.$ac_ext +-cat >>conftest.$ac_ext <<_ACEOF +-/* end confdefs.h. */ +-#include +-int +-main () +-{ +-vec_ld(0, (unsigned char *)0); +- ; +- return 0; +-} +-_ACEOF +-rm -f conftest.$ac_objext +-if { (ac_try="$ac_compile" +-case "(($ac_try" in +- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; +- *) ac_try_echo=$ac_try;; +-esac +-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 +- (eval "$ac_compile") 2>conftest.er1 +- ac_status=$? +- grep -v '^ *+' conftest.er1 >conftest.err +- rm -f conftest.er1 +- cat conftest.err >&5 +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); } && { +- test -z "$ac_c_werror_flag" || +- test ! -s conftest.err +- } && test -s conftest.$ac_objext; then +- ac_cv_c_altivec="-fvec" +-else +- echo "$as_me: failed program was:" >&5 +-sed 's/^/| /' conftest.$ac_ext >&5 +- +- ac_cv_c_altivec=no +-fi +- +-rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext +- +-fi +- +-rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext +- +-fi +- +-rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext +- +-fi +- +-rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext +- +-fi +- +-rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext +- CFLAGS="${CFLAGS_save}" +- +-fi +-{ echo "$as_me:$LINENO: result: $ac_cv_c_altivec" >&5 +-echo "${ECHO_T}$ac_cv_c_altivec" >&6; } +- +-if test "${ac_cv_c_altivec}" != "no"; then +- CPPFLAGS="${CPPFLAGS_save} ${ac_cv_c_altivec}" +-fi +- +-for ac_header in altivec.h +-do +-as_ac_Header=`echo "ac_cv_header_$ac_header" | $as_tr_sh` +-if { as_var=$as_ac_Header; eval "test \"\${$as_var+set}\" = set"; }; then +- { echo "$as_me:$LINENO: checking for $ac_header" >&5 +-echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6; } +-if { as_var=$as_ac_Header; eval "test \"\${$as_var+set}\" = set"; }; then +- echo $ECHO_N "(cached) $ECHO_C" >&6 +-fi +-ac_res=`eval echo '${'$as_ac_Header'}'` +- { echo "$as_me:$LINENO: result: $ac_res" >&5 +-echo "${ECHO_T}$ac_res" >&6; } +-else +- # Is the header compilable? +-{ echo "$as_me:$LINENO: checking $ac_header usability" >&5 +-echo $ECHO_N "checking $ac_header usability... $ECHO_C" >&6; } +-cat >conftest.$ac_ext <<_ACEOF +-/* confdefs.h. */ +-_ACEOF +-cat confdefs.h >>conftest.$ac_ext +-cat >>conftest.$ac_ext <<_ACEOF +-/* end confdefs.h. */ +-$ac_includes_default +-#include <$ac_header> +-_ACEOF +-rm -f conftest.$ac_objext +-if { (ac_try="$ac_compile" +-case "(($ac_try" in +- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; +- *) ac_try_echo=$ac_try;; +-esac +-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 +- (eval "$ac_compile") 2>conftest.er1 +- ac_status=$? +- grep -v '^ *+' conftest.er1 >conftest.err +- rm -f conftest.er1 +- cat conftest.err >&5 +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); } && { +- test -z "$ac_c_werror_flag" || +- test ! -s conftest.err +- } && test -s conftest.$ac_objext; then +- ac_header_compiler=yes +-else +- echo "$as_me: failed program was:" >&5 +-sed 's/^/| /' conftest.$ac_ext >&5 +- +- ac_header_compiler=no +-fi +- +-rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext +-{ echo "$as_me:$LINENO: result: $ac_header_compiler" >&5 +-echo "${ECHO_T}$ac_header_compiler" >&6; } +- +-# Is the header present? +-{ echo "$as_me:$LINENO: checking $ac_header presence" >&5 +-echo $ECHO_N "checking $ac_header presence... $ECHO_C" >&6; } +-cat >conftest.$ac_ext <<_ACEOF +-/* confdefs.h. */ +-_ACEOF +-cat confdefs.h >>conftest.$ac_ext +-cat >>conftest.$ac_ext <<_ACEOF +-/* end confdefs.h. */ +-#include <$ac_header> +-_ACEOF +-if { (ac_try="$ac_cpp conftest.$ac_ext" +-case "(($ac_try" in +- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; +- *) ac_try_echo=$ac_try;; +-esac +-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 +- (eval "$ac_cpp conftest.$ac_ext") 2>conftest.er1 +- ac_status=$? +- grep -v '^ *+' conftest.er1 >conftest.err +- rm -f conftest.er1 +- cat conftest.err >&5 +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); } >/dev/null && { +- test -z "$ac_c_preproc_warn_flag$ac_c_werror_flag" || +- test ! -s conftest.err +- }; then +- ac_header_preproc=yes +-else +- echo "$as_me: failed program was:" >&5 +-sed 's/^/| /' conftest.$ac_ext >&5 +- +- ac_header_preproc=no +-fi +- +-rm -f conftest.err conftest.$ac_ext +-{ echo "$as_me:$LINENO: result: $ac_header_preproc" >&5 +-echo "${ECHO_T}$ac_header_preproc" >&6; } +- +-# So? What about this header? +-case $ac_header_compiler:$ac_header_preproc:$ac_c_preproc_warn_flag in +- yes:no: ) +- { echo "$as_me:$LINENO: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&5 +-echo "$as_me: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&2;} +- { echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the compiler's result" >&5 +-echo "$as_me: WARNING: $ac_header: proceeding with the compiler's result" >&2;} +- ac_header_preproc=yes +- ;; +- no:yes:* ) +- { echo "$as_me:$LINENO: WARNING: $ac_header: present but cannot be compiled" >&5 +-echo "$as_me: WARNING: $ac_header: present but cannot be compiled" >&2;} +- { echo "$as_me:$LINENO: WARNING: $ac_header: check for missing prerequisite headers?" >&5 +-echo "$as_me: WARNING: $ac_header: check for missing prerequisite headers?" >&2;} +- { echo "$as_me:$LINENO: WARNING: $ac_header: see the Autoconf documentation" >&5 +-echo "$as_me: WARNING: $ac_header: see the Autoconf documentation" >&2;} +- { echo "$as_me:$LINENO: WARNING: $ac_header: section \"Present But Cannot Be Compiled\"" >&5 +-echo "$as_me: WARNING: $ac_header: section \"Present But Cannot Be Compiled\"" >&2;} +- { echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the preprocessor's result" >&5 +-echo "$as_me: WARNING: $ac_header: proceeding with the preprocessor's result" >&2;} +- { echo "$as_me:$LINENO: WARNING: $ac_header: in the future, the compiler will take precedence" >&5 +-echo "$as_me: WARNING: $ac_header: in the future, the compiler will take precedence" >&2;} +- +- ;; +-esac +-{ echo "$as_me:$LINENO: checking for $ac_header" >&5 +-echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6; } +-if { as_var=$as_ac_Header; eval "test \"\${$as_var+set}\" = set"; }; then +- echo $ECHO_N "(cached) $ECHO_C" >&6 +-else +- eval "$as_ac_Header=\$ac_header_preproc" +-fi +-ac_res=`eval echo '${'$as_ac_Header'}'` +- { echo "$as_me:$LINENO: result: $ac_res" >&5 +-echo "${ECHO_T}$ac_res" >&6; } +- +-fi +-if test `eval echo '${'$as_ac_Header'}'` = yes; then +- cat >>confdefs.h <<_ACEOF +-#define `echo "HAVE_$ac_header" | $as_tr_cpp` 1 +-_ACEOF +- +-fi +- +-done +- +-CPPFLAGS="${CPPFLAGS_save}" +- +-if test "${ac_cv_c_altivec}" != "no"; then +- +-cat >>confdefs.h <<\_ACEOF +-#define CAN_COMPILE_C_ALTIVEC 1 +-_ACEOF +- +- +- for element in vlc; do +- eval "CFLAGS_${element}="'"$'"{CFLAGS_${element}} ${ac_cv_c_altivec}"'"' +- am_modules_with_cflags="${am_modules_with_cflags} ${element}" +- done +- +- +- for element in idctaltivec motionaltivec; do +- eval "CFLAGS_${element}="'"$'"{CFLAGS_${element}} ${ac_cv_c_altivec}"'"' +- am_modules_with_cflags="${am_modules_with_cflags} ${element}" +- done +- +- +- for element in i420_yuy2_altivec memcpyaltivec deinterlace; do +- eval "CFLAGS_${element}="'"$'"{CFLAGS_${element}} ${ac_cv_c_altivec} ${ac_cv_c_altivec_abi}"'"' +- am_modules_with_cflags="${am_modules_with_cflags} ${element}" +- done +- +- if test "${ac_cv_altivec_inline}" = "no"; then +- ACCEL_MODULES="${ACCEL_MODULES} ${ALTIVEC_MODULES}" +- fi +-fi +- +-{ echo "$as_me:$LINENO: checking if linker needs -framework vecLib" >&5 +-echo $ECHO_N "checking if linker needs -framework vecLib... $ECHO_C" >&6; } +-if test "${ac_cv_ld_altivec+set}" = set; then +- echo $ECHO_N "(cached) $ECHO_C" >&6 +-else +- LDFLAGS="${LDFLAGS_vlc} -framework vecLib" +- cat >conftest.$ac_ext <<_ACEOF +-/* confdefs.h. */ +-_ACEOF +-cat confdefs.h >>conftest.$ac_ext +-cat >>conftest.$ac_ext <<_ACEOF +-/* end confdefs.h. */ +- +-int +-main () +-{ +- +- ; +- return 0; +-} +-_ACEOF +-rm -f conftest.$ac_objext conftest$ac_exeext +-if { (ac_try="$ac_link" +-case "(($ac_try" in +- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; +- *) ac_try_echo=$ac_try;; +-esac +-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 +- (eval "$ac_link") 2>conftest.er1 +- ac_status=$? +- grep -v '^ *+' conftest.er1 >conftest.err +- rm -f conftest.er1 +- cat conftest.err >&5 +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); } && { +- test -z "$ac_c_werror_flag" || +- test ! -s conftest.err +- } && test -s conftest$ac_exeext && +- $as_test_x conftest$ac_exeext; then +- ac_cv_ld_altivec=yes +-else +- echo "$as_me: failed program was:" >&5 +-sed 's/^/| /' conftest.$ac_ext >&5 +- +- ac_cv_ld_altivec=no +-fi +- +-rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ +- conftest$ac_exeext conftest.$ac_ext +- LDFLAGS="${LDFLAGS_save}" +- +-fi +-{ echo "$as_me:$LINENO: result: $ac_cv_ld_altivec" >&5 +-echo "${ECHO_T}$ac_cv_ld_altivec" >&6; } +-if test "${ac_cv_ld_altivec}" != "no"; then +- +- for element in vlc idctaltivec motionaltivec memcpyaltivec; do +- eval "LDFLAGS_${element}="'"'"-framework vecLib "'$'"{LDFLAGS_${element}} "'"' +- am_modules_with_ldflags="${am_modules_with_ldflags} ${element}" +- done +- +-fi +-fi # end "${SYS}" != "mingw32" -a "${SYS}" != "mingwce" +- +- +-# Check whether --with- was given. +-if test "${with_+set}" = set; then +- withval=$with_; +-fi +- +- +-# Check whether --with- was given. +-if test "${with_+set}" = set; then +- withval=$with_; +-fi +- +- +- +-# Check whether --with-tuning was given. +-if test "${with_tuning+set}" = set; then +- withval=$with_tuning; +-fi +- +-if test -n "${with_tuning}"; then +- if test "${with_tuning}" != "no"; then +- CFLAGS_TUNING="-mtune=${with_tuning}" +- fi +-else +- if test "${SYS}" = "darwin" -a "${target_cpu}" != "powerpc"; then +- CFLAGS_TUNING="-march=pentium-m -mtune=prescott" +- elif test "${target_cpu}" = "i686" -o "${target_cpu}" = "i586" -o "${target_cpu}" = "i486" -o "${target_cpu}" = "i386"; then +- CFLAGS_TUNING="-mtune=pentium2" +- elif test "${target_cpu}" = "x86_64"; then +- CFLAGS_TUNING="-mtune=athlon64" +- elif test "${target_cpu}" = "powerpc"; then +- CFLAGS_TUNING="-mtune=G4"; +- fi +-fi +- +-if test "${CFLAGS_TUNING}"; then +- CFLAGS_save="${CFLAGS}" +- CFLAGS="${CFLAGS} ${CFLAGS_TUNING}" +- +- { echo "$as_me:$LINENO: checking whether $CC accepts ${CFLAGS_TUNING}" >&5 +-echo $ECHO_N "checking whether $CC accepts ${CFLAGS_TUNING}... $ECHO_C" >&6; } +- cat >conftest.$ac_ext <<_ACEOF +- +-_ACEOF +-rm -f conftest.$ac_objext +-if { (ac_try="$ac_compile" +-case "(($ac_try" in +- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; +- *) ac_try_echo=$ac_try;; +-esac +-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 +- (eval "$ac_compile") 2>conftest.er1 +- ac_status=$? +- grep -v '^ *+' conftest.er1 >conftest.err +- rm -f conftest.er1 +- cat conftest.err >&5 +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); } && { +- test -z "$ac_c_werror_flag" || +- test ! -s conftest.err +- } && test -s conftest.$ac_objext; then +- tuning="yes" +-else +- echo "$as_me: failed program was:" >&5 +-sed 's/^/| /' conftest.$ac_ext >&5 +- +- CFLAGS_TUNING=""; tuning="no" +- if test "${with_tuning}"; then +- { { echo "$as_me:$LINENO: error: requested tuning not supported" >&5 +-echo "$as_me: error: requested tuning not supported" >&2;} +- { (exit 1); exit 1; }; } +-fi +- +-fi +- +-rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext +- +- { echo "$as_me:$LINENO: result: $tuning" >&5 +-echo "${ECHO_T}$tuning" >&6; } +- CFLAGS="${CFLAGS_save}" +- +-fi +- +- +-if test "${target_cpu}" = "i686" -o "${target_cpu}" = "i586" -o "${target_cpu}" = "x86" -o "${target_cpu}" = "i386" -o "${target_cpu}" = "x86_64" +-then +- ARCH="${ARCH} mmx" +- +- BUILTINS="${BUILTINS} ${ACCEL_MODULES}" +- +-fi +- +-# Check whether --enable-optimize-memory was given. +-if test "${enable_optimize_memory+set}" = set; then +- enableval=$enable_optimize_memory; +-fi +- +-if test "${enable_optimize_memory}" = "yes"; then +- +-cat >>confdefs.h <<\_ACEOF +-#define OPTIMIZE_MEMORY 1 +-_ACEOF +- +-fi +- +-# Check whether --enable-optimizations was given. +-if test "${enable_optimizations+set}" = set; then +- enableval=$enable_optimizations; +-fi +- +-test "${enable_optimizations}" != "no" && enable_optimizations="yes" +- +-# Check whether --enable-altivec was given. +-if test "${enable_altivec+set}" = set; then +- enableval=$enable_altivec; if test "${enable_altivec}" = "yes"; then ARCH="${ARCH} altivec"; +- +- BUILTINS="${BUILTINS} ${ACCEL_MODULES}" +- fi +-else +- if test "${target_cpu}" = "powerpc"; then ARCH="${ARCH} altivec"; +- +- BUILTINS="${BUILTINS} ${ACCEL_MODULES}" +- fi +-fi +- +- +-# Check whether --enable-debug was given. +-if test "${enable_debug+set}" = set; then +- enableval=$enable_debug; +-fi +- +-test "${enable_debug}" != "yes" && enable_debug="no" +- +- +-if test "x${enable_debug}" = "xno"; then +- cat >>confdefs.h <<\_ACEOF +-#define NDEBUG 1 +-_ACEOF +- +-fi +- +- +-# Check whether --enable-release was given. +-if test "${enable_release+set}" = set; then +- enableval=$enable_release; +-fi +- +-test "${enable_release}" != "yes" && enable_release="no" +- +-# Check whether --enable-shared-libvlc was given. +-if test "${enable_shared_libvlc+set}" = set; then +- enableval=$enable_shared_libvlc; +-fi +- +-if test "${enable_libtool}" != "no" && test "${enable_shared_libvlc}"; then +- +- { { echo "$as_me:$LINENO: error: --enable-shared-libvlc and --enable-libtool are mutually exclusive" >&5 +-echo "$as_me: error: --enable-shared-libvlc and --enable-libtool are mutually exclusive" >&2;} +- { (exit 1); exit 1; }; } +- +-fi +- +- +-# Check whether --enable-sout was given. +-if test "${enable_sout+set}" = set; then +- enableval=$enable_sout; +-fi +- +-if test "${enable_sout}" != "no" +-then +- +- PLUGINS="${PLUGINS} access_output_dummy access_output_udp access_output_file access_output_http" +- +- +- PLUGINS="${PLUGINS} mux_ps mux_avi mux_mp4 mux_asf mux_dummy mux_wav mux_mpjpeg" +- +- +- PLUGINS="${PLUGINS} packetizer_copy" +- +- +- +- PLUGINS="${PLUGINS} stream_out_dummy stream_out_standard stream_out_es stream_out_rtp stream_out_description vod_rtsp" +- +- +- PLUGINS="${PLUGINS} stream_out_duplicate stream_out_gather stream_out_display stream_out_transcode stream_out_bridge stream_out_mosaic_bridge" +- +-# VLC_ADD_PLUGINS([stream_out_transrate]) +- +- +-cat >>confdefs.h <<\_ACEOF +-#define ENABLE_SOUT 1 +-_ACEOF +- +-fi +- +-# Check whether --enable-shout was given. +-if test "${enable_shout+set}" = set; then +- enableval=$enable_shout; +-fi +- +-if test "${enable_shout}" = "yes"; then +- +-pkg_failed=no +-{ echo "$as_me:$LINENO: checking for SHOUT" >&5 +-echo $ECHO_N "checking for SHOUT... $ECHO_C" >&6; } +- +-if test -n "$PKG_CONFIG"; then +- if test -n "$SHOUT_CFLAGS"; then +- pkg_cv_SHOUT_CFLAGS="$SHOUT_CFLAGS" +- else +- if test -n "$PKG_CONFIG" && \ +- { (echo "$as_me:$LINENO: \$PKG_CONFIG --exists --print-errors \"shout >= 2.1\"") >&5 +- ($PKG_CONFIG --exists --print-errors "shout >= 2.1") 2>&5 +- ac_status=$? +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); }; then +- pkg_cv_SHOUT_CFLAGS=`$PKG_CONFIG --cflags "shout >= 2.1" 2>/dev/null` +-else +- pkg_failed=yes +-fi +- fi +-else +- pkg_failed=untried +-fi +-if test -n "$PKG_CONFIG"; then +- if test -n "$SHOUT_LIBS"; then +- pkg_cv_SHOUT_LIBS="$SHOUT_LIBS" +- else +- if test -n "$PKG_CONFIG" && \ +- { (echo "$as_me:$LINENO: \$PKG_CONFIG --exists --print-errors \"shout >= 2.1\"") >&5 +- ($PKG_CONFIG --exists --print-errors "shout >= 2.1") 2>&5 +- ac_status=$? +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); }; then +- pkg_cv_SHOUT_LIBS=`$PKG_CONFIG --libs "shout >= 2.1" 2>/dev/null` +-else +- pkg_failed=yes +-fi +- fi +-else +- pkg_failed=untried +-fi +- +- +- +-if test $pkg_failed = yes; then +- +-if $PKG_CONFIG --atleast-pkgconfig-version 0.20; then +- _pkg_short_errors_supported=yes +-else +- _pkg_short_errors_supported=no +-fi +- if test $_pkg_short_errors_supported = yes; then +- SHOUT_PKG_ERRORS=`$PKG_CONFIG --short-errors --errors-to-stdout --print-errors "shout >= 2.1"` +- else +- SHOUT_PKG_ERRORS=`$PKG_CONFIG --errors-to-stdout --print-errors "shout >= 2.1"` +- fi +- # Put the nasty error message in config.log where it belongs +- echo "$SHOUT_PKG_ERRORS" >&5 +- +- { echo "$as_me:$LINENO: result: no" >&5 +-echo "${ECHO_T}no" >&6; } +- { echo "$as_me:$LINENO: WARNING: libshout library not found" >&5 +-echo "$as_me: WARNING: libshout library not found" >&2;} +-elif test $pkg_failed = untried; then +- { echo "$as_me:$LINENO: WARNING: libshout library not found" >&5 +-echo "$as_me: WARNING: libshout library not found" >&2;} +-else +- SHOUT_CFLAGS=$pkg_cv_SHOUT_CFLAGS +- SHOUT_LIBS=$pkg_cv_SHOUT_LIBS +- { echo "$as_me:$LINENO: result: yes" >&5 +-echo "${ECHO_T}yes" >&6; } +- +-cat >>confdefs.h <<\_ACEOF +-#define HAVE_SHOUT +-_ACEOF +- +- +- PLUGINS="${PLUGINS} access_output_shout" +- +- +- for element in access_output_shout; do +- eval "LDFLAGS_${element}="'"'"$SHOUT_LIBS "'$'"{LDFLAGS_${element}} "'"' +- am_modules_with_ldflags="${am_modules_with_ldflags} ${element}" +- done +- +- +- for element in access_output_shout; do +- eval "CFLAGS_${element}="'"$'"{CFLAGS_${element}} $SHOUT_CFLAGS"'"' +- am_modules_with_cflags="${am_modules_with_cflags} ${element}" +- done +- +-fi +-fi +- +-# Check whether --enable-httpd was given. +-if test "${enable_httpd+set}" = set; then +- enableval=$enable_httpd; +-fi +- +-if test "${enable_httpd}" != "no" +-then +- +- PLUGINS="${PLUGINS} http" +- +- +-cat >>confdefs.h <<\_ACEOF +-#define ENABLE_HTTPD 1 +-_ACEOF +- +-fi +- +-# Check whether --enable-vlm was given. +-if test "${enable_vlm+set}" = set; then +- enableval=$enable_vlm; +-fi +- +-if test "${enable_vlm}" != "no" +-then +- +-cat >>confdefs.h <<\_ACEOF +-#define ENABLE_VLM 1 +-_ACEOF +- +-fi +- +-# Check whether --enable-growl was given. +-if test "${enable_growl+set}" = set; then +- enableval=$enable_growl; +-fi +- +-if test "${enable_growl}" != "no"; then +- +- +- PLUGINS="${PLUGINS} growl" +- +- +- +-fi +- +- +- +-# Check whether --enable-notify was given. +-if test "${enable_notify+set}" = set; then +- enableval=$enable_notify; +-fi +- +-if test "${enable_notify}" != "no" -a "${SYS}" != "mingw32"; then +- +- +-pkg_failed=no +-{ echo "$as_me:$LINENO: checking for NOTIFY" >&5 +-echo $ECHO_N "checking for NOTIFY... $ECHO_C" >&6; } +- +-if test -n "$PKG_CONFIG"; then +- if test -n "$NOTIFY_CFLAGS"; then +- pkg_cv_NOTIFY_CFLAGS="$NOTIFY_CFLAGS" +- else +- if test -n "$PKG_CONFIG" && \ +- { (echo "$as_me:$LINENO: \$PKG_CONFIG --exists --print-errors \"libnotify\"") >&5 +- ($PKG_CONFIG --exists --print-errors "libnotify") 2>&5 +- ac_status=$? +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); }; then +- pkg_cv_NOTIFY_CFLAGS=`$PKG_CONFIG --cflags "libnotify" 2>/dev/null` +-else +- pkg_failed=yes +-fi +- fi +-else +- pkg_failed=untried +-fi +-if test -n "$PKG_CONFIG"; then +- if test -n "$NOTIFY_LIBS"; then +- pkg_cv_NOTIFY_LIBS="$NOTIFY_LIBS" +- else +- if test -n "$PKG_CONFIG" && \ +- { (echo "$as_me:$LINENO: \$PKG_CONFIG --exists --print-errors \"libnotify\"") >&5 +- ($PKG_CONFIG --exists --print-errors "libnotify") 2>&5 +- ac_status=$? +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); }; then +- pkg_cv_NOTIFY_LIBS=`$PKG_CONFIG --libs "libnotify" 2>/dev/null` +-else +- pkg_failed=yes +-fi +- fi +-else +- pkg_failed=untried +-fi +- +- +- +-if test $pkg_failed = yes; then +- +-if $PKG_CONFIG --atleast-pkgconfig-version 0.20; then +- _pkg_short_errors_supported=yes +-else +- _pkg_short_errors_supported=no +-fi +- if test $_pkg_short_errors_supported = yes; then +- NOTIFY_PKG_ERRORS=`$PKG_CONFIG --short-errors --errors-to-stdout --print-errors "libnotify"` +- else +- NOTIFY_PKG_ERRORS=`$PKG_CONFIG --errors-to-stdout --print-errors "libnotify"` +- fi +- # Put the nasty error message in config.log where it belongs +- echo "$NOTIFY_PKG_ERRORS" >&5 +- +- { echo "$as_me:$LINENO: result: no" >&5 +-echo "${ECHO_T}no" >&6; } +- +- if test "${enable_notify}" = "yes"; then +- +- { echo "$as_me:$LINENO: WARNING: libnotify not found" >&5 +-echo "$as_me: WARNING: libnotify not found" >&2;} +-fi +- +- +-elif test $pkg_failed = untried; then +- +- if test "${enable_notify}" = "yes"; then +- +- { echo "$as_me:$LINENO: WARNING: libnotify not found" >&5 +-echo "$as_me: WARNING: libnotify not found" >&2;} +-fi +- +- +-else +- NOTIFY_CFLAGS=$pkg_cv_NOTIFY_CFLAGS +- NOTIFY_LIBS=$pkg_cv_NOTIFY_LIBS +- { echo "$as_me:$LINENO: result: yes" >&5 +-echo "${ECHO_T}yes" >&6; } +- +- +- PLUGINS="${PLUGINS} notify" +- +- +- for element in notify; do +- eval "CFLAGS_${element}="'"$'"{CFLAGS_${element}} $NOTIFY_CFLAGS"'"' +- am_modules_with_cflags="${am_modules_with_cflags} ${element}" +- done +- +- +- for element in notify; do +- eval "LDFLAGS_${element}="'"'"$NOTIFY_LIBS "'$'"{LDFLAGS_${element}} "'"' +- am_modules_with_ldflags="${am_modules_with_ldflags} ${element}" +- done +- +- +-fi +- +-fi +- +- +- +- +- +- +- +-# Check whether --with- was given. +-if test "${with_+set}" = set; then +- withval=$with_; +-fi +- +- +-if test "${enable_livedotcom}" +-then +- { echo "$as_me:$LINENO: WARNING: --{en|dis}able-livedotcom is deprecated. Use --{en|dis}able-live555 instead." >&5 +-echo "$as_me: WARNING: --{en|dis}able-livedotcom is deprecated. Use --{en|dis}able-live555 instead." >&2;} +-fi +- +-if test "${enable_livedotcom}" = "yes" +-then +- enable_live555="yes" +-fi +-# Check whether --enable-live555 was given. +-if test "${enable_live555+set}" = set; then +- enableval=$enable_live555; +-fi +- +-if test "${enable_live555}" = "yes"; then +- +-# Check whether --with-live555-tree was given. +-if test "${with_live555_tree+set}" = set; then +- withval=$with_live555_tree; +-fi +- +- +- if test "${with_livedotcom_tree}" +- then +- { echo "$as_me:$LINENO: WARNING: --with-livedotcom-tree is deprecated. Use --with-live555-tree instead." >&5 +-echo "$as_me: WARNING: --with-livedotcom-tree is deprecated. Use --with-live555-tree instead." >&2;} +- with_live555_tree="${with_livedotcom_tree}" +- fi +- +- if test -z "${with_live555_tree}" -a "${CXX}" != ""; then +- ac_ext=cpp +-ac_cpp='$CXXCPP $CPPFLAGS' +-ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' +-ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' +-ac_compiler_gnu=$ac_cv_cxx_compiler_gnu +- +- CPPFLAGS_save="${CPPFLAGS}" +- CPPFLAGS_live555="-I/usr/include/liveMedia -I/usr/include/groupsock -I/usr/include/BasicUsageEnvironment -I/usr/include/UsageEnvironment" +- if test "${SYS}" = "solaris"; then +- CPPFLAGS_live555="${CPPFLAGS_live555} -DSOLARIS" +- fi +- CPPFLAGS="${CPPFLAGS} ${CPPFLAGS_live555}" +- +- +-for ac_header in liveMedia.hh +-do +-as_ac_Header=`echo "ac_cv_header_$ac_header" | $as_tr_sh` +-if { as_var=$as_ac_Header; eval "test \"\${$as_var+set}\" = set"; }; then +- { echo "$as_me:$LINENO: checking for $ac_header" >&5 +-echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6; } +-if { as_var=$as_ac_Header; eval "test \"\${$as_var+set}\" = set"; }; then +- echo $ECHO_N "(cached) $ECHO_C" >&6 +-fi +-ac_res=`eval echo '${'$as_ac_Header'}'` +- { echo "$as_me:$LINENO: result: $ac_res" >&5 +-echo "${ECHO_T}$ac_res" >&6; } +-else +- # Is the header compilable? +-{ echo "$as_me:$LINENO: checking $ac_header usability" >&5 +-echo $ECHO_N "checking $ac_header usability... $ECHO_C" >&6; } +-cat >conftest.$ac_ext <<_ACEOF +-/* confdefs.h. */ +-_ACEOF +-cat confdefs.h >>conftest.$ac_ext +-cat >>conftest.$ac_ext <<_ACEOF +-/* end confdefs.h. */ +-$ac_includes_default +-#include <$ac_header> +-_ACEOF +-rm -f conftest.$ac_objext +-if { (ac_try="$ac_compile" +-case "(($ac_try" in +- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; +- *) ac_try_echo=$ac_try;; +-esac +-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 +- (eval "$ac_compile") 2>conftest.er1 +- ac_status=$? +- grep -v '^ *+' conftest.er1 >conftest.err +- rm -f conftest.er1 +- cat conftest.err >&5 +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); } && { +- test -z "$ac_cxx_werror_flag" || +- test ! -s conftest.err +- } && test -s conftest.$ac_objext; then +- ac_header_compiler=yes +-else +- echo "$as_me: failed program was:" >&5 +-sed 's/^/| /' conftest.$ac_ext >&5 +- +- ac_header_compiler=no +-fi +- +-rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext +-{ echo "$as_me:$LINENO: result: $ac_header_compiler" >&5 +-echo "${ECHO_T}$ac_header_compiler" >&6; } +- +-# Is the header present? +-{ echo "$as_me:$LINENO: checking $ac_header presence" >&5 +-echo $ECHO_N "checking $ac_header presence... $ECHO_C" >&6; } +-cat >conftest.$ac_ext <<_ACEOF +-/* confdefs.h. */ +-_ACEOF +-cat confdefs.h >>conftest.$ac_ext +-cat >>conftest.$ac_ext <<_ACEOF +-/* end confdefs.h. */ +-#include <$ac_header> +-_ACEOF +-if { (ac_try="$ac_cpp conftest.$ac_ext" +-case "(($ac_try" in +- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; +- *) ac_try_echo=$ac_try;; +-esac +-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 +- (eval "$ac_cpp conftest.$ac_ext") 2>conftest.er1 +- ac_status=$? +- grep -v '^ *+' conftest.er1 >conftest.err +- rm -f conftest.er1 +- cat conftest.err >&5 +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); } >/dev/null && { +- test -z "$ac_cxx_preproc_warn_flag$ac_cxx_werror_flag" || +- test ! -s conftest.err +- }; then +- ac_header_preproc=yes +-else +- echo "$as_me: failed program was:" >&5 +-sed 's/^/| /' conftest.$ac_ext >&5 +- +- ac_header_preproc=no +-fi +- +-rm -f conftest.err conftest.$ac_ext +-{ echo "$as_me:$LINENO: result: $ac_header_preproc" >&5 +-echo "${ECHO_T}$ac_header_preproc" >&6; } +- +-# So? What about this header? +-case $ac_header_compiler:$ac_header_preproc:$ac_cxx_preproc_warn_flag in +- yes:no: ) +- { echo "$as_me:$LINENO: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&5 +-echo "$as_me: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&2;} +- { echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the compiler's result" >&5 +-echo "$as_me: WARNING: $ac_header: proceeding with the compiler's result" >&2;} +- ac_header_preproc=yes +- ;; +- no:yes:* ) +- { echo "$as_me:$LINENO: WARNING: $ac_header: present but cannot be compiled" >&5 +-echo "$as_me: WARNING: $ac_header: present but cannot be compiled" >&2;} +- { echo "$as_me:$LINENO: WARNING: $ac_header: check for missing prerequisite headers?" >&5 +-echo "$as_me: WARNING: $ac_header: check for missing prerequisite headers?" >&2;} +- { echo "$as_me:$LINENO: WARNING: $ac_header: see the Autoconf documentation" >&5 +-echo "$as_me: WARNING: $ac_header: see the Autoconf documentation" >&2;} +- { echo "$as_me:$LINENO: WARNING: $ac_header: section \"Present But Cannot Be Compiled\"" >&5 +-echo "$as_me: WARNING: $ac_header: section \"Present But Cannot Be Compiled\"" >&2;} +- { echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the preprocessor's result" >&5 +-echo "$as_me: WARNING: $ac_header: proceeding with the preprocessor's result" >&2;} +- { echo "$as_me:$LINENO: WARNING: $ac_header: in the future, the compiler will take precedence" >&5 +-echo "$as_me: WARNING: $ac_header: in the future, the compiler will take precedence" >&2;} +- +- ;; +-esac +-{ echo "$as_me:$LINENO: checking for $ac_header" >&5 +-echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6; } +-if { as_var=$as_ac_Header; eval "test \"\${$as_var+set}\" = set"; }; then +- echo $ECHO_N "(cached) $ECHO_C" >&6 +-else +- eval "$as_ac_Header=\$ac_header_preproc" +-fi +-ac_res=`eval echo '${'$as_ac_Header'}'` +- { echo "$as_me:$LINENO: result: $ac_res" >&5 +-echo "${ECHO_T}$ac_res" >&6; } +- +-fi +-if test `eval echo '${'$as_ac_Header'}'` = yes; then +- cat >>confdefs.h <<_ACEOF +-#define `echo "HAVE_$ac_header" | $as_tr_cpp` 1 +-_ACEOF +- +- +- for element in live555; do +- eval "CXXFLAGS_${element}="'"$'"{CXXFLAGS_${element}} ${CPPFLAGS_live555}"'"' +- am_modules_with_cxxflags="${am_modules_with_cxxflags} ${element}" +- done +- +- { echo "$as_me:$LINENO: checking for main in -lliveMedia_pic" >&5 +-echo $ECHO_N "checking for main in -lliveMedia_pic... $ECHO_C" >&6; } +-if test "${ac_cv_lib_liveMedia_pic_main+set}" = set; then +- echo $ECHO_N "(cached) $ECHO_C" >&6 +-else +- ac_check_lib_save_LIBS=$LIBS +-LIBS="-lliveMedia_pic $LIBS" +-cat >conftest.$ac_ext <<_ACEOF +-/* confdefs.h. */ +-_ACEOF +-cat confdefs.h >>conftest.$ac_ext +-cat >>conftest.$ac_ext <<_ACEOF +-/* end confdefs.h. */ +- +- +-int +-main () +-{ +-return main (); +- ; +- return 0; +-} +-_ACEOF +-rm -f conftest.$ac_objext conftest$ac_exeext +-if { (ac_try="$ac_link" +-case "(($ac_try" in +- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; +- *) ac_try_echo=$ac_try;; +-esac +-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 +- (eval "$ac_link") 2>conftest.er1 +- ac_status=$? +- grep -v '^ *+' conftest.er1 >conftest.err +- rm -f conftest.er1 +- cat conftest.err >&5 +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); } && { +- test -z "$ac_cxx_werror_flag" || +- test ! -s conftest.err +- } && test -s conftest$ac_exeext && +- $as_test_x conftest$ac_exeext; then +- ac_cv_lib_liveMedia_pic_main=yes +-else +- echo "$as_me: failed program was:" >&5 +-sed 's/^/| /' conftest.$ac_ext >&5 +- +- ac_cv_lib_liveMedia_pic_main=no +-fi +- +-rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ +- conftest$ac_exeext conftest.$ac_ext +-LIBS=$ac_check_lib_save_LIBS +-fi +-{ echo "$as_me:$LINENO: result: $ac_cv_lib_liveMedia_pic_main" >&5 +-echo "${ECHO_T}$ac_cv_lib_liveMedia_pic_main" >&6; } +-if test $ac_cv_lib_liveMedia_pic_main = yes; then +- +- # We have -lliveMedia_pic, build plugins +- +- PLUGINS="${PLUGINS} live555" +- +- +- for element in live555; do +- eval "LDFLAGS_${element}="'"'"-lliveMedia_pic -lgroupsock_pic -lBasicUsageEnvironment_pic -lUsageEnvironment_pic "'$'"{LDFLAGS_${element}} "'"' +- am_modules_with_ldflags="${am_modules_with_ldflags} ${element}" +- done +- +- +-else +- +- { echo "$as_me:$LINENO: checking for main in -lliveMedia" >&5 +-echo $ECHO_N "checking for main in -lliveMedia... $ECHO_C" >&6; } +-if test "${ac_cv_lib_liveMedia_main+set}" = set; then +- echo $ECHO_N "(cached) $ECHO_C" >&6 +-else +- ac_check_lib_save_LIBS=$LIBS +-LIBS="-lliveMedia $LIBS" +-cat >conftest.$ac_ext <<_ACEOF +-/* confdefs.h. */ +-_ACEOF +-cat confdefs.h >>conftest.$ac_ext +-cat >>conftest.$ac_ext <<_ACEOF +-/* end confdefs.h. */ +- +- +-int +-main () +-{ +-return main (); +- ; +- return 0; +-} +-_ACEOF +-rm -f conftest.$ac_objext conftest$ac_exeext +-if { (ac_try="$ac_link" +-case "(($ac_try" in +- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; +- *) ac_try_echo=$ac_try;; +-esac +-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 +- (eval "$ac_link") 2>conftest.er1 +- ac_status=$? +- grep -v '^ *+' conftest.er1 >conftest.err +- rm -f conftest.er1 +- cat conftest.err >&5 +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); } && { +- test -z "$ac_cxx_werror_flag" || +- test ! -s conftest.err +- } && test -s conftest$ac_exeext && +- $as_test_x conftest$ac_exeext; then +- ac_cv_lib_liveMedia_main=yes +-else +- echo "$as_me: failed program was:" >&5 +-sed 's/^/| /' conftest.$ac_ext >&5 +- +- ac_cv_lib_liveMedia_main=no +-fi +- +-rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ +- conftest$ac_exeext conftest.$ac_ext +-LIBS=$ac_check_lib_save_LIBS +-fi +-{ echo "$as_me:$LINENO: result: $ac_cv_lib_liveMedia_main" >&5 +-echo "${ECHO_T}$ac_cv_lib_liveMedia_main" >&6; } +-if test $ac_cv_lib_liveMedia_main = yes; then +- +- # We only have -lliveMedia, do builtins +- +- BUILTINS="${BUILTINS} live555" +- +- +- for element in live555; do +- eval "LDFLAGS_${element}="'"'"-lliveMedia -lgroupsock -lBasicUsageEnvironment -lUsageEnvironment "'$'"{LDFLAGS_${element}} "'"' +- am_modules_with_ldflags="${am_modules_with_ldflags} ${element}" +- done +- +- +-fi +- +- +-fi +- +- if test "${SYS}" = "mingw32"; then +- # add ws2_32 for closesocket, select, recv +- +- for element in live555; do +- eval "LDFLAGS_${element}="'"'"-lws2_32 "'$'"{LDFLAGS_${element}} "'"' +- am_modules_with_ldflags="${am_modules_with_ldflags} ${element}" +- done +- +- fi +- +-fi +- +-done +- +- CPPFLAGS="${CPPFLAGS_save}" +- ac_ext=c +-ac_cpp='$CPP $CPPFLAGS' +-ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' +-ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' +-ac_compiler_gnu=$ac_cv_c_compiler_gnu +- +- else +- { echo "$as_me:$LINENO: checking for liveMedia/libliveMedia.a in ${with_live555_tree}" >&5 +-echo $ECHO_N "checking for liveMedia/libliveMedia.a in ${with_live555_tree}... $ECHO_C" >&6; } +- real_live555_tree="`cd ${with_live555_tree} 2>/dev/null && pwd`" +- if test -z "${real_live555_tree}"; then +- { echo "$as_me:$LINENO: result: no" >&5 +-echo "${ECHO_T}no" >&6; } +- { { echo "$as_me:$LINENO: error: cannot cd to ${with_live555_tree}" >&5 +-echo "$as_me: error: cannot cd to ${with_live555_tree}" >&2;} +- { (exit 1); exit 1; }; } +- fi +- if test -f "${real_live555_tree}/liveMedia/libliveMedia.a"; then +- { echo "$as_me:$LINENO: result: ${real_live555_tree}/liveMedia/libliveMedia.a" >&5 +-echo "${ECHO_T}${real_live555_tree}/liveMedia/libliveMedia.a" >&6; } +- +- +- BUILTINS="${BUILTINS} live555" +- +- +- if test "${SYS}" = "mingw32"; then +- # add ws2_32 for closesocket, select, recv +- +- for element in live555; do +- eval "LDFLAGS_${element}="'"'"-lws2_32 "'$'"{LDFLAGS_${element}} "'"' +- am_modules_with_ldflags="${am_modules_with_ldflags} ${element}" +- done +- +- fi +- +- +- for element in live555; do +- eval "LDFLAGS_${element}="'"'"-L${real_live555_tree}/liveMedia -lliveMedia "'$'"{LDFLAGS_${element}} "'"' +- am_modules_with_ldflags="${am_modules_with_ldflags} ${element}" +- done +- +- +- for element in live555; do +- eval "LDFLAGS_${element}="'"'"-L${real_live555_tree}/BasicUsageEnvironment -lBasicUsageEnvironment "'$'"{LDFLAGS_${element}} "'"' +- am_modules_with_ldflags="${am_modules_with_ldflags} ${element}" +- done +- +- +- for element in live555; do +- eval "LDFLAGS_${element}="'"'"-L${real_live555_tree}/groupsock -lgroupsock "'$'"{LDFLAGS_${element}} "'"' +- am_modules_with_ldflags="${am_modules_with_ldflags} ${element}" +- done +- +- +- for element in live555; do +- eval "LDFLAGS_${element}="'"'"-L${real_live555_tree}/UsageEnvironment -lUsageEnvironment "'$'"{LDFLAGS_${element}} "'"' +- am_modules_with_ldflags="${am_modules_with_ldflags} ${element}" +- done +- +- +- +- for element in live555; do +- eval "CXXFLAGS_${element}="'"$'"{CXXFLAGS_${element}} -I${real_live555_tree}/BasicUsageEnvironment/include"'"' +- am_modules_with_cxxflags="${am_modules_with_cxxflags} ${element}" +- done +- +- +- for element in live555; do +- eval "CXXFLAGS_${element}="'"$'"{CXXFLAGS_${element}} -I${real_live555_tree}/groupsock/include"'"' +- am_modules_with_cxxflags="${am_modules_with_cxxflags} ${element}" +- done +- +- +- for element in live555; do +- eval "CXXFLAGS_${element}="'"$'"{CXXFLAGS_${element}} -I${real_live555_tree}/liveMedia/include"'"' +- am_modules_with_cxxflags="${am_modules_with_cxxflags} ${element}" +- done +- +- +- for element in live555; do +- eval "CXXFLAGS_${element}="'"$'"{CXXFLAGS_${element}} -I${real_live555_tree}/UsageEnvironment/include "'"' +- am_modules_with_cxxflags="${am_modules_with_cxxflags} ${element}" +- done +- +- if test "${SYS}" = "solaris"; then +- +- for element in live555; do +- eval "CXXFLAGS_${element}="'"$'"{CXXFLAGS_${element}} -DSOLARIS"'"' +- am_modules_with_cxxflags="${am_modules_with_cxxflags} ${element}" +- done +- +- fi +- else +- { echo "$as_me:$LINENO: result: no" >&5 +-echo "${ECHO_T}no" >&6; } +- { { echo "$as_me:$LINENO: error: cannot find ${real_live555_tree}/liveMedia/libliveMedia.a, make sure you compiled live555 in ${with_live555_tree}" >&5 +-echo "$as_me: error: cannot find ${real_live555_tree}/liveMedia/libliveMedia.a, make sure you compiled live555 in ${with_live555_tree}" >&2;} +- { (exit 1); exit 1; }; } +- fi +- fi +-fi +- +-# Check whether --enable-dc1394 was given. +-if test "${enable_dc1394+set}" = set; then +- enableval=$enable_dc1394; +-fi +- +-if test "${enable_dc1394}" = "yes" +-then +- +-for ac_header in libraw1394/raw1394.h +-do +-as_ac_Header=`echo "ac_cv_header_$ac_header" | $as_tr_sh` +-if { as_var=$as_ac_Header; eval "test \"\${$as_var+set}\" = set"; }; then +- { echo "$as_me:$LINENO: checking for $ac_header" >&5 +-echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6; } +-if { as_var=$as_ac_Header; eval "test \"\${$as_var+set}\" = set"; }; then +- echo $ECHO_N "(cached) $ECHO_C" >&6 +-fi +-ac_res=`eval echo '${'$as_ac_Header'}'` +- { echo "$as_me:$LINENO: result: $ac_res" >&5 +-echo "${ECHO_T}$ac_res" >&6; } +-else +- # Is the header compilable? +-{ echo "$as_me:$LINENO: checking $ac_header usability" >&5 +-echo $ECHO_N "checking $ac_header usability... $ECHO_C" >&6; } +-cat >conftest.$ac_ext <<_ACEOF +-/* confdefs.h. */ +-_ACEOF +-cat confdefs.h >>conftest.$ac_ext +-cat >>conftest.$ac_ext <<_ACEOF +-/* end confdefs.h. */ +-$ac_includes_default +-#include <$ac_header> +-_ACEOF +-rm -f conftest.$ac_objext +-if { (ac_try="$ac_compile" +-case "(($ac_try" in +- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; +- *) ac_try_echo=$ac_try;; +-esac +-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 +- (eval "$ac_compile") 2>conftest.er1 +- ac_status=$? +- grep -v '^ *+' conftest.er1 >conftest.err +- rm -f conftest.er1 +- cat conftest.err >&5 +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); } && { +- test -z "$ac_c_werror_flag" || +- test ! -s conftest.err +- } && test -s conftest.$ac_objext; then +- ac_header_compiler=yes +-else +- echo "$as_me: failed program was:" >&5 +-sed 's/^/| /' conftest.$ac_ext >&5 +- +- ac_header_compiler=no +-fi +- +-rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext +-{ echo "$as_me:$LINENO: result: $ac_header_compiler" >&5 +-echo "${ECHO_T}$ac_header_compiler" >&6; } +- +-# Is the header present? +-{ echo "$as_me:$LINENO: checking $ac_header presence" >&5 +-echo $ECHO_N "checking $ac_header presence... $ECHO_C" >&6; } +-cat >conftest.$ac_ext <<_ACEOF +-/* confdefs.h. */ +-_ACEOF +-cat confdefs.h >>conftest.$ac_ext +-cat >>conftest.$ac_ext <<_ACEOF +-/* end confdefs.h. */ +-#include <$ac_header> +-_ACEOF +-if { (ac_try="$ac_cpp conftest.$ac_ext" +-case "(($ac_try" in +- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; +- *) ac_try_echo=$ac_try;; +-esac +-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 +- (eval "$ac_cpp conftest.$ac_ext") 2>conftest.er1 +- ac_status=$? +- grep -v '^ *+' conftest.er1 >conftest.err +- rm -f conftest.er1 +- cat conftest.err >&5 +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); } >/dev/null && { +- test -z "$ac_c_preproc_warn_flag$ac_c_werror_flag" || +- test ! -s conftest.err +- }; then +- ac_header_preproc=yes +-else +- echo "$as_me: failed program was:" >&5 +-sed 's/^/| /' conftest.$ac_ext >&5 +- +- ac_header_preproc=no +-fi +- +-rm -f conftest.err conftest.$ac_ext +-{ echo "$as_me:$LINENO: result: $ac_header_preproc" >&5 +-echo "${ECHO_T}$ac_header_preproc" >&6; } +- +-# So? What about this header? +-case $ac_header_compiler:$ac_header_preproc:$ac_c_preproc_warn_flag in +- yes:no: ) +- { echo "$as_me:$LINENO: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&5 +-echo "$as_me: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&2;} +- { echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the compiler's result" >&5 +-echo "$as_me: WARNING: $ac_header: proceeding with the compiler's result" >&2;} +- ac_header_preproc=yes +- ;; +- no:yes:* ) +- { echo "$as_me:$LINENO: WARNING: $ac_header: present but cannot be compiled" >&5 +-echo "$as_me: WARNING: $ac_header: present but cannot be compiled" >&2;} +- { echo "$as_me:$LINENO: WARNING: $ac_header: check for missing prerequisite headers?" >&5 +-echo "$as_me: WARNING: $ac_header: check for missing prerequisite headers?" >&2;} +- { echo "$as_me:$LINENO: WARNING: $ac_header: see the Autoconf documentation" >&5 +-echo "$as_me: WARNING: $ac_header: see the Autoconf documentation" >&2;} +- { echo "$as_me:$LINENO: WARNING: $ac_header: section \"Present But Cannot Be Compiled\"" >&5 +-echo "$as_me: WARNING: $ac_header: section \"Present But Cannot Be Compiled\"" >&2;} +- { echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the preprocessor's result" >&5 +-echo "$as_me: WARNING: $ac_header: proceeding with the preprocessor's result" >&2;} +- { echo "$as_me:$LINENO: WARNING: $ac_header: in the future, the compiler will take precedence" >&5 +-echo "$as_me: WARNING: $ac_header: in the future, the compiler will take precedence" >&2;} +- +- ;; +-esac +-{ echo "$as_me:$LINENO: checking for $ac_header" >&5 +-echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6; } +-if { as_var=$as_ac_Header; eval "test \"\${$as_var+set}\" = set"; }; then +- echo $ECHO_N "(cached) $ECHO_C" >&6 +-else +- eval "$as_ac_Header=\$ac_header_preproc" +-fi +-ac_res=`eval echo '${'$as_ac_Header'}'` +- { echo "$as_me:$LINENO: result: $ac_res" >&5 +-echo "${ECHO_T}$ac_res" >&6; } +- +-fi +-if test `eval echo '${'$as_ac_Header'}'` = yes; then +- cat >>confdefs.h <<_ACEOF +-#define `echo "HAVE_$ac_header" | $as_tr_cpp` 1 +-_ACEOF +- +- { echo "$as_me:$LINENO: checking for raw1394_get_nodecount in -lraw1394" >&5 +-echo $ECHO_N "checking for raw1394_get_nodecount in -lraw1394... $ECHO_C" >&6; } +-if test "${ac_cv_lib_raw1394_raw1394_get_nodecount+set}" = set; then +- echo $ECHO_N "(cached) $ECHO_C" >&6 +-else +- ac_check_lib_save_LIBS=$LIBS +-LIBS="-lraw1394 $LIBS" +-cat >conftest.$ac_ext <<_ACEOF +-/* confdefs.h. */ +-_ACEOF +-cat confdefs.h >>conftest.$ac_ext +-cat >>conftest.$ac_ext <<_ACEOF +-/* end confdefs.h. */ +- +-/* Override any GCC internal prototype to avoid an error. +- Use char because int might match the return type of a GCC +- builtin and then its argument prototype would still apply. */ +-#ifdef __cplusplus +-extern "C" +-#endif +-char raw1394_get_nodecount (); +-int +-main () +-{ +-return raw1394_get_nodecount (); +- ; +- return 0; +-} +-_ACEOF +-rm -f conftest.$ac_objext conftest$ac_exeext +-if { (ac_try="$ac_link" +-case "(($ac_try" in +- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; +- *) ac_try_echo=$ac_try;; +-esac +-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 +- (eval "$ac_link") 2>conftest.er1 +- ac_status=$? +- grep -v '^ *+' conftest.er1 >conftest.err +- rm -f conftest.er1 +- cat conftest.err >&5 +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); } && { +- test -z "$ac_c_werror_flag" || +- test ! -s conftest.err +- } && test -s conftest$ac_exeext && +- $as_test_x conftest$ac_exeext; then +- ac_cv_lib_raw1394_raw1394_get_nodecount=yes +-else +- echo "$as_me: failed program was:" >&5 +-sed 's/^/| /' conftest.$ac_ext >&5 +- +- ac_cv_lib_raw1394_raw1394_get_nodecount=no +-fi +- +-rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ +- conftest$ac_exeext conftest.$ac_ext +-LIBS=$ac_check_lib_save_LIBS +-fi +-{ echo "$as_me:$LINENO: result: $ac_cv_lib_raw1394_raw1394_get_nodecount" >&5 +-echo "${ECHO_T}$ac_cv_lib_raw1394_raw1394_get_nodecount" >&6; } +-if test $ac_cv_lib_raw1394_raw1394_get_nodecount = yes; then +- +- +-for ac_header in libdc1394/dc1394_control.h +-do +-as_ac_Header=`echo "ac_cv_header_$ac_header" | $as_tr_sh` +-if { as_var=$as_ac_Header; eval "test \"\${$as_var+set}\" = set"; }; then +- { echo "$as_me:$LINENO: checking for $ac_header" >&5 +-echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6; } +-if { as_var=$as_ac_Header; eval "test \"\${$as_var+set}\" = set"; }; then +- echo $ECHO_N "(cached) $ECHO_C" >&6 +-fi +-ac_res=`eval echo '${'$as_ac_Header'}'` +- { echo "$as_me:$LINENO: result: $ac_res" >&5 +-echo "${ECHO_T}$ac_res" >&6; } +-else +- # Is the header compilable? +-{ echo "$as_me:$LINENO: checking $ac_header usability" >&5 +-echo $ECHO_N "checking $ac_header usability... $ECHO_C" >&6; } +-cat >conftest.$ac_ext <<_ACEOF +-/* confdefs.h. */ +-_ACEOF +-cat confdefs.h >>conftest.$ac_ext +-cat >>conftest.$ac_ext <<_ACEOF +-/* end confdefs.h. */ +-$ac_includes_default +-#include <$ac_header> +-_ACEOF +-rm -f conftest.$ac_objext +-if { (ac_try="$ac_compile" +-case "(($ac_try" in +- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; +- *) ac_try_echo=$ac_try;; +-esac +-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 +- (eval "$ac_compile") 2>conftest.er1 +- ac_status=$? +- grep -v '^ *+' conftest.er1 >conftest.err +- rm -f conftest.er1 +- cat conftest.err >&5 +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); } && { +- test -z "$ac_c_werror_flag" || +- test ! -s conftest.err +- } && test -s conftest.$ac_objext; then +- ac_header_compiler=yes +-else +- echo "$as_me: failed program was:" >&5 +-sed 's/^/| /' conftest.$ac_ext >&5 +- +- ac_header_compiler=no +-fi +- +-rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext +-{ echo "$as_me:$LINENO: result: $ac_header_compiler" >&5 +-echo "${ECHO_T}$ac_header_compiler" >&6; } +- +-# Is the header present? +-{ echo "$as_me:$LINENO: checking $ac_header presence" >&5 +-echo $ECHO_N "checking $ac_header presence... $ECHO_C" >&6; } +-cat >conftest.$ac_ext <<_ACEOF +-/* confdefs.h. */ +-_ACEOF +-cat confdefs.h >>conftest.$ac_ext +-cat >>conftest.$ac_ext <<_ACEOF +-/* end confdefs.h. */ +-#include <$ac_header> +-_ACEOF +-if { (ac_try="$ac_cpp conftest.$ac_ext" +-case "(($ac_try" in +- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; +- *) ac_try_echo=$ac_try;; +-esac +-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 +- (eval "$ac_cpp conftest.$ac_ext") 2>conftest.er1 +- ac_status=$? +- grep -v '^ *+' conftest.er1 >conftest.err +- rm -f conftest.er1 +- cat conftest.err >&5 +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); } >/dev/null && { +- test -z "$ac_c_preproc_warn_flag$ac_c_werror_flag" || +- test ! -s conftest.err +- }; then +- ac_header_preproc=yes +-else +- echo "$as_me: failed program was:" >&5 +-sed 's/^/| /' conftest.$ac_ext >&5 +- +- ac_header_preproc=no +-fi +- +-rm -f conftest.err conftest.$ac_ext +-{ echo "$as_me:$LINENO: result: $ac_header_preproc" >&5 +-echo "${ECHO_T}$ac_header_preproc" >&6; } +- +-# So? What about this header? +-case $ac_header_compiler:$ac_header_preproc:$ac_c_preproc_warn_flag in +- yes:no: ) +- { echo "$as_me:$LINENO: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&5 +-echo "$as_me: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&2;} +- { echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the compiler's result" >&5 +-echo "$as_me: WARNING: $ac_header: proceeding with the compiler's result" >&2;} +- ac_header_preproc=yes +- ;; +- no:yes:* ) +- { echo "$as_me:$LINENO: WARNING: $ac_header: present but cannot be compiled" >&5 +-echo "$as_me: WARNING: $ac_header: present but cannot be compiled" >&2;} +- { echo "$as_me:$LINENO: WARNING: $ac_header: check for missing prerequisite headers?" >&5 +-echo "$as_me: WARNING: $ac_header: check for missing prerequisite headers?" >&2;} +- { echo "$as_me:$LINENO: WARNING: $ac_header: see the Autoconf documentation" >&5 +-echo "$as_me: WARNING: $ac_header: see the Autoconf documentation" >&2;} +- { echo "$as_me:$LINENO: WARNING: $ac_header: section \"Present But Cannot Be Compiled\"" >&5 +-echo "$as_me: WARNING: $ac_header: section \"Present But Cannot Be Compiled\"" >&2;} +- { echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the preprocessor's result" >&5 +-echo "$as_me: WARNING: $ac_header: proceeding with the preprocessor's result" >&2;} +- { echo "$as_me:$LINENO: WARNING: $ac_header: in the future, the compiler will take precedence" >&5 +-echo "$as_me: WARNING: $ac_header: in the future, the compiler will take precedence" >&2;} +- +- ;; +-esac +-{ echo "$as_me:$LINENO: checking for $ac_header" >&5 +-echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6; } +-if { as_var=$as_ac_Header; eval "test \"\${$as_var+set}\" = set"; }; then +- echo $ECHO_N "(cached) $ECHO_C" >&6 +-else +- eval "$as_ac_Header=\$ac_header_preproc" +-fi +-ac_res=`eval echo '${'$as_ac_Header'}'` +- { echo "$as_me:$LINENO: result: $ac_res" >&5 +-echo "${ECHO_T}$ac_res" >&6; } +- +-fi +-if test `eval echo '${'$as_ac_Header'}'` = yes; then +- cat >>confdefs.h <<_ACEOF +-#define `echo "HAVE_$ac_header" | $as_tr_cpp` 1 +-_ACEOF +- +- +- PLUGINS="${PLUGINS} dc1394" +- +- +- for element in dc1394; do +- eval "LDFLAGS_${element}="'"'"-ldc1394_control -lraw1394 "'$'"{LDFLAGS_${element}} "'"' +- am_modules_with_ldflags="${am_modules_with_ldflags} ${element}" +- done +- +- +-else +- +- { { echo "$as_me:$LINENO: error: libdc1394 is mandatory for the dc1394 input module. try --disable-dc1394 or install this library" >&5 +-echo "$as_me: error: libdc1394 is mandatory for the dc1394 input module. try --disable-dc1394 or install this library" >&2;} +- { (exit 1); exit 1; }; } +- +-fi +- +-done +- +- +-else +- +- { { echo "$as_me:$LINENO: error: libraw1394 is mandatory for the dc1394 input module. try --disable-dc1394 or install this library" >&5 +-echo "$as_me: error: libraw1394 is mandatory for the dc1394 input module. try --disable-dc1394 or install this library" >&2;} +- { (exit 1); exit 1; }; } +- +-fi +- +- +-else +- +- { { echo "$as_me:$LINENO: error: libraw1394 is mandatory for the dc1394 input module. try --disable-dc1394 or install this library" >&5 +-echo "$as_me: error: libraw1394 is mandatory for the dc1394 input module. try --disable-dc1394 or install this library" >&2;} +- { (exit 1); exit 1; }; } +- +-fi +- +-done +- +-fi +- +-# Check whether --enable-dv was given. +-if test "${enable_dv+set}" = set; then +- enableval=$enable_dv; +-fi +- +-if test "${enable_dv}" = "yes" +-then +- +-# Check whether --with-dv-raw1394 was given. +-if test "${with_dv_raw1394+set}" = set; then +- withval=$with_dv_raw1394; +-fi +- +- +-# Check whether --with-dv-raw1394-tree was given. +-if test "${with_dv_raw1394_tree+set}" = set; then +- withval=$with_dv_raw1394_tree; +-fi +- +- +- if test -z "${with_dv_raw1394}" -a "${with_dv_raw1394}" != "" +- then +- { echo "$as_me:$LINENO: checking for raw1394 headers in ${with_dv_raw1394}" >&5 +-echo $ECHO_N "checking for raw1394 headers in ${with_dv_raw1394}... $ECHO_C" >&6; } +- if test -f ${with_dv_raw1394}/include/libraw1394/raw1394.h +- then +- { echo "$as_me:$LINENO: result: yes" >&5 +-echo "${ECHO_T}yes" >&6; } +- +- PLUGINS="${PLUGINS} access_dv" +- +- +- for element in access_dv; do +- eval "LDFLAGS_${element}="'"'"-L${with_dv_raw1394}/lib -lraw1394 -lpthread "'$'"{LDFLAGS_${element}} "'"' +- am_modules_with_ldflags="${am_modules_with_ldflags} ${element}" +- done +- +- +- for element in access_dv; do +- eval "CPPFLAGS_${element}="'"$'"{CPPFLAGS_${element}} -I${with_dv_raw1394}/include"'"' +- am_modules_with_cppflags="${am_modules_with_cppflags} ${element}" +- done +- +- else +- { echo "$as_me:$LINENO: result: no" >&5 +-echo "${ECHO_T}no" >&6; } +- { { echo "$as_me:$LINENO: error: cannot find ${with_dv_raw1394}/include/libraw1394/raw1394.h" >&5 +-echo "$as_me: error: cannot find ${with_dv_raw1394}/include/libraw1394/raw1394.h" >&2;} +- { (exit 1); exit 1; }; } +- fi +- else +- +-for ac_header in libraw1394/raw1394.h +-do +-as_ac_Header=`echo "ac_cv_header_$ac_header" | $as_tr_sh` +-if { as_var=$as_ac_Header; eval "test \"\${$as_var+set}\" = set"; }; then +- { echo "$as_me:$LINENO: checking for $ac_header" >&5 +-echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6; } +-if { as_var=$as_ac_Header; eval "test \"\${$as_var+set}\" = set"; }; then +- echo $ECHO_N "(cached) $ECHO_C" >&6 +-fi +-ac_res=`eval echo '${'$as_ac_Header'}'` +- { echo "$as_me:$LINENO: result: $ac_res" >&5 +-echo "${ECHO_T}$ac_res" >&6; } +-else +- # Is the header compilable? +-{ echo "$as_me:$LINENO: checking $ac_header usability" >&5 +-echo $ECHO_N "checking $ac_header usability... $ECHO_C" >&6; } +-cat >conftest.$ac_ext <<_ACEOF +-/* confdefs.h. */ +-_ACEOF +-cat confdefs.h >>conftest.$ac_ext +-cat >>conftest.$ac_ext <<_ACEOF +-/* end confdefs.h. */ +-$ac_includes_default +-#include <$ac_header> +-_ACEOF +-rm -f conftest.$ac_objext +-if { (ac_try="$ac_compile" +-case "(($ac_try" in +- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; +- *) ac_try_echo=$ac_try;; +-esac +-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 +- (eval "$ac_compile") 2>conftest.er1 +- ac_status=$? +- grep -v '^ *+' conftest.er1 >conftest.err +- rm -f conftest.er1 +- cat conftest.err >&5 +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); } && { +- test -z "$ac_c_werror_flag" || +- test ! -s conftest.err +- } && test -s conftest.$ac_objext; then +- ac_header_compiler=yes +-else +- echo "$as_me: failed program was:" >&5 +-sed 's/^/| /' conftest.$ac_ext >&5 +- +- ac_header_compiler=no +-fi +- +-rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext +-{ echo "$as_me:$LINENO: result: $ac_header_compiler" >&5 +-echo "${ECHO_T}$ac_header_compiler" >&6; } +- +-# Is the header present? +-{ echo "$as_me:$LINENO: checking $ac_header presence" >&5 +-echo $ECHO_N "checking $ac_header presence... $ECHO_C" >&6; } +-cat >conftest.$ac_ext <<_ACEOF +-/* confdefs.h. */ +-_ACEOF +-cat confdefs.h >>conftest.$ac_ext +-cat >>conftest.$ac_ext <<_ACEOF +-/* end confdefs.h. */ +-#include <$ac_header> +-_ACEOF +-if { (ac_try="$ac_cpp conftest.$ac_ext" +-case "(($ac_try" in +- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; +- *) ac_try_echo=$ac_try;; +-esac +-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 +- (eval "$ac_cpp conftest.$ac_ext") 2>conftest.er1 +- ac_status=$? +- grep -v '^ *+' conftest.er1 >conftest.err +- rm -f conftest.er1 +- cat conftest.err >&5 +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); } >/dev/null && { +- test -z "$ac_c_preproc_warn_flag$ac_c_werror_flag" || +- test ! -s conftest.err +- }; then +- ac_header_preproc=yes +-else +- echo "$as_me: failed program was:" >&5 +-sed 's/^/| /' conftest.$ac_ext >&5 +- +- ac_header_preproc=no +-fi +- +-rm -f conftest.err conftest.$ac_ext +-{ echo "$as_me:$LINENO: result: $ac_header_preproc" >&5 +-echo "${ECHO_T}$ac_header_preproc" >&6; } +- +-# So? What about this header? +-case $ac_header_compiler:$ac_header_preproc:$ac_c_preproc_warn_flag in +- yes:no: ) +- { echo "$as_me:$LINENO: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&5 +-echo "$as_me: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&2;} +- { echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the compiler's result" >&5 +-echo "$as_me: WARNING: $ac_header: proceeding with the compiler's result" >&2;} +- ac_header_preproc=yes +- ;; +- no:yes:* ) +- { echo "$as_me:$LINENO: WARNING: $ac_header: present but cannot be compiled" >&5 +-echo "$as_me: WARNING: $ac_header: present but cannot be compiled" >&2;} +- { echo "$as_me:$LINENO: WARNING: $ac_header: check for missing prerequisite headers?" >&5 +-echo "$as_me: WARNING: $ac_header: check for missing prerequisite headers?" >&2;} +- { echo "$as_me:$LINENO: WARNING: $ac_header: see the Autoconf documentation" >&5 +-echo "$as_me: WARNING: $ac_header: see the Autoconf documentation" >&2;} +- { echo "$as_me:$LINENO: WARNING: $ac_header: section \"Present But Cannot Be Compiled\"" >&5 +-echo "$as_me: WARNING: $ac_header: section \"Present But Cannot Be Compiled\"" >&2;} +- { echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the preprocessor's result" >&5 +-echo "$as_me: WARNING: $ac_header: proceeding with the preprocessor's result" >&2;} +- { echo "$as_me:$LINENO: WARNING: $ac_header: in the future, the compiler will take precedence" >&5 +-echo "$as_me: WARNING: $ac_header: in the future, the compiler will take precedence" >&2;} +- +- ;; +-esac +-{ echo "$as_me:$LINENO: checking for $ac_header" >&5 +-echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6; } +-if { as_var=$as_ac_Header; eval "test \"\${$as_var+set}\" = set"; }; then +- echo $ECHO_N "(cached) $ECHO_C" >&6 +-else +- eval "$as_ac_Header=\$ac_header_preproc" +-fi +-ac_res=`eval echo '${'$as_ac_Header'}'` +- { echo "$as_me:$LINENO: result: $ac_res" >&5 +-echo "${ECHO_T}$ac_res" >&6; } +- +-fi +-if test `eval echo '${'$as_ac_Header'}'` = yes; then +- cat >>confdefs.h <<_ACEOF +-#define `echo "HAVE_$ac_header" | $as_tr_cpp` 1 +-_ACEOF +- +- PLUGINS="${PLUGINS} access_dv" +- +- +- for element in access_dv; do +- eval "LDFLAGS_${element}="'"'"-lraw1394 -lavc1394 "'$'"{LDFLAGS_${element}} "'"' +- am_modules_with_ldflags="${am_modules_with_ldflags} ${element}" +- done +- +- +-else +- +- if test -n "${enable_dv}" +- then +- { { echo "$as_me:$LINENO: error: cannot find libraw1394 headers" >&5 +-echo "$as_me: error: cannot find libraw1394 headers" >&2;} +- { (exit 1); exit 1; }; } +- fi +- +-fi +- +-done +- +- fi +- +- if test -z "${with_dv_raw1394_tree}" -a "${with_dv_raw1394_tree}" != "" +- then +- { echo "$as_me:$LINENO: checking for libraw1394.a in ${with_dv_raw1394_tree}" >&5 +-echo $ECHO_N "checking for libraw1394.a in ${with_dv_raw1394_tree}... $ECHO_C" >&6; } +- real_dv_raw1394_tree="`cd ${with_dv_raw1394_tree} 2>/dev/null && pwd`" +- if test -z "${real_dv_raw1394_tree}" +- then +- { echo "$as_me:$LINENO: result: no" >&5 +-echo "${ECHO_T}no" >&6; } +- { { echo "$as_me:$LINENO: error: cannot cd to ${real_dv_raw1394_tree}" >&5 +-echo "$as_me: error: cannot cd to ${real_dv_raw1394_tree}" >&2;} +- { (exit 1); exit 1; }; } +- fi +- if test -f "${real_dv_raw1394_tree}/src/.libs/libraw1394.a" +- then +- { echo "$as_me:$LINENO: result: ${real_dv_raw1394_tree}/src/.libs/libraw1394.a" >&5 +-echo "${ECHO_T}${real_dv_raw1394_tree}/src/.libs/libraw1394.a" >&6; } +- +- BUILTINS="${BUILTINS} access_dv" +- +- +- for element in access_dv; do +- eval "LDFLAGS_${element}="'"'"-L${real_dv_raw1394_tree}/src/.libs -lraw1394 "'$'"{LDFLAGS_${element}} "'"' +- am_modules_with_ldflags="${am_modules_with_ldflags} ${element}" +- done +- +- +- for element in access_dv; do +- eval "CPPFLAGS_${element}="'"$'"{CPPFLAGS_${element}} -I${real_dv_raw1394_tree}"'"' +- am_modules_with_cppflags="${am_modules_with_cppflags} ${element}" +- done +- +- else +- { echo "$as_me:$LINENO: result: no" >&5 +-echo "${ECHO_T}no" >&6; } +- { { echo "$as_me:$LINENO: error: cannot find ${real_dv_raw1394_tree}/src/.libs/libraw1394.a, make sure you compiled libraw1394 in ${with_dv_raw1394_tree}" >&5 +-echo "$as_me: error: cannot find ${real_dv_raw1394_tree}/src/.libs/libraw1394.a, make sure you compiled libraw1394 in ${with_dv_raw1394_tree}" >&2;} +- { (exit 1); exit 1; }; } +- fi +- fi +- +- +- +-# Check whether --with-dv-avc1394 was given. +-if test "${with_dv_avc1394+set}" = set; then +- withval=$with_dv_avc1394; +-fi +- +- +-# Check whether --with-dv-avc1394-tree was given. +-if test "${with_dv_avc1394_tree+set}" = set; then +- withval=$with_dv_avc1394_tree; +-fi +- +- +- if test -z "${with_dv_avc1394}" -a "${with_dv_avc1394}" != "" +- then +- { echo "$as_me:$LINENO: checking for avc1394 headers in ${with_dv_avc1394}" >&5 +-echo $ECHO_N "checking for avc1394 headers in ${with_dv_avc1394}... $ECHO_C" >&6; } +- if test -f ${with_dv_avc1394}/include/libavc1394/avc1394.h +- then +- { echo "$as_me:$LINENO: result: yes" >&5 +-echo "${ECHO_T}yes" >&6; } +- +- for element in access_dv; do +- eval "LDFLAGS_${element}="'"'"-L${with_dv_avc1394}/lib -lavc1394 -lrom1394 -lpthread "'$'"{LDFLAGS_${element}} "'"' +- am_modules_with_ldflags="${am_modules_with_ldflags} ${element}" +- done +- +- +- for element in access_dv; do +- eval "CPPFLAGS_${element}="'"$'"{CPPFLAGS_${element}} -I${with_avc1394}/include"'"' +- am_modules_with_cppflags="${am_modules_with_cppflags} ${element}" +- done +- +- else +- { echo "$as_me:$LINENO: result: no" >&5 +-echo "${ECHO_T}no" >&6; } +- { { echo "$as_me:$LINENO: error: cannot find ${with_dv_avc1394}/include/libavc1394/avc1394.h" >&5 +-echo "$as_me: error: cannot find ${with_dv_avc1394}/include/libavc1394/avc1394.h" >&2;} +- { (exit 1); exit 1; }; } +- fi +- else +- +-for ac_header in libavc1394/avc1394.h +-do +-as_ac_Header=`echo "ac_cv_header_$ac_header" | $as_tr_sh` +-if { as_var=$as_ac_Header; eval "test \"\${$as_var+set}\" = set"; }; then +- { echo "$as_me:$LINENO: checking for $ac_header" >&5 +-echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6; } +-if { as_var=$as_ac_Header; eval "test \"\${$as_var+set}\" = set"; }; then +- echo $ECHO_N "(cached) $ECHO_C" >&6 +-fi +-ac_res=`eval echo '${'$as_ac_Header'}'` +- { echo "$as_me:$LINENO: result: $ac_res" >&5 +-echo "${ECHO_T}$ac_res" >&6; } +-else +- # Is the header compilable? +-{ echo "$as_me:$LINENO: checking $ac_header usability" >&5 +-echo $ECHO_N "checking $ac_header usability... $ECHO_C" >&6; } +-cat >conftest.$ac_ext <<_ACEOF +-/* confdefs.h. */ +-_ACEOF +-cat confdefs.h >>conftest.$ac_ext +-cat >>conftest.$ac_ext <<_ACEOF +-/* end confdefs.h. */ +-$ac_includes_default +-#include <$ac_header> +-_ACEOF +-rm -f conftest.$ac_objext +-if { (ac_try="$ac_compile" +-case "(($ac_try" in +- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; +- *) ac_try_echo=$ac_try;; +-esac +-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 +- (eval "$ac_compile") 2>conftest.er1 +- ac_status=$? +- grep -v '^ *+' conftest.er1 >conftest.err +- rm -f conftest.er1 +- cat conftest.err >&5 +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); } && { +- test -z "$ac_c_werror_flag" || +- test ! -s conftest.err +- } && test -s conftest.$ac_objext; then +- ac_header_compiler=yes +-else +- echo "$as_me: failed program was:" >&5 +-sed 's/^/| /' conftest.$ac_ext >&5 +- +- ac_header_compiler=no +-fi +- +-rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext +-{ echo "$as_me:$LINENO: result: $ac_header_compiler" >&5 +-echo "${ECHO_T}$ac_header_compiler" >&6; } +- +-# Is the header present? +-{ echo "$as_me:$LINENO: checking $ac_header presence" >&5 +-echo $ECHO_N "checking $ac_header presence... $ECHO_C" >&6; } +-cat >conftest.$ac_ext <<_ACEOF +-/* confdefs.h. */ +-_ACEOF +-cat confdefs.h >>conftest.$ac_ext +-cat >>conftest.$ac_ext <<_ACEOF +-/* end confdefs.h. */ +-#include <$ac_header> +-_ACEOF +-if { (ac_try="$ac_cpp conftest.$ac_ext" +-case "(($ac_try" in +- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; +- *) ac_try_echo=$ac_try;; +-esac +-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 +- (eval "$ac_cpp conftest.$ac_ext") 2>conftest.er1 +- ac_status=$? +- grep -v '^ *+' conftest.er1 >conftest.err +- rm -f conftest.er1 +- cat conftest.err >&5 +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); } >/dev/null && { +- test -z "$ac_c_preproc_warn_flag$ac_c_werror_flag" || +- test ! -s conftest.err +- }; then +- ac_header_preproc=yes +-else +- echo "$as_me: failed program was:" >&5 +-sed 's/^/| /' conftest.$ac_ext >&5 +- +- ac_header_preproc=no +-fi +- +-rm -f conftest.err conftest.$ac_ext +-{ echo "$as_me:$LINENO: result: $ac_header_preproc" >&5 +-echo "${ECHO_T}$ac_header_preproc" >&6; } +- +-# So? What about this header? +-case $ac_header_compiler:$ac_header_preproc:$ac_c_preproc_warn_flag in +- yes:no: ) +- { echo "$as_me:$LINENO: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&5 +-echo "$as_me: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&2;} +- { echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the compiler's result" >&5 +-echo "$as_me: WARNING: $ac_header: proceeding with the compiler's result" >&2;} +- ac_header_preproc=yes +- ;; +- no:yes:* ) +- { echo "$as_me:$LINENO: WARNING: $ac_header: present but cannot be compiled" >&5 +-echo "$as_me: WARNING: $ac_header: present but cannot be compiled" >&2;} +- { echo "$as_me:$LINENO: WARNING: $ac_header: check for missing prerequisite headers?" >&5 +-echo "$as_me: WARNING: $ac_header: check for missing prerequisite headers?" >&2;} +- { echo "$as_me:$LINENO: WARNING: $ac_header: see the Autoconf documentation" >&5 +-echo "$as_me: WARNING: $ac_header: see the Autoconf documentation" >&2;} +- { echo "$as_me:$LINENO: WARNING: $ac_header: section \"Present But Cannot Be Compiled\"" >&5 +-echo "$as_me: WARNING: $ac_header: section \"Present But Cannot Be Compiled\"" >&2;} +- { echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the preprocessor's result" >&5 +-echo "$as_me: WARNING: $ac_header: proceeding with the preprocessor's result" >&2;} +- { echo "$as_me:$LINENO: WARNING: $ac_header: in the future, the compiler will take precedence" >&5 +-echo "$as_me: WARNING: $ac_header: in the future, the compiler will take precedence" >&2;} +- +- ;; +-esac +-{ echo "$as_me:$LINENO: checking for $ac_header" >&5 +-echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6; } +-if { as_var=$as_ac_Header; eval "test \"\${$as_var+set}\" = set"; }; then +- echo $ECHO_N "(cached) $ECHO_C" >&6 +-else +- eval "$as_ac_Header=\$ac_header_preproc" +-fi +-ac_res=`eval echo '${'$as_ac_Header'}'` +- { echo "$as_me:$LINENO: result: $ac_res" >&5 +-echo "${ECHO_T}$ac_res" >&6; } +- +-fi +-if test `eval echo '${'$as_ac_Header'}'` = yes; then +- cat >>confdefs.h <<_ACEOF +-#define `echo "HAVE_$ac_header" | $as_tr_cpp` 1 +-_ACEOF +- +- for element in access_dv; do +- eval "LDFLAGS_${element}="'"'"-lavc1394 -lrom1394 -lpthread "'$'"{LDFLAGS_${element}} "'"' +- am_modules_with_ldflags="${am_modules_with_ldflags} ${element}" +- done +- +- +-else +- +- if test -n "${enable_dv}" +- then +- { { echo "$as_me:$LINENO: error: cannot find libavc1394 headers" >&5 +-echo "$as_me: error: cannot find libavc1394 headers" >&2;} +- { (exit 1); exit 1; }; } +- fi +- +-fi +- +-done +- +- fi +- +- if test -z "${with_dv_avc1394_tree}" -a "${with_dv_avc1394_tree}" != "" +- then +- { echo "$as_me:$LINENO: checking for libavc1394.a in ${with_dv_avc1394_tree}" >&5 +-echo $ECHO_N "checking for libavc1394.a in ${with_dv_avc1394_tree}... $ECHO_C" >&6; } +- real_dv_avc1394_tree="`cd ${with_dv_avc1394_tree} 2>/dev/null && pwd`" +- if test -z "${real_dv_avc1394_tree}" +- then +- { echo "$as_me:$LINENO: result: no" >&5 +-echo "${ECHO_T}no" >&6; } +- { { echo "$as_me:$LINENO: error: cannot cd to ${real_dv_avc1394_tree}" >&5 +-echo "$as_me: error: cannot cd to ${real_dv_avc1394_tree}" >&2;} +- { (exit 1); exit 1; }; } +- fi +- if test -f "${real_dv_avc1394_tree}/src/.libs/libavc1394.a" +- then +- { echo "$as_me:$LINENO: result: ${real_dv_avc1394_tree}/src/.libs/libavc1394.a" >&5 +-echo "${ECHO_T}${real_dv_avc1394_tree}/src/.libs/libavc1394.a" >&6; } +- +- for element in access_dv; do +- eval "LDFLAGS_${element}="'"'"-L${real_dv_avc1394_tree}/src/.libs -lavc1394 -lrom1394 -lpthread "'$'"{LDFLAGS_${element}} "'"' +- am_modules_with_ldflags="${am_modules_with_ldflags} ${element}" +- done +- +- +- for element in access_dv; do +- eval "CPPFLAGS_${element}="'"$'"{CPPFLAGS_${element}} -I${real_dv_avc1394_tree}"'"' +- am_modules_with_cppflags="${am_modules_with_cppflags} ${element}" +- done +- +- else +- { echo "$as_me:$LINENO: result: no" >&5 +-echo "${ECHO_T}no" >&6; } +- { { echo "$as_me:$LINENO: error: cannot find ${real_dv_avc1394_tree}/src/.libs/libavc1394.a, make sure you compiled libavc1394 in ${with_dv_avc1394_tree}" >&5 +-echo "$as_me: error: cannot find ${real_dv_avc1394_tree}/src/.libs/libavc1394.a, make sure you compiled libavc1394 in ${with_dv_avc1394_tree}" >&2;} +- { (exit 1); exit 1; }; } +- fi +- fi +-fi +- +-# Check whether --enable-dvdread was given. +-if test "${enable_dvdread+set}" = set; then +- enableval=$enable_dvdread; +-fi +- +-if test "${enable_dvdread}" != "no" +-then +- +-# Check whether --with-dvdread was given. +-if test "${with_dvdread+set}" = set; then +- withval=$with_dvdread; +-fi +- +- +-# Check whether --with-dvdread-tree was given. +-if test "${with_dvdread_tree+set}" = set; then +- withval=$with_dvdread_tree; +-fi +- +- +- if test "${SYS}" = "mingw32" || test "${SYS}" = "darwin" || test "${SYS}" = "beos" ; then +- +- for element in dvdread; do +- eval "LDFLAGS_${element}="'"'"-ldvdcss "'$'"{LDFLAGS_${element}} "'"' +- am_modules_with_ldflags="${am_modules_with_ldflags} ${element}" +- done +- +- fi +- +- if test -z "${with_dvdread}" +- then +- if test -z "${with_dvdread_tree}" +- then +- +-for ac_header in dvdread/dvd_reader.h +-do +-as_ac_Header=`echo "ac_cv_header_$ac_header" | $as_tr_sh` +-if { as_var=$as_ac_Header; eval "test \"\${$as_var+set}\" = set"; }; then +- { echo "$as_me:$LINENO: checking for $ac_header" >&5 +-echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6; } +-if { as_var=$as_ac_Header; eval "test \"\${$as_var+set}\" = set"; }; then +- echo $ECHO_N "(cached) $ECHO_C" >&6 +-fi +-ac_res=`eval echo '${'$as_ac_Header'}'` +- { echo "$as_me:$LINENO: result: $ac_res" >&5 +-echo "${ECHO_T}$ac_res" >&6; } +-else +- # Is the header compilable? +-{ echo "$as_me:$LINENO: checking $ac_header usability" >&5 +-echo $ECHO_N "checking $ac_header usability... $ECHO_C" >&6; } +-cat >conftest.$ac_ext <<_ACEOF +-/* confdefs.h. */ +-_ACEOF +-cat confdefs.h >>conftest.$ac_ext +-cat >>conftest.$ac_ext <<_ACEOF +-/* end confdefs.h. */ +-$ac_includes_default +-#include <$ac_header> +-_ACEOF +-rm -f conftest.$ac_objext +-if { (ac_try="$ac_compile" +-case "(($ac_try" in +- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; +- *) ac_try_echo=$ac_try;; +-esac +-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 +- (eval "$ac_compile") 2>conftest.er1 +- ac_status=$? +- grep -v '^ *+' conftest.er1 >conftest.err +- rm -f conftest.er1 +- cat conftest.err >&5 +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); } && { +- test -z "$ac_c_werror_flag" || +- test ! -s conftest.err +- } && test -s conftest.$ac_objext; then +- ac_header_compiler=yes +-else +- echo "$as_me: failed program was:" >&5 +-sed 's/^/| /' conftest.$ac_ext >&5 +- +- ac_header_compiler=no +-fi +- +-rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext +-{ echo "$as_me:$LINENO: result: $ac_header_compiler" >&5 +-echo "${ECHO_T}$ac_header_compiler" >&6; } +- +-# Is the header present? +-{ echo "$as_me:$LINENO: checking $ac_header presence" >&5 +-echo $ECHO_N "checking $ac_header presence... $ECHO_C" >&6; } +-cat >conftest.$ac_ext <<_ACEOF +-/* confdefs.h. */ +-_ACEOF +-cat confdefs.h >>conftest.$ac_ext +-cat >>conftest.$ac_ext <<_ACEOF +-/* end confdefs.h. */ +-#include <$ac_header> +-_ACEOF +-if { (ac_try="$ac_cpp conftest.$ac_ext" +-case "(($ac_try" in +- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; +- *) ac_try_echo=$ac_try;; +-esac +-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 +- (eval "$ac_cpp conftest.$ac_ext") 2>conftest.er1 +- ac_status=$? +- grep -v '^ *+' conftest.er1 >conftest.err +- rm -f conftest.er1 +- cat conftest.err >&5 +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); } >/dev/null && { +- test -z "$ac_c_preproc_warn_flag$ac_c_werror_flag" || +- test ! -s conftest.err +- }; then +- ac_header_preproc=yes +-else +- echo "$as_me: failed program was:" >&5 +-sed 's/^/| /' conftest.$ac_ext >&5 +- +- ac_header_preproc=no +-fi +- +-rm -f conftest.err conftest.$ac_ext +-{ echo "$as_me:$LINENO: result: $ac_header_preproc" >&5 +-echo "${ECHO_T}$ac_header_preproc" >&6; } +- +-# So? What about this header? +-case $ac_header_compiler:$ac_header_preproc:$ac_c_preproc_warn_flag in +- yes:no: ) +- { echo "$as_me:$LINENO: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&5 +-echo "$as_me: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&2;} +- { echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the compiler's result" >&5 +-echo "$as_me: WARNING: $ac_header: proceeding with the compiler's result" >&2;} +- ac_header_preproc=yes +- ;; +- no:yes:* ) +- { echo "$as_me:$LINENO: WARNING: $ac_header: present but cannot be compiled" >&5 +-echo "$as_me: WARNING: $ac_header: present but cannot be compiled" >&2;} +- { echo "$as_me:$LINENO: WARNING: $ac_header: check for missing prerequisite headers?" >&5 +-echo "$as_me: WARNING: $ac_header: check for missing prerequisite headers?" >&2;} +- { echo "$as_me:$LINENO: WARNING: $ac_header: see the Autoconf documentation" >&5 +-echo "$as_me: WARNING: $ac_header: see the Autoconf documentation" >&2;} +- { echo "$as_me:$LINENO: WARNING: $ac_header: section \"Present But Cannot Be Compiled\"" >&5 +-echo "$as_me: WARNING: $ac_header: section \"Present But Cannot Be Compiled\"" >&2;} +- { echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the preprocessor's result" >&5 +-echo "$as_me: WARNING: $ac_header: proceeding with the preprocessor's result" >&2;} +- { echo "$as_me:$LINENO: WARNING: $ac_header: in the future, the compiler will take precedence" >&5 +-echo "$as_me: WARNING: $ac_header: in the future, the compiler will take precedence" >&2;} +- +- ;; +-esac +-{ echo "$as_me:$LINENO: checking for $ac_header" >&5 +-echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6; } +-if { as_var=$as_ac_Header; eval "test \"\${$as_var+set}\" = set"; }; then +- echo $ECHO_N "(cached) $ECHO_C" >&6 +-else +- eval "$as_ac_Header=\$ac_header_preproc" +-fi +-ac_res=`eval echo '${'$as_ac_Header'}'` +- { echo "$as_me:$LINENO: result: $ac_res" >&5 +-echo "${ECHO_T}$ac_res" >&6; } +- +-fi +-if test `eval echo '${'$as_ac_Header'}'` = yes; then +- cat >>confdefs.h <<_ACEOF +-#define `echo "HAVE_$ac_header" | $as_tr_cpp` 1 +-_ACEOF +- +- PLUGINS="${PLUGINS} dvdread" +- +- +- for element in dvdread; do +- eval "LDFLAGS_${element}="'"'"-ldvdread ${LDFLAGS_dvdcss} "'$'"{LDFLAGS_${element}} "'"' +- am_modules_with_ldflags="${am_modules_with_ldflags} ${element}" +- done +- +- +-else +- +- if test -n "${enable_dvdread}" +- then +- { { echo "$as_me:$LINENO: error: cannot find libdvdread headers" >&5 +-echo "$as_me: error: cannot find libdvdread headers" >&2;} +- { (exit 1); exit 1; }; } +- fi +- +-fi +- +-done +- +- else +- { echo "$as_me:$LINENO: checking for libdvdread.a in ${with_dvdread_tree}" >&5 +-echo $ECHO_N "checking for libdvdread.a in ${with_dvdread_tree}... $ECHO_C" >&6; } +- real_dvdread_tree="`cd ${with_dvdread_tree} 2>/dev/null && pwd`" +- if test -z "${real_dvdread_tree}" +- then +- { echo "$as_me:$LINENO: result: no" >&5 +-echo "${ECHO_T}no" >&6; } +- { { echo "$as_me:$LINENO: error: cannot cd to ${with_dvdread_tree}" >&5 +-echo "$as_me: error: cannot cd to ${with_dvdread_tree}" >&2;} +- { (exit 1); exit 1; }; } +- fi +- if test -f "${real_dvdread_tree}/dvdread/.libs/libdvdread.a" +- then +- { echo "$as_me:$LINENO: result: ${real_dvdread_tree}/dvdread/.libs/libdvdread.a" >&5 +-echo "${ECHO_T}${real_dvdread_tree}/dvdread/.libs/libdvdread.a" >&6; } +- +- BUILTINS="${BUILTINS} dvdread" +- +- +- for element in dvdread; do +- eval "LDFLAGS_${element}="'"'"-L${real_dvdread_tree}/dvdread/.libs -ldvdread ${LDFLAGS_dvdcss} "'$'"{LDFLAGS_${element}} "'"' +- am_modules_with_ldflags="${am_modules_with_ldflags} ${element}" +- done +- +- +- for element in dvdread; do +- eval "CPPFLAGS_${element}="'"$'"{CPPFLAGS_${element}} -I${real_dvdread_tree}"'"' +- am_modules_with_cppflags="${am_modules_with_cppflags} ${element}" +- done +- +- else +- { echo "$as_me:$LINENO: result: no" >&5 +-echo "${ECHO_T}no" >&6; } +- { { echo "$as_me:$LINENO: error: cannot find ${real_dvdread_tree}/dvdread/.libs/libdvdread.a, make sure you compiled libdvdread in ${with_dvdread_tree}" >&5 +-echo "$as_me: error: cannot find ${real_dvdread_tree}/dvdread/.libs/libdvdread.a, make sure you compiled libdvdread in ${with_dvdread_tree}" >&2;} +- { (exit 1); exit 1; }; } +- fi +- fi +- else +- { echo "$as_me:$LINENO: checking for dvdread headers in ${with_dvdread}" >&5 +-echo $ECHO_N "checking for dvdread headers in ${with_dvdread}... $ECHO_C" >&6; } +- if test -f ${with_dvdread}/include/dvdread/dvd_reader.h +- then +- { echo "$as_me:$LINENO: result: yes" >&5 +-echo "${ECHO_T}yes" >&6; } +- +- PLUGINS="${PLUGINS} dvdread" +- +- +- for element in dvdread; do +- eval "LDFLAGS_${element}="'"'"-L${with_dvdread}/lib -ldvdread ${LDFLAGS_dvdcss} "'$'"{LDFLAGS_${element}} "'"' +- am_modules_with_ldflags="${am_modules_with_ldflags} ${element}" +- done +- +- +- for element in dvdread; do +- eval "CPPFLAGS_${element}="'"$'"{CPPFLAGS_${element}} -I${with_dvdread}/include"'"' +- am_modules_with_cppflags="${am_modules_with_cppflags} ${element}" +- done +- +- else +- { echo "$as_me:$LINENO: result: no" >&5 +-echo "${ECHO_T}no" >&6; } +- { { echo "$as_me:$LINENO: error: cannot find ${with_dvdread}/include/dvdread/dvd_reader.h" >&5 +-echo "$as_me: error: cannot find ${with_dvdread}/include/dvdread/dvd_reader.h" >&2;} +- { (exit 1); exit 1; }; } +- fi +- fi +-fi +- +-# Check whether --enable-dvdnav was given. +-if test "${enable_dvdnav+set}" = set; then +- enableval=$enable_dvdnav; +-fi +- +-if test "${enable_dvdnav}" != "no" +-then +- if test "${SYS}" = "mingw32" || test "${SYS}" = "darwin" || test "${SYS}" = "beos" ; then +- +- for element in dvdnav; do +- eval "LDFLAGS_${element}="'"'"-ldvdcss "'$'"{LDFLAGS_${element}} "'"' +- am_modules_with_ldflags="${am_modules_with_ldflags} ${element}" +- done +- +- fi +- +- DVDNAV_PATH="${PATH}" +- +-# Check whether --with-dvdnav-config-path was given. +-if test "${with_dvdnav_config_path+set}" = set; then +- withval=$with_dvdnav_config_path; if test "${with_dvdnav_config_path}" != "no" +- then +- DVDNAV_PATH="${with_dvdnav_config_path}:${PATH}" +- fi +-fi +- +- # Extract the first word of "dvdnav-config", so it can be a program name with args. +-set dummy dvdnav-config; ac_word=$2 +-{ echo "$as_me:$LINENO: checking for $ac_word" >&5 +-echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6; } +-if test "${ac_cv_path_DVDNAV_CONFIG+set}" = set; then +- echo $ECHO_N "(cached) $ECHO_C" >&6 +-else +- case $DVDNAV_CONFIG in +- [\\/]* | ?:[\\/]*) +- ac_cv_path_DVDNAV_CONFIG="$DVDNAV_CONFIG" # Let the user override the test with a path. +- ;; +- *) +- as_save_IFS=$IFS; IFS=$PATH_SEPARATOR +-for as_dir in ${DVDNAV_PATH} +-do +- IFS=$as_save_IFS +- test -z "$as_dir" && as_dir=. +- for ac_exec_ext in '' $ac_executable_extensions; do +- if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then +- ac_cv_path_DVDNAV_CONFIG="$as_dir/$ac_word$ac_exec_ext" +- echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 +- break 2 +- fi +-done +-done +-IFS=$as_save_IFS +- +- test -z "$ac_cv_path_DVDNAV_CONFIG" && ac_cv_path_DVDNAV_CONFIG="no" +- ;; +-esac +-fi +-DVDNAV_CONFIG=$ac_cv_path_DVDNAV_CONFIG +-if test -n "$DVDNAV_CONFIG"; then +- { echo "$as_me:$LINENO: result: $DVDNAV_CONFIG" >&5 +-echo "${ECHO_T}$DVDNAV_CONFIG" >&6; } +-else +- { echo "$as_me:$LINENO: result: no" >&5 +-echo "${ECHO_T}no" >&6; } +-fi +- +- +- if test "${DVDNAV_CONFIG}" != "no" +- then +- +- PLUGINS="${PLUGINS} dvdnav" +- +- +- for element in dvdnav; do +- eval "CFLAGS_${element}="'"$'"{CFLAGS_${element}} `${DVDNAV_CONFIG} --cflags`"'"' +- am_modules_with_cflags="${am_modules_with_cflags} ${element}" +- done +- +- +- for element in dvdnav; do +- eval "LDFLAGS_${element}="'"'"`${DVDNAV_CONFIG} --libs` "'$'"{LDFLAGS_${element}} "'"' +- am_modules_with_ldflags="${am_modules_with_ldflags} ${element}" +- done +- +- fi +-fi +- +-# Check whether --enable-dshow was given. +-if test "${enable_dshow+set}" = set; then +- enableval=$enable_dshow; +-fi +- +-if test "${enable_dshow}" != "no" +-then +- if test "${SYS}" = "mingw32" -o "${SYS}" = "cygwin" +- then +- ac_ext=cpp +-ac_cpp='$CXXCPP $CPPFLAGS' +-ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' +-ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' +-ac_compiler_gnu=$ac_cv_cxx_compiler_gnu +- +- +-for ac_header in dshow.h +-do +-as_ac_Header=`echo "ac_cv_header_$ac_header" | $as_tr_sh` +-if { as_var=$as_ac_Header; eval "test \"\${$as_var+set}\" = set"; }; then +- { echo "$as_me:$LINENO: checking for $ac_header" >&5 +-echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6; } +-if { as_var=$as_ac_Header; eval "test \"\${$as_var+set}\" = set"; }; then +- echo $ECHO_N "(cached) $ECHO_C" >&6 +-fi +-ac_res=`eval echo '${'$as_ac_Header'}'` +- { echo "$as_me:$LINENO: result: $ac_res" >&5 +-echo "${ECHO_T}$ac_res" >&6; } +-else +- # Is the header compilable? +-{ echo "$as_me:$LINENO: checking $ac_header usability" >&5 +-echo $ECHO_N "checking $ac_header usability... $ECHO_C" >&6; } +-cat >conftest.$ac_ext <<_ACEOF +-/* confdefs.h. */ +-_ACEOF +-cat confdefs.h >>conftest.$ac_ext +-cat >>conftest.$ac_ext <<_ACEOF +-/* end confdefs.h. */ +-$ac_includes_default +-#include <$ac_header> +-_ACEOF +-rm -f conftest.$ac_objext +-if { (ac_try="$ac_compile" +-case "(($ac_try" in +- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; +- *) ac_try_echo=$ac_try;; +-esac +-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 +- (eval "$ac_compile") 2>conftest.er1 +- ac_status=$? +- grep -v '^ *+' conftest.er1 >conftest.err +- rm -f conftest.er1 +- cat conftest.err >&5 +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); } && { +- test -z "$ac_cxx_werror_flag" || +- test ! -s conftest.err +- } && test -s conftest.$ac_objext; then +- ac_header_compiler=yes +-else +- echo "$as_me: failed program was:" >&5 +-sed 's/^/| /' conftest.$ac_ext >&5 +- +- ac_header_compiler=no +-fi +- +-rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext +-{ echo "$as_me:$LINENO: result: $ac_header_compiler" >&5 +-echo "${ECHO_T}$ac_header_compiler" >&6; } +- +-# Is the header present? +-{ echo "$as_me:$LINENO: checking $ac_header presence" >&5 +-echo $ECHO_N "checking $ac_header presence... $ECHO_C" >&6; } +-cat >conftest.$ac_ext <<_ACEOF +-/* confdefs.h. */ +-_ACEOF +-cat confdefs.h >>conftest.$ac_ext +-cat >>conftest.$ac_ext <<_ACEOF +-/* end confdefs.h. */ +-#include <$ac_header> +-_ACEOF +-if { (ac_try="$ac_cpp conftest.$ac_ext" +-case "(($ac_try" in +- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; +- *) ac_try_echo=$ac_try;; +-esac +-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 +- (eval "$ac_cpp conftest.$ac_ext") 2>conftest.er1 +- ac_status=$? +- grep -v '^ *+' conftest.er1 >conftest.err +- rm -f conftest.er1 +- cat conftest.err >&5 +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); } >/dev/null && { +- test -z "$ac_cxx_preproc_warn_flag$ac_cxx_werror_flag" || +- test ! -s conftest.err +- }; then +- ac_header_preproc=yes +-else +- echo "$as_me: failed program was:" >&5 +-sed 's/^/| /' conftest.$ac_ext >&5 +- +- ac_header_preproc=no +-fi +- +-rm -f conftest.err conftest.$ac_ext +-{ echo "$as_me:$LINENO: result: $ac_header_preproc" >&5 +-echo "${ECHO_T}$ac_header_preproc" >&6; } +- +-# So? What about this header? +-case $ac_header_compiler:$ac_header_preproc:$ac_cxx_preproc_warn_flag in +- yes:no: ) +- { echo "$as_me:$LINENO: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&5 +-echo "$as_me: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&2;} +- { echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the compiler's result" >&5 +-echo "$as_me: WARNING: $ac_header: proceeding with the compiler's result" >&2;} +- ac_header_preproc=yes +- ;; +- no:yes:* ) +- { echo "$as_me:$LINENO: WARNING: $ac_header: present but cannot be compiled" >&5 +-echo "$as_me: WARNING: $ac_header: present but cannot be compiled" >&2;} +- { echo "$as_me:$LINENO: WARNING: $ac_header: check for missing prerequisite headers?" >&5 +-echo "$as_me: WARNING: $ac_header: check for missing prerequisite headers?" >&2;} +- { echo "$as_me:$LINENO: WARNING: $ac_header: see the Autoconf documentation" >&5 +-echo "$as_me: WARNING: $ac_header: see the Autoconf documentation" >&2;} +- { echo "$as_me:$LINENO: WARNING: $ac_header: section \"Present But Cannot Be Compiled\"" >&5 +-echo "$as_me: WARNING: $ac_header: section \"Present But Cannot Be Compiled\"" >&2;} +- { echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the preprocessor's result" >&5 +-echo "$as_me: WARNING: $ac_header: proceeding with the preprocessor's result" >&2;} +- { echo "$as_me:$LINENO: WARNING: $ac_header: in the future, the compiler will take precedence" >&5 +-echo "$as_me: WARNING: $ac_header: in the future, the compiler will take precedence" >&2;} +- +- ;; +-esac +-{ echo "$as_me:$LINENO: checking for $ac_header" >&5 +-echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6; } +-if { as_var=$as_ac_Header; eval "test \"\${$as_var+set}\" = set"; }; then +- echo $ECHO_N "(cached) $ECHO_C" >&6 +-else +- eval "$as_ac_Header=\$ac_header_preproc" +-fi +-ac_res=`eval echo '${'$as_ac_Header'}'` +- { echo "$as_me:$LINENO: result: $ac_res" >&5 +-echo "${ECHO_T}$ac_res" >&6; } +- +-fi +-if test `eval echo '${'$as_ac_Header'}'` = yes; then +- cat >>confdefs.h <<_ACEOF +-#define `echo "HAVE_$ac_header" | $as_tr_cpp` 1 +-_ACEOF +- +- PLUGINS="${PLUGINS} dshow" +- +- +- for element in dshow; do +- eval "CXXFLAGS_${element}="'"$'"{CXXFLAGS_${element}} "'"' +- am_modules_with_cxxflags="${am_modules_with_cxxflags} ${element}" +- done +- +- +- for element in dshow; do +- eval "LDFLAGS_${element}="'"'"-lole32 -loleaut32 -luuid "'$'"{LDFLAGS_${element}} "'"' +- am_modules_with_ldflags="${am_modules_with_ldflags} ${element}" +- done +- +-fi +- +-done +- +- ac_ext=c +-ac_cpp='$CPP $CPPFLAGS' +-ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' +-ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' +-ac_compiler_gnu=$ac_cv_c_compiler_gnu +- +- fi +-fi +- +-# Check whether --enable-smb was given. +-if test "${enable_smb+set}" = set; then +- enableval=$enable_smb; +-fi +- +-if test "${enable_smb}" != "no"; then +- +-for ac_header in libsmbclient.h +-do +-as_ac_Header=`echo "ac_cv_header_$ac_header" | $as_tr_sh` +-if { as_var=$as_ac_Header; eval "test \"\${$as_var+set}\" = set"; }; then +- { echo "$as_me:$LINENO: checking for $ac_header" >&5 +-echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6; } +-if { as_var=$as_ac_Header; eval "test \"\${$as_var+set}\" = set"; }; then +- echo $ECHO_N "(cached) $ECHO_C" >&6 +-fi +-ac_res=`eval echo '${'$as_ac_Header'}'` +- { echo "$as_me:$LINENO: result: $ac_res" >&5 +-echo "${ECHO_T}$ac_res" >&6; } +-else +- # Is the header compilable? +-{ echo "$as_me:$LINENO: checking $ac_header usability" >&5 +-echo $ECHO_N "checking $ac_header usability... $ECHO_C" >&6; } +-cat >conftest.$ac_ext <<_ACEOF +-/* confdefs.h. */ +-_ACEOF +-cat confdefs.h >>conftest.$ac_ext +-cat >>conftest.$ac_ext <<_ACEOF +-/* end confdefs.h. */ +-$ac_includes_default +-#include <$ac_header> +-_ACEOF +-rm -f conftest.$ac_objext +-if { (ac_try="$ac_compile" +-case "(($ac_try" in +- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; +- *) ac_try_echo=$ac_try;; +-esac +-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 +- (eval "$ac_compile") 2>conftest.er1 +- ac_status=$? +- grep -v '^ *+' conftest.er1 >conftest.err +- rm -f conftest.er1 +- cat conftest.err >&5 +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); } && { +- test -z "$ac_c_werror_flag" || +- test ! -s conftest.err +- } && test -s conftest.$ac_objext; then +- ac_header_compiler=yes +-else +- echo "$as_me: failed program was:" >&5 +-sed 's/^/| /' conftest.$ac_ext >&5 +- +- ac_header_compiler=no +-fi +- +-rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext +-{ echo "$as_me:$LINENO: result: $ac_header_compiler" >&5 +-echo "${ECHO_T}$ac_header_compiler" >&6; } +- +-# Is the header present? +-{ echo "$as_me:$LINENO: checking $ac_header presence" >&5 +-echo $ECHO_N "checking $ac_header presence... $ECHO_C" >&6; } +-cat >conftest.$ac_ext <<_ACEOF +-/* confdefs.h. */ +-_ACEOF +-cat confdefs.h >>conftest.$ac_ext +-cat >>conftest.$ac_ext <<_ACEOF +-/* end confdefs.h. */ +-#include <$ac_header> +-_ACEOF +-if { (ac_try="$ac_cpp conftest.$ac_ext" +-case "(($ac_try" in +- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; +- *) ac_try_echo=$ac_try;; +-esac +-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 +- (eval "$ac_cpp conftest.$ac_ext") 2>conftest.er1 +- ac_status=$? +- grep -v '^ *+' conftest.er1 >conftest.err +- rm -f conftest.er1 +- cat conftest.err >&5 +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); } >/dev/null && { +- test -z "$ac_c_preproc_warn_flag$ac_c_werror_flag" || +- test ! -s conftest.err +- }; then +- ac_header_preproc=yes +-else +- echo "$as_me: failed program was:" >&5 +-sed 's/^/| /' conftest.$ac_ext >&5 +- +- ac_header_preproc=no +-fi +- +-rm -f conftest.err conftest.$ac_ext +-{ echo "$as_me:$LINENO: result: $ac_header_preproc" >&5 +-echo "${ECHO_T}$ac_header_preproc" >&6; } +- +-# So? What about this header? +-case $ac_header_compiler:$ac_header_preproc:$ac_c_preproc_warn_flag in +- yes:no: ) +- { echo "$as_me:$LINENO: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&5 +-echo "$as_me: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&2;} +- { echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the compiler's result" >&5 +-echo "$as_me: WARNING: $ac_header: proceeding with the compiler's result" >&2;} +- ac_header_preproc=yes +- ;; +- no:yes:* ) +- { echo "$as_me:$LINENO: WARNING: $ac_header: present but cannot be compiled" >&5 +-echo "$as_me: WARNING: $ac_header: present but cannot be compiled" >&2;} +- { echo "$as_me:$LINENO: WARNING: $ac_header: check for missing prerequisite headers?" >&5 +-echo "$as_me: WARNING: $ac_header: check for missing prerequisite headers?" >&2;} +- { echo "$as_me:$LINENO: WARNING: $ac_header: see the Autoconf documentation" >&5 +-echo "$as_me: WARNING: $ac_header: see the Autoconf documentation" >&2;} +- { echo "$as_me:$LINENO: WARNING: $ac_header: section \"Present But Cannot Be Compiled\"" >&5 +-echo "$as_me: WARNING: $ac_header: section \"Present But Cannot Be Compiled\"" >&2;} +- { echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the preprocessor's result" >&5 +-echo "$as_me: WARNING: $ac_header: proceeding with the preprocessor's result" >&2;} +- { echo "$as_me:$LINENO: WARNING: $ac_header: in the future, the compiler will take precedence" >&5 +-echo "$as_me: WARNING: $ac_header: in the future, the compiler will take precedence" >&2;} +- +- ;; +-esac +-{ echo "$as_me:$LINENO: checking for $ac_header" >&5 +-echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6; } +-if { as_var=$as_ac_Header; eval "test \"\${$as_var+set}\" = set"; }; then +- echo $ECHO_N "(cached) $ECHO_C" >&6 +-else +- eval "$as_ac_Header=\$ac_header_preproc" +-fi +-ac_res=`eval echo '${'$as_ac_Header'}'` +- { echo "$as_me:$LINENO: result: $ac_res" >&5 +-echo "${ECHO_T}$ac_res" >&6; } +- +-fi +-if test `eval echo '${'$as_ac_Header'}'` = yes; then +- cat >>confdefs.h <<_ACEOF +-#define `echo "HAVE_$ac_header" | $as_tr_cpp` 1 +-_ACEOF +- +- PLUGINS="${PLUGINS} access_smb" +- +- +- for element in access_smb; do +- eval "LDFLAGS_${element}="'"'"-lsmbclient "'$'"{LDFLAGS_${element}} "'"' +- am_modules_with_ldflags="${am_modules_with_ldflags} ${element}" +- done +- +-else +- if test -n "${enable_smb}"; then +- { { echo "$as_me:$LINENO: error: cannot find libsmbclient headers" >&5 +-echo "$as_me: error: cannot find libsmbclient headers" >&2;} +- { (exit 1); exit 1; }; } +- fi +-fi +- +-done +- +- { echo "$as_me:$LINENO: checking for struct _SMBCCTX.close_fn" >&5 +-echo $ECHO_N "checking for struct _SMBCCTX.close_fn... $ECHO_C" >&6; } +-if test "${ac_cv_member_struct__SMBCCTX_close_fn+set}" = set; then +- echo $ECHO_N "(cached) $ECHO_C" >&6 +-else +- cat >conftest.$ac_ext <<_ACEOF +-/* confdefs.h. */ +-_ACEOF +-cat confdefs.h >>conftest.$ac_ext +-cat >>conftest.$ac_ext <<_ACEOF +-/* end confdefs.h. */ +-#include +- +-int +-main () +-{ +-static struct _SMBCCTX ac_aggr; +-if (ac_aggr.close_fn) +-return 0; +- ; +- return 0; +-} +-_ACEOF +-rm -f conftest.$ac_objext +-if { (ac_try="$ac_compile" +-case "(($ac_try" in +- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; +- *) ac_try_echo=$ac_try;; +-esac +-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 +- (eval "$ac_compile") 2>conftest.er1 +- ac_status=$? +- grep -v '^ *+' conftest.er1 >conftest.err +- rm -f conftest.er1 +- cat conftest.err >&5 +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); } && { +- test -z "$ac_c_werror_flag" || +- test ! -s conftest.err +- } && test -s conftest.$ac_objext; then +- ac_cv_member_struct__SMBCCTX_close_fn=yes +-else +- echo "$as_me: failed program was:" >&5 +-sed 's/^/| /' conftest.$ac_ext >&5 +- +- cat >conftest.$ac_ext <<_ACEOF +-/* confdefs.h. */ +-_ACEOF +-cat confdefs.h >>conftest.$ac_ext +-cat >>conftest.$ac_ext <<_ACEOF +-/* end confdefs.h. */ +-#include +- +-int +-main () +-{ +-static struct _SMBCCTX ac_aggr; +-if (sizeof ac_aggr.close_fn) +-return 0; +- ; +- return 0; +-} +-_ACEOF +-rm -f conftest.$ac_objext +-if { (ac_try="$ac_compile" +-case "(($ac_try" in +- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; +- *) ac_try_echo=$ac_try;; +-esac +-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 +- (eval "$ac_compile") 2>conftest.er1 +- ac_status=$? +- grep -v '^ *+' conftest.er1 >conftest.err +- rm -f conftest.er1 +- cat conftest.err >&5 +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); } && { +- test -z "$ac_c_werror_flag" || +- test ! -s conftest.err +- } && test -s conftest.$ac_objext; then +- ac_cv_member_struct__SMBCCTX_close_fn=yes +-else +- echo "$as_me: failed program was:" >&5 +-sed 's/^/| /' conftest.$ac_ext >&5 +- +- ac_cv_member_struct__SMBCCTX_close_fn=no +-fi +- +-rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext +-fi +- +-rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext +-fi +-{ echo "$as_me:$LINENO: result: $ac_cv_member_struct__SMBCCTX_close_fn" >&5 +-echo "${ECHO_T}$ac_cv_member_struct__SMBCCTX_close_fn" >&6; } +-if test $ac_cv_member_struct__SMBCCTX_close_fn = yes; then +- +-cat >>confdefs.h <<\_ACEOF +-#define HAVE__SMBCCTX_CLOSE_FN 1 +-_ACEOF +- +-fi +- +-fi +- +-# Check whether --enable-dvbpsi was given. +-if test "${enable_dvbpsi+set}" = set; then +- enableval=$enable_dvbpsi; +-fi +- +-if test "${enable_dvbpsi}" != "no" +-then +- +-# Check whether --with-dvbpsi was given. +-if test "${with_dvbpsi+set}" = set; then +- withval=$with_dvbpsi; +-fi +- +- +-# Check whether --with-dvbpsi was given. +-if test "${with_dvbpsi+set}" = set; then +- withval=$with_dvbpsi; +-fi +- +- case "${with_dvbpsi}" in +- ""|yes) +- if test -z "${with_dvbpsi_tree}" +- then +- +-for ac_header in dvbpsi/dr.h +-do +-as_ac_Header=`echo "ac_cv_header_$ac_header" | $as_tr_sh` +-{ echo "$as_me:$LINENO: checking for $ac_header" >&5 +-echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6; } +-if { as_var=$as_ac_Header; eval "test \"\${$as_var+set}\" = set"; }; then +- echo $ECHO_N "(cached) $ECHO_C" >&6 +-else +- cat >conftest.$ac_ext <<_ACEOF +-/* confdefs.h. */ +-_ACEOF +-cat confdefs.h >>conftest.$ac_ext +-cat >>conftest.$ac_ext <<_ACEOF +-/* end confdefs.h. */ +-#if defined( HAVE_STDINT_H ) +-# include +-#elif defined( HAVE_INTTYPES_H ) +-# include +-#endif +-#include +-#include +-#include +-#include +- +-#include <$ac_header> +-_ACEOF +-rm -f conftest.$ac_objext +-if { (ac_try="$ac_compile" +-case "(($ac_try" in +- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; +- *) ac_try_echo=$ac_try;; +-esac +-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 +- (eval "$ac_compile") 2>conftest.er1 +- ac_status=$? +- grep -v '^ *+' conftest.er1 >conftest.err +- rm -f conftest.er1 +- cat conftest.err >&5 +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); } && { +- test -z "$ac_c_werror_flag" || +- test ! -s conftest.err +- } && test -s conftest.$ac_objext; then +- eval "$as_ac_Header=yes" +-else +- echo "$as_me: failed program was:" >&5 +-sed 's/^/| /' conftest.$ac_ext >&5 +- +- eval "$as_ac_Header=no" +-fi +- +-rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext +-fi +-ac_res=`eval echo '${'$as_ac_Header'}'` +- { echo "$as_me:$LINENO: result: $ac_res" >&5 +-echo "${ECHO_T}$ac_res" >&6; } +-if test `eval echo '${'$as_ac_Header'}'` = yes; then +- cat >>confdefs.h <<_ACEOF +-#define `echo "HAVE_$ac_header" | $as_tr_cpp` 1 +-_ACEOF +- +- PLUGINS="${PLUGINS} ts" +- +- if test "${enable_sout}" != "no"; then +- +- BUILTINS="${BUILTINS} mux_ts" +- +- fi +- +- for element in mux_ts ts dvb; do +- eval "LDFLAGS_${element}="'"'"-ldvbpsi "'$'"{LDFLAGS_${element}} "'"' +- am_modules_with_ldflags="${am_modules_with_ldflags} ${element}" +- done +- +-else +- { echo "$as_me:$LINENO: WARNING: cannot find libdvbpsi headers" >&5 +-echo "$as_me: WARNING: cannot find libdvbpsi headers" >&2;} +-fi +- +-done +- +- else +- { echo "$as_me:$LINENO: checking for libdvbpsi.a in ${with_dvbpsi_tree}" >&5 +-echo $ECHO_N "checking for libdvbpsi.a in ${with_dvbpsi_tree}... $ECHO_C" >&6; } +- real_dvbpsi_tree="`cd ${with_dvbpsi_tree} 2>/dev/null && pwd`" +- if test -z "${real_dvbpsi_tree}" +- then +- { echo "$as_me:$LINENO: result: no" >&5 +-echo "${ECHO_T}no" >&6; } +- { { echo "$as_me:$LINENO: error: cannot cd to ${with_dvbpsi_tree}" >&5 +-echo "$as_me: error: cannot cd to ${with_dvbpsi_tree}" >&2;} +- { (exit 1); exit 1; }; } +- fi +- if test -f "${real_dvbpsi_tree}/src/.libs/libdvbpsi.a" +- then +- { echo "$as_me:$LINENO: result: ${real_dvbpsi_tree}/src/.libs/libdvbpsi.a" >&5 +-echo "${ECHO_T}${real_dvbpsi_tree}/src/.libs/libdvbpsi.a" >&6; } +- +- BUILTINS="${BUILTINS} ts" +- +- if test "${enable_sout}" != "no"; then +- +- BUILTINS="${BUILTINS} mux_ts" +- +- fi +- +- for element in mux_ts ts dvb; do +- eval "CPPFLAGS_${element}="'"$'"{CPPFLAGS_${element}} -I${real_dvbpsi_tree}/src"'"' +- am_modules_with_cppflags="${am_modules_with_cppflags} ${element}" +- done +- +- +- for element in mux_ts ts dvb; do +- eval "LDFLAGS_${element}="'"'"${real_dvbpsi_tree}/src/.libs/libdvbpsi.a "'$'"{LDFLAGS_${element}} "'"' +- am_modules_with_ldflags="${am_modules_with_ldflags} ${element}" +- done +- +- else +- { echo "$as_me:$LINENO: result: no" >&5 +-echo "${ECHO_T}no" >&6; } +- { { echo "$as_me:$LINENO: error: cannot find ${real_dvbpsi_tree}/src/.libs/libdvbpsi.a, make sure you compiled libdvbpsi in ${with_dvbpsi_tree}" >&5 +-echo "$as_me: error: cannot find ${real_dvbpsi_tree}/src/.libs/libdvbpsi.a, make sure you compiled libdvbpsi in ${with_dvbpsi_tree}" >&2;} +- { (exit 1); exit 1; }; } +- fi +- fi +- ;; +- no) +- ;; +- *) +- { echo "$as_me:$LINENO: checking for dvbpsi headers in ${with_dvbpsi}" >&5 +-echo $ECHO_N "checking for dvbpsi headers in ${with_dvbpsi}... $ECHO_C" >&6; } +- if test -z "${with_dvbpsi}" +- then +- LDFLAGS_test="" +- CPPFLAGS_test="" +- else +- LDFLAGS_test="-L${with_dvbpsi}/lib" +- CPPFLAGS_test="-I${with_dvbpsi}/include" +- fi +- CPPFLAGS="${CPPFLAGS_save} ${CPPFLAGS_test}" +- +-for ac_header in dvbpsi/dr.h +-do +-as_ac_Header=`echo "ac_cv_header_$ac_header" | $as_tr_sh` +-if { as_var=$as_ac_Header; eval "test \"\${$as_var+set}\" = set"; }; then +- { echo "$as_me:$LINENO: checking for $ac_header" >&5 +-echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6; } +-if { as_var=$as_ac_Header; eval "test \"\${$as_var+set}\" = set"; }; then +- echo $ECHO_N "(cached) $ECHO_C" >&6 +-fi +-ac_res=`eval echo '${'$as_ac_Header'}'` +- { echo "$as_me:$LINENO: result: $ac_res" >&5 +-echo "${ECHO_T}$ac_res" >&6; } +-else +- # Is the header compilable? +-{ echo "$as_me:$LINENO: checking $ac_header usability" >&5 +-echo $ECHO_N "checking $ac_header usability... $ECHO_C" >&6; } +-cat >conftest.$ac_ext <<_ACEOF +-/* confdefs.h. */ +-_ACEOF +-cat confdefs.h >>conftest.$ac_ext +-cat >>conftest.$ac_ext <<_ACEOF +-/* end confdefs.h. */ +-$ac_includes_default +-#include <$ac_header> +-_ACEOF +-rm -f conftest.$ac_objext +-if { (ac_try="$ac_compile" +-case "(($ac_try" in +- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; +- *) ac_try_echo=$ac_try;; +-esac +-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 +- (eval "$ac_compile") 2>conftest.er1 +- ac_status=$? +- grep -v '^ *+' conftest.er1 >conftest.err +- rm -f conftest.er1 +- cat conftest.err >&5 +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); } && { +- test -z "$ac_c_werror_flag" || +- test ! -s conftest.err +- } && test -s conftest.$ac_objext; then +- ac_header_compiler=yes +-else +- echo "$as_me: failed program was:" >&5 +-sed 's/^/| /' conftest.$ac_ext >&5 +- +- ac_header_compiler=no +-fi +- +-rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext +-{ echo "$as_me:$LINENO: result: $ac_header_compiler" >&5 +-echo "${ECHO_T}$ac_header_compiler" >&6; } +- +-# Is the header present? +-{ echo "$as_me:$LINENO: checking $ac_header presence" >&5 +-echo $ECHO_N "checking $ac_header presence... $ECHO_C" >&6; } +-cat >conftest.$ac_ext <<_ACEOF +-/* confdefs.h. */ +-_ACEOF +-cat confdefs.h >>conftest.$ac_ext +-cat >>conftest.$ac_ext <<_ACEOF +-/* end confdefs.h. */ +-#include <$ac_header> +-_ACEOF +-if { (ac_try="$ac_cpp conftest.$ac_ext" +-case "(($ac_try" in +- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; +- *) ac_try_echo=$ac_try;; +-esac +-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 +- (eval "$ac_cpp conftest.$ac_ext") 2>conftest.er1 +- ac_status=$? +- grep -v '^ *+' conftest.er1 >conftest.err +- rm -f conftest.er1 +- cat conftest.err >&5 +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); } >/dev/null && { +- test -z "$ac_c_preproc_warn_flag$ac_c_werror_flag" || +- test ! -s conftest.err +- }; then +- ac_header_preproc=yes +-else +- echo "$as_me: failed program was:" >&5 +-sed 's/^/| /' conftest.$ac_ext >&5 +- +- ac_header_preproc=no +-fi +- +-rm -f conftest.err conftest.$ac_ext +-{ echo "$as_me:$LINENO: result: $ac_header_preproc" >&5 +-echo "${ECHO_T}$ac_header_preproc" >&6; } +- +-# So? What about this header? +-case $ac_header_compiler:$ac_header_preproc:$ac_c_preproc_warn_flag in +- yes:no: ) +- { echo "$as_me:$LINENO: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&5 +-echo "$as_me: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&2;} +- { echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the compiler's result" >&5 +-echo "$as_me: WARNING: $ac_header: proceeding with the compiler's result" >&2;} +- ac_header_preproc=yes +- ;; +- no:yes:* ) +- { echo "$as_me:$LINENO: WARNING: $ac_header: present but cannot be compiled" >&5 +-echo "$as_me: WARNING: $ac_header: present but cannot be compiled" >&2;} +- { echo "$as_me:$LINENO: WARNING: $ac_header: check for missing prerequisite headers?" >&5 +-echo "$as_me: WARNING: $ac_header: check for missing prerequisite headers?" >&2;} +- { echo "$as_me:$LINENO: WARNING: $ac_header: see the Autoconf documentation" >&5 +-echo "$as_me: WARNING: $ac_header: see the Autoconf documentation" >&2;} +- { echo "$as_me:$LINENO: WARNING: $ac_header: section \"Present But Cannot Be Compiled\"" >&5 +-echo "$as_me: WARNING: $ac_header: section \"Present But Cannot Be Compiled\"" >&2;} +- { echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the preprocessor's result" >&5 +-echo "$as_me: WARNING: $ac_header: proceeding with the preprocessor's result" >&2;} +- { echo "$as_me:$LINENO: WARNING: $ac_header: in the future, the compiler will take precedence" >&5 +-echo "$as_me: WARNING: $ac_header: in the future, the compiler will take precedence" >&2;} +- +- ;; +-esac +-{ echo "$as_me:$LINENO: checking for $ac_header" >&5 +-echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6; } +-if { as_var=$as_ac_Header; eval "test \"\${$as_var+set}\" = set"; }; then +- echo $ECHO_N "(cached) $ECHO_C" >&6 +-else +- eval "$as_ac_Header=\$ac_header_preproc" +-fi +-ac_res=`eval echo '${'$as_ac_Header'}'` +- { echo "$as_me:$LINENO: result: $ac_res" >&5 +-echo "${ECHO_T}$ac_res" >&6; } +- +-fi +-if test `eval echo '${'$as_ac_Header'}'` = yes; then +- cat >>confdefs.h <<_ACEOF +-#define `echo "HAVE_$ac_header" | $as_tr_cpp` 1 +-_ACEOF +- +- +- PLUGINS="${PLUGINS} ts" +- +- if test "${enable_sout}" != "no"; then +- +- PLUGINS="${PLUGINS} mux_ts" +- +- fi +- +- for element in mux_ts ts dvb; do +- eval "CPPFLAGS_${element}="'"$'"{CPPFLAGS_${element}} ${CPPFLAGS_test}"'"' +- am_modules_with_cppflags="${am_modules_with_cppflags} ${element}" +- done +- +- +- for element in mux_ts ts dvb; do +- eval "LDFLAGS_${element}="'"'"${LDFLAGS_test} -ldvbpsi "'$'"{LDFLAGS_${element}} "'"' +- am_modules_with_ldflags="${am_modules_with_ldflags} ${element}" +- done +- +- +- +-else +- +- if test -n "${enable_dvbpsi}" +- then +- { { echo "$as_me:$LINENO: error: Could not find libdvbpsi on your system: you may get it from www.videolan.org, you'll need at least version 0.1.1" >&5 +-echo "$as_me: error: Could not find libdvbpsi on your system: you may get it from www.videolan.org, you'll need at least version 0.1.1" >&2;} +- { (exit 1); exit 1; }; } +- fi +- +-fi +- +-done +- +- CPPFLAGS="${CPPFLAGS_save}" +- ;; +- esac +- { echo "$as_me:$LINENO: checking for dvbpsi_GenSDTSections in -ldvbpsi" >&5 +-echo $ECHO_N "checking for dvbpsi_GenSDTSections in -ldvbpsi... $ECHO_C" >&6; } +-if test "${ac_cv_lib_dvbpsi_dvbpsi_GenSDTSections+set}" = set; then +- echo $ECHO_N "(cached) $ECHO_C" >&6 +-else +- ac_check_lib_save_LIBS=$LIBS +-LIBS="-ldvbpsi ${LDFLAGS_ts} $LIBS" +-cat >conftest.$ac_ext <<_ACEOF +-/* confdefs.h. */ +-_ACEOF +-cat confdefs.h >>conftest.$ac_ext +-cat >>conftest.$ac_ext <<_ACEOF +-/* end confdefs.h. */ +- +-/* Override any GCC internal prototype to avoid an error. +- Use char because int might match the return type of a GCC +- builtin and then its argument prototype would still apply. */ +-#ifdef __cplusplus +-extern "C" +-#endif +-char dvbpsi_GenSDTSections (); +-int +-main () +-{ +-return dvbpsi_GenSDTSections (); +- ; +- return 0; +-} +-_ACEOF +-rm -f conftest.$ac_objext conftest$ac_exeext +-if { (ac_try="$ac_link" +-case "(($ac_try" in +- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; +- *) ac_try_echo=$ac_try;; +-esac +-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 +- (eval "$ac_link") 2>conftest.er1 +- ac_status=$? +- grep -v '^ *+' conftest.er1 >conftest.err +- rm -f conftest.er1 +- cat conftest.err >&5 +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); } && { +- test -z "$ac_c_werror_flag" || +- test ! -s conftest.err +- } && test -s conftest$ac_exeext && +- $as_test_x conftest$ac_exeext; then +- ac_cv_lib_dvbpsi_dvbpsi_GenSDTSections=yes +-else +- echo "$as_me: failed program was:" >&5 +-sed 's/^/| /' conftest.$ac_ext >&5 +- +- ac_cv_lib_dvbpsi_dvbpsi_GenSDTSections=no +-fi +- +-rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ +- conftest$ac_exeext conftest.$ac_ext +-LIBS=$ac_check_lib_save_LIBS +-fi +-{ echo "$as_me:$LINENO: result: $ac_cv_lib_dvbpsi_dvbpsi_GenSDTSections" >&5 +-echo "${ECHO_T}$ac_cv_lib_dvbpsi_dvbpsi_GenSDTSections" >&6; } +-if test $ac_cv_lib_dvbpsi_dvbpsi_GenSDTSections = yes; then +- +- +-cat >>confdefs.h <<\_ACEOF +-#define HAVE_DVBPSI_SDT 1 +-_ACEOF +- +- +-fi +- +- +-fi +- +-# Check whether --enable-v4l was given. +-if test "${enable_v4l+set}" = set; then +- enableval=$enable_v4l; +-fi +- +-if test "${enable_v4l}" = "yes" +-then +- +-# Check whether --with-v4l was given. +-if test "${with_v4l+set}" = set; then +- withval=$with_v4l; +-fi +- +- if test "${with_v4l}" != "no" -a -n "${with_v4l}" +- then +- +- for element in v4l; do +- eval "CPPFLAGS_${element}="'"$'"{CPPFLAGS_${element}} -I${with_v4l}/include"'"' +- am_modules_with_cppflags="${am_modules_with_cppflags} ${element}" +- done +- +- fi +- +- CPPFLAGS="${CPPFLAGS_save} ${CPPFLAGS_v4l}" +- +-for ac_header in linux/videodev.h +-do +-as_ac_Header=`echo "ac_cv_header_$ac_header" | $as_tr_sh` +-if { as_var=$as_ac_Header; eval "test \"\${$as_var+set}\" = set"; }; then +- { echo "$as_me:$LINENO: checking for $ac_header" >&5 +-echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6; } +-if { as_var=$as_ac_Header; eval "test \"\${$as_var+set}\" = set"; }; then +- echo $ECHO_N "(cached) $ECHO_C" >&6 +-fi +-ac_res=`eval echo '${'$as_ac_Header'}'` +- { echo "$as_me:$LINENO: result: $ac_res" >&5 +-echo "${ECHO_T}$ac_res" >&6; } +-else +- # Is the header compilable? +-{ echo "$as_me:$LINENO: checking $ac_header usability" >&5 +-echo $ECHO_N "checking $ac_header usability... $ECHO_C" >&6; } +-cat >conftest.$ac_ext <<_ACEOF +-/* confdefs.h. */ +-_ACEOF +-cat confdefs.h >>conftest.$ac_ext +-cat >>conftest.$ac_ext <<_ACEOF +-/* end confdefs.h. */ +-$ac_includes_default +-#include <$ac_header> +-_ACEOF +-rm -f conftest.$ac_objext +-if { (ac_try="$ac_compile" +-case "(($ac_try" in +- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; +- *) ac_try_echo=$ac_try;; +-esac +-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 +- (eval "$ac_compile") 2>conftest.er1 +- ac_status=$? +- grep -v '^ *+' conftest.er1 >conftest.err +- rm -f conftest.er1 +- cat conftest.err >&5 +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); } && { +- test -z "$ac_c_werror_flag" || +- test ! -s conftest.err +- } && test -s conftest.$ac_objext; then +- ac_header_compiler=yes +-else +- echo "$as_me: failed program was:" >&5 +-sed 's/^/| /' conftest.$ac_ext >&5 +- +- ac_header_compiler=no +-fi +- +-rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext +-{ echo "$as_me:$LINENO: result: $ac_header_compiler" >&5 +-echo "${ECHO_T}$ac_header_compiler" >&6; } +- +-# Is the header present? +-{ echo "$as_me:$LINENO: checking $ac_header presence" >&5 +-echo $ECHO_N "checking $ac_header presence... $ECHO_C" >&6; } +-cat >conftest.$ac_ext <<_ACEOF +-/* confdefs.h. */ +-_ACEOF +-cat confdefs.h >>conftest.$ac_ext +-cat >>conftest.$ac_ext <<_ACEOF +-/* end confdefs.h. */ +-#include <$ac_header> +-_ACEOF +-if { (ac_try="$ac_cpp conftest.$ac_ext" +-case "(($ac_try" in +- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; +- *) ac_try_echo=$ac_try;; +-esac +-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 +- (eval "$ac_cpp conftest.$ac_ext") 2>conftest.er1 +- ac_status=$? +- grep -v '^ *+' conftest.er1 >conftest.err +- rm -f conftest.er1 +- cat conftest.err >&5 +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); } >/dev/null && { +- test -z "$ac_c_preproc_warn_flag$ac_c_werror_flag" || +- test ! -s conftest.err +- }; then +- ac_header_preproc=yes +-else +- echo "$as_me: failed program was:" >&5 +-sed 's/^/| /' conftest.$ac_ext >&5 +- +- ac_header_preproc=no +-fi +- +-rm -f conftest.err conftest.$ac_ext +-{ echo "$as_me:$LINENO: result: $ac_header_preproc" >&5 +-echo "${ECHO_T}$ac_header_preproc" >&6; } +- +-# So? What about this header? +-case $ac_header_compiler:$ac_header_preproc:$ac_c_preproc_warn_flag in +- yes:no: ) +- { echo "$as_me:$LINENO: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&5 +-echo "$as_me: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&2;} +- { echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the compiler's result" >&5 +-echo "$as_me: WARNING: $ac_header: proceeding with the compiler's result" >&2;} +- ac_header_preproc=yes +- ;; +- no:yes:* ) +- { echo "$as_me:$LINENO: WARNING: $ac_header: present but cannot be compiled" >&5 +-echo "$as_me: WARNING: $ac_header: present but cannot be compiled" >&2;} +- { echo "$as_me:$LINENO: WARNING: $ac_header: check for missing prerequisite headers?" >&5 +-echo "$as_me: WARNING: $ac_header: check for missing prerequisite headers?" >&2;} +- { echo "$as_me:$LINENO: WARNING: $ac_header: see the Autoconf documentation" >&5 +-echo "$as_me: WARNING: $ac_header: see the Autoconf documentation" >&2;} +- { echo "$as_me:$LINENO: WARNING: $ac_header: section \"Present But Cannot Be Compiled\"" >&5 +-echo "$as_me: WARNING: $ac_header: section \"Present But Cannot Be Compiled\"" >&2;} +- { echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the preprocessor's result" >&5 +-echo "$as_me: WARNING: $ac_header: proceeding with the preprocessor's result" >&2;} +- { echo "$as_me:$LINENO: WARNING: $ac_header: in the future, the compiler will take precedence" >&5 +-echo "$as_me: WARNING: $ac_header: in the future, the compiler will take precedence" >&2;} +- +- ;; +-esac +-{ echo "$as_me:$LINENO: checking for $ac_header" >&5 +-echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6; } +-if { as_var=$as_ac_Header; eval "test \"\${$as_var+set}\" = set"; }; then +- echo $ECHO_N "(cached) $ECHO_C" >&6 ++return remove (); ++ ; ++ return 0; ++} ++_ACEOF ++if ac_fn_c_try_link "$LINENO"; then : ++ ac_cv_lib_posix_remove=yes + else +- eval "$as_ac_Header=\$ac_header_preproc" ++ ac_cv_lib_posix_remove=no + fi +-ac_res=`eval echo '${'$as_ac_Header'}'` +- { echo "$as_me:$LINENO: result: $ac_res" >&5 +-echo "${ECHO_T}$ac_res" >&6; } +- ++rm -f core conftest.err conftest.$ac_objext \ ++ conftest$ac_exeext conftest.$ac_ext ++LIBS=$ac_check_lib_save_LIBS ++fi ++{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_posix_remove" >&5 ++$as_echo "$ac_cv_lib_posix_remove" >&6; } ++if test "x$ac_cv_lib_posix_remove" = xyes; then : ++ X_EXTRA_LIBS="$X_EXTRA_LIBS -lposix" + fi +-if test `eval echo '${'$as_ac_Header'}'` = yes; then +- cat >>confdefs.h <<_ACEOF +-#define `echo "HAVE_$ac_header" | $as_tr_cpp` 1 +-_ACEOF +- + +- PLUGINS="${PLUGINS} v4l" ++ fi + ++ # BSDI BSD/OS 2.1 needs -lipc for XOpenDisplay. ++ ac_fn_c_check_func "$LINENO" "shmat" "ac_cv_func_shmat" ++if test "x$ac_cv_func_shmat" = xyes; then : + + fi + +-done ++ if test $ac_cv_func_shmat = no; then ++ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for shmat in -lipc" >&5 ++$as_echo_n "checking for shmat in -lipc... " >&6; } ++if ${ac_cv_lib_ipc_shmat+:} false; then : ++ $as_echo_n "(cached) " >&6 ++else ++ ac_check_lib_save_LIBS=$LIBS ++LIBS="-lipc $LIBS" ++cat confdefs.h - <<_ACEOF >conftest.$ac_ext ++/* end confdefs.h. */ + +- CPPFLAGS="${CPPFLAGS_save}" ++/* Override any GCC internal prototype to avoid an error. ++ Use char because int might match the return type of a GCC ++ builtin and then its argument prototype would still apply. */ ++#ifdef __cplusplus ++extern "C" ++#endif ++char shmat (); ++int ++main () ++{ ++return shmat (); ++ ; ++ return 0; ++} ++_ACEOF ++if ac_fn_c_try_link "$LINENO"; then : ++ ac_cv_lib_ipc_shmat=yes ++else ++ ac_cv_lib_ipc_shmat=no + fi +- +-# Check whether --enable-pvr was given. +-if test "${enable_pvr+set}" = set; then +- enableval=$enable_pvr; ++rm -f core conftest.err conftest.$ac_objext \ ++ conftest$ac_exeext conftest.$ac_ext ++LIBS=$ac_check_lib_save_LIBS + fi +- +-if test "${enable_pvr}" = "yes" +-then +- +- PLUGINS="${PLUGINS} pvr" +- +- +-# Check whether --with-videodev2 was given. +-if test "${with_videodev2+set}" = set; then +- withval=$with_videodev2; ++{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_ipc_shmat" >&5 ++$as_echo "$ac_cv_lib_ipc_shmat" >&6; } ++if test "x$ac_cv_lib_ipc_shmat" = xyes; then : ++ X_EXTRA_LIBS="$X_EXTRA_LIBS -lipc" + fi + +- if test "${with_videodev2}" != "no" -a -n "${with_videodev2}" +- then +- +-cat >>confdefs.h <<_ACEOF +-#define VIDEODEV2_H_FILE "${with_videodev2}" +-_ACEOF +- +- fi +- ++ fi ++ fi + +- { echo "$as_me:$LINENO: checking for new linux/videodev2.h" >&5 +-echo $ECHO_N "checking for new linux/videodev2.h... $ECHO_C" >&6; } +-if test "${new_linux_videodev2_h+set}" = set; then +- echo $ECHO_N "(cached) $ECHO_C" >&6 ++ # Check for libraries that X11R6 Xt/Xaw programs need. ++ ac_save_LDFLAGS=$LDFLAGS ++ test -n "$x_libraries" && LDFLAGS="$LDFLAGS -L$x_libraries" ++ # SM needs ICE to (dynamically) link under SunOS 4.x (so we have to ++ # check for ICE first), but we must link in the order -lSM -lICE or ++ # we get undefined symbols. So assume we have SM if we have ICE. ++ # These have to be linked with before -lX11, unlike the other ++ # libraries we check for below, so use a different variable. ++ # John Interrante, Karl Berry ++ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for IceConnectionNumber in -lICE" >&5 ++$as_echo_n "checking for IceConnectionNumber in -lICE... " >&6; } ++if ${ac_cv_lib_ICE_IceConnectionNumber+:} false; then : ++ $as_echo_n "(cached) " >&6 + else +- cat >conftest.$ac_ext <<_ACEOF +-/* confdefs.h. */ +-_ACEOF +-cat confdefs.h >>conftest.$ac_ext +-cat >>conftest.$ac_ext <<_ACEOF ++ ac_check_lib_save_LIBS=$LIBS ++LIBS="-lICE $X_EXTRA_LIBS $LIBS" ++cat confdefs.h - <<_ACEOF >conftest.$ac_ext + /* end confdefs.h. */ + +- #include +- # ifdef VIDEODEV2_H_FILE +- # include VIDEODEV2_H_FILE +- # else +- # include +- # endif +- ++/* Override any GCC internal prototype to avoid an error. ++ Use char because int might match the return type of a GCC ++ builtin and then its argument prototype would still apply. */ ++#ifdef __cplusplus ++extern "C" ++#endif ++char IceConnectionNumber (); + int + main () + { +-struct v4l2_ext_controls ctrls; ctrls.ctrl_class = V4L2_CTRL_CLASS_MPEG; ++return IceConnectionNumber (); + ; + return 0; + } + _ACEOF +-rm -f conftest.$ac_objext +-if { (ac_try="$ac_compile" +-case "(($ac_try" in +- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; +- *) ac_try_echo=$ac_try;; +-esac +-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 +- (eval "$ac_compile") 2>conftest.er1 +- ac_status=$? +- grep -v '^ *+' conftest.er1 >conftest.err +- rm -f conftest.er1 +- cat conftest.err >&5 +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); } && { +- test -z "$ac_c_werror_flag" || +- test ! -s conftest.err +- } && test -s conftest.$ac_objext; then +- new_linux_videodev2_h=yes ++if ac_fn_c_try_link "$LINENO"; then : ++ ac_cv_lib_ICE_IceConnectionNumber=yes + else +- echo "$as_me: failed program was:" >&5 +-sed 's/^/| /' conftest.$ac_ext >&5 ++ ac_cv_lib_ICE_IceConnectionNumber=no ++fi ++rm -f core conftest.err conftest.$ac_objext \ ++ conftest$ac_exeext conftest.$ac_ext ++LIBS=$ac_check_lib_save_LIBS ++fi ++{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_ICE_IceConnectionNumber" >&5 ++$as_echo "$ac_cv_lib_ICE_IceConnectionNumber" >&6; } ++if test "x$ac_cv_lib_ICE_IceConnectionNumber" = xyes; then : ++ X_PRE_LIBS="$X_PRE_LIBS -lSM -lICE" ++fi ++ ++ LDFLAGS=$ac_save_LDFLAGS + +- new_linux_videodev2_h=no + fi + +-rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext ++ ++ ++# Check whether --enable-hal was given. ++if test "${enable_hal+set}" = set; then : ++ enableval=$enable_hal; + fi +-{ echo "$as_me:$LINENO: result: $new_linux_videodev2_h" >&5 +-echo "${ECHO_T}$new_linux_videodev2_h" >&6; } +- if test "${new_linux_videodev2_h}" != "no"; then + +-cat >>confdefs.h <<\_ACEOF +-#define HAVE_NEW_LINUX_VIDEODEV2_H 1 +-_ACEOF + ++if test "${enable_hal}" != "no" ++then ++ ++ ++if test "x$ac_cv_env_PKG_CONFIG_set" != "xset"; then ++ if test -n "$ac_tool_prefix"; then ++ # Extract the first word of "${ac_tool_prefix}pkg-config", so it can be a program name with args. ++set dummy ${ac_tool_prefix}pkg-config; ac_word=$2 ++{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 ++$as_echo_n "checking for $ac_word... " >&6; } ++if ${ac_cv_path_PKG_CONFIG+:} false; then : ++ $as_echo_n "(cached) " >&6 ++else ++ case $PKG_CONFIG in ++ [\\/]* | ?:[\\/]*) ++ ac_cv_path_PKG_CONFIG="$PKG_CONFIG" # Let the user override the test with a path. ++ ;; ++ *) ++ as_save_IFS=$IFS; IFS=$PATH_SEPARATOR ++for as_dir in $PATH ++do ++ IFS=$as_save_IFS ++ test -z "$as_dir" && as_dir=. ++ for ac_exec_ext in '' $ac_executable_extensions; do ++ if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then ++ ac_cv_path_PKG_CONFIG="$as_dir/$ac_word$ac_exec_ext" ++ $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 ++ break 2 ++ fi ++done ++ done ++IFS=$as_save_IFS ++ ++ ;; ++esac ++fi ++PKG_CONFIG=$ac_cv_path_PKG_CONFIG ++if test -n "$PKG_CONFIG"; then ++ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $PKG_CONFIG" >&5 ++$as_echo "$PKG_CONFIG" >&6; } ++else ++ { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 ++$as_echo "no" >&6; } ++fi ++ ++ ++fi ++if test -z "$ac_cv_path_PKG_CONFIG"; then ++ ac_pt_PKG_CONFIG=$PKG_CONFIG ++ # Extract the first word of "pkg-config", so it can be a program name with args. ++set dummy pkg-config; ac_word=$2 ++{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 ++$as_echo_n "checking for $ac_word... " >&6; } ++if ${ac_cv_path_ac_pt_PKG_CONFIG+:} false; then : ++ $as_echo_n "(cached) " >&6 ++else ++ case $ac_pt_PKG_CONFIG in ++ [\\/]* | ?:[\\/]*) ++ ac_cv_path_ac_pt_PKG_CONFIG="$ac_pt_PKG_CONFIG" # Let the user override the test with a path. ++ ;; ++ *) ++ as_save_IFS=$IFS; IFS=$PATH_SEPARATOR ++for as_dir in $PATH ++do ++ IFS=$as_save_IFS ++ test -z "$as_dir" && as_dir=. ++ for ac_exec_ext in '' $ac_executable_extensions; do ++ if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then ++ ac_cv_path_ac_pt_PKG_CONFIG="$as_dir/$ac_word$ac_exec_ext" ++ $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 ++ break 2 + fi ++done ++ done ++IFS=$as_save_IFS ++ ++ ;; ++esac ++fi ++ac_pt_PKG_CONFIG=$ac_cv_path_ac_pt_PKG_CONFIG ++if test -n "$ac_pt_PKG_CONFIG"; then ++ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_pt_PKG_CONFIG" >&5 ++$as_echo "$ac_pt_PKG_CONFIG" >&6; } ++else ++ { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 ++$as_echo "no" >&6; } + fi + +-# Check whether --enable-gnomevfs was given. +-if test "${enable_gnomevfs+set}" = set; then +- enableval=$enable_gnomevfs; ++ if test "x$ac_pt_PKG_CONFIG" = x; then ++ PKG_CONFIG="" ++ else ++ case $cross_compiling:$ac_tool_warned in ++yes:) ++{ $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet" >&5 ++$as_echo "$as_me: WARNING: using cross tools not prefixed with host triplet" >&2;} ++ac_tool_warned=yes ;; ++esac ++ PKG_CONFIG=$ac_pt_PKG_CONFIG ++ fi ++else ++ PKG_CONFIG="$ac_cv_path_PKG_CONFIG" + fi + +-if test "${enable_gnomevfs}" != "no" +-then ++fi ++if test -n "$PKG_CONFIG"; then ++ _pkg_min_version=0.9.0 ++ { $as_echo "$as_me:${as_lineno-$LINENO}: checking pkg-config is at least version $_pkg_min_version" >&5 ++$as_echo_n "checking pkg-config is at least version $_pkg_min_version... " >&6; } ++ if $PKG_CONFIG --atleast-pkgconfig-version $_pkg_min_version; then ++ { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5 ++$as_echo "yes" >&6; } ++ else ++ { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 ++$as_echo "no" >&6; } ++ PKG_CONFIG="" ++ fi ++ ++fi + + pkg_failed=no +-{ echo "$as_me:$LINENO: checking for GNOMEVFS" >&5 +-echo $ECHO_N "checking for GNOMEVFS... $ECHO_C" >&6; } ++{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for HAL" >&5 ++$as_echo_n "checking for HAL... " >&6; } + + if test -n "$PKG_CONFIG"; then +- if test -n "$GNOMEVFS_CFLAGS"; then +- pkg_cv_GNOMEVFS_CFLAGS="$GNOMEVFS_CFLAGS" ++ if test -n "$HAL_CFLAGS"; then ++ pkg_cv_HAL_CFLAGS="$HAL_CFLAGS" + else + if test -n "$PKG_CONFIG" && \ +- { (echo "$as_me:$LINENO: \$PKG_CONFIG --exists --print-errors \"gnome-vfs-2.0\"") >&5 +- ($PKG_CONFIG --exists --print-errors "gnome-vfs-2.0") 2>&5 ++ { { $as_echo "$as_me:${as_lineno-$LINENO}: \$PKG_CONFIG --exists --print-errors \"hal >= 0.5.0\""; } >&5 ++ ($PKG_CONFIG --exists --print-errors "hal >= 0.5.0") 2>&5 + ac_status=$? +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); }; then +- pkg_cv_GNOMEVFS_CFLAGS=`$PKG_CONFIG --cflags "gnome-vfs-2.0" 2>/dev/null` ++ $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 ++ test $ac_status = 0; }; then ++ pkg_cv_HAL_CFLAGS=`$PKG_CONFIG --cflags "hal >= 0.5.0" 2>/dev/null` + else + pkg_failed=yes + fi +@@ -40363,16 +27986,16 @@ else + pkg_failed=untried + fi + if test -n "$PKG_CONFIG"; then +- if test -n "$GNOMEVFS_LIBS"; then +- pkg_cv_GNOMEVFS_LIBS="$GNOMEVFS_LIBS" ++ if test -n "$HAL_LIBS"; then ++ pkg_cv_HAL_LIBS="$HAL_LIBS" + else + if test -n "$PKG_CONFIG" && \ +- { (echo "$as_me:$LINENO: \$PKG_CONFIG --exists --print-errors \"gnome-vfs-2.0\"") >&5 +- ($PKG_CONFIG --exists --print-errors "gnome-vfs-2.0") 2>&5 ++ { { $as_echo "$as_me:${as_lineno-$LINENO}: \$PKG_CONFIG --exists --print-errors \"hal >= 0.5.0\""; } >&5 ++ ($PKG_CONFIG --exists --print-errors "hal >= 0.5.0") 2>&5 + ac_status=$? +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); }; then +- pkg_cv_GNOMEVFS_LIBS=`$PKG_CONFIG --libs "gnome-vfs-2.0" 2>/dev/null` ++ $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 ++ test $ac_status = 0; }; then ++ pkg_cv_HAL_LIBS=`$PKG_CONFIG --libs "hal >= 0.5.0" 2>/dev/null` + else + pkg_failed=yes + fi +@@ -40391,76 +28014,31 @@ else + _pkg_short_errors_supported=no + fi + if test $_pkg_short_errors_supported = yes; then +- GNOMEVFS_PKG_ERRORS=`$PKG_CONFIG --short-errors --errors-to-stdout --print-errors "gnome-vfs-2.0"` ++ HAL_PKG_ERRORS=`$PKG_CONFIG --short-errors --errors-to-stdout --print-errors "hal >= 0.5.0"` + else +- GNOMEVFS_PKG_ERRORS=`$PKG_CONFIG --errors-to-stdout --print-errors "gnome-vfs-2.0"` ++ HAL_PKG_ERRORS=`$PKG_CONFIG --errors-to-stdout --print-errors "hal >= 0.5.0"` + fi + # Put the nasty error message in config.log where it belongs +- echo "$GNOMEVFS_PKG_ERRORS" >&5 +- +- { echo "$as_me:$LINENO: result: no" >&5 +-echo "${ECHO_T}no" >&6; } +- { echo "$as_me:$LINENO: WARNING: GnomeVFS support disabled because GnomeVFS development headers not found" >&5 +-echo "$as_me: WARNING: GnomeVFS support disabled because GnomeVFS development headers not found" >&2;} +-elif test $pkg_failed = untried; then +- { echo "$as_me:$LINENO: WARNING: GnomeVFS support disabled because GnomeVFS development headers not found" >&5 +-echo "$as_me: WARNING: GnomeVFS support disabled because GnomeVFS development headers not found" >&2;} +-else +- GNOMEVFS_CFLAGS=$pkg_cv_GNOMEVFS_CFLAGS +- GNOMEVFS_LIBS=$pkg_cv_GNOMEVFS_LIBS +- { echo "$as_me:$LINENO: result: yes" >&5 +-echo "${ECHO_T}yes" >&6; } +- +- for element in access_gnomevfs; do +- eval "LDFLAGS_${element}="'"'"$GNOMEVFS_LIBS "'$'"{LDFLAGS_${element}} "'"' +- am_modules_with_ldflags="${am_modules_with_ldflags} ${element}" +- done +- +- +- for element in access_gnomevfs; do +- eval "CPPFLAGS_${element}="'"$'"{CPPFLAGS_${element}} $GNOMEVFS_CPPFLAGS"'"' +- am_modules_with_cppflags="${am_modules_with_cppflags} ${element}" +- done +- +- +- for element in access_gnomevfs; do +- eval "CFLAGS_${element}="'"$'"{CFLAGS_${element}} $GNOMEVFS_CFLAGS"'"' +- am_modules_with_cflags="${am_modules_with_cflags} ${element}" +- done +- +- +- PLUGINS="${PLUGINS} access_gnomevfs" +- +-fi +-fi +- +-# Check whether --enable-libcdio was given. +-if test "${enable_libcdio+set}" = set; then +- enableval=$enable_libcdio; +-fi +- +- ++ echo "$HAL_PKG_ERRORS" >&5 + +-have_libcdio=no +-have_libvcdinfo=no +-if test "${enable_libcdio}" != "no" +-then ++ { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 ++$as_echo "no" >&6; } + + pkg_failed=no +-{ echo "$as_me:$LINENO: checking for LIBCDIO" >&5 +-echo $ECHO_N "checking for LIBCDIO... $ECHO_C" >&6; } ++{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for HAL" >&5 ++$as_echo_n "checking for HAL... " >&6; } + + if test -n "$PKG_CONFIG"; then +- if test -n "$LIBCDIO_CFLAGS"; then +- pkg_cv_LIBCDIO_CFLAGS="$LIBCDIO_CFLAGS" ++ if test -n "$HAL_CFLAGS"; then ++ pkg_cv_HAL_CFLAGS="$HAL_CFLAGS" + else + if test -n "$PKG_CONFIG" && \ +- { (echo "$as_me:$LINENO: \$PKG_CONFIG --exists --print-errors \"libcdio >= 0.72\"") >&5 +- ($PKG_CONFIG --exists --print-errors "libcdio >= 0.72") 2>&5 ++ { { $as_echo "$as_me:${as_lineno-$LINENO}: \$PKG_CONFIG --exists --print-errors \"hal >= 0.2.97\""; } >&5 ++ ($PKG_CONFIG --exists --print-errors "hal >= 0.2.97") 2>&5 + ac_status=$? +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); }; then +- pkg_cv_LIBCDIO_CFLAGS=`$PKG_CONFIG --cflags "libcdio >= 0.72" 2>/dev/null` ++ $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 ++ test $ac_status = 0; }; then ++ pkg_cv_HAL_CFLAGS=`$PKG_CONFIG --cflags "hal >= 0.2.97" 2>/dev/null` + else + pkg_failed=yes + fi +@@ -40469,16 +28047,16 @@ else + pkg_failed=untried + fi + if test -n "$PKG_CONFIG"; then +- if test -n "$LIBCDIO_LIBS"; then +- pkg_cv_LIBCDIO_LIBS="$LIBCDIO_LIBS" ++ if test -n "$HAL_LIBS"; then ++ pkg_cv_HAL_LIBS="$HAL_LIBS" + else + if test -n "$PKG_CONFIG" && \ +- { (echo "$as_me:$LINENO: \$PKG_CONFIG --exists --print-errors \"libcdio >= 0.72\"") >&5 +- ($PKG_CONFIG --exists --print-errors "libcdio >= 0.72") 2>&5 ++ { { $as_echo "$as_me:${as_lineno-$LINENO}: \$PKG_CONFIG --exists --print-errors \"hal >= 0.2.97\""; } >&5 ++ ($PKG_CONFIG --exists --print-errors "hal >= 0.2.97") 2>&5 + ac_status=$? +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); }; then +- pkg_cv_LIBCDIO_LIBS=`$PKG_CONFIG --libs "libcdio >= 0.72" 2>/dev/null` ++ $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 ++ test $ac_status = 0; }; then ++ pkg_cv_HAL_LIBS=`$PKG_CONFIG --libs "hal >= 0.2.97" 2>/dev/null` + else + pkg_failed=yes + fi +@@ -40497,49 +28075,63 @@ else + _pkg_short_errors_supported=no + fi + if test $_pkg_short_errors_supported = yes; then +- LIBCDIO_PKG_ERRORS=`$PKG_CONFIG --short-errors --errors-to-stdout --print-errors "libcdio >= 0.72"` ++ HAL_PKG_ERRORS=`$PKG_CONFIG --short-errors --errors-to-stdout --print-errors "hal >= 0.2.97"` + else +- LIBCDIO_PKG_ERRORS=`$PKG_CONFIG --errors-to-stdout --print-errors "libcdio >= 0.72"` ++ HAL_PKG_ERRORS=`$PKG_CONFIG --errors-to-stdout --print-errors "hal >= 0.2.97"` + fi + # Put the nasty error message in config.log where it belongs +- echo "$LIBCDIO_PKG_ERRORS" >&5 ++ echo "$HAL_PKG_ERRORS" >&5 + +- { echo "$as_me:$LINENO: result: no" >&5 +-echo "${ECHO_T}no" >&6; } +- { echo "$as_me:$LINENO: WARNING: CD Reading and information library not found" >&5 +-echo "$as_me: WARNING: CD Reading and information library not found" >&2;} ++ { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 ++$as_echo "no" >&6; } ++ { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: HAL library not found" >&5 ++$as_echo "$as_me: WARNING: HAL library not found" >&2;} + elif test $pkg_failed = untried; then +- { echo "$as_me:$LINENO: WARNING: CD Reading and information library not found" >&5 +-echo "$as_me: WARNING: CD Reading and information library not found" >&2;} ++ { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: HAL library not found" >&5 ++$as_echo "$as_me: WARNING: HAL library not found" >&2;} + else +- LIBCDIO_CFLAGS=$pkg_cv_LIBCDIO_CFLAGS +- LIBCDIO_LIBS=$pkg_cv_LIBCDIO_LIBS +- { echo "$as_me:$LINENO: result: yes" >&5 +-echo "${ECHO_T}yes" >&6; } +- have_libcdio=yes ++ HAL_CFLAGS=$pkg_cv_HAL_CFLAGS ++ HAL_LIBS=$pkg_cv_HAL_LIBS ++ { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5 ++$as_echo "yes" >&6; } ++ ++$as_echo "#define HAVE_HAL /**/" >>confdefs.h ++ ++ ++ PLUGINS="${PLUGINS} hal" ++ ++ ++ for element in vlc hal; do ++ eval "LDFLAGS_${element}="'"'"$HAL_LIBS "'$'"{LDFLAGS_${element}} "'"' ++ am_modules_with_ldflags="${am_modules_with_ldflags} ${element}" ++ done + +-cat >>confdefs.h <<\_ACEOF +-#define HAVE_LIBCDIO +-_ACEOF ++ ++ for element in vlc hal; do ++ eval "CFLAGS_${element}="'"$'"{CFLAGS_${element}} $HAL_CFLAGS"'"' ++ am_modules_with_cflags="${am_modules_with_cflags} ${element}" ++ done + + fi + + ++elif test $pkg_failed = untried; then ++ + pkg_failed=no +-{ echo "$as_me:$LINENO: checking for VCDINFO" >&5 +-echo $ECHO_N "checking for VCDINFO... $ECHO_C" >&6; } ++{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for HAL" >&5 ++$as_echo_n "checking for HAL... " >&6; } + + if test -n "$PKG_CONFIG"; then +- if test -n "$VCDINFO_CFLAGS"; then +- pkg_cv_VCDINFO_CFLAGS="$VCDINFO_CFLAGS" ++ if test -n "$HAL_CFLAGS"; then ++ pkg_cv_HAL_CFLAGS="$HAL_CFLAGS" + else + if test -n "$PKG_CONFIG" && \ +- { (echo "$as_me:$LINENO: \$PKG_CONFIG --exists --print-errors \"libvcdinfo >= 0.7.21\"") >&5 +- ($PKG_CONFIG --exists --print-errors "libvcdinfo >= 0.7.21") 2>&5 ++ { { $as_echo "$as_me:${as_lineno-$LINENO}: \$PKG_CONFIG --exists --print-errors \"hal >= 0.2.97\""; } >&5 ++ ($PKG_CONFIG --exists --print-errors "hal >= 0.2.97") 2>&5 + ac_status=$? +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); }; then +- pkg_cv_VCDINFO_CFLAGS=`$PKG_CONFIG --cflags "libvcdinfo >= 0.7.21" 2>/dev/null` ++ $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 ++ test $ac_status = 0; }; then ++ pkg_cv_HAL_CFLAGS=`$PKG_CONFIG --cflags "hal >= 0.2.97" 2>/dev/null` + else + pkg_failed=yes + fi +@@ -40548,16 +28140,16 @@ else + pkg_failed=untried + fi + if test -n "$PKG_CONFIG"; then +- if test -n "$VCDINFO_LIBS"; then +- pkg_cv_VCDINFO_LIBS="$VCDINFO_LIBS" ++ if test -n "$HAL_LIBS"; then ++ pkg_cv_HAL_LIBS="$HAL_LIBS" + else + if test -n "$PKG_CONFIG" && \ +- { (echo "$as_me:$LINENO: \$PKG_CONFIG --exists --print-errors \"libvcdinfo >= 0.7.21\"") >&5 +- ($PKG_CONFIG --exists --print-errors "libvcdinfo >= 0.7.21") 2>&5 ++ { { $as_echo "$as_me:${as_lineno-$LINENO}: \$PKG_CONFIG --exists --print-errors \"hal >= 0.2.97\""; } >&5 ++ ($PKG_CONFIG --exists --print-errors "hal >= 0.2.97") 2>&5 + ac_status=$? +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); }; then +- pkg_cv_VCDINFO_LIBS=`$PKG_CONFIG --libs "libvcdinfo >= 0.7.21" 2>/dev/null` ++ $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 ++ test $ac_status = 0; }; then ++ pkg_cv_HAL_LIBS=`$PKG_CONFIG --libs "hal >= 0.2.97" 2>/dev/null` + else + pkg_failed=yes + fi +@@ -40576,2167 +28168,1839 @@ else + _pkg_short_errors_supported=no + fi + if test $_pkg_short_errors_supported = yes; then +- VCDINFO_PKG_ERRORS=`$PKG_CONFIG --short-errors --errors-to-stdout --print-errors "libvcdinfo >= 0.7.21"` ++ HAL_PKG_ERRORS=`$PKG_CONFIG --short-errors --errors-to-stdout --print-errors "hal >= 0.2.97"` + else +- VCDINFO_PKG_ERRORS=`$PKG_CONFIG --errors-to-stdout --print-errors "libvcdinfo >= 0.7.21"` ++ HAL_PKG_ERRORS=`$PKG_CONFIG --errors-to-stdout --print-errors "hal >= 0.2.97"` + fi + # Put the nasty error message in config.log where it belongs +- echo "$VCDINFO_PKG_ERRORS" >&5 ++ echo "$HAL_PKG_ERRORS" >&5 + +- { echo "$as_me:$LINENO: result: no" >&5 +-echo "${ECHO_T}no" >&6; } +- { echo "$as_me:$LINENO: WARNING: VCD information library not found" >&5 +-echo "$as_me: WARNING: VCD information library not found" >&2;} ++ { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 ++$as_echo "no" >&6; } ++ { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: HAL library not found" >&5 ++$as_echo "$as_me: WARNING: HAL library not found" >&2;} + elif test $pkg_failed = untried; then +- { echo "$as_me:$LINENO: WARNING: VCD information library not found" >&5 +-echo "$as_me: WARNING: VCD information library not found" >&2;} ++ { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: HAL library not found" >&5 ++$as_echo "$as_me: WARNING: HAL library not found" >&2;} + else +- VCDINFO_CFLAGS=$pkg_cv_VCDINFO_CFLAGS +- VCDINFO_LIBS=$pkg_cv_VCDINFO_LIBS +- { echo "$as_me:$LINENO: result: yes" >&5 +-echo "${ECHO_T}yes" >&6; } +- have_libvcdinfo=yes ++ HAL_CFLAGS=$pkg_cv_HAL_CFLAGS ++ HAL_LIBS=$pkg_cv_HAL_LIBS ++ { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5 ++$as_echo "yes" >&6; } + +-cat >>confdefs.h <<\_ACEOF +-#define HAVE_VCDINFO +-_ACEOF ++$as_echo "#define HAVE_HAL /**/" >>confdefs.h + +-fi +-fi + +-# Check whether --enable-cddax was given. +-if test "${enable_cddax+set}" = set; then +- enableval=$enable_cddax; +-fi ++ PLUGINS="${PLUGINS} hal" + + +-# Check whether --enable-libcddb was given. +-if test "${enable_libcddb+set}" = set; then +- enableval=$enable_libcddb; ++ for element in vlc hal; do ++ eval "LDFLAGS_${element}="'"'"$HAL_LIBS "'$'"{LDFLAGS_${element}} "'"' ++ am_modules_with_ldflags="${am_modules_with_ldflags} ${element}" ++ done ++ ++ ++ for element in vlc hal; do ++ eval "CFLAGS_${element}="'"$'"{CFLAGS_${element}} $HAL_CFLAGS"'"' ++ am_modules_with_cflags="${am_modules_with_cflags} ${element}" ++ done ++ + fi + + +-if test "${enable_cddax}" = "yes" +-then +- if test "$have_libcdio" = "yes" +- then ++else ++ HAL_CFLAGS=$pkg_cv_HAL_CFLAGS ++ HAL_LIBS=$pkg_cv_HAL_LIBS ++ { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5 ++$as_echo "yes" >&6; } + +-cat >>confdefs.h <<\_ACEOF +-#define HAVE_CDDAX +-_ACEOF ++$as_echo "#define HAVE_HAL_1 " >>confdefs.h + + +- for element in cddax; do +- eval "LDFLAGS_${element}="'"'"$LIBCDIO_LIBS "'$'"{LDFLAGS_${element}} "'"' ++$as_echo "#define HAVE_HAL /**/" >>confdefs.h ++ ++ ++ PLUGINS="${PLUGINS} hal" ++ ++ ++ for element in vlc hal; do ++ eval "LDFLAGS_${element}="'"'"$HAL_LIBS "'$'"{LDFLAGS_${element}} "'"' + am_modules_with_ldflags="${am_modules_with_ldflags} ${element}" + done + + +- for element in cddax; do +- eval "CFLAGS_${element}="'"$'"{CFLAGS_${element}} $LIBCDIO_CFLAGS"'"' ++ for element in vlc hal; do ++ eval "CFLAGS_${element}="'"$'"{CFLAGS_${element}} $HAL_CFLAGS"'"' + am_modules_with_cflags="${am_modules_with_cflags} ${element}" + done + ++fi ++fi + +- PLUGINS="${PLUGINS} cddax" ++NEED_GTK_MAIN=no ++NEED_GNOME_MAIN=no ++NEED_GTK2_MAIN=no ++NEED_GNOME2_MAIN=no ++ ++NEED_QTE_MAIN=no ++ ++{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for ntohl in sys/param.h" >&5 ++$as_echo_n "checking for ntohl in sys/param.h... " >&6; } ++if ${ac_cv_c_ntohl_sys_param_h+:} false; then : ++ $as_echo_n "(cached) " >&6 ++else ++ CFLAGS="${CFLAGS_save} -Wall -Werror" ++ cat confdefs.h - <<_ACEOF >conftest.$ac_ext ++/* end confdefs.h. */ ++#include ++int ++main () ++{ ++void foo() { int meuh; ntohl(meuh); } ++ ; ++ return 0; ++} ++_ACEOF ++if ac_fn_c_try_compile "$LINENO"; then : ++ ac_cv_c_ntohl_sys_param_h=yes ++else ++ ac_cv_c_ntohl_sys_param_h=no ++fi ++rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext ++fi ++{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_c_ntohl_sys_param_h" >&5 ++$as_echo "$ac_cv_c_ntohl_sys_param_h" >&6; } ++if test "${ac_cv_c_ntohl_sys_param_h}" != "no"; then ++ ++$as_echo "#define NTOHL_IN_SYS_PARAM_H 1" >>confdefs.h ++ ++fi ++ ++# XXX: do this with an M4 macro? ++#dnl Check for various -W flags ++#for flag in "" all unreachable-code conversion sign-compare disabled-optimization ++#do ++# AC_CACHE_CHECK([if \$CC accepts -W${flag}], ++# [ac_cv_c_W${flag}], ++# [CFLAGS="-W${flag} ${CFLAGS_save}" ++# AC_TRY_COMPILE([],,ac_cv_c_W${flag}=yes, ac_cv_c_W${flag}=no)]) ++# if test "${ac_cv_c_W${flag}}" != "no"; then ++# CFLAGS_save="-W${flag} ${CFLAGS_save}"; CFLAGS="${CFLAGS_save}" ++# CXXFLAGS_save="-W${flag} ${CFLAGS_save}"; CXXFLAGS="${CXXFLAGS_save}" ++# OBJCFLAGS_save="-W${flag} ${OBJCFLAGS_save}"; OBJCFLAGS="${OBJCFLAGS_save}" ++# fi ++#done ++ ++{ $as_echo "$as_me:${as_lineno-$LINENO}: checking if \$CC accepts -Wall" >&5 ++$as_echo_n "checking if \$CC accepts -Wall... " >&6; } ++if ${ac_cv_c_Wall+:} false; then : ++ $as_echo_n "(cached) " >&6 ++else ++ CFLAGS="-Wall ${CFLAGS_save}" ++ cat confdefs.h - <<_ACEOF >conftest.$ac_ext ++/* end confdefs.h. */ ++ ++int ++main () ++{ ++ ++ ; ++ return 0; ++} ++_ACEOF ++if ac_fn_c_try_compile "$LINENO"; then : ++ ac_cv_c_Wall=yes ++else ++ ac_cv_c_Wall=no ++fi ++rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext ++fi ++{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_c_Wall" >&5 ++$as_echo "$ac_cv_c_Wall" >&6; } ++ ++{ $as_echo "$as_me:${as_lineno-$LINENO}: checking if \$CC accepts -Wconversion" >&5 ++$as_echo_n "checking if \$CC accepts -Wconversion... " >&6; } ++if ${ac_cv_c_Wconversion+:} false; then : ++ $as_echo_n "(cached) " >&6 ++else ++ CFLAGS="-Wconversion ${CFLAGS_save}" ++ cat confdefs.h - <<_ACEOF >conftest.$ac_ext ++/* end confdefs.h. */ ++ ++int ++main () ++{ ++ ++ ; ++ return 0; ++} ++_ACEOF ++if ac_fn_c_try_compile "$LINENO"; then : ++ ac_cv_c_Wconversion=yes ++else ++ ac_cv_c_Wconversion=no ++fi ++rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext ++fi ++{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_c_Wconversion" >&5 ++$as_echo "$ac_cv_c_Wconversion" >&6; } ++ ++{ $as_echo "$as_me:${as_lineno-$LINENO}: checking if \$CC accepts -Wunreachable-code" >&5 ++$as_echo_n "checking if \$CC accepts -Wunreachable-code... " >&6; } ++if ${ac_cv_c_Wunreachable_code+:} false; then : ++ $as_echo_n "(cached) " >&6 ++else ++ CFLAGS="-Wunreachable-code ${CFLAGS_save}" ++ cat confdefs.h - <<_ACEOF >conftest.$ac_ext ++/* end confdefs.h. */ ++ ++int ++main () ++{ ++ ++ ; ++ return 0; ++} ++_ACEOF ++if ac_fn_c_try_compile "$LINENO"; then : ++ ac_cv_c_Wunreachable_code=yes ++else ++ ac_cv_c_Wunreachable_code=no ++fi ++rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext ++fi ++{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_c_Wunreachable_code" >&5 ++$as_echo "$ac_cv_c_Wunreachable_code" >&6; } ++ ++{ $as_echo "$as_me:${as_lineno-$LINENO}: checking if \$CC accepts -Wsign-compare" >&5 ++$as_echo_n "checking if \$CC accepts -Wsign-compare... " >&6; } ++if ${ac_cv_c_Wsign_compare+:} false; then : ++ $as_echo_n "(cached) " >&6 ++else ++ CFLAGS="-Wsign-compare ${CFLAGS_save}" ++ cat confdefs.h - <<_ACEOF >conftest.$ac_ext ++/* end confdefs.h. */ ++ ++int ++main () ++{ ++ ++ ; ++ return 0; ++} ++_ACEOF ++if ac_fn_c_try_compile "$LINENO"; then : ++ ac_cv_c_Wsign_compare=yes ++else ++ ac_cv_c_Wsign_compare=no ++fi ++rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext ++fi ++{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_c_Wsign_compare" >&5 ++$as_echo "$ac_cv_c_Wsign_compare" >&6; } ++ ++if test "${ac_cv_c_Wall}" != "no"; then ++ CFLAGS_save="-Wall ${CFLAGS_save}"; CFLAGS="${CFLAGS_save}" ++ CXXFLAGS_save="-Wall ${CXXFLAGS_save}"; CXXFLAGS="${CXXFLAGS_save}" ++ OBJCFLAGS_save="-Wall ${OBJCFLAGS_save}"; OBJCFLAGS="${OBJCFLAGS_save}" ++fi ++ ++if test "${ac_cv_c_Wsign_compare}" != "no"; then ++ CFLAGS_save="-Wsign-compare ${CFLAGS_save}"; CFLAGS="${CFLAGS_save}" ++ CXXFLAGS_save="-Wsign-compare ${CXXFLAGS_save}"; CXXFLAGS="${CXXFLAGS_save}" ++ OBJCFLAGS_save="-Wsign-compare ${OBJCFLAGS_save}"; OBJCFLAGS="${OBJCFLAGS_save}" ++fi + ++{ $as_echo "$as_me:${as_lineno-$LINENO}: checking if \$CC accepts -pipe" >&5 ++$as_echo_n "checking if \$CC accepts -pipe... " >&6; } ++if ${ac_cv_c_pipe+:} false; then : ++ $as_echo_n "(cached) " >&6 ++else ++ CFLAGS="${CFLAGS_save} -pipe" ++ cat confdefs.h - <<_ACEOF >conftest.$ac_ext ++/* end confdefs.h. */ + +-pkg_failed=no +-{ echo "$as_me:$LINENO: checking for LIBCDIO_PARANOIA" >&5 +-echo $ECHO_N "checking for LIBCDIO_PARANOIA... $ECHO_C" >&6; } ++int ++main () ++{ + +-if test -n "$PKG_CONFIG"; then +- if test -n "$LIBCDIO_PARANOIA_CFLAGS"; then +- pkg_cv_LIBCDIO_PARANOIA_CFLAGS="$LIBCDIO_PARANOIA_CFLAGS" +- else +- if test -n "$PKG_CONFIG" && \ +- { (echo "$as_me:$LINENO: \$PKG_CONFIG --exists --print-errors \"libcdio_paranoia >= 0.72\"") >&5 +- ($PKG_CONFIG --exists --print-errors "libcdio_paranoia >= 0.72") 2>&5 +- ac_status=$? +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); }; then +- pkg_cv_LIBCDIO_PARANOIA_CFLAGS=`$PKG_CONFIG --cflags "libcdio_paranoia >= 0.72" 2>/dev/null` +-else +- pkg_failed=yes +-fi +- fi ++ ; ++ return 0; ++} ++_ACEOF ++if ac_fn_c_try_compile "$LINENO"; then : ++ ac_cv_c_pipe=yes + else +- pkg_failed=untried ++ ac_cv_c_pipe=no + fi +-if test -n "$PKG_CONFIG"; then +- if test -n "$LIBCDIO_PARANOIA_LIBS"; then +- pkg_cv_LIBCDIO_PARANOIA_LIBS="$LIBCDIO_PARANOIA_LIBS" +- else +- if test -n "$PKG_CONFIG" && \ +- { (echo "$as_me:$LINENO: \$PKG_CONFIG --exists --print-errors \"libcdio_paranoia >= 0.72\"") >&5 +- ($PKG_CONFIG --exists --print-errors "libcdio_paranoia >= 0.72") 2>&5 +- ac_status=$? +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); }; then +- pkg_cv_LIBCDIO_PARANOIA_LIBS=`$PKG_CONFIG --libs "libcdio_paranoia >= 0.72" 2>/dev/null` +-else +- pkg_failed=yes ++rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext + fi +- fi +-else +- pkg_failed=untried ++{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_c_pipe" >&5 ++$as_echo "$ac_cv_c_pipe" >&6; } ++if test "${ac_cv_c_pipe}" != "no"; then ++ CFLAGS_save="${CFLAGS_save} -pipe"; CFLAGS="${CFLAGS_save}" ++ CXXFLAGS_save="${CXXFLAGS_save} -pipe"; CXXFLAGS="${CXXFLAGS_save}" ++ OBJCFLAGS_save="${OBJCFLAGS_save} -pipe"; OBJCFLAGS="${OBJCFLAGS_save}" + fi + ++{ $as_echo "$as_me:${as_lineno-$LINENO}: checking if \$CC accepts -Os" >&5 ++$as_echo_n "checking if \$CC accepts -Os... " >&6; } ++if ${ac_cv_c_os+:} false; then : ++ $as_echo_n "(cached) " >&6 ++else ++ CFLAGS="${CFLAGS_save} -Os" ++ cat confdefs.h - <<_ACEOF >conftest.$ac_ext ++/* end confdefs.h. */ + ++int ++main () ++{ + +-if test $pkg_failed = yes; then +- +-if $PKG_CONFIG --atleast-pkgconfig-version 0.20; then +- _pkg_short_errors_supported=yes ++ ; ++ return 0; ++} ++_ACEOF ++if ac_fn_c_try_compile "$LINENO"; then : ++ ac_cv_c_os=yes + else +- _pkg_short_errors_supported=no ++ ac_cv_c_os=no ++fi ++rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext ++fi ++{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_c_os" >&5 ++$as_echo "$ac_cv_c_os" >&6; } ++if test "${ac_cv_c_os}" != "no" -a "${target_cpu}" = "mipsel"; then ++ CFLAGS_OPTIM="${CFLAGS_OPTIM} -Os" + fi +- if test $_pkg_short_errors_supported = yes; then +- LIBCDIO_PARANOIA_PKG_ERRORS=`$PKG_CONFIG --short-errors --errors-to-stdout --print-errors "libcdio_paranoia >= 0.72"` +- else +- LIBCDIO_PARANOIA_PKG_ERRORS=`$PKG_CONFIG --errors-to-stdout --print-errors "libcdio_paranoia >= 0.72"` +- fi +- # Put the nasty error message in config.log where it belongs +- echo "$LIBCDIO_PARANOIA_PKG_ERRORS" >&5 + +- { echo "$as_me:$LINENO: result: no" >&5 +-echo "${ECHO_T}no" >&6; } +- { echo "$as_me:$LINENO: WARNING: CD Paranoia support disabled because no libcdio >= 0.72 found" >&5 +-echo "$as_me: WARNING: CD Paranoia support disabled because no libcdio >= 0.72 found" >&2;} +-elif test $pkg_failed = untried; then +- { echo "$as_me:$LINENO: WARNING: CD Paranoia support disabled because no libcdio >= 0.72 found" >&5 +-echo "$as_me: WARNING: CD Paranoia support disabled because no libcdio >= 0.72 found" >&2;} ++{ $as_echo "$as_me:${as_lineno-$LINENO}: checking if \$CC accepts -O3" >&5 ++$as_echo_n "checking if \$CC accepts -O3... " >&6; } ++if ${ac_cv_c_o3+:} false; then : ++ $as_echo_n "(cached) " >&6 + else +- LIBCDIO_PARANOIA_CFLAGS=$pkg_cv_LIBCDIO_PARANOIA_CFLAGS +- LIBCDIO_PARANOIA_LIBS=$pkg_cv_LIBCDIO_PARANOIA_LIBS +- { echo "$as_me:$LINENO: result: yes" >&5 +-echo "${ECHO_T}yes" >&6; } +- ++ CFLAGS="${CFLAGS_save} -O3" ++ cat confdefs.h - <<_ACEOF >conftest.$ac_ext ++/* end confdefs.h. */ + +- for element in cddax; do +- eval "LDFLAGS_${element}="'"'"$LIBCDIO_CDDA_LIBS $LIBCDIO_CDDA_LIBS $LIBCDIO_PARANOIA_LIBS "'$'"{LDFLAGS_${element}} "'"' +- am_modules_with_ldflags="${am_modules_with_ldflags} ${element}" +- done ++int ++main () ++{ + ++ ; ++ return 0; ++} ++_ACEOF ++if ac_fn_c_try_compile "$LINENO"; then : ++ ac_cv_c_o3=yes ++else ++ ac_cv_c_o3=no ++fi ++rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext ++fi ++{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_c_o3" >&5 ++$as_echo "$ac_cv_c_o3" >&6; } ++if test "${ac_cv_c_o3}" != "no" -a "${target_cpu}" != "mipsel"; then ++ CFLAGS_OPTIM="${CFLAGS_OPTIM} -O3" + fi +- else +- { echo "$as_me:$LINENO: WARNING: cddax plugin disabled because ok libcdio library not found or disabled" >&5 +-echo "$as_me: WARNING: cddax plugin disabled because ok libcdio library not found or disabled" >&2;} +- HAVE_CDDAX=no +- fi + +- if test "$enable_libcddb" != "no"; then ++{ $as_echo "$as_me:${as_lineno-$LINENO}: checking if \$CC accepts -O2" >&5 ++$as_echo_n "checking if \$CC accepts -O2... " >&6; } ++if ${ac_cv_c_o2+:} false; then : ++ $as_echo_n "(cached) " >&6 ++else ++ CFLAGS="${CFLAGS_save} -O2" ++ cat confdefs.h - <<_ACEOF >conftest.$ac_ext ++/* end confdefs.h. */ + +-pkg_failed=no +-{ echo "$as_me:$LINENO: checking for LIBCDDB" >&5 +-echo $ECHO_N "checking for LIBCDDB... $ECHO_C" >&6; } ++int ++main () ++{ + +-if test -n "$PKG_CONFIG"; then +- if test -n "$LIBCDDB_CFLAGS"; then +- pkg_cv_LIBCDDB_CFLAGS="$LIBCDDB_CFLAGS" +- else +- if test -n "$PKG_CONFIG" && \ +- { (echo "$as_me:$LINENO: \$PKG_CONFIG --exists --print-errors \"libcddb >= 0.9.5\"") >&5 +- ($PKG_CONFIG --exists --print-errors "libcddb >= 0.9.5") 2>&5 +- ac_status=$? +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); }; then +- pkg_cv_LIBCDDB_CFLAGS=`$PKG_CONFIG --cflags "libcddb >= 0.9.5" 2>/dev/null` ++ ; ++ return 0; ++} ++_ACEOF ++if ac_fn_c_try_compile "$LINENO"; then : ++ ac_cv_c_o2=yes + else +- pkg_failed=yes ++ ac_cv_c_o2=no ++fi ++rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext + fi ++{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_c_o2" >&5 ++$as_echo "$ac_cv_c_o2" >&6; } ++if test "${ac_cv_c_o2}" != "no" -a "${target_cpu}" != "mipsel"; then ++ if test "${ac_cv_c_o3}" = "no"; then ++ CFLAGS_OPTIM="${CFLAGS_OPTIM} -O2" + fi ++ CFLAGS_NOOPTIM="${CFLAGS_NOOPTIM} -O2" + else +- pkg_failed=untried +-fi +-if test -n "$PKG_CONFIG"; then +- if test -n "$LIBCDDB_LIBS"; then +- pkg_cv_LIBCDDB_LIBS="$LIBCDDB_LIBS" +- else +- if test -n "$PKG_CONFIG" && \ +- { (echo "$as_me:$LINENO: \$PKG_CONFIG --exists --print-errors \"libcddb >= 0.9.5\"") >&5 +- ($PKG_CONFIG --exists --print-errors "libcddb >= 0.9.5") 2>&5 +- ac_status=$? +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); }; then +- pkg_cv_LIBCDDB_LIBS=`$PKG_CONFIG --libs "libcddb >= 0.9.5" 2>/dev/null` ++ { $as_echo "$as_me:${as_lineno-$LINENO}: checking if \$CC accepts -O" >&5 ++$as_echo_n "checking if \$CC accepts -O... " >&6; } ++if ${ac_cv_c_o+:} false; then : ++ $as_echo_n "(cached) " >&6 + else +- pkg_failed=yes ++ CFLAGS="${CFLAGS_save} -O" ++ cat confdefs.h - <<_ACEOF >conftest.$ac_ext ++/* end confdefs.h. */ ++ ++int ++main () ++{ ++ ++ ; ++ return 0; ++} ++_ACEOF ++if ac_fn_c_try_compile "$LINENO"; then : ++ ac_cv_c_o=yes ++else ++ ac_cv_c_o=no ++fi ++rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext + fi ++{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_c_o" >&5 ++$as_echo "$ac_cv_c_o" >&6; } ++ if test "${ac_cv_c_o}" != "no" -a "${target_cpu}" != "mipsel"; then ++ if test "${ac_cv_c_o3}" = "no"; then ++ CFLAGS_OPTIM="${CFLAGS_OPTIM} -O" ++ fi ++ CFLAGS_NOOPTIM="${CFLAGS_NOOPTIM} -O" + fi +-else +- pkg_failed=untried + fi + ++{ $as_echo "$as_me:${as_lineno-$LINENO}: checking if \$CC accepts -ffast-math" >&5 ++$as_echo_n "checking if \$CC accepts -ffast-math... " >&6; } ++if ${ac_cv_c_fast_math+:} false; then : ++ $as_echo_n "(cached) " >&6 ++else ++ CFLAGS="${CFLAGS_save} -ffast-math" ++ cat confdefs.h - <<_ACEOF >conftest.$ac_ext ++/* end confdefs.h. */ + ++int ++main () ++{ + +-if test $pkg_failed = yes; then +- +-if $PKG_CONFIG --atleast-pkgconfig-version 0.20; then +- _pkg_short_errors_supported=yes ++ ; ++ return 0; ++} ++_ACEOF ++if ac_fn_c_try_compile "$LINENO"; then : ++ ac_cv_c_fast_math=yes + else +- _pkg_short_errors_supported=no ++ ac_cv_c_fast_math=no ++fi ++rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext ++fi ++{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_c_fast_math" >&5 ++$as_echo "$ac_cv_c_fast_math" >&6; } ++if test "${ac_cv_c_fast_math}" != "no"; then ++ CFLAGS_OPTIM="${CFLAGS_OPTIM} -ffast-math" + fi +- if test $_pkg_short_errors_supported = yes; then +- LIBCDDB_PKG_ERRORS=`$PKG_CONFIG --short-errors --errors-to-stdout --print-errors "libcddb >= 0.9.5"` +- else +- LIBCDDB_PKG_ERRORS=`$PKG_CONFIG --errors-to-stdout --print-errors "libcddb >= 0.9.5"` +- fi +- # Put the nasty error message in config.log where it belongs +- echo "$LIBCDDB_PKG_ERRORS" >&5 + +- { echo "$as_me:$LINENO: result: no" >&5 +-echo "${ECHO_T}no" >&6; } +- { echo "$as_me:$LINENO: WARNING: new enough libcddb not found. CDDB access disabled" >&5 +-echo "$as_me: WARNING: new enough libcddb not found. CDDB access disabled" >&2;} +- HAVE_LIBCDDB=no +-elif test $pkg_failed = untried; then +- { echo "$as_me:$LINENO: WARNING: new enough libcddb not found. CDDB access disabled" >&5 +-echo "$as_me: WARNING: new enough libcddb not found. CDDB access disabled" >&2;} +- HAVE_LIBCDDB=no ++if test "${SYS}" != "beos" ++then ++ { $as_echo "$as_me:${as_lineno-$LINENO}: checking if \$CC accepts -funroll-loops" >&5 ++$as_echo_n "checking if \$CC accepts -funroll-loops... " >&6; } ++if ${ac_cv_c_unroll_loops+:} false; then : ++ $as_echo_n "(cached) " >&6 + else +- LIBCDDB_CFLAGS=$pkg_cv_LIBCDDB_CFLAGS +- LIBCDDB_LIBS=$pkg_cv_LIBCDDB_LIBS +- { echo "$as_me:$LINENO: result: yes" >&5 +-echo "${ECHO_T}yes" >&6; } ++ CFLAGS="${CFLAGS_save} -funroll-loops" ++ cat confdefs.h - <<_ACEOF >conftest.$ac_ext ++/* end confdefs.h. */ + +- HAVE_LIBCDDB=yes ++int ++main () ++{ + +-cat >>confdefs.h <<\_ACEOF +-#define HAVE_LIBCDDB ++ ; ++ return 0; ++} + _ACEOF ++if ac_fn_c_try_compile "$LINENO"; then : ++ ac_cv_c_unroll_loops=yes ++else ++ ac_cv_c_unroll_loops=no ++fi ++rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext ++fi ++{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_c_unroll_loops" >&5 ++$as_echo "$ac_cv_c_unroll_loops" >&6; } ++ if test "${ac_cv_c_unroll_loops}" != "no"; then ++ CFLAGS_OPTIM="${CFLAGS_OPTIM} -funroll-loops" ++ fi ++fi + ++{ $as_echo "$as_me:${as_lineno-$LINENO}: checking if \$CC accepts -fomit-frame-pointer" >&5 ++$as_echo_n "checking if \$CC accepts -fomit-frame-pointer... " >&6; } ++if ${ac_cv_c_omit_frame_pointer+:} false; then : ++ $as_echo_n "(cached) " >&6 ++else ++ CFLAGS="${CFLAGS_save} -fomit-frame-pointer" ++ cat confdefs.h - <<_ACEOF >conftest.$ac_ext ++/* end confdefs.h. */ + +- for element in cddax; do +- eval "LDFLAGS_${element}="'"'"$LIBCDDB_LIBS "'$'"{LDFLAGS_${element}} "'"' +- am_modules_with_ldflags="${am_modules_with_ldflags} ${element}" +- done ++int ++main () ++{ + ++ ; ++ return 0; ++} ++_ACEOF ++if ac_fn_c_try_compile "$LINENO"; then : ++ ac_cv_c_omit_frame_pointer=yes ++else ++ ac_cv_c_omit_frame_pointer=no ++fi ++rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext ++fi ++{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_c_omit_frame_pointer" >&5 ++$as_echo "$ac_cv_c_omit_frame_pointer" >&6; } ++if test "${ac_cv_c_omit_frame_pointer}" != "no"; then ++ CFLAGS_OPTIM_NODEBUG="${CFLAGS_OPTIM_NODEBUG} -fomit-frame-pointer" ++ # this plugin does not compile without -fomit-frame-pointer, damn gcc! + +- for element in cddax; do +- eval "CFLAGS_${element}="'"$'"{CFLAGS_${element}} $LIBCDDB_CFLAGS"'"' ++ for element in i420_yuy2_mmx; do ++ eval "CFLAGS_${element}="'"$'"{CFLAGS_${element}} -fomit-frame-pointer"'"' + am_modules_with_cflags="${am_modules_with_cflags} ${element}" + done + +- + fi +- fi + +-fi ++{ $as_echo "$as_me:${as_lineno-$LINENO}: checking if \$CC accepts -mdynamic-no-pic" >&5 ++$as_echo_n "checking if \$CC accepts -mdynamic-no-pic... " >&6; } ++if ${ac_cv_c_dynamic_no_pic+:} false; then : ++ $as_echo_n "(cached) " >&6 ++else ++ CFLAGS="${CFLAGS_save} -mdynamic-no-pic" ++ cat confdefs.h - <<_ACEOF >conftest.$ac_ext ++/* end confdefs.h. */ + +-# Check whether --enable-vcdx was given. +-if test "${enable_vcdx+set}" = set; then +- enableval=$enable_vcdx; +-fi ++int ++main () ++{ + ++ ; ++ return 0; ++} ++_ACEOF ++if ac_fn_c_try_compile "$LINENO"; then : ++ ac_cv_c_dynamic_no_pic=yes ++else ++ ac_cv_c_dynamic_no_pic=no ++fi ++rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext ++fi ++{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_c_dynamic_no_pic" >&5 ++$as_echo "$ac_cv_c_dynamic_no_pic" >&6; } ++if test "${enable_libtool}" = "no" && test "${ac_cv_c_dynamic_no_pic}" != "no"; then : + +-if test "${enable_vcdx}" = "yes" +-then +- if test "${have_libvcdinfo}" = "yes" +- then + +- for element in vcdx; do +- eval "LDFLAGS_${element}="'"'"$VCDINFO_LIBS "'$'"{LDFLAGS_${element}} "'"' +- am_modules_with_ldflags="${am_modules_with_ldflags} ${element}" ++ for element in builtin; do ++ eval "CFLAGS_${element}="'"$'"{CFLAGS_${element}} -mdynamic-no-pic"'"' ++ am_modules_with_cflags="${am_modules_with_cflags} ${element}" + done + + +- for element in vcdx; do +- eval "CFLAGS_${element}="'"$'"{CFLAGS_${element}} $VCDINFO_CFLAGS"'"' ++ for element in libvlc; do ++ eval "CFLAGS_${element}="'"$'"{CFLAGS_${element}} -mdynamic-no-pic"'"' + am_modules_with_cflags="${am_modules_with_cflags} ${element}" + done + +- else +- { echo "$as_me:$LINENO: WARNING: vcdx plugin disabled because ok libvcdinfo library not found or disabled" >&5 +-echo "$as_me: WARNING: vcdx plugin disabled because ok libvcdinfo library not found or disabled" >&2;} +- HAVE_VCDX=no +- fi +- +- +-pkg_failed=no +-{ echo "$as_me:$LINENO: checking for LIBCDIO" >&5 +-echo $ECHO_N "checking for LIBCDIO... $ECHO_C" >&6; } + +-if test -n "$PKG_CONFIG"; then +- if test -n "$LIBCDIO_CFLAGS"; then +- pkg_cv_LIBCDIO_CFLAGS="$LIBCDIO_CFLAGS" +- else +- if test -n "$PKG_CONFIG" && \ +- { (echo "$as_me:$LINENO: \$PKG_CONFIG --exists --print-errors \"libiso9660 >= 0.72\"") >&5 +- ($PKG_CONFIG --exists --print-errors "libiso9660 >= 0.72") 2>&5 +- ac_status=$? +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); }; then +- pkg_cv_LIBCDIO_CFLAGS=`$PKG_CONFIG --cflags "libiso9660 >= 0.72" 2>/dev/null` +-else +- pkg_failed=yes +-fi +- fi +-else +- pkg_failed=untried +-fi +-if test -n "$PKG_CONFIG"; then +- if test -n "$LIBCDIO_LIBS"; then +- pkg_cv_LIBCDIO_LIBS="$LIBCDIO_LIBS" +- else +- if test -n "$PKG_CONFIG" && \ +- { (echo "$as_me:$LINENO: \$PKG_CONFIG --exists --print-errors \"libiso9660 >= 0.72\"") >&5 +- ($PKG_CONFIG --exists --print-errors "libiso9660 >= 0.72") 2>&5 +- ac_status=$? +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); }; then +- pkg_cv_LIBCDIO_LIBS=`$PKG_CONFIG --libs "libiso9660 >= 0.72" 2>/dev/null` +-else +- pkg_failed=yes +-fi +- fi +-else +- pkg_failed=untried + fi + ++{ $as_echo "$as_me:${as_lineno-$LINENO}: checking if \$CC accepts -bundle -undefined error" >&5 ++$as_echo_n "checking if \$CC accepts -bundle -undefined error... " >&6; } ++if ${ac_cv_ld_darwin+:} false; then : ++ $as_echo_n "(cached) " >&6 ++else ++ CFLAGS="${CFLAGS_save} -bundle -undefined error" ++ cat confdefs.h - <<_ACEOF >conftest.$ac_ext ++/* end confdefs.h. */ + ++int ++main () ++{ + +-if test $pkg_failed = yes; then +- +-if $PKG_CONFIG --atleast-pkgconfig-version 0.20; then +- _pkg_short_errors_supported=yes ++ ; ++ return 0; ++} ++_ACEOF ++if ac_fn_c_try_compile "$LINENO"; then : ++ ac_cv_ld_darwin=yes + else +- _pkg_short_errors_supported=no ++ ac_cv_ld_darwin=no + fi +- if test $_pkg_short_errors_supported = yes; then +- LIBCDIO_PKG_ERRORS=`$PKG_CONFIG --short-errors --errors-to-stdout --print-errors "libiso9660 >= 0.72"` +- else +- LIBCDIO_PKG_ERRORS=`$PKG_CONFIG --errors-to-stdout --print-errors "libiso9660 >= 0.72"` +- fi +- # Put the nasty error message in config.log where it belongs +- echo "$LIBCDIO_PKG_ERRORS" >&5 +- +- { echo "$as_me:$LINENO: result: no" >&5 +-echo "${ECHO_T}no" >&6; } +- { echo "$as_me:$LINENO: WARNING: vcdx plugin disabled because ok libiso9660 library not found" >&5 +-echo "$as_me: WARNING: vcdx plugin disabled because ok libiso9660 library not found" >&2;} +- HAVE_VCDX=no +-elif test $pkg_failed = untried; then +- { echo "$as_me:$LINENO: WARNING: vcdx plugin disabled because ok libiso9660 library not found" >&5 +-echo "$as_me: WARNING: vcdx plugin disabled because ok libiso9660 library not found" >&2;} +- HAVE_VCDX=no +-else +- LIBCDIO_CFLAGS=$pkg_cv_LIBCDIO_CFLAGS +- LIBCDIO_LIBS=$pkg_cv_LIBCDIO_LIBS +- { echo "$as_me:$LINENO: result: yes" >&5 +-echo "${ECHO_T}yes" >&6; } ++rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext ++fi ++{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_ld_darwin" >&5 ++$as_echo "$ac_cv_ld_darwin" >&6; } ++if test "${ac_cv_ld_darwin}" != "no"; then + +- for element in vcdx; do +- eval "LDFLAGS_${element}="'"'"$LIBISO9660_LIBS "'$'"{LDFLAGS_${element}} "'"' ++ for element in plugin; do ++ eval "LDFLAGS_${element}="'"'"-bundle -undefined error "'$'"{LDFLAGS_${element}} "'"' + am_modules_with_ldflags="${am_modules_with_ldflags} ${element}" + done + +- +- for element in vcdx; do +- eval "CFLAGS_${element}="'"$'"{CFLAGS_${element}} $LIBISO9660_CFLAGS"'"' +- am_modules_with_cflags="${am_modules_with_cflags} ${element}" +- done +- + fi + +- if test "$have_libvcdinfo" = "yes" +- then +- +-cat >>confdefs.h <<\_ACEOF +-#define HAVE_VCDX +-_ACEOF +- ++if test "${SYS}" = "beos"; then + +- for element in vcdx; do +- eval "LDFLAGS_${element}="'"'"$VCDINFO_LIBS "'$'"{LDFLAGS_${element}} "'"' ++ for element in plugin mozilla; do ++ eval "LDFLAGS_${element}="'"'"-nostart "'$'"{LDFLAGS_${element}} "'"' + am_modules_with_ldflags="${am_modules_with_ldflags} ${element}" + done + ++else ++ { $as_echo "$as_me:${as_lineno-$LINENO}: checking if \$CC accepts -shared" >&5 ++$as_echo_n "checking if \$CC accepts -shared... " >&6; } ++if ${ac_cv_ld_plugins+:} false; then : ++ $as_echo_n "(cached) " >&6 ++else ++ CFLAGS="${CFLAGS_save} -shared" ++ cat confdefs.h - <<_ACEOF >conftest.$ac_ext ++/* end confdefs.h. */ + +- for element in vcdx; do +- eval "CFLAGS_${element}="'"$'"{CFLAGS_${element}} $VCDINFO_CFLAGS"'"' +- am_modules_with_cflags="${am_modules_with_cflags} ${element}" +- done ++int ++main () ++{ + ++ ; ++ return 0; ++} ++_ACEOF ++if ac_fn_c_try_compile "$LINENO"; then : ++ ac_cv_ld_plugins=yes ++else ++ ac_cv_ld_plugins=no ++fi ++rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext ++fi ++{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_ld_plugins" >&5 ++$as_echo "$ac_cv_ld_plugins" >&6; } ++ if test "${ac_cv_ld_plugins}" != "no"; then + +- PLUGINS="${PLUGINS} vcdx" ++ for element in plugin mozilla; do ++ eval "LDFLAGS_${element}="'"'"-shared "'$'"{LDFLAGS_${element}} "'"' ++ am_modules_with_ldflags="${am_modules_with_ldflags} ${element}" ++ done + +- else +- { echo "$as_me:$LINENO: WARNING: vcdx plugin disabled because ok libvcdinfo library not found" >&5 +-echo "$as_me: WARNING: vcdx plugin disabled because ok libvcdinfo library not found" >&2;} +- HAVE_VCDX=no + fi + fi + +-# Check whether --enable-cdda was given. +-if test "${enable_cdda+set}" = set; then +- enableval=$enable_cdda; ++{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for variadic cpp macros" >&5 ++$as_echo_n "checking for variadic cpp macros... " >&6; } ++if ${ac_cv_cpp_variadic_macros+:} false; then : ++ $as_echo_n "(cached) " >&6 ++else ++ CFLAGS="${CFLAGS_save}" ++ cat confdefs.h - <<_ACEOF >conftest.$ac_ext ++/* end confdefs.h. */ ++#include ++ #define a(b,c...) printf(b,##c) ++int ++main () ++{ ++a("foo");a("%s","bar");a("%s%s","baz","quux"); ++ ; ++ return 0; ++} ++_ACEOF ++if ac_fn_c_try_compile "$LINENO"; then : ++ ac_cv_cpp_variadic_macros=yes ++else ++ ac_cv_cpp_variadic_macros=no ++fi ++rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext + fi ++{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_cpp_variadic_macros" >&5 ++$as_echo "$ac_cv_cpp_variadic_macros" >&6; } ++if test "${ac_cv_cpp_variadic_macros}" != "no"; then + ++$as_echo "#define HAVE_VARIADIC_MACROS 1" >>confdefs.h + +-# Check whether --enable-vcd was given. +-if test "${enable_vcd+set}" = set; then +- enableval=$enable_vcd; + fi + ++{ $as_echo "$as_me:${as_lineno-$LINENO}: checking __attribute__ ((aligned ())) support" >&5 ++$as_echo_n "checking __attribute__ ((aligned ())) support... " >&6; } ++if ${ac_cv_c_attribute_aligned+:} false; then : ++ $as_echo_n "(cached) " >&6 ++else ++ ac_cv_c_attribute_aligned=0 ++ CFLAGS="${CFLAGS_save} -Werror" ++ for ac_cv_c_attr_align_try in 2 4 8 16 32 64; do ++ cat confdefs.h - <<_ACEOF >conftest.$ac_ext ++/* end confdefs.h. */ + +-if test "${enable_vcd}" != "no" +-then +- { echo "$as_me:$LINENO: checking for cdrom_msf0 in linux/cdrom.h" >&5 +-echo $ECHO_N "checking for cdrom_msf0 in linux/cdrom.h... $ECHO_C" >&6; } +- cat >conftest.$ac_ext <<_ACEOF +-/* confdefs.h. */ ++int ++main () ++{ ++static char c __attribute__ ((aligned(${ac_cv_c_attr_align_try}))) = 0; return c; ++ ; ++ return 0; ++} + _ACEOF +-cat confdefs.h >>conftest.$ac_ext +-cat >>conftest.$ac_ext <<_ACEOF +-/* end confdefs.h. */ +-#include ++if ac_fn_c_try_compile "$LINENO"; then : ++ ac_cv_c_attribute_aligned="${ac_cv_c_attr_align_try}" ++fi ++rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext ++ done ++ CFLAGS="${CFLAGS_save}" ++fi ++{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_c_attribute_aligned" >&5 ++$as_echo "$ac_cv_c_attribute_aligned" >&6; } ++if test "${ac_cv_c_attribute_aligned}" != "0"; then + ++cat >>confdefs.h <<_ACEOF ++#define ATTRIBUTE_ALIGNED_MAX ${ac_cv_c_attribute_aligned} + _ACEOF +-if (eval "$ac_cpp conftest.$ac_ext") 2>&5 | +- $EGREP "cdrom_msf0" >/dev/null 2>&1; then + +- { echo "$as_me:$LINENO: result: yes" >&5 +-echo "${ECHO_T}yes" >&6; } ++fi + +- PLUGINS="${PLUGINS} vcd cdda" ++{ $as_echo "$as_me:${as_lineno-$LINENO}: checking __attribute__ ((format ())) support with function pointers" >&5 ++$as_echo_n "checking __attribute__ ((format ())) support with function pointers... " >&6; } ++if ${ac_cv_c_attribute_format+:} false; then : ++ $as_echo_n "(cached) " >&6 ++else ++ ac_cv_c_attribute_format=no ++ CFLAGS="${CFLAGS_save} -Werror" ++ cat confdefs.h - <<_ACEOF >conftest.$ac_ext ++/* end confdefs.h. */ ++ ++int ++main () ++{ ++static void (*pf_printf)(const char *, ...) __attribute__ ((format(printf,1,2)));(void)pf_printf; ++ ; ++ return 0; ++} ++_ACEOF ++if ac_fn_c_try_compile "$LINENO"; then : ++ ac_cv_c_attribute_format=yes ++fi ++rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext ++ CFLAGS="${CFLAGS_save}" ++fi ++{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_c_attribute_format" >&5 ++$as_echo "$ac_cv_c_attribute_format" >&6; } ++if test "${ac_cv_c_attribute_format}" != "no"; then ++ ++$as_echo "#define HAVE_ATTRIBUTE_FORMAT 1" >>confdefs.h + ++fi + ++{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for __attribute__((packed))" >&5 ++$as_echo_n "checking for __attribute__((packed))... " >&6; } ++if ${ac_cv_c_attribute_packed+:} false; then : ++ $as_echo_n "(cached) " >&6 + else ++ ac_cv_c_attribute_packed=no ++ cat confdefs.h - <<_ACEOF >conftest.$ac_ext ++/* end confdefs.h. */ ++ ++int ++main () ++{ ++struct __attribute__((__packed__)) foo { int a; } b; ++ ; ++ return 0; ++} ++_ACEOF ++if ac_fn_c_try_compile "$LINENO"; then : ++ ac_cv_c_attribute_packed=yes ++fi ++rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext ++fi ++{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_c_attribute_packed" >&5 ++$as_echo "$ac_cv_c_attribute_packed" >&6; } ++if test "${ac_cv_c_attribute_packed}" != "no"; then + +- { echo "$as_me:$LINENO: result: no" >&5 +-echo "${ECHO_T}no" >&6; } ++$as_echo "#define HAVE_ATTRIBUTE_PACKED 1" >>confdefs.h + + fi +-rm -f conftest* + ++case "${target_cpu}" in ++ "") ++ ARCH=unknown ++ ;; ++ *) ++ ARCH="${target_cpu}" ++ ;; ++esac ++ ++# Check whether --enable-gprof was given. ++if test "${enable_gprof+set}" = set; then : ++ enableval=$enable_gprof; ++fi + +- { echo "$as_me:$LINENO: checking for scsireq in sys/scsiio.h" >&5 +-echo $ECHO_N "checking for scsireq in sys/scsiio.h... $ECHO_C" >&6; } +- cat >conftest.$ac_ext <<_ACEOF +-/* confdefs.h. */ +-_ACEOF +-cat confdefs.h >>conftest.$ac_ext +-cat >>conftest.$ac_ext <<_ACEOF +-/* end confdefs.h. */ +-#include ++# Check whether --enable-cprof was given. ++if test "${enable_cprof+set}" = set; then : ++ enableval=$enable_cprof; ++fi + +-_ACEOF +-if (eval "$ac_cpp conftest.$ac_ext") 2>&5 | +- $EGREP "scsireq" >/dev/null 2>&1; then ++test "${enable_gprof}" != "yes" && enable_gprof="no" ++test "${enable_cprof}" != "yes" && enable_cprof="no" + +- { echo "$as_me:$LINENO: result: yes" >&5 +-echo "${ECHO_T}yes" >&6; } + +- PLUGINS="${PLUGINS} vcd cdda" ++ PLUGINS="${PLUGINS} dummy logger memcpy" + + +-cat >>confdefs.h <<\_ACEOF +-#define HAVE_SCSIREQ_IN_SYS_SCSIIO_H 1 +-_ACEOF ++ PLUGINS="${PLUGINS} mpgv mpga m4v m4a h264 ps pva avi asf mp4 rawdv nsv real aiff mjpeg demuxdump flac tta" + + +-else ++ PLUGINS="${PLUGINS} cvdsub svcdsub spudec telx subsdec dvbsub mpeg_audio lpcm a52 dts cinepak flacdec" + +- { echo "$as_me:$LINENO: result: no" >&5 +-echo "${ECHO_T}no" >&6; } + +-fi +-rm -f conftest* ++ PLUGINS="${PLUGINS} deinterlace invert adjust transform distort motionblur rv32" + + +- { echo "$as_me:$LINENO: checking for ioc_toc_header in sys/cdio.h" >&5 +-echo $ECHO_N "checking for ioc_toc_header in sys/cdio.h... $ECHO_C" >&6; } +- cat >conftest.$ac_ext <<_ACEOF +-/* confdefs.h. */ +-_ACEOF +-cat confdefs.h >>conftest.$ac_ext +-cat >>conftest.$ac_ext <<_ACEOF +-/* end confdefs.h. */ +-#include ++ PLUGINS="${PLUGINS} fixed32tos16 s16tofixed32 u8tofixed32" + +-_ACEOF +-if (eval "$ac_cpp conftest.$ac_ext") 2>&5 | +- $EGREP "ioc_toc_header " >/dev/null 2>&1; then + +- { echo "$as_me:$LINENO: result: yes" >&5 +-echo "${ECHO_T}yes" >&6; } ++ PLUGINS="${PLUGINS} trivial_resampler ugly_resampler" + +- PLUGINS="${PLUGINS} vcd cdda" + ++ PLUGINS="${PLUGINS} trivial_channel_mixer trivial_mixer" + +-cat >>confdefs.h <<\_ACEOF +-#define HAVE_IOC_TOC_HEADER_IN_SYS_CDIO_H 1 +-_ACEOF + ++ PLUGINS="${PLUGINS} playlist export sgimb m3u nsc xtag" + +-else + +- { echo "$as_me:$LINENO: result: no" >&5 +-echo "${ECHO_T}no" >&6; } ++ PLUGINS="${PLUGINS} i420_rgb rawvideo blend scale image logo magnify" + +-fi +-rm -f conftest* + ++ PLUGINS="${PLUGINS} wav araw subtitle vobsub adpcm a52sys dtssys au ty voc xa nuv" + +- if test "${SYS}" = "bsdi" -o "${SYS}" = "mingw32" +- then + +- PLUGINS="${PLUGINS} vcd cdda" ++ PLUGINS="${PLUGINS} access_directory access_file access_udp access_tcp" + +- fi + +- if test "${SYS}" = "darwin" +- then ++ PLUGINS="${PLUGINS} access_http access_mms access_ftp ipv4" + +- PLUGINS="${PLUGINS} vcd cdda" + ++ PLUGINS="${PLUGINS} packetizer_mpegvideo packetizer_h264" + +- for element in vcd vcdx cdda cddax; do +- eval "LDFLAGS_${element}="'"'"-framework IOKit -framework CoreFoundation "'$'"{LDFLAGS_${element}} "'"' +- am_modules_with_ldflags="${am_modules_with_ldflags} ${element}" +- done + ++ PLUGINS="${PLUGINS} packetizer_mpeg4video packetizer_mpeg4audio" + +- for element in vcdx cddax cdda; do +- eval "LDFLAGS_${element}="'"'"-liconv "'$'"{LDFLAGS_${element}} "'"' +- am_modules_with_ldflags="${am_modules_with_ldflags} ${element}" +- done + +- fi ++if test "${SYS}" != "mingwce"; then + +- if test "$enable_libcddb" != "no"; then ++ PLUGINS="${PLUGINS} access_fake access_filter_timeshift access_filter_record access_filter_dump" + +-pkg_failed=no +-{ echo "$as_me:$LINENO: checking for LIBCDDB" >&5 +-echo $ECHO_N "checking for LIBCDDB... $ECHO_C" >&6; } + +-if test -n "$PKG_CONFIG"; then +- if test -n "$LIBCDDB_CFLAGS"; then +- pkg_cv_LIBCDDB_CFLAGS="$LIBCDDB_CFLAGS" +- else +- if test -n "$PKG_CONFIG" && \ +- { (echo "$as_me:$LINENO: \$PKG_CONFIG --exists --print-errors \"libcddb >= 0.9.5\"") >&5 +- ($PKG_CONFIG --exists --print-errors "libcddb >= 0.9.5") 2>&5 +- ac_status=$? +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); }; then +- pkg_cv_LIBCDDB_CFLAGS=`$PKG_CONFIG --cflags "libcddb >= 0.9.5" 2>/dev/null` +-else +- pkg_failed=yes +-fi +- fi +-else +- pkg_failed=untried +-fi +-if test -n "$PKG_CONFIG"; then +- if test -n "$LIBCDDB_LIBS"; then +- pkg_cv_LIBCDDB_LIBS="$LIBCDDB_LIBS" +- else +- if test -n "$PKG_CONFIG" && \ +- { (echo "$as_me:$LINENO: \$PKG_CONFIG --exists --print-errors \"libcddb >= 0.9.5\"") >&5 +- ($PKG_CONFIG --exists --print-errors "libcddb >= 0.9.5") 2>&5 +- ac_status=$? +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); }; then +- pkg_cv_LIBCDDB_LIBS=`$PKG_CONFIG --libs "libcddb >= 0.9.5" 2>/dev/null` +-else +- pkg_failed=yes +-fi +- fi +-else +- pkg_failed=untried +-fi ++ PLUGINS="${PLUGINS} gestures rc telnet hotkeys netsync showintf time marq podcast shout sap fake" + + ++ PLUGINS="${PLUGINS} rss mosaic wall motiondetect clone crop" + +-if test $pkg_failed = yes; then + +-if $PKG_CONFIG --atleast-pkgconfig-version 0.20; then +- _pkg_short_errors_supported=yes +-else +- _pkg_short_errors_supported=no +-fi +- if test $_pkg_short_errors_supported = yes; then +- LIBCDDB_PKG_ERRORS=`$PKG_CONFIG --short-errors --errors-to-stdout --print-errors "libcddb >= 0.9.5"` +- else +- LIBCDDB_PKG_ERRORS=`$PKG_CONFIG --errors-to-stdout --print-errors "libcddb >= 0.9.5"` +- fi +- # Put the nasty error message in config.log where it belongs +- echo "$LIBCDDB_PKG_ERRORS" >&5 ++ PLUGINS="${PLUGINS} i420_yuy2 i422_yuy2 i420_ymga" + +- { echo "$as_me:$LINENO: result: no" >&5 +-echo "${ECHO_T}no" >&6; } +- : +- { echo "$as_me:$LINENO: WARNING: new enough libcddb not found. CDDB access disabled" >&5 +-echo "$as_me: WARNING: new enough libcddb not found. CDDB access disabled" >&2;} +- HAVE_LIBCDDB=no +-elif test $pkg_failed = untried; then +- : +- { echo "$as_me:$LINENO: WARNING: new enough libcddb not found. CDDB access disabled" >&5 +-echo "$as_me: WARNING: new enough libcddb not found. CDDB access disabled" >&2;} +- HAVE_LIBCDDB=no +-else +- LIBCDDB_CFLAGS=$pkg_cv_LIBCDDB_CFLAGS +- LIBCDDB_LIBS=$pkg_cv_LIBCDDB_LIBS +- { echo "$as_me:$LINENO: result: yes" >&5 +-echo "${ECHO_T}yes" >&6; } + +- HAVE_LIBCDDB=yes ++ PLUGINS="${PLUGINS} aout_file linear_resampler bandlimited_resampler" + +-cat >>confdefs.h <<\_ACEOF +-#define HAVE_LIBCDDB +-_ACEOF + ++ PLUGINS="${PLUGINS} float32_mixer spdif_mixer simple_channel_mixer" + +- for element in cdda; do +- eval "LDFLAGS_${element}="'"'"$LIBCDDB_LIBS "'$'"{LDFLAGS_${element}} "'"' +- am_modules_with_ldflags="${am_modules_with_ldflags} ${element}" +- done + ++ PLUGINS="${PLUGINS} dolby_surround_decoder headphone_channel_mixer normvol equalizer param_eq" + +- for element in cdda; do +- eval "CFLAGS_${element}="'"$'"{CFLAGS_${element}} $LIBCDDB_CFLAGS"'"' +- am_modules_with_cflags="${am_modules_with_cflags} ${element}" +- done + ++ PLUGINS="${PLUGINS} fixed32tofloat32 float32tos16 float32tos8 float32tou16 float32tou8 a52tospdif dtstospdif s16tofloat32 s16tofloat32swab s8tofloat32 u8tofloat32 audio_format" + + fi +- fi +-fi + +-# Check whether --enable-dvb was given. +-if test "${enable_dvb+set}" = set; then +- enableval=$enable_dvb; ++# Check whether --enable-mostly-builtin was given. ++if test "${enable_mostly_builtin+set}" = set; then : ++ enableval=$enable_mostly_builtin; + fi + ++if test "${enable_mostly_builtin}" = "yes"; then + +-if test "${enable_dvb}" = "yes" +-then ++ BUILTINS="${BUILTINS} ${PLUGINS}" + +-# Check whether --with-dvb was given. +-if test "${with_dvb+set}" = set; then +- withval=$with_dvb; ++ PLUGINS="" + fi + +- if test "${with_dvb}" != "no" -a -n "${with_dvb}" +- then ++if test "${SYS}" != "mingw32" -a "${SYS}" != "mingwce"; then + +- for element in dvb; do +- eval "CFLAGS_${element}="'"$'"{CFLAGS_${element}} -I${with_dvb}/include"'"' +- am_modules_with_cflags="${am_modules_with_cflags} ${element}" +- done ++ PLUGINS="${PLUGINS} screensaver" + +- fi +- CPPFLAGS="${CPPFLAGS_save} -I${with_dvb}/include" ++elif test "${SYS}" != "mingwce"; then + ++ PLUGINS="${PLUGINS} ntservice access_smb dmo msn" ++ ++ ++ for element in dmo; do ++ eval "LDFLAGS_${element}="'"'"-lole32 "'$'"{LDFLAGS_${element}} "'"' ++ am_modules_with_ldflags="${am_modules_with_ldflags} ${element}" ++ done + +-for ac_header in linux/dvb/version.h linux/dvb/frontend.h +-do +-as_ac_Header=`echo "ac_cv_header_$ac_header" | $as_tr_sh` +-if { as_var=$as_ac_Header; eval "test \"\${$as_var+set}\" = set"; }; then +- { echo "$as_me:$LINENO: checking for $ac_header" >&5 +-echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6; } +-if { as_var=$as_ac_Header; eval "test \"\${$as_var+set}\" = set"; }; then +- echo $ECHO_N "(cached) $ECHO_C" >&6 +-fi +-ac_res=`eval echo '${'$as_ac_Header'}'` +- { echo "$as_me:$LINENO: result: $ac_res" >&5 +-echo "${ECHO_T}$ac_res" >&6; } +-else +- # Is the header compilable? +-{ echo "$as_me:$LINENO: checking $ac_header usability" >&5 +-echo $ECHO_N "checking $ac_header usability... $ECHO_C" >&6; } +-cat >conftest.$ac_ext <<_ACEOF +-/* confdefs.h. */ +-_ACEOF +-cat confdefs.h >>conftest.$ac_ext +-cat >>conftest.$ac_ext <<_ACEOF +-/* end confdefs.h. */ +-$ac_includes_default +-#include <$ac_header> +-_ACEOF +-rm -f conftest.$ac_objext +-if { (ac_try="$ac_compile" +-case "(($ac_try" in +- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; +- *) ac_try_echo=$ac_try;; +-esac +-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 +- (eval "$ac_compile") 2>conftest.er1 +- ac_status=$? +- grep -v '^ *+' conftest.er1 >conftest.err +- rm -f conftest.er1 +- cat conftest.err >&5 +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); } && { +- test -z "$ac_c_werror_flag" || +- test ! -s conftest.err +- } && test -s conftest.$ac_objext; then +- ac_header_compiler=yes + else +- echo "$as_me: failed program was:" >&5 +-sed 's/^/| /' conftest.$ac_ext >&5 + +- ac_header_compiler=no ++ PLUGINS="${PLUGINS} win32text" ++ + fi + +-rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext +-{ echo "$as_me:$LINENO: result: $ac_header_compiler" >&5 +-echo "${ECHO_T}$ac_header_compiler" >&6; } ++MMX_MODULES="memcpymmx i420_rgb_mmx i422_yuy2_mmx i420_ymga_mmx" ++#MMX_MODULES="${MMX_MODULES} idctmmx motionmmx" ++MMXEXT_MODULES="memcpymmxext" ++#MMXEXT_MODULES="${MMXEXT_MODULES} idctmmxext motionmmxext" ++THREEDNOW_MODULES="memcpy3dn" ++SSE_MODULES="" ++ALTIVEC_MODULES="memcpyaltivec i420_yuy2_altivec" ++#ALTIVEC_MODULES="${ALTIVEC_MODULES} idctaltivec motionaltivec" + +-# Is the header present? +-{ echo "$as_me:$LINENO: checking $ac_header presence" >&5 +-echo $ECHO_N "checking $ac_header presence... $ECHO_C" >&6; } +-cat >conftest.$ac_ext <<_ACEOF +-/* confdefs.h. */ +-_ACEOF +-cat confdefs.h >>conftest.$ac_ext +-cat >>conftest.$ac_ext <<_ACEOF ++if test "${enable_gprof}" != "yes" ++then ++ MMX_MODULES="${MMX_MODULES} i420_yuy2_mmx" ++fi ++ ++{ $as_echo "$as_me:${as_lineno-$LINENO}: checking if \$CC groks MMX inline assembly" >&5 ++$as_echo_n "checking if \$CC groks MMX inline assembly... " >&6; } ++if ${ac_cv_mmx_inline+:} false; then : ++ $as_echo_n "(cached) " >&6 ++else ++ CFLAGS="${CFLAGS_save}" ++ cat confdefs.h - <<_ACEOF >conftest.$ac_ext + /* end confdefs.h. */ +-#include <$ac_header> ++ ++int ++main () ++{ ++void *p;asm volatile("packuswb %%mm1,%%mm2"::"r"(p)); ++ ; ++ return 0; ++} + _ACEOF +-if { (ac_try="$ac_cpp conftest.$ac_ext" +-case "(($ac_try" in +- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; +- *) ac_try_echo=$ac_try;; +-esac +-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 +- (eval "$ac_cpp conftest.$ac_ext") 2>conftest.er1 +- ac_status=$? +- grep -v '^ *+' conftest.er1 >conftest.err +- rm -f conftest.er1 +- cat conftest.err >&5 +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); } >/dev/null && { +- test -z "$ac_c_preproc_warn_flag$ac_c_werror_flag" || +- test ! -s conftest.err +- }; then +- ac_header_preproc=yes ++if ac_fn_c_try_compile "$LINENO"; then : ++ ac_cv_mmx_inline=yes + else +- echo "$as_me: failed program was:" >&5 +-sed 's/^/| /' conftest.$ac_ext >&5 +- +- ac_header_preproc=no ++ ac_cv_mmx_inline=no ++fi ++rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext + fi ++{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_mmx_inline" >&5 ++$as_echo "$ac_cv_mmx_inline" >&6; } ++if test "${ac_cv_mmx_inline}" != "no"; then + +-rm -f conftest.err conftest.$ac_ext +-{ echo "$as_me:$LINENO: result: $ac_header_preproc" >&5 +-echo "${ECHO_T}$ac_header_preproc" >&6; } ++$as_echo "#define CAN_COMPILE_MMX 1" >>confdefs.h + +-# So? What about this header? +-case $ac_header_compiler:$ac_header_preproc:$ac_c_preproc_warn_flag in +- yes:no: ) +- { echo "$as_me:$LINENO: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&5 +-echo "$as_me: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&2;} +- { echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the compiler's result" >&5 +-echo "$as_me: WARNING: $ac_header: proceeding with the compiler's result" >&2;} +- ac_header_preproc=yes +- ;; +- no:yes:* ) +- { echo "$as_me:$LINENO: WARNING: $ac_header: present but cannot be compiled" >&5 +-echo "$as_me: WARNING: $ac_header: present but cannot be compiled" >&2;} +- { echo "$as_me:$LINENO: WARNING: $ac_header: check for missing prerequisite headers?" >&5 +-echo "$as_me: WARNING: $ac_header: check for missing prerequisite headers?" >&2;} +- { echo "$as_me:$LINENO: WARNING: $ac_header: see the Autoconf documentation" >&5 +-echo "$as_me: WARNING: $ac_header: see the Autoconf documentation" >&2;} +- { echo "$as_me:$LINENO: WARNING: $ac_header: section \"Present But Cannot Be Compiled\"" >&5 +-echo "$as_me: WARNING: $ac_header: section \"Present But Cannot Be Compiled\"" >&2;} +- { echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the preprocessor's result" >&5 +-echo "$as_me: WARNING: $ac_header: proceeding with the preprocessor's result" >&2;} +- { echo "$as_me:$LINENO: WARNING: $ac_header: in the future, the compiler will take precedence" >&5 +-echo "$as_me: WARNING: $ac_header: in the future, the compiler will take precedence" >&2;} ++ ACCEL_MODULES="${ACCEL_MODULES} ${MMX_MODULES}" ++fi + +- ;; +-esac +-{ echo "$as_me:$LINENO: checking for $ac_header" >&5 +-echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6; } +-if { as_var=$as_ac_Header; eval "test \"\${$as_var+set}\" = set"; }; then +- echo $ECHO_N "(cached) $ECHO_C" >&6 ++{ $as_echo "$as_me:${as_lineno-$LINENO}: checking if \$CC groks MMX intrinsics" >&5 ++$as_echo_n "checking if \$CC groks MMX intrinsics... " >&6; } ++if ${ac_cv_c_mmx_intrinsics+:} false; then : ++ $as_echo_n "(cached) " >&6 ++else ++ CFLAGS="${CFLAGS_save} -O -mmmx" ++ cat confdefs.h - <<_ACEOF >conftest.$ac_ext ++/* end confdefs.h. */ ++#include ++ #include ++ uint64_t frobzor; ++int ++main () ++{ ++__m64 a, b, c; ++ a = b = c = (__m64)frobzor; ++ a = _mm_slli_pi16(a, 3); ++ a = _mm_adds_pi16(a, b); ++ c = _mm_srli_pi16(c, 8); ++ c = _mm_slli_pi16(c, 3); ++ b = _mm_adds_pi16(b, c); ++ a = _mm_unpacklo_pi8(a, b); ++ frobzor = (uint64_t)a; ++ ; ++ return 0; ++} ++_ACEOF ++if ac_fn_c_try_compile "$LINENO"; then : ++ ac_cv_c_mmx_intrinsics=yes + else +- eval "$as_ac_Header=\$ac_header_preproc" ++ ac_cv_c_mmx_intrinsics=no + fi +-ac_res=`eval echo '${'$as_ac_Header'}'` +- { echo "$as_me:$LINENO: result: $ac_res" >&5 +-echo "${ECHO_T}$ac_res" >&6; } +- ++rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext + fi +-if test `eval echo '${'$as_ac_Header'}'` = yes; then +- cat >>confdefs.h <<_ACEOF +-#define `echo "HAVE_$ac_header" | $as_tr_cpp` 1 +-_ACEOF +- +- if test -z "${with_dvbpsi_tree}" +- then +- +- PLUGINS="${PLUGINS} dvb" ++{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_c_mmx_intrinsics" >&5 ++$as_echo "$ac_cv_c_mmx_intrinsics" >&6; } ++if test "${ac_cv_c_mmx_intrinsics}" != "no"; then + +- else ++$as_echo "#define HAVE_MMX_INTRINSICS 1" >>confdefs.h + +- BUILTINS="${BUILTINS} dvb" + +- fi ++ for element in i420_rgb_mmx; do ++ eval "CFLAGS_${element}="'"$'"{CFLAGS_${element}} -mmmx"'"' ++ am_modules_with_cflags="${am_modules_with_cflags} ${element}" ++ done + +-else +- { echo "$as_me:$LINENO: WARNING: linux-dvb headers not found" >&5 +-echo "$as_me: WARNING: linux-dvb headers not found" >&2;} + fi + +-done ++{ $as_echo "$as_me:${as_lineno-$LINENO}: checking if \$CC groks MMX EXT inline assembly" >&5 ++$as_echo_n "checking if \$CC groks MMX EXT inline assembly... " >&6; } ++if ${ac_cv_mmxext_inline+:} false; then : ++ $as_echo_n "(cached) " >&6 ++else ++ CFLAGS="${CFLAGS_save}" ++ cat confdefs.h - <<_ACEOF >conftest.$ac_ext ++/* end confdefs.h. */ + +- CPPFLAGS="${CPPFLAGS_save}" ++int ++main () ++{ ++void *p;asm volatile("maskmovq %%mm1,%%mm2"::"r"(p)); ++ ; ++ return 0; ++} ++_ACEOF ++if ac_fn_c_try_compile "$LINENO"; then : ++ ac_cv_mmxext_inline=yes ++else ++ ac_cv_mmxext_inline=no + fi +- +-# Check whether --enable-screen was given. +-if test "${enable_screen+set}" = set; then +- enableval=$enable_screen; ++rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext + fi ++{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_mmxext_inline" >&5 ++$as_echo "$ac_cv_mmxext_inline" >&6; } ++if test "${ac_cv_mmxext_inline}" != "no"; then + +-if test "${enable_screen}" != "no"; then +- if test "${SYS}" = "darwin"; then ++$as_echo "#define CAN_COMPILE_MMXEXT 1" >>confdefs.h + +-for ac_header in ApplicationServices/ApplicationServices.h +-do +-as_ac_Header=`echo "ac_cv_header_$ac_header" | $as_tr_sh` +-if { as_var=$as_ac_Header; eval "test \"\${$as_var+set}\" = set"; }; then +- { echo "$as_me:$LINENO: checking for $ac_header" >&5 +-echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6; } +-if { as_var=$as_ac_Header; eval "test \"\${$as_var+set}\" = set"; }; then +- echo $ECHO_N "(cached) $ECHO_C" >&6 ++ ACCEL_MODULES="${ACCEL_MODULES} ${MMXEXT_MODULES}" + fi +-ac_res=`eval echo '${'$as_ac_Header'}'` +- { echo "$as_me:$LINENO: result: $ac_res" >&5 +-echo "${ECHO_T}$ac_res" >&6; } ++ ++{ $as_echo "$as_me:${as_lineno-$LINENO}: checking if \$CC groks 3D Now! inline assembly" >&5 ++$as_echo_n "checking if \$CC groks 3D Now! inline assembly... " >&6; } ++if ${ac_cv_3dnow_inline+:} false; then : ++ $as_echo_n "(cached) " >&6 + else +- # Is the header compilable? +-{ echo "$as_me:$LINENO: checking $ac_header usability" >&5 +-echo $ECHO_N "checking $ac_header usability... $ECHO_C" >&6; } +-cat >conftest.$ac_ext <<_ACEOF +-/* confdefs.h. */ +-_ACEOF +-cat confdefs.h >>conftest.$ac_ext +-cat >>conftest.$ac_ext <<_ACEOF ++ CFLAGS="${CFLAGS_save}" ++ cat confdefs.h - <<_ACEOF >conftest.$ac_ext + /* end confdefs.h. */ +-$ac_includes_default +-#include <$ac_header> ++ ++int ++main () ++{ ++void *p;asm volatile("pfadd %%mm1,%%mm2"::"r"(p)); ++ ; ++ return 0; ++} + _ACEOF +-rm -f conftest.$ac_objext +-if { (ac_try="$ac_compile" +-case "(($ac_try" in +- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; +- *) ac_try_echo=$ac_try;; +-esac +-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 +- (eval "$ac_compile") 2>conftest.er1 +- ac_status=$? +- grep -v '^ *+' conftest.er1 >conftest.err +- rm -f conftest.er1 +- cat conftest.err >&5 +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); } && { +- test -z "$ac_c_werror_flag" || +- test ! -s conftest.err +- } && test -s conftest.$ac_objext; then +- ac_header_compiler=yes ++if ac_fn_c_try_compile "$LINENO"; then : ++ ac_cv_3dnow_inline=yes + else +- echo "$as_me: failed program was:" >&5 +-sed 's/^/| /' conftest.$ac_ext >&5 +- +- ac_header_compiler=no ++ ac_cv_3dnow_inline=no + fi +- + rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext +-{ echo "$as_me:$LINENO: result: $ac_header_compiler" >&5 +-echo "${ECHO_T}$ac_header_compiler" >&6; } ++fi ++{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_3dnow_inline" >&5 ++$as_echo "$ac_cv_3dnow_inline" >&6; } ++if test "${ac_cv_3dnow_inline}" != "no"; then + +-# Is the header present? +-{ echo "$as_me:$LINENO: checking $ac_header presence" >&5 +-echo $ECHO_N "checking $ac_header presence... $ECHO_C" >&6; } +-cat >conftest.$ac_ext <<_ACEOF +-/* confdefs.h. */ +-_ACEOF +-cat confdefs.h >>conftest.$ac_ext +-cat >>conftest.$ac_ext <<_ACEOF +-/* end confdefs.h. */ +-#include <$ac_header> +-_ACEOF +-if { (ac_try="$ac_cpp conftest.$ac_ext" +-case "(($ac_try" in +- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; +- *) ac_try_echo=$ac_try;; +-esac +-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 +- (eval "$ac_cpp conftest.$ac_ext") 2>conftest.er1 +- ac_status=$? +- grep -v '^ *+' conftest.er1 >conftest.err +- rm -f conftest.er1 +- cat conftest.err >&5 +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); } >/dev/null && { +- test -z "$ac_c_preproc_warn_flag$ac_c_werror_flag" || +- test ! -s conftest.err +- }; then +- ac_header_preproc=yes +-else +- echo "$as_me: failed program was:" >&5 +-sed 's/^/| /' conftest.$ac_ext >&5 ++$as_echo "#define CAN_COMPILE_3DNOW 1" >>confdefs.h + +- ac_header_preproc=no ++ ACCEL_MODULES="${ACCEL_MODULES} ${THREEDNOW_MODULES}" + fi + +-rm -f conftest.err conftest.$ac_ext +-{ echo "$as_me:$LINENO: result: $ac_header_preproc" >&5 +-echo "${ECHO_T}$ac_header_preproc" >&6; } +- +-# So? What about this header? +-case $ac_header_compiler:$ac_header_preproc:$ac_c_preproc_warn_flag in +- yes:no: ) +- { echo "$as_me:$LINENO: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&5 +-echo "$as_me: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&2;} +- { echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the compiler's result" >&5 +-echo "$as_me: WARNING: $ac_header: proceeding with the compiler's result" >&2;} +- ac_header_preproc=yes +- ;; +- no:yes:* ) +- { echo "$as_me:$LINENO: WARNING: $ac_header: present but cannot be compiled" >&5 +-echo "$as_me: WARNING: $ac_header: present but cannot be compiled" >&2;} +- { echo "$as_me:$LINENO: WARNING: $ac_header: check for missing prerequisite headers?" >&5 +-echo "$as_me: WARNING: $ac_header: check for missing prerequisite headers?" >&2;} +- { echo "$as_me:$LINENO: WARNING: $ac_header: see the Autoconf documentation" >&5 +-echo "$as_me: WARNING: $ac_header: see the Autoconf documentation" >&2;} +- { echo "$as_me:$LINENO: WARNING: $ac_header: section \"Present But Cannot Be Compiled\"" >&5 +-echo "$as_me: WARNING: $ac_header: section \"Present But Cannot Be Compiled\"" >&2;} +- { echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the preprocessor's result" >&5 +-echo "$as_me: WARNING: $ac_header: proceeding with the preprocessor's result" >&2;} +- { echo "$as_me:$LINENO: WARNING: $ac_header: in the future, the compiler will take precedence" >&5 +-echo "$as_me: WARNING: $ac_header: in the future, the compiler will take precedence" >&2;} ++{ $as_echo "$as_me:${as_lineno-$LINENO}: checking if \$CC groks SSE inline assembly" >&5 ++$as_echo_n "checking if \$CC groks SSE inline assembly... " >&6; } ++if ${ac_cv_sse_inline+:} false; then : ++ $as_echo_n "(cached) " >&6 ++else ++ CFLAGS="${CFLAGS_save}" ++ cat confdefs.h - <<_ACEOF >conftest.$ac_ext ++/* end confdefs.h. */ + +- ;; +-esac +-{ echo "$as_me:$LINENO: checking for $ac_header" >&5 +-echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6; } +-if { as_var=$as_ac_Header; eval "test \"\${$as_var+set}\" = set"; }; then +- echo $ECHO_N "(cached) $ECHO_C" >&6 ++int ++main () ++{ ++void *p;asm volatile("xorps %%xmm1,%%xmm2"::"r"(p)); ++ ; ++ return 0; ++} ++_ACEOF ++if ac_fn_c_try_compile "$LINENO"; then : ++ ac_cv_sse_inline=yes + else +- eval "$as_ac_Header=\$ac_header_preproc" ++ ac_cv_sse_inline=no + fi +-ac_res=`eval echo '${'$as_ac_Header'}'` +- { echo "$as_me:$LINENO: result: $ac_res" >&5 +-echo "${ECHO_T}$ac_res" >&6; } +- ++rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext + fi +-if test `eval echo '${'$as_ac_Header'}'` = yes; then +- cat >>confdefs.h <<_ACEOF +-#define `echo "HAVE_$ac_header" | $as_tr_cpp` 1 +-_ACEOF ++{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_sse_inline" >&5 ++$as_echo "$ac_cv_sse_inline" >&6; } ++if test "${ac_cv_sse_inline}" != "no" -a "${SYS}" != "solaris"; then + ++$as_echo "#define CAN_COMPILE_SSE 1" >>confdefs.h + +- PLUGINS="${PLUGINS} screen" ++ ACCEL_MODULES="${ACCEL_MODULES} ${SSE_MODULES}" ++fi + ++if test "${SYS}" != "mingw32" -a "${SYS}" != "mingwce"; then ++{ $as_echo "$as_me:${as_lineno-$LINENO}: checking if \$CC groks AltiVec inline assembly" >&5 ++$as_echo_n "checking if \$CC groks AltiVec inline assembly... " >&6; } ++if ${ac_cv_altivec_inline+:} false; then : ++ $as_echo_n "(cached) " >&6 ++else ++ CFLAGS="${CFLAGS_save}" ++ cat confdefs.h - <<_ACEOF >conftest.$ac_ext ++/* end confdefs.h. */ + +- for element in screen; do +- eval "LDFLAGS_${element}="'"'"-framework ApplicationServices "'$'"{LDFLAGS_${element}} "'"' +- am_modules_with_ldflags="${am_modules_with_ldflags} ${element}" +- done ++int ++main () ++{ ++asm volatile("vperm 0,1,2,3"); ++ ; ++ return 0; ++} ++_ACEOF ++if ac_fn_c_try_compile "$LINENO"; then : ++ ac_cv_altivec_inline=yes ++else ++ CFLAGS="${CFLAGS_save} -Wa,-m7400" ++ cat confdefs.h - <<_ACEOF >conftest.$ac_ext ++/* end confdefs.h. */ + ++int ++main () ++{ ++asm volatile("vperm 0,1,2,3"); ++ ; ++ return 0; ++} ++_ACEOF ++if ac_fn_c_try_compile "$LINENO"; then : ++ ac_cv_altivec_inline="-Wa,-m7400" ++else ++ ac_cv_altivec_inline=no ++fi ++rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext + + fi ++rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext ++fi ++{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_altivec_inline" >&5 ++$as_echo "$ac_cv_altivec_inline" >&6; } ++if test "${ac_cv_altivec_inline}" != "no"; then + +-done ++$as_echo "#define CAN_COMPILE_ALTIVEC 1" >>confdefs.h + +- elif test "${SYS}" = "mingw32"; then ++ if test "${ac_cv_altivec_inline}" != "yes"; then + +- PLUGINS="${PLUGINS} screen" ++ for element in idctaltivec; do ++ eval "CFLAGS_${element}="'"$'"{CFLAGS_${element}} ${ac_cv_altivec_inline}"'"' ++ am_modules_with_cflags="${am_modules_with_cflags} ${element}" ++ done + + +- for element in screen; do +- eval "LDFLAGS_${element}="'"'"-lgdi32 "'$'"{LDFLAGS_${element}} "'"' +- am_modules_with_ldflags="${am_modules_with_ldflags} ${element}" ++ for element in motionaltivec; do ++ eval "CFLAGS_${element}="'"$'"{CFLAGS_${element}} ${ac_cv_altivec_inline}"'"' ++ am_modules_with_cflags="${am_modules_with_cflags} ${element}" + done + +- elif test "${SYS}" = "mingwce"; then +- CPPFLAGS="${CPPFLAGS_save}" +- elif test "${SYS}" = "beos"; then + +- PLUGINS="${PLUGINS} screen" ++ for element in memcpyaltivec; do ++ eval "CFLAGS_${element}="'"$'"{CFLAGS_${element}} ${ac_cv_altivec_inline}"'"' ++ am_modules_with_cflags="${am_modules_with_cflags} ${element}" ++ done + + +- for element in screen; do +- eval "CXXFLAGS_${element}="'"$'"{CXXFLAGS_${element}} "'"' +- am_modules_with_cxxflags="${am_modules_with_cxxflags} ${element}" ++ for element in i420_yuy2_altivec; do ++ eval "CFLAGS_${element}="'"$'"{CFLAGS_${element}} ${ac_cv_altivec_inline}"'"' ++ am_modules_with_cflags="${am_modules_with_cflags} ${element}" + done + + +- for element in screen; do +- eval "LDFLAGS_${element}="'"'"-lbe "'$'"{LDFLAGS_${element}} "'"' +- am_modules_with_ldflags="${am_modules_with_ldflags} ${element}" ++ for element in vlc; do ++ eval "CFLAGS_${element}="'"$'"{CFLAGS_${element}} ${ac_cv_altivec_inline}"'"' ++ am_modules_with_cflags="${am_modules_with_cflags} ${element}" + done + +- else +- CPPFLAGS="${CPPFLAGS_save} ${X_CFLAGS}" +- +-for ac_header in X11/Xlib.h +-do +-as_ac_Header=`echo "ac_cv_header_$ac_header" | $as_tr_sh` +-if { as_var=$as_ac_Header; eval "test \"\${$as_var+set}\" = set"; }; then +- { echo "$as_me:$LINENO: checking for $ac_header" >&5 +-echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6; } +-if { as_var=$as_ac_Header; eval "test \"\${$as_var+set}\" = set"; }; then +- echo $ECHO_N "(cached) $ECHO_C" >&6 ++ fi ++ ACCEL_MODULES="${ACCEL_MODULES} ${ALTIVEC_MODULES}" + fi +-ac_res=`eval echo '${'$as_ac_Header'}'` +- { echo "$as_me:$LINENO: result: $ac_res" >&5 +-echo "${ECHO_T}$ac_res" >&6; } ++ ++{ $as_echo "$as_me:${as_lineno-$LINENO}: checking if \$CC groks AltiVec C extensions" >&5 ++$as_echo_n "checking if \$CC groks AltiVec C extensions... " >&6; } ++if ${ac_cv_c_altivec+:} false; then : ++ $as_echo_n "(cached) " >&6 + else +- # Is the header compilable? +-{ echo "$as_me:$LINENO: checking $ac_header usability" >&5 +-echo $ECHO_N "checking $ac_header usability... $ECHO_C" >&6; } +-cat >conftest.$ac_ext <<_ACEOF +-/* confdefs.h. */ +-_ACEOF +-cat confdefs.h >>conftest.$ac_ext +-cat >>conftest.$ac_ext <<_ACEOF ++ # OS X/PPC test (gcc 4.x) ++ CFLAGS="${CFLAGS_save} -mpim-altivec -force_cpusubtype_ALL" ++ cat confdefs.h - <<_ACEOF >conftest.$ac_ext + /* end confdefs.h. */ +-$ac_includes_default +-#include <$ac_header> ++ ++int ++main () ++{ ++vec_ld(0, (unsigned char *)0); ++ ; ++ return 0; ++} + _ACEOF +-rm -f conftest.$ac_objext +-if { (ac_try="$ac_compile" +-case "(($ac_try" in +- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; +- *) ac_try_echo=$ac_try;; +-esac +-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 +- (eval "$ac_compile") 2>conftest.er1 +- ac_status=$? +- grep -v '^ *+' conftest.er1 >conftest.err +- rm -f conftest.er1 +- cat conftest.err >&5 +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); } && { +- test -z "$ac_c_werror_flag" || +- test ! -s conftest.err +- } && test -s conftest.$ac_objext; then +- ac_header_compiler=yes ++if ac_fn_c_try_compile "$LINENO"; then : ++ ac_cv_c_altivec="-mpim-altivec -force_cpusubtype_ALL" + else +- echo "$as_me: failed program was:" >&5 +-sed 's/^/| /' conftest.$ac_ext >&5 +- +- ac_header_compiler=no +-fi +- +-rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext +-{ echo "$as_me:$LINENO: result: $ac_header_compiler" >&5 +-echo "${ECHO_T}$ac_header_compiler" >&6; } ++ # OS X/PPC test (gcc 3.x) ++ CFLAGS="${CFLAGS_save} -faltivec" ++ cat confdefs.h - <<_ACEOF >conftest.$ac_ext ++/* end confdefs.h. */ + +-# Is the header present? +-{ echo "$as_me:$LINENO: checking $ac_header presence" >&5 +-echo $ECHO_N "checking $ac_header presence... $ECHO_C" >&6; } +-cat >conftest.$ac_ext <<_ACEOF +-/* confdefs.h. */ ++int ++main () ++{ ++vec_ld(1 * sizeof(vector float), (unsigned char *)0); ++ ; ++ return 0; ++} ++_ACEOF ++if ac_fn_c_try_compile "$LINENO"; then : ++ ac_cv_c_altivec="-faltivec" ++else ++ # Linux/PPC test (gcc 4.x) ++ CFLAGS="${CFLAGS_save} -maltivec" ++ cat confdefs.h - <<_ACEOF >conftest.$ac_ext ++/* end confdefs.h. */ ++#include ++int ++main () ++{ ++vec_ld(0, (unsigned char *)0); ++ ; ++ return 0; ++} + _ACEOF +-cat confdefs.h >>conftest.$ac_ext +-cat >>conftest.$ac_ext <<_ACEOF ++if ac_fn_c_try_compile "$LINENO"; then : ++ ac_cv_c_altivec="-maltivec" ++else ++ # Linux/PPC test (gcc 3.3) ++ CFLAGS="${CFLAGS_save} -maltivec -mabi=altivec" ++ cat confdefs.h - <<_ACEOF >conftest.$ac_ext + /* end confdefs.h. */ +-#include <$ac_header> ++#include ++int ++main () ++{ ++vec_ld(0, (unsigned char *)0); ++ ; ++ return 0; ++} + _ACEOF +-if { (ac_try="$ac_cpp conftest.$ac_ext" +-case "(($ac_try" in +- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; +- *) ac_try_echo=$ac_try;; +-esac +-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 +- (eval "$ac_cpp conftest.$ac_ext") 2>conftest.er1 +- ac_status=$? +- grep -v '^ *+' conftest.er1 >conftest.err +- rm -f conftest.er1 +- cat conftest.err >&5 +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); } >/dev/null && { +- test -z "$ac_c_preproc_warn_flag$ac_c_werror_flag" || +- test ! -s conftest.err +- }; then +- ac_header_preproc=yes ++if ac_fn_c_try_compile "$LINENO"; then : ++ ac_cv_c_altivec="" ++ ac_cv_c_altivec_abi="-maltivec -mabi=altivec" + else +- echo "$as_me: failed program was:" >&5 +-sed 's/^/| /' conftest.$ac_ext >&5 ++ # Linux/PPC test (gcc 3.3) ++ CFLAGS="${CFLAGS_save} -fvec" ++ cat confdefs.h - <<_ACEOF >conftest.$ac_ext ++/* end confdefs.h. */ ++#include ++int ++main () ++{ ++vec_ld(0, (unsigned char *)0); ++ ; ++ return 0; ++} ++_ACEOF ++if ac_fn_c_try_compile "$LINENO"; then : ++ ac_cv_c_altivec="-fvec" ++else ++ ac_cv_c_altivec=no ++fi ++rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext + +- ac_header_preproc=no + fi ++rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext + +-rm -f conftest.err conftest.$ac_ext +-{ echo "$as_me:$LINENO: result: $ac_header_preproc" >&5 +-echo "${ECHO_T}$ac_header_preproc" >&6; } ++fi ++rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext + +-# So? What about this header? +-case $ac_header_compiler:$ac_header_preproc:$ac_c_preproc_warn_flag in +- yes:no: ) +- { echo "$as_me:$LINENO: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&5 +-echo "$as_me: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&2;} +- { echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the compiler's result" >&5 +-echo "$as_me: WARNING: $ac_header: proceeding with the compiler's result" >&2;} +- ac_header_preproc=yes +- ;; +- no:yes:* ) +- { echo "$as_me:$LINENO: WARNING: $ac_header: present but cannot be compiled" >&5 +-echo "$as_me: WARNING: $ac_header: present but cannot be compiled" >&2;} +- { echo "$as_me:$LINENO: WARNING: $ac_header: check for missing prerequisite headers?" >&5 +-echo "$as_me: WARNING: $ac_header: check for missing prerequisite headers?" >&2;} +- { echo "$as_me:$LINENO: WARNING: $ac_header: see the Autoconf documentation" >&5 +-echo "$as_me: WARNING: $ac_header: see the Autoconf documentation" >&2;} +- { echo "$as_me:$LINENO: WARNING: $ac_header: section \"Present But Cannot Be Compiled\"" >&5 +-echo "$as_me: WARNING: $ac_header: section \"Present But Cannot Be Compiled\"" >&2;} +- { echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the preprocessor's result" >&5 +-echo "$as_me: WARNING: $ac_header: proceeding with the preprocessor's result" >&2;} +- { echo "$as_me:$LINENO: WARNING: $ac_header: in the future, the compiler will take precedence" >&5 +-echo "$as_me: WARNING: $ac_header: in the future, the compiler will take precedence" >&2;} ++fi ++rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext ++ ++fi ++rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext ++ CFLAGS="${CFLAGS_save}" + +- ;; +-esac +-{ echo "$as_me:$LINENO: checking for $ac_header" >&5 +-echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6; } +-if { as_var=$as_ac_Header; eval "test \"\${$as_var+set}\" = set"; }; then +- echo $ECHO_N "(cached) $ECHO_C" >&6 +-else +- eval "$as_ac_Header=\$ac_header_preproc" + fi +-ac_res=`eval echo '${'$as_ac_Header'}'` +- { echo "$as_me:$LINENO: result: $ac_res" >&5 +-echo "${ECHO_T}$ac_res" >&6; } ++{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_c_altivec" >&5 ++$as_echo "$ac_cv_c_altivec" >&6; } + ++if test "${ac_cv_c_altivec}" != "no"; then ++ CPPFLAGS="${CPPFLAGS_save} ${ac_cv_c_altivec}" + fi +-if test `eval echo '${'$as_ac_Header'}'` = yes; then ++for ac_header in altivec.h ++do : ++ ac_fn_c_check_header_mongrel "$LINENO" "altivec.h" "ac_cv_header_altivec_h" "$ac_includes_default" ++if test "x$ac_cv_header_altivec_h" = xyes; then : + cat >>confdefs.h <<_ACEOF +-#define `echo "HAVE_$ac_header" | $as_tr_cpp` 1 ++#define HAVE_ALTIVEC_H 1 + _ACEOF + ++fi + +- PLUGINS="${PLUGINS} screen" ++done + ++CPPFLAGS="${CPPFLAGS_save}" + +- for element in screen; do +- eval "LDFLAGS_${element}="'"'"${X_LIBS} ${X_PRE_LIBS} -lX11 -lXext "'$'"{LDFLAGS_${element}} "'"' +- am_modules_with_ldflags="${am_modules_with_ldflags} ${element}" +- done ++if test "${ac_cv_c_altivec}" != "no"; then + ++$as_echo "#define CAN_COMPILE_C_ALTIVEC 1" >>confdefs.h + +- for element in screen; do +- eval "CPPFLAGS_${element}="'"$'"{CPPFLAGS_${element}} ${X_CFLAGS}"'"' +- am_modules_with_cppflags="${am_modules_with_cppflags} ${element}" ++ ++ for element in vlc; do ++ eval "CFLAGS_${element}="'"$'"{CFLAGS_${element}} ${ac_cv_c_altivec}"'"' ++ am_modules_with_cflags="${am_modules_with_cflags} ${element}" + done + + +-fi ++ for element in idctaltivec motionaltivec; do ++ eval "CFLAGS_${element}="'"$'"{CFLAGS_${element}} ${ac_cv_c_altivec}"'"' ++ am_modules_with_cflags="${am_modules_with_cflags} ${element}" ++ done + +-done + +- CPPFLAGS="${CPPFLAGS_save}" ++ for element in i420_yuy2_altivec memcpyaltivec deinterlace; do ++ eval "CFLAGS_${element}="'"$'"{CFLAGS_${element}} ${ac_cv_c_altivec} ${ac_cv_c_altivec_abi}"'"' ++ am_modules_with_cflags="${am_modules_with_cflags} ${element}" ++ done ++ ++ if test "${ac_cv_altivec_inline}" = "no"; then ++ ACCEL_MODULES="${ACCEL_MODULES} ${ALTIVEC_MODULES}" + fi + fi + +-have_ipv6=no +- +-for ac_func in inet_pton +-do +-as_ac_var=`echo "ac_cv_func_$ac_func" | $as_tr_sh` +-{ echo "$as_me:$LINENO: checking for $ac_func" >&5 +-echo $ECHO_N "checking for $ac_func... $ECHO_C" >&6; } +-if { as_var=$as_ac_var; eval "test \"\${$as_var+set}\" = set"; }; then +- echo $ECHO_N "(cached) $ECHO_C" >&6 +-else +- cat >conftest.$ac_ext <<_ACEOF +-/* confdefs.h. */ +-_ACEOF +-cat confdefs.h >>conftest.$ac_ext +-cat >>conftest.$ac_ext <<_ACEOF ++{ $as_echo "$as_me:${as_lineno-$LINENO}: checking if linker needs -framework vecLib" >&5 ++$as_echo_n "checking if linker needs -framework vecLib... " >&6; } ++if ${ac_cv_ld_altivec+:} false; then : ++ $as_echo_n "(cached) " >&6 ++else ++ LDFLAGS="${LDFLAGS_vlc} -framework vecLib" ++ cat confdefs.h - <<_ACEOF >conftest.$ac_ext + /* end confdefs.h. */ +-/* Define $ac_func to an innocuous variant, in case declares $ac_func. +- For example, HP-UX 11i declares gettimeofday. */ +-#define $ac_func innocuous_$ac_func +- +-/* System header to define __stub macros and hopefully few prototypes, +- which can conflict with char $ac_func (); below. +- Prefer to if __STDC__ is defined, since +- exists even on freestanding compilers. */ +- +-#ifdef __STDC__ +-# include +-#else +-# include +-#endif +- +-#undef $ac_func +- +-/* Override any GCC internal prototype to avoid an error. +- Use char because int might match the return type of a GCC +- builtin and then its argument prototype would still apply. */ +-#ifdef __cplusplus +-extern "C" +-#endif +-char $ac_func (); +-/* The GNU C library defines this for functions which it implements +- to always fail with ENOSYS. Some functions are actually named +- something starting with __ and the normal name is an alias. */ +-#if defined __stub_$ac_func || defined __stub___$ac_func +-choke me +-#endif + + int + main () + { +-return $ac_func (); ++ + ; + return 0; + } + _ACEOF +-rm -f conftest.$ac_objext conftest$ac_exeext +-if { (ac_try="$ac_link" +-case "(($ac_try" in +- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; +- *) ac_try_echo=$ac_try;; +-esac +-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 +- (eval "$ac_link") 2>conftest.er1 +- ac_status=$? +- grep -v '^ *+' conftest.er1 >conftest.err +- rm -f conftest.er1 +- cat conftest.err >&5 +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); } && { +- test -z "$ac_c_werror_flag" || +- test ! -s conftest.err +- } && test -s conftest$ac_exeext && +- $as_test_x conftest$ac_exeext; then +- eval "$as_ac_var=yes" ++if ac_fn_c_try_link "$LINENO"; then : ++ ac_cv_ld_altivec=yes + else +- echo "$as_me: failed program was:" >&5 +-sed 's/^/| /' conftest.$ac_ext >&5 ++ ac_cv_ld_altivec=no ++fi ++rm -f core conftest.err conftest.$ac_objext \ ++ conftest$ac_exeext conftest.$ac_ext ++ LDFLAGS="${LDFLAGS_save}" ++ ++fi ++{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_ld_altivec" >&5 ++$as_echo "$ac_cv_ld_altivec" >&6; } ++if test "${ac_cv_ld_altivec}" != "no"; then ++ ++ for element in vlc idctaltivec motionaltivec memcpyaltivec; do ++ eval "LDFLAGS_${element}="'"'"-framework vecLib "'$'"{LDFLAGS_${element}} "'"' ++ am_modules_with_ldflags="${am_modules_with_ldflags} ${element}" ++ done + +- eval "$as_ac_var=no" + fi ++fi # end "${SYS}" != "mingw32" -a "${SYS}" != "mingwce" ++ + +-rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ +- conftest$ac_exeext conftest.$ac_ext ++# Check whether --with- was given. ++if test "${with_+set}" = set; then : ++ withval=$with_; ++fi ++ ++ ++# Check whether --with- was given. ++if test "${with_+set}" = set; then : ++ withval=$with_; ++fi ++ ++ ++ ++# Check whether --with-tuning was given. ++if test "${with_tuning+set}" = set; then : ++ withval=$with_tuning; + fi +-ac_res=`eval echo '${'$as_ac_var'}'` +- { echo "$as_me:$LINENO: result: $ac_res" >&5 +-echo "${ECHO_T}$ac_res" >&6; } +-if test `eval echo '${'$as_ac_var'}'` = yes; then +- cat >>confdefs.h <<_ACEOF +-#define `echo "HAVE_$ac_func" | $as_tr_cpp` 1 +-_ACEOF +- have_ipv6=yes +-else + +- { echo "$as_me:$LINENO: checking for inet_pton in -lnsl" >&5 +-echo $ECHO_N "checking for inet_pton in -lnsl... $ECHO_C" >&6; } +-if test "${ac_cv_lib_nsl_inet_pton+set}" = set; then +- echo $ECHO_N "(cached) $ECHO_C" >&6 ++if test -n "${with_tuning}"; then ++ if test "${with_tuning}" != "no"; then ++ CFLAGS_TUNING="-mtune=${with_tuning}" ++ fi + else +- ac_check_lib_save_LIBS=$LIBS +-LIBS="-lnsl $LIBS" +-cat >conftest.$ac_ext <<_ACEOF +-/* confdefs.h. */ +-_ACEOF +-cat confdefs.h >>conftest.$ac_ext +-cat >>conftest.$ac_ext <<_ACEOF ++ if test "${SYS}" = "darwin" -a "${target_cpu}" != "powerpc"; then ++ CFLAGS_TUNING="-march=pentium-m -mtune=prescott" ++ elif test "${target_cpu}" = "i686" -o "${target_cpu}" = "i586" -o "${target_cpu}" = "i486" -o "${target_cpu}" = "i386"; then ++ CFLAGS_TUNING="-mtune=pentium2" ++ elif test "${target_cpu}" = "x86_64"; then ++ CFLAGS_TUNING="-mtune=athlon64" ++ elif test "${target_cpu}" = "powerpc"; then ++ CFLAGS_TUNING="-mtune=G4"; ++ fi ++fi ++ ++if test "${CFLAGS_TUNING}"; then : ++ CFLAGS_save="${CFLAGS}" ++ CFLAGS="${CFLAGS} ${CFLAGS_TUNING}" ++ ++ { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether $CC accepts ${CFLAGS_TUNING}" >&5 ++$as_echo_n "checking whether $CC accepts ${CFLAGS_TUNING}... " >&6; } ++ cat confdefs.h - <<_ACEOF >conftest.$ac_ext + /* end confdefs.h. */ + +-/* Override any GCC internal prototype to avoid an error. +- Use char because int might match the return type of a GCC +- builtin and then its argument prototype would still apply. */ +-#ifdef __cplusplus +-extern "C" +-#endif +-char inet_pton (); +-int +-main () +-{ +-return inet_pton (); +- ; +- return 0; +-} + _ACEOF +-rm -f conftest.$ac_objext conftest$ac_exeext +-if { (ac_try="$ac_link" +-case "(($ac_try" in +- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; +- *) ac_try_echo=$ac_try;; +-esac +-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 +- (eval "$ac_link") 2>conftest.er1 +- ac_status=$? +- grep -v '^ *+' conftest.er1 >conftest.err +- rm -f conftest.er1 +- cat conftest.err >&5 +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); } && { +- test -z "$ac_c_werror_flag" || +- test ! -s conftest.err +- } && test -s conftest$ac_exeext && +- $as_test_x conftest$ac_exeext; then +- ac_cv_lib_nsl_inet_pton=yes ++if ac_fn_c_try_compile "$LINENO"; then : ++ tuning="yes" + else +- echo "$as_me: failed program was:" >&5 +-sed 's/^/| /' conftest.$ac_ext >&5 +- +- ac_cv_lib_nsl_inet_pton=no ++ CFLAGS_TUNING=""; tuning="no" ++ if test "${with_tuning}"; then : ++ as_fn_error $? "requested tuning not supported" "$LINENO" 5 + fi +- +-rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ +- conftest$ac_exeext conftest.$ac_ext +-LIBS=$ac_check_lib_save_LIBS + fi +-{ echo "$as_me:$LINENO: result: $ac_cv_lib_nsl_inet_pton" >&5 +-echo "${ECHO_T}$ac_cv_lib_nsl_inet_pton" >&6; } +-if test $ac_cv_lib_nsl_inet_pton = yes; then +- have_ipv6=yes ++rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext ++ ++ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $tuning" >&5 ++$as_echo "$tuning" >&6; } ++ CFLAGS="${CFLAGS_save}" ++ + fi + ++if test "${target_cpu}" = "i686" -o "${target_cpu}" = "i586" -o "${target_cpu}" = "x86" -o "${target_cpu}" = "i386" -o "${target_cpu}" = "x86_64" ++then ++ ARCH="${ARCH} mmx" ++ ++ BUILTINS="${BUILTINS} ${ACCEL_MODULES}" + + fi +-done + ++# Check whether --enable-optimize-memory was given. ++if test "${enable_optimize_memory+set}" = set; then : ++ enableval=$enable_optimize_memory; ++fi + +-if test "${have_ipv6}" = "yes"; then ++if test "${enable_optimize_memory}" = "yes"; then + ++$as_echo "#define OPTIMIZE_MEMORY 1" >>confdefs.h + +-cat >>confdefs.h <<\_ACEOF +-#define HAVE_INET_PTON 1 +-_ACEOF ++fi + ++# Check whether --enable-optimizations was given. ++if test "${enable_optimizations+set}" = set; then : ++ enableval=$enable_optimizations; + fi + ++test "${enable_optimizations}" != "no" && enable_optimizations="yes" + +-if test "${SYS}" != "nto" && +- test "${SYS}" != "mingw32" -a "${SYS}" != "mingwce" +-then +- { echo "$as_me:$LINENO: checking for sockaddr_in6 in netinet/in.h" >&5 +-echo $ECHO_N "checking for sockaddr_in6 in netinet/in.h... $ECHO_C" >&6; } +- cat >conftest.$ac_ext <<_ACEOF +-/* confdefs.h. */ +-_ACEOF +-cat confdefs.h >>conftest.$ac_ext +-cat >>conftest.$ac_ext <<_ACEOF +-/* end confdefs.h. */ +-#include ++# Check whether --enable-altivec was given. ++if test "${enable_altivec+set}" = set; then : ++ enableval=$enable_altivec; if test "${enable_altivec}" = "yes"; then ARCH="${ARCH} altivec"; + +-_ACEOF +-if (eval "$ac_cpp conftest.$ac_ext") 2>&5 | +- $EGREP "sockaddr_in6" >/dev/null 2>&1; then +- { echo "$as_me:$LINENO: result: yes" >&5 +-echo "${ECHO_T}yes" >&6; } ++ BUILTINS="${BUILTINS} ${ACCEL_MODULES}" ++ fi + else +- { echo "$as_me:$LINENO: result: no" >&5 +-echo "${ECHO_T}no" >&6; }; have_ipv6=no ++ if test "${target_cpu}" = "powerpc"; then ARCH="${ARCH} altivec"; ++ ++ BUILTINS="${BUILTINS} ${ACCEL_MODULES}" ++ fi + fi +-rm -f conftest* + +- if test "${have_ipv6}" != "no"; then + ++# Check whether --enable-debug was given. ++if test "${enable_debug+set}" = set; then : ++ enableval=$enable_debug; ++fi ++ ++test "${enable_debug}" != "yes" && enable_debug="no" + +- PLUGINS="${PLUGINS} ipv6" ++if test "x${enable_debug}" = "xno"; then : ++ $as_echo "#define NDEBUG 1" >>confdefs.h + + fi + ++# Check whether --enable-release was given. ++if test "${enable_release+set}" = set; then : ++ enableval=$enable_release; + fi +-if test "${SYS}" = "mingw32" +-then +- { echo "$as_me:$LINENO: checking for getaddrinfo in ws2tcpip.h" >&5 +-echo $ECHO_N "checking for getaddrinfo in ws2tcpip.h... $ECHO_C" >&6; } +- cat >conftest.$ac_ext <<_ACEOF +-/* confdefs.h. */ +-_ACEOF +-cat confdefs.h >>conftest.$ac_ext +-cat >>conftest.$ac_ext <<_ACEOF +-/* end confdefs.h. */ +-#include + +-_ACEOF +-if (eval "$ac_cpp conftest.$ac_ext") 2>&5 | +- $EGREP "addrinfo" >/dev/null 2>&1; then +- { echo "$as_me:$LINENO: result: yes" >&5 +-echo "${ECHO_T}yes" >&6; } +- +- PLUGINS="${PLUGINS} ipv6" ++test "${enable_release}" != "yes" && enable_release="no" + +-else +- { echo "$as_me:$LINENO: result: no" >&5 +-echo "${ECHO_T}no" >&6; } ++# Check whether --enable-shared-libvlc was given. ++if test "${enable_shared_libvlc+set}" = set; then : ++ enableval=$enable_shared_libvlc; + fi +-rm -f conftest* ++ ++if test "${enable_libtool}" != "no" && test "${enable_shared_libvlc}"; then : ++ ++ as_fn_error $? "--enable-shared-libvlc and --enable-libtool are mutually exclusive" "$LINENO" 5 + + fi + +-# Check whether --enable-ogg was given. +-if test "${enable_ogg+set}" = set; then +- enableval=$enable_ogg; ++# Check whether --enable-sout was given. ++if test "${enable_sout+set}" = set; then : ++ enableval=$enable_sout; + fi + +-if test "${enable_ogg}" != "no" ++if test "${enable_sout}" != "no" + then + +-# Check whether --with-ogg-tree was given. +-if test "${with_ogg_tree+set}" = set; then +- withval=$with_ogg_tree; +-fi ++ PLUGINS="${PLUGINS} access_output_dummy access_output_udp access_output_file access_output_http" + +- if test -n "${with_ogg_tree}" +- then +- { echo "$as_me:$LINENO: checking for libogg.a in ${with_ogg_tree}" >&5 +-echo $ECHO_N "checking for libogg.a in ${with_ogg_tree}... $ECHO_C" >&6; } +- real_ogg_tree="`cd ${with_ogg_tree} 2>/dev/null && pwd`" +- if test -z "${real_ogg_tree}" +- then +- { echo "$as_me:$LINENO: result: no" >&5 +-echo "${ECHO_T}no" >&6; } +- { { echo "$as_me:$LINENO: error: cannot cd to ${with_ogg_tree}" >&5 +-echo "$as_me: error: cannot cd to ${with_ogg_tree}" >&2;} +- { (exit 1); exit 1; }; } +- fi +- if test -f "${real_ogg_tree}/src/.libs/libogg.a" +- then +- { echo "$as_me:$LINENO: result: ${real_ogg_tree}/src/.libs/libogg.a" >&5 +-echo "${ECHO_T}${real_ogg_tree}/src/.libs/libogg.a" >&6; } + +- PLUGINS="${PLUGINS} ogg" ++ PLUGINS="${PLUGINS} mux_ps mux_avi mux_mp4 mux_asf mux_dummy mux_wav mux_mpjpeg" + +- if test "${enable_sout}" != "no"; then + +- PLUGINS="${PLUGINS} mux_ogg" ++ PLUGINS="${PLUGINS} packetizer_copy" + +- fi + +- for element in ogg mux_ogg speex vorbis; do +- eval "LDFLAGS_${element}="'"'"${real_ogg_tree}/src/.libs/libogg.a "'$'"{LDFLAGS_${element}} "'"' +- am_modules_with_ldflags="${am_modules_with_ldflags} ${element}" +- done + ++ PLUGINS="${PLUGINS} stream_out_dummy stream_out_standard stream_out_es stream_out_rtp stream_out_description vod_rtsp" + +- for element in ogg mux_ogg speex vorbis; do +- eval "CFLAGS_${element}="'"$'"{CFLAGS_${element}} -I${real_ogg_tree}/include"'"' +- am_modules_with_cflags="${am_modules_with_cflags} ${element}" +- done + +- else +- { echo "$as_me:$LINENO: result: no" >&5 +-echo "${ECHO_T}no" >&6; } +- { { echo "$as_me:$LINENO: error: cannot find ${real_ogg_tree}/src/.libs/libogg.a, make sure you compiled ogg in ${with_ogg_tree}" >&5 +-echo "$as_me: error: cannot find ${real_ogg_tree}/src/.libs/libogg.a, make sure you compiled ogg in ${with_ogg_tree}" >&2;} +- { (exit 1); exit 1; }; } +- fi +- else ++ PLUGINS="${PLUGINS} stream_out_duplicate stream_out_gather stream_out_display stream_out_transcode stream_out_bridge stream_out_mosaic_bridge" + +-for ac_header in ogg/ogg.h +-do +-as_ac_Header=`echo "ac_cv_header_$ac_header" | $as_tr_sh` +-if { as_var=$as_ac_Header; eval "test \"\${$as_var+set}\" = set"; }; then +- { echo "$as_me:$LINENO: checking for $ac_header" >&5 +-echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6; } +-if { as_var=$as_ac_Header; eval "test \"\${$as_var+set}\" = set"; }; then +- echo $ECHO_N "(cached) $ECHO_C" >&6 +-fi +-ac_res=`eval echo '${'$as_ac_Header'}'` +- { echo "$as_me:$LINENO: result: $ac_res" >&5 +-echo "${ECHO_T}$ac_res" >&6; } +-else +- # Is the header compilable? +-{ echo "$as_me:$LINENO: checking $ac_header usability" >&5 +-echo $ECHO_N "checking $ac_header usability... $ECHO_C" >&6; } +-cat >conftest.$ac_ext <<_ACEOF +-/* confdefs.h. */ +-_ACEOF +-cat confdefs.h >>conftest.$ac_ext +-cat >>conftest.$ac_ext <<_ACEOF +-/* end confdefs.h. */ +-$ac_includes_default +-#include <$ac_header> +-_ACEOF +-rm -f conftest.$ac_objext +-if { (ac_try="$ac_compile" +-case "(($ac_try" in +- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; +- *) ac_try_echo=$ac_try;; +-esac +-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 +- (eval "$ac_compile") 2>conftest.er1 +- ac_status=$? +- grep -v '^ *+' conftest.er1 >conftest.err +- rm -f conftest.er1 +- cat conftest.err >&5 +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); } && { +- test -z "$ac_c_werror_flag" || +- test ! -s conftest.err +- } && test -s conftest.$ac_objext; then +- ac_header_compiler=yes +-else +- echo "$as_me: failed program was:" >&5 +-sed 's/^/| /' conftest.$ac_ext >&5 ++# VLC_ADD_PLUGINS([stream_out_transrate]) + +- ac_header_compiler=no +-fi + +-rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext +-{ echo "$as_me:$LINENO: result: $ac_header_compiler" >&5 +-echo "${ECHO_T}$ac_header_compiler" >&6; } ++$as_echo "#define ENABLE_SOUT 1" >>confdefs.h + +-# Is the header present? +-{ echo "$as_me:$LINENO: checking $ac_header presence" >&5 +-echo $ECHO_N "checking $ac_header presence... $ECHO_C" >&6; } +-cat >conftest.$ac_ext <<_ACEOF +-/* confdefs.h. */ +-_ACEOF +-cat confdefs.h >>conftest.$ac_ext +-cat >>conftest.$ac_ext <<_ACEOF +-/* end confdefs.h. */ +-#include <$ac_header> +-_ACEOF +-if { (ac_try="$ac_cpp conftest.$ac_ext" +-case "(($ac_try" in +- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; +- *) ac_try_echo=$ac_try;; +-esac +-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 +- (eval "$ac_cpp conftest.$ac_ext") 2>conftest.er1 +- ac_status=$? +- grep -v '^ *+' conftest.er1 >conftest.err +- rm -f conftest.er1 +- cat conftest.err >&5 +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); } >/dev/null && { +- test -z "$ac_c_preproc_warn_flag$ac_c_werror_flag" || +- test ! -s conftest.err +- }; then +- ac_header_preproc=yes +-else +- echo "$as_me: failed program was:" >&5 +-sed 's/^/| /' conftest.$ac_ext >&5 ++fi + +- ac_header_preproc=no ++# Check whether --enable-shout was given. ++if test "${enable_shout+set}" = set; then : ++ enableval=$enable_shout; + fi + +-rm -f conftest.err conftest.$ac_ext +-{ echo "$as_me:$LINENO: result: $ac_header_preproc" >&5 +-echo "${ECHO_T}$ac_header_preproc" >&6; } ++if test "${enable_shout}" = "yes"; then + +-# So? What about this header? +-case $ac_header_compiler:$ac_header_preproc:$ac_c_preproc_warn_flag in +- yes:no: ) +- { echo "$as_me:$LINENO: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&5 +-echo "$as_me: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&2;} +- { echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the compiler's result" >&5 +-echo "$as_me: WARNING: $ac_header: proceeding with the compiler's result" >&2;} +- ac_header_preproc=yes +- ;; +- no:yes:* ) +- { echo "$as_me:$LINENO: WARNING: $ac_header: present but cannot be compiled" >&5 +-echo "$as_me: WARNING: $ac_header: present but cannot be compiled" >&2;} +- { echo "$as_me:$LINENO: WARNING: $ac_header: check for missing prerequisite headers?" >&5 +-echo "$as_me: WARNING: $ac_header: check for missing prerequisite headers?" >&2;} +- { echo "$as_me:$LINENO: WARNING: $ac_header: see the Autoconf documentation" >&5 +-echo "$as_me: WARNING: $ac_header: see the Autoconf documentation" >&2;} +- { echo "$as_me:$LINENO: WARNING: $ac_header: section \"Present But Cannot Be Compiled\"" >&5 +-echo "$as_me: WARNING: $ac_header: section \"Present But Cannot Be Compiled\"" >&2;} +- { echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the preprocessor's result" >&5 +-echo "$as_me: WARNING: $ac_header: proceeding with the preprocessor's result" >&2;} +- { echo "$as_me:$LINENO: WARNING: $ac_header: in the future, the compiler will take precedence" >&5 +-echo "$as_me: WARNING: $ac_header: in the future, the compiler will take precedence" >&2;} ++pkg_failed=no ++{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for SHOUT" >&5 ++$as_echo_n "checking for SHOUT... " >&6; } + +- ;; +-esac +-{ echo "$as_me:$LINENO: checking for $ac_header" >&5 +-echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6; } +-if { as_var=$as_ac_Header; eval "test \"\${$as_var+set}\" = set"; }; then +- echo $ECHO_N "(cached) $ECHO_C" >&6 ++if test -n "$PKG_CONFIG"; then ++ if test -n "$SHOUT_CFLAGS"; then ++ pkg_cv_SHOUT_CFLAGS="$SHOUT_CFLAGS" ++ else ++ if test -n "$PKG_CONFIG" && \ ++ { { $as_echo "$as_me:${as_lineno-$LINENO}: \$PKG_CONFIG --exists --print-errors \"shout >= 2.1\""; } >&5 ++ ($PKG_CONFIG --exists --print-errors "shout >= 2.1") 2>&5 ++ ac_status=$? ++ $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 ++ test $ac_status = 0; }; then ++ pkg_cv_SHOUT_CFLAGS=`$PKG_CONFIG --cflags "shout >= 2.1" 2>/dev/null` + else +- eval "$as_ac_Header=\$ac_header_preproc" +-fi +-ac_res=`eval echo '${'$as_ac_Header'}'` +- { echo "$as_me:$LINENO: result: $ac_res" >&5 +-echo "${ECHO_T}$ac_res" >&6; } +- ++ pkg_failed=yes + fi +-if test `eval echo '${'$as_ac_Header'}'` = yes; then +- cat >>confdefs.h <<_ACEOF +-#define `echo "HAVE_$ac_header" | $as_tr_cpp` 1 +-_ACEOF +- +- { echo "$as_me:$LINENO: checking for oggpack_read in -logg" >&5 +-echo $ECHO_N "checking for oggpack_read in -logg... $ECHO_C" >&6; } +-if test "${ac_cv_lib_ogg_oggpack_read+set}" = set; then +- echo $ECHO_N "(cached) $ECHO_C" >&6 ++ fi + else +- ac_check_lib_save_LIBS=$LIBS +-LIBS="-logg $LIBS" +-cat >conftest.$ac_ext <<_ACEOF +-/* confdefs.h. */ +-_ACEOF +-cat confdefs.h >>conftest.$ac_ext +-cat >>conftest.$ac_ext <<_ACEOF +-/* end confdefs.h. */ +- +-/* Override any GCC internal prototype to avoid an error. +- Use char because int might match the return type of a GCC +- builtin and then its argument prototype would still apply. */ +-#ifdef __cplusplus +-extern "C" +-#endif +-char oggpack_read (); +-int +-main () +-{ +-return oggpack_read (); +- ; +- return 0; +-} +-_ACEOF +-rm -f conftest.$ac_objext conftest$ac_exeext +-if { (ac_try="$ac_link" +-case "(($ac_try" in +- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; +- *) ac_try_echo=$ac_try;; +-esac +-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 +- (eval "$ac_link") 2>conftest.er1 ++ pkg_failed=untried ++fi ++if test -n "$PKG_CONFIG"; then ++ if test -n "$SHOUT_LIBS"; then ++ pkg_cv_SHOUT_LIBS="$SHOUT_LIBS" ++ else ++ if test -n "$PKG_CONFIG" && \ ++ { { $as_echo "$as_me:${as_lineno-$LINENO}: \$PKG_CONFIG --exists --print-errors \"shout >= 2.1\""; } >&5 ++ ($PKG_CONFIG --exists --print-errors "shout >= 2.1") 2>&5 + ac_status=$? +- grep -v '^ *+' conftest.er1 >conftest.err +- rm -f conftest.er1 +- cat conftest.err >&5 +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); } && { +- test -z "$ac_c_werror_flag" || +- test ! -s conftest.err +- } && test -s conftest$ac_exeext && +- $as_test_x conftest$ac_exeext; then +- ac_cv_lib_ogg_oggpack_read=yes ++ $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 ++ test $ac_status = 0; }; then ++ pkg_cv_SHOUT_LIBS=`$PKG_CONFIG --libs "shout >= 2.1" 2>/dev/null` + else +- echo "$as_me: failed program was:" >&5 +-sed 's/^/| /' conftest.$ac_ext >&5 +- +- ac_cv_lib_ogg_oggpack_read=no ++ pkg_failed=yes ++fi ++ fi ++else ++ pkg_failed=untried + fi + +-rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ +- conftest$ac_exeext conftest.$ac_ext +-LIBS=$ac_check_lib_save_LIBS ++ ++ ++if test $pkg_failed = yes; then ++ ++if $PKG_CONFIG --atleast-pkgconfig-version 0.20; then ++ _pkg_short_errors_supported=yes ++else ++ _pkg_short_errors_supported=no + fi +-{ echo "$as_me:$LINENO: result: $ac_cv_lib_ogg_oggpack_read" >&5 +-echo "${ECHO_T}$ac_cv_lib_ogg_oggpack_read" >&6; } +-if test $ac_cv_lib_ogg_oggpack_read = yes; then ++ if test $_pkg_short_errors_supported = yes; then ++ SHOUT_PKG_ERRORS=`$PKG_CONFIG --short-errors --errors-to-stdout --print-errors "shout >= 2.1"` ++ else ++ SHOUT_PKG_ERRORS=`$PKG_CONFIG --errors-to-stdout --print-errors "shout >= 2.1"` ++ fi ++ # Put the nasty error message in config.log where it belongs ++ echo "$SHOUT_PKG_ERRORS" >&5 + ++ { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 ++$as_echo "no" >&6; } ++ { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: libshout library not found" >&5 ++$as_echo "$as_me: WARNING: libshout library not found" >&2;} ++elif test $pkg_failed = untried; then ++ { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: libshout library not found" >&5 ++$as_echo "$as_me: WARNING: libshout library not found" >&2;} ++else ++ SHOUT_CFLAGS=$pkg_cv_SHOUT_CFLAGS ++ SHOUT_LIBS=$pkg_cv_SHOUT_LIBS ++ { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5 ++$as_echo "yes" >&6; } + +- PLUGINS="${PLUGINS} ogg" ++$as_echo "#define HAVE_SHOUT /**/" >>confdefs.h + +- if test "${enable_sout}" != "no"; then + +- PLUGINS="${PLUGINS} mux_ogg" ++ PLUGINS="${PLUGINS} access_output_shout" + +- fi + +- for element in ogg mux_ogg; do +- eval "LDFLAGS_${element}="'"'"-logg "'$'"{LDFLAGS_${element}} "'"' ++ for element in access_output_shout; do ++ eval "LDFLAGS_${element}="'"'"$SHOUT_LIBS "'$'"{LDFLAGS_${element}} "'"' + am_modules_with_ldflags="${am_modules_with_ldflags} ${element}" + done + +-fi + ++ for element in access_output_shout; do ++ eval "CFLAGS_${element}="'"$'"{CFLAGS_${element}} $SHOUT_CFLAGS"'"' ++ am_modules_with_cflags="${am_modules_with_cflags} ${element}" ++ done ++ ++fi ++fi + ++# Check whether --enable-httpd was given. ++if test "${enable_httpd+set}" = set; then : ++ enableval=$enable_httpd; + fi + +-done ++if test "${enable_httpd}" != "no" ++then ++ ++ PLUGINS="${PLUGINS} http" ++ ++ ++$as_echo "#define ENABLE_HTTPD 1" >>confdefs.h + +- fi + fi + +-# Check whether --enable-mkv was given. +-if test "${enable_mkv+set}" = set; then +- enableval=$enable_mkv; ++# Check whether --enable-vlm was given. ++if test "${enable_vlm+set}" = set; then : ++ enableval=$enable_vlm; + fi + +-if test "${enable_mkv}" != "no" -a "${CXX}" != ""; then +- ac_ext=cpp +-ac_cpp='$CXXCPP $CPPFLAGS' +-ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' +-ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' +-ac_compiler_gnu=$ac_cv_cxx_compiler_gnu ++if test "${enable_vlm}" != "no" ++then + ++$as_echo "#define ENABLE_VLM 1" >>confdefs.h + +-for ac_header in ebml/EbmlVersion.h +-do +-as_ac_Header=`echo "ac_cv_header_$ac_header" | $as_tr_sh` +-if { as_var=$as_ac_Header; eval "test \"\${$as_var+set}\" = set"; }; then +- { echo "$as_me:$LINENO: checking for $ac_header" >&5 +-echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6; } +-if { as_var=$as_ac_Header; eval "test \"\${$as_var+set}\" = set"; }; then +- echo $ECHO_N "(cached) $ECHO_C" >&6 + fi +-ac_res=`eval echo '${'$as_ac_Header'}'` +- { echo "$as_me:$LINENO: result: $ac_res" >&5 +-echo "${ECHO_T}$ac_res" >&6; } +-else +- # Is the header compilable? +-{ echo "$as_me:$LINENO: checking $ac_header usability" >&5 +-echo $ECHO_N "checking $ac_header usability... $ECHO_C" >&6; } +-cat >conftest.$ac_ext <<_ACEOF +-/* confdefs.h. */ +-_ACEOF +-cat confdefs.h >>conftest.$ac_ext +-cat >>conftest.$ac_ext <<_ACEOF +-/* end confdefs.h. */ +-$ac_includes_default +-#include <$ac_header> +-_ACEOF +-rm -f conftest.$ac_objext +-if { (ac_try="$ac_compile" +-case "(($ac_try" in +- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; +- *) ac_try_echo=$ac_try;; +-esac +-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 +- (eval "$ac_compile") 2>conftest.er1 +- ac_status=$? +- grep -v '^ *+' conftest.er1 >conftest.err +- rm -f conftest.er1 +- cat conftest.err >&5 +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); } && { +- test -z "$ac_cxx_werror_flag" || +- test ! -s conftest.err +- } && test -s conftest.$ac_objext; then +- ac_header_compiler=yes +-else +- echo "$as_me: failed program was:" >&5 +-sed 's/^/| /' conftest.$ac_ext >&5 + +- ac_header_compiler=no ++# Check whether --enable-growl was given. ++if test "${enable_growl+set}" = set; then : ++ enableval=$enable_growl; + fi + +-rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext +-{ echo "$as_me:$LINENO: result: $ac_header_compiler" >&5 +-echo "${ECHO_T}$ac_header_compiler" >&6; } ++if test "${enable_growl}" != "no"; then : + +-# Is the header present? +-{ echo "$as_me:$LINENO: checking $ac_header presence" >&5 +-echo $ECHO_N "checking $ac_header presence... $ECHO_C" >&6; } +-cat >conftest.$ac_ext <<_ACEOF +-/* confdefs.h. */ +-_ACEOF +-cat confdefs.h >>conftest.$ac_ext +-cat >>conftest.$ac_ext <<_ACEOF +-/* end confdefs.h. */ +-#include <$ac_header> +-_ACEOF +-if { (ac_try="$ac_cpp conftest.$ac_ext" +-case "(($ac_try" in +- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; +- *) ac_try_echo=$ac_try;; +-esac +-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 +- (eval "$ac_cpp conftest.$ac_ext") 2>conftest.er1 +- ac_status=$? +- grep -v '^ *+' conftest.er1 >conftest.err +- rm -f conftest.er1 +- cat conftest.err >&5 +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); } >/dev/null && { +- test -z "$ac_cxx_preproc_warn_flag$ac_cxx_werror_flag" || +- test ! -s conftest.err +- }; then +- ac_header_preproc=yes +-else +- echo "$as_me: failed program was:" >&5 +-sed 's/^/| /' conftest.$ac_ext >&5 + +- ac_header_preproc=no +-fi ++ PLUGINS="${PLUGINS} growl" + +-rm -f conftest.err conftest.$ac_ext +-{ echo "$as_me:$LINENO: result: $ac_header_preproc" >&5 +-echo "${ECHO_T}$ac_header_preproc" >&6; } + +-# So? What about this header? +-case $ac_header_compiler:$ac_header_preproc:$ac_cxx_preproc_warn_flag in +- yes:no: ) +- { echo "$as_me:$LINENO: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&5 +-echo "$as_me: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&2;} +- { echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the compiler's result" >&5 +-echo "$as_me: WARNING: $ac_header: proceeding with the compiler's result" >&2;} +- ac_header_preproc=yes +- ;; +- no:yes:* ) +- { echo "$as_me:$LINENO: WARNING: $ac_header: present but cannot be compiled" >&5 +-echo "$as_me: WARNING: $ac_header: present but cannot be compiled" >&2;} +- { echo "$as_me:$LINENO: WARNING: $ac_header: check for missing prerequisite headers?" >&5 +-echo "$as_me: WARNING: $ac_header: check for missing prerequisite headers?" >&2;} +- { echo "$as_me:$LINENO: WARNING: $ac_header: see the Autoconf documentation" >&5 +-echo "$as_me: WARNING: $ac_header: see the Autoconf documentation" >&2;} +- { echo "$as_me:$LINENO: WARNING: $ac_header: section \"Present But Cannot Be Compiled\"" >&5 +-echo "$as_me: WARNING: $ac_header: section \"Present But Cannot Be Compiled\"" >&2;} +- { echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the preprocessor's result" >&5 +-echo "$as_me: WARNING: $ac_header: proceeding with the preprocessor's result" >&2;} +- { echo "$as_me:$LINENO: WARNING: $ac_header: in the future, the compiler will take precedence" >&5 +-echo "$as_me: WARNING: $ac_header: in the future, the compiler will take precedence" >&2;} + +- ;; +-esac +-{ echo "$as_me:$LINENO: checking for $ac_header" >&5 +-echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6; } +-if { as_var=$as_ac_Header; eval "test \"\${$as_var+set}\" = set"; }; then +- echo $ECHO_N "(cached) $ECHO_C" >&6 +-else +- eval "$as_ac_Header=\$ac_header_preproc" + fi +-ac_res=`eval echo '${'$as_ac_Header'}'` +- { echo "$as_me:$LINENO: result: $ac_res" >&5 +-echo "${ECHO_T}$ac_res" >&6; } + ++ ++# Check whether --enable-notify was given. ++if test "${enable_notify+set}" = set; then : ++ enableval=$enable_notify; + fi +-if test `eval echo '${'$as_ac_Header'}'` = yes; then +- cat >>confdefs.h <<_ACEOF +-#define `echo "HAVE_$ac_header" | $as_tr_cpp` 1 +-_ACEOF + +- { echo "$as_me:$LINENO: checking for libebml version >= 0.7.6" >&5 +-echo $ECHO_N "checking for libebml version >= 0.7.6... $ECHO_C" >&6; } +- cat >conftest.$ac_ext <<_ACEOF +-/* confdefs.h. */ +-_ACEOF +-cat confdefs.h >>conftest.$ac_ext +-cat >>conftest.$ac_ext <<_ACEOF +-/* end confdefs.h. */ +-#include +- #ifdef LIBEBML_VERSION +- #if LIBEBML_VERSION >= 0x000706 +- yes +- #endif +- #endif +-_ACEOF +-if (eval "$ac_cpp conftest.$ac_ext") 2>&5 | +- $EGREP "yes" >/dev/null 2>&1; then +- { echo "$as_me:$LINENO: result: yes" >&5 +-echo "${ECHO_T}yes" >&6; } ++if test "${enable_notify}" != "no" -a "${SYS}" != "mingw32"; then : + +-for ac_header in matroska/KaxVersion.h +-do +-as_ac_Header=`echo "ac_cv_header_$ac_header" | $as_tr_sh` +-if { as_var=$as_ac_Header; eval "test \"\${$as_var+set}\" = set"; }; then +- { echo "$as_me:$LINENO: checking for $ac_header" >&5 +-echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6; } +-if { as_var=$as_ac_Header; eval "test \"\${$as_var+set}\" = set"; }; then +- echo $ECHO_N "(cached) $ECHO_C" >&6 ++ ++pkg_failed=no ++{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for NOTIFY" >&5 ++$as_echo_n "checking for NOTIFY... " >&6; } ++ ++if test -n "$PKG_CONFIG"; then ++ if test -n "$NOTIFY_CFLAGS"; then ++ pkg_cv_NOTIFY_CFLAGS="$NOTIFY_CFLAGS" ++ else ++ if test -n "$PKG_CONFIG" && \ ++ { { $as_echo "$as_me:${as_lineno-$LINENO}: \$PKG_CONFIG --exists --print-errors \"libnotify\""; } >&5 ++ ($PKG_CONFIG --exists --print-errors "libnotify") 2>&5 ++ ac_status=$? ++ $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 ++ test $ac_status = 0; }; then ++ pkg_cv_NOTIFY_CFLAGS=`$PKG_CONFIG --cflags "libnotify" 2>/dev/null` ++else ++ pkg_failed=yes + fi +-ac_res=`eval echo '${'$as_ac_Header'}'` +- { echo "$as_me:$LINENO: result: $ac_res" >&5 +-echo "${ECHO_T}$ac_res" >&6; } ++ fi + else +- # Is the header compilable? +-{ echo "$as_me:$LINENO: checking $ac_header usability" >&5 +-echo $ECHO_N "checking $ac_header usability... $ECHO_C" >&6; } +-cat >conftest.$ac_ext <<_ACEOF +-/* confdefs.h. */ +-_ACEOF +-cat confdefs.h >>conftest.$ac_ext +-cat >>conftest.$ac_ext <<_ACEOF +-/* end confdefs.h. */ +-$ac_includes_default +-#include <$ac_header> +-_ACEOF +-rm -f conftest.$ac_objext +-if { (ac_try="$ac_compile" +-case "(($ac_try" in +- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; +- *) ac_try_echo=$ac_try;; +-esac +-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 +- (eval "$ac_compile") 2>conftest.er1 ++ pkg_failed=untried ++fi ++if test -n "$PKG_CONFIG"; then ++ if test -n "$NOTIFY_LIBS"; then ++ pkg_cv_NOTIFY_LIBS="$NOTIFY_LIBS" ++ else ++ if test -n "$PKG_CONFIG" && \ ++ { { $as_echo "$as_me:${as_lineno-$LINENO}: \$PKG_CONFIG --exists --print-errors \"libnotify\""; } >&5 ++ ($PKG_CONFIG --exists --print-errors "libnotify") 2>&5 + ac_status=$? +- grep -v '^ *+' conftest.er1 >conftest.err +- rm -f conftest.er1 +- cat conftest.err >&5 +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); } && { +- test -z "$ac_cxx_werror_flag" || +- test ! -s conftest.err +- } && test -s conftest.$ac_objext; then +- ac_header_compiler=yes ++ $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 ++ test $ac_status = 0; }; then ++ pkg_cv_NOTIFY_LIBS=`$PKG_CONFIG --libs "libnotify" 2>/dev/null` ++else ++ pkg_failed=yes ++fi ++ fi + else +- echo "$as_me: failed program was:" >&5 +-sed 's/^/| /' conftest.$ac_ext >&5 +- +- ac_header_compiler=no ++ pkg_failed=untried + fi + +-rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext +-{ echo "$as_me:$LINENO: result: $ac_header_compiler" >&5 +-echo "${ECHO_T}$ac_header_compiler" >&6; } + +-# Is the header present? +-{ echo "$as_me:$LINENO: checking $ac_header presence" >&5 +-echo $ECHO_N "checking $ac_header presence... $ECHO_C" >&6; } +-cat >conftest.$ac_ext <<_ACEOF +-/* confdefs.h. */ +-_ACEOF +-cat confdefs.h >>conftest.$ac_ext +-cat >>conftest.$ac_ext <<_ACEOF +-/* end confdefs.h. */ +-#include <$ac_header> +-_ACEOF +-if { (ac_try="$ac_cpp conftest.$ac_ext" +-case "(($ac_try" in +- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; +- *) ac_try_echo=$ac_try;; +-esac +-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 +- (eval "$ac_cpp conftest.$ac_ext") 2>conftest.er1 +- ac_status=$? +- grep -v '^ *+' conftest.er1 >conftest.err +- rm -f conftest.er1 +- cat conftest.err >&5 +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); } >/dev/null && { +- test -z "$ac_cxx_preproc_warn_flag$ac_cxx_werror_flag" || +- test ! -s conftest.err +- }; then +- ac_header_preproc=yes +-else +- echo "$as_me: failed program was:" >&5 +-sed 's/^/| /' conftest.$ac_ext >&5 + +- ac_header_preproc=no ++if test $pkg_failed = yes; then ++ ++if $PKG_CONFIG --atleast-pkgconfig-version 0.20; then ++ _pkg_short_errors_supported=yes ++else ++ _pkg_short_errors_supported=no + fi ++ if test $_pkg_short_errors_supported = yes; then ++ NOTIFY_PKG_ERRORS=`$PKG_CONFIG --short-errors --errors-to-stdout --print-errors "libnotify"` ++ else ++ NOTIFY_PKG_ERRORS=`$PKG_CONFIG --errors-to-stdout --print-errors "libnotify"` ++ fi ++ # Put the nasty error message in config.log where it belongs ++ echo "$NOTIFY_PKG_ERRORS" >&5 + +-rm -f conftest.err conftest.$ac_ext +-{ echo "$as_me:$LINENO: result: $ac_header_preproc" >&5 +-echo "${ECHO_T}$ac_header_preproc" >&6; } ++ { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 ++$as_echo "no" >&6; } + +-# So? What about this header? +-case $ac_header_compiler:$ac_header_preproc:$ac_cxx_preproc_warn_flag in +- yes:no: ) +- { echo "$as_me:$LINENO: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&5 +-echo "$as_me: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&2;} +- { echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the compiler's result" >&5 +-echo "$as_me: WARNING: $ac_header: proceeding with the compiler's result" >&2;} +- ac_header_preproc=yes +- ;; +- no:yes:* ) +- { echo "$as_me:$LINENO: WARNING: $ac_header: present but cannot be compiled" >&5 +-echo "$as_me: WARNING: $ac_header: present but cannot be compiled" >&2;} +- { echo "$as_me:$LINENO: WARNING: $ac_header: check for missing prerequisite headers?" >&5 +-echo "$as_me: WARNING: $ac_header: check for missing prerequisite headers?" >&2;} +- { echo "$as_me:$LINENO: WARNING: $ac_header: see the Autoconf documentation" >&5 +-echo "$as_me: WARNING: $ac_header: see the Autoconf documentation" >&2;} +- { echo "$as_me:$LINENO: WARNING: $ac_header: section \"Present But Cannot Be Compiled\"" >&5 +-echo "$as_me: WARNING: $ac_header: section \"Present But Cannot Be Compiled\"" >&2;} +- { echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the preprocessor's result" >&5 +-echo "$as_me: WARNING: $ac_header: proceeding with the preprocessor's result" >&2;} +- { echo "$as_me:$LINENO: WARNING: $ac_header: in the future, the compiler will take precedence" >&5 +-echo "$as_me: WARNING: $ac_header: in the future, the compiler will take precedence" >&2;} ++ if test "${enable_notify}" = "yes"; then : + +- ;; +-esac +-{ echo "$as_me:$LINENO: checking for $ac_header" >&5 +-echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6; } +-if { as_var=$as_ac_Header; eval "test \"\${$as_var+set}\" = set"; }; then +- echo $ECHO_N "(cached) $ECHO_C" >&6 +-else +- eval "$as_ac_Header=\$ac_header_preproc" ++ { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: libnotify not found" >&5 ++$as_echo "$as_me: WARNING: libnotify not found" >&2;} + fi +-ac_res=`eval echo '${'$as_ac_Header'}'` +- { echo "$as_me:$LINENO: result: $ac_res" >&5 +-echo "${ECHO_T}$ac_res" >&6; } + +-fi +-if test `eval echo '${'$as_ac_Header'}'` = yes; then +- cat >>confdefs.h <<_ACEOF +-#define `echo "HAVE_$ac_header" | $as_tr_cpp` 1 +-_ACEOF ++elif test $pkg_failed = untried; then + +- { echo "$as_me:$LINENO: checking for libmatroska version >= 0.7.7" >&5 +-echo $ECHO_N "checking for libmatroska version >= 0.7.7... $ECHO_C" >&6; } +- cat >conftest.$ac_ext <<_ACEOF +-/* confdefs.h. */ +-_ACEOF +-cat confdefs.h >>conftest.$ac_ext +-cat >>conftest.$ac_ext <<_ACEOF +-/* end confdefs.h. */ +-#include +- #ifdef LIBMATROSKA_VERSION +- #if LIBMATROSKA_VERSION >= 0x000705 +- yes +- #endif +- #endif +-_ACEOF +-if (eval "$ac_cpp conftest.$ac_ext") 2>&5 | +- $EGREP "yes" >/dev/null 2>&1; then +- { echo "$as_me:$LINENO: result: yes" >&5 +-echo "${ECHO_T}yes" >&6; } ++ if test "${enable_notify}" = "yes"; then : + +-for ac_header in matroska/KaxAttachments.h +-do +-as_ac_Header=`echo "ac_cv_header_$ac_header" | $as_tr_sh` +-if { as_var=$as_ac_Header; eval "test \"\${$as_var+set}\" = set"; }; then +- { echo "$as_me:$LINENO: checking for $ac_header" >&5 +-echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6; } +-if { as_var=$as_ac_Header; eval "test \"\${$as_var+set}\" = set"; }; then +- echo $ECHO_N "(cached) $ECHO_C" >&6 ++ { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: libnotify not found" >&5 ++$as_echo "$as_me: WARNING: libnotify not found" >&2;} + fi +-ac_res=`eval echo '${'$as_ac_Header'}'` +- { echo "$as_me:$LINENO: result: $ac_res" >&5 +-echo "${ECHO_T}$ac_res" >&6; } +-else +- # Is the header compilable? +-{ echo "$as_me:$LINENO: checking $ac_header usability" >&5 +-echo $ECHO_N "checking $ac_header usability... $ECHO_C" >&6; } +-cat >conftest.$ac_ext <<_ACEOF +-/* confdefs.h. */ +-_ACEOF +-cat confdefs.h >>conftest.$ac_ext +-cat >>conftest.$ac_ext <<_ACEOF +-/* end confdefs.h. */ +-$ac_includes_default +-#include <$ac_header> +-_ACEOF +-rm -f conftest.$ac_objext +-if { (ac_try="$ac_compile" +-case "(($ac_try" in +- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; +- *) ac_try_echo=$ac_try;; +-esac +-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 +- (eval "$ac_compile") 2>conftest.er1 +- ac_status=$? +- grep -v '^ *+' conftest.er1 >conftest.err +- rm -f conftest.er1 +- cat conftest.err >&5 +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); } && { +- test -z "$ac_cxx_werror_flag" || +- test ! -s conftest.err +- } && test -s conftest.$ac_objext; then +- ac_header_compiler=yes ++ + else +- echo "$as_me: failed program was:" >&5 +-sed 's/^/| /' conftest.$ac_ext >&5 ++ NOTIFY_CFLAGS=$pkg_cv_NOTIFY_CFLAGS ++ NOTIFY_LIBS=$pkg_cv_NOTIFY_LIBS ++ { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5 ++$as_echo "yes" >&6; } + +- ac_header_compiler=no +-fi + +-rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext +-{ echo "$as_me:$LINENO: result: $ac_header_compiler" >&5 +-echo "${ECHO_T}$ac_header_compiler" >&6; } ++ PLUGINS="${PLUGINS} notify" ++ ++ ++ for element in notify; do ++ eval "CFLAGS_${element}="'"$'"{CFLAGS_${element}} $NOTIFY_CFLAGS"'"' ++ am_modules_with_cflags="${am_modules_with_cflags} ${element}" ++ done ++ ++ ++ for element in notify; do ++ eval "LDFLAGS_${element}="'"'"$NOTIFY_LIBS "'$'"{LDFLAGS_${element}} "'"' ++ am_modules_with_ldflags="${am_modules_with_ldflags} ${element}" ++ done + +-# Is the header present? +-{ echo "$as_me:$LINENO: checking $ac_header presence" >&5 +-echo $ECHO_N "checking $ac_header presence... $ECHO_C" >&6; } +-cat >conftest.$ac_ext <<_ACEOF +-/* confdefs.h. */ +-_ACEOF +-cat confdefs.h >>conftest.$ac_ext +-cat >>conftest.$ac_ext <<_ACEOF +-/* end confdefs.h. */ +-#include <$ac_header> +-_ACEOF +-if { (ac_try="$ac_cpp conftest.$ac_ext" +-case "(($ac_try" in +- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; +- *) ac_try_echo=$ac_try;; +-esac +-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 +- (eval "$ac_cpp conftest.$ac_ext") 2>conftest.er1 +- ac_status=$? +- grep -v '^ *+' conftest.er1 >conftest.err +- rm -f conftest.er1 +- cat conftest.err >&5 +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); } >/dev/null && { +- test -z "$ac_cxx_preproc_warn_flag$ac_cxx_werror_flag" || +- test ! -s conftest.err +- }; then +- ac_header_preproc=yes +-else +- echo "$as_me: failed program was:" >&5 +-sed 's/^/| /' conftest.$ac_ext >&5 + +- ac_header_preproc=no + fi + +-rm -f conftest.err conftest.$ac_ext +-{ echo "$as_me:$LINENO: result: $ac_header_preproc" >&5 +-echo "${ECHO_T}$ac_header_preproc" >&6; } ++fi + +-# So? What about this header? +-case $ac_header_compiler:$ac_header_preproc:$ac_cxx_preproc_warn_flag in +- yes:no: ) +- { echo "$as_me:$LINENO: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&5 +-echo "$as_me: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&2;} +- { echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the compiler's result" >&5 +-echo "$as_me: WARNING: $ac_header: proceeding with the compiler's result" >&2;} +- ac_header_preproc=yes +- ;; +- no:yes:* ) +- { echo "$as_me:$LINENO: WARNING: $ac_header: present but cannot be compiled" >&5 +-echo "$as_me: WARNING: $ac_header: present but cannot be compiled" >&2;} +- { echo "$as_me:$LINENO: WARNING: $ac_header: check for missing prerequisite headers?" >&5 +-echo "$as_me: WARNING: $ac_header: check for missing prerequisite headers?" >&2;} +- { echo "$as_me:$LINENO: WARNING: $ac_header: see the Autoconf documentation" >&5 +-echo "$as_me: WARNING: $ac_header: see the Autoconf documentation" >&2;} +- { echo "$as_me:$LINENO: WARNING: $ac_header: section \"Present But Cannot Be Compiled\"" >&5 +-echo "$as_me: WARNING: $ac_header: section \"Present But Cannot Be Compiled\"" >&2;} +- { echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the preprocessor's result" >&5 +-echo "$as_me: WARNING: $ac_header: proceeding with the preprocessor's result" >&2;} +- { echo "$as_me:$LINENO: WARNING: $ac_header: in the future, the compiler will take precedence" >&5 +-echo "$as_me: WARNING: $ac_header: in the future, the compiler will take precedence" >&2;} + +- ;; +-esac +-{ echo "$as_me:$LINENO: checking for $ac_header" >&5 +-echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6; } +-if { as_var=$as_ac_Header; eval "test \"\${$as_var+set}\" = set"; }; then +- echo $ECHO_N "(cached) $ECHO_C" >&6 +-else +- eval "$as_ac_Header=\$ac_header_preproc" ++ ++ ++ ++ ++# Check whether --with- was given. ++if test "${with_+set}" = set; then : ++ withval=$with_; + fi +-ac_res=`eval echo '${'$as_ac_Header'}'` +- { echo "$as_me:$LINENO: result: $ac_res" >&5 +-echo "${ECHO_T}$ac_res" >&6; } + ++ ++if test "${enable_livedotcom}" ++then ++ { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: --{en|dis}able-livedotcom is deprecated. Use --{en|dis}able-live555 instead." >&5 ++$as_echo "$as_me: WARNING: --{en|dis}able-livedotcom is deprecated. Use --{en|dis}able-live555 instead." >&2;} ++fi ++ ++if test "${enable_livedotcom}" = "yes" ++then ++ enable_live555="yes" ++fi ++# Check whether --enable-live555 was given. ++if test "${enable_live555+set}" = set; then : ++ enableval=$enable_live555; + fi +-if test `eval echo '${'$as_ac_Header'}'` = yes; then +- cat >>confdefs.h <<_ACEOF +-#define `echo "HAVE_$ac_header" | $as_tr_cpp` 1 +-_ACEOF + ++if test "${enable_live555}" = "yes"; then ++ ++# Check whether --with-live555-tree was given. ++if test "${with_live555_tree+set}" = set; then : ++ withval=$with_live555_tree; + fi + +-done + ++ if test "${with_livedotcom_tree}" ++ then ++ { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: --with-livedotcom-tree is deprecated. Use --with-live555-tree instead." >&5 ++$as_echo "$as_me: WARNING: --with-livedotcom-tree is deprecated. Use --with-live555-tree instead." >&2;} ++ with_live555_tree="${with_livedotcom_tree}" ++ fi + +- for element in mkv; do +- eval "CXXFLAGS_${element}="'"$'"{CXXFLAGS_${element}} "'"' +- am_modules_with_cxxflags="${am_modules_with_cxxflags} ${element}" +- done ++ if test -z "${with_live555_tree}" -a "${CXX}" != ""; then ++ ac_ext=cpp ++ac_cpp='$CXXCPP $CPPFLAGS' ++ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' ++ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' ++ac_compiler_gnu=$ac_cv_cxx_compiler_gnu + +- if test "${SYS}" = "darwin"; then ++ CPPFLAGS_save="${CPPFLAGS}" ++ CPPFLAGS_live555="-I/usr/include/liveMedia -I/usr/include/groupsock -I/usr/include/BasicUsageEnvironment -I/usr/include/UsageEnvironment" ++ if test "${SYS}" = "solaris"; then ++ CPPFLAGS_live555="${CPPFLAGS_live555} -DSOLARIS" ++ fi ++ CPPFLAGS="${CPPFLAGS} ${CPPFLAGS_live555}" + +- for element in mkv; do +- eval "CXXFLAGS_${element}="'"$'"{CXXFLAGS_${element}} -O1"'"' ++for ac_header in liveMedia.hh ++do : ++ ac_fn_cxx_check_header_mongrel "$LINENO" "liveMedia.hh" "ac_cv_header_liveMedia_hh" "$ac_includes_default" ++if test "x$ac_cv_header_liveMedia_hh" = xyes; then : ++ cat >>confdefs.h <<_ACEOF ++#define HAVE_LIVEMEDIA_HH 1 ++_ACEOF ++ ++ ++ for element in live555; do ++ eval "CXXFLAGS_${element}="'"$'"{CXXFLAGS_${element}} ${CPPFLAGS_live555}"'"' + am_modules_with_cxxflags="${am_modules_with_cxxflags} ${element}" + done + +- fi +- { echo "$as_me:$LINENO: checking for main in -lebml_pic" >&5 +-echo $ECHO_N "checking for main in -lebml_pic... $ECHO_C" >&6; } +-if test "${ac_cv_lib_ebml_pic_main+set}" = set; then +- echo $ECHO_N "(cached) $ECHO_C" >&6 ++ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for main in -lliveMedia_pic" >&5 ++$as_echo_n "checking for main in -lliveMedia_pic... " >&6; } ++if ${ac_cv_lib_liveMedia_pic_main+:} false; then : ++ $as_echo_n "(cached) " >&6 + else + ac_check_lib_save_LIBS=$LIBS +-LIBS="-lebml_pic $LIBS" +-cat >conftest.$ac_ext <<_ACEOF +-/* confdefs.h. */ +-_ACEOF +-cat confdefs.h >>conftest.$ac_ext +-cat >>conftest.$ac_ext <<_ACEOF ++LIBS="-lliveMedia_pic $LIBS" ++cat confdefs.h - <<_ACEOF >conftest.$ac_ext + /* end confdefs.h. */ + + +@@ -42748,63 +30012,40 @@ return main (); + return 0; + } + _ACEOF +-rm -f conftest.$ac_objext conftest$ac_exeext +-if { (ac_try="$ac_link" +-case "(($ac_try" in +- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; +- *) ac_try_echo=$ac_try;; +-esac +-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 +- (eval "$ac_link") 2>conftest.er1 +- ac_status=$? +- grep -v '^ *+' conftest.er1 >conftest.err +- rm -f conftest.er1 +- cat conftest.err >&5 +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); } && { +- test -z "$ac_cxx_werror_flag" || +- test ! -s conftest.err +- } && test -s conftest$ac_exeext && +- $as_test_x conftest$ac_exeext; then +- ac_cv_lib_ebml_pic_main=yes ++if ac_fn_cxx_try_link "$LINENO"; then : ++ ac_cv_lib_liveMedia_pic_main=yes + else +- echo "$as_me: failed program was:" >&5 +-sed 's/^/| /' conftest.$ac_ext >&5 +- +- ac_cv_lib_ebml_pic_main=no ++ ac_cv_lib_liveMedia_pic_main=no + fi +- +-rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ +- conftest$ac_exeext conftest.$ac_ext ++rm -f core conftest.err conftest.$ac_objext \ ++ conftest$ac_exeext conftest.$ac_ext + LIBS=$ac_check_lib_save_LIBS + fi +-{ echo "$as_me:$LINENO: result: $ac_cv_lib_ebml_pic_main" >&5 +-echo "${ECHO_T}$ac_cv_lib_ebml_pic_main" >&6; } +-if test $ac_cv_lib_ebml_pic_main = yes; then ++{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_liveMedia_pic_main" >&5 ++$as_echo "$ac_cv_lib_liveMedia_pic_main" >&6; } ++if test "x$ac_cv_lib_liveMedia_pic_main" = xyes; then : + ++ # We have -lliveMedia_pic, build plugins + +- PLUGINS="${PLUGINS} mkv" ++ PLUGINS="${PLUGINS} live555" + + +- for element in mkv; do +- eval "LDFLAGS_${element}="'"'"-lmatroska -lebml_pic "'$'"{LDFLAGS_${element}} "'"' ++ for element in live555; do ++ eval "LDFLAGS_${element}="'"'"-lliveMedia_pic -lgroupsock_pic -lBasicUsageEnvironment_pic -lUsageEnvironment_pic "'$'"{LDFLAGS_${element}} "'"' + am_modules_with_ldflags="${am_modules_with_ldflags} ${element}" + done + + + else +- { echo "$as_me:$LINENO: checking for main in -lebml" >&5 +-echo $ECHO_N "checking for main in -lebml... $ECHO_C" >&6; } +-if test "${ac_cv_lib_ebml_main+set}" = set; then +- echo $ECHO_N "(cached) $ECHO_C" >&6 ++ ++ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for main in -lliveMedia" >&5 ++$as_echo_n "checking for main in -lliveMedia... " >&6; } ++if ${ac_cv_lib_liveMedia_main+:} false; then : ++ $as_echo_n "(cached) " >&6 + else + ac_check_lib_save_LIBS=$LIBS +-LIBS="-lebml $LIBS" +-cat >conftest.$ac_ext <<_ACEOF +-/* confdefs.h. */ +-_ACEOF +-cat confdefs.h >>conftest.$ac_ext +-cat >>conftest.$ac_ext <<_ACEOF ++LIBS="-lliveMedia $LIBS" ++cat confdefs.h - <<_ACEOF >conftest.$ac_ext + /* end confdefs.h. */ + + +@@ -42816,46 +30057,26 @@ return main (); + return 0; + } + _ACEOF +-rm -f conftest.$ac_objext conftest$ac_exeext +-if { (ac_try="$ac_link" +-case "(($ac_try" in +- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; +- *) ac_try_echo=$ac_try;; +-esac +-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 +- (eval "$ac_link") 2>conftest.er1 +- ac_status=$? +- grep -v '^ *+' conftest.er1 >conftest.err +- rm -f conftest.er1 +- cat conftest.err >&5 +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); } && { +- test -z "$ac_cxx_werror_flag" || +- test ! -s conftest.err +- } && test -s conftest$ac_exeext && +- $as_test_x conftest$ac_exeext; then +- ac_cv_lib_ebml_main=yes ++if ac_fn_cxx_try_link "$LINENO"; then : ++ ac_cv_lib_liveMedia_main=yes + else +- echo "$as_me: failed program was:" >&5 +-sed 's/^/| /' conftest.$ac_ext >&5 +- +- ac_cv_lib_ebml_main=no ++ ac_cv_lib_liveMedia_main=no + fi +- +-rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ +- conftest$ac_exeext conftest.$ac_ext ++rm -f core conftest.err conftest.$ac_objext \ ++ conftest$ac_exeext conftest.$ac_ext + LIBS=$ac_check_lib_save_LIBS + fi +-{ echo "$as_me:$LINENO: result: $ac_cv_lib_ebml_main" >&5 +-echo "${ECHO_T}$ac_cv_lib_ebml_main" >&6; } +-if test $ac_cv_lib_ebml_main = yes; then ++{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_liveMedia_main" >&5 ++$as_echo "$ac_cv_lib_liveMedia_main" >&6; } ++if test "x$ac_cv_lib_liveMedia_main" = xyes; then : + ++ # We only have -lliveMedia, do builtins + +- PLUGINS="${PLUGINS} mkv" ++ BUILTINS="${BUILTINS} live555" + + +- for element in mkv; do +- eval "LDFLAGS_${element}="'"'"-lmatroska -lebml "'$'"{LDFLAGS_${element}} "'"' ++ for element in live555; do ++ eval "LDFLAGS_${element}="'"'"-lliveMedia -lgroupsock -lBasicUsageEnvironment -lUsageEnvironment "'$'"{LDFLAGS_${element}} "'"' + am_modules_with_ldflags="${am_modules_with_ldflags} ${element}" + done + +@@ -42865,1155 +30086,905 @@ fi + + fi + ++ if test "${SYS}" = "mingw32"; then ++ # add ws2_32 for closesocket, select, recv + +-else +- { echo "$as_me:$LINENO: result: no" >&5 +-echo "${ECHO_T}no" >&6; } +- { { echo "$as_me:$LINENO: error: Your libmatroska is too old: you may get a more recent one from http://dl.matroska.org/downloads/libmatroska/. Alternatively you can use --disable-mkv to disable the matroska plugin." >&5 +-echo "$as_me: error: Your libmatroska is too old: you may get a more recent one from http://dl.matroska.org/downloads/libmatroska/. Alternatively you can use --disable-mkv to disable the matroska plugin." >&2;} +- { (exit 1); exit 1; }; } +- +-fi +-rm -f conftest* ++ for element in live555; do ++ eval "LDFLAGS_${element}="'"'"-lws2_32 "'$'"{LDFLAGS_${element}} "'"' ++ am_modules_with_ldflags="${am_modules_with_ldflags} ${element}" ++ done + ++ fi + + fi + + done + ++ CPPFLAGS="${CPPFLAGS_save}" ++ ac_ext=c ++ac_cpp='$CPP $CPPFLAGS' ++ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' ++ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' ++ac_compiler_gnu=$ac_cv_c_compiler_gnu + +-else +- { echo "$as_me:$LINENO: result: no" >&5 +-echo "${ECHO_T}no" >&6; } +- { { echo "$as_me:$LINENO: error: Your libebml is too old: you may get a more recent one from http://dl.matroska.org/downloads/libebml/. Alternatively you can use --disable-mkv to disable the matroska plugin." >&5 +-echo "$as_me: error: Your libebml is too old: you may get a more recent one from http://dl.matroska.org/downloads/libebml/. Alternatively you can use --disable-mkv to disable the matroska plugin." >&2;} +- { (exit 1); exit 1; }; } ++ else ++ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for liveMedia/libliveMedia.a in ${with_live555_tree}" >&5 ++$as_echo_n "checking for liveMedia/libliveMedia.a in ${with_live555_tree}... " >&6; } ++ real_live555_tree="`cd ${with_live555_tree} 2>/dev/null && pwd`" ++ if test -z "${real_live555_tree}"; then ++ { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 ++$as_echo "no" >&6; } ++ as_fn_error $? "cannot cd to ${with_live555_tree}" "$LINENO" 5 ++ fi ++ if test -f "${real_live555_tree}/liveMedia/libliveMedia.a"; then ++ { $as_echo "$as_me:${as_lineno-$LINENO}: result: ${real_live555_tree}/liveMedia/libliveMedia.a" >&5 ++$as_echo "${real_live555_tree}/liveMedia/libliveMedia.a" >&6; } + +-fi +-rm -f conftest* + ++ BUILTINS="${BUILTINS} live555" + +-fi + +-done ++ if test "${SYS}" = "mingw32"; then ++ # add ws2_32 for closesocket, select, recv + +- ac_ext=c +-ac_cpp='$CPP $CPPFLAGS' +-ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' +-ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' +-ac_compiler_gnu=$ac_cv_c_compiler_gnu ++ for element in live555; do ++ eval "LDFLAGS_${element}="'"'"-lws2_32 "'$'"{LDFLAGS_${element}} "'"' ++ am_modules_with_ldflags="${am_modules_with_ldflags} ${element}" ++ done + +-fi ++ fi + +-# Check whether --enable-mod was given. +-if test "${enable_mod+set}" = set; then +- enableval=$enable_mod; +-fi + +-if test "${enable_mod}" != "no" +-then ++ for element in live555; do ++ eval "LDFLAGS_${element}="'"'"-L${real_live555_tree}/liveMedia -lliveMedia "'$'"{LDFLAGS_${element}} "'"' ++ am_modules_with_ldflags="${am_modules_with_ldflags} ${element}" ++ done + +-# Check whether --with-mod-tree was given. +-if test "${with_mod_tree+set}" = set; then +- withval=$with_mod_tree; +-fi + +- if test -n "${with_mod_tree}" +- then +- { echo "$as_me:$LINENO: checking for libmodplug.a in ${with_mod_tree}" >&5 +-echo $ECHO_N "checking for libmodplug.a in ${with_mod_tree}... $ECHO_C" >&6; } +- real_mod_tree="`cd ${with_mod_tree} 2>/dev/null && pwd`" +- if test -z "${real_mod_tree}" +- then +- { echo "$as_me:$LINENO: result: no" >&5 +-echo "${ECHO_T}no" >&6; } +- { { echo "$as_me:$LINENO: error: cannot cd to ${with_mod_tree}" >&5 +-echo "$as_me: error: cannot cd to ${with_mod_tree}" >&2;} +- { (exit 1); exit 1; }; } +- fi +- if test -f "${real_mod_tree}/src/.libs/libmodplug.a" +- then +- { echo "$as_me:$LINENO: result: ${real_mod_tree}/src/.libs/libmodplug.a" >&5 +-echo "${ECHO_T}${real_mod_tree}/src/.libs/libmodplug.a" >&6; } ++ for element in live555; do ++ eval "LDFLAGS_${element}="'"'"-L${real_live555_tree}/BasicUsageEnvironment -lBasicUsageEnvironment "'$'"{LDFLAGS_${element}} "'"' ++ am_modules_with_ldflags="${am_modules_with_ldflags} ${element}" ++ done + +- PLUGINS="${PLUGINS} mod" ++ ++ for element in live555; do ++ eval "LDFLAGS_${element}="'"'"-L${real_live555_tree}/groupsock -lgroupsock "'$'"{LDFLAGS_${element}} "'"' ++ am_modules_with_ldflags="${am_modules_with_ldflags} ${element}" ++ done + + +- for element in mod; do +- eval "LDFLAGS_${element}="'"'"${real_mod_tree}/src/.libs/libmodplug.a "'$'"{LDFLAGS_${element}} "'"' ++ for element in live555; do ++ eval "LDFLAGS_${element}="'"'"-L${real_live555_tree}/UsageEnvironment -lUsageEnvironment "'$'"{LDFLAGS_${element}} "'"' + am_modules_with_ldflags="${am_modules_with_ldflags} ${element}" + done + + +- for element in mod; do +- eval "CFLAGS_${element}="'"$'"{CFLAGS_${element}} -I${real_mod_tree}/include"'"' +- am_modules_with_cflags="${am_modules_with_cflags} ${element}" ++ ++ for element in live555; do ++ eval "CXXFLAGS_${element}="'"$'"{CXXFLAGS_${element}} -I${real_live555_tree}/BasicUsageEnvironment/include"'"' ++ am_modules_with_cxxflags="${am_modules_with_cxxflags} ${element}" ++ done ++ ++ ++ for element in live555; do ++ eval "CXXFLAGS_${element}="'"$'"{CXXFLAGS_${element}} -I${real_live555_tree}/groupsock/include"'"' ++ am_modules_with_cxxflags="${am_modules_with_cxxflags} ${element}" ++ done ++ ++ ++ for element in live555; do ++ eval "CXXFLAGS_${element}="'"$'"{CXXFLAGS_${element}} -I${real_live555_tree}/liveMedia/include"'"' ++ am_modules_with_cxxflags="${am_modules_with_cxxflags} ${element}" ++ done ++ ++ ++ for element in live555; do ++ eval "CXXFLAGS_${element}="'"$'"{CXXFLAGS_${element}} -I${real_live555_tree}/UsageEnvironment/include "'"' ++ am_modules_with_cxxflags="${am_modules_with_cxxflags} ${element}" ++ done ++ ++ if test "${SYS}" = "solaris"; then ++ ++ for element in live555; do ++ eval "CXXFLAGS_${element}="'"$'"{CXXFLAGS_${element}} -DSOLARIS"'"' ++ am_modules_with_cxxflags="${am_modules_with_cxxflags} ${element}" + done + ++ fi + else +- { echo "$as_me:$LINENO: result: no" >&5 +-echo "${ECHO_T}no" >&6; } +- { { echo "$as_me:$LINENO: error: cannot find ${real_mod_tree}/src/.libs/libmodplug.a, make sure you compiled mod in ${with_mod_tree}" >&5 +-echo "$as_me: error: cannot find ${real_mod_tree}/src/.libs/libmodplug.a, make sure you compiled mod in ${with_mod_tree}" >&2;} +- { (exit 1); exit 1; }; } ++ { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 ++$as_echo "no" >&6; } ++ as_fn_error $? "cannot find ${real_live555_tree}/liveMedia/libliveMedia.a, make sure you compiled live555 in ${with_live555_tree}" "$LINENO" 5 + fi +- else ++ fi ++fi + +-for ac_header in libmodplug/modplug.h +-do +-as_ac_Header=`echo "ac_cv_header_$ac_header" | $as_tr_sh` +-if { as_var=$as_ac_Header; eval "test \"\${$as_var+set}\" = set"; }; then +- { echo "$as_me:$LINENO: checking for $ac_header" >&5 +-echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6; } +-if { as_var=$as_ac_Header; eval "test \"\${$as_var+set}\" = set"; }; then +- echo $ECHO_N "(cached) $ECHO_C" >&6 ++# Check whether --enable-dc1394 was given. ++if test "${enable_dc1394+set}" = set; then : ++ enableval=$enable_dc1394; + fi +-ac_res=`eval echo '${'$as_ac_Header'}'` +- { echo "$as_me:$LINENO: result: $ac_res" >&5 +-echo "${ECHO_T}$ac_res" >&6; } +-else +- # Is the header compilable? +-{ echo "$as_me:$LINENO: checking $ac_header usability" >&5 +-echo $ECHO_N "checking $ac_header usability... $ECHO_C" >&6; } +-cat >conftest.$ac_ext <<_ACEOF +-/* confdefs.h. */ ++ ++if test "${enable_dc1394}" = "yes" ++then ++ for ac_header in libraw1394/raw1394.h ++do : ++ ac_fn_c_check_header_mongrel "$LINENO" "libraw1394/raw1394.h" "ac_cv_header_libraw1394_raw1394_h" "$ac_includes_default" ++if test "x$ac_cv_header_libraw1394_raw1394_h" = xyes; then : ++ cat >>confdefs.h <<_ACEOF ++#define HAVE_LIBRAW1394_RAW1394_H 1 + _ACEOF +-cat confdefs.h >>conftest.$ac_ext +-cat >>conftest.$ac_ext <<_ACEOF ++ ++ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for raw1394_get_nodecount in -lraw1394" >&5 ++$as_echo_n "checking for raw1394_get_nodecount in -lraw1394... " >&6; } ++if ${ac_cv_lib_raw1394_raw1394_get_nodecount+:} false; then : ++ $as_echo_n "(cached) " >&6 ++else ++ ac_check_lib_save_LIBS=$LIBS ++LIBS="-lraw1394 $LIBS" ++cat confdefs.h - <<_ACEOF >conftest.$ac_ext + /* end confdefs.h. */ +-$ac_includes_default +-#include <$ac_header> ++ ++/* Override any GCC internal prototype to avoid an error. ++ Use char because int might match the return type of a GCC ++ builtin and then its argument prototype would still apply. */ ++#ifdef __cplusplus ++extern "C" ++#endif ++char raw1394_get_nodecount (); ++int ++main () ++{ ++return raw1394_get_nodecount (); ++ ; ++ return 0; ++} + _ACEOF +-rm -f conftest.$ac_objext +-if { (ac_try="$ac_compile" +-case "(($ac_try" in +- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; +- *) ac_try_echo=$ac_try;; +-esac +-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 +- (eval "$ac_compile") 2>conftest.er1 +- ac_status=$? +- grep -v '^ *+' conftest.er1 >conftest.err +- rm -f conftest.er1 +- cat conftest.err >&5 +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); } && { +- test -z "$ac_c_werror_flag" || +- test ! -s conftest.err +- } && test -s conftest.$ac_objext; then +- ac_header_compiler=yes ++if ac_fn_c_try_link "$LINENO"; then : ++ ac_cv_lib_raw1394_raw1394_get_nodecount=yes + else +- echo "$as_me: failed program was:" >&5 +-sed 's/^/| /' conftest.$ac_ext >&5 +- +- ac_header_compiler=no ++ ac_cv_lib_raw1394_raw1394_get_nodecount=no + fi ++rm -f core conftest.err conftest.$ac_objext \ ++ conftest$ac_exeext conftest.$ac_ext ++LIBS=$ac_check_lib_save_LIBS ++fi ++{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_raw1394_raw1394_get_nodecount" >&5 ++$as_echo "$ac_cv_lib_raw1394_raw1394_get_nodecount" >&6; } ++if test "x$ac_cv_lib_raw1394_raw1394_get_nodecount" = xyes; then : + +-rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext +-{ echo "$as_me:$LINENO: result: $ac_header_compiler" >&5 +-echo "${ECHO_T}$ac_header_compiler" >&6; } +- +-# Is the header present? +-{ echo "$as_me:$LINENO: checking $ac_header presence" >&5 +-echo $ECHO_N "checking $ac_header presence... $ECHO_C" >&6; } +-cat >conftest.$ac_ext <<_ACEOF +-/* confdefs.h. */ +-_ACEOF +-cat confdefs.h >>conftest.$ac_ext +-cat >>conftest.$ac_ext <<_ACEOF +-/* end confdefs.h. */ +-#include <$ac_header> ++ for ac_header in libdc1394/dc1394_control.h ++do : ++ as_ac_Header=`$as_echo "ac_cv_header_$ac_header" | $as_tr_sh` ++ac_fn_c_check_header_mongrel "$LINENO" "$ac_header" "$as_ac_Header" "$ac_includes_default" ++if eval test \"x\$"$as_ac_Header"\" = x"yes"; then : ++ cat >>confdefs.h <<_ACEOF ++#define `$as_echo "HAVE_$ac_header" | $as_tr_cpp` 1 + _ACEOF +-if { (ac_try="$ac_cpp conftest.$ac_ext" +-case "(($ac_try" in +- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; +- *) ac_try_echo=$ac_try;; +-esac +-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 +- (eval "$ac_cpp conftest.$ac_ext") 2>conftest.er1 +- ac_status=$? +- grep -v '^ *+' conftest.er1 >conftest.err +- rm -f conftest.er1 +- cat conftest.err >&5 +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); } >/dev/null && { +- test -z "$ac_c_preproc_warn_flag$ac_c_werror_flag" || +- test ! -s conftest.err +- }; then +- ac_header_preproc=yes ++ ++ ++ PLUGINS="${PLUGINS} dc1394" ++ ++ ++ for element in dc1394; do ++ eval "LDFLAGS_${element}="'"'"-ldc1394_control -lraw1394 "'$'"{LDFLAGS_${element}} "'"' ++ am_modules_with_ldflags="${am_modules_with_ldflags} ${element}" ++ done ++ ++ + else +- echo "$as_me: failed program was:" >&5 +-sed 's/^/| /' conftest.$ac_ext >&5 + +- ac_header_preproc=no ++ as_fn_error $? "libdc1394 is mandatory for the dc1394 input module. try --disable-dc1394 or install this library" "$LINENO" 5 ++ + fi + +-rm -f conftest.err conftest.$ac_ext +-{ echo "$as_me:$LINENO: result: $ac_header_preproc" >&5 +-echo "${ECHO_T}$ac_header_preproc" >&6; } ++done + +-# So? What about this header? +-case $ac_header_compiler:$ac_header_preproc:$ac_c_preproc_warn_flag in +- yes:no: ) +- { echo "$as_me:$LINENO: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&5 +-echo "$as_me: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&2;} +- { echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the compiler's result" >&5 +-echo "$as_me: WARNING: $ac_header: proceeding with the compiler's result" >&2;} +- ac_header_preproc=yes +- ;; +- no:yes:* ) +- { echo "$as_me:$LINENO: WARNING: $ac_header: present but cannot be compiled" >&5 +-echo "$as_me: WARNING: $ac_header: present but cannot be compiled" >&2;} +- { echo "$as_me:$LINENO: WARNING: $ac_header: check for missing prerequisite headers?" >&5 +-echo "$as_me: WARNING: $ac_header: check for missing prerequisite headers?" >&2;} +- { echo "$as_me:$LINENO: WARNING: $ac_header: see the Autoconf documentation" >&5 +-echo "$as_me: WARNING: $ac_header: see the Autoconf documentation" >&2;} +- { echo "$as_me:$LINENO: WARNING: $ac_header: section \"Present But Cannot Be Compiled\"" >&5 +-echo "$as_me: WARNING: $ac_header: section \"Present But Cannot Be Compiled\"" >&2;} +- { echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the preprocessor's result" >&5 +-echo "$as_me: WARNING: $ac_header: proceeding with the preprocessor's result" >&2;} +- { echo "$as_me:$LINENO: WARNING: $ac_header: in the future, the compiler will take precedence" >&5 +-echo "$as_me: WARNING: $ac_header: in the future, the compiler will take precedence" >&2;} + +- ;; +-esac +-{ echo "$as_me:$LINENO: checking for $ac_header" >&5 +-echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6; } +-if { as_var=$as_ac_Header; eval "test \"\${$as_var+set}\" = set"; }; then +- echo $ECHO_N "(cached) $ECHO_C" >&6 + else +- eval "$as_ac_Header=\$ac_header_preproc" ++ ++ as_fn_error $? "libraw1394 is mandatory for the dc1394 input module. try --disable-dc1394 or install this library" "$LINENO" 5 ++ + fi +-ac_res=`eval echo '${'$as_ac_Header'}'` +- { echo "$as_me:$LINENO: result: $ac_res" >&5 +-echo "${ECHO_T}$ac_res" >&6; } ++ ++ ++else ++ ++ as_fn_error $? "libraw1394 is mandatory for the dc1394 input module. try --disable-dc1394 or install this library" "$LINENO" 5 + + fi +-if test `eval echo '${'$as_ac_Header'}'` = yes; then +- cat >>confdefs.h <<_ACEOF +-#define `echo "HAVE_$ac_header" | $as_tr_cpp` 1 +-_ACEOF + ++done + +- PLUGINS="${PLUGINS} mod" ++fi + ++# Check whether --enable-dv was given. ++if test "${enable_dv+set}" = set; then : ++ enableval=$enable_dv; ++fi + +- for element in mod; do +- eval "CXXFLAGS_${element}="'"$'"{CXXFLAGS_${element}} "'"' +- am_modules_with_cxxflags="${am_modules_with_cxxflags} ${element}" ++if test "${enable_dv}" = "yes" ++then ++ ++# Check whether --with-dv-raw1394 was given. ++if test "${with_dv_raw1394+set}" = set; then : ++ withval=$with_dv_raw1394; ++fi ++ ++ ++# Check whether --with-dv-raw1394-tree was given. ++if test "${with_dv_raw1394_tree+set}" = set; then : ++ withval=$with_dv_raw1394_tree; ++fi ++ ++ ++ if test -z "${with_dv_raw1394}" -a "${with_dv_raw1394}" != "" ++ then ++ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for raw1394 headers in ${with_dv_raw1394}" >&5 ++$as_echo_n "checking for raw1394 headers in ${with_dv_raw1394}... " >&6; } ++ if test -f ${with_dv_raw1394}/include/libraw1394/raw1394.h ++ then ++ { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5 ++$as_echo "yes" >&6; } ++ ++ PLUGINS="${PLUGINS} access_dv" ++ ++ ++ for element in access_dv; do ++ eval "LDFLAGS_${element}="'"'"-L${with_dv_raw1394}/lib -lraw1394 -lpthread "'$'"{LDFLAGS_${element}} "'"' ++ am_modules_with_ldflags="${am_modules_with_ldflags} ${element}" + done + + +- for element in mod; do +- eval "LDFLAGS_${element}="'"'"-lmodplug "'$'"{LDFLAGS_${element}} "'"' ++ for element in access_dv; do ++ eval "CPPFLAGS_${element}="'"$'"{CPPFLAGS_${element}} -I${with_dv_raw1394}/include"'"' ++ am_modules_with_cppflags="${am_modules_with_cppflags} ${element}" ++ done ++ ++ else ++ { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 ++$as_echo "no" >&6; } ++ as_fn_error $? "cannot find ${with_dv_raw1394}/include/libraw1394/raw1394.h" "$LINENO" 5 ++ fi ++ else ++ for ac_header in libraw1394/raw1394.h ++do : ++ ac_fn_c_check_header_mongrel "$LINENO" "libraw1394/raw1394.h" "ac_cv_header_libraw1394_raw1394_h" "$ac_includes_default" ++if test "x$ac_cv_header_libraw1394_raw1394_h" = xyes; then : ++ cat >>confdefs.h <<_ACEOF ++#define HAVE_LIBRAW1394_RAW1394_H 1 ++_ACEOF ++ ++ PLUGINS="${PLUGINS} access_dv" ++ ++ ++ for element in access_dv; do ++ eval "LDFLAGS_${element}="'"'"-lraw1394 -lavc1394 "'$'"{LDFLAGS_${element}} "'"' + am_modules_with_ldflags="${am_modules_with_ldflags} ${element}" + done + ++ ++else ++ ++ if test -n "${enable_dv}" ++ then ++ as_fn_error $? "cannot find libraw1394 headers" "$LINENO" 5 ++ fi ++ + fi + + done + + fi +-fi + +-# Check whether --enable-mpc was given. +-if test "${enable_mpc+set}" = set; then +- enableval=$enable_mpc; +-fi ++ if test -z "${with_dv_raw1394_tree}" -a "${with_dv_raw1394_tree}" != "" ++ then ++ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for libraw1394.a in ${with_dv_raw1394_tree}" >&5 ++$as_echo_n "checking for libraw1394.a in ${with_dv_raw1394_tree}... " >&6; } ++ real_dv_raw1394_tree="`cd ${with_dv_raw1394_tree} 2>/dev/null && pwd`" ++ if test -z "${real_dv_raw1394_tree}" ++ then ++ { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 ++$as_echo "no" >&6; } ++ as_fn_error $? "cannot cd to ${real_dv_raw1394_tree}" "$LINENO" 5 ++ fi ++ if test -f "${real_dv_raw1394_tree}/src/.libs/libraw1394.a" ++ then ++ { $as_echo "$as_me:${as_lineno-$LINENO}: result: ${real_dv_raw1394_tree}/src/.libs/libraw1394.a" >&5 ++$as_echo "${real_dv_raw1394_tree}/src/.libs/libraw1394.a" >&6; } + +-if test "${enable_mpc}" != "no" +-then ++ BUILTINS="${BUILTINS} access_dv" + +-for ac_header in mpcdec/mpcdec.h +-do +-as_ac_Header=`echo "ac_cv_header_$ac_header" | $as_tr_sh` +-if { as_var=$as_ac_Header; eval "test \"\${$as_var+set}\" = set"; }; then +- { echo "$as_me:$LINENO: checking for $ac_header" >&5 +-echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6; } +-if { as_var=$as_ac_Header; eval "test \"\${$as_var+set}\" = set"; }; then +- echo $ECHO_N "(cached) $ECHO_C" >&6 +-fi +-ac_res=`eval echo '${'$as_ac_Header'}'` +- { echo "$as_me:$LINENO: result: $ac_res" >&5 +-echo "${ECHO_T}$ac_res" >&6; } +-else +- # Is the header compilable? +-{ echo "$as_me:$LINENO: checking $ac_header usability" >&5 +-echo $ECHO_N "checking $ac_header usability... $ECHO_C" >&6; } +-cat >conftest.$ac_ext <<_ACEOF +-/* confdefs.h. */ +-_ACEOF +-cat confdefs.h >>conftest.$ac_ext +-cat >>conftest.$ac_ext <<_ACEOF +-/* end confdefs.h. */ +-$ac_includes_default +-#include <$ac_header> +-_ACEOF +-rm -f conftest.$ac_objext +-if { (ac_try="$ac_compile" +-case "(($ac_try" in +- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; +- *) ac_try_echo=$ac_try;; +-esac +-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 +- (eval "$ac_compile") 2>conftest.er1 +- ac_status=$? +- grep -v '^ *+' conftest.er1 >conftest.err +- rm -f conftest.er1 +- cat conftest.err >&5 +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); } && { +- test -z "$ac_c_werror_flag" || +- test ! -s conftest.err +- } && test -s conftest.$ac_objext; then +- ac_header_compiler=yes +-else +- echo "$as_me: failed program was:" >&5 +-sed 's/^/| /' conftest.$ac_ext >&5 + +- ac_header_compiler=no +-fi ++ for element in access_dv; do ++ eval "LDFLAGS_${element}="'"'"-L${real_dv_raw1394_tree}/src/.libs -lraw1394 "'$'"{LDFLAGS_${element}} "'"' ++ am_modules_with_ldflags="${am_modules_with_ldflags} ${element}" ++ done ++ ++ ++ for element in access_dv; do ++ eval "CPPFLAGS_${element}="'"$'"{CPPFLAGS_${element}} -I${real_dv_raw1394_tree}"'"' ++ am_modules_with_cppflags="${am_modules_with_cppflags} ${element}" ++ done ++ ++ else ++ { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 ++$as_echo "no" >&6; } ++ as_fn_error $? "cannot find ${real_dv_raw1394_tree}/src/.libs/libraw1394.a, make sure you compiled libraw1394 in ${with_dv_raw1394_tree}" "$LINENO" 5 ++ fi ++ fi ++ + +-rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext +-{ echo "$as_me:$LINENO: result: $ac_header_compiler" >&5 +-echo "${ECHO_T}$ac_header_compiler" >&6; } + +-# Is the header present? +-{ echo "$as_me:$LINENO: checking $ac_header presence" >&5 +-echo $ECHO_N "checking $ac_header presence... $ECHO_C" >&6; } +-cat >conftest.$ac_ext <<_ACEOF +-/* confdefs.h. */ +-_ACEOF +-cat confdefs.h >>conftest.$ac_ext +-cat >>conftest.$ac_ext <<_ACEOF +-/* end confdefs.h. */ +-#include <$ac_header> +-_ACEOF +-if { (ac_try="$ac_cpp conftest.$ac_ext" +-case "(($ac_try" in +- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; +- *) ac_try_echo=$ac_try;; +-esac +-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 +- (eval "$ac_cpp conftest.$ac_ext") 2>conftest.er1 +- ac_status=$? +- grep -v '^ *+' conftest.er1 >conftest.err +- rm -f conftest.er1 +- cat conftest.err >&5 +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); } >/dev/null && { +- test -z "$ac_c_preproc_warn_flag$ac_c_werror_flag" || +- test ! -s conftest.err +- }; then +- ac_header_preproc=yes +-else +- echo "$as_me: failed program was:" >&5 +-sed 's/^/| /' conftest.$ac_ext >&5 ++# Check whether --with-dv-avc1394 was given. ++if test "${with_dv_avc1394+set}" = set; then : ++ withval=$with_dv_avc1394; ++fi + +- ac_header_preproc=no ++ ++# Check whether --with-dv-avc1394-tree was given. ++if test "${with_dv_avc1394_tree+set}" = set; then : ++ withval=$with_dv_avc1394_tree; + fi + +-rm -f conftest.err conftest.$ac_ext +-{ echo "$as_me:$LINENO: result: $ac_header_preproc" >&5 +-echo "${ECHO_T}$ac_header_preproc" >&6; } + +-# So? What about this header? +-case $ac_header_compiler:$ac_header_preproc:$ac_c_preproc_warn_flag in +- yes:no: ) +- { echo "$as_me:$LINENO: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&5 +-echo "$as_me: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&2;} +- { echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the compiler's result" >&5 +-echo "$as_me: WARNING: $ac_header: proceeding with the compiler's result" >&2;} +- ac_header_preproc=yes +- ;; +- no:yes:* ) +- { echo "$as_me:$LINENO: WARNING: $ac_header: present but cannot be compiled" >&5 +-echo "$as_me: WARNING: $ac_header: present but cannot be compiled" >&2;} +- { echo "$as_me:$LINENO: WARNING: $ac_header: check for missing prerequisite headers?" >&5 +-echo "$as_me: WARNING: $ac_header: check for missing prerequisite headers?" >&2;} +- { echo "$as_me:$LINENO: WARNING: $ac_header: see the Autoconf documentation" >&5 +-echo "$as_me: WARNING: $ac_header: see the Autoconf documentation" >&2;} +- { echo "$as_me:$LINENO: WARNING: $ac_header: section \"Present But Cannot Be Compiled\"" >&5 +-echo "$as_me: WARNING: $ac_header: section \"Present But Cannot Be Compiled\"" >&2;} +- { echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the preprocessor's result" >&5 +-echo "$as_me: WARNING: $ac_header: proceeding with the preprocessor's result" >&2;} +- { echo "$as_me:$LINENO: WARNING: $ac_header: in the future, the compiler will take precedence" >&5 +-echo "$as_me: WARNING: $ac_header: in the future, the compiler will take precedence" >&2;} ++ if test -z "${with_dv_avc1394}" -a "${with_dv_avc1394}" != "" ++ then ++ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for avc1394 headers in ${with_dv_avc1394}" >&5 ++$as_echo_n "checking for avc1394 headers in ${with_dv_avc1394}... " >&6; } ++ if test -f ${with_dv_avc1394}/include/libavc1394/avc1394.h ++ then ++ { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5 ++$as_echo "yes" >&6; } + +- ;; +-esac +-{ echo "$as_me:$LINENO: checking for $ac_header" >&5 +-echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6; } +-if { as_var=$as_ac_Header; eval "test \"\${$as_var+set}\" = set"; }; then +- echo $ECHO_N "(cached) $ECHO_C" >&6 +-else +- eval "$as_ac_Header=\$ac_header_preproc" +-fi +-ac_res=`eval echo '${'$as_ac_Header'}'` +- { echo "$as_me:$LINENO: result: $ac_res" >&5 +-echo "${ECHO_T}$ac_res" >&6; } ++ for element in access_dv; do ++ eval "LDFLAGS_${element}="'"'"-L${with_dv_avc1394}/lib -lavc1394 -lrom1394 -lpthread "'$'"{LDFLAGS_${element}} "'"' ++ am_modules_with_ldflags="${am_modules_with_ldflags} ${element}" ++ done + +-fi +-if test `eval echo '${'$as_ac_Header'}'` = yes; then ++ ++ for element in access_dv; do ++ eval "CPPFLAGS_${element}="'"$'"{CPPFLAGS_${element}} -I${with_avc1394}/include"'"' ++ am_modules_with_cppflags="${am_modules_with_cppflags} ${element}" ++ done ++ ++ else ++ { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 ++$as_echo "no" >&6; } ++ as_fn_error $? "cannot find ${with_dv_avc1394}/include/libavc1394/avc1394.h" "$LINENO" 5 ++ fi ++ else ++ for ac_header in libavc1394/avc1394.h ++do : ++ ac_fn_c_check_header_mongrel "$LINENO" "libavc1394/avc1394.h" "ac_cv_header_libavc1394_avc1394_h" "$ac_includes_default" ++if test "x$ac_cv_header_libavc1394_avc1394_h" = xyes; then : + cat >>confdefs.h <<_ACEOF +-#define `echo "HAVE_$ac_header" | $as_tr_cpp` 1 ++#define HAVE_LIBAVC1394_AVC1394_H 1 + _ACEOF + ++ for element in access_dv; do ++ eval "LDFLAGS_${element}="'"'"-lavc1394 -lrom1394 -lpthread "'$'"{LDFLAGS_${element}} "'"' ++ am_modules_with_ldflags="${am_modules_with_ldflags} ${element}" ++ done + +- PLUGINS="${PLUGINS} mpc" + ++else + +- for element in mpc; do +- eval "LDFLAGS_${element}="'"'"-lmpcdec "'$'"{LDFLAGS_${element}} "'"' +- am_modules_with_ldflags="${am_modules_with_ldflags} ${element}" +- done ++ if test -n "${enable_dv}" ++ then ++ as_fn_error $? "cannot find libavc1394 headers" "$LINENO" 5 ++ fi + + fi + + done + +-fi ++ fi + ++ if test -z "${with_dv_avc1394_tree}" -a "${with_dv_avc1394_tree}" != "" ++ then ++ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for libavc1394.a in ${with_dv_avc1394_tree}" >&5 ++$as_echo_n "checking for libavc1394.a in ${with_dv_avc1394_tree}... " >&6; } ++ real_dv_avc1394_tree="`cd ${with_dv_avc1394_tree} 2>/dev/null && pwd`" ++ if test -z "${real_dv_avc1394_tree}" ++ then ++ { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 ++$as_echo "no" >&6; } ++ as_fn_error $? "cannot cd to ${real_dv_avc1394_tree}" "$LINENO" 5 ++ fi ++ if test -f "${real_dv_avc1394_tree}/src/.libs/libavc1394.a" ++ then ++ { $as_echo "$as_me:${as_lineno-$LINENO}: result: ${real_dv_avc1394_tree}/src/.libs/libavc1394.a" >&5 ++$as_echo "${real_dv_avc1394_tree}/src/.libs/libavc1394.a" >&6; } + ++ for element in access_dv; do ++ eval "LDFLAGS_${element}="'"'"-L${real_dv_avc1394_tree}/src/.libs -lavc1394 -lrom1394 -lpthread "'$'"{LDFLAGS_${element}} "'"' ++ am_modules_with_ldflags="${am_modules_with_ldflags} ${element}" ++ done + + +-# Check whether --with- was given. +-if test "${with_+set}" = set; then +- withval=$with_; +-fi ++ for element in access_dv; do ++ eval "CPPFLAGS_${element}="'"$'"{CPPFLAGS_${element}} -I${real_dv_avc1394_tree}"'"' ++ am_modules_with_cppflags="${am_modules_with_cppflags} ${element}" ++ done + ++ else ++ { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 ++$as_echo "no" >&6; } ++ as_fn_error $? "cannot find ${real_dv_avc1394_tree}/src/.libs/libavc1394.a, make sure you compiled libavc1394 in ${with_dv_avc1394_tree}" "$LINENO" 5 ++ fi ++ fi ++fi + +-# Check whether --enable-mad was given. +-if test "${enable_mad+set}" = set; then +- enableval=$enable_mad; ++# Check whether --enable-dvdread was given. ++if test "${enable_dvdread+set}" = set; then : ++ enableval=$enable_dvdread; + fi + +-if test "${enable_mad}" != "no" ++if test "${enable_dvdread}" != "no" + then + +-# Check whether --with-mad was given. +-if test "${with_mad+set}" = set; then +- withval=$with_mad; ++# Check whether --with-dvdread was given. ++if test "${with_dvdread+set}" = set; then : ++ withval=$with_dvdread; + fi + +- if test "${with_mad}" != "no" -a -n "${with_mad}" +- then + +- for element in mpgatofixed32; do +- eval "CPPFLAGS_${element}="'"$'"{CPPFLAGS_${element}} -I${with_mad}/include"'"' +- am_modules_with_cppflags="${am_modules_with_cppflags} ${element}" +- done ++# Check whether --with-dvdread-tree was given. ++if test "${with_dvdread_tree+set}" = set; then : ++ withval=$with_dvdread_tree; ++fi + + +- for element in mpgatofixed32; do +- eval "LDFLAGS_${element}="'"'"-L${with_mad}/lib "'$'"{LDFLAGS_${element}} "'"' ++ if test "${SYS}" = "mingw32" || test "${SYS}" = "darwin" || test "${SYS}" = "beos" ; then ++ ++ for element in dvdread; do ++ eval "LDFLAGS_${element}="'"'"-ldvdcss "'$'"{LDFLAGS_${element}} "'"' + am_modules_with_ldflags="${am_modules_with_ldflags} ${element}" + done + + fi + +- +-# Check whether --with-mad-tree was given. +-if test "${with_mad_tree+set}" = set; then +- withval=$with_mad_tree; +-fi +- +- if test "${with_mad_tree}" != "no" -a -n "${with_mad_tree}" ++ if test -z "${with_dvdread}" + then +- real_mad_tree="`cd ${with_mad_tree} 2>/dev/null && pwd`" +- if test -z "${real_mad_tree}" +- then +- { echo "$as_me:$LINENO: result: no" >&5 +-echo "${ECHO_T}no" >&6; } +- { { echo "$as_me:$LINENO: error: ${with_mad_tree} directory doesn't exist" >&5 +-echo "$as_me: error: ${with_mad_tree} directory doesn't exist" >&2;} +- { (exit 1); exit 1; }; } +- fi +- { echo "$as_me:$LINENO: checking for mad.h in ${real_mad_tree}" >&5 +-echo $ECHO_N "checking for mad.h in ${real_mad_tree}... $ECHO_C" >&6; } +- if test -f ${real_mad_tree}/mad.h ++ if test -z "${with_dvdread_tree}" + then +- { echo "$as_me:$LINENO: result: yes" >&5 +-echo "${ECHO_T}yes" >&6; } ++ for ac_header in dvdread/dvd_reader.h ++do : ++ ac_fn_c_check_header_mongrel "$LINENO" "dvdread/dvd_reader.h" "ac_cv_header_dvdread_dvd_reader_h" "$ac_includes_default" ++if test "x$ac_cv_header_dvdread_dvd_reader_h" = xyes; then : ++ cat >>confdefs.h <<_ACEOF ++#define HAVE_DVDREAD_DVD_READER_H 1 ++_ACEOF + +- for element in mpgatofixed32; do +- eval "CPPFLAGS_${element}="'"$'"{CPPFLAGS_${element}} -I${real_mad_tree}"'"' +- am_modules_with_cppflags="${am_modules_with_cppflags} ${element}" +- done ++ PLUGINS="${PLUGINS} dvdread" + + +- for element in mpgatofixed32; do +- eval "LDFLAGS_${element}="'"'"-L${real_mad_tree}/.libs "'$'"{LDFLAGS_${element}} "'"' ++ for element in dvdread; do ++ eval "LDFLAGS_${element}="'"'"-ldvdread ${LDFLAGS_dvdcss} "'$'"{LDFLAGS_${element}} "'"' + am_modules_with_ldflags="${am_modules_with_ldflags} ${element}" + done + +- LDFLAGS="${LDFLAGS_save} ${LDFLAGS_mpgatofixed32}" +- { echo "$as_me:$LINENO: checking for mad_bit_init in -lmad" >&5 +-echo $ECHO_N "checking for mad_bit_init in -lmad... $ECHO_C" >&6; } +-if test "${ac_cv_lib_mad_mad_bit_init+set}" = set; then +- echo $ECHO_N "(cached) $ECHO_C" >&6 +-else +- ac_check_lib_save_LIBS=$LIBS +-LIBS="-lmad $LIBS" +-cat >conftest.$ac_ext <<_ACEOF +-/* confdefs.h. */ +-_ACEOF +-cat confdefs.h >>conftest.$ac_ext +-cat >>conftest.$ac_ext <<_ACEOF +-/* end confdefs.h. */ + +-/* Override any GCC internal prototype to avoid an error. +- Use char because int might match the return type of a GCC +- builtin and then its argument prototype would still apply. */ +-#ifdef __cplusplus +-extern "C" +-#endif +-char mad_bit_init (); +-int +-main () +-{ +-return mad_bit_init (); +- ; +- return 0; +-} +-_ACEOF +-rm -f conftest.$ac_objext conftest$ac_exeext +-if { (ac_try="$ac_link" +-case "(($ac_try" in +- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; +- *) ac_try_echo=$ac_try;; +-esac +-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 +- (eval "$ac_link") 2>conftest.er1 +- ac_status=$? +- grep -v '^ *+' conftest.er1 >conftest.err +- rm -f conftest.er1 +- cat conftest.err >&5 +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); } && { +- test -z "$ac_c_werror_flag" || +- test ! -s conftest.err +- } && test -s conftest$ac_exeext && +- $as_test_x conftest$ac_exeext; then +- ac_cv_lib_mad_mad_bit_init=yes + else +- echo "$as_me: failed program was:" >&5 +-sed 's/^/| /' conftest.$ac_ext >&5 + +- ac_cv_lib_mad_mad_bit_init=no +-fi ++ if test -n "${enable_dvdread}" ++ then ++ as_fn_error $? "cannot find libdvdread headers" "$LINENO" 5 ++ fi + +-rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ +- conftest$ac_exeext conftest.$ac_ext +-LIBS=$ac_check_lib_save_LIBS + fi +-{ echo "$as_me:$LINENO: result: $ac_cv_lib_mad_mad_bit_init" >&5 +-echo "${ECHO_T}$ac_cv_lib_mad_mad_bit_init" >&6; } +-if test $ac_cv_lib_mad_mad_bit_init = yes; then + ++done + +- BUILTINS="${BUILTINS} mpgatofixed32" ++ else ++ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for libdvdread.a in ${with_dvdread_tree}" >&5 ++$as_echo_n "checking for libdvdread.a in ${with_dvdread_tree}... " >&6; } ++ real_dvdread_tree="`cd ${with_dvdread_tree} 2>/dev/null && pwd`" ++ if test -z "${real_dvdread_tree}" ++ then ++ { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 ++$as_echo "no" >&6; } ++ as_fn_error $? "cannot cd to ${with_dvdread_tree}" "$LINENO" 5 ++ fi ++ if test -f "${real_dvdread_tree}/dvdread/.libs/libdvdread.a" ++ then ++ { $as_echo "$as_me:${as_lineno-$LINENO}: result: ${real_dvdread_tree}/dvdread/.libs/libdvdread.a" >&5 ++$as_echo "${real_dvdread_tree}/dvdread/.libs/libdvdread.a" >&6; } ++ ++ BUILTINS="${BUILTINS} dvdread" + + +- for element in mpgatofixed32; do +- eval "LDFLAGS_${element}="'"'"-lmad "'$'"{LDFLAGS_${element}} "'"' ++ for element in dvdread; do ++ eval "LDFLAGS_${element}="'"'"-L${real_dvdread_tree}/dvdread/.libs -ldvdread ${LDFLAGS_dvdcss} "'$'"{LDFLAGS_${element}} "'"' + am_modules_with_ldflags="${am_modules_with_ldflags} ${element}" + done + + +-else +- { { echo "$as_me:$LINENO: error: the specified tree hasn't been compiled " >&5 +-echo "$as_me: error: the specified tree hasn't been compiled " >&2;} +- { (exit 1); exit 1; }; } +- +-fi ++ for element in dvdread; do ++ eval "CPPFLAGS_${element}="'"$'"{CPPFLAGS_${element}} -I${real_dvdread_tree}"'"' ++ am_modules_with_cppflags="${am_modules_with_cppflags} ${element}" ++ done + +- LDFLAGS="${LDFLAGS_save}" +- else +- { echo "$as_me:$LINENO: result: no" >&5 +-echo "${ECHO_T}no" >&6; } +- { { echo "$as_me:$LINENO: error: the specified tree doesn't have mad.h" >&5 +-echo "$as_me: error: the specified tree doesn't have mad.h" >&2;} +- { (exit 1); exit 1; }; } ++ else ++ { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 ++$as_echo "no" >&6; } ++ as_fn_error $? "cannot find ${real_dvdread_tree}/dvdread/.libs/libdvdread.a, make sure you compiled libdvdread in ${with_dvdread_tree}" "$LINENO" 5 ++ fi + fi + else +- CPPFLAGS="${CPPFLAGS_save} ${CPPFLAGS_mpgatofixed32}" +- LDFLAGS="${LDFLAGS_save} ${LDFLAGS_mpgatofixed32}" ++ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for dvdread headers in ${with_dvdread}" >&5 ++$as_echo_n "checking for dvdread headers in ${with_dvdread}... " >&6; } ++ if test -f ${with_dvdread}/include/dvdread/dvd_reader.h ++ then ++ { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5 ++$as_echo "yes" >&6; } + +-for ac_header in mad.h +-do +-as_ac_Header=`echo "ac_cv_header_$ac_header" | $as_tr_sh` +-if { as_var=$as_ac_Header; eval "test \"\${$as_var+set}\" = set"; }; then +- { echo "$as_me:$LINENO: checking for $ac_header" >&5 +-echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6; } +-if { as_var=$as_ac_Header; eval "test \"\${$as_var+set}\" = set"; }; then +- echo $ECHO_N "(cached) $ECHO_C" >&6 +-fi +-ac_res=`eval echo '${'$as_ac_Header'}'` +- { echo "$as_me:$LINENO: result: $ac_res" >&5 +-echo "${ECHO_T}$ac_res" >&6; } +-else +- # Is the header compilable? +-{ echo "$as_me:$LINENO: checking $ac_header usability" >&5 +-echo $ECHO_N "checking $ac_header usability... $ECHO_C" >&6; } +-cat >conftest.$ac_ext <<_ACEOF +-/* confdefs.h. */ +-_ACEOF +-cat confdefs.h >>conftest.$ac_ext +-cat >>conftest.$ac_ext <<_ACEOF +-/* end confdefs.h. */ +-$ac_includes_default +-#include <$ac_header> +-_ACEOF +-rm -f conftest.$ac_objext +-if { (ac_try="$ac_compile" +-case "(($ac_try" in +- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; +- *) ac_try_echo=$ac_try;; +-esac +-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 +- (eval "$ac_compile") 2>conftest.er1 +- ac_status=$? +- grep -v '^ *+' conftest.er1 >conftest.err +- rm -f conftest.er1 +- cat conftest.err >&5 +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); } && { +- test -z "$ac_c_werror_flag" || +- test ! -s conftest.err +- } && test -s conftest.$ac_objext; then +- ac_header_compiler=yes +-else +- echo "$as_me: failed program was:" >&5 +-sed 's/^/| /' conftest.$ac_ext >&5 ++ PLUGINS="${PLUGINS} dvdread" + +- ac_header_compiler=no +-fi + +-rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext +-{ echo "$as_me:$LINENO: result: $ac_header_compiler" >&5 +-echo "${ECHO_T}$ac_header_compiler" >&6; } ++ for element in dvdread; do ++ eval "LDFLAGS_${element}="'"'"-L${with_dvdread}/lib -ldvdread ${LDFLAGS_dvdcss} "'$'"{LDFLAGS_${element}} "'"' ++ am_modules_with_ldflags="${am_modules_with_ldflags} ${element}" ++ done + +-# Is the header present? +-{ echo "$as_me:$LINENO: checking $ac_header presence" >&5 +-echo $ECHO_N "checking $ac_header presence... $ECHO_C" >&6; } +-cat >conftest.$ac_ext <<_ACEOF +-/* confdefs.h. */ +-_ACEOF +-cat confdefs.h >>conftest.$ac_ext +-cat >>conftest.$ac_ext <<_ACEOF +-/* end confdefs.h. */ +-#include <$ac_header> +-_ACEOF +-if { (ac_try="$ac_cpp conftest.$ac_ext" +-case "(($ac_try" in +- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; +- *) ac_try_echo=$ac_try;; +-esac +-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 +- (eval "$ac_cpp conftest.$ac_ext") 2>conftest.er1 +- ac_status=$? +- grep -v '^ *+' conftest.er1 >conftest.err +- rm -f conftest.er1 +- cat conftest.err >&5 +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); } >/dev/null && { +- test -z "$ac_c_preproc_warn_flag$ac_c_werror_flag" || +- test ! -s conftest.err +- }; then +- ac_header_preproc=yes +-else +- echo "$as_me: failed program was:" >&5 +-sed 's/^/| /' conftest.$ac_ext >&5 + +- ac_header_preproc=no ++ for element in dvdread; do ++ eval "CPPFLAGS_${element}="'"$'"{CPPFLAGS_${element}} -I${with_dvdread}/include"'"' ++ am_modules_with_cppflags="${am_modules_with_cppflags} ${element}" ++ done ++ ++ else ++ { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 ++$as_echo "no" >&6; } ++ as_fn_error $? "cannot find ${with_dvdread}/include/dvdread/dvd_reader.h" "$LINENO" 5 ++ fi ++ fi + fi + +-rm -f conftest.err conftest.$ac_ext +-{ echo "$as_me:$LINENO: result: $ac_header_preproc" >&5 +-echo "${ECHO_T}$ac_header_preproc" >&6; } ++# Check whether --enable-dvdnav was given. ++if test "${enable_dvdnav+set}" = set; then : ++ enableval=$enable_dvdnav; ++fi + +-# So? What about this header? +-case $ac_header_compiler:$ac_header_preproc:$ac_c_preproc_warn_flag in +- yes:no: ) +- { echo "$as_me:$LINENO: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&5 +-echo "$as_me: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&2;} +- { echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the compiler's result" >&5 +-echo "$as_me: WARNING: $ac_header: proceeding with the compiler's result" >&2;} +- ac_header_preproc=yes +- ;; +- no:yes:* ) +- { echo "$as_me:$LINENO: WARNING: $ac_header: present but cannot be compiled" >&5 +-echo "$as_me: WARNING: $ac_header: present but cannot be compiled" >&2;} +- { echo "$as_me:$LINENO: WARNING: $ac_header: check for missing prerequisite headers?" >&5 +-echo "$as_me: WARNING: $ac_header: check for missing prerequisite headers?" >&2;} +- { echo "$as_me:$LINENO: WARNING: $ac_header: see the Autoconf documentation" >&5 +-echo "$as_me: WARNING: $ac_header: see the Autoconf documentation" >&2;} +- { echo "$as_me:$LINENO: WARNING: $ac_header: section \"Present But Cannot Be Compiled\"" >&5 +-echo "$as_me: WARNING: $ac_header: section \"Present But Cannot Be Compiled\"" >&2;} +- { echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the preprocessor's result" >&5 +-echo "$as_me: WARNING: $ac_header: proceeding with the preprocessor's result" >&2;} +- { echo "$as_me:$LINENO: WARNING: $ac_header: in the future, the compiler will take precedence" >&5 +-echo "$as_me: WARNING: $ac_header: in the future, the compiler will take precedence" >&2;} ++if test "${enable_dvdnav}" != "no" ++then ++ if test "${SYS}" = "mingw32" || test "${SYS}" = "darwin" || test "${SYS}" = "beos" ; then + +- ;; +-esac +-{ echo "$as_me:$LINENO: checking for $ac_header" >&5 +-echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6; } +-if { as_var=$as_ac_Header; eval "test \"\${$as_var+set}\" = set"; }; then +- echo $ECHO_N "(cached) $ECHO_C" >&6 +-else +- eval "$as_ac_Header=\$ac_header_preproc" +-fi +-ac_res=`eval echo '${'$as_ac_Header'}'` +- { echo "$as_me:$LINENO: result: $ac_res" >&5 +-echo "${ECHO_T}$ac_res" >&6; } ++ for element in dvdnav; do ++ eval "LDFLAGS_${element}="'"'"-ldvdcss "'$'"{LDFLAGS_${element}} "'"' ++ am_modules_with_ldflags="${am_modules_with_ldflags} ${element}" ++ done + +-fi +-if test `eval echo '${'$as_ac_Header'}'` = yes; then +- cat >>confdefs.h <<_ACEOF +-#define `echo "HAVE_$ac_header" | $as_tr_cpp` 1 +-_ACEOF ++ fi + +-else +- { { echo "$as_me:$LINENO: error: Could not find libmad on your system: you may get it from http://www.underbit.com/products/mad/. Alternatively you can use --disable-mad to disable the mad plugin." >&5 +-echo "$as_me: error: Could not find libmad on your system: you may get it from http://www.underbit.com/products/mad/. Alternatively you can use --disable-mad to disable the mad plugin." >&2;} +- { (exit 1); exit 1; }; } +-fi ++ DVDNAV_PATH="${PATH}" + +-done ++# Check whether --with-dvdnav-config-path was given. ++if test "${with_dvdnav_config_path+set}" = set; then : ++ withval=$with_dvdnav_config_path; if test "${with_dvdnav_config_path}" != "no" ++ then ++ DVDNAV_PATH="${with_dvdnav_config_path}:${PATH}" ++ fi ++fi + +- { echo "$as_me:$LINENO: checking for mad_bit_init in -lmad" >&5 +-echo $ECHO_N "checking for mad_bit_init in -lmad... $ECHO_C" >&6; } +-if test "${ac_cv_lib_mad_mad_bit_init+set}" = set; then +- echo $ECHO_N "(cached) $ECHO_C" >&6 ++ # Extract the first word of "dvdnav-config", so it can be a program name with args. ++set dummy dvdnav-config; ac_word=$2 ++{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 ++$as_echo_n "checking for $ac_word... " >&6; } ++if ${ac_cv_path_DVDNAV_CONFIG+:} false; then : ++ $as_echo_n "(cached) " >&6 + else +- ac_check_lib_save_LIBS=$LIBS +-LIBS="-lmad $LIBS" +-cat >conftest.$ac_ext <<_ACEOF +-/* confdefs.h. */ +-_ACEOF +-cat confdefs.h >>conftest.$ac_ext +-cat >>conftest.$ac_ext <<_ACEOF +-/* end confdefs.h. */ ++ case $DVDNAV_CONFIG in ++ [\\/]* | ?:[\\/]*) ++ ac_cv_path_DVDNAV_CONFIG="$DVDNAV_CONFIG" # Let the user override the test with a path. ++ ;; ++ *) ++ as_save_IFS=$IFS; IFS=$PATH_SEPARATOR ++for as_dir in ${DVDNAV_PATH} ++do ++ IFS=$as_save_IFS ++ test -z "$as_dir" && as_dir=. ++ for ac_exec_ext in '' $ac_executable_extensions; do ++ if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then ++ ac_cv_path_DVDNAV_CONFIG="$as_dir/$ac_word$ac_exec_ext" ++ $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 ++ break 2 ++ fi ++done ++ done ++IFS=$as_save_IFS + +-/* Override any GCC internal prototype to avoid an error. +- Use char because int might match the return type of a GCC +- builtin and then its argument prototype would still apply. */ +-#ifdef __cplusplus +-extern "C" +-#endif +-char mad_bit_init (); +-int +-main () +-{ +-return mad_bit_init (); +- ; +- return 0; +-} +-_ACEOF +-rm -f conftest.$ac_objext conftest$ac_exeext +-if { (ac_try="$ac_link" +-case "(($ac_try" in +- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; +- *) ac_try_echo=$ac_try;; ++ test -z "$ac_cv_path_DVDNAV_CONFIG" && ac_cv_path_DVDNAV_CONFIG="no" ++ ;; + esac +-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 +- (eval "$ac_link") 2>conftest.er1 +- ac_status=$? +- grep -v '^ *+' conftest.er1 >conftest.err +- rm -f conftest.er1 +- cat conftest.err >&5 +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); } && { +- test -z "$ac_c_werror_flag" || +- test ! -s conftest.err +- } && test -s conftest$ac_exeext && +- $as_test_x conftest$ac_exeext; then +- ac_cv_lib_mad_mad_bit_init=yes ++fi ++DVDNAV_CONFIG=$ac_cv_path_DVDNAV_CONFIG ++if test -n "$DVDNAV_CONFIG"; then ++ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $DVDNAV_CONFIG" >&5 ++$as_echo "$DVDNAV_CONFIG" >&6; } + else +- echo "$as_me: failed program was:" >&5 +-sed 's/^/| /' conftest.$ac_ext >&5 +- +- ac_cv_lib_mad_mad_bit_init=no ++ { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 ++$as_echo "no" >&6; } + fi + +-rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ +- conftest$ac_exeext conftest.$ac_ext +-LIBS=$ac_check_lib_save_LIBS +-fi +-{ echo "$as_me:$LINENO: result: $ac_cv_lib_mad_mad_bit_init" >&5 +-echo "${ECHO_T}$ac_cv_lib_mad_mad_bit_init" >&6; } +-if test $ac_cv_lib_mad_mad_bit_init = yes; then + ++ if test "${DVDNAV_CONFIG}" != "no" ++ then + +- PLUGINS="${PLUGINS} mpgatofixed32" ++ PLUGINS="${PLUGINS} dvdnav" + + +- for element in mpgatofixed32; do +- eval "LDFLAGS_${element}="'"'"-lmad "'$'"{LDFLAGS_${element}} "'"' ++ for element in dvdnav; do ++ eval "CFLAGS_${element}="'"$'"{CFLAGS_${element}} `${DVDNAV_CONFIG} --cflags`"'"' ++ am_modules_with_cflags="${am_modules_with_cflags} ${element}" ++ done ++ ++ ++ for element in dvdnav; do ++ eval "LDFLAGS_${element}="'"'"`${DVDNAV_CONFIG} --libs` "'$'"{LDFLAGS_${element}} "'"' + am_modules_with_ldflags="${am_modules_with_ldflags} ${element}" + done + +-else +- { { echo "$as_me:$LINENO: error: Cannot find libmad library..." >&5 +-echo "$as_me: error: Cannot find libmad library..." >&2;} +- { (exit 1); exit 1; }; } ++ fi + fi + +- CPPFLAGS="${CPPFLAGS_save}" +- LDFLAGS="${LDFLAGS_save}" +- fi ++# Check whether --enable-dshow was given. ++if test "${enable_dshow+set}" = set; then : ++ enableval=$enable_dshow; + fi + ++if test "${enable_dshow}" != "no" ++then ++ if test "${SYS}" = "mingw32" -o "${SYS}" = "cygwin" ++ then ++ ac_ext=cpp ++ac_cpp='$CXXCPP $CPPFLAGS' ++ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' ++ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' ++ac_compiler_gnu=$ac_cv_cxx_compiler_gnu + +-for ac_header in id3tag.h +-do +-as_ac_Header=`echo "ac_cv_header_$ac_header" | $as_tr_sh` +-if { as_var=$as_ac_Header; eval "test \"\${$as_var+set}\" = set"; }; then +- { echo "$as_me:$LINENO: checking for $ac_header" >&5 +-echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6; } +-if { as_var=$as_ac_Header; eval "test \"\${$as_var+set}\" = set"; }; then +- echo $ECHO_N "(cached) $ECHO_C" >&6 +-fi +-ac_res=`eval echo '${'$as_ac_Header'}'` +- { echo "$as_me:$LINENO: result: $ac_res" >&5 +-echo "${ECHO_T}$ac_res" >&6; } +-else +- # Is the header compilable? +-{ echo "$as_me:$LINENO: checking $ac_header usability" >&5 +-echo $ECHO_N "checking $ac_header usability... $ECHO_C" >&6; } +-cat >conftest.$ac_ext <<_ACEOF +-/* confdefs.h. */ +-_ACEOF +-cat confdefs.h >>conftest.$ac_ext +-cat >>conftest.$ac_ext <<_ACEOF +-/* end confdefs.h. */ +-$ac_includes_default +-#include <$ac_header> ++ for ac_header in dshow.h ++do : ++ ac_fn_cxx_check_header_mongrel "$LINENO" "dshow.h" "ac_cv_header_dshow_h" "$ac_includes_default" ++if test "x$ac_cv_header_dshow_h" = xyes; then : ++ cat >>confdefs.h <<_ACEOF ++#define HAVE_DSHOW_H 1 + _ACEOF +-rm -f conftest.$ac_objext +-if { (ac_try="$ac_compile" +-case "(($ac_try" in +- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; +- *) ac_try_echo=$ac_try;; +-esac +-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 +- (eval "$ac_compile") 2>conftest.er1 +- ac_status=$? +- grep -v '^ *+' conftest.er1 >conftest.err +- rm -f conftest.er1 +- cat conftest.err >&5 +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); } && { +- test -z "$ac_c_werror_flag" || +- test ! -s conftest.err +- } && test -s conftest.$ac_objext; then +- ac_header_compiler=yes +-else +- echo "$as_me: failed program was:" >&5 +-sed 's/^/| /' conftest.$ac_ext >&5 + +- ac_header_compiler=no +-fi ++ PLUGINS="${PLUGINS} dshow" + +-rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext +-{ echo "$as_me:$LINENO: result: $ac_header_compiler" >&5 +-echo "${ECHO_T}$ac_header_compiler" >&6; } + +-# Is the header present? +-{ echo "$as_me:$LINENO: checking $ac_header presence" >&5 +-echo $ECHO_N "checking $ac_header presence... $ECHO_C" >&6; } +-cat >conftest.$ac_ext <<_ACEOF +-/* confdefs.h. */ +-_ACEOF +-cat confdefs.h >>conftest.$ac_ext +-cat >>conftest.$ac_ext <<_ACEOF +-/* end confdefs.h. */ +-#include <$ac_header> +-_ACEOF +-if { (ac_try="$ac_cpp conftest.$ac_ext" +-case "(($ac_try" in +- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; +- *) ac_try_echo=$ac_try;; +-esac +-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 +- (eval "$ac_cpp conftest.$ac_ext") 2>conftest.er1 +- ac_status=$? +- grep -v '^ *+' conftest.er1 >conftest.err +- rm -f conftest.er1 +- cat conftest.err >&5 +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); } >/dev/null && { +- test -z "$ac_c_preproc_warn_flag$ac_c_werror_flag" || +- test ! -s conftest.err +- }; then +- ac_header_preproc=yes +-else +- echo "$as_me: failed program was:" >&5 +-sed 's/^/| /' conftest.$ac_ext >&5 ++ for element in dshow; do ++ eval "CXXFLAGS_${element}="'"$'"{CXXFLAGS_${element}} "'"' ++ am_modules_with_cxxflags="${am_modules_with_cxxflags} ${element}" ++ done ++ ++ ++ for element in dshow; do ++ eval "LDFLAGS_${element}="'"'"-lole32 -loleaut32 -luuid "'$'"{LDFLAGS_${element}} "'"' ++ am_modules_with_ldflags="${am_modules_with_ldflags} ${element}" ++ done + +- ac_header_preproc=no + fi + +-rm -f conftest.err conftest.$ac_ext +-{ echo "$as_me:$LINENO: result: $ac_header_preproc" >&5 +-echo "${ECHO_T}$ac_header_preproc" >&6; } ++done + +-# So? What about this header? +-case $ac_header_compiler:$ac_header_preproc:$ac_c_preproc_warn_flag in +- yes:no: ) +- { echo "$as_me:$LINENO: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&5 +-echo "$as_me: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&2;} +- { echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the compiler's result" >&5 +-echo "$as_me: WARNING: $ac_header: proceeding with the compiler's result" >&2;} +- ac_header_preproc=yes +- ;; +- no:yes:* ) +- { echo "$as_me:$LINENO: WARNING: $ac_header: present but cannot be compiled" >&5 +-echo "$as_me: WARNING: $ac_header: present but cannot be compiled" >&2;} +- { echo "$as_me:$LINENO: WARNING: $ac_header: check for missing prerequisite headers?" >&5 +-echo "$as_me: WARNING: $ac_header: check for missing prerequisite headers?" >&2;} +- { echo "$as_me:$LINENO: WARNING: $ac_header: see the Autoconf documentation" >&5 +-echo "$as_me: WARNING: $ac_header: see the Autoconf documentation" >&2;} +- { echo "$as_me:$LINENO: WARNING: $ac_header: section \"Present But Cannot Be Compiled\"" >&5 +-echo "$as_me: WARNING: $ac_header: section \"Present But Cannot Be Compiled\"" >&2;} +- { echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the preprocessor's result" >&5 +-echo "$as_me: WARNING: $ac_header: proceeding with the preprocessor's result" >&2;} +- { echo "$as_me:$LINENO: WARNING: $ac_header: in the future, the compiler will take precedence" >&5 +-echo "$as_me: WARNING: $ac_header: in the future, the compiler will take precedence" >&2;} ++ ac_ext=c ++ac_cpp='$CPP $CPPFLAGS' ++ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' ++ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' ++ac_compiler_gnu=$ac_cv_c_compiler_gnu + +- ;; +-esac +-{ echo "$as_me:$LINENO: checking for $ac_header" >&5 +-echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6; } +-if { as_var=$as_ac_Header; eval "test \"\${$as_var+set}\" = set"; }; then +- echo $ECHO_N "(cached) $ECHO_C" >&6 +-else +- eval "$as_ac_Header=\$ac_header_preproc" ++ fi + fi +-ac_res=`eval echo '${'$as_ac_Header'}'` +- { echo "$as_me:$LINENO: result: $ac_res" >&5 +-echo "${ECHO_T}$ac_res" >&6; } + ++# Check whether --enable-smb was given. ++if test "${enable_smb+set}" = set; then : ++ enableval=$enable_smb; + fi +-if test `eval echo '${'$as_ac_Header'}'` = yes; then ++ ++if test "${enable_smb}" != "no"; then ++ for ac_header in libsmbclient.h ++do : ++ ac_fn_c_check_header_mongrel "$LINENO" "libsmbclient.h" "ac_cv_header_libsmbclient_h" "$ac_includes_default" ++if test "x$ac_cv_header_libsmbclient_h" = xyes; then : + cat >>confdefs.h <<_ACEOF +-#define `echo "HAVE_$ac_header" | $as_tr_cpp` 1 ++#define HAVE_LIBSMBCLIENT_H 1 + _ACEOF + ++ PLUGINS="${PLUGINS} access_smb" + +-for ac_header in zlib.h +-do +-as_ac_Header=`echo "ac_cv_header_$ac_header" | $as_tr_sh` +-if { as_var=$as_ac_Header; eval "test \"\${$as_var+set}\" = set"; }; then +- { echo "$as_me:$LINENO: checking for $ac_header" >&5 +-echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6; } +-if { as_var=$as_ac_Header; eval "test \"\${$as_var+set}\" = set"; }; then +- echo $ECHO_N "(cached) $ECHO_C" >&6 +-fi +-ac_res=`eval echo '${'$as_ac_Header'}'` +- { echo "$as_me:$LINENO: result: $ac_res" >&5 +-echo "${ECHO_T}$ac_res" >&6; } +-else +- # Is the header compilable? +-{ echo "$as_me:$LINENO: checking $ac_header usability" >&5 +-echo $ECHO_N "checking $ac_header usability... $ECHO_C" >&6; } +-cat >conftest.$ac_ext <<_ACEOF +-/* confdefs.h. */ +-_ACEOF +-cat confdefs.h >>conftest.$ac_ext +-cat >>conftest.$ac_ext <<_ACEOF +-/* end confdefs.h. */ +-$ac_includes_default +-#include <$ac_header> +-_ACEOF +-rm -f conftest.$ac_objext +-if { (ac_try="$ac_compile" +-case "(($ac_try" in +- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; +- *) ac_try_echo=$ac_try;; +-esac +-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 +- (eval "$ac_compile") 2>conftest.er1 +- ac_status=$? +- grep -v '^ *+' conftest.er1 >conftest.err +- rm -f conftest.er1 +- cat conftest.err >&5 +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); } && { +- test -z "$ac_c_werror_flag" || +- test ! -s conftest.err +- } && test -s conftest.$ac_objext; then +- ac_header_compiler=yes +-else +- echo "$as_me: failed program was:" >&5 +-sed 's/^/| /' conftest.$ac_ext >&5 + +- ac_header_compiler=no ++ for element in access_smb; do ++ eval "LDFLAGS_${element}="'"'"-lsmbclient "'$'"{LDFLAGS_${element}} "'"' ++ am_modules_with_ldflags="${am_modules_with_ldflags} ${element}" ++ done ++ ++else ++ if test -n "${enable_smb}"; then ++ as_fn_error $? "cannot find libsmbclient headers" "$LINENO" 5 ++ fi + fi + +-rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext +-{ echo "$as_me:$LINENO: result: $ac_header_compiler" >&5 +-echo "${ECHO_T}$ac_header_compiler" >&6; } ++done + +-# Is the header present? +-{ echo "$as_me:$LINENO: checking $ac_header presence" >&5 +-echo $ECHO_N "checking $ac_header presence... $ECHO_C" >&6; } +-cat >conftest.$ac_ext <<_ACEOF +-/* confdefs.h. */ +-_ACEOF +-cat confdefs.h >>conftest.$ac_ext +-cat >>conftest.$ac_ext <<_ACEOF +-/* end confdefs.h. */ +-#include <$ac_header> +-_ACEOF +-if { (ac_try="$ac_cpp conftest.$ac_ext" +-case "(($ac_try" in +- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; +- *) ac_try_echo=$ac_try;; +-esac +-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 +- (eval "$ac_cpp conftest.$ac_ext") 2>conftest.er1 +- ac_status=$? +- grep -v '^ *+' conftest.er1 >conftest.err +- rm -f conftest.er1 +- cat conftest.err >&5 +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); } >/dev/null && { +- test -z "$ac_c_preproc_warn_flag$ac_c_werror_flag" || +- test ! -s conftest.err +- }; then +- ac_header_preproc=yes +-else +- echo "$as_me: failed program was:" >&5 +-sed 's/^/| /' conftest.$ac_ext >&5 ++ ac_fn_c_check_member "$LINENO" "struct _SMBCCTX" "close_fn" "ac_cv_member_struct__SMBCCTX_close_fn" "#include ++" ++if test "x$ac_cv_member_struct__SMBCCTX_close_fn" = xyes; then : ++ ++$as_echo "#define HAVE__SMBCCTX_CLOSE_FN 1" >>confdefs.h + +- ac_header_preproc=no + fi + +-rm -f conftest.err conftest.$ac_ext +-{ echo "$as_me:$LINENO: result: $ac_header_preproc" >&5 +-echo "${ECHO_T}$ac_header_preproc" >&6; } ++fi + +-# So? What about this header? +-case $ac_header_compiler:$ac_header_preproc:$ac_c_preproc_warn_flag in +- yes:no: ) +- { echo "$as_me:$LINENO: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&5 +-echo "$as_me: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&2;} +- { echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the compiler's result" >&5 +-echo "$as_me: WARNING: $ac_header: proceeding with the compiler's result" >&2;} +- ac_header_preproc=yes +- ;; +- no:yes:* ) +- { echo "$as_me:$LINENO: WARNING: $ac_header: present but cannot be compiled" >&5 +-echo "$as_me: WARNING: $ac_header: present but cannot be compiled" >&2;} +- { echo "$as_me:$LINENO: WARNING: $ac_header: check for missing prerequisite headers?" >&5 +-echo "$as_me: WARNING: $ac_header: check for missing prerequisite headers?" >&2;} +- { echo "$as_me:$LINENO: WARNING: $ac_header: see the Autoconf documentation" >&5 +-echo "$as_me: WARNING: $ac_header: see the Autoconf documentation" >&2;} +- { echo "$as_me:$LINENO: WARNING: $ac_header: section \"Present But Cannot Be Compiled\"" >&5 +-echo "$as_me: WARNING: $ac_header: section \"Present But Cannot Be Compiled\"" >&2;} +- { echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the preprocessor's result" >&5 +-echo "$as_me: WARNING: $ac_header: proceeding with the preprocessor's result" >&2;} +- { echo "$as_me:$LINENO: WARNING: $ac_header: in the future, the compiler will take precedence" >&5 +-echo "$as_me: WARNING: $ac_header: in the future, the compiler will take precedence" >&2;} ++# Check whether --enable-dvbpsi was given. ++if test "${enable_dvbpsi+set}" = set; then : ++ enableval=$enable_dvbpsi; ++fi + +- ;; +-esac +-{ echo "$as_me:$LINENO: checking for $ac_header" >&5 +-echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6; } +-if { as_var=$as_ac_Header; eval "test \"\${$as_var+set}\" = set"; }; then +- echo $ECHO_N "(cached) $ECHO_C" >&6 +-else +- eval "$as_ac_Header=\$ac_header_preproc" ++if test "${enable_dvbpsi}" != "no" ++then ++ ++# Check whether --with-dvbpsi was given. ++if test "${with_dvbpsi+set}" = set; then : ++ withval=$with_dvbpsi; + fi +-ac_res=`eval echo '${'$as_ac_Header'}'` +- { echo "$as_me:$LINENO: result: $ac_res" >&5 +-echo "${ECHO_T}$ac_res" >&6; } + ++ ++# Check whether --with-dvbpsi was given. ++if test "${with_dvbpsi+set}" = set; then : ++ withval=$with_dvbpsi; + fi +-if test `eval echo '${'$as_ac_Header'}'` = yes; then ++ ++ case "${with_dvbpsi}" in ++ ""|yes) ++ if test -z "${with_dvbpsi_tree}" ++ then ++ for ac_header in dvbpsi/dr.h ++do : ++ ac_fn_c_check_header_compile "$LINENO" "dvbpsi/dr.h" "ac_cv_header_dvbpsi_dr_h" "#if defined( HAVE_STDINT_H ) ++# include ++#elif defined( HAVE_INTTYPES_H ) ++# include ++#endif ++#include ++#include ++#include ++#include ++" ++if test "x$ac_cv_header_dvbpsi_dr_h" = xyes; then : + cat >>confdefs.h <<_ACEOF +-#define `echo "HAVE_$ac_header" | $as_tr_cpp` 1 ++#define HAVE_DVBPSI_DR_H 1 + _ACEOF + ++ PLUGINS="${PLUGINS} ts" + +- for element in id3tag; do +- eval "LDFLAGS_${element}="'"'"-lid3tag -lz "'$'"{LDFLAGS_${element}} "'"' +- am_modules_with_ldflags="${am_modules_with_ldflags} ${element}" +- done +- ++ if test "${enable_sout}" != "no"; then + +- PLUGINS="${PLUGINS} id3tag" ++ BUILTINS="${BUILTINS} mux_ts" + +-fi ++ fi + +-done ++ for element in mux_ts ts dvb; do ++ eval "LDFLAGS_${element}="'"'"-ldvbpsi "'$'"{LDFLAGS_${element}} "'"' ++ am_modules_with_ldflags="${am_modules_with_ldflags} ${element}" ++ done + ++else ++ { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: cannot find libdvbpsi headers" >&5 ++$as_echo "$as_me: WARNING: cannot find libdvbpsi headers" >&2;} + fi + + done + ++ else ++ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for libdvbpsi.a in ${with_dvbpsi_tree}" >&5 ++$as_echo_n "checking for libdvbpsi.a in ${with_dvbpsi_tree}... " >&6; } ++ real_dvbpsi_tree="`cd ${with_dvbpsi_tree} 2>/dev/null && pwd`" ++ if test -z "${real_dvbpsi_tree}" ++ then ++ { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 ++$as_echo "no" >&6; } ++ as_fn_error $? "cannot cd to ${with_dvbpsi_tree}" "$LINENO" 5 ++ fi ++ if test -f "${real_dvbpsi_tree}/src/.libs/libdvbpsi.a" ++ then ++ { $as_echo "$as_me:${as_lineno-$LINENO}: result: ${real_dvbpsi_tree}/src/.libs/libdvbpsi.a" >&5 ++$as_echo "${real_dvbpsi_tree}/src/.libs/libdvbpsi.a" >&6; } + ++ BUILTINS="${BUILTINS} ts" + +-# Check whether --enable-ffmpeg was given. +-if test "${enable_ffmpeg+set}" = set; then +- enableval=$enable_ffmpeg; +-fi ++ if test "${enable_sout}" != "no"; then + +-if test "${enable_ffmpeg}" != "no" +-then ++ BUILTINS="${BUILTINS} mux_ts" + ++ fi + ++ for element in mux_ts ts dvb; do ++ eval "CPPFLAGS_${element}="'"$'"{CPPFLAGS_${element}} -I${real_dvbpsi_tree}/src"'"' ++ am_modules_with_cppflags="${am_modules_with_cppflags} ${element}" ++ done + +-# Check whether --with-ffmpeg-mp3lame was given. +-if test "${with_ffmpeg_mp3lame+set}" = set; then +- withval=$with_ffmpeg_mp3lame; +- if test "$with_ffmpeg_mp3lame" = "yes"; then + +- for element in ffmpeg; do +- eval "LDFLAGS_${element}="'"'"-lmp3lame "'$'"{LDFLAGS_${element}} "'"' ++ for element in mux_ts ts dvb; do ++ eval "LDFLAGS_${element}="'"'"${real_dvbpsi_tree}/src/.libs/libdvbpsi.a "'$'"{LDFLAGS_${element}} "'"' + am_modules_with_ldflags="${am_modules_with_ldflags} ${element}" + done + +- fi +-fi ++ else ++ { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 ++$as_echo "no" >&6; } ++ as_fn_error $? "cannot find ${real_dvbpsi_tree}/src/.libs/libdvbpsi.a, make sure you compiled libdvbpsi in ${with_dvbpsi_tree}" "$LINENO" 5 ++ fi ++ fi ++ ;; ++ no) ++ ;; ++ *) ++ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for dvbpsi headers in ${with_dvbpsi}" >&5 ++$as_echo_n "checking for dvbpsi headers in ${with_dvbpsi}... " >&6; } ++ if test -z "${with_dvbpsi}" ++ then ++ LDFLAGS_test="" ++ CPPFLAGS_test="" ++ else ++ LDFLAGS_test="-L${with_dvbpsi}/lib" ++ CPPFLAGS_test="-I${with_dvbpsi}/include" ++ fi ++ CPPFLAGS="${CPPFLAGS_save} ${CPPFLAGS_test}" ++ for ac_header in dvbpsi/dr.h ++do : ++ ac_fn_c_check_header_mongrel "$LINENO" "dvbpsi/dr.h" "ac_cv_header_dvbpsi_dr_h" "$ac_includes_default" ++if test "x$ac_cv_header_dvbpsi_dr_h" = xyes; then : ++ cat >>confdefs.h <<_ACEOF ++#define HAVE_DVBPSI_DR_H 1 ++_ACEOF + + ++ PLUGINS="${PLUGINS} ts" + +-# Check whether --with-ffmpeg-faac was given. +-if test "${with_ffmpeg_faac+set}" = set; then +- withval=$with_ffmpeg_faac; +- if test "$with_ffmpeg_faac" = "yes"; then ++ if test "${enable_sout}" != "no"; then + +- for element in ffmpeg; do +- eval "LDFLAGS_${element}="'"'"-lfaac "'$'"{LDFLAGS_${element}} "'"' ++ PLUGINS="${PLUGINS} mux_ts" ++ ++ fi ++ ++ for element in mux_ts ts dvb; do ++ eval "CPPFLAGS_${element}="'"$'"{CPPFLAGS_${element}} ${CPPFLAGS_test}"'"' ++ am_modules_with_cppflags="${am_modules_with_cppflags} ${element}" ++ done ++ ++ ++ for element in mux_ts ts dvb; do ++ eval "LDFLAGS_${element}="'"'"${LDFLAGS_test} -ldvbpsi "'$'"{LDFLAGS_${element}} "'"' + am_modules_with_ldflags="${am_modules_with_ldflags} ${element}" + done + +- fi +-fi + + ++else + +-# Check whether --with-ffmpeg-dts was given. +-if test "${with_ffmpeg_dts+set}" = set; then +- withval=$with_ffmpeg_dts; +- if test "$with_ffmpeg_dts" = "yes"; then +- LDFLAGS="${LDFLAGS_save} ${LDFLAGS_ffmpeg}" +- { echo "$as_me:$LINENO: checking for dts_free in -ldts_pic" >&5 +-echo $ECHO_N "checking for dts_free in -ldts_pic... $ECHO_C" >&6; } +-if test "${ac_cv_lib_dts_pic_dts_free+set}" = set; then +- echo $ECHO_N "(cached) $ECHO_C" >&6 ++ if test -n "${enable_dvbpsi}" ++ then ++ as_fn_error $? "Could not find libdvbpsi on your system: you may get it from www.videolan.org, you'll need at least version 0.1.1" "$LINENO" 5 ++ fi ++ ++fi ++ ++done ++ ++ CPPFLAGS="${CPPFLAGS_save}" ++ ;; ++ esac ++ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for dvbpsi_GenSDTSections in -ldvbpsi" >&5 ++$as_echo_n "checking for dvbpsi_GenSDTSections in -ldvbpsi... " >&6; } ++if ${ac_cv_lib_dvbpsi_dvbpsi_GenSDTSections+:} false; then : ++ $as_echo_n "(cached) " >&6 + else + ac_check_lib_save_LIBS=$LIBS +-LIBS="-ldts_pic $LIBS" +-cat >conftest.$ac_ext <<_ACEOF +-/* confdefs.h. */ +-_ACEOF +-cat confdefs.h >>conftest.$ac_ext +-cat >>conftest.$ac_ext <<_ACEOF ++LIBS="-ldvbpsi ${LDFLAGS_ts} $LIBS" ++cat confdefs.h - <<_ACEOF >conftest.$ac_ext + /* end confdefs.h. */ + + /* Override any GCC internal prototype to avoid an error. +@@ -44022,1119 +30993,909 @@ cat >>conftest.$ac_ext <<_ACEOF + #ifdef __cplusplus + extern "C" + #endif +-char dts_free (); ++char dvbpsi_GenSDTSections (); + int + main () + { +-return dts_free (); ++return dvbpsi_GenSDTSections (); + ; + return 0; + } + _ACEOF +-rm -f conftest.$ac_objext conftest$ac_exeext +-if { (ac_try="$ac_link" +-case "(($ac_try" in +- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; +- *) ac_try_echo=$ac_try;; +-esac +-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 +- (eval "$ac_link") 2>conftest.er1 +- ac_status=$? +- grep -v '^ *+' conftest.er1 >conftest.err +- rm -f conftest.er1 +- cat conftest.err >&5 +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); } && { +- test -z "$ac_c_werror_flag" || +- test ! -s conftest.err +- } && test -s conftest$ac_exeext && +- $as_test_x conftest$ac_exeext; then +- ac_cv_lib_dts_pic_dts_free=yes ++if ac_fn_c_try_link "$LINENO"; then : ++ ac_cv_lib_dvbpsi_dvbpsi_GenSDTSections=yes + else +- echo "$as_me: failed program was:" >&5 +-sed 's/^/| /' conftest.$ac_ext >&5 ++ ac_cv_lib_dvbpsi_dvbpsi_GenSDTSections=no ++fi ++rm -f core conftest.err conftest.$ac_objext \ ++ conftest$ac_exeext conftest.$ac_ext ++LIBS=$ac_check_lib_save_LIBS ++fi ++{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_dvbpsi_dvbpsi_GenSDTSections" >&5 ++$as_echo "$ac_cv_lib_dvbpsi_dvbpsi_GenSDTSections" >&6; } ++if test "x$ac_cv_lib_dvbpsi_dvbpsi_GenSDTSections" = xyes; then : ++ ++ ++$as_echo "#define HAVE_DVBPSI_SDT 1" >>confdefs.h ++ + +- ac_cv_lib_dts_pic_dts_free=no + fi + +-rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ +- conftest$ac_exeext conftest.$ac_ext +-LIBS=$ac_check_lib_save_LIBS ++ + fi +-{ echo "$as_me:$LINENO: result: $ac_cv_lib_dts_pic_dts_free" >&5 +-echo "${ECHO_T}$ac_cv_lib_dts_pic_dts_free" >&6; } +-if test $ac_cv_lib_dts_pic_dts_free = yes; then + +- for element in ffmpeg; do +- eval "LDFLAGS_${element}="'"'"-ldts_pic "'$'"{LDFLAGS_${element}} "'"' +- am_modules_with_ldflags="${am_modules_with_ldflags} ${element}" +- done ++# Check whether --enable-v4l was given. ++if test "${enable_v4l+set}" = set; then : ++ enableval=$enable_v4l; ++fi + +-else ++if test "${enable_v4l}" = "yes" ++then + +- for element in ffmpeg; do +- eval "LDFLAGS_${element}="'"'"-ldts "'$'"{LDFLAGS_${element}} "'"' +- am_modules_with_ldflags="${am_modules_with_ldflags} ${element}" ++# Check whether --with-v4l was given. ++if test "${with_v4l+set}" = set; then : ++ withval=$with_v4l; ++fi ++ ++ if test "${with_v4l}" != "no" -a -n "${with_v4l}" ++ then ++ ++ for element in v4l; do ++ eval "CPPFLAGS_${element}="'"$'"{CPPFLAGS_${element}} -I${with_v4l}/include"'"' ++ am_modules_with_cppflags="${am_modules_with_cppflags} ${element}" + done + ++ fi ++ ++ CPPFLAGS="${CPPFLAGS_save} ${CPPFLAGS_v4l}" ++ for ac_header in linux/videodev.h ++do : ++ ac_fn_c_check_header_mongrel "$LINENO" "linux/videodev.h" "ac_cv_header_linux_videodev_h" "$ac_includes_default" ++if test "x$ac_cv_header_linux_videodev_h" = xyes; then : ++ cat >>confdefs.h <<_ACEOF ++#define HAVE_LINUX_VIDEODEV_H 1 ++_ACEOF ++ ++ ++ PLUGINS="${PLUGINS} v4l" ++ ++ + fi + +- LDFLAGS="${LDFLAGS_save}" +- fi ++done ++ ++ CPPFLAGS="${CPPFLAGS_save}" + fi + ++# Check whether --enable-pvr was given. ++if test "${enable_pvr+set}" = set; then : ++ enableval=$enable_pvr; ++fi + ++if test "${enable_pvr}" = "yes" ++then + +-# Check whether --with-ffmpeg-dca was given. +-if test "${with_ffmpeg_dca+set}" = set; then +- withval=$with_ffmpeg_dca; +- if test "$with_ffmpeg_dca" = "yes"; then +- LDFLAGS="${LDFLAGS_save} ${LDFLAGS_ffmpeg} ${LIBS_ffmpeg}" +- { echo "$as_me:$LINENO: checking for dca_free in -ldca" >&5 +-echo $ECHO_N "checking for dca_free in -ldca... $ECHO_C" >&6; } +-if test "${ac_cv_lib_dca_dca_free+set}" = set; then +- echo $ECHO_N "(cached) $ECHO_C" >&6 +-else +- ac_check_lib_save_LIBS=$LIBS +-LIBS="-ldca $LIBS" +-cat >conftest.$ac_ext <<_ACEOF +-/* confdefs.h. */ ++ PLUGINS="${PLUGINS} pvr" ++ ++ ++# Check whether --with-videodev2 was given. ++if test "${with_videodev2+set}" = set; then : ++ withval=$with_videodev2; ++fi ++ ++ if test "${with_videodev2}" != "no" -a -n "${with_videodev2}" ++ then ++ ++cat >>confdefs.h <<_ACEOF ++#define VIDEODEV2_H_FILE "${with_videodev2}" + _ACEOF +-cat confdefs.h >>conftest.$ac_ext +-cat >>conftest.$ac_ext <<_ACEOF ++ ++ fi ++ ++ ++ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for new linux/videodev2.h" >&5 ++$as_echo_n "checking for new linux/videodev2.h... " >&6; } ++if ${new_linux_videodev2_h+:} false; then : ++ $as_echo_n "(cached) " >&6 ++else ++ cat confdefs.h - <<_ACEOF >conftest.$ac_ext + /* end confdefs.h. */ + +-/* Override any GCC internal prototype to avoid an error. +- Use char because int might match the return type of a GCC +- builtin and then its argument prototype would still apply. */ +-#ifdef __cplusplus +-extern "C" +-#endif +-char dca_free (); ++ #include ++ # ifdef VIDEODEV2_H_FILE ++ # include VIDEODEV2_H_FILE ++ # else ++ # include ++ # endif ++ + int + main () + { +-return dca_free (); ++struct v4l2_ext_controls ctrls; ctrls.ctrl_class = V4L2_CTRL_CLASS_MPEG; + ; + return 0; + } + _ACEOF +-rm -f conftest.$ac_objext conftest$ac_exeext +-if { (ac_try="$ac_link" +-case "(($ac_try" in +- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; +- *) ac_try_echo=$ac_try;; +-esac +-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 +- (eval "$ac_link") 2>conftest.er1 +- ac_status=$? +- grep -v '^ *+' conftest.er1 >conftest.err +- rm -f conftest.er1 +- cat conftest.err >&5 +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); } && { +- test -z "$ac_c_werror_flag" || +- test ! -s conftest.err +- } && test -s conftest$ac_exeext && +- $as_test_x conftest$ac_exeext; then +- ac_cv_lib_dca_dca_free=yes ++if ac_fn_c_try_compile "$LINENO"; then : ++ new_linux_videodev2_h=yes + else +- echo "$as_me: failed program was:" >&5 +-sed 's/^/| /' conftest.$ac_ext >&5 +- +- ac_cv_lib_dca_dca_free=no ++ new_linux_videodev2_h=no + fi +- +-rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ +- conftest$ac_exeext conftest.$ac_ext +-LIBS=$ac_check_lib_save_LIBS ++rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext + fi +-{ echo "$as_me:$LINENO: result: $ac_cv_lib_dca_dca_free" >&5 +-echo "${ECHO_T}$ac_cv_lib_dca_dca_free" >&6; } +-if test $ac_cv_lib_dca_dca_free = yes; then ++{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $new_linux_videodev2_h" >&5 ++$as_echo "$new_linux_videodev2_h" >&6; } ++ if test "${new_linux_videodev2_h}" != "no"; then + +- for element in ffmpeg; do +- eval "LDFLAGS_${element}="'"'"-ldca "'$'"{LDFLAGS_${element}} "'"' +- am_modules_with_ldflags="${am_modules_with_ldflags} ${element}" +- done ++$as_echo "#define HAVE_NEW_LINUX_VIDEODEV2_H 1" >>confdefs.h + ++ fi + fi + +- LDFLAGS="${LDFLAGS_save}" +- fi ++# Check whether --enable-gnomevfs was given. ++if test "${enable_gnomevfs+set}" = set; then : ++ enableval=$enable_gnomevfs; + fi + ++if test "${enable_gnomevfs}" != "no" ++then + ++pkg_failed=no ++{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for GNOMEVFS" >&5 ++$as_echo_n "checking for GNOMEVFS... " >&6; } + +-# Check whether --with-ffmpeg-vorbis was given. +-if test "${with_ffmpeg_vorbis+set}" = set; then +- withval=$with_ffmpeg_vorbis; +- if test "$with_ffmpeg_vorbis" = "yes"; then ++if test -n "$PKG_CONFIG"; then ++ if test -n "$GNOMEVFS_CFLAGS"; then ++ pkg_cv_GNOMEVFS_CFLAGS="$GNOMEVFS_CFLAGS" ++ else ++ if test -n "$PKG_CONFIG" && \ ++ { { $as_echo "$as_me:${as_lineno-$LINENO}: \$PKG_CONFIG --exists --print-errors \"gnome-vfs-2.0\""; } >&5 ++ ($PKG_CONFIG --exists --print-errors "gnome-vfs-2.0") 2>&5 ++ ac_status=$? ++ $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 ++ test $ac_status = 0; }; then ++ pkg_cv_GNOMEVFS_CFLAGS=`$PKG_CONFIG --cflags "gnome-vfs-2.0" 2>/dev/null` ++else ++ pkg_failed=yes ++fi ++ fi ++else ++ pkg_failed=untried ++fi ++if test -n "$PKG_CONFIG"; then ++ if test -n "$GNOMEVFS_LIBS"; then ++ pkg_cv_GNOMEVFS_LIBS="$GNOMEVFS_LIBS" ++ else ++ if test -n "$PKG_CONFIG" && \ ++ { { $as_echo "$as_me:${as_lineno-$LINENO}: \$PKG_CONFIG --exists --print-errors \"gnome-vfs-2.0\""; } >&5 ++ ($PKG_CONFIG --exists --print-errors "gnome-vfs-2.0") 2>&5 ++ ac_status=$? ++ $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 ++ test $ac_status = 0; }; then ++ pkg_cv_GNOMEVFS_LIBS=`$PKG_CONFIG --libs "gnome-vfs-2.0" 2>/dev/null` ++else ++ pkg_failed=yes ++fi ++ fi ++else ++ pkg_failed=untried ++fi + +- for element in ffmpeg; do +- eval "LDFLAGS_${element}="'"'"-lvorbisenc -lvorbis "'$'"{LDFLAGS_${element}} "'"' +- am_modules_with_ldflags="${am_modules_with_ldflags} ${element}" +- done + +- fi +-fi + ++if test $pkg_failed = yes; then + ++if $PKG_CONFIG --atleast-pkgconfig-version 0.20; then ++ _pkg_short_errors_supported=yes ++else ++ _pkg_short_errors_supported=no ++fi ++ if test $_pkg_short_errors_supported = yes; then ++ GNOMEVFS_PKG_ERRORS=`$PKG_CONFIG --short-errors --errors-to-stdout --print-errors "gnome-vfs-2.0"` ++ else ++ GNOMEVFS_PKG_ERRORS=`$PKG_CONFIG --errors-to-stdout --print-errors "gnome-vfs-2.0"` ++ fi ++ # Put the nasty error message in config.log where it belongs ++ echo "$GNOMEVFS_PKG_ERRORS" >&5 + +-# Check whether --with-ffmpeg-theora was given. +-if test "${with_ffmpeg_theora+set}" = set; then +- withval=$with_ffmpeg_theora; +- if test "$with_ffmpeg_theora" = "yes"; then ++ { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 ++$as_echo "no" >&6; } ++ { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: GnomeVFS support disabled because GnomeVFS development headers not found" >&5 ++$as_echo "$as_me: WARNING: GnomeVFS support disabled because GnomeVFS development headers not found" >&2;} ++elif test $pkg_failed = untried; then ++ { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: GnomeVFS support disabled because GnomeVFS development headers not found" >&5 ++$as_echo "$as_me: WARNING: GnomeVFS support disabled because GnomeVFS development headers not found" >&2;} ++else ++ GNOMEVFS_CFLAGS=$pkg_cv_GNOMEVFS_CFLAGS ++ GNOMEVFS_LIBS=$pkg_cv_GNOMEVFS_LIBS ++ { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5 ++$as_echo "yes" >&6; } + +- for element in ffmpeg; do +- eval "LDFLAGS_${element}="'"'"-ltheora "'$'"{LDFLAGS_${element}} "'"' ++ for element in access_gnomevfs; do ++ eval "LDFLAGS_${element}="'"'"$GNOMEVFS_LIBS "'$'"{LDFLAGS_${element}} "'"' + am_modules_with_ldflags="${am_modules_with_ldflags} ${element}" + done + +- fi +-fi +- + ++ for element in access_gnomevfs; do ++ eval "CPPFLAGS_${element}="'"$'"{CPPFLAGS_${element}} $GNOMEVFS_CPPFLAGS"'"' ++ am_modules_with_cppflags="${am_modules_with_cppflags} ${element}" ++ done + +-# Check whether --with-ffmpeg-ogg was given. +-if test "${with_ffmpeg_ogg+set}" = set; then +- withval=$with_ffmpeg_ogg; +- if test "$with_ffmpeg_ogg" = "yes"; then + +- for element in ffmpeg; do +- eval "LDFLAGS_${element}="'"'"-logg "'$'"{LDFLAGS_${element}} "'"' +- am_modules_with_ldflags="${am_modules_with_ldflags} ${element}" ++ for element in access_gnomevfs; do ++ eval "CFLAGS_${element}="'"$'"{CFLAGS_${element}} $GNOMEVFS_CFLAGS"'"' ++ am_modules_with_cflags="${am_modules_with_cflags} ${element}" + done + +- fi +-fi + ++ PLUGINS="${PLUGINS} access_gnomevfs" + ++fi ++fi + +-# Check whether --with-ffmpeg-zlib was given. +-if test "${with_ffmpeg_zlib+set}" = set; then +- withval=$with_ffmpeg_zlib; +- if test "$with_ffmpeg_zlib" = "yes"; then ++# Check whether --enable-libcdio was given. ++if test "${enable_libcdio+set}" = set; then : ++ enableval=$enable_libcdio; ++fi + +- for element in ffmpeg; do +- eval "LDFLAGS_${element}="'"'"-lz "'$'"{LDFLAGS_${element}} "'"' +- am_modules_with_ldflags="${am_modules_with_ldflags} ${element}" +- done + +- fi +-fi + ++have_libcdio=no ++have_libvcdinfo=no ++if test "${enable_libcdio}" != "no" ++then + ++pkg_failed=no ++{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for LIBCDIO" >&5 ++$as_echo_n "checking for LIBCDIO... " >&6; } + +-# Check whether --with-ffmpeg-tree was given. +-if test "${with_ffmpeg_tree+set}" = set; then +- withval=$with_ffmpeg_tree; ++if test -n "$PKG_CONFIG"; then ++ if test -n "$LIBCDIO_CFLAGS"; then ++ pkg_cv_LIBCDIO_CFLAGS="$LIBCDIO_CFLAGS" ++ else ++ if test -n "$PKG_CONFIG" && \ ++ { { $as_echo "$as_me:${as_lineno-$LINENO}: \$PKG_CONFIG --exists --print-errors \"libcdio >= 0.72\""; } >&5 ++ ($PKG_CONFIG --exists --print-errors "libcdio >= 0.72") 2>&5 ++ ac_status=$? ++ $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 ++ test $ac_status = 0; }; then ++ pkg_cv_LIBCDIO_CFLAGS=`$PKG_CONFIG --cflags "libcdio >= 0.72" 2>/dev/null` ++else ++ pkg_failed=yes ++fi ++ fi ++else ++ pkg_failed=untried ++fi ++if test -n "$PKG_CONFIG"; then ++ if test -n "$LIBCDIO_LIBS"; then ++ pkg_cv_LIBCDIO_LIBS="$LIBCDIO_LIBS" ++ else ++ if test -n "$PKG_CONFIG" && \ ++ { { $as_echo "$as_me:${as_lineno-$LINENO}: \$PKG_CONFIG --exists --print-errors \"libcdio >= 0.72\""; } >&5 ++ ($PKG_CONFIG --exists --print-errors "libcdio >= 0.72") 2>&5 ++ ac_status=$? ++ $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 ++ test $ac_status = 0; }; then ++ pkg_cv_LIBCDIO_LIBS=`$PKG_CONFIG --libs "libcdio >= 0.72" 2>/dev/null` ++else ++ pkg_failed=yes ++fi ++ fi ++else ++ pkg_failed=untried + fi + + +- if test "${with_ffmpeg_tree}" != "no" -a -n "${with_ffmpeg_tree}"; then +- { echo "$as_me:$LINENO: checking for libavcodec.a in ${with_ffmpeg_tree}" >&5 +-echo $ECHO_N "checking for libavcodec.a in ${with_ffmpeg_tree}... $ECHO_C" >&6; } +- real_ffmpeg_tree="`cd ${with_ffmpeg_tree} 2>/dev/null && pwd`" +- if test -z "${real_ffmpeg_tree}"; then +- { echo "$as_me:$LINENO: result: no" >&5 +-echo "${ECHO_T}no" >&6; } +- { { echo "$as_me:$LINENO: error: cannot cd to ${with_ffmpeg_tree}" >&5 +-echo "$as_me: error: cannot cd to ${with_ffmpeg_tree}" >&2;} +- { (exit 1); exit 1; }; } +- fi +- if ! test -f "${real_ffmpeg_tree}/libavcodec/libavcodec.a"; then +- { echo "$as_me:$LINENO: result: no" >&5 +-echo "${ECHO_T}no" >&6; } +- { { echo "$as_me:$LINENO: error: cannot find ${real_ffmpeg_tree}/libavcodec/libavcodec.a, make sure you compiled libavcodec in ${with_ffmpeg_tree}" >&5 +-echo "$as_me: error: cannot find ${real_ffmpeg_tree}/libavcodec/libavcodec.a, make sure you compiled libavcodec in ${with_ffmpeg_tree}" >&2;} +- { (exit 1); exit 1; }; } +- fi +- if ! fgrep -s "pp_get_context" "${real_ffmpeg_tree}/libavcodec/libavcodec.a"; then +- if test -f "${real_ffmpeg_tree}/libavcodec/libpostproc/libpostproc.a"; then +- +- for element in ffmpeg; do +- eval "LDFLAGS_${element}="'"'"-L${real_ffmpeg_tree}/libavcodec/libpostproc ${real_ffmpeg_tree}/libavcodec/libpostproc/libpostproc.a "'$'"{LDFLAGS_${element}} "'"' +- am_modules_with_ldflags="${am_modules_with_ldflags} ${element}" +- done + +- elif test -f "${real_ffmpeg_tree}/libpostproc/libpostproc.a"; then ++if test $pkg_failed = yes; then + +- for element in ffmpeg; do +- eval "LDFLAGS_${element}="'"'"-L${real_ffmpeg_tree}/libpostproc ${real_ffmpeg_tree}/libpostproc/libpostproc.a "'$'"{LDFLAGS_${element}} "'"' +- am_modules_with_ldflags="${am_modules_with_ldflags} ${element}" +- done ++if $PKG_CONFIG --atleast-pkgconfig-version 0.20; then ++ _pkg_short_errors_supported=yes ++else ++ _pkg_short_errors_supported=no ++fi ++ if test $_pkg_short_errors_supported = yes; then ++ LIBCDIO_PKG_ERRORS=`$PKG_CONFIG --short-errors --errors-to-stdout --print-errors "libcdio >= 0.72"` ++ else ++ LIBCDIO_PKG_ERRORS=`$PKG_CONFIG --errors-to-stdout --print-errors "libcdio >= 0.72"` ++ fi ++ # Put the nasty error message in config.log where it belongs ++ echo "$LIBCDIO_PKG_ERRORS" >&5 + ++ { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 ++$as_echo "no" >&6; } ++ { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: CD Reading and information library not found" >&5 ++$as_echo "$as_me: WARNING: CD Reading and information library not found" >&2;} ++elif test $pkg_failed = untried; then ++ { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: CD Reading and information library not found" >&5 ++$as_echo "$as_me: WARNING: CD Reading and information library not found" >&2;} ++else ++ LIBCDIO_CFLAGS=$pkg_cv_LIBCDIO_CFLAGS ++ LIBCDIO_LIBS=$pkg_cv_LIBCDIO_LIBS ++ { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5 ++$as_echo "yes" >&6; } ++ have_libcdio=yes + +- for element in ffmpeg stream_out_switcher; do +- eval "CPPFLAGS_${element}="'"$'"{CPPFLAGS_${element}} -I${real_ffmpeg_tree}"'"' +- am_modules_with_cppflags="${am_modules_with_cppflags} ${element}" +- done ++$as_echo "#define HAVE_LIBCDIO /**/" >>confdefs.h + +- else +- { echo "$as_me:$LINENO: result: no" >&5 +-echo "${ECHO_T}no" >&6; } +- { { echo "$as_me:$LINENO: error: cannot find libpostproc.a in ${real_ffmpeg_tree}/libavcodec/libpostproc/. Make sure you configured ffmpeg with --enable-pp" >&5 +-echo "$as_me: error: cannot find libpostproc.a in ${real_ffmpeg_tree}/libavcodec/libpostproc/. Make sure you configured ffmpeg with --enable-pp" >&2;} +- { (exit 1); exit 1; }; } +- fi +- fi +- { echo "$as_me:$LINENO: result: ${real_ffmpeg_tree}/libavcodec/libavcodec.a" >&5 +-echo "${ECHO_T}${real_ffmpeg_tree}/libavcodec/libavcodec.a" >&6; } ++fi + +- if fgrep -s "CONFIG_ZLIB=yes" "${real_ffmpeg_tree}/config.mak"; then +- if test "${with_ffmpeg_zlib}" != "yes"; then + +- for element in ffmpeg; do +- eval "LDFLAGS_${element}="'"'"-lz "'$'"{LDFLAGS_${element}} "'"' +- am_modules_with_ldflags="${am_modules_with_ldflags} ${element}" +- done ++pkg_failed=no ++{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for VCDINFO" >&5 ++$as_echo_n "checking for VCDINFO... " >&6; } + +- fi +- fi +- if fgrep -s "CONFIG_MP3LAME=yes" "${real_ffmpeg_tree}/config.mak"; then +- if test "${with_ffmpeg_mp3lame}" != "yes"; then ++if test -n "$PKG_CONFIG"; then ++ if test -n "$VCDINFO_CFLAGS"; then ++ pkg_cv_VCDINFO_CFLAGS="$VCDINFO_CFLAGS" ++ else ++ if test -n "$PKG_CONFIG" && \ ++ { { $as_echo "$as_me:${as_lineno-$LINENO}: \$PKG_CONFIG --exists --print-errors \"libvcdinfo >= 0.7.21\""; } >&5 ++ ($PKG_CONFIG --exists --print-errors "libvcdinfo >= 0.7.21") 2>&5 ++ ac_status=$? ++ $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 ++ test $ac_status = 0; }; then ++ pkg_cv_VCDINFO_CFLAGS=`$PKG_CONFIG --cflags "libvcdinfo >= 0.7.21" 2>/dev/null` ++else ++ pkg_failed=yes ++fi ++ fi ++else ++ pkg_failed=untried ++fi ++if test -n "$PKG_CONFIG"; then ++ if test -n "$VCDINFO_LIBS"; then ++ pkg_cv_VCDINFO_LIBS="$VCDINFO_LIBS" ++ else ++ if test -n "$PKG_CONFIG" && \ ++ { { $as_echo "$as_me:${as_lineno-$LINENO}: \$PKG_CONFIG --exists --print-errors \"libvcdinfo >= 0.7.21\""; } >&5 ++ ($PKG_CONFIG --exists --print-errors "libvcdinfo >= 0.7.21") 2>&5 ++ ac_status=$? ++ $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 ++ test $ac_status = 0; }; then ++ pkg_cv_VCDINFO_LIBS=`$PKG_CONFIG --libs "libvcdinfo >= 0.7.21" 2>/dev/null` ++else ++ pkg_failed=yes ++fi ++ fi ++else ++ pkg_failed=untried ++fi + +- for element in ffmpeg; do +- eval "LDFLAGS_${element}="'"'"-lmp3lame "'$'"{LDFLAGS_${element}} "'"' +- am_modules_with_ldflags="${am_modules_with_ldflags} ${element}" +- done + +- fi +- fi +- if fgrep -s "CONFIG_FAAC=yes" "${real_ffmpeg_tree}/config.mak"; then +- if test "${with_ffmpeg_faac}" != "yes"; then + +- for element in ffmpeg; do +- eval "LDFLAGS_${element}="'"'"-lfaac "'$'"{LDFLAGS_${element}} "'"' +- am_modules_with_ldflags="${am_modules_with_ldflags} ${element}" +- done ++if test $pkg_failed = yes; then + +- fi +- fi +- if fgrep -s "CONFIG_DTS=yes" "${real_ffmpeg_tree}/config.mak"; then +- if test "${with_ffmpeg_dts}" != "yes"; then +- LDFLAGS="${LDFLAGS_save} ${LDFLAGS_ffmpeg}" +- { echo "$as_me:$LINENO: checking for dts_free in -ldts_pic" >&5 +-echo $ECHO_N "checking for dts_free in -ldts_pic... $ECHO_C" >&6; } +-if test "${ac_cv_lib_dts_pic_dts_free+set}" = set; then +- echo $ECHO_N "(cached) $ECHO_C" >&6 ++if $PKG_CONFIG --atleast-pkgconfig-version 0.20; then ++ _pkg_short_errors_supported=yes + else +- ac_check_lib_save_LIBS=$LIBS +-LIBS="-ldts_pic $LIBS" +-cat >conftest.$ac_ext <<_ACEOF +-/* confdefs.h. */ +-_ACEOF +-cat confdefs.h >>conftest.$ac_ext +-cat >>conftest.$ac_ext <<_ACEOF +-/* end confdefs.h. */ ++ _pkg_short_errors_supported=no ++fi ++ if test $_pkg_short_errors_supported = yes; then ++ VCDINFO_PKG_ERRORS=`$PKG_CONFIG --short-errors --errors-to-stdout --print-errors "libvcdinfo >= 0.7.21"` ++ else ++ VCDINFO_PKG_ERRORS=`$PKG_CONFIG --errors-to-stdout --print-errors "libvcdinfo >= 0.7.21"` ++ fi ++ # Put the nasty error message in config.log where it belongs ++ echo "$VCDINFO_PKG_ERRORS" >&5 + +-/* Override any GCC internal prototype to avoid an error. +- Use char because int might match the return type of a GCC +- builtin and then its argument prototype would still apply. */ +-#ifdef __cplusplus +-extern "C" +-#endif +-char dts_free (); +-int +-main () +-{ +-return dts_free (); +- ; +- return 0; +-} +-_ACEOF +-rm -f conftest.$ac_objext conftest$ac_exeext +-if { (ac_try="$ac_link" +-case "(($ac_try" in +- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; +- *) ac_try_echo=$ac_try;; +-esac +-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 +- (eval "$ac_link") 2>conftest.er1 +- ac_status=$? +- grep -v '^ *+' conftest.er1 >conftest.err +- rm -f conftest.er1 +- cat conftest.err >&5 +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); } && { +- test -z "$ac_c_werror_flag" || +- test ! -s conftest.err +- } && test -s conftest$ac_exeext && +- $as_test_x conftest$ac_exeext; then +- ac_cv_lib_dts_pic_dts_free=yes ++ { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 ++$as_echo "no" >&6; } ++ { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: VCD information library not found" >&5 ++$as_echo "$as_me: WARNING: VCD information library not found" >&2;} ++elif test $pkg_failed = untried; then ++ { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: VCD information library not found" >&5 ++$as_echo "$as_me: WARNING: VCD information library not found" >&2;} + else +- echo "$as_me: failed program was:" >&5 +-sed 's/^/| /' conftest.$ac_ext >&5 ++ VCDINFO_CFLAGS=$pkg_cv_VCDINFO_CFLAGS ++ VCDINFO_LIBS=$pkg_cv_VCDINFO_LIBS ++ { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5 ++$as_echo "yes" >&6; } ++ have_libvcdinfo=yes ++ ++$as_echo "#define HAVE_VCDINFO /**/" >>confdefs.h + +- ac_cv_lib_dts_pic_dts_free=no ++fi + fi + +-rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ +- conftest$ac_exeext conftest.$ac_ext +-LIBS=$ac_check_lib_save_LIBS ++# Check whether --enable-cddax was given. ++if test "${enable_cddax+set}" = set; then : ++ enableval=$enable_cddax; + fi +-{ echo "$as_me:$LINENO: result: $ac_cv_lib_dts_pic_dts_free" >&5 +-echo "${ECHO_T}$ac_cv_lib_dts_pic_dts_free" >&6; } +-if test $ac_cv_lib_dts_pic_dts_free = yes; then + +- for element in ffmpeg; do +- eval "LDFLAGS_${element}="'"'"-ldts_pic "'$'"{LDFLAGS_${element}} "'"' +- am_modules_with_ldflags="${am_modules_with_ldflags} ${element}" +- done + +-else ++# Check whether --enable-libcddb was given. ++if test "${enable_libcddb+set}" = set; then : ++ enableval=$enable_libcddb; ++fi + +- for element in ffmpeg; do +- eval "LDFLAGS_${element}="'"'"-ldts "'$'"{LDFLAGS_${element}} "'"' +- am_modules_with_ldflags="${am_modules_with_ldflags} ${element}" +- done + +-fi ++if test "${enable_cddax}" = "yes" ++then ++ if test "$have_libcdio" = "yes" ++ then + +- LDFLAGS="${LDFLAGS_save}" +- fi +- fi +- if fgrep -s "CONFIG_VORBIS=yes" "${real_ffmpeg_tree}/config.mak"; then ++$as_echo "#define HAVE_CDDAX /**/" >>confdefs.h + +- for element in ffmpeg; do +- eval "LDFLAGS_${element}="'"'"-lvorbis -lvorbisenc "'$'"{LDFLAGS_${element}} "'"' ++ ++ for element in cddax; do ++ eval "LDFLAGS_${element}="'"'"$LIBCDIO_LIBS "'$'"{LDFLAGS_${element}} "'"' + am_modules_with_ldflags="${am_modules_with_ldflags} ${element}" + done + +- fi +- if fgrep -s "CONFIG_FAAD=yes" "${real_ffmpeg_tree}/config.mak"; then + +- for element in ffmpeg; do +- eval "LDFLAGS_${element}="'"'"-lfaad "'$'"{LDFLAGS_${element}} "'"' +- am_modules_with_ldflags="${am_modules_with_ldflags} ${element}" ++ for element in cddax; do ++ eval "CFLAGS_${element}="'"$'"{CFLAGS_${element}} $LIBCDIO_CFLAGS"'"' ++ am_modules_with_cflags="${am_modules_with_cflags} ${element}" + done + +- fi +- if fgrep -s "CONFIG_XVID=yes" "${real_ffmpeg_tree}/config.mak"; then + +- for element in ffmpeg; do +- eval "LDFLAGS_${element}="'"'"-lxvidcore "'$'"{LDFLAGS_${element}} "'"' +- am_modules_with_ldflags="${am_modules_with_ldflags} ${element}" +- done ++ PLUGINS="${PLUGINS} cddax" + +- fi + ++pkg_failed=no ++{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for LIBCDIO_PARANOIA" >&5 ++$as_echo_n "checking for LIBCDIO_PARANOIA... " >&6; } + +- BUILTINS="${BUILTINS} ffmpeg" ++if test -n "$PKG_CONFIG"; then ++ if test -n "$LIBCDIO_PARANOIA_CFLAGS"; then ++ pkg_cv_LIBCDIO_PARANOIA_CFLAGS="$LIBCDIO_PARANOIA_CFLAGS" ++ else ++ if test -n "$PKG_CONFIG" && \ ++ { { $as_echo "$as_me:${as_lineno-$LINENO}: \$PKG_CONFIG --exists --print-errors \"libcdio_paranoia >= 0.72\""; } >&5 ++ ($PKG_CONFIG --exists --print-errors "libcdio_paranoia >= 0.72") 2>&5 ++ ac_status=$? ++ $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 ++ test $ac_status = 0; }; then ++ pkg_cv_LIBCDIO_PARANOIA_CFLAGS=`$PKG_CONFIG --cflags "libcdio_paranoia >= 0.72" 2>/dev/null` ++else ++ pkg_failed=yes ++fi ++ fi ++else ++ pkg_failed=untried ++fi ++if test -n "$PKG_CONFIG"; then ++ if test -n "$LIBCDIO_PARANOIA_LIBS"; then ++ pkg_cv_LIBCDIO_PARANOIA_LIBS="$LIBCDIO_PARANOIA_LIBS" ++ else ++ if test -n "$PKG_CONFIG" && \ ++ { { $as_echo "$as_me:${as_lineno-$LINENO}: \$PKG_CONFIG --exists --print-errors \"libcdio_paranoia >= 0.72\""; } >&5 ++ ($PKG_CONFIG --exists --print-errors "libcdio_paranoia >= 0.72") 2>&5 ++ ac_status=$? ++ $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 ++ test $ac_status = 0; }; then ++ pkg_cv_LIBCDIO_PARANOIA_LIBS=`$PKG_CONFIG --libs "libcdio_paranoia >= 0.72" 2>/dev/null` ++else ++ pkg_failed=yes ++fi ++ fi ++else ++ pkg_failed=untried ++fi + +- if test "${enable_sout}" != "no"; then + +- BUILTINS="${BUILTINS} stream_out_switcher" + +- fi ++if test $pkg_failed = yes; then + +- if test -f "${real_ffmpeg_tree}/libavutil/libavutil.a"; then ++if $PKG_CONFIG --atleast-pkgconfig-version 0.20; then ++ _pkg_short_errors_supported=yes ++else ++ _pkg_short_errors_supported=no ++fi ++ if test $_pkg_short_errors_supported = yes; then ++ LIBCDIO_PARANOIA_PKG_ERRORS=`$PKG_CONFIG --short-errors --errors-to-stdout --print-errors "libcdio_paranoia >= 0.72"` ++ else ++ LIBCDIO_PARANOIA_PKG_ERRORS=`$PKG_CONFIG --errors-to-stdout --print-errors "libcdio_paranoia >= 0.72"` ++ fi ++ # Put the nasty error message in config.log where it belongs ++ echo "$LIBCDIO_PARANOIA_PKG_ERRORS" >&5 + +- for element in ffmpeg; do +- eval "LDFLAGS_${element}="'"'"-L${real_ffmpeg_tree}/libavutil ${real_ffmpeg_tree}/libavutil/libavutil.a "'$'"{LDFLAGS_${element}} "'"' ++ { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 ++$as_echo "no" >&6; } ++ { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: CD Paranoia support disabled because no libcdio >= 0.72 found" >&5 ++$as_echo "$as_me: WARNING: CD Paranoia support disabled because no libcdio >= 0.72 found" >&2;} ++elif test $pkg_failed = untried; then ++ { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: CD Paranoia support disabled because no libcdio >= 0.72 found" >&5 ++$as_echo "$as_me: WARNING: CD Paranoia support disabled because no libcdio >= 0.72 found" >&2;} ++else ++ LIBCDIO_PARANOIA_CFLAGS=$pkg_cv_LIBCDIO_PARANOIA_CFLAGS ++ LIBCDIO_PARANOIA_LIBS=$pkg_cv_LIBCDIO_PARANOIA_LIBS ++ { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5 ++$as_echo "yes" >&6; } ++ ++ ++ for element in cddax; do ++ eval "LDFLAGS_${element}="'"'"$LIBCDIO_CDDA_LIBS $LIBCDIO_CDDA_LIBS $LIBCDIO_PARANOIA_LIBS "'$'"{LDFLAGS_${element}} "'"' + am_modules_with_ldflags="${am_modules_with_ldflags} ${element}" + done + ++fi ++ else ++ { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: cddax plugin disabled because ok libcdio library not found or disabled" >&5 ++$as_echo "$as_me: WARNING: cddax plugin disabled because ok libcdio library not found or disabled" >&2;} ++ HAVE_CDDAX=no ++ fi ++ ++ if test "$enable_libcddb" != "no"; then + +- for element in ffmpeg stream_out_switcher; do +- eval "CPPFLAGS_${element}="'"$'"{CPPFLAGS_${element}} -I${real_ffmpeg_tree}/libavutil"'"' +- am_modules_with_cppflags="${am_modules_with_cppflags} ${element}" +- done ++pkg_failed=no ++{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for LIBCDDB" >&5 ++$as_echo_n "checking for LIBCDDB... " >&6; } + +- fi ++if test -n "$PKG_CONFIG"; then ++ if test -n "$LIBCDDB_CFLAGS"; then ++ pkg_cv_LIBCDDB_CFLAGS="$LIBCDDB_CFLAGS" ++ else ++ if test -n "$PKG_CONFIG" && \ ++ { { $as_echo "$as_me:${as_lineno-$LINENO}: \$PKG_CONFIG --exists --print-errors \"libcddb >= 0.9.5\""; } >&5 ++ ($PKG_CONFIG --exists --print-errors "libcddb >= 0.9.5") 2>&5 ++ ac_status=$? ++ $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 ++ test $ac_status = 0; }; then ++ pkg_cv_LIBCDDB_CFLAGS=`$PKG_CONFIG --cflags "libcddb >= 0.9.5" 2>/dev/null` ++else ++ pkg_failed=yes ++fi ++ fi ++else ++ pkg_failed=untried ++fi ++if test -n "$PKG_CONFIG"; then ++ if test -n "$LIBCDDB_LIBS"; then ++ pkg_cv_LIBCDDB_LIBS="$LIBCDDB_LIBS" ++ else ++ if test -n "$PKG_CONFIG" && \ ++ { { $as_echo "$as_me:${as_lineno-$LINENO}: \$PKG_CONFIG --exists --print-errors \"libcddb >= 0.9.5\""; } >&5 ++ ($PKG_CONFIG --exists --print-errors "libcddb >= 0.9.5") 2>&5 ++ ac_status=$? ++ $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 ++ test $ac_status = 0; }; then ++ pkg_cv_LIBCDDB_LIBS=`$PKG_CONFIG --libs "libcddb >= 0.9.5" 2>/dev/null` ++else ++ pkg_failed=yes ++fi ++ fi ++else ++ pkg_failed=untried ++fi + + +- for element in ffmpeg; do +- eval "LDFLAGS_${element}="'"'"-L${real_ffmpeg_tree}/libavcodec ${real_ffmpeg_tree}/libavcodec/libavcodec.a "'$'"{LDFLAGS_${element}} "'"' +- am_modules_with_ldflags="${am_modules_with_ldflags} ${element}" +- done + ++if test $pkg_failed = yes; then + +- for element in ffmpeg stream_out_switcher; do +- eval "CPPFLAGS_${element}="'"$'"{CPPFLAGS_${element}} -I${real_ffmpeg_tree}/libavcodec"'"' +- am_modules_with_cppflags="${am_modules_with_cppflags} ${element}" +- done ++if $PKG_CONFIG --atleast-pkgconfig-version 0.20; then ++ _pkg_short_errors_supported=yes ++else ++ _pkg_short_errors_supported=no ++fi ++ if test $_pkg_short_errors_supported = yes; then ++ LIBCDDB_PKG_ERRORS=`$PKG_CONFIG --short-errors --errors-to-stdout --print-errors "libcddb >= 0.9.5"` ++ else ++ LIBCDDB_PKG_ERRORS=`$PKG_CONFIG --errors-to-stdout --print-errors "libcddb >= 0.9.5"` ++ fi ++ # Put the nasty error message in config.log where it belongs ++ echo "$LIBCDDB_PKG_ERRORS" >&5 + ++ { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 ++$as_echo "no" >&6; } ++ { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: new enough libcddb not found. CDDB access disabled" >&5 ++$as_echo "$as_me: WARNING: new enough libcddb not found. CDDB access disabled" >&2;} ++ HAVE_LIBCDDB=no ++elif test $pkg_failed = untried; then ++ { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: new enough libcddb not found. CDDB access disabled" >&5 ++$as_echo "$as_me: WARNING: new enough libcddb not found. CDDB access disabled" >&2;} ++ HAVE_LIBCDDB=no ++else ++ LIBCDDB_CFLAGS=$pkg_cv_LIBCDDB_CFLAGS ++ LIBCDDB_LIBS=$pkg_cv_LIBCDDB_LIBS ++ { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5 ++$as_echo "yes" >&6; } + +- if test -f "${real_ffmpeg_tree}/libavformat/libavformat.a"; then ++ HAVE_LIBCDDB=yes + +-cat >>confdefs.h <<\_ACEOF +-#define HAVE_LIBAVFORMAT_TREE 1 +-_ACEOF ++$as_echo "#define HAVE_LIBCDDB /**/" >>confdefs.h + + +- for element in ffmpeg; do +- eval "LDFLAGS_${element}="'"'"-L${real_ffmpeg_tree}/libavformat ${real_ffmpeg_tree}/libavformat/libavformat.a "'$'"{LDFLAGS_${element}} "'"' ++ for element in cddax; do ++ eval "LDFLAGS_${element}="'"'"$LIBCDDB_LIBS "'$'"{LDFLAGS_${element}} "'"' + am_modules_with_ldflags="${am_modules_with_ldflags} ${element}" + done + + +- for element in ffmpeg stream_out_switcher; do +- eval "CPPFLAGS_${element}="'"$'"{CPPFLAGS_${element}} -I${real_ffmpeg_tree}/libavformat"'"' +- am_modules_with_cppflags="${am_modules_with_cppflags} ${element}" ++ for element in cddax; do ++ eval "CFLAGS_${element}="'"$'"{CFLAGS_${element}} $LIBCDDB_CFLAGS"'"' ++ am_modules_with_cflags="${am_modules_with_cflags} ${element}" + done + +- fi +-else +- +- +- FFMPEG_PATH="${PATH}" + +-# Check whether --with-ffmpeg-config-path was given. +-if test "${with_ffmpeg_config_path+set}" = set; then +- withval=$with_ffmpeg_config_path; if test "${with_ffmpeg_config_path}" != "no" +- then +- FFMPEG_PATH="${with_ffmpeg_config_path}" +- fi + fi +- +- # Extract the first word of "ffmpeg-config", so it can be a program name with args. +-set dummy ffmpeg-config; ac_word=$2 +-{ echo "$as_me:$LINENO: checking for $ac_word" >&5 +-echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6; } +-if test "${ac_cv_path_FFMPEG_CONFIG+set}" = set; then +- echo $ECHO_N "(cached) $ECHO_C" >&6 +-else +- case $FFMPEG_CONFIG in +- [\\/]* | ?:[\\/]*) +- ac_cv_path_FFMPEG_CONFIG="$FFMPEG_CONFIG" # Let the user override the test with a path. +- ;; +- *) +- as_save_IFS=$IFS; IFS=$PATH_SEPARATOR +-for as_dir in ${FFMPEG_PATH} +-do +- IFS=$as_save_IFS +- test -z "$as_dir" && as_dir=. +- for ac_exec_ext in '' $ac_executable_extensions; do +- if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then +- ac_cv_path_FFMPEG_CONFIG="$as_dir/$ac_word$ac_exec_ext" +- echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 +- break 2 + fi +-done +-done +-IFS=$as_save_IFS + +- test -z "$ac_cv_path_FFMPEG_CONFIG" && ac_cv_path_FFMPEG_CONFIG="no" +- ;; +-esac + fi +-FFMPEG_CONFIG=$ac_cv_path_FFMPEG_CONFIG +-if test -n "$FFMPEG_CONFIG"; then +- { echo "$as_me:$LINENO: result: $FFMPEG_CONFIG" >&5 +-echo "${ECHO_T}$FFMPEG_CONFIG" >&6; } +-else +- { echo "$as_me:$LINENO: result: no" >&5 +-echo "${ECHO_T}no" >&6; } ++ ++# Check whether --enable-vcdx was given. ++if test "${enable_vcdx+set}" = set; then : ++ enableval=$enable_vcdx; + fi + + +- if test "${FFMPEG_CONFIG}" != "no" ++if test "${enable_vcdx}" = "yes" ++then ++ if test "${have_libvcdinfo}" = "yes" + then + ++ for element in vcdx; do ++ eval "LDFLAGS_${element}="'"'"$VCDINFO_LIBS "'$'"{LDFLAGS_${element}} "'"' ++ am_modules_with_ldflags="${am_modules_with_ldflags} ${element}" ++ done + +-for ac_header in ffmpeg/avcodec.h libavcodec/avcodec.h +-do +-as_ac_Header=`echo "ac_cv_header_$ac_header" | $as_tr_sh` +-if { as_var=$as_ac_Header; eval "test \"\${$as_var+set}\" = set"; }; then +- { echo "$as_me:$LINENO: checking for $ac_header" >&5 +-echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6; } +-if { as_var=$as_ac_Header; eval "test \"\${$as_var+set}\" = set"; }; then +- echo $ECHO_N "(cached) $ECHO_C" >&6 +-fi +-ac_res=`eval echo '${'$as_ac_Header'}'` +- { echo "$as_me:$LINENO: result: $ac_res" >&5 +-echo "${ECHO_T}$ac_res" >&6; } +-else +- # Is the header compilable? +-{ echo "$as_me:$LINENO: checking $ac_header usability" >&5 +-echo $ECHO_N "checking $ac_header usability... $ECHO_C" >&6; } +-cat >conftest.$ac_ext <<_ACEOF +-/* confdefs.h. */ +-_ACEOF +-cat confdefs.h >>conftest.$ac_ext +-cat >>conftest.$ac_ext <<_ACEOF +-/* end confdefs.h. */ +-$ac_includes_default +-#include <$ac_header> +-_ACEOF +-rm -f conftest.$ac_objext +-if { (ac_try="$ac_compile" +-case "(($ac_try" in +- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; +- *) ac_try_echo=$ac_try;; +-esac +-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 +- (eval "$ac_compile") 2>conftest.er1 +- ac_status=$? +- grep -v '^ *+' conftest.er1 >conftest.err +- rm -f conftest.er1 +- cat conftest.err >&5 +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); } && { +- test -z "$ac_c_werror_flag" || +- test ! -s conftest.err +- } && test -s conftest.$ac_objext; then +- ac_header_compiler=yes +-else +- echo "$as_me: failed program was:" >&5 +-sed 's/^/| /' conftest.$ac_ext >&5 + +- ac_header_compiler=no +-fi ++ for element in vcdx; do ++ eval "CFLAGS_${element}="'"$'"{CFLAGS_${element}} $VCDINFO_CFLAGS"'"' ++ am_modules_with_cflags="${am_modules_with_cflags} ${element}" ++ done + +-rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext +-{ echo "$as_me:$LINENO: result: $ac_header_compiler" >&5 +-echo "${ECHO_T}$ac_header_compiler" >&6; } ++ else ++ { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: vcdx plugin disabled because ok libvcdinfo library not found or disabled" >&5 ++$as_echo "$as_me: WARNING: vcdx plugin disabled because ok libvcdinfo library not found or disabled" >&2;} ++ HAVE_VCDX=no ++ fi + +-# Is the header present? +-{ echo "$as_me:$LINENO: checking $ac_header presence" >&5 +-echo $ECHO_N "checking $ac_header presence... $ECHO_C" >&6; } +-cat >conftest.$ac_ext <<_ACEOF +-/* confdefs.h. */ +-_ACEOF +-cat confdefs.h >>conftest.$ac_ext +-cat >>conftest.$ac_ext <<_ACEOF +-/* end confdefs.h. */ +-#include <$ac_header> +-_ACEOF +-if { (ac_try="$ac_cpp conftest.$ac_ext" +-case "(($ac_try" in +- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; +- *) ac_try_echo=$ac_try;; +-esac +-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 +- (eval "$ac_cpp conftest.$ac_ext") 2>conftest.er1 ++ ++pkg_failed=no ++{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for LIBCDIO" >&5 ++$as_echo_n "checking for LIBCDIO... " >&6; } ++ ++if test -n "$PKG_CONFIG"; then ++ if test -n "$LIBCDIO_CFLAGS"; then ++ pkg_cv_LIBCDIO_CFLAGS="$LIBCDIO_CFLAGS" ++ else ++ if test -n "$PKG_CONFIG" && \ ++ { { $as_echo "$as_me:${as_lineno-$LINENO}: \$PKG_CONFIG --exists --print-errors \"libiso9660 >= 0.72\""; } >&5 ++ ($PKG_CONFIG --exists --print-errors "libiso9660 >= 0.72") 2>&5 + ac_status=$? +- grep -v '^ *+' conftest.er1 >conftest.err +- rm -f conftest.er1 +- cat conftest.err >&5 +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); } >/dev/null && { +- test -z "$ac_c_preproc_warn_flag$ac_c_werror_flag" || +- test ! -s conftest.err +- }; then +- ac_header_preproc=yes ++ $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 ++ test $ac_status = 0; }; then ++ pkg_cv_LIBCDIO_CFLAGS=`$PKG_CONFIG --cflags "libiso9660 >= 0.72" 2>/dev/null` + else +- echo "$as_me: failed program was:" >&5 +-sed 's/^/| /' conftest.$ac_ext >&5 +- +- ac_header_preproc=no ++ pkg_failed=yes + fi +- +-rm -f conftest.err conftest.$ac_ext +-{ echo "$as_me:$LINENO: result: $ac_header_preproc" >&5 +-echo "${ECHO_T}$ac_header_preproc" >&6; } +- +-# So? What about this header? +-case $ac_header_compiler:$ac_header_preproc:$ac_c_preproc_warn_flag in +- yes:no: ) +- { echo "$as_me:$LINENO: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&5 +-echo "$as_me: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&2;} +- { echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the compiler's result" >&5 +-echo "$as_me: WARNING: $ac_header: proceeding with the compiler's result" >&2;} +- ac_header_preproc=yes +- ;; +- no:yes:* ) +- { echo "$as_me:$LINENO: WARNING: $ac_header: present but cannot be compiled" >&5 +-echo "$as_me: WARNING: $ac_header: present but cannot be compiled" >&2;} +- { echo "$as_me:$LINENO: WARNING: $ac_header: check for missing prerequisite headers?" >&5 +-echo "$as_me: WARNING: $ac_header: check for missing prerequisite headers?" >&2;} +- { echo "$as_me:$LINENO: WARNING: $ac_header: see the Autoconf documentation" >&5 +-echo "$as_me: WARNING: $ac_header: see the Autoconf documentation" >&2;} +- { echo "$as_me:$LINENO: WARNING: $ac_header: section \"Present But Cannot Be Compiled\"" >&5 +-echo "$as_me: WARNING: $ac_header: section \"Present But Cannot Be Compiled\"" >&2;} +- { echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the preprocessor's result" >&5 +-echo "$as_me: WARNING: $ac_header: proceeding with the preprocessor's result" >&2;} +- { echo "$as_me:$LINENO: WARNING: $ac_header: in the future, the compiler will take precedence" >&5 +-echo "$as_me: WARNING: $ac_header: in the future, the compiler will take precedence" >&2;} +- +- ;; +-esac +-{ echo "$as_me:$LINENO: checking for $ac_header" >&5 +-echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6; } +-if { as_var=$as_ac_Header; eval "test \"\${$as_var+set}\" = set"; }; then +- echo $ECHO_N "(cached) $ECHO_C" >&6 ++ fi + else +- eval "$as_ac_Header=\$ac_header_preproc" ++ pkg_failed=untried + fi +-ac_res=`eval echo '${'$as_ac_Header'}'` +- { echo "$as_me:$LINENO: result: $ac_res" >&5 +-echo "${ECHO_T}$ac_res" >&6; } +- ++if test -n "$PKG_CONFIG"; then ++ if test -n "$LIBCDIO_LIBS"; then ++ pkg_cv_LIBCDIO_LIBS="$LIBCDIO_LIBS" ++ else ++ if test -n "$PKG_CONFIG" && \ ++ { { $as_echo "$as_me:${as_lineno-$LINENO}: \$PKG_CONFIG --exists --print-errors \"libiso9660 >= 0.72\""; } >&5 ++ ($PKG_CONFIG --exists --print-errors "libiso9660 >= 0.72") 2>&5 ++ ac_status=$? ++ $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 ++ test $ac_status = 0; }; then ++ pkg_cv_LIBCDIO_LIBS=`$PKG_CONFIG --libs "libiso9660 >= 0.72" 2>/dev/null` ++else ++ pkg_failed=yes + fi +-if test `eval echo '${'$as_ac_Header'}'` = yes; then +- cat >>confdefs.h <<_ACEOF +-#define `echo "HAVE_$ac_header" | $as_tr_cpp` 1 +-_ACEOF +- ++ fi ++else ++ pkg_failed=untried + fi + +-done + + ++if test $pkg_failed = yes; then + +-for ac_header in ffmpeg/avformat.h libavformat/avformat.h +-do +-as_ac_Header=`echo "ac_cv_header_$ac_header" | $as_tr_sh` +-if { as_var=$as_ac_Header; eval "test \"\${$as_var+set}\" = set"; }; then +- { echo "$as_me:$LINENO: checking for $ac_header" >&5 +-echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6; } +-if { as_var=$as_ac_Header; eval "test \"\${$as_var+set}\" = set"; }; then +- echo $ECHO_N "(cached) $ECHO_C" >&6 +-fi +-ac_res=`eval echo '${'$as_ac_Header'}'` +- { echo "$as_me:$LINENO: result: $ac_res" >&5 +-echo "${ECHO_T}$ac_res" >&6; } ++if $PKG_CONFIG --atleast-pkgconfig-version 0.20; then ++ _pkg_short_errors_supported=yes + else +- # Is the header compilable? +-{ echo "$as_me:$LINENO: checking $ac_header usability" >&5 +-echo $ECHO_N "checking $ac_header usability... $ECHO_C" >&6; } +-cat >conftest.$ac_ext <<_ACEOF +-/* confdefs.h. */ +-_ACEOF +-cat confdefs.h >>conftest.$ac_ext +-cat >>conftest.$ac_ext <<_ACEOF +-/* end confdefs.h. */ +-$ac_includes_default +-#include <$ac_header> +-_ACEOF +-rm -f conftest.$ac_objext +-if { (ac_try="$ac_compile" +-case "(($ac_try" in +- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; +- *) ac_try_echo=$ac_try;; +-esac +-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 +- (eval "$ac_compile") 2>conftest.er1 +- ac_status=$? +- grep -v '^ *+' conftest.er1 >conftest.err +- rm -f conftest.er1 +- cat conftest.err >&5 +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); } && { +- test -z "$ac_c_werror_flag" || +- test ! -s conftest.err +- } && test -s conftest.$ac_objext; then +- ac_header_compiler=yes ++ _pkg_short_errors_supported=no ++fi ++ if test $_pkg_short_errors_supported = yes; then ++ LIBCDIO_PKG_ERRORS=`$PKG_CONFIG --short-errors --errors-to-stdout --print-errors "libiso9660 >= 0.72"` ++ else ++ LIBCDIO_PKG_ERRORS=`$PKG_CONFIG --errors-to-stdout --print-errors "libiso9660 >= 0.72"` ++ fi ++ # Put the nasty error message in config.log where it belongs ++ echo "$LIBCDIO_PKG_ERRORS" >&5 ++ ++ { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 ++$as_echo "no" >&6; } ++ { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: vcdx plugin disabled because ok libiso9660 library not found" >&5 ++$as_echo "$as_me: WARNING: vcdx plugin disabled because ok libiso9660 library not found" >&2;} ++ HAVE_VCDX=no ++elif test $pkg_failed = untried; then ++ { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: vcdx plugin disabled because ok libiso9660 library not found" >&5 ++$as_echo "$as_me: WARNING: vcdx plugin disabled because ok libiso9660 library not found" >&2;} ++ HAVE_VCDX=no + else +- echo "$as_me: failed program was:" >&5 +-sed 's/^/| /' conftest.$ac_ext >&5 ++ LIBCDIO_CFLAGS=$pkg_cv_LIBCDIO_CFLAGS ++ LIBCDIO_LIBS=$pkg_cv_LIBCDIO_LIBS ++ { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5 ++$as_echo "yes" >&6; } + +- ac_header_compiler=no +-fi ++ for element in vcdx; do ++ eval "LDFLAGS_${element}="'"'"$LIBISO9660_LIBS "'$'"{LDFLAGS_${element}} "'"' ++ am_modules_with_ldflags="${am_modules_with_ldflags} ${element}" ++ done + +-rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext +-{ echo "$as_me:$LINENO: result: $ac_header_compiler" >&5 +-echo "${ECHO_T}$ac_header_compiler" >&6; } + +-# Is the header present? +-{ echo "$as_me:$LINENO: checking $ac_header presence" >&5 +-echo $ECHO_N "checking $ac_header presence... $ECHO_C" >&6; } +-cat >conftest.$ac_ext <<_ACEOF +-/* confdefs.h. */ +-_ACEOF +-cat confdefs.h >>conftest.$ac_ext +-cat >>conftest.$ac_ext <<_ACEOF +-/* end confdefs.h. */ +-#include <$ac_header> +-_ACEOF +-if { (ac_try="$ac_cpp conftest.$ac_ext" +-case "(($ac_try" in +- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; +- *) ac_try_echo=$ac_try;; +-esac +-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 +- (eval "$ac_cpp conftest.$ac_ext") 2>conftest.er1 +- ac_status=$? +- grep -v '^ *+' conftest.er1 >conftest.err +- rm -f conftest.er1 +- cat conftest.err >&5 +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); } >/dev/null && { +- test -z "$ac_c_preproc_warn_flag$ac_c_werror_flag" || +- test ! -s conftest.err +- }; then +- ac_header_preproc=yes +-else +- echo "$as_me: failed program was:" >&5 +-sed 's/^/| /' conftest.$ac_ext >&5 ++ for element in vcdx; do ++ eval "CFLAGS_${element}="'"$'"{CFLAGS_${element}} $LIBISO9660_CFLAGS"'"' ++ am_modules_with_cflags="${am_modules_with_cflags} ${element}" ++ done + +- ac_header_preproc=no + fi + +-rm -f conftest.err conftest.$ac_ext +-{ echo "$as_me:$LINENO: result: $ac_header_preproc" >&5 +-echo "${ECHO_T}$ac_header_preproc" >&6; } ++ if test "$have_libvcdinfo" = "yes" ++ then + +-# So? What about this header? +-case $ac_header_compiler:$ac_header_preproc:$ac_c_preproc_warn_flag in +- yes:no: ) +- { echo "$as_me:$LINENO: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&5 +-echo "$as_me: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&2;} +- { echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the compiler's result" >&5 +-echo "$as_me: WARNING: $ac_header: proceeding with the compiler's result" >&2;} +- ac_header_preproc=yes +- ;; +- no:yes:* ) +- { echo "$as_me:$LINENO: WARNING: $ac_header: present but cannot be compiled" >&5 +-echo "$as_me: WARNING: $ac_header: present but cannot be compiled" >&2;} +- { echo "$as_me:$LINENO: WARNING: $ac_header: check for missing prerequisite headers?" >&5 +-echo "$as_me: WARNING: $ac_header: check for missing prerequisite headers?" >&2;} +- { echo "$as_me:$LINENO: WARNING: $ac_header: see the Autoconf documentation" >&5 +-echo "$as_me: WARNING: $ac_header: see the Autoconf documentation" >&2;} +- { echo "$as_me:$LINENO: WARNING: $ac_header: section \"Present But Cannot Be Compiled\"" >&5 +-echo "$as_me: WARNING: $ac_header: section \"Present But Cannot Be Compiled\"" >&2;} +- { echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the preprocessor's result" >&5 +-echo "$as_me: WARNING: $ac_header: proceeding with the preprocessor's result" >&2;} +- { echo "$as_me:$LINENO: WARNING: $ac_header: in the future, the compiler will take precedence" >&5 +-echo "$as_me: WARNING: $ac_header: in the future, the compiler will take precedence" >&2;} ++$as_echo "#define HAVE_VCDX /**/" >>confdefs.h + +- ;; +-esac +-{ echo "$as_me:$LINENO: checking for $ac_header" >&5 +-echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6; } +-if { as_var=$as_ac_Header; eval "test \"\${$as_var+set}\" = set"; }; then +- echo $ECHO_N "(cached) $ECHO_C" >&6 +-else +- eval "$as_ac_Header=\$ac_header_preproc" +-fi +-ac_res=`eval echo '${'$as_ac_Header'}'` +- { echo "$as_me:$LINENO: result: $ac_res" >&5 +-echo "${ECHO_T}$ac_res" >&6; } + +-fi +-if test `eval echo '${'$as_ac_Header'}'` = yes; then +- cat >>confdefs.h <<_ACEOF +-#define `echo "HAVE_$ac_header" | $as_tr_cpp` 1 +-_ACEOF ++ for element in vcdx; do ++ eval "LDFLAGS_${element}="'"'"$VCDINFO_LIBS "'$'"{LDFLAGS_${element}} "'"' ++ am_modules_with_ldflags="${am_modules_with_ldflags} ${element}" ++ done + +-fi + +-done ++ for element in vcdx; do ++ eval "CFLAGS_${element}="'"$'"{CFLAGS_${element}} $VCDINFO_CFLAGS"'"' ++ am_modules_with_cflags="${am_modules_with_cflags} ${element}" ++ done + + ++ PLUGINS="${PLUGINS} vcdx" + +-for ac_header in ffmpeg/avutil.h libavutil/avutil.h +-do +-as_ac_Header=`echo "ac_cv_header_$ac_header" | $as_tr_sh` +-if { as_var=$as_ac_Header; eval "test \"\${$as_var+set}\" = set"; }; then +- { echo "$as_me:$LINENO: checking for $ac_header" >&5 +-echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6; } +-if { as_var=$as_ac_Header; eval "test \"\${$as_var+set}\" = set"; }; then +- echo $ECHO_N "(cached) $ECHO_C" >&6 ++ else ++ { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: vcdx plugin disabled because ok libvcdinfo library not found" >&5 ++$as_echo "$as_me: WARNING: vcdx plugin disabled because ok libvcdinfo library not found" >&2;} ++ HAVE_VCDX=no ++ fi + fi +-ac_res=`eval echo '${'$as_ac_Header'}'` +- { echo "$as_me:$LINENO: result: $ac_res" >&5 +-echo "${ECHO_T}$ac_res" >&6; } +-else +- # Is the header compilable? +-{ echo "$as_me:$LINENO: checking $ac_header usability" >&5 +-echo $ECHO_N "checking $ac_header usability... $ECHO_C" >&6; } +-cat >conftest.$ac_ext <<_ACEOF +-/* confdefs.h. */ +-_ACEOF +-cat confdefs.h >>conftest.$ac_ext +-cat >>conftest.$ac_ext <<_ACEOF +-/* end confdefs.h. */ +-$ac_includes_default +-#include <$ac_header> +-_ACEOF +-rm -f conftest.$ac_objext +-if { (ac_try="$ac_compile" +-case "(($ac_try" in +- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; +- *) ac_try_echo=$ac_try;; +-esac +-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 +- (eval "$ac_compile") 2>conftest.er1 +- ac_status=$? +- grep -v '^ *+' conftest.er1 >conftest.err +- rm -f conftest.er1 +- cat conftest.err >&5 +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); } && { +- test -z "$ac_c_werror_flag" || +- test ! -s conftest.err +- } && test -s conftest.$ac_objext; then +- ac_header_compiler=yes +-else +- echo "$as_me: failed program was:" >&5 +-sed 's/^/| /' conftest.$ac_ext >&5 + +- ac_header_compiler=no ++# Check whether --enable-cdda was given. ++if test "${enable_cdda+set}" = set; then : ++ enableval=$enable_cdda; + fi + +-rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext +-{ echo "$as_me:$LINENO: result: $ac_header_compiler" >&5 +-echo "${ECHO_T}$ac_header_compiler" >&6; } + +-# Is the header present? +-{ echo "$as_me:$LINENO: checking $ac_header presence" >&5 +-echo $ECHO_N "checking $ac_header presence... $ECHO_C" >&6; } +-cat >conftest.$ac_ext <<_ACEOF +-/* confdefs.h. */ +-_ACEOF +-cat confdefs.h >>conftest.$ac_ext +-cat >>conftest.$ac_ext <<_ACEOF ++# Check whether --enable-vcd was given. ++if test "${enable_vcd+set}" = set; then : ++ enableval=$enable_vcd; ++fi ++ ++ ++if test "${enable_vcd}" != "no" ++then ++ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for cdrom_msf0 in linux/cdrom.h" >&5 ++$as_echo_n "checking for cdrom_msf0 in linux/cdrom.h... " >&6; } ++ cat confdefs.h - <<_ACEOF >conftest.$ac_ext + /* end confdefs.h. */ +-#include <$ac_header> ++#include ++ + _ACEOF +-if { (ac_try="$ac_cpp conftest.$ac_ext" +-case "(($ac_try" in +- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; +- *) ac_try_echo=$ac_try;; +-esac +-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 +- (eval "$ac_cpp conftest.$ac_ext") 2>conftest.er1 +- ac_status=$? +- grep -v '^ *+' conftest.er1 >conftest.err +- rm -f conftest.er1 +- cat conftest.err >&5 +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); } >/dev/null && { +- test -z "$ac_c_preproc_warn_flag$ac_c_werror_flag" || +- test ! -s conftest.err +- }; then +- ac_header_preproc=yes +-else +- echo "$as_me: failed program was:" >&5 +-sed 's/^/| /' conftest.$ac_ext >&5 ++if (eval "$ac_cpp conftest.$ac_ext") 2>&5 | ++ $EGREP "cdrom_msf0" >/dev/null 2>&1; then : + +- ac_header_preproc=no +-fi ++ { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5 ++$as_echo "yes" >&6; } + +-rm -f conftest.err conftest.$ac_ext +-{ echo "$as_me:$LINENO: result: $ac_header_preproc" >&5 +-echo "${ECHO_T}$ac_header_preproc" >&6; } ++ PLUGINS="${PLUGINS} vcd cdda" + +-# So? What about this header? +-case $ac_header_compiler:$ac_header_preproc:$ac_c_preproc_warn_flag in +- yes:no: ) +- { echo "$as_me:$LINENO: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&5 +-echo "$as_me: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&2;} +- { echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the compiler's result" >&5 +-echo "$as_me: WARNING: $ac_header: proceeding with the compiler's result" >&2;} +- ac_header_preproc=yes +- ;; +- no:yes:* ) +- { echo "$as_me:$LINENO: WARNING: $ac_header: present but cannot be compiled" >&5 +-echo "$as_me: WARNING: $ac_header: present but cannot be compiled" >&2;} +- { echo "$as_me:$LINENO: WARNING: $ac_header: check for missing prerequisite headers?" >&5 +-echo "$as_me: WARNING: $ac_header: check for missing prerequisite headers?" >&2;} +- { echo "$as_me:$LINENO: WARNING: $ac_header: see the Autoconf documentation" >&5 +-echo "$as_me: WARNING: $ac_header: see the Autoconf documentation" >&2;} +- { echo "$as_me:$LINENO: WARNING: $ac_header: section \"Present But Cannot Be Compiled\"" >&5 +-echo "$as_me: WARNING: $ac_header: section \"Present But Cannot Be Compiled\"" >&2;} +- { echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the preprocessor's result" >&5 +-echo "$as_me: WARNING: $ac_header: proceeding with the preprocessor's result" >&2;} +- { echo "$as_me:$LINENO: WARNING: $ac_header: in the future, the compiler will take precedence" >&5 +-echo "$as_me: WARNING: $ac_header: in the future, the compiler will take precedence" >&2;} + +- ;; +-esac +-{ echo "$as_me:$LINENO: checking for $ac_header" >&5 +-echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6; } +-if { as_var=$as_ac_Header; eval "test \"\${$as_var+set}\" = set"; }; then +- echo $ECHO_N "(cached) $ECHO_C" >&6 + else +- eval "$as_ac_Header=\$ac_header_preproc" +-fi +-ac_res=`eval echo '${'$as_ac_Header'}'` +- { echo "$as_me:$LINENO: result: $ac_res" >&5 +-echo "${ECHO_T}$ac_res" >&6; } ++ ++ { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 ++$as_echo "no" >&6; } + + fi +-if test `eval echo '${'$as_ac_Header'}'` = yes; then +- cat >>confdefs.h <<_ACEOF +-#define `echo "HAVE_$ac_header" | $as_tr_cpp` 1 ++rm -f conftest* ++ ++ ++ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for scsireq in sys/scsiio.h" >&5 ++$as_echo_n "checking for scsireq in sys/scsiio.h... " >&6; } ++ cat confdefs.h - <<_ACEOF >conftest.$ac_ext ++/* end confdefs.h. */ ++#include ++ + _ACEOF ++if (eval "$ac_cpp conftest.$ac_ext") 2>&5 | ++ $EGREP "scsireq" >/dev/null 2>&1; then : + +-fi ++ { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5 ++$as_echo "yes" >&6; } + +-done ++ PLUGINS="${PLUGINS} vcd cdda" + + ++$as_echo "#define HAVE_SCSIREQ_IN_SYS_SCSIIO_H 1" >>confdefs.h ++ + +-for ac_header in postproc/postprocess.h libpostproc/postprocess.h. +-do +-as_ac_Header=`echo "ac_cv_header_$ac_header" | $as_tr_sh` +-if { as_var=$as_ac_Header; eval "test \"\${$as_var+set}\" = set"; }; then +- { echo "$as_me:$LINENO: checking for $ac_header" >&5 +-echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6; } +-if { as_var=$as_ac_Header; eval "test \"\${$as_var+set}\" = set"; }; then +- echo $ECHO_N "(cached) $ECHO_C" >&6 +-fi +-ac_res=`eval echo '${'$as_ac_Header'}'` +- { echo "$as_me:$LINENO: result: $ac_res" >&5 +-echo "${ECHO_T}$ac_res" >&6; } +-else +- # Is the header compilable? +-{ echo "$as_me:$LINENO: checking $ac_header usability" >&5 +-echo $ECHO_N "checking $ac_header usability... $ECHO_C" >&6; } +-cat >conftest.$ac_ext <<_ACEOF +-/* confdefs.h. */ +-_ACEOF +-cat confdefs.h >>conftest.$ac_ext +-cat >>conftest.$ac_ext <<_ACEOF +-/* end confdefs.h. */ +-$ac_includes_default +-#include <$ac_header> +-_ACEOF +-rm -f conftest.$ac_objext +-if { (ac_try="$ac_compile" +-case "(($ac_try" in +- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; +- *) ac_try_echo=$ac_try;; +-esac +-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 +- (eval "$ac_compile") 2>conftest.er1 +- ac_status=$? +- grep -v '^ *+' conftest.er1 >conftest.err +- rm -f conftest.er1 +- cat conftest.err >&5 +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); } && { +- test -z "$ac_c_werror_flag" || +- test ! -s conftest.err +- } && test -s conftest.$ac_objext; then +- ac_header_compiler=yes + else +- echo "$as_me: failed program was:" >&5 +-sed 's/^/| /' conftest.$ac_ext >&5 + +- ac_header_compiler=no ++ { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 ++$as_echo "no" >&6; } ++ + fi ++rm -f conftest* + +-rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext +-{ echo "$as_me:$LINENO: result: $ac_header_compiler" >&5 +-echo "${ECHO_T}$ac_header_compiler" >&6; } + +-# Is the header present? +-{ echo "$as_me:$LINENO: checking $ac_header presence" >&5 +-echo $ECHO_N "checking $ac_header presence... $ECHO_C" >&6; } +-cat >conftest.$ac_ext <<_ACEOF +-/* confdefs.h. */ +-_ACEOF +-cat confdefs.h >>conftest.$ac_ext +-cat >>conftest.$ac_ext <<_ACEOF ++ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for ioc_toc_header in sys/cdio.h" >&5 ++$as_echo_n "checking for ioc_toc_header in sys/cdio.h... " >&6; } ++ cat confdefs.h - <<_ACEOF >conftest.$ac_ext + /* end confdefs.h. */ +-#include <$ac_header> +-_ACEOF +-if { (ac_try="$ac_cpp conftest.$ac_ext" +-case "(($ac_try" in +- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; +- *) ac_try_echo=$ac_try;; +-esac +-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 +- (eval "$ac_cpp conftest.$ac_ext") 2>conftest.er1 +- ac_status=$? +- grep -v '^ *+' conftest.er1 >conftest.err +- rm -f conftest.er1 +- cat conftest.err >&5 +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); } >/dev/null && { +- test -z "$ac_c_preproc_warn_flag$ac_c_werror_flag" || +- test ! -s conftest.err +- }; then +- ac_header_preproc=yes +-else +- echo "$as_me: failed program was:" >&5 +-sed 's/^/| /' conftest.$ac_ext >&5 ++#include + +- ac_header_preproc=no +-fi ++_ACEOF ++if (eval "$ac_cpp conftest.$ac_ext") 2>&5 | ++ $EGREP "ioc_toc_header " >/dev/null 2>&1; then : + +-rm -f conftest.err conftest.$ac_ext +-{ echo "$as_me:$LINENO: result: $ac_header_preproc" >&5 +-echo "${ECHO_T}$ac_header_preproc" >&6; } ++ { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5 ++$as_echo "yes" >&6; } ++ ++ PLUGINS="${PLUGINS} vcd cdda" ++ ++ ++$as_echo "#define HAVE_IOC_TOC_HEADER_IN_SYS_CDIO_H 1" >>confdefs.h + +-# So? What about this header? +-case $ac_header_compiler:$ac_header_preproc:$ac_c_preproc_warn_flag in +- yes:no: ) +- { echo "$as_me:$LINENO: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&5 +-echo "$as_me: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&2;} +- { echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the compiler's result" >&5 +-echo "$as_me: WARNING: $ac_header: proceeding with the compiler's result" >&2;} +- ac_header_preproc=yes +- ;; +- no:yes:* ) +- { echo "$as_me:$LINENO: WARNING: $ac_header: present but cannot be compiled" >&5 +-echo "$as_me: WARNING: $ac_header: present but cannot be compiled" >&2;} +- { echo "$as_me:$LINENO: WARNING: $ac_header: check for missing prerequisite headers?" >&5 +-echo "$as_me: WARNING: $ac_header: check for missing prerequisite headers?" >&2;} +- { echo "$as_me:$LINENO: WARNING: $ac_header: see the Autoconf documentation" >&5 +-echo "$as_me: WARNING: $ac_header: see the Autoconf documentation" >&2;} +- { echo "$as_me:$LINENO: WARNING: $ac_header: section \"Present But Cannot Be Compiled\"" >&5 +-echo "$as_me: WARNING: $ac_header: section \"Present But Cannot Be Compiled\"" >&2;} +- { echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the preprocessor's result" >&5 +-echo "$as_me: WARNING: $ac_header: proceeding with the preprocessor's result" >&2;} +- { echo "$as_me:$LINENO: WARNING: $ac_header: in the future, the compiler will take precedence" >&5 +-echo "$as_me: WARNING: $ac_header: in the future, the compiler will take precedence" >&2;} + +- ;; +-esac +-{ echo "$as_me:$LINENO: checking for $ac_header" >&5 +-echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6; } +-if { as_var=$as_ac_Header; eval "test \"\${$as_var+set}\" = set"; }; then +- echo $ECHO_N "(cached) $ECHO_C" >&6 + else +- eval "$as_ac_Header=\$ac_header_preproc" +-fi +-ac_res=`eval echo '${'$as_ac_Header'}'` +- { echo "$as_me:$LINENO: result: $ac_res" >&5 +-echo "${ECHO_T}$ac_res" >&6; } + +-fi +-if test `eval echo '${'$as_ac_Header'}'` = yes; then +- cat >>confdefs.h <<_ACEOF +-#define `echo "HAVE_$ac_header" | $as_tr_cpp` 1 +-_ACEOF ++ { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 ++$as_echo "no" >&6; } + + fi ++rm -f conftest* + +-done + ++ if test "${SYS}" = "bsdi" -o "${SYS}" = "mingw32" ++ then + +- PLUGINS="${PLUGINS} ffmpeg" ++ PLUGINS="${PLUGINS} vcd cdda" + +- if test "${enable_sout}" != "no"; then ++ fi + +- PLUGINS="${PLUGINS} stream_out_switcher" ++ if test "${SYS}" = "darwin" ++ then + +- fi ++ PLUGINS="${PLUGINS} vcd cdda" + +- for element in ffmpeg stream_out_switcher; do +- eval "CFLAGS_${element}="'"$'"{CFLAGS_${element}} `${FFMPEG_CONFIG} --cflags`"'"' +- am_modules_with_cflags="${am_modules_with_cflags} ${element}" ++ ++ for element in vcd vcdx cdda cddax; do ++ eval "LDFLAGS_${element}="'"'"-framework IOKit -framework CoreFoundation "'$'"{LDFLAGS_${element}} "'"' ++ am_modules_with_ldflags="${am_modules_with_ldflags} ${element}" + done + + +- for element in ffmpeg stream_out_switcher; do +- eval "LDFLAGS_${element}="'"'"`${FFMPEG_CONFIG} --plugin-libs avcodec avformat postproc` "'$'"{LDFLAGS_${element}} "'"' ++ for element in vcdx cddax cdda; do ++ eval "LDFLAGS_${element}="'"'"-liconv "'$'"{LDFLAGS_${element}} "'"' + am_modules_with_ldflags="${am_modules_with_ldflags} ${element}" + done + ++ fi + +- else +- ++ if test "$enable_libcddb" != "no"; then + + pkg_failed=no +-{ echo "$as_me:$LINENO: checking for FFMPEG" >&5 +-echo $ECHO_N "checking for FFMPEG... $ECHO_C" >&6; } ++{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for LIBCDDB" >&5 ++$as_echo_n "checking for LIBCDDB... " >&6; } + + if test -n "$PKG_CONFIG"; then +- if test -n "$FFMPEG_CFLAGS"; then +- pkg_cv_FFMPEG_CFLAGS="$FFMPEG_CFLAGS" ++ if test -n "$LIBCDDB_CFLAGS"; then ++ pkg_cv_LIBCDDB_CFLAGS="$LIBCDDB_CFLAGS" + else + if test -n "$PKG_CONFIG" && \ +- { (echo "$as_me:$LINENO: \$PKG_CONFIG --exists --print-errors \"libavcodec, libavformat\"") >&5 +- ($PKG_CONFIG --exists --print-errors "libavcodec, libavformat") 2>&5 ++ { { $as_echo "$as_me:${as_lineno-$LINENO}: \$PKG_CONFIG --exists --print-errors \"libcddb >= 0.9.5\""; } >&5 ++ ($PKG_CONFIG --exists --print-errors "libcddb >= 0.9.5") 2>&5 + ac_status=$? +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); }; then +- pkg_cv_FFMPEG_CFLAGS=`$PKG_CONFIG --cflags "libavcodec, libavformat" 2>/dev/null` ++ $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 ++ test $ac_status = 0; }; then ++ pkg_cv_LIBCDDB_CFLAGS=`$PKG_CONFIG --cflags "libcddb >= 0.9.5" 2>/dev/null` + else + pkg_failed=yes + fi +@@ -45143,16 +31904,16 @@ else + pkg_failed=untried + fi + if test -n "$PKG_CONFIG"; then +- if test -n "$FFMPEG_LIBS"; then +- pkg_cv_FFMPEG_LIBS="$FFMPEG_LIBS" ++ if test -n "$LIBCDDB_LIBS"; then ++ pkg_cv_LIBCDDB_LIBS="$LIBCDDB_LIBS" + else + if test -n "$PKG_CONFIG" && \ +- { (echo "$as_me:$LINENO: \$PKG_CONFIG --exists --print-errors \"libavcodec, libavformat\"") >&5 +- ($PKG_CONFIG --exists --print-errors "libavcodec, libavformat") 2>&5 ++ { { $as_echo "$as_me:${as_lineno-$LINENO}: \$PKG_CONFIG --exists --print-errors \"libcddb >= 0.9.5\""; } >&5 ++ ($PKG_CONFIG --exists --print-errors "libcddb >= 0.9.5") 2>&5 + ac_status=$? +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); }; then +- pkg_cv_FFMPEG_LIBS=`$PKG_CONFIG --libs "libavcodec, libavformat" 2>/dev/null` ++ $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 ++ test $ac_status = 0; }; then ++ pkg_cv_LIBCDDB_LIBS=`$PKG_CONFIG --libs "libcddb >= 0.9.5" 2>/dev/null` + else + pkg_failed=yes + fi +@@ -45171,596 +31932,380 @@ else + _pkg_short_errors_supported=no + fi + if test $_pkg_short_errors_supported = yes; then +- FFMPEG_PKG_ERRORS=`$PKG_CONFIG --short-errors --errors-to-stdout --print-errors "libavcodec, libavformat"` ++ LIBCDDB_PKG_ERRORS=`$PKG_CONFIG --short-errors --errors-to-stdout --print-errors "libcddb >= 0.9.5"` + else +- FFMPEG_PKG_ERRORS=`$PKG_CONFIG --errors-to-stdout --print-errors "libavcodec, libavformat"` ++ LIBCDDB_PKG_ERRORS=`$PKG_CONFIG --errors-to-stdout --print-errors "libcddb >= 0.9.5"` + fi + # Put the nasty error message in config.log where it belongs +- echo "$FFMPEG_PKG_ERRORS" >&5 ++ echo "$LIBCDDB_PKG_ERRORS" >&5 + +- { echo "$as_me:$LINENO: result: no" >&5 +-echo "${ECHO_T}no" >&6; } ++ { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 ++$as_echo "no" >&6; } ++ : ++ { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: new enough libcddb not found. CDDB access disabled" >&5 ++$as_echo "$as_me: WARNING: new enough libcddb not found. CDDB access disabled" >&2;} ++ HAVE_LIBCDDB=no ++elif test $pkg_failed = untried; then ++ : ++ { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: new enough libcddb not found. CDDB access disabled" >&5 ++$as_echo "$as_me: WARNING: new enough libcddb not found. CDDB access disabled" >&2;} ++ HAVE_LIBCDDB=no ++else ++ LIBCDDB_CFLAGS=$pkg_cv_LIBCDDB_CFLAGS ++ LIBCDDB_LIBS=$pkg_cv_LIBCDDB_LIBS ++ { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5 ++$as_echo "yes" >&6; } + ++ HAVE_LIBCDDB=yes + +- CPPFLAGS="${CPPFLAGS_save} ${CPPFLAGS_ffmpeg}" +- LDFLAGS="${LDFLAGS_save} ${LDFLAGS_ffmpeg}" ++$as_echo "#define HAVE_LIBCDDB /**/" >>confdefs.h + + +-for ac_header in ffmpeg/avcodec.h libavcodec/avcodec.h +-do +-as_ac_Header=`echo "ac_cv_header_$ac_header" | $as_tr_sh` +-if { as_var=$as_ac_Header; eval "test \"\${$as_var+set}\" = set"; }; then +- { echo "$as_me:$LINENO: checking for $ac_header" >&5 +-echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6; } +-if { as_var=$as_ac_Header; eval "test \"\${$as_var+set}\" = set"; }; then +- echo $ECHO_N "(cached) $ECHO_C" >&6 +-fi +-ac_res=`eval echo '${'$as_ac_Header'}'` +- { echo "$as_me:$LINENO: result: $ac_res" >&5 +-echo "${ECHO_T}$ac_res" >&6; } +-else +- # Is the header compilable? +-{ echo "$as_me:$LINENO: checking $ac_header usability" >&5 +-echo $ECHO_N "checking $ac_header usability... $ECHO_C" >&6; } +-cat >conftest.$ac_ext <<_ACEOF +-/* confdefs.h. */ +-_ACEOF +-cat confdefs.h >>conftest.$ac_ext +-cat >>conftest.$ac_ext <<_ACEOF +-/* end confdefs.h. */ +-$ac_includes_default +-#include <$ac_header> +-_ACEOF +-rm -f conftest.$ac_objext +-if { (ac_try="$ac_compile" +-case "(($ac_try" in +- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; +- *) ac_try_echo=$ac_try;; +-esac +-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 +- (eval "$ac_compile") 2>conftest.er1 +- ac_status=$? +- grep -v '^ *+' conftest.er1 >conftest.err +- rm -f conftest.er1 +- cat conftest.err >&5 +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); } && { +- test -z "$ac_c_werror_flag" || +- test ! -s conftest.err +- } && test -s conftest.$ac_objext; then +- ac_header_compiler=yes +-else +- echo "$as_me: failed program was:" >&5 +-sed 's/^/| /' conftest.$ac_ext >&5 ++ for element in cdda; do ++ eval "LDFLAGS_${element}="'"'"$LIBCDDB_LIBS "'$'"{LDFLAGS_${element}} "'"' ++ am_modules_with_ldflags="${am_modules_with_ldflags} ${element}" ++ done + +- ac_header_compiler=no +-fi + +-rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext +-{ echo "$as_me:$LINENO: result: $ac_header_compiler" >&5 +-echo "${ECHO_T}$ac_header_compiler" >&6; } ++ for element in cdda; do ++ eval "CFLAGS_${element}="'"$'"{CFLAGS_${element}} $LIBCDDB_CFLAGS"'"' ++ am_modules_with_cflags="${am_modules_with_cflags} ${element}" ++ done + +-# Is the header present? +-{ echo "$as_me:$LINENO: checking $ac_header presence" >&5 +-echo $ECHO_N "checking $ac_header presence... $ECHO_C" >&6; } +-cat >conftest.$ac_ext <<_ACEOF +-/* confdefs.h. */ +-_ACEOF +-cat confdefs.h >>conftest.$ac_ext +-cat >>conftest.$ac_ext <<_ACEOF +-/* end confdefs.h. */ +-#include <$ac_header> +-_ACEOF +-if { (ac_try="$ac_cpp conftest.$ac_ext" +-case "(($ac_try" in +- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; +- *) ac_try_echo=$ac_try;; +-esac +-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 +- (eval "$ac_cpp conftest.$ac_ext") 2>conftest.er1 +- ac_status=$? +- grep -v '^ *+' conftest.er1 >conftest.err +- rm -f conftest.er1 +- cat conftest.err >&5 +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); } >/dev/null && { +- test -z "$ac_c_preproc_warn_flag$ac_c_werror_flag" || +- test ! -s conftest.err +- }; then +- ac_header_preproc=yes +-else +- echo "$as_me: failed program was:" >&5 +-sed 's/^/| /' conftest.$ac_ext >&5 + +- ac_header_preproc=no ++fi ++ fi + fi + +-rm -f conftest.err conftest.$ac_ext +-{ echo "$as_me:$LINENO: result: $ac_header_preproc" >&5 +-echo "${ECHO_T}$ac_header_preproc" >&6; } ++# Check whether --enable-dvb was given. ++if test "${enable_dvb+set}" = set; then : ++ enableval=$enable_dvb; ++fi + +-# So? What about this header? +-case $ac_header_compiler:$ac_header_preproc:$ac_c_preproc_warn_flag in +- yes:no: ) +- { echo "$as_me:$LINENO: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&5 +-echo "$as_me: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&2;} +- { echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the compiler's result" >&5 +-echo "$as_me: WARNING: $ac_header: proceeding with the compiler's result" >&2;} +- ac_header_preproc=yes +- ;; +- no:yes:* ) +- { echo "$as_me:$LINENO: WARNING: $ac_header: present but cannot be compiled" >&5 +-echo "$as_me: WARNING: $ac_header: present but cannot be compiled" >&2;} +- { echo "$as_me:$LINENO: WARNING: $ac_header: check for missing prerequisite headers?" >&5 +-echo "$as_me: WARNING: $ac_header: check for missing prerequisite headers?" >&2;} +- { echo "$as_me:$LINENO: WARNING: $ac_header: see the Autoconf documentation" >&5 +-echo "$as_me: WARNING: $ac_header: see the Autoconf documentation" >&2;} +- { echo "$as_me:$LINENO: WARNING: $ac_header: section \"Present But Cannot Be Compiled\"" >&5 +-echo "$as_me: WARNING: $ac_header: section \"Present But Cannot Be Compiled\"" >&2;} +- { echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the preprocessor's result" >&5 +-echo "$as_me: WARNING: $ac_header: proceeding with the preprocessor's result" >&2;} +- { echo "$as_me:$LINENO: WARNING: $ac_header: in the future, the compiler will take precedence" >&5 +-echo "$as_me: WARNING: $ac_header: in the future, the compiler will take precedence" >&2;} + +- ;; +-esac +-{ echo "$as_me:$LINENO: checking for $ac_header" >&5 +-echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6; } +-if { as_var=$as_ac_Header; eval "test \"\${$as_var+set}\" = set"; }; then +- echo $ECHO_N "(cached) $ECHO_C" >&6 +-else +- eval "$as_ac_Header=\$ac_header_preproc" +-fi +-ac_res=`eval echo '${'$as_ac_Header'}'` +- { echo "$as_me:$LINENO: result: $ac_res" >&5 +-echo "${ECHO_T}$ac_res" >&6; } ++if test "${enable_dvb}" = "yes" ++then + ++# Check whether --with-dvb was given. ++if test "${with_dvb+set}" = set; then : ++ withval=$with_dvb; + fi +-if test `eval echo '${'$as_ac_Header'}'` = yes; then ++ ++ if test "${with_dvb}" != "no" -a -n "${with_dvb}" ++ then ++ ++ for element in dvb; do ++ eval "CFLAGS_${element}="'"$'"{CFLAGS_${element}} -I${with_dvb}/include"'"' ++ am_modules_with_cflags="${am_modules_with_cflags} ${element}" ++ done ++ ++ fi ++ CPPFLAGS="${CPPFLAGS_save} -I${with_dvb}/include" ++ for ac_header in linux/dvb/version.h linux/dvb/frontend.h ++do : ++ as_ac_Header=`$as_echo "ac_cv_header_$ac_header" | $as_tr_sh` ++ac_fn_c_check_header_mongrel "$LINENO" "$ac_header" "$as_ac_Header" "$ac_includes_default" ++if eval test \"x\$"$as_ac_Header"\" = x"yes"; then : + cat >>confdefs.h <<_ACEOF +-#define `echo "HAVE_$ac_header" | $as_tr_cpp` 1 ++#define `$as_echo "HAVE_$ac_header" | $as_tr_cpp` 1 + _ACEOF + +-fi ++ if test -z "${with_dvbpsi_tree}" ++ then + +-done ++ PLUGINS="${PLUGINS} dvb" + ++ else + ++ BUILTINS="${BUILTINS} dvb" ++ ++ fi + +-for ac_header in ffmpeg/avformat.h libavformat/avformat.h +-do +-as_ac_Header=`echo "ac_cv_header_$ac_header" | $as_tr_sh` +-if { as_var=$as_ac_Header; eval "test \"\${$as_var+set}\" = set"; }; then +- { echo "$as_me:$LINENO: checking for $ac_header" >&5 +-echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6; } +-if { as_var=$as_ac_Header; eval "test \"\${$as_var+set}\" = set"; }; then +- echo $ECHO_N "(cached) $ECHO_C" >&6 +-fi +-ac_res=`eval echo '${'$as_ac_Header'}'` +- { echo "$as_me:$LINENO: result: $ac_res" >&5 +-echo "${ECHO_T}$ac_res" >&6; } +-else +- # Is the header compilable? +-{ echo "$as_me:$LINENO: checking $ac_header usability" >&5 +-echo $ECHO_N "checking $ac_header usability... $ECHO_C" >&6; } +-cat >conftest.$ac_ext <<_ACEOF +-/* confdefs.h. */ +-_ACEOF +-cat confdefs.h >>conftest.$ac_ext +-cat >>conftest.$ac_ext <<_ACEOF +-/* end confdefs.h. */ +-$ac_includes_default +-#include <$ac_header> +-_ACEOF +-rm -f conftest.$ac_objext +-if { (ac_try="$ac_compile" +-case "(($ac_try" in +- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; +- *) ac_try_echo=$ac_try;; +-esac +-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 +- (eval "$ac_compile") 2>conftest.er1 +- ac_status=$? +- grep -v '^ *+' conftest.er1 >conftest.err +- rm -f conftest.er1 +- cat conftest.err >&5 +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); } && { +- test -z "$ac_c_werror_flag" || +- test ! -s conftest.err +- } && test -s conftest.$ac_objext; then +- ac_header_compiler=yes + else +- echo "$as_me: failed program was:" >&5 +-sed 's/^/| /' conftest.$ac_ext >&5 ++ { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: linux-dvb headers not found" >&5 ++$as_echo "$as_me: WARNING: linux-dvb headers not found" >&2;} ++fi + +- ac_header_compiler=no ++done ++ ++ CPPFLAGS="${CPPFLAGS_save}" + fi + +-rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext +-{ echo "$as_me:$LINENO: result: $ac_header_compiler" >&5 +-echo "${ECHO_T}$ac_header_compiler" >&6; } ++# Check whether --enable-screen was given. ++if test "${enable_screen+set}" = set; then : ++ enableval=$enable_screen; ++fi + +-# Is the header present? +-{ echo "$as_me:$LINENO: checking $ac_header presence" >&5 +-echo $ECHO_N "checking $ac_header presence... $ECHO_C" >&6; } +-cat >conftest.$ac_ext <<_ACEOF +-/* confdefs.h. */ +-_ACEOF +-cat confdefs.h >>conftest.$ac_ext +-cat >>conftest.$ac_ext <<_ACEOF +-/* end confdefs.h. */ +-#include <$ac_header> ++if test "${enable_screen}" != "no"; then ++ if test "${SYS}" = "darwin"; then ++ for ac_header in ApplicationServices/ApplicationServices.h ++do : ++ ac_fn_c_check_header_mongrel "$LINENO" "ApplicationServices/ApplicationServices.h" "ac_cv_header_ApplicationServices_ApplicationServices_h" "$ac_includes_default" ++if test "x$ac_cv_header_ApplicationServices_ApplicationServices_h" = xyes; then : ++ cat >>confdefs.h <<_ACEOF ++#define HAVE_APPLICATIONSERVICES_APPLICATIONSERVICES_H 1 + _ACEOF +-if { (ac_try="$ac_cpp conftest.$ac_ext" +-case "(($ac_try" in +- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; +- *) ac_try_echo=$ac_try;; +-esac +-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 +- (eval "$ac_cpp conftest.$ac_ext") 2>conftest.er1 +- ac_status=$? +- grep -v '^ *+' conftest.er1 >conftest.err +- rm -f conftest.er1 +- cat conftest.err >&5 +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); } >/dev/null && { +- test -z "$ac_c_preproc_warn_flag$ac_c_werror_flag" || +- test ! -s conftest.err +- }; then +- ac_header_preproc=yes +-else +- echo "$as_me: failed program was:" >&5 +-sed 's/^/| /' conftest.$ac_ext >&5 + +- ac_header_preproc=no +-fi + +-rm -f conftest.err conftest.$ac_ext +-{ echo "$as_me:$LINENO: result: $ac_header_preproc" >&5 +-echo "${ECHO_T}$ac_header_preproc" >&6; } ++ PLUGINS="${PLUGINS} screen" + +-# So? What about this header? +-case $ac_header_compiler:$ac_header_preproc:$ac_c_preproc_warn_flag in +- yes:no: ) +- { echo "$as_me:$LINENO: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&5 +-echo "$as_me: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&2;} +- { echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the compiler's result" >&5 +-echo "$as_me: WARNING: $ac_header: proceeding with the compiler's result" >&2;} +- ac_header_preproc=yes +- ;; +- no:yes:* ) +- { echo "$as_me:$LINENO: WARNING: $ac_header: present but cannot be compiled" >&5 +-echo "$as_me: WARNING: $ac_header: present but cannot be compiled" >&2;} +- { echo "$as_me:$LINENO: WARNING: $ac_header: check for missing prerequisite headers?" >&5 +-echo "$as_me: WARNING: $ac_header: check for missing prerequisite headers?" >&2;} +- { echo "$as_me:$LINENO: WARNING: $ac_header: see the Autoconf documentation" >&5 +-echo "$as_me: WARNING: $ac_header: see the Autoconf documentation" >&2;} +- { echo "$as_me:$LINENO: WARNING: $ac_header: section \"Present But Cannot Be Compiled\"" >&5 +-echo "$as_me: WARNING: $ac_header: section \"Present But Cannot Be Compiled\"" >&2;} +- { echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the preprocessor's result" >&5 +-echo "$as_me: WARNING: $ac_header: proceeding with the preprocessor's result" >&2;} +- { echo "$as_me:$LINENO: WARNING: $ac_header: in the future, the compiler will take precedence" >&5 +-echo "$as_me: WARNING: $ac_header: in the future, the compiler will take precedence" >&2;} + +- ;; +-esac +-{ echo "$as_me:$LINENO: checking for $ac_header" >&5 +-echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6; } +-if { as_var=$as_ac_Header; eval "test \"\${$as_var+set}\" = set"; }; then +- echo $ECHO_N "(cached) $ECHO_C" >&6 +-else +- eval "$as_ac_Header=\$ac_header_preproc" +-fi +-ac_res=`eval echo '${'$as_ac_Header'}'` +- { echo "$as_me:$LINENO: result: $ac_res" >&5 +-echo "${ECHO_T}$ac_res" >&6; } ++ for element in screen; do ++ eval "LDFLAGS_${element}="'"'"-framework ApplicationServices "'$'"{LDFLAGS_${element}} "'"' ++ am_modules_with_ldflags="${am_modules_with_ldflags} ${element}" ++ done + +-fi +-if test `eval echo '${'$as_ac_Header'}'` = yes; then +- cat >>confdefs.h <<_ACEOF +-#define `echo "HAVE_$ac_header" | $as_tr_cpp` 1 +-_ACEOF + + fi + + done + ++ elif test "${SYS}" = "mingw32"; then + ++ PLUGINS="${PLUGINS} screen" + +-for ac_header in ffmpeg/avutil.h libavutil/avutil.h +-do +-as_ac_Header=`echo "ac_cv_header_$ac_header" | $as_tr_sh` +-if { as_var=$as_ac_Header; eval "test \"\${$as_var+set}\" = set"; }; then +- { echo "$as_me:$LINENO: checking for $ac_header" >&5 +-echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6; } +-if { as_var=$as_ac_Header; eval "test \"\${$as_var+set}\" = set"; }; then +- echo $ECHO_N "(cached) $ECHO_C" >&6 +-fi +-ac_res=`eval echo '${'$as_ac_Header'}'` +- { echo "$as_me:$LINENO: result: $ac_res" >&5 +-echo "${ECHO_T}$ac_res" >&6; } +-else +- # Is the header compilable? +-{ echo "$as_me:$LINENO: checking $ac_header usability" >&5 +-echo $ECHO_N "checking $ac_header usability... $ECHO_C" >&6; } +-cat >conftest.$ac_ext <<_ACEOF +-/* confdefs.h. */ +-_ACEOF +-cat confdefs.h >>conftest.$ac_ext +-cat >>conftest.$ac_ext <<_ACEOF +-/* end confdefs.h. */ +-$ac_includes_default +-#include <$ac_header> +-_ACEOF +-rm -f conftest.$ac_objext +-if { (ac_try="$ac_compile" +-case "(($ac_try" in +- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; +- *) ac_try_echo=$ac_try;; +-esac +-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 +- (eval "$ac_compile") 2>conftest.er1 +- ac_status=$? +- grep -v '^ *+' conftest.er1 >conftest.err +- rm -f conftest.er1 +- cat conftest.err >&5 +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); } && { +- test -z "$ac_c_werror_flag" || +- test ! -s conftest.err +- } && test -s conftest.$ac_objext; then +- ac_header_compiler=yes +-else +- echo "$as_me: failed program was:" >&5 +-sed 's/^/| /' conftest.$ac_ext >&5 + +- ac_header_compiler=no +-fi ++ for element in screen; do ++ eval "LDFLAGS_${element}="'"'"-lgdi32 "'$'"{LDFLAGS_${element}} "'"' ++ am_modules_with_ldflags="${am_modules_with_ldflags} ${element}" ++ done + +-rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext +-{ echo "$as_me:$LINENO: result: $ac_header_compiler" >&5 +-echo "${ECHO_T}$ac_header_compiler" >&6; } ++ elif test "${SYS}" = "mingwce"; then ++ CPPFLAGS="${CPPFLAGS_save}" ++ elif test "${SYS}" = "beos"; then + +-# Is the header present? +-{ echo "$as_me:$LINENO: checking $ac_header presence" >&5 +-echo $ECHO_N "checking $ac_header presence... $ECHO_C" >&6; } +-cat >conftest.$ac_ext <<_ACEOF +-/* confdefs.h. */ +-_ACEOF +-cat confdefs.h >>conftest.$ac_ext +-cat >>conftest.$ac_ext <<_ACEOF +-/* end confdefs.h. */ +-#include <$ac_header> +-_ACEOF +-if { (ac_try="$ac_cpp conftest.$ac_ext" +-case "(($ac_try" in +- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; +- *) ac_try_echo=$ac_try;; +-esac +-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 +- (eval "$ac_cpp conftest.$ac_ext") 2>conftest.er1 +- ac_status=$? +- grep -v '^ *+' conftest.er1 >conftest.err +- rm -f conftest.er1 +- cat conftest.err >&5 +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); } >/dev/null && { +- test -z "$ac_c_preproc_warn_flag$ac_c_werror_flag" || +- test ! -s conftest.err +- }; then +- ac_header_preproc=yes +-else +- echo "$as_me: failed program was:" >&5 +-sed 's/^/| /' conftest.$ac_ext >&5 ++ PLUGINS="${PLUGINS} screen" + +- ac_header_preproc=no +-fi + +-rm -f conftest.err conftest.$ac_ext +-{ echo "$as_me:$LINENO: result: $ac_header_preproc" >&5 +-echo "${ECHO_T}$ac_header_preproc" >&6; } ++ for element in screen; do ++ eval "CXXFLAGS_${element}="'"$'"{CXXFLAGS_${element}} "'"' ++ am_modules_with_cxxflags="${am_modules_with_cxxflags} ${element}" ++ done + +-# So? What about this header? +-case $ac_header_compiler:$ac_header_preproc:$ac_c_preproc_warn_flag in +- yes:no: ) +- { echo "$as_me:$LINENO: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&5 +-echo "$as_me: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&2;} +- { echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the compiler's result" >&5 +-echo "$as_me: WARNING: $ac_header: proceeding with the compiler's result" >&2;} +- ac_header_preproc=yes +- ;; +- no:yes:* ) +- { echo "$as_me:$LINENO: WARNING: $ac_header: present but cannot be compiled" >&5 +-echo "$as_me: WARNING: $ac_header: present but cannot be compiled" >&2;} +- { echo "$as_me:$LINENO: WARNING: $ac_header: check for missing prerequisite headers?" >&5 +-echo "$as_me: WARNING: $ac_header: check for missing prerequisite headers?" >&2;} +- { echo "$as_me:$LINENO: WARNING: $ac_header: see the Autoconf documentation" >&5 +-echo "$as_me: WARNING: $ac_header: see the Autoconf documentation" >&2;} +- { echo "$as_me:$LINENO: WARNING: $ac_header: section \"Present But Cannot Be Compiled\"" >&5 +-echo "$as_me: WARNING: $ac_header: section \"Present But Cannot Be Compiled\"" >&2;} +- { echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the preprocessor's result" >&5 +-echo "$as_me: WARNING: $ac_header: proceeding with the preprocessor's result" >&2;} +- { echo "$as_me:$LINENO: WARNING: $ac_header: in the future, the compiler will take precedence" >&5 +-echo "$as_me: WARNING: $ac_header: in the future, the compiler will take precedence" >&2;} + +- ;; +-esac +-{ echo "$as_me:$LINENO: checking for $ac_header" >&5 +-echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6; } +-if { as_var=$as_ac_Header; eval "test \"\${$as_var+set}\" = set"; }; then +- echo $ECHO_N "(cached) $ECHO_C" >&6 +-else +- eval "$as_ac_Header=\$ac_header_preproc" +-fi +-ac_res=`eval echo '${'$as_ac_Header'}'` +- { echo "$as_me:$LINENO: result: $ac_res" >&5 +-echo "${ECHO_T}$ac_res" >&6; } ++ for element in screen; do ++ eval "LDFLAGS_${element}="'"'"-lbe "'$'"{LDFLAGS_${element}} "'"' ++ am_modules_with_ldflags="${am_modules_with_ldflags} ${element}" ++ done + +-fi +-if test `eval echo '${'$as_ac_Header'}'` = yes; then ++ else ++ CPPFLAGS="${CPPFLAGS_save} ${X_CFLAGS}" ++ for ac_header in X11/Xlib.h ++do : ++ ac_fn_c_check_header_mongrel "$LINENO" "X11/Xlib.h" "ac_cv_header_X11_Xlib_h" "$ac_includes_default" ++if test "x$ac_cv_header_X11_Xlib_h" = xyes; then : + cat >>confdefs.h <<_ACEOF +-#define `echo "HAVE_$ac_header" | $as_tr_cpp` 1 ++#define HAVE_X11_XLIB_H 1 + _ACEOF + ++ ++ PLUGINS="${PLUGINS} screen" ++ ++ ++ for element in screen; do ++ eval "LDFLAGS_${element}="'"'"${X_LIBS} ${X_PRE_LIBS} -lX11 -lXext "'$'"{LDFLAGS_${element}} "'"' ++ am_modules_with_ldflags="${am_modules_with_ldflags} ${element}" ++ done ++ ++ ++ for element in screen; do ++ eval "CPPFLAGS_${element}="'"$'"{CPPFLAGS_${element}} ${X_CFLAGS}"'"' ++ am_modules_with_cppflags="${am_modules_with_cppflags} ${element}" ++ done ++ ++ + fi + + done + ++ CPPFLAGS="${CPPFLAGS_save}" ++ fi ++fi + ++have_ipv6=no ++for ac_func in inet_pton ++do : ++ ac_fn_c_check_func "$LINENO" "inet_pton" "ac_cv_func_inet_pton" ++if test "x$ac_cv_func_inet_pton" = xyes; then : ++ cat >>confdefs.h <<_ACEOF ++#define HAVE_INET_PTON 1 ++_ACEOF ++ have_ipv6=yes ++else + +-for ac_header in postproc/postprocess.h libpostproc/postprocess.h +-do +-as_ac_Header=`echo "ac_cv_header_$ac_header" | $as_tr_sh` +-if { as_var=$as_ac_Header; eval "test \"\${$as_var+set}\" = set"; }; then +- { echo "$as_me:$LINENO: checking for $ac_header" >&5 +-echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6; } +-if { as_var=$as_ac_Header; eval "test \"\${$as_var+set}\" = set"; }; then +- echo $ECHO_N "(cached) $ECHO_C" >&6 +-fi +-ac_res=`eval echo '${'$as_ac_Header'}'` +- { echo "$as_me:$LINENO: result: $ac_res" >&5 +-echo "${ECHO_T}$ac_res" >&6; } ++ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for inet_pton in -lnsl" >&5 ++$as_echo_n "checking for inet_pton in -lnsl... " >&6; } ++if ${ac_cv_lib_nsl_inet_pton+:} false; then : ++ $as_echo_n "(cached) " >&6 + else +- # Is the header compilable? +-{ echo "$as_me:$LINENO: checking $ac_header usability" >&5 +-echo $ECHO_N "checking $ac_header usability... $ECHO_C" >&6; } +-cat >conftest.$ac_ext <<_ACEOF +-/* confdefs.h. */ +-_ACEOF +-cat confdefs.h >>conftest.$ac_ext +-cat >>conftest.$ac_ext <<_ACEOF ++ ac_check_lib_save_LIBS=$LIBS ++LIBS="-lnsl $LIBS" ++cat confdefs.h - <<_ACEOF >conftest.$ac_ext + /* end confdefs.h. */ +-$ac_includes_default +-#include <$ac_header> ++ ++/* Override any GCC internal prototype to avoid an error. ++ Use char because int might match the return type of a GCC ++ builtin and then its argument prototype would still apply. */ ++#ifdef __cplusplus ++extern "C" ++#endif ++char inet_pton (); ++int ++main () ++{ ++return inet_pton (); ++ ; ++ return 0; ++} + _ACEOF +-rm -f conftest.$ac_objext +-if { (ac_try="$ac_compile" +-case "(($ac_try" in +- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; +- *) ac_try_echo=$ac_try;; +-esac +-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 +- (eval "$ac_compile") 2>conftest.er1 +- ac_status=$? +- grep -v '^ *+' conftest.er1 >conftest.err +- rm -f conftest.er1 +- cat conftest.err >&5 +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); } && { +- test -z "$ac_c_werror_flag" || +- test ! -s conftest.err +- } && test -s conftest.$ac_objext; then +- ac_header_compiler=yes ++if ac_fn_c_try_link "$LINENO"; then : ++ ac_cv_lib_nsl_inet_pton=yes + else +- echo "$as_me: failed program was:" >&5 +-sed 's/^/| /' conftest.$ac_ext >&5 ++ ac_cv_lib_nsl_inet_pton=no ++fi ++rm -f core conftest.err conftest.$ac_objext \ ++ conftest$ac_exeext conftest.$ac_ext ++LIBS=$ac_check_lib_save_LIBS ++fi ++{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_nsl_inet_pton" >&5 ++$as_echo "$ac_cv_lib_nsl_inet_pton" >&6; } ++if test "x$ac_cv_lib_nsl_inet_pton" = xyes; then : ++ have_ipv6=yes ++fi ++ + +- ac_header_compiler=no + fi ++done + +-rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext +-{ echo "$as_me:$LINENO: result: $ac_header_compiler" >&5 +-echo "${ECHO_T}$ac_header_compiler" >&6; } + +-# Is the header present? +-{ echo "$as_me:$LINENO: checking $ac_header presence" >&5 +-echo $ECHO_N "checking $ac_header presence... $ECHO_C" >&6; } +-cat >conftest.$ac_ext <<_ACEOF +-/* confdefs.h. */ +-_ACEOF +-cat confdefs.h >>conftest.$ac_ext +-cat >>conftest.$ac_ext <<_ACEOF ++if test "${have_ipv6}" = "yes"; then : ++ ++ ++$as_echo "#define HAVE_INET_PTON 1" >>confdefs.h ++ ++fi ++ ++if test "${SYS}" != "nto" && ++ test "${SYS}" != "mingw32" -a "${SYS}" != "mingwce" ++then ++ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for sockaddr_in6 in netinet/in.h" >&5 ++$as_echo_n "checking for sockaddr_in6 in netinet/in.h... " >&6; } ++ cat confdefs.h - <<_ACEOF >conftest.$ac_ext + /* end confdefs.h. */ +-#include <$ac_header> ++#include ++ + _ACEOF +-if { (ac_try="$ac_cpp conftest.$ac_ext" +-case "(($ac_try" in +- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; +- *) ac_try_echo=$ac_try;; +-esac +-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 +- (eval "$ac_cpp conftest.$ac_ext") 2>conftest.er1 +- ac_status=$? +- grep -v '^ *+' conftest.er1 >conftest.err +- rm -f conftest.er1 +- cat conftest.err >&5 +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); } >/dev/null && { +- test -z "$ac_c_preproc_warn_flag$ac_c_werror_flag" || +- test ! -s conftest.err +- }; then +- ac_header_preproc=yes ++if (eval "$ac_cpp conftest.$ac_ext") 2>&5 | ++ $EGREP "sockaddr_in6" >/dev/null 2>&1; then : ++ { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5 ++$as_echo "yes" >&6; } + else +- echo "$as_me: failed program was:" >&5 +-sed 's/^/| /' conftest.$ac_ext >&5 ++ { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 ++$as_echo "no" >&6; }; have_ipv6=no ++fi ++rm -f conftest* + +- ac_header_preproc=no ++ if test "${have_ipv6}" != "no"; then : ++ ++ ++ PLUGINS="${PLUGINS} ipv6" ++ ++fi + fi ++if test "${SYS}" = "mingw32" ++then ++ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for getaddrinfo in ws2tcpip.h" >&5 ++$as_echo_n "checking for getaddrinfo in ws2tcpip.h... " >&6; } ++ cat confdefs.h - <<_ACEOF >conftest.$ac_ext ++/* end confdefs.h. */ ++#include + +-rm -f conftest.err conftest.$ac_ext +-{ echo "$as_me:$LINENO: result: $ac_header_preproc" >&5 +-echo "${ECHO_T}$ac_header_preproc" >&6; } ++_ACEOF ++if (eval "$ac_cpp conftest.$ac_ext") 2>&5 | ++ $EGREP "addrinfo" >/dev/null 2>&1; then : ++ { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5 ++$as_echo "yes" >&6; } + +-# So? What about this header? +-case $ac_header_compiler:$ac_header_preproc:$ac_c_preproc_warn_flag in +- yes:no: ) +- { echo "$as_me:$LINENO: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&5 +-echo "$as_me: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&2;} +- { echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the compiler's result" >&5 +-echo "$as_me: WARNING: $ac_header: proceeding with the compiler's result" >&2;} +- ac_header_preproc=yes +- ;; +- no:yes:* ) +- { echo "$as_me:$LINENO: WARNING: $ac_header: present but cannot be compiled" >&5 +-echo "$as_me: WARNING: $ac_header: present but cannot be compiled" >&2;} +- { echo "$as_me:$LINENO: WARNING: $ac_header: check for missing prerequisite headers?" >&5 +-echo "$as_me: WARNING: $ac_header: check for missing prerequisite headers?" >&2;} +- { echo "$as_me:$LINENO: WARNING: $ac_header: see the Autoconf documentation" >&5 +-echo "$as_me: WARNING: $ac_header: see the Autoconf documentation" >&2;} +- { echo "$as_me:$LINENO: WARNING: $ac_header: section \"Present But Cannot Be Compiled\"" >&5 +-echo "$as_me: WARNING: $ac_header: section \"Present But Cannot Be Compiled\"" >&2;} +- { echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the preprocessor's result" >&5 +-echo "$as_me: WARNING: $ac_header: proceeding with the preprocessor's result" >&2;} +- { echo "$as_me:$LINENO: WARNING: $ac_header: in the future, the compiler will take precedence" >&5 +-echo "$as_me: WARNING: $ac_header: in the future, the compiler will take precedence" >&2;} ++ PLUGINS="${PLUGINS} ipv6" + +- ;; +-esac +-{ echo "$as_me:$LINENO: checking for $ac_header" >&5 +-echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6; } +-if { as_var=$as_ac_Header; eval "test \"\${$as_var+set}\" = set"; }; then +- echo $ECHO_N "(cached) $ECHO_C" >&6 + else +- eval "$as_ac_Header=\$ac_header_preproc" ++ { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 ++$as_echo "no" >&6; } ++fi ++rm -f conftest* ++ + fi +-ac_res=`eval echo '${'$as_ac_Header'}'` +- { echo "$as_me:$LINENO: result: $ac_res" >&5 +-echo "${ECHO_T}$ac_res" >&6; } + ++# Check whether --enable-ogg was given. ++if test "${enable_ogg+set}" = set; then : ++ enableval=$enable_ogg; + fi +-if test `eval echo '${'$as_ac_Header'}'` = yes; then +- cat >>confdefs.h <<_ACEOF +-#define `echo "HAVE_$ac_header" | $as_tr_cpp` 1 +-_ACEOF + ++if test "${enable_ogg}" != "no" ++then ++ ++# Check whether --with-ogg-tree was given. ++if test "${with_ogg_tree+set}" = set; then : ++ withval=$with_ogg_tree; + fi + +-done ++ if test -n "${with_ogg_tree}" ++ then ++ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for libogg.a in ${with_ogg_tree}" >&5 ++$as_echo_n "checking for libogg.a in ${with_ogg_tree}... " >&6; } ++ real_ogg_tree="`cd ${with_ogg_tree} 2>/dev/null && pwd`" ++ if test -z "${real_ogg_tree}" ++ then ++ { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 ++$as_echo "no" >&6; } ++ as_fn_error $? "cannot cd to ${with_ogg_tree}" "$LINENO" 5 ++ fi ++ if test -f "${real_ogg_tree}/src/.libs/libogg.a" ++ then ++ { $as_echo "$as_me:${as_lineno-$LINENO}: result: ${real_ogg_tree}/src/.libs/libogg.a" >&5 ++$as_echo "${real_ogg_tree}/src/.libs/libogg.a" >&6; } ++ ++ PLUGINS="${PLUGINS} ogg" ++ ++ if test "${enable_sout}" != "no"; then ++ ++ PLUGINS="${PLUGINS} mux_ogg" ++ ++ fi ++ ++ for element in ogg mux_ogg speex vorbis; do ++ eval "LDFLAGS_${element}="'"'"${real_ogg_tree}/src/.libs/libogg.a "'$'"{LDFLAGS_${element}} "'"' ++ am_modules_with_ldflags="${am_modules_with_ldflags} ${element}" ++ done ++ ++ ++ for element in ogg mux_ogg speex vorbis; do ++ eval "CFLAGS_${element}="'"$'"{CFLAGS_${element}} -I${real_ogg_tree}/include"'"' ++ am_modules_with_cflags="${am_modules_with_cflags} ${element}" ++ done + ++ else ++ { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 ++$as_echo "no" >&6; } ++ as_fn_error $? "cannot find ${real_ogg_tree}/src/.libs/libogg.a, make sure you compiled ogg in ${with_ogg_tree}" "$LINENO" 5 ++ fi ++ else ++ for ac_header in ogg/ogg.h ++do : ++ ac_fn_c_check_header_mongrel "$LINENO" "ogg/ogg.h" "ac_cv_header_ogg_ogg_h" "$ac_includes_default" ++if test "x$ac_cv_header_ogg_ogg_h" = xyes; then : ++ cat >>confdefs.h <<_ACEOF ++#define HAVE_OGG_OGG_H 1 ++_ACEOF + +- { echo "$as_me:$LINENO: checking for av_crc_init in -lavutil" >&5 +-echo $ECHO_N "checking for av_crc_init in -lavutil... $ECHO_C" >&6; } +-if test "${ac_cv_lib_avutil_av_crc_init+set}" = set; then +- echo $ECHO_N "(cached) $ECHO_C" >&6 ++ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for oggpack_read in -logg" >&5 ++$as_echo_n "checking for oggpack_read in -logg... " >&6; } ++if ${ac_cv_lib_ogg_oggpack_read+:} false; then : ++ $as_echo_n "(cached) " >&6 + else + ac_check_lib_save_LIBS=$LIBS +-LIBS="-lavutil $LIBS" +-cat >conftest.$ac_ext <<_ACEOF +-/* confdefs.h. */ +-_ACEOF +-cat confdefs.h >>conftest.$ac_ext +-cat >>conftest.$ac_ext <<_ACEOF ++LIBS="-logg $LIBS" ++cat confdefs.h - <<_ACEOF >conftest.$ac_ext + /* end confdefs.h. */ + + /* Override any GCC internal prototype to avoid an error. +@@ -45769,876 +32314,527 @@ cat >>conftest.$ac_ext <<_ACEOF + #ifdef __cplusplus + extern "C" + #endif +-char av_crc_init (); ++char oggpack_read (); + int + main () + { +-return av_crc_init (); ++return oggpack_read (); + ; + return 0; + } + _ACEOF +-rm -f conftest.$ac_objext conftest$ac_exeext +-if { (ac_try="$ac_link" +-case "(($ac_try" in +- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; +- *) ac_try_echo=$ac_try;; +-esac +-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 +- (eval "$ac_link") 2>conftest.er1 +- ac_status=$? +- grep -v '^ *+' conftest.er1 >conftest.err +- rm -f conftest.er1 +- cat conftest.err >&5 +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); } && { +- test -z "$ac_c_werror_flag" || +- test ! -s conftest.err +- } && test -s conftest$ac_exeext && +- $as_test_x conftest$ac_exeext; then +- ac_cv_lib_avutil_av_crc_init=yes ++if ac_fn_c_try_link "$LINENO"; then : ++ ac_cv_lib_ogg_oggpack_read=yes + else +- echo "$as_me: failed program was:" >&5 +-sed 's/^/| /' conftest.$ac_ext >&5 +- +- ac_cv_lib_avutil_av_crc_init=no ++ ac_cv_lib_ogg_oggpack_read=no + fi +- +-rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ +- conftest$ac_exeext conftest.$ac_ext ++rm -f core conftest.err conftest.$ac_objext \ ++ conftest$ac_exeext conftest.$ac_ext + LIBS=$ac_check_lib_save_LIBS + fi +-{ echo "$as_me:$LINENO: result: $ac_cv_lib_avutil_av_crc_init" >&5 +-echo "${ECHO_T}$ac_cv_lib_avutil_av_crc_init" >&6; } +-if test $ac_cv_lib_avutil_av_crc_init = yes; then ++{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_ogg_oggpack_read" >&5 ++$as_echo "$ac_cv_lib_ogg_oggpack_read" >&6; } ++if test "x$ac_cv_lib_ogg_oggpack_read" = xyes; then : + + +- for element in ffmpeg; do +- eval "LDFLAGS_${element}="'"'"-lavutil "'$'"{LDFLAGS_${element}} "'"' ++ PLUGINS="${PLUGINS} ogg" ++ ++ if test "${enable_sout}" != "no"; then ++ ++ PLUGINS="${PLUGINS} mux_ogg" ++ ++ fi ++ ++ for element in ogg mux_ogg; do ++ eval "LDFLAGS_${element}="'"'"-logg "'$'"{LDFLAGS_${element}} "'"' + am_modules_with_ldflags="${am_modules_with_ldflags} ${element}" + done + +- LDAVUTIL="-lavutil" +-fi ++fi ++ ++ ++fi ++ ++done ++ ++ fi ++fi ++ ++# Check whether --enable-mkv was given. ++if test "${enable_mkv+set}" = set; then : ++ enableval=$enable_mkv; ++fi ++ ++if test "${enable_mkv}" != "no" -a "${CXX}" != ""; then ++ ac_ext=cpp ++ac_cpp='$CXXCPP $CPPFLAGS' ++ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' ++ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' ++ac_compiler_gnu=$ac_cv_cxx_compiler_gnu ++ ++ for ac_header in ebml/EbmlVersion.h ++do : ++ ac_fn_cxx_check_header_mongrel "$LINENO" "ebml/EbmlVersion.h" "ac_cv_header_ebml_EbmlVersion_h" "$ac_includes_default" ++if test "x$ac_cv_header_ebml_EbmlVersion_h" = xyes; then : ++ cat >>confdefs.h <<_ACEOF ++#define HAVE_EBML_EBMLVERSION_H 1 ++_ACEOF ++ ++ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for libebml version >= 0.7.6" >&5 ++$as_echo_n "checking for libebml version >= 0.7.6... " >&6; } ++ cat confdefs.h - <<_ACEOF >conftest.$ac_ext ++/* end confdefs.h. */ ++#include ++ #ifdef LIBEBML_VERSION ++ #if LIBEBML_VERSION >= 0x000706 ++ yes ++ #endif ++ #endif ++_ACEOF ++if (eval "$ac_cpp conftest.$ac_ext") 2>&5 | ++ $EGREP "yes" >/dev/null 2>&1; then : ++ { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5 ++$as_echo "yes" >&6; } ++ for ac_header in matroska/KaxVersion.h ++do : ++ ac_fn_cxx_check_header_mongrel "$LINENO" "matroska/KaxVersion.h" "ac_cv_header_matroska_KaxVersion_h" "$ac_includes_default" ++if test "x$ac_cv_header_matroska_KaxVersion_h" = xyes; then : ++ cat >>confdefs.h <<_ACEOF ++#define HAVE_MATROSKA_KAXVERSION_H 1 ++_ACEOF ++ ++ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for libmatroska version >= 0.7.7" >&5 ++$as_echo_n "checking for libmatroska version >= 0.7.7... " >&6; } ++ cat confdefs.h - <<_ACEOF >conftest.$ac_ext ++/* end confdefs.h. */ ++#include ++ #ifdef LIBMATROSKA_VERSION ++ #if LIBMATROSKA_VERSION >= 0x000705 ++ yes ++ #endif ++ #endif ++_ACEOF ++if (eval "$ac_cpp conftest.$ac_ext") 2>&5 | ++ $EGREP "yes" >/dev/null 2>&1; then : ++ { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5 ++$as_echo "yes" >&6; } ++ for ac_header in matroska/KaxAttachments.h ++do : ++ ac_fn_cxx_check_header_mongrel "$LINENO" "matroska/KaxAttachments.h" "ac_cv_header_matroska_KaxAttachments_h" "$ac_includes_default" ++if test "x$ac_cv_header_matroska_KaxAttachments_h" = xyes; then : ++ cat >>confdefs.h <<_ACEOF ++#define HAVE_MATROSKA_KAXATTACHMENTS_H 1 ++_ACEOF ++ ++fi ++ ++done ++ ++ ++ for element in mkv; do ++ eval "CXXFLAGS_${element}="'"$'"{CXXFLAGS_${element}} "'"' ++ am_modules_with_cxxflags="${am_modules_with_cxxflags} ${element}" ++ done ++ ++ if test "${SYS}" = "darwin"; then + ++ for element in mkv; do ++ eval "CXXFLAGS_${element}="'"$'"{CXXFLAGS_${element}} -O1"'"' ++ am_modules_with_cxxflags="${am_modules_with_cxxflags} ${element}" ++ done + +- { echo "$as_me:$LINENO: checking for avcodec_init in -lavcodec" >&5 +-echo $ECHO_N "checking for avcodec_init in -lavcodec... $ECHO_C" >&6; } +-if test "${ac_cv_lib_avcodec_avcodec_init+set}" = set; then +- echo $ECHO_N "(cached) $ECHO_C" >&6 ++ fi ++ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for main in -lebml_pic" >&5 ++$as_echo_n "checking for main in -lebml_pic... " >&6; } ++if ${ac_cv_lib_ebml_pic_main+:} false; then : ++ $as_echo_n "(cached) " >&6 + else + ac_check_lib_save_LIBS=$LIBS +-LIBS="-lavcodec $LDAVUTIL $LIBS" +-cat >conftest.$ac_ext <<_ACEOF +-/* confdefs.h. */ +-_ACEOF +-cat confdefs.h >>conftest.$ac_ext +-cat >>conftest.$ac_ext <<_ACEOF ++LIBS="-lebml_pic $LIBS" ++cat confdefs.h - <<_ACEOF >conftest.$ac_ext + /* end confdefs.h. */ + +-/* Override any GCC internal prototype to avoid an error. +- Use char because int might match the return type of a GCC +- builtin and then its argument prototype would still apply. */ +-#ifdef __cplusplus +-extern "C" +-#endif +-char avcodec_init (); ++ + int + main () + { +-return avcodec_init (); ++return main (); + ; + return 0; + } + _ACEOF +-rm -f conftest.$ac_objext conftest$ac_exeext +-if { (ac_try="$ac_link" +-case "(($ac_try" in +- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; +- *) ac_try_echo=$ac_try;; +-esac +-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 +- (eval "$ac_link") 2>conftest.er1 +- ac_status=$? +- grep -v '^ *+' conftest.er1 >conftest.err +- rm -f conftest.er1 +- cat conftest.err >&5 +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); } && { +- test -z "$ac_c_werror_flag" || +- test ! -s conftest.err +- } && test -s conftest$ac_exeext && +- $as_test_x conftest$ac_exeext; then +- ac_cv_lib_avcodec_avcodec_init=yes ++if ac_fn_cxx_try_link "$LINENO"; then : ++ ac_cv_lib_ebml_pic_main=yes + else +- echo "$as_me: failed program was:" >&5 +-sed 's/^/| /' conftest.$ac_ext >&5 +- +- ac_cv_lib_avcodec_avcodec_init=no ++ ac_cv_lib_ebml_pic_main=no + fi +- +-rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ +- conftest$ac_exeext conftest.$ac_ext ++rm -f core conftest.err conftest.$ac_objext \ ++ conftest$ac_exeext conftest.$ac_ext + LIBS=$ac_check_lib_save_LIBS + fi +-{ echo "$as_me:$LINENO: result: $ac_cv_lib_avcodec_avcodec_init" >&5 +-echo "${ECHO_T}$ac_cv_lib_avcodec_avcodec_init" >&6; } +-if test $ac_cv_lib_avcodec_avcodec_init = yes; then ++{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_ebml_pic_main" >&5 ++$as_echo "$ac_cv_lib_ebml_pic_main" >&6; } ++if test "x$ac_cv_lib_ebml_pic_main" = xyes; then : + + +- BUILTINS="${BUILTINS} ffmpeg" ++ PLUGINS="${PLUGINS} mkv" + + +- for element in ffmpeg; do +- eval "LDFLAGS_${element}="'"'"-lavcodec "'$'"{LDFLAGS_${element}} "'"' ++ for element in mkv; do ++ eval "LDFLAGS_${element}="'"'"-lmatroska -lebml_pic "'$'"{LDFLAGS_${element}} "'"' + am_modules_with_ldflags="${am_modules_with_ldflags} ${element}" + done + +- if test "${enable_sout}" != "no"; then +- +- BUILTINS="${BUILTINS} stream_out_switcher" + +- fi + else +- { { echo "$as_me:$LINENO: error: Could not find ffmpeg on your system: you may get it from http://ffmpeg.sf.net/ (svn version is recommended). Alternatively you can use --disable-ffmpeg to disable the ffmpeg plugins." >&5 +-echo "$as_me: error: Could not find ffmpeg on your system: you may get it from http://ffmpeg.sf.net/ (svn version is recommended). Alternatively you can use --disable-ffmpeg to disable the ffmpeg plugins." >&2;} +- { (exit 1); exit 1; }; } +-fi +- +- +- +- { echo "$as_me:$LINENO: checking for pp_postprocess in -lpostproc" >&5 +-echo $ECHO_N "checking for pp_postprocess in -lpostproc... $ECHO_C" >&6; } +-if test "${ac_cv_lib_postproc_pp_postprocess+set}" = set; then +- echo $ECHO_N "(cached) $ECHO_C" >&6 ++ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for main in -lebml" >&5 ++$as_echo_n "checking for main in -lebml... " >&6; } ++if ${ac_cv_lib_ebml_main+:} false; then : ++ $as_echo_n "(cached) " >&6 + else + ac_check_lib_save_LIBS=$LIBS +-LIBS="-lpostproc $LDAVUTIL $LIBS" +-cat >conftest.$ac_ext <<_ACEOF +-/* confdefs.h. */ +-_ACEOF +-cat confdefs.h >>conftest.$ac_ext +-cat >>conftest.$ac_ext <<_ACEOF ++LIBS="-lebml $LIBS" ++cat confdefs.h - <<_ACEOF >conftest.$ac_ext + /* end confdefs.h. */ + +-/* Override any GCC internal prototype to avoid an error. +- Use char because int might match the return type of a GCC +- builtin and then its argument prototype would still apply. */ +-#ifdef __cplusplus +-extern "C" +-#endif +-char pp_postprocess (); ++ + int + main () + { +-return pp_postprocess (); ++return main (); + ; + return 0; + } + _ACEOF +-rm -f conftest.$ac_objext conftest$ac_exeext +-if { (ac_try="$ac_link" +-case "(($ac_try" in +- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; +- *) ac_try_echo=$ac_try;; +-esac +-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 +- (eval "$ac_link") 2>conftest.er1 +- ac_status=$? +- grep -v '^ *+' conftest.er1 >conftest.err +- rm -f conftest.er1 +- cat conftest.err >&5 +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); } && { +- test -z "$ac_c_werror_flag" || +- test ! -s conftest.err +- } && test -s conftest$ac_exeext && +- $as_test_x conftest$ac_exeext; then +- ac_cv_lib_postproc_pp_postprocess=yes ++if ac_fn_cxx_try_link "$LINENO"; then : ++ ac_cv_lib_ebml_main=yes + else +- echo "$as_me: failed program was:" >&5 +-sed 's/^/| /' conftest.$ac_ext >&5 +- +- ac_cv_lib_postproc_pp_postprocess=no ++ ac_cv_lib_ebml_main=no + fi +- +-rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ +- conftest$ac_exeext conftest.$ac_ext ++rm -f core conftest.err conftest.$ac_objext \ ++ conftest$ac_exeext conftest.$ac_ext + LIBS=$ac_check_lib_save_LIBS + fi +-{ echo "$as_me:$LINENO: result: $ac_cv_lib_postproc_pp_postprocess" >&5 +-echo "${ECHO_T}$ac_cv_lib_postproc_pp_postprocess" >&6; } +-if test $ac_cv_lib_postproc_pp_postprocess = yes; then ++{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_ebml_main" >&5 ++$as_echo "$ac_cv_lib_ebml_main" >&6; } ++if test "x$ac_cv_lib_ebml_main" = xyes; then : + + +- for element in ffmpeg; do +- eval "LDFLAGS_${element}="'"'"-lpostproc "'$'"{LDFLAGS_${element}} "'"' ++ PLUGINS="${PLUGINS} mkv" ++ ++ ++ for element in mkv; do ++ eval "LDFLAGS_${element}="'"'"-lmatroska -lebml "'$'"{LDFLAGS_${element}} "'"' + am_modules_with_ldflags="${am_modules_with_ldflags} ${element}" + done + +-else +- { { echo "$as_me:$LINENO: error: Could not find libpostproc inside FFmpeg. You should configure FFmpeg with --enable-gpl --enable-pp." >&5 +-echo "$as_me: error: Could not find libpostproc inside FFmpeg. You should configure FFmpeg with --enable-gpl --enable-pp." >&2;} +- { (exit 1); exit 1; }; } ++ + fi + + +- { echo "$as_me:$LINENO: checking for av_open_input_stream in -lavformat" >&5 +-echo $ECHO_N "checking for av_open_input_stream in -lavformat... $ECHO_C" >&6; } +-if test "${ac_cv_lib_avformat_av_open_input_stream+set}" = set; then +- echo $ECHO_N "(cached) $ECHO_C" >&6 +-else +- ac_check_lib_save_LIBS=$LIBS +-LIBS="-lavformat -lavcodec -lz $LDAVUTIL $LIBS" +-cat >conftest.$ac_ext <<_ACEOF +-/* confdefs.h. */ +-_ACEOF +-cat confdefs.h >>conftest.$ac_ext +-cat >>conftest.$ac_ext <<_ACEOF +-/* end confdefs.h. */ ++fi ++ + +-/* Override any GCC internal prototype to avoid an error. +- Use char because int might match the return type of a GCC +- builtin and then its argument prototype would still apply. */ +-#ifdef __cplusplus +-extern "C" +-#endif +-char av_open_input_stream (); +-int +-main () +-{ +-return av_open_input_stream (); +- ; +- return 0; +-} +-_ACEOF +-rm -f conftest.$ac_objext conftest$ac_exeext +-if { (ac_try="$ac_link" +-case "(($ac_try" in +- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; +- *) ac_try_echo=$ac_try;; +-esac +-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 +- (eval "$ac_link") 2>conftest.er1 +- ac_status=$? +- grep -v '^ *+' conftest.er1 >conftest.err +- rm -f conftest.er1 +- cat conftest.err >&5 +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); } && { +- test -z "$ac_c_werror_flag" || +- test ! -s conftest.err +- } && test -s conftest$ac_exeext && +- $as_test_x conftest$ac_exeext; then +- ac_cv_lib_avformat_av_open_input_stream=yes + else +- echo "$as_me: failed program was:" >&5 +-sed 's/^/| /' conftest.$ac_ext >&5 ++ { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 ++$as_echo "no" >&6; } ++ as_fn_error $? "Your libmatroska is too old: you may get a more recent one from http://dl.matroska.org/downloads/libmatroska/. Alternatively you can use --disable-mkv to disable the matroska plugin." "$LINENO" 5 + +- ac_cv_lib_avformat_av_open_input_stream=no + fi ++rm -f conftest* ++ + +-rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ +- conftest$ac_exeext conftest.$ac_ext +-LIBS=$ac_check_lib_save_LIBS + fi +-{ echo "$as_me:$LINENO: result: $ac_cv_lib_avformat_av_open_input_stream" >&5 +-echo "${ECHO_T}$ac_cv_lib_avformat_av_open_input_stream" >&6; } +-if test $ac_cv_lib_avformat_av_open_input_stream = yes; then ++ ++done + + +- for element in ffmpeg; do +- eval "LDFLAGS_${element}="'"'"-lavformat -lz "'$'"{LDFLAGS_${element}} "'"' +- am_modules_with_ldflags="${am_modules_with_ldflags} ${element}" +- done ++else ++ { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 ++$as_echo "no" >&6; } ++ as_fn_error $? "Your libebml is too old: you may get a more recent one from http://dl.matroska.org/downloads/libebml/. Alternatively you can use --disable-mkv to disable the matroska plugin." "$LINENO" 5 + + fi ++rm -f conftest* + +- LDFLAGS="${LDFLAGS_save}" +- CPPFLAGS="${CPPFLAGS_save}" + +-elif test $pkg_failed = untried; then ++fi + ++done + +- CPPFLAGS="${CPPFLAGS_save} ${CPPFLAGS_ffmpeg}" +- LDFLAGS="${LDFLAGS_save} ${LDFLAGS_ffmpeg}" ++ ac_ext=c ++ac_cpp='$CPP $CPPFLAGS' ++ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' ++ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' ++ac_compiler_gnu=$ac_cv_c_compiler_gnu + ++fi + +-for ac_header in ffmpeg/avcodec.h libavcodec/avcodec.h +-do +-as_ac_Header=`echo "ac_cv_header_$ac_header" | $as_tr_sh` +-if { as_var=$as_ac_Header; eval "test \"\${$as_var+set}\" = set"; }; then +- { echo "$as_me:$LINENO: checking for $ac_header" >&5 +-echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6; } +-if { as_var=$as_ac_Header; eval "test \"\${$as_var+set}\" = set"; }; then +- echo $ECHO_N "(cached) $ECHO_C" >&6 ++# Check whether --enable-mod was given. ++if test "${enable_mod+set}" = set; then : ++ enableval=$enable_mod; + fi +-ac_res=`eval echo '${'$as_ac_Header'}'` +- { echo "$as_me:$LINENO: result: $ac_res" >&5 +-echo "${ECHO_T}$ac_res" >&6; } +-else +- # Is the header compilable? +-{ echo "$as_me:$LINENO: checking $ac_header usability" >&5 +-echo $ECHO_N "checking $ac_header usability... $ECHO_C" >&6; } +-cat >conftest.$ac_ext <<_ACEOF +-/* confdefs.h. */ +-_ACEOF +-cat confdefs.h >>conftest.$ac_ext +-cat >>conftest.$ac_ext <<_ACEOF +-/* end confdefs.h. */ +-$ac_includes_default +-#include <$ac_header> +-_ACEOF +-rm -f conftest.$ac_objext +-if { (ac_try="$ac_compile" +-case "(($ac_try" in +- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; +- *) ac_try_echo=$ac_try;; +-esac +-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 +- (eval "$ac_compile") 2>conftest.er1 +- ac_status=$? +- grep -v '^ *+' conftest.er1 >conftest.err +- rm -f conftest.er1 +- cat conftest.err >&5 +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); } && { +- test -z "$ac_c_werror_flag" || +- test ! -s conftest.err +- } && test -s conftest.$ac_objext; then +- ac_header_compiler=yes +-else +- echo "$as_me: failed program was:" >&5 +-sed 's/^/| /' conftest.$ac_ext >&5 + +- ac_header_compiler=no ++if test "${enable_mod}" != "no" ++then ++ ++# Check whether --with-mod-tree was given. ++if test "${with_mod_tree+set}" = set; then : ++ withval=$with_mod_tree; + fi + +-rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext +-{ echo "$as_me:$LINENO: result: $ac_header_compiler" >&5 +-echo "${ECHO_T}$ac_header_compiler" >&6; } ++ if test -n "${with_mod_tree}" ++ then ++ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for libmodplug.a in ${with_mod_tree}" >&5 ++$as_echo_n "checking for libmodplug.a in ${with_mod_tree}... " >&6; } ++ real_mod_tree="`cd ${with_mod_tree} 2>/dev/null && pwd`" ++ if test -z "${real_mod_tree}" ++ then ++ { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 ++$as_echo "no" >&6; } ++ as_fn_error $? "cannot cd to ${with_mod_tree}" "$LINENO" 5 ++ fi ++ if test -f "${real_mod_tree}/src/.libs/libmodplug.a" ++ then ++ { $as_echo "$as_me:${as_lineno-$LINENO}: result: ${real_mod_tree}/src/.libs/libmodplug.a" >&5 ++$as_echo "${real_mod_tree}/src/.libs/libmodplug.a" >&6; } + +-# Is the header present? +-{ echo "$as_me:$LINENO: checking $ac_header presence" >&5 +-echo $ECHO_N "checking $ac_header presence... $ECHO_C" >&6; } +-cat >conftest.$ac_ext <<_ACEOF +-/* confdefs.h. */ +-_ACEOF +-cat confdefs.h >>conftest.$ac_ext +-cat >>conftest.$ac_ext <<_ACEOF +-/* end confdefs.h. */ +-#include <$ac_header> +-_ACEOF +-if { (ac_try="$ac_cpp conftest.$ac_ext" +-case "(($ac_try" in +- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; +- *) ac_try_echo=$ac_try;; +-esac +-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 +- (eval "$ac_cpp conftest.$ac_ext") 2>conftest.er1 +- ac_status=$? +- grep -v '^ *+' conftest.er1 >conftest.err +- rm -f conftest.er1 +- cat conftest.err >&5 +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); } >/dev/null && { +- test -z "$ac_c_preproc_warn_flag$ac_c_werror_flag" || +- test ! -s conftest.err +- }; then +- ac_header_preproc=yes +-else +- echo "$as_me: failed program was:" >&5 +-sed 's/^/| /' conftest.$ac_ext >&5 ++ PLUGINS="${PLUGINS} mod" + +- ac_header_preproc=no +-fi + +-rm -f conftest.err conftest.$ac_ext +-{ echo "$as_me:$LINENO: result: $ac_header_preproc" >&5 +-echo "${ECHO_T}$ac_header_preproc" >&6; } ++ for element in mod; do ++ eval "LDFLAGS_${element}="'"'"${real_mod_tree}/src/.libs/libmodplug.a "'$'"{LDFLAGS_${element}} "'"' ++ am_modules_with_ldflags="${am_modules_with_ldflags} ${element}" ++ done + +-# So? What about this header? +-case $ac_header_compiler:$ac_header_preproc:$ac_c_preproc_warn_flag in +- yes:no: ) +- { echo "$as_me:$LINENO: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&5 +-echo "$as_me: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&2;} +- { echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the compiler's result" >&5 +-echo "$as_me: WARNING: $ac_header: proceeding with the compiler's result" >&2;} +- ac_header_preproc=yes +- ;; +- no:yes:* ) +- { echo "$as_me:$LINENO: WARNING: $ac_header: present but cannot be compiled" >&5 +-echo "$as_me: WARNING: $ac_header: present but cannot be compiled" >&2;} +- { echo "$as_me:$LINENO: WARNING: $ac_header: check for missing prerequisite headers?" >&5 +-echo "$as_me: WARNING: $ac_header: check for missing prerequisite headers?" >&2;} +- { echo "$as_me:$LINENO: WARNING: $ac_header: see the Autoconf documentation" >&5 +-echo "$as_me: WARNING: $ac_header: see the Autoconf documentation" >&2;} +- { echo "$as_me:$LINENO: WARNING: $ac_header: section \"Present But Cannot Be Compiled\"" >&5 +-echo "$as_me: WARNING: $ac_header: section \"Present But Cannot Be Compiled\"" >&2;} +- { echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the preprocessor's result" >&5 +-echo "$as_me: WARNING: $ac_header: proceeding with the preprocessor's result" >&2;} +- { echo "$as_me:$LINENO: WARNING: $ac_header: in the future, the compiler will take precedence" >&5 +-echo "$as_me: WARNING: $ac_header: in the future, the compiler will take precedence" >&2;} + +- ;; +-esac +-{ echo "$as_me:$LINENO: checking for $ac_header" >&5 +-echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6; } +-if { as_var=$as_ac_Header; eval "test \"\${$as_var+set}\" = set"; }; then +- echo $ECHO_N "(cached) $ECHO_C" >&6 +-else +- eval "$as_ac_Header=\$ac_header_preproc" +-fi +-ac_res=`eval echo '${'$as_ac_Header'}'` +- { echo "$as_me:$LINENO: result: $ac_res" >&5 +-echo "${ECHO_T}$ac_res" >&6; } ++ for element in mod; do ++ eval "CFLAGS_${element}="'"$'"{CFLAGS_${element}} -I${real_mod_tree}/include"'"' ++ am_modules_with_cflags="${am_modules_with_cflags} ${element}" ++ done + +-fi +-if test `eval echo '${'$as_ac_Header'}'` = yes; then ++ else ++ { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 ++$as_echo "no" >&6; } ++ as_fn_error $? "cannot find ${real_mod_tree}/src/.libs/libmodplug.a, make sure you compiled mod in ${with_mod_tree}" "$LINENO" 5 ++ fi ++ else ++ for ac_header in libmodplug/modplug.h ++do : ++ ac_fn_c_check_header_mongrel "$LINENO" "libmodplug/modplug.h" "ac_cv_header_libmodplug_modplug_h" "$ac_includes_default" ++if test "x$ac_cv_header_libmodplug_modplug_h" = xyes; then : + cat >>confdefs.h <<_ACEOF +-#define `echo "HAVE_$ac_header" | $as_tr_cpp` 1 ++#define HAVE_LIBMODPLUG_MODPLUG_H 1 + _ACEOF + +-fi + +-done ++ PLUGINS="${PLUGINS} mod" ++ ++ ++ for element in mod; do ++ eval "CXXFLAGS_${element}="'"$'"{CXXFLAGS_${element}} "'"' ++ am_modules_with_cxxflags="${am_modules_with_cxxflags} ${element}" ++ done + + ++ for element in mod; do ++ eval "LDFLAGS_${element}="'"'"-lmodplug "'$'"{LDFLAGS_${element}} "'"' ++ am_modules_with_ldflags="${am_modules_with_ldflags} ${element}" ++ done + +-for ac_header in ffmpeg/avformat.h libavformat/avformat.h +-do +-as_ac_Header=`echo "ac_cv_header_$ac_header" | $as_tr_sh` +-if { as_var=$as_ac_Header; eval "test \"\${$as_var+set}\" = set"; }; then +- { echo "$as_me:$LINENO: checking for $ac_header" >&5 +-echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6; } +-if { as_var=$as_ac_Header; eval "test \"\${$as_var+set}\" = set"; }; then +- echo $ECHO_N "(cached) $ECHO_C" >&6 + fi +-ac_res=`eval echo '${'$as_ac_Header'}'` +- { echo "$as_me:$LINENO: result: $ac_res" >&5 +-echo "${ECHO_T}$ac_res" >&6; } +-else +- # Is the header compilable? +-{ echo "$as_me:$LINENO: checking $ac_header usability" >&5 +-echo $ECHO_N "checking $ac_header usability... $ECHO_C" >&6; } +-cat >conftest.$ac_ext <<_ACEOF +-/* confdefs.h. */ +-_ACEOF +-cat confdefs.h >>conftest.$ac_ext +-cat >>conftest.$ac_ext <<_ACEOF +-/* end confdefs.h. */ +-$ac_includes_default +-#include <$ac_header> +-_ACEOF +-rm -f conftest.$ac_objext +-if { (ac_try="$ac_compile" +-case "(($ac_try" in +- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; +- *) ac_try_echo=$ac_try;; +-esac +-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 +- (eval "$ac_compile") 2>conftest.er1 +- ac_status=$? +- grep -v '^ *+' conftest.er1 >conftest.err +- rm -f conftest.er1 +- cat conftest.err >&5 +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); } && { +- test -z "$ac_c_werror_flag" || +- test ! -s conftest.err +- } && test -s conftest.$ac_objext; then +- ac_header_compiler=yes +-else +- echo "$as_me: failed program was:" >&5 +-sed 's/^/| /' conftest.$ac_ext >&5 + +- ac_header_compiler=no ++done ++ ++ fi + fi + +-rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext +-{ echo "$as_me:$LINENO: result: $ac_header_compiler" >&5 +-echo "${ECHO_T}$ac_header_compiler" >&6; } ++# Check whether --enable-mpc was given. ++if test "${enable_mpc+set}" = set; then : ++ enableval=$enable_mpc; ++fi + +-# Is the header present? +-{ echo "$as_me:$LINENO: checking $ac_header presence" >&5 +-echo $ECHO_N "checking $ac_header presence... $ECHO_C" >&6; } +-cat >conftest.$ac_ext <<_ACEOF +-/* confdefs.h. */ +-_ACEOF +-cat confdefs.h >>conftest.$ac_ext +-cat >>conftest.$ac_ext <<_ACEOF +-/* end confdefs.h. */ +-#include <$ac_header> ++if test "${enable_mpc}" != "no" ++then ++ for ac_header in mpcdec/mpcdec.h ++do : ++ ac_fn_c_check_header_mongrel "$LINENO" "mpcdec/mpcdec.h" "ac_cv_header_mpcdec_mpcdec_h" "$ac_includes_default" ++if test "x$ac_cv_header_mpcdec_mpcdec_h" = xyes; then : ++ cat >>confdefs.h <<_ACEOF ++#define HAVE_MPCDEC_MPCDEC_H 1 + _ACEOF +-if { (ac_try="$ac_cpp conftest.$ac_ext" +-case "(($ac_try" in +- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; +- *) ac_try_echo=$ac_try;; +-esac +-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 +- (eval "$ac_cpp conftest.$ac_ext") 2>conftest.er1 +- ac_status=$? +- grep -v '^ *+' conftest.er1 >conftest.err +- rm -f conftest.er1 +- cat conftest.err >&5 +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); } >/dev/null && { +- test -z "$ac_c_preproc_warn_flag$ac_c_werror_flag" || +- test ! -s conftest.err +- }; then +- ac_header_preproc=yes +-else +- echo "$as_me: failed program was:" >&5 +-sed 's/^/| /' conftest.$ac_ext >&5 + +- ac_header_preproc=no +-fi + +-rm -f conftest.err conftest.$ac_ext +-{ echo "$as_me:$LINENO: result: $ac_header_preproc" >&5 +-echo "${ECHO_T}$ac_header_preproc" >&6; } ++ PLUGINS="${PLUGINS} mpc" + +-# So? What about this header? +-case $ac_header_compiler:$ac_header_preproc:$ac_c_preproc_warn_flag in +- yes:no: ) +- { echo "$as_me:$LINENO: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&5 +-echo "$as_me: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&2;} +- { echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the compiler's result" >&5 +-echo "$as_me: WARNING: $ac_header: proceeding with the compiler's result" >&2;} +- ac_header_preproc=yes +- ;; +- no:yes:* ) +- { echo "$as_me:$LINENO: WARNING: $ac_header: present but cannot be compiled" >&5 +-echo "$as_me: WARNING: $ac_header: present but cannot be compiled" >&2;} +- { echo "$as_me:$LINENO: WARNING: $ac_header: check for missing prerequisite headers?" >&5 +-echo "$as_me: WARNING: $ac_header: check for missing prerequisite headers?" >&2;} +- { echo "$as_me:$LINENO: WARNING: $ac_header: see the Autoconf documentation" >&5 +-echo "$as_me: WARNING: $ac_header: see the Autoconf documentation" >&2;} +- { echo "$as_me:$LINENO: WARNING: $ac_header: section \"Present But Cannot Be Compiled\"" >&5 +-echo "$as_me: WARNING: $ac_header: section \"Present But Cannot Be Compiled\"" >&2;} +- { echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the preprocessor's result" >&5 +-echo "$as_me: WARNING: $ac_header: proceeding with the preprocessor's result" >&2;} +- { echo "$as_me:$LINENO: WARNING: $ac_header: in the future, the compiler will take precedence" >&5 +-echo "$as_me: WARNING: $ac_header: in the future, the compiler will take precedence" >&2;} + +- ;; +-esac +-{ echo "$as_me:$LINENO: checking for $ac_header" >&5 +-echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6; } +-if { as_var=$as_ac_Header; eval "test \"\${$as_var+set}\" = set"; }; then +- echo $ECHO_N "(cached) $ECHO_C" >&6 +-else +- eval "$as_ac_Header=\$ac_header_preproc" +-fi +-ac_res=`eval echo '${'$as_ac_Header'}'` +- { echo "$as_me:$LINENO: result: $ac_res" >&5 +-echo "${ECHO_T}$ac_res" >&6; } ++ for element in mpc; do ++ eval "LDFLAGS_${element}="'"'"-lmpcdec "'$'"{LDFLAGS_${element}} "'"' ++ am_modules_with_ldflags="${am_modules_with_ldflags} ${element}" ++ done + + fi +-if test `eval echo '${'$as_ac_Header'}'` = yes; then +- cat >>confdefs.h <<_ACEOF +-#define `echo "HAVE_$ac_header" | $as_tr_cpp` 1 +-_ACEOF ++ ++done + + fi + +-done + + + +-for ac_header in ffmpeg/avutil.h libavutil/avutil.h +-do +-as_ac_Header=`echo "ac_cv_header_$ac_header" | $as_tr_sh` +-if { as_var=$as_ac_Header; eval "test \"\${$as_var+set}\" = set"; }; then +- { echo "$as_me:$LINENO: checking for $ac_header" >&5 +-echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6; } +-if { as_var=$as_ac_Header; eval "test \"\${$as_var+set}\" = set"; }; then +- echo $ECHO_N "(cached) $ECHO_C" >&6 ++# Check whether --with- was given. ++if test "${with_+set}" = set; then : ++ withval=$with_; + fi +-ac_res=`eval echo '${'$as_ac_Header'}'` +- { echo "$as_me:$LINENO: result: $ac_res" >&5 +-echo "${ECHO_T}$ac_res" >&6; } +-else +- # Is the header compilable? +-{ echo "$as_me:$LINENO: checking $ac_header usability" >&5 +-echo $ECHO_N "checking $ac_header usability... $ECHO_C" >&6; } +-cat >conftest.$ac_ext <<_ACEOF +-/* confdefs.h. */ +-_ACEOF +-cat confdefs.h >>conftest.$ac_ext +-cat >>conftest.$ac_ext <<_ACEOF +-/* end confdefs.h. */ +-$ac_includes_default +-#include <$ac_header> +-_ACEOF +-rm -f conftest.$ac_objext +-if { (ac_try="$ac_compile" +-case "(($ac_try" in +- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; +- *) ac_try_echo=$ac_try;; +-esac +-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 +- (eval "$ac_compile") 2>conftest.er1 +- ac_status=$? +- grep -v '^ *+' conftest.er1 >conftest.err +- rm -f conftest.er1 +- cat conftest.err >&5 +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); } && { +- test -z "$ac_c_werror_flag" || +- test ! -s conftest.err +- } && test -s conftest.$ac_objext; then +- ac_header_compiler=yes +-else +- echo "$as_me: failed program was:" >&5 +-sed 's/^/| /' conftest.$ac_ext >&5 + +- ac_header_compiler=no +-fi + +-rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext +-{ echo "$as_me:$LINENO: result: $ac_header_compiler" >&5 +-echo "${ECHO_T}$ac_header_compiler" >&6; } ++# Check whether --enable-mad was given. ++if test "${enable_mad+set}" = set; then : ++ enableval=$enable_mad; ++fi + +-# Is the header present? +-{ echo "$as_me:$LINENO: checking $ac_header presence" >&5 +-echo $ECHO_N "checking $ac_header presence... $ECHO_C" >&6; } +-cat >conftest.$ac_ext <<_ACEOF +-/* confdefs.h. */ +-_ACEOF +-cat confdefs.h >>conftest.$ac_ext +-cat >>conftest.$ac_ext <<_ACEOF +-/* end confdefs.h. */ +-#include <$ac_header> +-_ACEOF +-if { (ac_try="$ac_cpp conftest.$ac_ext" +-case "(($ac_try" in +- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; +- *) ac_try_echo=$ac_try;; +-esac +-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 +- (eval "$ac_cpp conftest.$ac_ext") 2>conftest.er1 +- ac_status=$? +- grep -v '^ *+' conftest.er1 >conftest.err +- rm -f conftest.er1 +- cat conftest.err >&5 +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); } >/dev/null && { +- test -z "$ac_c_preproc_warn_flag$ac_c_werror_flag" || +- test ! -s conftest.err +- }; then +- ac_header_preproc=yes +-else +- echo "$as_me: failed program was:" >&5 +-sed 's/^/| /' conftest.$ac_ext >&5 ++if test "${enable_mad}" != "no" ++then + +- ac_header_preproc=no ++# Check whether --with-mad was given. ++if test "${with_mad+set}" = set; then : ++ withval=$with_mad; + fi + +-rm -f conftest.err conftest.$ac_ext +-{ echo "$as_me:$LINENO: result: $ac_header_preproc" >&5 +-echo "${ECHO_T}$ac_header_preproc" >&6; } ++ if test "${with_mad}" != "no" -a -n "${with_mad}" ++ then + +-# So? What about this header? +-case $ac_header_compiler:$ac_header_preproc:$ac_c_preproc_warn_flag in +- yes:no: ) +- { echo "$as_me:$LINENO: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&5 +-echo "$as_me: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&2;} +- { echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the compiler's result" >&5 +-echo "$as_me: WARNING: $ac_header: proceeding with the compiler's result" >&2;} +- ac_header_preproc=yes +- ;; +- no:yes:* ) +- { echo "$as_me:$LINENO: WARNING: $ac_header: present but cannot be compiled" >&5 +-echo "$as_me: WARNING: $ac_header: present but cannot be compiled" >&2;} +- { echo "$as_me:$LINENO: WARNING: $ac_header: check for missing prerequisite headers?" >&5 +-echo "$as_me: WARNING: $ac_header: check for missing prerequisite headers?" >&2;} +- { echo "$as_me:$LINENO: WARNING: $ac_header: see the Autoconf documentation" >&5 +-echo "$as_me: WARNING: $ac_header: see the Autoconf documentation" >&2;} +- { echo "$as_me:$LINENO: WARNING: $ac_header: section \"Present But Cannot Be Compiled\"" >&5 +-echo "$as_me: WARNING: $ac_header: section \"Present But Cannot Be Compiled\"" >&2;} +- { echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the preprocessor's result" >&5 +-echo "$as_me: WARNING: $ac_header: proceeding with the preprocessor's result" >&2;} +- { echo "$as_me:$LINENO: WARNING: $ac_header: in the future, the compiler will take precedence" >&5 +-echo "$as_me: WARNING: $ac_header: in the future, the compiler will take precedence" >&2;} ++ for element in mpgatofixed32; do ++ eval "CPPFLAGS_${element}="'"$'"{CPPFLAGS_${element}} -I${with_mad}/include"'"' ++ am_modules_with_cppflags="${am_modules_with_cppflags} ${element}" ++ done + +- ;; +-esac +-{ echo "$as_me:$LINENO: checking for $ac_header" >&5 +-echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6; } +-if { as_var=$as_ac_Header; eval "test \"\${$as_var+set}\" = set"; }; then +- echo $ECHO_N "(cached) $ECHO_C" >&6 +-else +- eval "$as_ac_Header=\$ac_header_preproc" +-fi +-ac_res=`eval echo '${'$as_ac_Header'}'` +- { echo "$as_me:$LINENO: result: $ac_res" >&5 +-echo "${ECHO_T}$ac_res" >&6; } + +-fi +-if test `eval echo '${'$as_ac_Header'}'` = yes; then +- cat >>confdefs.h <<_ACEOF +-#define `echo "HAVE_$ac_header" | $as_tr_cpp` 1 +-_ACEOF ++ for element in mpgatofixed32; do ++ eval "LDFLAGS_${element}="'"'"-L${with_mad}/lib "'$'"{LDFLAGS_${element}} "'"' ++ am_modules_with_ldflags="${am_modules_with_ldflags} ${element}" ++ done ++ ++ fi ++ + ++# Check whether --with-mad-tree was given. ++if test "${with_mad_tree+set}" = set; then : ++ withval=$with_mad_tree; + fi + +-done ++ if test "${with_mad_tree}" != "no" -a -n "${with_mad_tree}" ++ then ++ real_mad_tree="`cd ${with_mad_tree} 2>/dev/null && pwd`" ++ if test -z "${real_mad_tree}" ++ then ++ { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 ++$as_echo "no" >&6; } ++ as_fn_error $? "${with_mad_tree} directory doesn't exist" "$LINENO" 5 ++ fi ++ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for mad.h in ${real_mad_tree}" >&5 ++$as_echo_n "checking for mad.h in ${real_mad_tree}... " >&6; } ++ if test -f ${real_mad_tree}/mad.h ++ then ++ { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5 ++$as_echo "yes" >&6; } + ++ for element in mpgatofixed32; do ++ eval "CPPFLAGS_${element}="'"$'"{CPPFLAGS_${element}} -I${real_mad_tree}"'"' ++ am_modules_with_cppflags="${am_modules_with_cppflags} ${element}" ++ done + + +-for ac_header in postproc/postprocess.h libpostproc/postprocess.h +-do +-as_ac_Header=`echo "ac_cv_header_$ac_header" | $as_tr_sh` +-if { as_var=$as_ac_Header; eval "test \"\${$as_var+set}\" = set"; }; then +- { echo "$as_me:$LINENO: checking for $ac_header" >&5 +-echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6; } +-if { as_var=$as_ac_Header; eval "test \"\${$as_var+set}\" = set"; }; then +- echo $ECHO_N "(cached) $ECHO_C" >&6 +-fi +-ac_res=`eval echo '${'$as_ac_Header'}'` +- { echo "$as_me:$LINENO: result: $ac_res" >&5 +-echo "${ECHO_T}$ac_res" >&6; } ++ for element in mpgatofixed32; do ++ eval "LDFLAGS_${element}="'"'"-L${real_mad_tree}/.libs "'$'"{LDFLAGS_${element}} "'"' ++ am_modules_with_ldflags="${am_modules_with_ldflags} ${element}" ++ done ++ ++ LDFLAGS="${LDFLAGS_save} ${LDFLAGS_mpgatofixed32}" ++ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for mad_bit_init in -lmad" >&5 ++$as_echo_n "checking for mad_bit_init in -lmad... " >&6; } ++if ${ac_cv_lib_mad_mad_bit_init+:} false; then : ++ $as_echo_n "(cached) " >&6 + else +- # Is the header compilable? +-{ echo "$as_me:$LINENO: checking $ac_header usability" >&5 +-echo $ECHO_N "checking $ac_header usability... $ECHO_C" >&6; } +-cat >conftest.$ac_ext <<_ACEOF +-/* confdefs.h. */ +-_ACEOF +-cat confdefs.h >>conftest.$ac_ext +-cat >>conftest.$ac_ext <<_ACEOF ++ ac_check_lib_save_LIBS=$LIBS ++LIBS="-lmad $LIBS" ++cat confdefs.h - <<_ACEOF >conftest.$ac_ext + /* end confdefs.h. */ +-$ac_includes_default +-#include <$ac_header> ++ ++/* Override any GCC internal prototype to avoid an error. ++ Use char because int might match the return type of a GCC ++ builtin and then its argument prototype would still apply. */ ++#ifdef __cplusplus ++extern "C" ++#endif ++char mad_bit_init (); ++int ++main () ++{ ++return mad_bit_init (); ++ ; ++ return 0; ++} + _ACEOF +-rm -f conftest.$ac_objext +-if { (ac_try="$ac_compile" +-case "(($ac_try" in +- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; +- *) ac_try_echo=$ac_try;; +-esac +-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 +- (eval "$ac_compile") 2>conftest.er1 +- ac_status=$? +- grep -v '^ *+' conftest.er1 >conftest.err +- rm -f conftest.er1 +- cat conftest.err >&5 +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); } && { +- test -z "$ac_c_werror_flag" || +- test ! -s conftest.err +- } && test -s conftest.$ac_objext; then +- ac_header_compiler=yes ++if ac_fn_c_try_link "$LINENO"; then : ++ ac_cv_lib_mad_mad_bit_init=yes + else +- echo "$as_me: failed program was:" >&5 +-sed 's/^/| /' conftest.$ac_ext >&5 +- +- ac_header_compiler=no ++ ac_cv_lib_mad_mad_bit_init=no + fi ++rm -f core conftest.err conftest.$ac_objext \ ++ conftest$ac_exeext conftest.$ac_ext ++LIBS=$ac_check_lib_save_LIBS ++fi ++{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_mad_mad_bit_init" >&5 ++$as_echo "$ac_cv_lib_mad_mad_bit_init" >&6; } ++if test "x$ac_cv_lib_mad_mad_bit_init" = xyes; then : + +-rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext +-{ echo "$as_me:$LINENO: result: $ac_header_compiler" >&5 +-echo "${ECHO_T}$ac_header_compiler" >&6; } + +-# Is the header present? +-{ echo "$as_me:$LINENO: checking $ac_header presence" >&5 +-echo $ECHO_N "checking $ac_header presence... $ECHO_C" >&6; } +-cat >conftest.$ac_ext <<_ACEOF +-/* confdefs.h. */ +-_ACEOF +-cat confdefs.h >>conftest.$ac_ext +-cat >>conftest.$ac_ext <<_ACEOF +-/* end confdefs.h. */ +-#include <$ac_header> +-_ACEOF +-if { (ac_try="$ac_cpp conftest.$ac_ext" +-case "(($ac_try" in +- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; +- *) ac_try_echo=$ac_try;; +-esac +-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 +- (eval "$ac_cpp conftest.$ac_ext") 2>conftest.er1 +- ac_status=$? +- grep -v '^ *+' conftest.er1 >conftest.err +- rm -f conftest.er1 +- cat conftest.err >&5 +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); } >/dev/null && { +- test -z "$ac_c_preproc_warn_flag$ac_c_werror_flag" || +- test ! -s conftest.err +- }; then +- ac_header_preproc=yes +-else +- echo "$as_me: failed program was:" >&5 +-sed 's/^/| /' conftest.$ac_ext >&5 ++ BUILTINS="${BUILTINS} mpgatofixed32" + +- ac_header_preproc=no +-fi + +-rm -f conftest.err conftest.$ac_ext +-{ echo "$as_me:$LINENO: result: $ac_header_preproc" >&5 +-echo "${ECHO_T}$ac_header_preproc" >&6; } ++ for element in mpgatofixed32; do ++ eval "LDFLAGS_${element}="'"'"-lmad "'$'"{LDFLAGS_${element}} "'"' ++ am_modules_with_ldflags="${am_modules_with_ldflags} ${element}" ++ done + +-# So? What about this header? +-case $ac_header_compiler:$ac_header_preproc:$ac_c_preproc_warn_flag in +- yes:no: ) +- { echo "$as_me:$LINENO: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&5 +-echo "$as_me: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&2;} +- { echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the compiler's result" >&5 +-echo "$as_me: WARNING: $ac_header: proceeding with the compiler's result" >&2;} +- ac_header_preproc=yes +- ;; +- no:yes:* ) +- { echo "$as_me:$LINENO: WARNING: $ac_header: present but cannot be compiled" >&5 +-echo "$as_me: WARNING: $ac_header: present but cannot be compiled" >&2;} +- { echo "$as_me:$LINENO: WARNING: $ac_header: check for missing prerequisite headers?" >&5 +-echo "$as_me: WARNING: $ac_header: check for missing prerequisite headers?" >&2;} +- { echo "$as_me:$LINENO: WARNING: $ac_header: see the Autoconf documentation" >&5 +-echo "$as_me: WARNING: $ac_header: see the Autoconf documentation" >&2;} +- { echo "$as_me:$LINENO: WARNING: $ac_header: section \"Present But Cannot Be Compiled\"" >&5 +-echo "$as_me: WARNING: $ac_header: section \"Present But Cannot Be Compiled\"" >&2;} +- { echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the preprocessor's result" >&5 +-echo "$as_me: WARNING: $ac_header: proceeding with the preprocessor's result" >&2;} +- { echo "$as_me:$LINENO: WARNING: $ac_header: in the future, the compiler will take precedence" >&5 +-echo "$as_me: WARNING: $ac_header: in the future, the compiler will take precedence" >&2;} + +- ;; +-esac +-{ echo "$as_me:$LINENO: checking for $ac_header" >&5 +-echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6; } +-if { as_var=$as_ac_Header; eval "test \"\${$as_var+set}\" = set"; }; then +- echo $ECHO_N "(cached) $ECHO_C" >&6 + else +- eval "$as_ac_Header=\$ac_header_preproc" +-fi +-ac_res=`eval echo '${'$as_ac_Header'}'` +- { echo "$as_me:$LINENO: result: $ac_res" >&5 +-echo "${ECHO_T}$ac_res" >&6; } ++ as_fn_error $? "the specified tree hasn't been compiled " "$LINENO" 5 + + fi +-if test `eval echo '${'$as_ac_Header'}'` = yes; then ++ ++ LDFLAGS="${LDFLAGS_save}" ++ else ++ { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 ++$as_echo "no" >&6; } ++ as_fn_error $? "the specified tree doesn't have mad.h" "$LINENO" 5 ++ fi ++ else ++ CPPFLAGS="${CPPFLAGS_save} ${CPPFLAGS_mpgatofixed32}" ++ LDFLAGS="${LDFLAGS_save} ${LDFLAGS_mpgatofixed32}" ++ for ac_header in mad.h ++do : ++ ac_fn_c_check_header_mongrel "$LINENO" "mad.h" "ac_cv_header_mad_h" "$ac_includes_default" ++if test "x$ac_cv_header_mad_h" = xyes; then : + cat >>confdefs.h <<_ACEOF +-#define `echo "HAVE_$ac_header" | $as_tr_cpp` 1 ++#define HAVE_MAD_H 1 + _ACEOF + ++else ++ as_fn_error $? "Could not find libmad on your system: you may get it from http://www.underbit.com/products/mad/. Alternatively you can use --disable-mad to disable the mad plugin." "$LINENO" 5 + fi + + done + +- +- { echo "$as_me:$LINENO: checking for av_crc_init in -lavutil" >&5 +-echo $ECHO_N "checking for av_crc_init in -lavutil... $ECHO_C" >&6; } +-if test "${ac_cv_lib_avutil_av_crc_init+set}" = set; then +- echo $ECHO_N "(cached) $ECHO_C" >&6 ++ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for mad_bit_init in -lmad" >&5 ++$as_echo_n "checking for mad_bit_init in -lmad... " >&6; } ++if ${ac_cv_lib_mad_mad_bit_init+:} false; then : ++ $as_echo_n "(cached) " >&6 + else + ac_check_lib_save_LIBS=$LIBS +-LIBS="-lavutil $LIBS" +-cat >conftest.$ac_ext <<_ACEOF +-/* confdefs.h. */ +-_ACEOF +-cat confdefs.h >>conftest.$ac_ext +-cat >>conftest.$ac_ext <<_ACEOF ++LIBS="-lmad $LIBS" ++cat confdefs.h - <<_ACEOF >conftest.$ac_ext + /* end confdefs.h. */ + + /* Override any GCC internal prototype to avoid an error. +@@ -46647,71 +32843,134 @@ cat >>conftest.$ac_ext <<_ACEOF + #ifdef __cplusplus + extern "C" + #endif +-char av_crc_init (); ++char mad_bit_init (); + int + main () + { +-return av_crc_init (); ++return mad_bit_init (); + ; + return 0; + } + _ACEOF +-rm -f conftest.$ac_objext conftest$ac_exeext +-if { (ac_try="$ac_link" +-case "(($ac_try" in +- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; +- *) ac_try_echo=$ac_try;; +-esac +-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 +- (eval "$ac_link") 2>conftest.er1 +- ac_status=$? +- grep -v '^ *+' conftest.er1 >conftest.err +- rm -f conftest.er1 +- cat conftest.err >&5 +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); } && { +- test -z "$ac_c_werror_flag" || +- test ! -s conftest.err +- } && test -s conftest$ac_exeext && +- $as_test_x conftest$ac_exeext; then +- ac_cv_lib_avutil_av_crc_init=yes ++if ac_fn_c_try_link "$LINENO"; then : ++ ac_cv_lib_mad_mad_bit_init=yes + else +- echo "$as_me: failed program was:" >&5 +-sed 's/^/| /' conftest.$ac_ext >&5 ++ ac_cv_lib_mad_mad_bit_init=no ++fi ++rm -f core conftest.err conftest.$ac_objext \ ++ conftest$ac_exeext conftest.$ac_ext ++LIBS=$ac_check_lib_save_LIBS ++fi ++{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_mad_mad_bit_init" >&5 ++$as_echo "$ac_cv_lib_mad_mad_bit_init" >&6; } ++if test "x$ac_cv_lib_mad_mad_bit_init" = xyes; then : ++ ++ ++ PLUGINS="${PLUGINS} mpgatofixed32" ++ + +- ac_cv_lib_avutil_av_crc_init=no ++ for element in mpgatofixed32; do ++ eval "LDFLAGS_${element}="'"'"-lmad "'$'"{LDFLAGS_${element}} "'"' ++ am_modules_with_ldflags="${am_modules_with_ldflags} ${element}" ++ done ++ ++else ++ as_fn_error $? "Cannot find libmad library..." "$LINENO" 5 + fi + +-rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ +- conftest$ac_exeext conftest.$ac_ext +-LIBS=$ac_check_lib_save_LIBS ++ CPPFLAGS="${CPPFLAGS_save}" ++ LDFLAGS="${LDFLAGS_save}" ++ fi ++fi ++ ++for ac_header in id3tag.h ++do : ++ ac_fn_c_check_header_mongrel "$LINENO" "id3tag.h" "ac_cv_header_id3tag_h" "$ac_includes_default" ++if test "x$ac_cv_header_id3tag_h" = xyes; then : ++ cat >>confdefs.h <<_ACEOF ++#define HAVE_ID3TAG_H 1 ++_ACEOF ++ ++ for ac_header in zlib.h ++do : ++ ac_fn_c_check_header_mongrel "$LINENO" "zlib.h" "ac_cv_header_zlib_h" "$ac_includes_default" ++if test "x$ac_cv_header_zlib_h" = xyes; then : ++ cat >>confdefs.h <<_ACEOF ++#define HAVE_ZLIB_H 1 ++_ACEOF ++ ++ ++ for element in id3tag; do ++ eval "LDFLAGS_${element}="'"'"-lid3tag -lz "'$'"{LDFLAGS_${element}} "'"' ++ am_modules_with_ldflags="${am_modules_with_ldflags} ${element}" ++ done ++ ++ ++ PLUGINS="${PLUGINS} id3tag" ++ ++fi ++ ++done ++ + fi +-{ echo "$as_me:$LINENO: result: $ac_cv_lib_avutil_av_crc_init" >&5 +-echo "${ECHO_T}$ac_cv_lib_avutil_av_crc_init" >&6; } +-if test $ac_cv_lib_avutil_av_crc_init = yes; then + ++done ++ ++ ++ ++# Check whether --enable-ffmpeg was given. ++if test "${enable_ffmpeg+set}" = set; then : ++ enableval=$enable_ffmpeg; ++fi ++ ++if test "${enable_ffmpeg}" != "no" ++then ++ ++ ++ ++# Check whether --with-ffmpeg-mp3lame was given. ++if test "${with_ffmpeg_mp3lame+set}" = set; then : ++ withval=$with_ffmpeg_mp3lame; ++ if test "$with_ffmpeg_mp3lame" = "yes"; then + + for element in ffmpeg; do +- eval "LDFLAGS_${element}="'"'"-lavutil "'$'"{LDFLAGS_${element}} "'"' ++ eval "LDFLAGS_${element}="'"'"-lmp3lame "'$'"{LDFLAGS_${element}} "'"' ++ am_modules_with_ldflags="${am_modules_with_ldflags} ${element}" ++ done ++ ++ fi ++fi ++ ++ ++ ++# Check whether --with-ffmpeg-faac was given. ++if test "${with_ffmpeg_faac+set}" = set; then : ++ withval=$with_ffmpeg_faac; ++ if test "$with_ffmpeg_faac" = "yes"; then ++ ++ for element in ffmpeg; do ++ eval "LDFLAGS_${element}="'"'"-lfaac "'$'"{LDFLAGS_${element}} "'"' + am_modules_with_ldflags="${am_modules_with_ldflags} ${element}" + done + +- LDAVUTIL="-lavutil" ++ fi + fi + + +- { echo "$as_me:$LINENO: checking for avcodec_init in -lavcodec" >&5 +-echo $ECHO_N "checking for avcodec_init in -lavcodec... $ECHO_C" >&6; } +-if test "${ac_cv_lib_avcodec_avcodec_init+set}" = set; then +- echo $ECHO_N "(cached) $ECHO_C" >&6 ++ ++# Check whether --with-ffmpeg-dts was given. ++if test "${with_ffmpeg_dts+set}" = set; then : ++ withval=$with_ffmpeg_dts; ++ if test "$with_ffmpeg_dts" = "yes"; then ++ LDFLAGS="${LDFLAGS_save} ${LDFLAGS_ffmpeg}" ++ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for dts_free in -ldts_pic" >&5 ++$as_echo_n "checking for dts_free in -ldts_pic... " >&6; } ++if ${ac_cv_lib_dts_pic_dts_free+:} false; then : ++ $as_echo_n "(cached) " >&6 + else + ac_check_lib_save_LIBS=$LIBS +-LIBS="-lavcodec $LDAVUTIL $LIBS" +-cat >conftest.$ac_ext <<_ACEOF +-/* confdefs.h. */ +-_ACEOF +-cat confdefs.h >>conftest.$ac_ext +-cat >>conftest.$ac_ext <<_ACEOF ++LIBS="-ldts_pic $LIBS" ++cat confdefs.h - <<_ACEOF >conftest.$ac_ext + /* end confdefs.h. */ + + /* Override any GCC internal prototype to avoid an error. +@@ -46720,83 +32979,61 @@ cat >>conftest.$ac_ext <<_ACEOF + #ifdef __cplusplus + extern "C" + #endif +-char avcodec_init (); ++char dts_free (); + int + main () + { +-return avcodec_init (); ++return dts_free (); + ; + return 0; + } + _ACEOF +-rm -f conftest.$ac_objext conftest$ac_exeext +-if { (ac_try="$ac_link" +-case "(($ac_try" in +- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; +- *) ac_try_echo=$ac_try;; +-esac +-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 +- (eval "$ac_link") 2>conftest.er1 +- ac_status=$? +- grep -v '^ *+' conftest.er1 >conftest.err +- rm -f conftest.er1 +- cat conftest.err >&5 +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); } && { +- test -z "$ac_c_werror_flag" || +- test ! -s conftest.err +- } && test -s conftest$ac_exeext && +- $as_test_x conftest$ac_exeext; then +- ac_cv_lib_avcodec_avcodec_init=yes ++if ac_fn_c_try_link "$LINENO"; then : ++ ac_cv_lib_dts_pic_dts_free=yes + else +- echo "$as_me: failed program was:" >&5 +-sed 's/^/| /' conftest.$ac_ext >&5 +- +- ac_cv_lib_avcodec_avcodec_init=no ++ ac_cv_lib_dts_pic_dts_free=no + fi +- +-rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ +- conftest$ac_exeext conftest.$ac_ext ++rm -f core conftest.err conftest.$ac_objext \ ++ conftest$ac_exeext conftest.$ac_ext + LIBS=$ac_check_lib_save_LIBS + fi +-{ echo "$as_me:$LINENO: result: $ac_cv_lib_avcodec_avcodec_init" >&5 +-echo "${ECHO_T}$ac_cv_lib_avcodec_avcodec_init" >&6; } +-if test $ac_cv_lib_avcodec_avcodec_init = yes; then +- ++{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_dts_pic_dts_free" >&5 ++$as_echo "$ac_cv_lib_dts_pic_dts_free" >&6; } ++if test "x$ac_cv_lib_dts_pic_dts_free" = xyes; then : + +- BUILTINS="${BUILTINS} ffmpeg" ++ for element in ffmpeg; do ++ eval "LDFLAGS_${element}="'"'"-ldts_pic "'$'"{LDFLAGS_${element}} "'"' ++ am_modules_with_ldflags="${am_modules_with_ldflags} ${element}" ++ done + ++else + + for element in ffmpeg; do +- eval "LDFLAGS_${element}="'"'"-lavcodec "'$'"{LDFLAGS_${element}} "'"' ++ eval "LDFLAGS_${element}="'"'"-ldts "'$'"{LDFLAGS_${element}} "'"' + am_modules_with_ldflags="${am_modules_with_ldflags} ${element}" + done + +- if test "${enable_sout}" != "no"; then +- +- BUILTINS="${BUILTINS} stream_out_switcher" ++fi + +- fi +-else +- { { echo "$as_me:$LINENO: error: Could not find ffmpeg on your system: you may get it from http://ffmpeg.sf.net/ (svn version is recommended). Alternatively you can use --disable-ffmpeg to disable the ffmpeg plugins." >&5 +-echo "$as_me: error: Could not find ffmpeg on your system: you may get it from http://ffmpeg.sf.net/ (svn version is recommended). Alternatively you can use --disable-ffmpeg to disable the ffmpeg plugins." >&2;} +- { (exit 1); exit 1; }; } ++ LDFLAGS="${LDFLAGS_save}" ++ fi + fi + + + +- { echo "$as_me:$LINENO: checking for pp_postprocess in -lpostproc" >&5 +-echo $ECHO_N "checking for pp_postprocess in -lpostproc... $ECHO_C" >&6; } +-if test "${ac_cv_lib_postproc_pp_postprocess+set}" = set; then +- echo $ECHO_N "(cached) $ECHO_C" >&6 ++# Check whether --with-ffmpeg-dca was given. ++if test "${with_ffmpeg_dca+set}" = set; then : ++ withval=$with_ffmpeg_dca; ++ if test "$with_ffmpeg_dca" = "yes"; then ++ LDFLAGS="${LDFLAGS_save} ${LDFLAGS_ffmpeg} ${LIBS_ffmpeg}" ++ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for dca_free in -ldca" >&5 ++$as_echo_n "checking for dca_free in -ldca... " >&6; } ++if ${ac_cv_lib_dca_dca_free+:} false; then : ++ $as_echo_n "(cached) " >&6 + else + ac_check_lib_save_LIBS=$LIBS +-LIBS="-lpostproc $LDAVUTIL $LIBS" +-cat >conftest.$ac_ext <<_ACEOF +-/* confdefs.h. */ +-_ACEOF +-cat confdefs.h >>conftest.$ac_ext +-cat >>conftest.$ac_ext <<_ACEOF ++LIBS="-ldca $LIBS" ++cat confdefs.h - <<_ACEOF >conftest.$ac_ext + /* end confdefs.h. */ + + /* Override any GCC internal prototype to avoid an error. +@@ -46805,74 +33042,192 @@ cat >>conftest.$ac_ext <<_ACEOF + #ifdef __cplusplus + extern "C" + #endif +-char pp_postprocess (); ++char dca_free (); + int + main () + { +-return pp_postprocess (); ++return dca_free (); + ; + return 0; + } + _ACEOF +-rm -f conftest.$ac_objext conftest$ac_exeext +-if { (ac_try="$ac_link" +-case "(($ac_try" in +- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; +- *) ac_try_echo=$ac_try;; +-esac +-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 +- (eval "$ac_link") 2>conftest.er1 +- ac_status=$? +- grep -v '^ *+' conftest.er1 >conftest.err +- rm -f conftest.er1 +- cat conftest.err >&5 +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); } && { +- test -z "$ac_c_werror_flag" || +- test ! -s conftest.err +- } && test -s conftest$ac_exeext && +- $as_test_x conftest$ac_exeext; then +- ac_cv_lib_postproc_pp_postprocess=yes ++if ac_fn_c_try_link "$LINENO"; then : ++ ac_cv_lib_dca_dca_free=yes + else +- echo "$as_me: failed program was:" >&5 +-sed 's/^/| /' conftest.$ac_ext >&5 ++ ac_cv_lib_dca_dca_free=no ++fi ++rm -f core conftest.err conftest.$ac_objext \ ++ conftest$ac_exeext conftest.$ac_ext ++LIBS=$ac_check_lib_save_LIBS ++fi ++{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_dca_dca_free" >&5 ++$as_echo "$ac_cv_lib_dca_dca_free" >&6; } ++if test "x$ac_cv_lib_dca_dca_free" = xyes; then : ++ ++ for element in ffmpeg; do ++ eval "LDFLAGS_${element}="'"'"-ldca "'$'"{LDFLAGS_${element}} "'"' ++ am_modules_with_ldflags="${am_modules_with_ldflags} ${element}" ++ done + +- ac_cv_lib_postproc_pp_postprocess=no + fi + +-rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ +- conftest$ac_exeext conftest.$ac_ext +-LIBS=$ac_check_lib_save_LIBS ++ LDFLAGS="${LDFLAGS_save}" ++ fi + fi +-{ echo "$as_me:$LINENO: result: $ac_cv_lib_postproc_pp_postprocess" >&5 +-echo "${ECHO_T}$ac_cv_lib_postproc_pp_postprocess" >&6; } +-if test $ac_cv_lib_postproc_pp_postprocess = yes; then + + ++ ++# Check whether --with-ffmpeg-vorbis was given. ++if test "${with_ffmpeg_vorbis+set}" = set; then : ++ withval=$with_ffmpeg_vorbis; ++ if test "$with_ffmpeg_vorbis" = "yes"; then ++ + for element in ffmpeg; do +- eval "LDFLAGS_${element}="'"'"-lpostproc "'$'"{LDFLAGS_${element}} "'"' ++ eval "LDFLAGS_${element}="'"'"-lvorbisenc -lvorbis "'$'"{LDFLAGS_${element}} "'"' + am_modules_with_ldflags="${am_modules_with_ldflags} ${element}" + done + +-else +- { { echo "$as_me:$LINENO: error: Could not find libpostproc inside FFmpeg. You should configure FFmpeg with --enable-gpl --enable-pp." >&5 +-echo "$as_me: error: Could not find libpostproc inside FFmpeg. You should configure FFmpeg with --enable-gpl --enable-pp." >&2;} +- { (exit 1); exit 1; }; } ++ fi ++fi ++ ++ ++ ++# Check whether --with-ffmpeg-theora was given. ++if test "${with_ffmpeg_theora+set}" = set; then : ++ withval=$with_ffmpeg_theora; ++ if test "$with_ffmpeg_theora" = "yes"; then ++ ++ for element in ffmpeg; do ++ eval "LDFLAGS_${element}="'"'"-ltheora "'$'"{LDFLAGS_${element}} "'"' ++ am_modules_with_ldflags="${am_modules_with_ldflags} ${element}" ++ done ++ ++ fi ++fi ++ ++ ++ ++# Check whether --with-ffmpeg-ogg was given. ++if test "${with_ffmpeg_ogg+set}" = set; then : ++ withval=$with_ffmpeg_ogg; ++ if test "$with_ffmpeg_ogg" = "yes"; then ++ ++ for element in ffmpeg; do ++ eval "LDFLAGS_${element}="'"'"-logg "'$'"{LDFLAGS_${element}} "'"' ++ am_modules_with_ldflags="${am_modules_with_ldflags} ${element}" ++ done ++ ++ fi ++fi ++ ++ ++ ++# Check whether --with-ffmpeg-zlib was given. ++if test "${with_ffmpeg_zlib+set}" = set; then : ++ withval=$with_ffmpeg_zlib; ++ if test "$with_ffmpeg_zlib" = "yes"; then ++ ++ for element in ffmpeg; do ++ eval "LDFLAGS_${element}="'"'"-lz "'$'"{LDFLAGS_${element}} "'"' ++ am_modules_with_ldflags="${am_modules_with_ldflags} ${element}" ++ done ++ ++ fi ++fi ++ ++ ++ ++# Check whether --with-ffmpeg-tree was given. ++if test "${with_ffmpeg_tree+set}" = set; then : ++ withval=$with_ffmpeg_tree; + fi + + +- { echo "$as_me:$LINENO: checking for av_open_input_stream in -lavformat" >&5 +-echo $ECHO_N "checking for av_open_input_stream in -lavformat... $ECHO_C" >&6; } +-if test "${ac_cv_lib_avformat_av_open_input_stream+set}" = set; then +- echo $ECHO_N "(cached) $ECHO_C" >&6 ++ if test "${with_ffmpeg_tree}" != "no" -a -n "${with_ffmpeg_tree}"; then ++ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for libavcodec.a in ${with_ffmpeg_tree}" >&5 ++$as_echo_n "checking for libavcodec.a in ${with_ffmpeg_tree}... " >&6; } ++ real_ffmpeg_tree="`cd ${with_ffmpeg_tree} 2>/dev/null && pwd`" ++ if test -z "${real_ffmpeg_tree}"; then ++ { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 ++$as_echo "no" >&6; } ++ as_fn_error $? "cannot cd to ${with_ffmpeg_tree}" "$LINENO" 5 ++ fi ++ if ! test -f "${real_ffmpeg_tree}/libavcodec/libavcodec.a"; then ++ { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 ++$as_echo "no" >&6; } ++ as_fn_error $? "cannot find ${real_ffmpeg_tree}/libavcodec/libavcodec.a, make sure you compiled libavcodec in ${with_ffmpeg_tree}" "$LINENO" 5 ++ fi ++ if ! fgrep -s "pp_get_context" "${real_ffmpeg_tree}/libavcodec/libavcodec.a"; then ++ if test -f "${real_ffmpeg_tree}/libavcodec/libpostproc/libpostproc.a"; then ++ ++ for element in ffmpeg; do ++ eval "LDFLAGS_${element}="'"'"-L${real_ffmpeg_tree}/libavcodec/libpostproc ${real_ffmpeg_tree}/libavcodec/libpostproc/libpostproc.a "'$'"{LDFLAGS_${element}} "'"' ++ am_modules_with_ldflags="${am_modules_with_ldflags} ${element}" ++ done ++ ++ elif test -f "${real_ffmpeg_tree}/libpostproc/libpostproc.a"; then ++ ++ for element in ffmpeg; do ++ eval "LDFLAGS_${element}="'"'"-L${real_ffmpeg_tree}/libpostproc ${real_ffmpeg_tree}/libpostproc/libpostproc.a "'$'"{LDFLAGS_${element}} "'"' ++ am_modules_with_ldflags="${am_modules_with_ldflags} ${element}" ++ done ++ ++ ++ for element in ffmpeg stream_out_switcher; do ++ eval "CPPFLAGS_${element}="'"$'"{CPPFLAGS_${element}} -I${real_ffmpeg_tree}"'"' ++ am_modules_with_cppflags="${am_modules_with_cppflags} ${element}" ++ done ++ ++ else ++ { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 ++$as_echo "no" >&6; } ++ as_fn_error $? "cannot find libpostproc.a in ${real_ffmpeg_tree}/libavcodec/libpostproc/. Make sure you configured ffmpeg with --enable-pp" "$LINENO" 5 ++ fi ++ fi ++ { $as_echo "$as_me:${as_lineno-$LINENO}: result: ${real_ffmpeg_tree}/libavcodec/libavcodec.a" >&5 ++$as_echo "${real_ffmpeg_tree}/libavcodec/libavcodec.a" >&6; } ++ ++ if fgrep -s "CONFIG_ZLIB=yes" "${real_ffmpeg_tree}/config.mak"; then ++ if test "${with_ffmpeg_zlib}" != "yes"; then ++ ++ for element in ffmpeg; do ++ eval "LDFLAGS_${element}="'"'"-lz "'$'"{LDFLAGS_${element}} "'"' ++ am_modules_with_ldflags="${am_modules_with_ldflags} ${element}" ++ done ++ ++ fi ++ fi ++ if fgrep -s "CONFIG_MP3LAME=yes" "${real_ffmpeg_tree}/config.mak"; then ++ if test "${with_ffmpeg_mp3lame}" != "yes"; then ++ ++ for element in ffmpeg; do ++ eval "LDFLAGS_${element}="'"'"-lmp3lame "'$'"{LDFLAGS_${element}} "'"' ++ am_modules_with_ldflags="${am_modules_with_ldflags} ${element}" ++ done ++ ++ fi ++ fi ++ if fgrep -s "CONFIG_FAAC=yes" "${real_ffmpeg_tree}/config.mak"; then ++ if test "${with_ffmpeg_faac}" != "yes"; then ++ ++ for element in ffmpeg; do ++ eval "LDFLAGS_${element}="'"'"-lfaac "'$'"{LDFLAGS_${element}} "'"' ++ am_modules_with_ldflags="${am_modules_with_ldflags} ${element}" ++ done ++ ++ fi ++ fi ++ if fgrep -s "CONFIG_DTS=yes" "${real_ffmpeg_tree}/config.mak"; then ++ if test "${with_ffmpeg_dts}" != "yes"; then ++ LDFLAGS="${LDFLAGS_save} ${LDFLAGS_ffmpeg}" ++ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for dts_free in -ldts_pic" >&5 ++$as_echo_n "checking for dts_free in -ldts_pic... " >&6; } ++if ${ac_cv_lib_dts_pic_dts_free+:} false; then : ++ $as_echo_n "(cached) " >&6 + else + ac_check_lib_save_LIBS=$LIBS +-LIBS="-lavformat -lavcodec -lz $LDAVUTIL $LIBS" +-cat >conftest.$ac_ext <<_ACEOF +-/* confdefs.h. */ +-_ACEOF +-cat confdefs.h >>conftest.$ac_ext +-cat >>conftest.$ac_ext <<_ACEOF ++LIBS="-ldts_pic $LIBS" ++cat confdefs.h - <<_ACEOF >conftest.$ac_ext + /* end confdefs.h. */ + + /* Override any GCC internal prototype to avoid an error. +@@ -46881,344 +33236,453 @@ cat >>conftest.$ac_ext <<_ACEOF + #ifdef __cplusplus + extern "C" + #endif +-char av_open_input_stream (); ++char dts_free (); + int + main () + { +-return av_open_input_stream (); ++return dts_free (); + ; + return 0; + } + _ACEOF +-rm -f conftest.$ac_objext conftest$ac_exeext +-if { (ac_try="$ac_link" +-case "(($ac_try" in +- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; +- *) ac_try_echo=$ac_try;; +-esac +-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 +- (eval "$ac_link") 2>conftest.er1 +- ac_status=$? +- grep -v '^ *+' conftest.er1 >conftest.err +- rm -f conftest.er1 +- cat conftest.err >&5 +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); } && { +- test -z "$ac_c_werror_flag" || +- test ! -s conftest.err +- } && test -s conftest$ac_exeext && +- $as_test_x conftest$ac_exeext; then +- ac_cv_lib_avformat_av_open_input_stream=yes ++if ac_fn_c_try_link "$LINENO"; then : ++ ac_cv_lib_dts_pic_dts_free=yes + else +- echo "$as_me: failed program was:" >&5 +-sed 's/^/| /' conftest.$ac_ext >&5 +- +- ac_cv_lib_avformat_av_open_input_stream=no ++ ac_cv_lib_dts_pic_dts_free=no + fi +- +-rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ +- conftest$ac_exeext conftest.$ac_ext ++rm -f core conftest.err conftest.$ac_objext \ ++ conftest$ac_exeext conftest.$ac_ext + LIBS=$ac_check_lib_save_LIBS + fi +-{ echo "$as_me:$LINENO: result: $ac_cv_lib_avformat_av_open_input_stream" >&5 +-echo "${ECHO_T}$ac_cv_lib_avformat_av_open_input_stream" >&6; } +-if test $ac_cv_lib_avformat_av_open_input_stream = yes; then ++{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_dts_pic_dts_free" >&5 ++$as_echo "$ac_cv_lib_dts_pic_dts_free" >&6; } ++if test "x$ac_cv_lib_dts_pic_dts_free" = xyes; then : ++ ++ for element in ffmpeg; do ++ eval "LDFLAGS_${element}="'"'"-ldts_pic "'$'"{LDFLAGS_${element}} "'"' ++ am_modules_with_ldflags="${am_modules_with_ldflags} ${element}" ++ done + ++else + + for element in ffmpeg; do +- eval "LDFLAGS_${element}="'"'"-lavformat -lz "'$'"{LDFLAGS_${element}} "'"' ++ eval "LDFLAGS_${element}="'"'"-ldts "'$'"{LDFLAGS_${element}} "'"' + am_modules_with_ldflags="${am_modules_with_ldflags} ${element}" + done + + fi + +- LDFLAGS="${LDFLAGS_save}" +- CPPFLAGS="${CPPFLAGS_save}" ++ LDFLAGS="${LDFLAGS_save}" ++ fi ++ fi ++ if fgrep -s "CONFIG_VORBIS=yes" "${real_ffmpeg_tree}/config.mak"; then ++ ++ for element in ffmpeg; do ++ eval "LDFLAGS_${element}="'"'"-lvorbis -lvorbisenc "'$'"{LDFLAGS_${element}} "'"' ++ am_modules_with_ldflags="${am_modules_with_ldflags} ${element}" ++ done ++ ++ fi ++ if fgrep -s "CONFIG_FAAD=yes" "${real_ffmpeg_tree}/config.mak"; then ++ ++ for element in ffmpeg; do ++ eval "LDFLAGS_${element}="'"'"-lfaad "'$'"{LDFLAGS_${element}} "'"' ++ am_modules_with_ldflags="${am_modules_with_ldflags} ${element}" ++ done ++ ++ fi ++ if fgrep -s "CONFIG_XVID=yes" "${real_ffmpeg_tree}/config.mak"; then ++ ++ for element in ffmpeg; do ++ eval "LDFLAGS_${element}="'"'"-lxvidcore "'$'"{LDFLAGS_${element}} "'"' ++ am_modules_with_ldflags="${am_modules_with_ldflags} ${element}" ++ done ++ ++ fi ++ ++ ++ BUILTINS="${BUILTINS} ffmpeg" ++ ++ if test "${enable_sout}" != "no"; then ++ ++ BUILTINS="${BUILTINS} stream_out_switcher" ++ ++ fi ++ ++ if test -f "${real_ffmpeg_tree}/libavutil/libavutil.a"; then ++ ++ for element in ffmpeg; do ++ eval "LDFLAGS_${element}="'"'"-L${real_ffmpeg_tree}/libavutil ${real_ffmpeg_tree}/libavutil/libavutil.a "'$'"{LDFLAGS_${element}} "'"' ++ am_modules_with_ldflags="${am_modules_with_ldflags} ${element}" ++ done ++ + ++ for element in ffmpeg stream_out_switcher; do ++ eval "CPPFLAGS_${element}="'"$'"{CPPFLAGS_${element}} -I${real_ffmpeg_tree}/libavutil"'"' ++ am_modules_with_cppflags="${am_modules_with_cppflags} ${element}" ++ done ++ ++ fi ++ ++ ++ for element in ffmpeg; do ++ eval "LDFLAGS_${element}="'"'"-L${real_ffmpeg_tree}/libavcodec ${real_ffmpeg_tree}/libavcodec/libavcodec.a "'$'"{LDFLAGS_${element}} "'"' ++ am_modules_with_ldflags="${am_modules_with_ldflags} ${element}" ++ done ++ ++ ++ for element in ffmpeg stream_out_switcher; do ++ eval "CPPFLAGS_${element}="'"$'"{CPPFLAGS_${element}} -I${real_ffmpeg_tree}/libavcodec"'"' ++ am_modules_with_cppflags="${am_modules_with_cppflags} ${element}" ++ done ++ ++ ++ if test -f "${real_ffmpeg_tree}/libavformat/libavformat.a"; then ++ ++$as_echo "#define HAVE_LIBAVFORMAT_TREE 1" >>confdefs.h ++ ++ ++ for element in ffmpeg; do ++ eval "LDFLAGS_${element}="'"'"-L${real_ffmpeg_tree}/libavformat ${real_ffmpeg_tree}/libavformat/libavformat.a "'$'"{LDFLAGS_${element}} "'"' ++ am_modules_with_ldflags="${am_modules_with_ldflags} ${element}" ++ done ++ ++ ++ for element in ffmpeg stream_out_switcher; do ++ eval "CPPFLAGS_${element}="'"$'"{CPPFLAGS_${element}} -I${real_ffmpeg_tree}/libavformat"'"' ++ am_modules_with_cppflags="${am_modules_with_cppflags} ${element}" ++ done ++ ++ fi + else +- FFMPEG_CFLAGS=$pkg_cv_FFMPEG_CFLAGS +- FFMPEG_LIBS=$pkg_cv_FFMPEG_LIBS +- { echo "$as_me:$LINENO: result: yes" >&5 +-echo "${ECHO_T}yes" >&6; } + +- CPPFLAGS="${CPPFLAGS} ${FFMPEG_CFLAGS}" +- CFLAGS="${CFLAGS} ${FFMPEG_CFLAGS}" + ++ FFMPEG_PATH="${PATH}" ++ ++# Check whether --with-ffmpeg-config-path was given. ++if test "${with_ffmpeg_config_path+set}" = set; then : ++ withval=$with_ffmpeg_config_path; if test "${with_ffmpeg_config_path}" != "no" ++ then ++ FFMPEG_PATH="${with_ffmpeg_config_path}" ++ fi ++fi + +-for ac_header in ffmpeg/avcodec.h libavcodec/avcodec.h ++ # Extract the first word of "ffmpeg-config", so it can be a program name with args. ++set dummy ffmpeg-config; ac_word=$2 ++{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 ++$as_echo_n "checking for $ac_word... " >&6; } ++if ${ac_cv_path_FFMPEG_CONFIG+:} false; then : ++ $as_echo_n "(cached) " >&6 ++else ++ case $FFMPEG_CONFIG in ++ [\\/]* | ?:[\\/]*) ++ ac_cv_path_FFMPEG_CONFIG="$FFMPEG_CONFIG" # Let the user override the test with a path. ++ ;; ++ *) ++ as_save_IFS=$IFS; IFS=$PATH_SEPARATOR ++for as_dir in ${FFMPEG_PATH} + do +-as_ac_Header=`echo "ac_cv_header_$ac_header" | $as_tr_sh` +-if { as_var=$as_ac_Header; eval "test \"\${$as_var+set}\" = set"; }; then +- { echo "$as_me:$LINENO: checking for $ac_header" >&5 +-echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6; } +-if { as_var=$as_ac_Header; eval "test \"\${$as_var+set}\" = set"; }; then +- echo $ECHO_N "(cached) $ECHO_C" >&6 ++ IFS=$as_save_IFS ++ test -z "$as_dir" && as_dir=. ++ for ac_exec_ext in '' $ac_executable_extensions; do ++ if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then ++ ac_cv_path_FFMPEG_CONFIG="$as_dir/$ac_word$ac_exec_ext" ++ $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 ++ break 2 ++ fi ++done ++ done ++IFS=$as_save_IFS ++ ++ test -z "$ac_cv_path_FFMPEG_CONFIG" && ac_cv_path_FFMPEG_CONFIG="no" ++ ;; ++esac + fi +-ac_res=`eval echo '${'$as_ac_Header'}'` +- { echo "$as_me:$LINENO: result: $ac_res" >&5 +-echo "${ECHO_T}$ac_res" >&6; } ++FFMPEG_CONFIG=$ac_cv_path_FFMPEG_CONFIG ++if test -n "$FFMPEG_CONFIG"; then ++ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $FFMPEG_CONFIG" >&5 ++$as_echo "$FFMPEG_CONFIG" >&6; } + else +- # Is the header compilable? +-{ echo "$as_me:$LINENO: checking $ac_header usability" >&5 +-echo $ECHO_N "checking $ac_header usability... $ECHO_C" >&6; } +-cat >conftest.$ac_ext <<_ACEOF +-/* confdefs.h. */ ++ { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 ++$as_echo "no" >&6; } ++fi ++ ++ ++ if test "${FFMPEG_CONFIG}" != "no" ++ then ++ for ac_header in ffmpeg/avcodec.h libavcodec/avcodec.h ++do : ++ as_ac_Header=`$as_echo "ac_cv_header_$ac_header" | $as_tr_sh` ++ac_fn_c_check_header_mongrel "$LINENO" "$ac_header" "$as_ac_Header" "$ac_includes_default" ++if eval test \"x\$"$as_ac_Header"\" = x"yes"; then : ++ cat >>confdefs.h <<_ACEOF ++#define `$as_echo "HAVE_$ac_header" | $as_tr_cpp` 1 + _ACEOF +-cat confdefs.h >>conftest.$ac_ext +-cat >>conftest.$ac_ext <<_ACEOF +-/* end confdefs.h. */ +-$ac_includes_default +-#include <$ac_header> ++ ++fi ++ ++done ++ ++ for ac_header in ffmpeg/avformat.h libavformat/avformat.h ++do : ++ as_ac_Header=`$as_echo "ac_cv_header_$ac_header" | $as_tr_sh` ++ac_fn_c_check_header_mongrel "$LINENO" "$ac_header" "$as_ac_Header" "$ac_includes_default" ++if eval test \"x\$"$as_ac_Header"\" = x"yes"; then : ++ cat >>confdefs.h <<_ACEOF ++#define `$as_echo "HAVE_$ac_header" | $as_tr_cpp` 1 + _ACEOF +-rm -f conftest.$ac_objext +-if { (ac_try="$ac_compile" +-case "(($ac_try" in +- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; +- *) ac_try_echo=$ac_try;; +-esac +-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 +- (eval "$ac_compile") 2>conftest.er1 +- ac_status=$? +- grep -v '^ *+' conftest.er1 >conftest.err +- rm -f conftest.er1 +- cat conftest.err >&5 +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); } && { +- test -z "$ac_c_werror_flag" || +- test ! -s conftest.err +- } && test -s conftest.$ac_objext; then +- ac_header_compiler=yes +-else +- echo "$as_me: failed program was:" >&5 +-sed 's/^/| /' conftest.$ac_ext >&5 + +- ac_header_compiler=no + fi + +-rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext +-{ echo "$as_me:$LINENO: result: $ac_header_compiler" >&5 +-echo "${ECHO_T}$ac_header_compiler" >&6; } ++done + +-# Is the header present? +-{ echo "$as_me:$LINENO: checking $ac_header presence" >&5 +-echo $ECHO_N "checking $ac_header presence... $ECHO_C" >&6; } +-cat >conftest.$ac_ext <<_ACEOF +-/* confdefs.h. */ ++ for ac_header in ffmpeg/avutil.h libavutil/avutil.h ++do : ++ as_ac_Header=`$as_echo "ac_cv_header_$ac_header" | $as_tr_sh` ++ac_fn_c_check_header_mongrel "$LINENO" "$ac_header" "$as_ac_Header" "$ac_includes_default" ++if eval test \"x\$"$as_ac_Header"\" = x"yes"; then : ++ cat >>confdefs.h <<_ACEOF ++#define `$as_echo "HAVE_$ac_header" | $as_tr_cpp` 1 + _ACEOF +-cat confdefs.h >>conftest.$ac_ext +-cat >>conftest.$ac_ext <<_ACEOF +-/* end confdefs.h. */ +-#include <$ac_header> ++ ++fi ++ ++done ++ ++ for ac_header in postproc/postprocess.h libpostproc/postprocess.h. ++do : ++ as_ac_Header=`$as_echo "ac_cv_header_$ac_header" | $as_tr_sh` ++ac_fn_c_check_header_mongrel "$LINENO" "$ac_header" "$as_ac_Header" "$ac_includes_default" ++if eval test \"x\$"$as_ac_Header"\" = x"yes"; then : ++ cat >>confdefs.h <<_ACEOF ++#define `$as_echo "HAVE_$ac_header" | $as_tr_cpp` 1 + _ACEOF +-if { (ac_try="$ac_cpp conftest.$ac_ext" +-case "(($ac_try" in +- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; +- *) ac_try_echo=$ac_try;; +-esac +-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 +- (eval "$ac_cpp conftest.$ac_ext") 2>conftest.er1 ++ ++fi ++ ++done ++ ++ ++ PLUGINS="${PLUGINS} ffmpeg" ++ ++ if test "${enable_sout}" != "no"; then ++ ++ PLUGINS="${PLUGINS} stream_out_switcher" ++ ++ fi ++ ++ for element in ffmpeg stream_out_switcher; do ++ eval "CFLAGS_${element}="'"$'"{CFLAGS_${element}} `${FFMPEG_CONFIG} --cflags`"'"' ++ am_modules_with_cflags="${am_modules_with_cflags} ${element}" ++ done ++ ++ ++ for element in ffmpeg stream_out_switcher; do ++ eval "LDFLAGS_${element}="'"'"`${FFMPEG_CONFIG} --plugin-libs avcodec avformat postproc` "'$'"{LDFLAGS_${element}} "'"' ++ am_modules_with_ldflags="${am_modules_with_ldflags} ${element}" ++ done ++ ++ ++ else ++ ++ ++pkg_failed=no ++{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for FFMPEG" >&5 ++$as_echo_n "checking for FFMPEG... " >&6; } ++ ++if test -n "$PKG_CONFIG"; then ++ if test -n "$FFMPEG_CFLAGS"; then ++ pkg_cv_FFMPEG_CFLAGS="$FFMPEG_CFLAGS" ++ else ++ if test -n "$PKG_CONFIG" && \ ++ { { $as_echo "$as_me:${as_lineno-$LINENO}: \$PKG_CONFIG --exists --print-errors \"libavcodec, libavformat\""; } >&5 ++ ($PKG_CONFIG --exists --print-errors "libavcodec, libavformat") 2>&5 + ac_status=$? +- grep -v '^ *+' conftest.er1 >conftest.err +- rm -f conftest.er1 +- cat conftest.err >&5 +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); } >/dev/null && { +- test -z "$ac_c_preproc_warn_flag$ac_c_werror_flag" || +- test ! -s conftest.err +- }; then +- ac_header_preproc=yes ++ $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 ++ test $ac_status = 0; }; then ++ pkg_cv_FFMPEG_CFLAGS=`$PKG_CONFIG --cflags "libavcodec, libavformat" 2>/dev/null` + else +- echo "$as_me: failed program was:" >&5 +-sed 's/^/| /' conftest.$ac_ext >&5 +- +- ac_header_preproc=no ++ pkg_failed=yes ++fi ++ fi ++else ++ pkg_failed=untried ++fi ++if test -n "$PKG_CONFIG"; then ++ if test -n "$FFMPEG_LIBS"; then ++ pkg_cv_FFMPEG_LIBS="$FFMPEG_LIBS" ++ else ++ if test -n "$PKG_CONFIG" && \ ++ { { $as_echo "$as_me:${as_lineno-$LINENO}: \$PKG_CONFIG --exists --print-errors \"libavcodec, libavformat\""; } >&5 ++ ($PKG_CONFIG --exists --print-errors "libavcodec, libavformat") 2>&5 ++ ac_status=$? ++ $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 ++ test $ac_status = 0; }; then ++ pkg_cv_FFMPEG_LIBS=`$PKG_CONFIG --libs "libavcodec, libavformat" 2>/dev/null` ++else ++ pkg_failed=yes ++fi ++ fi ++else ++ pkg_failed=untried + fi + +-rm -f conftest.err conftest.$ac_ext +-{ echo "$as_me:$LINENO: result: $ac_header_preproc" >&5 +-echo "${ECHO_T}$ac_header_preproc" >&6; } + +-# So? What about this header? +-case $ac_header_compiler:$ac_header_preproc:$ac_c_preproc_warn_flag in +- yes:no: ) +- { echo "$as_me:$LINENO: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&5 +-echo "$as_me: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&2;} +- { echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the compiler's result" >&5 +-echo "$as_me: WARNING: $ac_header: proceeding with the compiler's result" >&2;} +- ac_header_preproc=yes +- ;; +- no:yes:* ) +- { echo "$as_me:$LINENO: WARNING: $ac_header: present but cannot be compiled" >&5 +-echo "$as_me: WARNING: $ac_header: present but cannot be compiled" >&2;} +- { echo "$as_me:$LINENO: WARNING: $ac_header: check for missing prerequisite headers?" >&5 +-echo "$as_me: WARNING: $ac_header: check for missing prerequisite headers?" >&2;} +- { echo "$as_me:$LINENO: WARNING: $ac_header: see the Autoconf documentation" >&5 +-echo "$as_me: WARNING: $ac_header: see the Autoconf documentation" >&2;} +- { echo "$as_me:$LINENO: WARNING: $ac_header: section \"Present But Cannot Be Compiled\"" >&5 +-echo "$as_me: WARNING: $ac_header: section \"Present But Cannot Be Compiled\"" >&2;} +- { echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the preprocessor's result" >&5 +-echo "$as_me: WARNING: $ac_header: proceeding with the preprocessor's result" >&2;} +- { echo "$as_me:$LINENO: WARNING: $ac_header: in the future, the compiler will take precedence" >&5 +-echo "$as_me: WARNING: $ac_header: in the future, the compiler will take precedence" >&2;} + +- ;; +-esac +-{ echo "$as_me:$LINENO: checking for $ac_header" >&5 +-echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6; } +-if { as_var=$as_ac_Header; eval "test \"\${$as_var+set}\" = set"; }; then +- echo $ECHO_N "(cached) $ECHO_C" >&6 ++if test $pkg_failed = yes; then ++ ++if $PKG_CONFIG --atleast-pkgconfig-version 0.20; then ++ _pkg_short_errors_supported=yes + else +- eval "$as_ac_Header=\$ac_header_preproc" ++ _pkg_short_errors_supported=no ++fi ++ if test $_pkg_short_errors_supported = yes; then ++ FFMPEG_PKG_ERRORS=`$PKG_CONFIG --short-errors --errors-to-stdout --print-errors "libavcodec, libavformat"` ++ else ++ FFMPEG_PKG_ERRORS=`$PKG_CONFIG --errors-to-stdout --print-errors "libavcodec, libavformat"` ++ fi ++ # Put the nasty error message in config.log where it belongs ++ echo "$FFMPEG_PKG_ERRORS" >&5 ++ ++ { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 ++$as_echo "no" >&6; } ++ ++ ++ CPPFLAGS="${CPPFLAGS_save} ${CPPFLAGS_ffmpeg}" ++ LDFLAGS="${LDFLAGS_save} ${LDFLAGS_ffmpeg}" ++ for ac_header in ffmpeg/avcodec.h libavcodec/avcodec.h ++do : ++ as_ac_Header=`$as_echo "ac_cv_header_$ac_header" | $as_tr_sh` ++ac_fn_c_check_header_mongrel "$LINENO" "$ac_header" "$as_ac_Header" "$ac_includes_default" ++if eval test \"x\$"$as_ac_Header"\" = x"yes"; then : ++ cat >>confdefs.h <<_ACEOF ++#define `$as_echo "HAVE_$ac_header" | $as_tr_cpp` 1 ++_ACEOF ++ ++fi ++ ++done ++ ++ for ac_header in ffmpeg/avformat.h libavformat/avformat.h ++do : ++ as_ac_Header=`$as_echo "ac_cv_header_$ac_header" | $as_tr_sh` ++ac_fn_c_check_header_mongrel "$LINENO" "$ac_header" "$as_ac_Header" "$ac_includes_default" ++if eval test \"x\$"$as_ac_Header"\" = x"yes"; then : ++ cat >>confdefs.h <<_ACEOF ++#define `$as_echo "HAVE_$ac_header" | $as_tr_cpp` 1 ++_ACEOF ++ ++fi ++ ++done ++ ++ for ac_header in ffmpeg/avutil.h libavutil/avutil.h ++do : ++ as_ac_Header=`$as_echo "ac_cv_header_$ac_header" | $as_tr_sh` ++ac_fn_c_check_header_mongrel "$LINENO" "$ac_header" "$as_ac_Header" "$ac_includes_default" ++if eval test \"x\$"$as_ac_Header"\" = x"yes"; then : ++ cat >>confdefs.h <<_ACEOF ++#define `$as_echo "HAVE_$ac_header" | $as_tr_cpp` 1 ++_ACEOF ++ ++fi ++ ++done ++ ++ for ac_header in postproc/postprocess.h libpostproc/postprocess.h ++do : ++ as_ac_Header=`$as_echo "ac_cv_header_$ac_header" | $as_tr_sh` ++ac_fn_c_check_header_mongrel "$LINENO" "$ac_header" "$as_ac_Header" "$ac_includes_default" ++if eval test \"x\$"$as_ac_Header"\" = x"yes"; then : ++ cat >>confdefs.h <<_ACEOF ++#define `$as_echo "HAVE_$ac_header" | $as_tr_cpp` 1 ++_ACEOF ++ + fi +-ac_res=`eval echo '${'$as_ac_Header'}'` +- { echo "$as_me:$LINENO: result: $ac_res" >&5 +-echo "${ECHO_T}$ac_res" >&6; } + +-fi +-if test `eval echo '${'$as_ac_Header'}'` = yes; then ++done ++ ++ ++ ++ BUILTINS="${BUILTINS} ffmpeg" ++ ++ ++ for element in ffmpeg; do ++ eval "LDFLAGS_${element}="'"'"-lavutil "'$'"{LDFLAGS_${element}} "'"' ++ am_modules_with_ldflags="${am_modules_with_ldflags} ${element}" ++ done ++ ++ LDAVUTIL="-lavutil" ++ ++ for element in ffmpeg; do ++ eval "LDFLAGS_${element}="'"'"-lpostproc "'$'"{LDFLAGS_${element}} "'"' ++ am_modules_with_ldflags="${am_modules_with_ldflags} ${element}" ++ done ++ ++ ++ for element in ffmpeg; do ++ eval "LDFLAGS_${element}="'"'"-lavcodec "'$'"{LDFLAGS_${element}} "'"' ++ am_modules_with_ldflags="${am_modules_with_ldflags} ${element}" ++ done ++ ++ ++ for element in ffmpeg; do ++ eval "LDFLAGS_${element}="'"'"-lavformat -lz "'$'"{LDFLAGS_${element}} "'"' ++ am_modules_with_ldflags="${am_modules_with_ldflags} ${element}" ++ done ++ ++ ++elif test $pkg_failed = untried; then ++ ++ ++ CPPFLAGS="${CPPFLAGS_save} ${CPPFLAGS_ffmpeg}" ++ LDFLAGS="${LDFLAGS_save} ${LDFLAGS_ffmpeg}" ++ for ac_header in ffmpeg/avcodec.h libavcodec/avcodec.h ++do : ++ as_ac_Header=`$as_echo "ac_cv_header_$ac_header" | $as_tr_sh` ++ac_fn_c_check_header_mongrel "$LINENO" "$ac_header" "$as_ac_Header" "$ac_includes_default" ++if eval test \"x\$"$as_ac_Header"\" = x"yes"; then : + cat >>confdefs.h <<_ACEOF +-#define `echo "HAVE_$ac_header" | $as_tr_cpp` 1 ++#define `$as_echo "HAVE_$ac_header" | $as_tr_cpp` 1 + _ACEOF + + fi + + done + +- +- +-for ac_header in ffmpeg/avformat.h libavformat/avformat.h +-do +-as_ac_Header=`echo "ac_cv_header_$ac_header" | $as_tr_sh` +-if { as_var=$as_ac_Header; eval "test \"\${$as_var+set}\" = set"; }; then +- { echo "$as_me:$LINENO: checking for $ac_header" >&5 +-echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6; } +-if { as_var=$as_ac_Header; eval "test \"\${$as_var+set}\" = set"; }; then +- echo $ECHO_N "(cached) $ECHO_C" >&6 +-fi +-ac_res=`eval echo '${'$as_ac_Header'}'` +- { echo "$as_me:$LINENO: result: $ac_res" >&5 +-echo "${ECHO_T}$ac_res" >&6; } +-else +- # Is the header compilable? +-{ echo "$as_me:$LINENO: checking $ac_header usability" >&5 +-echo $ECHO_N "checking $ac_header usability... $ECHO_C" >&6; } +-cat >conftest.$ac_ext <<_ACEOF +-/* confdefs.h. */ +-_ACEOF +-cat confdefs.h >>conftest.$ac_ext +-cat >>conftest.$ac_ext <<_ACEOF +-/* end confdefs.h. */ +-$ac_includes_default +-#include <$ac_header> ++ for ac_header in ffmpeg/avformat.h libavformat/avformat.h ++do : ++ as_ac_Header=`$as_echo "ac_cv_header_$ac_header" | $as_tr_sh` ++ac_fn_c_check_header_mongrel "$LINENO" "$ac_header" "$as_ac_Header" "$ac_includes_default" ++if eval test \"x\$"$as_ac_Header"\" = x"yes"; then : ++ cat >>confdefs.h <<_ACEOF ++#define `$as_echo "HAVE_$ac_header" | $as_tr_cpp` 1 + _ACEOF +-rm -f conftest.$ac_objext +-if { (ac_try="$ac_compile" +-case "(($ac_try" in +- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; +- *) ac_try_echo=$ac_try;; +-esac +-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 +- (eval "$ac_compile") 2>conftest.er1 +- ac_status=$? +- grep -v '^ *+' conftest.er1 >conftest.err +- rm -f conftest.er1 +- cat conftest.err >&5 +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); } && { +- test -z "$ac_c_werror_flag" || +- test ! -s conftest.err +- } && test -s conftest.$ac_objext; then +- ac_header_compiler=yes +-else +- echo "$as_me: failed program was:" >&5 +-sed 's/^/| /' conftest.$ac_ext >&5 + +- ac_header_compiler=no + fi + +-rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext +-{ echo "$as_me:$LINENO: result: $ac_header_compiler" >&5 +-echo "${ECHO_T}$ac_header_compiler" >&6; } ++done + +-# Is the header present? +-{ echo "$as_me:$LINENO: checking $ac_header presence" >&5 +-echo $ECHO_N "checking $ac_header presence... $ECHO_C" >&6; } +-cat >conftest.$ac_ext <<_ACEOF +-/* confdefs.h. */ +-_ACEOF +-cat confdefs.h >>conftest.$ac_ext +-cat >>conftest.$ac_ext <<_ACEOF +-/* end confdefs.h. */ +-#include <$ac_header> ++ for ac_header in ffmpeg/avutil.h libavutil/avutil.h ++do : ++ as_ac_Header=`$as_echo "ac_cv_header_$ac_header" | $as_tr_sh` ++ac_fn_c_check_header_mongrel "$LINENO" "$ac_header" "$as_ac_Header" "$ac_includes_default" ++if eval test \"x\$"$as_ac_Header"\" = x"yes"; then : ++ cat >>confdefs.h <<_ACEOF ++#define `$as_echo "HAVE_$ac_header" | $as_tr_cpp` 1 + _ACEOF +-if { (ac_try="$ac_cpp conftest.$ac_ext" +-case "(($ac_try" in +- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; +- *) ac_try_echo=$ac_try;; +-esac +-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 +- (eval "$ac_cpp conftest.$ac_ext") 2>conftest.er1 +- ac_status=$? +- grep -v '^ *+' conftest.er1 >conftest.err +- rm -f conftest.er1 +- cat conftest.err >&5 +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); } >/dev/null && { +- test -z "$ac_c_preproc_warn_flag$ac_c_werror_flag" || +- test ! -s conftest.err +- }; then +- ac_header_preproc=yes +-else +- echo "$as_me: failed program was:" >&5 +-sed 's/^/| /' conftest.$ac_ext >&5 + +- ac_header_preproc=no + fi + +-rm -f conftest.err conftest.$ac_ext +-{ echo "$as_me:$LINENO: result: $ac_header_preproc" >&5 +-echo "${ECHO_T}$ac_header_preproc" >&6; } +- +-# So? What about this header? +-case $ac_header_compiler:$ac_header_preproc:$ac_c_preproc_warn_flag in +- yes:no: ) +- { echo "$as_me:$LINENO: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&5 +-echo "$as_me: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&2;} +- { echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the compiler's result" >&5 +-echo "$as_me: WARNING: $ac_header: proceeding with the compiler's result" >&2;} +- ac_header_preproc=yes +- ;; +- no:yes:* ) +- { echo "$as_me:$LINENO: WARNING: $ac_header: present but cannot be compiled" >&5 +-echo "$as_me: WARNING: $ac_header: present but cannot be compiled" >&2;} +- { echo "$as_me:$LINENO: WARNING: $ac_header: check for missing prerequisite headers?" >&5 +-echo "$as_me: WARNING: $ac_header: check for missing prerequisite headers?" >&2;} +- { echo "$as_me:$LINENO: WARNING: $ac_header: see the Autoconf documentation" >&5 +-echo "$as_me: WARNING: $ac_header: see the Autoconf documentation" >&2;} +- { echo "$as_me:$LINENO: WARNING: $ac_header: section \"Present But Cannot Be Compiled\"" >&5 +-echo "$as_me: WARNING: $ac_header: section \"Present But Cannot Be Compiled\"" >&2;} +- { echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the preprocessor's result" >&5 +-echo "$as_me: WARNING: $ac_header: proceeding with the preprocessor's result" >&2;} +- { echo "$as_me:$LINENO: WARNING: $ac_header: in the future, the compiler will take precedence" >&5 +-echo "$as_me: WARNING: $ac_header: in the future, the compiler will take precedence" >&2;} +- +- ;; +-esac +-{ echo "$as_me:$LINENO: checking for $ac_header" >&5 +-echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6; } +-if { as_var=$as_ac_Header; eval "test \"\${$as_var+set}\" = set"; }; then +- echo $ECHO_N "(cached) $ECHO_C" >&6 +-else +- eval "$as_ac_Header=\$ac_header_preproc" +-fi +-ac_res=`eval echo '${'$as_ac_Header'}'` +- { echo "$as_me:$LINENO: result: $ac_res" >&5 +-echo "${ECHO_T}$ac_res" >&6; } ++done + +-fi +-if test `eval echo '${'$as_ac_Header'}'` = yes; then ++ for ac_header in postproc/postprocess.h libpostproc/postprocess.h ++do : ++ as_ac_Header=`$as_echo "ac_cv_header_$ac_header" | $as_tr_sh` ++ac_fn_c_check_header_mongrel "$LINENO" "$ac_header" "$as_ac_Header" "$ac_includes_default" ++if eval test \"x\$"$as_ac_Header"\" = x"yes"; then : + cat >>confdefs.h <<_ACEOF +-#define `echo "HAVE_$ac_header" | $as_tr_cpp` 1 ++#define `$as_echo "HAVE_$ac_header" | $as_tr_cpp` 1 + _ACEOF + + fi +@@ -47227,280 +33691,88 @@ done + + + +-for ac_header in ffmpeg/avutil.h libavutil/avutil.h +-do +-as_ac_Header=`echo "ac_cv_header_$ac_header" | $as_tr_sh` +-if { as_var=$as_ac_Header; eval "test \"\${$as_var+set}\" = set"; }; then +- { echo "$as_me:$LINENO: checking for $ac_header" >&5 +-echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6; } +-if { as_var=$as_ac_Header; eval "test \"\${$as_var+set}\" = set"; }; then +- echo $ECHO_N "(cached) $ECHO_C" >&6 +-fi +-ac_res=`eval echo '${'$as_ac_Header'}'` +- { echo "$as_me:$LINENO: result: $ac_res" >&5 +-echo "${ECHO_T}$ac_res" >&6; } +-else +- # Is the header compilable? +-{ echo "$as_me:$LINENO: checking $ac_header usability" >&5 +-echo $ECHO_N "checking $ac_header usability... $ECHO_C" >&6; } +-cat >conftest.$ac_ext <<_ACEOF +-/* confdefs.h. */ +-_ACEOF +-cat confdefs.h >>conftest.$ac_ext +-cat >>conftest.$ac_ext <<_ACEOF +-/* end confdefs.h. */ +-$ac_includes_default +-#include <$ac_header> +-_ACEOF +-rm -f conftest.$ac_objext +-if { (ac_try="$ac_compile" +-case "(($ac_try" in +- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; +- *) ac_try_echo=$ac_try;; +-esac +-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 +- (eval "$ac_compile") 2>conftest.er1 +- ac_status=$? +- grep -v '^ *+' conftest.er1 >conftest.err +- rm -f conftest.er1 +- cat conftest.err >&5 +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); } && { +- test -z "$ac_c_werror_flag" || +- test ! -s conftest.err +- } && test -s conftest.$ac_objext; then +- ac_header_compiler=yes +-else +- echo "$as_me: failed program was:" >&5 +-sed 's/^/| /' conftest.$ac_ext >&5 ++ BUILTINS="${BUILTINS} ffmpeg" + +- ac_header_compiler=no +-fi + +-rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext +-{ echo "$as_me:$LINENO: result: $ac_header_compiler" >&5 +-echo "${ECHO_T}$ac_header_compiler" >&6; } ++ for element in ffmpeg; do ++ eval "LDFLAGS_${element}="'"'"-lavutil "'$'"{LDFLAGS_${element}} "'"' ++ am_modules_with_ldflags="${am_modules_with_ldflags} ${element}" ++ done + +-# Is the header present? +-{ echo "$as_me:$LINENO: checking $ac_header presence" >&5 +-echo $ECHO_N "checking $ac_header presence... $ECHO_C" >&6; } +-cat >conftest.$ac_ext <<_ACEOF +-/* confdefs.h. */ +-_ACEOF +-cat confdefs.h >>conftest.$ac_ext +-cat >>conftest.$ac_ext <<_ACEOF +-/* end confdefs.h. */ +-#include <$ac_header> +-_ACEOF +-if { (ac_try="$ac_cpp conftest.$ac_ext" +-case "(($ac_try" in +- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; +- *) ac_try_echo=$ac_try;; +-esac +-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 +- (eval "$ac_cpp conftest.$ac_ext") 2>conftest.er1 +- ac_status=$? +- grep -v '^ *+' conftest.er1 >conftest.err +- rm -f conftest.er1 +- cat conftest.err >&5 +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); } >/dev/null && { +- test -z "$ac_c_preproc_warn_flag$ac_c_werror_flag" || +- test ! -s conftest.err +- }; then +- ac_header_preproc=yes +-else +- echo "$as_me: failed program was:" >&5 +-sed 's/^/| /' conftest.$ac_ext >&5 ++ LDAVUTIL="-lavutil" + +- ac_header_preproc=no +-fi ++ for element in ffmpeg; do ++ eval "LDFLAGS_${element}="'"'"-lpostproc "'$'"{LDFLAGS_${element}} "'"' ++ am_modules_with_ldflags="${am_modules_with_ldflags} ${element}" ++ done + +-rm -f conftest.err conftest.$ac_ext +-{ echo "$as_me:$LINENO: result: $ac_header_preproc" >&5 +-echo "${ECHO_T}$ac_header_preproc" >&6; } + +-# So? What about this header? +-case $ac_header_compiler:$ac_header_preproc:$ac_c_preproc_warn_flag in +- yes:no: ) +- { echo "$as_me:$LINENO: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&5 +-echo "$as_me: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&2;} +- { echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the compiler's result" >&5 +-echo "$as_me: WARNING: $ac_header: proceeding with the compiler's result" >&2;} +- ac_header_preproc=yes +- ;; +- no:yes:* ) +- { echo "$as_me:$LINENO: WARNING: $ac_header: present but cannot be compiled" >&5 +-echo "$as_me: WARNING: $ac_header: present but cannot be compiled" >&2;} +- { echo "$as_me:$LINENO: WARNING: $ac_header: check for missing prerequisite headers?" >&5 +-echo "$as_me: WARNING: $ac_header: check for missing prerequisite headers?" >&2;} +- { echo "$as_me:$LINENO: WARNING: $ac_header: see the Autoconf documentation" >&5 +-echo "$as_me: WARNING: $ac_header: see the Autoconf documentation" >&2;} +- { echo "$as_me:$LINENO: WARNING: $ac_header: section \"Present But Cannot Be Compiled\"" >&5 +-echo "$as_me: WARNING: $ac_header: section \"Present But Cannot Be Compiled\"" >&2;} +- { echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the preprocessor's result" >&5 +-echo "$as_me: WARNING: $ac_header: proceeding with the preprocessor's result" >&2;} +- { echo "$as_me:$LINENO: WARNING: $ac_header: in the future, the compiler will take precedence" >&5 +-echo "$as_me: WARNING: $ac_header: in the future, the compiler will take precedence" >&2;} ++ for element in ffmpeg; do ++ eval "LDFLAGS_${element}="'"'"-lavcodec "'$'"{LDFLAGS_${element}} "'"' ++ am_modules_with_ldflags="${am_modules_with_ldflags} ${element}" ++ done ++ ++ ++ for element in ffmpeg; do ++ eval "LDFLAGS_${element}="'"'"-lavformat -lz "'$'"{LDFLAGS_${element}} "'"' ++ am_modules_with_ldflags="${am_modules_with_ldflags} ${element}" ++ done ++ + +- ;; +-esac +-{ echo "$as_me:$LINENO: checking for $ac_header" >&5 +-echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6; } +-if { as_var=$as_ac_Header; eval "test \"\${$as_var+set}\" = set"; }; then +- echo $ECHO_N "(cached) $ECHO_C" >&6 + else +- eval "$as_ac_Header=\$ac_header_preproc" +-fi +-ac_res=`eval echo '${'$as_ac_Header'}'` +- { echo "$as_me:$LINENO: result: $ac_res" >&5 +-echo "${ECHO_T}$ac_res" >&6; } ++ FFMPEG_CFLAGS=$pkg_cv_FFMPEG_CFLAGS ++ FFMPEG_LIBS=$pkg_cv_FFMPEG_LIBS ++ { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5 ++$as_echo "yes" >&6; } + +-fi +-if test `eval echo '${'$as_ac_Header'}'` = yes; then ++ CPPFLAGS="${CPPFLAGS} ${FFMPEG_CFLAGS}" ++ CFLAGS="${CFLAGS} ${FFMPEG_CFLAGS}" ++ for ac_header in ffmpeg/avcodec.h libavcodec/avcodec.h ++do : ++ as_ac_Header=`$as_echo "ac_cv_header_$ac_header" | $as_tr_sh` ++ac_fn_c_check_header_mongrel "$LINENO" "$ac_header" "$as_ac_Header" "$ac_includes_default" ++if eval test \"x\$"$as_ac_Header"\" = x"yes"; then : + cat >>confdefs.h <<_ACEOF +-#define `echo "HAVE_$ac_header" | $as_tr_cpp` 1 ++#define `$as_echo "HAVE_$ac_header" | $as_tr_cpp` 1 + _ACEOF + + fi + + done + +- +- +-for ac_header in postproc/postprocess.h libpostproc/postprocess.h +-do +-as_ac_Header=`echo "ac_cv_header_$ac_header" | $as_tr_sh` +-if { as_var=$as_ac_Header; eval "test \"\${$as_var+set}\" = set"; }; then +- { echo "$as_me:$LINENO: checking for $ac_header" >&5 +-echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6; } +-if { as_var=$as_ac_Header; eval "test \"\${$as_var+set}\" = set"; }; then +- echo $ECHO_N "(cached) $ECHO_C" >&6 +-fi +-ac_res=`eval echo '${'$as_ac_Header'}'` +- { echo "$as_me:$LINENO: result: $ac_res" >&5 +-echo "${ECHO_T}$ac_res" >&6; } +-else +- # Is the header compilable? +-{ echo "$as_me:$LINENO: checking $ac_header usability" >&5 +-echo $ECHO_N "checking $ac_header usability... $ECHO_C" >&6; } +-cat >conftest.$ac_ext <<_ACEOF +-/* confdefs.h. */ +-_ACEOF +-cat confdefs.h >>conftest.$ac_ext +-cat >>conftest.$ac_ext <<_ACEOF +-/* end confdefs.h. */ +-$ac_includes_default +-#include <$ac_header> ++ for ac_header in ffmpeg/avformat.h libavformat/avformat.h ++do : ++ as_ac_Header=`$as_echo "ac_cv_header_$ac_header" | $as_tr_sh` ++ac_fn_c_check_header_mongrel "$LINENO" "$ac_header" "$as_ac_Header" "$ac_includes_default" ++if eval test \"x\$"$as_ac_Header"\" = x"yes"; then : ++ cat >>confdefs.h <<_ACEOF ++#define `$as_echo "HAVE_$ac_header" | $as_tr_cpp` 1 + _ACEOF +-rm -f conftest.$ac_objext +-if { (ac_try="$ac_compile" +-case "(($ac_try" in +- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; +- *) ac_try_echo=$ac_try;; +-esac +-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 +- (eval "$ac_compile") 2>conftest.er1 +- ac_status=$? +- grep -v '^ *+' conftest.er1 >conftest.err +- rm -f conftest.er1 +- cat conftest.err >&5 +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); } && { +- test -z "$ac_c_werror_flag" || +- test ! -s conftest.err +- } && test -s conftest.$ac_objext; then +- ac_header_compiler=yes +-else +- echo "$as_me: failed program was:" >&5 +-sed 's/^/| /' conftest.$ac_ext >&5 + +- ac_header_compiler=no + fi + +-rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext +-{ echo "$as_me:$LINENO: result: $ac_header_compiler" >&5 +-echo "${ECHO_T}$ac_header_compiler" >&6; } ++done + +-# Is the header present? +-{ echo "$as_me:$LINENO: checking $ac_header presence" >&5 +-echo $ECHO_N "checking $ac_header presence... $ECHO_C" >&6; } +-cat >conftest.$ac_ext <<_ACEOF +-/* confdefs.h. */ +-_ACEOF +-cat confdefs.h >>conftest.$ac_ext +-cat >>conftest.$ac_ext <<_ACEOF +-/* end confdefs.h. */ +-#include <$ac_header> ++ for ac_header in ffmpeg/avutil.h libavutil/avutil.h ++do : ++ as_ac_Header=`$as_echo "ac_cv_header_$ac_header" | $as_tr_sh` ++ac_fn_c_check_header_mongrel "$LINENO" "$ac_header" "$as_ac_Header" "$ac_includes_default" ++if eval test \"x\$"$as_ac_Header"\" = x"yes"; then : ++ cat >>confdefs.h <<_ACEOF ++#define `$as_echo "HAVE_$ac_header" | $as_tr_cpp` 1 + _ACEOF +-if { (ac_try="$ac_cpp conftest.$ac_ext" +-case "(($ac_try" in +- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; +- *) ac_try_echo=$ac_try;; +-esac +-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 +- (eval "$ac_cpp conftest.$ac_ext") 2>conftest.er1 +- ac_status=$? +- grep -v '^ *+' conftest.er1 >conftest.err +- rm -f conftest.er1 +- cat conftest.err >&5 +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); } >/dev/null && { +- test -z "$ac_c_preproc_warn_flag$ac_c_werror_flag" || +- test ! -s conftest.err +- }; then +- ac_header_preproc=yes +-else +- echo "$as_me: failed program was:" >&5 +-sed 's/^/| /' conftest.$ac_ext >&5 + +- ac_header_preproc=no + fi + +-rm -f conftest.err conftest.$ac_ext +-{ echo "$as_me:$LINENO: result: $ac_header_preproc" >&5 +-echo "${ECHO_T}$ac_header_preproc" >&6; } +- +-# So? What about this header? +-case $ac_header_compiler:$ac_header_preproc:$ac_c_preproc_warn_flag in +- yes:no: ) +- { echo "$as_me:$LINENO: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&5 +-echo "$as_me: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&2;} +- { echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the compiler's result" >&5 +-echo "$as_me: WARNING: $ac_header: proceeding with the compiler's result" >&2;} +- ac_header_preproc=yes +- ;; +- no:yes:* ) +- { echo "$as_me:$LINENO: WARNING: $ac_header: present but cannot be compiled" >&5 +-echo "$as_me: WARNING: $ac_header: present but cannot be compiled" >&2;} +- { echo "$as_me:$LINENO: WARNING: $ac_header: check for missing prerequisite headers?" >&5 +-echo "$as_me: WARNING: $ac_header: check for missing prerequisite headers?" >&2;} +- { echo "$as_me:$LINENO: WARNING: $ac_header: see the Autoconf documentation" >&5 +-echo "$as_me: WARNING: $ac_header: see the Autoconf documentation" >&2;} +- { echo "$as_me:$LINENO: WARNING: $ac_header: section \"Present But Cannot Be Compiled\"" >&5 +-echo "$as_me: WARNING: $ac_header: section \"Present But Cannot Be Compiled\"" >&2;} +- { echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the preprocessor's result" >&5 +-echo "$as_me: WARNING: $ac_header: proceeding with the preprocessor's result" >&2;} +- { echo "$as_me:$LINENO: WARNING: $ac_header: in the future, the compiler will take precedence" >&5 +-echo "$as_me: WARNING: $ac_header: in the future, the compiler will take precedence" >&2;} +- +- ;; +-esac +-{ echo "$as_me:$LINENO: checking for $ac_header" >&5 +-echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6; } +-if { as_var=$as_ac_Header; eval "test \"\${$as_var+set}\" = set"; }; then +- echo $ECHO_N "(cached) $ECHO_C" >&6 +-else +- eval "$as_ac_Header=\$ac_header_preproc" +-fi +-ac_res=`eval echo '${'$as_ac_Header'}'` +- { echo "$as_me:$LINENO: result: $ac_res" >&5 +-echo "${ECHO_T}$ac_res" >&6; } ++done + +-fi +-if test `eval echo '${'$as_ac_Header'}'` = yes; then ++ for ac_header in postproc/postprocess.h libpostproc/postprocess.h ++do : ++ as_ac_Header=`$as_echo "ac_cv_header_$ac_header" | $as_tr_sh` ++ac_fn_c_check_header_mongrel "$LINENO" "$ac_header" "$as_ac_Header" "$ac_includes_default" ++if eval test \"x\$"$as_ac_Header"\" = x"yes"; then : + cat >>confdefs.h <<_ACEOF +-#define `echo "HAVE_$ac_header" | $as_tr_cpp` 1 ++#define `$as_echo "HAVE_$ac_header" | $as_tr_cpp` 1 + _ACEOF + + fi +@@ -47541,19 +33813,19 @@ done + + + pkg_failed=no +-{ echo "$as_me:$LINENO: checking for POSTPROC" >&5 +-echo $ECHO_N "checking for POSTPROC... $ECHO_C" >&6; } ++{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for POSTPROC" >&5 ++$as_echo_n "checking for POSTPROC... " >&6; } + + if test -n "$PKG_CONFIG"; then + if test -n "$POSTPROC_CFLAGS"; then + pkg_cv_POSTPROC_CFLAGS="$POSTPROC_CFLAGS" + else + if test -n "$PKG_CONFIG" && \ +- { (echo "$as_me:$LINENO: \$PKG_CONFIG --exists --print-errors \"libpostproc\"") >&5 ++ { { $as_echo "$as_me:${as_lineno-$LINENO}: \$PKG_CONFIG --exists --print-errors \"libpostproc\""; } >&5 + ($PKG_CONFIG --exists --print-errors "libpostproc") 2>&5 + ac_status=$? +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); }; then ++ $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 ++ test $ac_status = 0; }; then + pkg_cv_POSTPROC_CFLAGS=`$PKG_CONFIG --cflags "libpostproc" 2>/dev/null` + else + pkg_failed=yes +@@ -47567,11 +33839,11 @@ if test -n "$PKG_CONFIG"; then + pkg_cv_POSTPROC_LIBS="$POSTPROC_LIBS" + else + if test -n "$PKG_CONFIG" && \ +- { (echo "$as_me:$LINENO: \$PKG_CONFIG --exists --print-errors \"libpostproc\"") >&5 ++ { { $as_echo "$as_me:${as_lineno-$LINENO}: \$PKG_CONFIG --exists --print-errors \"libpostproc\""; } >&5 + ($PKG_CONFIG --exists --print-errors "libpostproc") 2>&5 + ac_status=$? +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); }; then ++ $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 ++ test $ac_status = 0; }; then + pkg_cv_POSTPROC_LIBS=`$PKG_CONFIG --libs "libpostproc" 2>/dev/null` + else + pkg_failed=yes +@@ -47598,16 +33870,16 @@ fi + # Put the nasty error message in config.log where it belongs + echo "$POSTPROC_PKG_ERRORS" >&5 + +- { echo "$as_me:$LINENO: result: no" >&5 +-echo "${ECHO_T}no" >&6; } ++ { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 ++$as_echo "no" >&6; } + true + elif test $pkg_failed = untried; then + true + else + POSTPROC_CFLAGS=$pkg_cv_POSTPROC_CFLAGS + POSTPROC_LIBS=$pkg_cv_POSTPROC_LIBS +- { echo "$as_me:$LINENO: result: yes" >&5 +-echo "${ECHO_T}yes" >&6; } ++ { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5 ++$as_echo "yes" >&6; } + + + for element in ffmpeg; do +@@ -47630,130 +33902,36 @@ fi + fi + fi + +-if test "${enable_ffmpeg}" != "no" +-then +- CFLAGS="${CFLAGS} ${CFLAGS_ffmpeg}" +- LDFLAGS="${LDFLAGS} ${LDFLAGS_ffmpeg}" +- +-{ echo "$as_me:$LINENO: checking for img_resample in -lavcodec" >&5 +-echo $ECHO_N "checking for img_resample in -lavcodec... $ECHO_C" >&6; } +-if test "${ac_cv_lib_avcodec_img_resample+set}" = set; then +- echo $ECHO_N "(cached) $ECHO_C" >&6 +-else +- ac_check_lib_save_LIBS=$LIBS +-LIBS="-lavcodec -lavutil $LIBS" +-cat >conftest.$ac_ext <<_ACEOF +-/* confdefs.h. */ +-_ACEOF +-cat confdefs.h >>conftest.$ac_ext +-cat >>conftest.$ac_ext <<_ACEOF +-/* end confdefs.h. */ +- +-/* Override any GCC internal prototype to avoid an error. +- Use char because int might match the return type of a GCC +- builtin and then its argument prototype would still apply. */ +-#ifdef __cplusplus +-extern "C" +-#endif +-char img_resample (); +-int +-main () +-{ +-return img_resample (); +- ; +- return 0; +-} +-_ACEOF +-rm -f conftest.$ac_objext conftest$ac_exeext +-if { (ac_try="$ac_link" +-case "(($ac_try" in +- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; +- *) ac_try_echo=$ac_try;; +-esac +-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 +- (eval "$ac_link") 2>conftest.er1 +- ac_status=$? +- grep -v '^ *+' conftest.er1 >conftest.err +- rm -f conftest.er1 +- cat conftest.err >&5 +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); } && { +- test -z "$ac_c_werror_flag" || +- test ! -s conftest.err +- } && test -s conftest$ac_exeext && +- $as_test_x conftest$ac_exeext; then +- ac_cv_lib_avcodec_img_resample=yes +-else +- echo "$as_me: failed program was:" >&5 +-sed 's/^/| /' conftest.$ac_ext >&5 +- +- ac_cv_lib_avcodec_img_resample=no +-fi +- +-rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ +- conftest$ac_exeext conftest.$ac_ext +-LIBS=$ac_check_lib_save_LIBS +-fi +-{ echo "$as_me:$LINENO: result: $ac_cv_lib_avcodec_img_resample" >&5 +-echo "${ECHO_T}$ac_cv_lib_avcodec_img_resample" >&6; } +-if test $ac_cv_lib_avcodec_img_resample = yes; then +- cat >>confdefs.h <<_ACEOF +-#define HAVE_LIBAVCODEC 1 +-_ACEOF +- +- LIBS="-lavcodec $LIBS" +- +-else +- { { echo "$as_me:$LINENO: error: Your FFmpeg library doesn't have the needed img_resample() function. You should rebuild it with software scaler disabled" >&5 +-echo "$as_me: error: Your FFmpeg library doesn't have the needed img_resample() function. You should rebuild it with software scaler disabled" >&2;} +- { (exit 1); exit 1; }; } +-fi +- +- +- CPPFLAGS="${CPPFLAGS_save}" +- CFLAGS="${CFLAGS_save}" +- CXXFLAGS="${CXXFLAGS_save}" +- OBJCFLAGS="${OBJCFLAGS_save}" +- LDFLAGS="${LDFLAGS_save}" +- +-fi +- + LIBS="${LIBS_save}" + + # Check whether --enable-ffmpegaltivec was given. +-if test "${enable_ffmpegaltivec+set}" = set; then ++if test "${enable_ffmpegaltivec+set}" = set; then : + enableval=$enable_ffmpegaltivec; + fi + + if test "${enable_ffmpegaltivec}" = "yes" + then + if test "${with_ffmpeg_tree}" != "no" -a -n "${with_ffmpeg_tree}"; then +- { echo "$as_me:$LINENO: checking for libavcodecaltivec.a in ${with_ffmpeg_tree}" >&5 +-echo $ECHO_N "checking for libavcodecaltivec.a in ${with_ffmpeg_tree}... $ECHO_C" >&6; } ++ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for libavcodecaltivec.a in ${with_ffmpeg_tree}" >&5 ++$as_echo_n "checking for libavcodecaltivec.a in ${with_ffmpeg_tree}... " >&6; } + real_ffmpeg_tree="`cd ${with_ffmpeg_tree} 2>/dev/null && pwd`" + if test -z "${real_ffmpeg_tree}"; then +- { echo "$as_me:$LINENO: result: no" >&5 +-echo "${ECHO_T}no" >&6; } +- { { echo "$as_me:$LINENO: error: cannot cd to ${with_ffmpeg_tree}" >&5 +-echo "$as_me: error: cannot cd to ${with_ffmpeg_tree}" >&2;} +- { (exit 1); exit 1; }; } ++ { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 ++$as_echo "no" >&6; } ++ as_fn_error $? "cannot cd to ${with_ffmpeg_tree}" "$LINENO" 5 + fi + if ! test -f "${real_ffmpeg_tree}/libavcodec/libavcodecaltivec.a"; then +- { echo "$as_me:$LINENO: result: no" >&5 +-echo "${ECHO_T}no" >&6; } +- { { echo "$as_me:$LINENO: error: cannot find ${real_ffmpeg_tree}/libavcodec/libavcodecaltivec.a, make sure you compiled libavcodecaltivec in ${with_ffmpeg_tree}" >&5 +-echo "$as_me: error: cannot find ${real_ffmpeg_tree}/libavcodec/libavcodecaltivec.a, make sure you compiled libavcodecaltivec in ${with_ffmpeg_tree}" >&2;} +- { (exit 1); exit 1; }; } ++ { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 ++$as_echo "no" >&6; } ++ as_fn_error $? "cannot find ${real_ffmpeg_tree}/libavcodec/libavcodecaltivec.a, make sure you compiled libavcodecaltivec in ${with_ffmpeg_tree}" "$LINENO" 5 + fi + if ! fgrep -s "pp_get_context" "${real_ffmpeg_tree}/libavcodec/libavcodecaltivec.a"; then +- { echo "$as_me:$LINENO: result: no" >&5 +-echo "${ECHO_T}no" >&6; } +- { { echo "$as_me:$LINENO: error: ${real_ffmpeg_tree}/libavcodec/libavcodecaltivec.a was not compiled with postprocessing support, make sure you configured ffmpeg with --enable-pp" >&5 +-echo "$as_me: error: ${real_ffmpeg_tree}/libavcodec/libavcodecaltivec.a was not compiled with postprocessing support, make sure you configured ffmpeg with --enable-pp" >&2;} +- { (exit 1); exit 1; }; } ++ { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 ++$as_echo "no" >&6; } ++ as_fn_error $? "${real_ffmpeg_tree}/libavcodec/libavcodecaltivec.a was not compiled with postprocessing support, make sure you configured ffmpeg with --enable-pp" "$LINENO" 5 + fi +- { echo "$as_me:$LINENO: result: ${real_ffmpeg_tree}/libavcodec/libavcodecaltivec.a" >&5 +-echo "${ECHO_T}${real_ffmpeg_tree}/libavcodec/libavcodecaltivec.a" >&6; } ++ { $as_echo "$as_me:${as_lineno-$LINENO}: result: ${real_ffmpeg_tree}/libavcodec/libavcodecaltivec.a" >&5 ++$as_echo "${real_ffmpeg_tree}/libavcodec/libavcodecaltivec.a" >&6; } + + BUILTINS="${BUILTINS} ffmpegaltivec" + +@@ -47778,9 +33956,7 @@ echo "${ECHO_T}${real_ffmpeg_tree}/libavcodec/libavcodecaltivec.a" >&6; } + + if test -f "${real_ffmpeg_tree}/libavformat/libavformat.a"; then + +-cat >>confdefs.h <<\_ACEOF +-#define HAVE_LIBAVFORMAT_TREE 1 +-_ACEOF ++$as_echo "#define HAVE_LIBAVFORMAT_TREE 1" >>confdefs.h + + + for element in ffmpegaltivec; do +@@ -47811,7 +33987,7 @@ _ACEOF + fi + + # Check whether --enable-faad was given. +-if test "${enable_faad+set}" = set; then ++if test "${enable_faad+set}" = set; then : + enableval=$enable_faad; + fi + +@@ -47819,27 +33995,25 @@ if test "${enable_faad}" = "yes" + then + + # Check whether --with-faad-tree was given. +-if test "${with_faad_tree+set}" = set; then ++if test "${with_faad_tree+set}" = set; then : + withval=$with_faad_tree; + fi + + if test -n "${with_faad_tree}" + then +- { echo "$as_me:$LINENO: checking for libfaad.a in ${with_faad_tree}" >&5 +-echo $ECHO_N "checking for libfaad.a in ${with_faad_tree}... $ECHO_C" >&6; } ++ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for libfaad.a in ${with_faad_tree}" >&5 ++$as_echo_n "checking for libfaad.a in ${with_faad_tree}... " >&6; } + real_faad_tree="`cd ${with_faad_tree} 2>/dev/null && pwd`" + if test -z "${real_faad_tree}" + then +- { echo "$as_me:$LINENO: result: no" >&5 +-echo "${ECHO_T}no" >&6; } +- { { echo "$as_me:$LINENO: error: cannot cd to ${with_faad_tree}" >&5 +-echo "$as_me: error: cannot cd to ${with_faad_tree}" >&2;} +- { (exit 1); exit 1; }; } ++ { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 ++$as_echo "no" >&6; } ++ as_fn_error $? "cannot cd to ${with_faad_tree}" "$LINENO" 5 + fi + if test -f "${real_faad_tree}/libfaad/.libs/libfaad.a" + then +- { echo "$as_me:$LINENO: result: ${real_faad_tree}/libfaad/.libs/libfaad.a" >&5 +-echo "${ECHO_T}${real_faad_tree}/libfaad/.libs/libfaad.a" >&6; } ++ { $as_echo "$as_me:${as_lineno-$LINENO}: result: ${real_faad_tree}/libfaad/.libs/libfaad.a" >&5 ++$as_echo "${real_faad_tree}/libfaad/.libs/libfaad.a" >&6; } + + BUILTINS="${BUILTINS} faad" + +@@ -47856,171 +34030,35 @@ echo "${ECHO_T}${real_faad_tree}/libfaad/.libs/libfaad.a" >&6; } + done + + else +- { echo "$as_me:$LINENO: result: no" >&5 +-echo "${ECHO_T}no" >&6; } +- { { echo "$as_me:$LINENO: error: cannot find ${real_faad_tree}/libfaad/.libs/libfaad.a, make sure you compiled libfaad in ${with_faad_tree}" >&5 +-echo "$as_me: error: cannot find ${real_faad_tree}/libfaad/.libs/libfaad.a, make sure you compiled libfaad in ${with_faad_tree}" >&2;} +- { (exit 1); exit 1; }; } ++ { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 ++$as_echo "no" >&6; } ++ as_fn_error $? "cannot find ${real_faad_tree}/libfaad/.libs/libfaad.a, make sure you compiled libfaad in ${with_faad_tree}" "$LINENO" 5 + fi + else + CPPFLAGS="${CPPFLAGS_save} ${CPPFLAGS_faad}" + LDFLAGS="${LDFLAGS_save} ${LDFLAGS_faad}" +- +-for ac_header in faad.h +-do +-as_ac_Header=`echo "ac_cv_header_$ac_header" | $as_tr_sh` +-if { as_var=$as_ac_Header; eval "test \"\${$as_var+set}\" = set"; }; then +- { echo "$as_me:$LINENO: checking for $ac_header" >&5 +-echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6; } +-if { as_var=$as_ac_Header; eval "test \"\${$as_var+set}\" = set"; }; then +- echo $ECHO_N "(cached) $ECHO_C" >&6 +-fi +-ac_res=`eval echo '${'$as_ac_Header'}'` +- { echo "$as_me:$LINENO: result: $ac_res" >&5 +-echo "${ECHO_T}$ac_res" >&6; } +-else +- # Is the header compilable? +-{ echo "$as_me:$LINENO: checking $ac_header usability" >&5 +-echo $ECHO_N "checking $ac_header usability... $ECHO_C" >&6; } +-cat >conftest.$ac_ext <<_ACEOF +-/* confdefs.h. */ +-_ACEOF +-cat confdefs.h >>conftest.$ac_ext +-cat >>conftest.$ac_ext <<_ACEOF +-/* end confdefs.h. */ +-$ac_includes_default +-#include <$ac_header> +-_ACEOF +-rm -f conftest.$ac_objext +-if { (ac_try="$ac_compile" +-case "(($ac_try" in +- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; +- *) ac_try_echo=$ac_try;; +-esac +-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 +- (eval "$ac_compile") 2>conftest.er1 +- ac_status=$? +- grep -v '^ *+' conftest.er1 >conftest.err +- rm -f conftest.er1 +- cat conftest.err >&5 +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); } && { +- test -z "$ac_c_werror_flag" || +- test ! -s conftest.err +- } && test -s conftest.$ac_objext; then +- ac_header_compiler=yes +-else +- echo "$as_me: failed program was:" >&5 +-sed 's/^/| /' conftest.$ac_ext >&5 +- +- ac_header_compiler=no +-fi +- +-rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext +-{ echo "$as_me:$LINENO: result: $ac_header_compiler" >&5 +-echo "${ECHO_T}$ac_header_compiler" >&6; } +- +-# Is the header present? +-{ echo "$as_me:$LINENO: checking $ac_header presence" >&5 +-echo $ECHO_N "checking $ac_header presence... $ECHO_C" >&6; } +-cat >conftest.$ac_ext <<_ACEOF +-/* confdefs.h. */ +-_ACEOF +-cat confdefs.h >>conftest.$ac_ext +-cat >>conftest.$ac_ext <<_ACEOF +-/* end confdefs.h. */ +-#include <$ac_header> +-_ACEOF +-if { (ac_try="$ac_cpp conftest.$ac_ext" +-case "(($ac_try" in +- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; +- *) ac_try_echo=$ac_try;; +-esac +-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 +- (eval "$ac_cpp conftest.$ac_ext") 2>conftest.er1 +- ac_status=$? +- grep -v '^ *+' conftest.er1 >conftest.err +- rm -f conftest.er1 +- cat conftest.err >&5 +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); } >/dev/null && { +- test -z "$ac_c_preproc_warn_flag$ac_c_werror_flag" || +- test ! -s conftest.err +- }; then +- ac_header_preproc=yes +-else +- echo "$as_me: failed program was:" >&5 +-sed 's/^/| /' conftest.$ac_ext >&5 +- +- ac_header_preproc=no +-fi +- +-rm -f conftest.err conftest.$ac_ext +-{ echo "$as_me:$LINENO: result: $ac_header_preproc" >&5 +-echo "${ECHO_T}$ac_header_preproc" >&6; } +- +-# So? What about this header? +-case $ac_header_compiler:$ac_header_preproc:$ac_c_preproc_warn_flag in +- yes:no: ) +- { echo "$as_me:$LINENO: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&5 +-echo "$as_me: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&2;} +- { echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the compiler's result" >&5 +-echo "$as_me: WARNING: $ac_header: proceeding with the compiler's result" >&2;} +- ac_header_preproc=yes +- ;; +- no:yes:* ) +- { echo "$as_me:$LINENO: WARNING: $ac_header: present but cannot be compiled" >&5 +-echo "$as_me: WARNING: $ac_header: present but cannot be compiled" >&2;} +- { echo "$as_me:$LINENO: WARNING: $ac_header: check for missing prerequisite headers?" >&5 +-echo "$as_me: WARNING: $ac_header: check for missing prerequisite headers?" >&2;} +- { echo "$as_me:$LINENO: WARNING: $ac_header: see the Autoconf documentation" >&5 +-echo "$as_me: WARNING: $ac_header: see the Autoconf documentation" >&2;} +- { echo "$as_me:$LINENO: WARNING: $ac_header: section \"Present But Cannot Be Compiled\"" >&5 +-echo "$as_me: WARNING: $ac_header: section \"Present But Cannot Be Compiled\"" >&2;} +- { echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the preprocessor's result" >&5 +-echo "$as_me: WARNING: $ac_header: proceeding with the preprocessor's result" >&2;} +- { echo "$as_me:$LINENO: WARNING: $ac_header: in the future, the compiler will take precedence" >&5 +-echo "$as_me: WARNING: $ac_header: in the future, the compiler will take precedence" >&2;} +- +- ;; +-esac +-{ echo "$as_me:$LINENO: checking for $ac_header" >&5 +-echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6; } +-if { as_var=$as_ac_Header; eval "test \"\${$as_var+set}\" = set"; }; then +- echo $ECHO_N "(cached) $ECHO_C" >&6 +-else +- eval "$as_ac_Header=\$ac_header_preproc" +-fi +-ac_res=`eval echo '${'$as_ac_Header'}'` +- { echo "$as_me:$LINENO: result: $ac_res" >&5 +-echo "${ECHO_T}$ac_res" >&6; } +- +-fi +-if test `eval echo '${'$as_ac_Header'}'` = yes; then ++ for ac_header in faad.h ++do : ++ ac_fn_c_check_header_mongrel "$LINENO" "faad.h" "ac_cv_header_faad_h" "$ac_includes_default" ++if test "x$ac_cv_header_faad_h" = xyes; then : + cat >>confdefs.h <<_ACEOF +-#define `echo "HAVE_$ac_header" | $as_tr_cpp` 1 ++#define HAVE_FAAD_H 1 + _ACEOF + + else +- { { echo "$as_me:$LINENO: error: Cannot find development headers for libfaad..." >&5 +-echo "$as_me: error: Cannot find development headers for libfaad..." >&2;} +- { (exit 1); exit 1; }; } ++ as_fn_error $? "Cannot find development headers for libfaad..." "$LINENO" 5 + fi + + done + +- { echo "$as_me:$LINENO: checking for faacDecOpen in -lfaad" >&5 +-echo $ECHO_N "checking for faacDecOpen in -lfaad... $ECHO_C" >&6; } +-if test "${ac_cv_lib_faad_faacDecOpen+set}" = set; then +- echo $ECHO_N "(cached) $ECHO_C" >&6 ++ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for faacDecOpen in -lfaad" >&5 ++$as_echo_n "checking for faacDecOpen in -lfaad... " >&6; } ++if ${ac_cv_lib_faad_faacDecOpen+:} false; then : ++ $as_echo_n "(cached) " >&6 + else + ac_check_lib_save_LIBS=$LIBS + LIBS="-lfaad $LIBS" +-cat >conftest.$ac_ext <<_ACEOF +-/* confdefs.h. */ +-_ACEOF +-cat confdefs.h >>conftest.$ac_ext +-cat >>conftest.$ac_ext <<_ACEOF ++cat confdefs.h - <<_ACEOF >conftest.$ac_ext + /* end confdefs.h. */ + + /* Override any GCC internal prototype to avoid an error. +@@ -48038,39 +34076,18 @@ return faacDecOpen (); + return 0; + } + _ACEOF +-rm -f conftest.$ac_objext conftest$ac_exeext +-if { (ac_try="$ac_link" +-case "(($ac_try" in +- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; +- *) ac_try_echo=$ac_try;; +-esac +-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 +- (eval "$ac_link") 2>conftest.er1 +- ac_status=$? +- grep -v '^ *+' conftest.er1 >conftest.err +- rm -f conftest.er1 +- cat conftest.err >&5 +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); } && { +- test -z "$ac_c_werror_flag" || +- test ! -s conftest.err +- } && test -s conftest$ac_exeext && +- $as_test_x conftest$ac_exeext; then ++if ac_fn_c_try_link "$LINENO"; then : + ac_cv_lib_faad_faacDecOpen=yes + else +- echo "$as_me: failed program was:" >&5 +-sed 's/^/| /' conftest.$ac_ext >&5 +- +- ac_cv_lib_faad_faacDecOpen=no ++ ac_cv_lib_faad_faacDecOpen=no + fi +- +-rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ +- conftest$ac_exeext conftest.$ac_ext ++rm -f core conftest.err conftest.$ac_objext \ ++ conftest$ac_exeext conftest.$ac_ext + LIBS=$ac_check_lib_save_LIBS + fi +-{ echo "$as_me:$LINENO: result: $ac_cv_lib_faad_faacDecOpen" >&5 +-echo "${ECHO_T}$ac_cv_lib_faad_faacDecOpen" >&6; } +-if test $ac_cv_lib_faad_faacDecOpen = yes; then ++{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_faad_faacDecOpen" >&5 ++$as_echo "$ac_cv_lib_faad_faacDecOpen" >&6; } ++if test "x$ac_cv_lib_faad_faacDecOpen" = xyes; then : + + + PLUGINS="${PLUGINS} faad" +@@ -48082,18 +34099,14 @@ if test $ac_cv_lib_faad_faacDecOpen = yes; then + done + + else +- { echo "$as_me:$LINENO: checking for NeAACDecOpen in -lfaad" >&5 +-echo $ECHO_N "checking for NeAACDecOpen in -lfaad... $ECHO_C" >&6; } +-if test "${ac_cv_lib_faad_NeAACDecOpen+set}" = set; then +- echo $ECHO_N "(cached) $ECHO_C" >&6 ++ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for NeAACDecOpen in -lfaad" >&5 ++$as_echo_n "checking for NeAACDecOpen in -lfaad... " >&6; } ++if ${ac_cv_lib_faad_NeAACDecOpen+:} false; then : ++ $as_echo_n "(cached) " >&6 + else + ac_check_lib_save_LIBS=$LIBS + LIBS="-lfaad $LIBS" +-cat >conftest.$ac_ext <<_ACEOF +-/* confdefs.h. */ +-_ACEOF +-cat confdefs.h >>conftest.$ac_ext +-cat >>conftest.$ac_ext <<_ACEOF ++cat confdefs.h - <<_ACEOF >conftest.$ac_ext + /* end confdefs.h. */ + + /* Override any GCC internal prototype to avoid an error. +@@ -48111,39 +34124,18 @@ return NeAACDecOpen (); + return 0; + } + _ACEOF +-rm -f conftest.$ac_objext conftest$ac_exeext +-if { (ac_try="$ac_link" +-case "(($ac_try" in +- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; +- *) ac_try_echo=$ac_try;; +-esac +-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 +- (eval "$ac_link") 2>conftest.er1 +- ac_status=$? +- grep -v '^ *+' conftest.er1 >conftest.err +- rm -f conftest.er1 +- cat conftest.err >&5 +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); } && { +- test -z "$ac_c_werror_flag" || +- test ! -s conftest.err +- } && test -s conftest$ac_exeext && +- $as_test_x conftest$ac_exeext; then ++if ac_fn_c_try_link "$LINENO"; then : + ac_cv_lib_faad_NeAACDecOpen=yes + else +- echo "$as_me: failed program was:" >&5 +-sed 's/^/| /' conftest.$ac_ext >&5 +- +- ac_cv_lib_faad_NeAACDecOpen=no ++ ac_cv_lib_faad_NeAACDecOpen=no + fi +- +-rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ +- conftest$ac_exeext conftest.$ac_ext ++rm -f core conftest.err conftest.$ac_objext \ ++ conftest$ac_exeext conftest.$ac_ext + LIBS=$ac_check_lib_save_LIBS + fi +-{ echo "$as_me:$LINENO: result: $ac_cv_lib_faad_NeAACDecOpen" >&5 +-echo "${ECHO_T}$ac_cv_lib_faad_NeAACDecOpen" >&6; } +-if test $ac_cv_lib_faad_NeAACDecOpen = yes; then ++{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_faad_NeAACDecOpen" >&5 ++$as_echo "$ac_cv_lib_faad_NeAACDecOpen" >&6; } ++if test "x$ac_cv_lib_faad_NeAACDecOpen" = xyes; then : + + + PLUGINS="${PLUGINS} faad" +@@ -48155,9 +34147,7 @@ if test $ac_cv_lib_faad_NeAACDecOpen = yes; then + done + + else +- { { echo "$as_me:$LINENO: error: Cannot find libfaad library..." >&5 +-echo "$as_me: error: Cannot find libfaad library..." >&2;} +- { (exit 1); exit 1; }; } ++ as_fn_error $? "Cannot find libfaad library..." "$LINENO" 5 + fi + + fi +@@ -48168,7 +34158,7 @@ fi + fi + + # Check whether --enable-twolame was given. +-if test "${enable_twolame+set}" = set; then ++if test "${enable_twolame+set}" = set; then : + enableval=$enable_twolame; + fi + +@@ -48176,27 +34166,25 @@ if test "${enable_twolame}" = "yes" + then + + # Check whether --with-twolame-tree was given. +-if test "${with_twolame_tree+set}" = set; then ++if test "${with_twolame_tree+set}" = set; then : + withval=$with_twolame_tree; + fi + + if test -n "${with_twolame_tree}" + then +- { echo "$as_me:$LINENO: checking for libtwolame.a in ${with_twolame_tree}" >&5 +-echo $ECHO_N "checking for libtwolame.a in ${with_twolame_tree}... $ECHO_C" >&6; } ++ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for libtwolame.a in ${with_twolame_tree}" >&5 ++$as_echo_n "checking for libtwolame.a in ${with_twolame_tree}... " >&6; } + real_twolame_tree="`cd ${with_twolame_tree} 2>/dev/null && pwd`" + if test -z "${real_twolame_tree}" + then +- { echo "$as_me:$LINENO: result: no" >&5 +-echo "${ECHO_T}no" >&6; } +- { { echo "$as_me:$LINENO: error: cannot cd to ${with_twolame_tree}" >&5 +-echo "$as_me: error: cannot cd to ${with_twolame_tree}" >&2;} +- { (exit 1); exit 1; }; } ++ { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 ++$as_echo "no" >&6; } ++ as_fn_error $? "cannot cd to ${with_twolame_tree}" "$LINENO" 5 + fi + if test -f "${real_twolame_tree}/src/libtwolame/.libs/libtwolame.a" + then +- { echo "$as_me:$LINENO: result: ${real_twolame_tree}/src/libtwolame/.libs/libtwolame.a" >&5 +-echo "${ECHO_T}${real_twolame_tree}/src/libtwolame/.libs/libtwolame.a" >&6; } ++ { $as_echo "$as_me:${as_lineno-$LINENO}: result: ${real_twolame_tree}/src/libtwolame/.libs/libtwolame.a" >&5 ++$as_echo "${real_twolame_tree}/src/libtwolame/.libs/libtwolame.a" >&6; } + + BUILTINS="${BUILTINS} twolame" + +@@ -48213,171 +34201,35 @@ echo "${ECHO_T}${real_twolame_tree}/src/libtwolame/.libs/libtwolame.a" >&6; } + done + + else +- { echo "$as_me:$LINENO: result: no" >&5 +-echo "${ECHO_T}no" >&6; } +- { { echo "$as_me:$LINENO: error: cannot find ${real_twolame_tree}/src/libtwolame/.libs/libtwolame.a, make sure you compiled libtwolame in ${with_twolame_tree}" >&5 +-echo "$as_me: error: cannot find ${real_twolame_tree}/src/libtwolame/.libs/libtwolame.a, make sure you compiled libtwolame in ${with_twolame_tree}" >&2;} +- { (exit 1); exit 1; }; } ++ { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 ++$as_echo "no" >&6; } ++ as_fn_error $? "cannot find ${real_twolame_tree}/src/libtwolame/.libs/libtwolame.a, make sure you compiled libtwolame in ${with_twolame_tree}" "$LINENO" 5 + fi + else + CPPFLAGS="${CPPFLAGS_save} ${CPPFLAGS_twolame} -DLIBTWOLAME_STATIC" + LDFLAGS="${LDFLAGS_save} ${LDFLAGS_twolame}" +- +-for ac_header in twolame.h +-do +-as_ac_Header=`echo "ac_cv_header_$ac_header" | $as_tr_sh` +-if { as_var=$as_ac_Header; eval "test \"\${$as_var+set}\" = set"; }; then +- { echo "$as_me:$LINENO: checking for $ac_header" >&5 +-echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6; } +-if { as_var=$as_ac_Header; eval "test \"\${$as_var+set}\" = set"; }; then +- echo $ECHO_N "(cached) $ECHO_C" >&6 +-fi +-ac_res=`eval echo '${'$as_ac_Header'}'` +- { echo "$as_me:$LINENO: result: $ac_res" >&5 +-echo "${ECHO_T}$ac_res" >&6; } +-else +- # Is the header compilable? +-{ echo "$as_me:$LINENO: checking $ac_header usability" >&5 +-echo $ECHO_N "checking $ac_header usability... $ECHO_C" >&6; } +-cat >conftest.$ac_ext <<_ACEOF +-/* confdefs.h. */ +-_ACEOF +-cat confdefs.h >>conftest.$ac_ext +-cat >>conftest.$ac_ext <<_ACEOF +-/* end confdefs.h. */ +-$ac_includes_default +-#include <$ac_header> +-_ACEOF +-rm -f conftest.$ac_objext +-if { (ac_try="$ac_compile" +-case "(($ac_try" in +- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; +- *) ac_try_echo=$ac_try;; +-esac +-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 +- (eval "$ac_compile") 2>conftest.er1 +- ac_status=$? +- grep -v '^ *+' conftest.er1 >conftest.err +- rm -f conftest.er1 +- cat conftest.err >&5 +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); } && { +- test -z "$ac_c_werror_flag" || +- test ! -s conftest.err +- } && test -s conftest.$ac_objext; then +- ac_header_compiler=yes +-else +- echo "$as_me: failed program was:" >&5 +-sed 's/^/| /' conftest.$ac_ext >&5 +- +- ac_header_compiler=no +-fi +- +-rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext +-{ echo "$as_me:$LINENO: result: $ac_header_compiler" >&5 +-echo "${ECHO_T}$ac_header_compiler" >&6; } +- +-# Is the header present? +-{ echo "$as_me:$LINENO: checking $ac_header presence" >&5 +-echo $ECHO_N "checking $ac_header presence... $ECHO_C" >&6; } +-cat >conftest.$ac_ext <<_ACEOF +-/* confdefs.h. */ +-_ACEOF +-cat confdefs.h >>conftest.$ac_ext +-cat >>conftest.$ac_ext <<_ACEOF +-/* end confdefs.h. */ +-#include <$ac_header> +-_ACEOF +-if { (ac_try="$ac_cpp conftest.$ac_ext" +-case "(($ac_try" in +- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; +- *) ac_try_echo=$ac_try;; +-esac +-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 +- (eval "$ac_cpp conftest.$ac_ext") 2>conftest.er1 +- ac_status=$? +- grep -v '^ *+' conftest.er1 >conftest.err +- rm -f conftest.er1 +- cat conftest.err >&5 +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); } >/dev/null && { +- test -z "$ac_c_preproc_warn_flag$ac_c_werror_flag" || +- test ! -s conftest.err +- }; then +- ac_header_preproc=yes +-else +- echo "$as_me: failed program was:" >&5 +-sed 's/^/| /' conftest.$ac_ext >&5 +- +- ac_header_preproc=no +-fi +- +-rm -f conftest.err conftest.$ac_ext +-{ echo "$as_me:$LINENO: result: $ac_header_preproc" >&5 +-echo "${ECHO_T}$ac_header_preproc" >&6; } +- +-# So? What about this header? +-case $ac_header_compiler:$ac_header_preproc:$ac_c_preproc_warn_flag in +- yes:no: ) +- { echo "$as_me:$LINENO: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&5 +-echo "$as_me: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&2;} +- { echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the compiler's result" >&5 +-echo "$as_me: WARNING: $ac_header: proceeding with the compiler's result" >&2;} +- ac_header_preproc=yes +- ;; +- no:yes:* ) +- { echo "$as_me:$LINENO: WARNING: $ac_header: present but cannot be compiled" >&5 +-echo "$as_me: WARNING: $ac_header: present but cannot be compiled" >&2;} +- { echo "$as_me:$LINENO: WARNING: $ac_header: check for missing prerequisite headers?" >&5 +-echo "$as_me: WARNING: $ac_header: check for missing prerequisite headers?" >&2;} +- { echo "$as_me:$LINENO: WARNING: $ac_header: see the Autoconf documentation" >&5 +-echo "$as_me: WARNING: $ac_header: see the Autoconf documentation" >&2;} +- { echo "$as_me:$LINENO: WARNING: $ac_header: section \"Present But Cannot Be Compiled\"" >&5 +-echo "$as_me: WARNING: $ac_header: section \"Present But Cannot Be Compiled\"" >&2;} +- { echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the preprocessor's result" >&5 +-echo "$as_me: WARNING: $ac_header: proceeding with the preprocessor's result" >&2;} +- { echo "$as_me:$LINENO: WARNING: $ac_header: in the future, the compiler will take precedence" >&5 +-echo "$as_me: WARNING: $ac_header: in the future, the compiler will take precedence" >&2;} +- +- ;; +-esac +-{ echo "$as_me:$LINENO: checking for $ac_header" >&5 +-echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6; } +-if { as_var=$as_ac_Header; eval "test \"\${$as_var+set}\" = set"; }; then +- echo $ECHO_N "(cached) $ECHO_C" >&6 +-else +- eval "$as_ac_Header=\$ac_header_preproc" +-fi +-ac_res=`eval echo '${'$as_ac_Header'}'` +- { echo "$as_me:$LINENO: result: $ac_res" >&5 +-echo "${ECHO_T}$ac_res" >&6; } +- +-fi +-if test `eval echo '${'$as_ac_Header'}'` = yes; then ++ for ac_header in twolame.h ++do : ++ ac_fn_c_check_header_mongrel "$LINENO" "twolame.h" "ac_cv_header_twolame_h" "$ac_includes_default" ++if test "x$ac_cv_header_twolame_h" = xyes; then : + cat >>confdefs.h <<_ACEOF +-#define `echo "HAVE_$ac_header" | $as_tr_cpp` 1 ++#define HAVE_TWOLAME_H 1 + _ACEOF + + else +- { { echo "$as_me:$LINENO: error: Cannot find development header for libtwolame..." >&5 +-echo "$as_me: error: Cannot find development header for libtwolame..." >&2;} +- { (exit 1); exit 1; }; } ++ as_fn_error $? "Cannot find development header for libtwolame..." "$LINENO" 5 + fi + + done + +- { echo "$as_me:$LINENO: checking for twolame_init in -ltwolame" >&5 +-echo $ECHO_N "checking for twolame_init in -ltwolame... $ECHO_C" >&6; } +-if test "${ac_cv_lib_twolame_twolame_init+set}" = set; then +- echo $ECHO_N "(cached) $ECHO_C" >&6 ++ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for twolame_init in -ltwolame" >&5 ++$as_echo_n "checking for twolame_init in -ltwolame... " >&6; } ++if ${ac_cv_lib_twolame_twolame_init+:} false; then : ++ $as_echo_n "(cached) " >&6 + else + ac_check_lib_save_LIBS=$LIBS + LIBS="-ltwolame $LIBS" +-cat >conftest.$ac_ext <<_ACEOF +-/* confdefs.h. */ +-_ACEOF +-cat confdefs.h >>conftest.$ac_ext +-cat >>conftest.$ac_ext <<_ACEOF ++cat confdefs.h - <<_ACEOF >conftest.$ac_ext + /* end confdefs.h. */ + + /* Override any GCC internal prototype to avoid an error. +@@ -48395,39 +34247,18 @@ return twolame_init (); + return 0; + } + _ACEOF +-rm -f conftest.$ac_objext conftest$ac_exeext +-if { (ac_try="$ac_link" +-case "(($ac_try" in +- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; +- *) ac_try_echo=$ac_try;; +-esac +-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 +- (eval "$ac_link") 2>conftest.er1 +- ac_status=$? +- grep -v '^ *+' conftest.er1 >conftest.err +- rm -f conftest.er1 +- cat conftest.err >&5 +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); } && { +- test -z "$ac_c_werror_flag" || +- test ! -s conftest.err +- } && test -s conftest$ac_exeext && +- $as_test_x conftest$ac_exeext; then ++if ac_fn_c_try_link "$LINENO"; then : + ac_cv_lib_twolame_twolame_init=yes + else +- echo "$as_me: failed program was:" >&5 +-sed 's/^/| /' conftest.$ac_ext >&5 +- +- ac_cv_lib_twolame_twolame_init=no ++ ac_cv_lib_twolame_twolame_init=no + fi +- +-rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ +- conftest$ac_exeext conftest.$ac_ext ++rm -f core conftest.err conftest.$ac_objext \ ++ conftest$ac_exeext conftest.$ac_ext + LIBS=$ac_check_lib_save_LIBS + fi +-{ echo "$as_me:$LINENO: result: $ac_cv_lib_twolame_twolame_init" >&5 +-echo "${ECHO_T}$ac_cv_lib_twolame_twolame_init" >&6; } +-if test $ac_cv_lib_twolame_twolame_init = yes; then ++{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_twolame_twolame_init" >&5 ++$as_echo "$ac_cv_lib_twolame_twolame_init" >&6; } ++if test "x$ac_cv_lib_twolame_twolame_init" = xyes; then : + + + PLUGINS="${PLUGINS} twolame" +@@ -48445,9 +34276,7 @@ if test $ac_cv_lib_twolame_twolame_init = yes; then + done + + else +- { { echo "$as_me:$LINENO: error: Cannot find libtwolame library..." >&5 +-echo "$as_me: error: Cannot find libtwolame library..." >&2;} +- { (exit 1); exit 1; }; } ++ as_fn_error $? "Cannot find libtwolame library..." "$LINENO" 5 + fi + + LDFLAGS="${LDFLAGS_save}" +@@ -48456,483 +34285,77 @@ fi + fi + + # Check whether --enable-quicktime was given. +-if test "${enable_quicktime+set}" = set; then ++if test "${enable_quicktime+set}" = set; then : + enableval=$enable_quicktime; + fi + + if test "${enable_quicktime}" != "no" && + (test "${SYS}" = "darwin" || test "${enable_quicktime}" = "yes") + then +- if test "${SYS}" = "mingw32"; then +- +- BUILTINS="${BUILTINS} quicktime" +- +- else +- +-for ac_header in QuickTime/QuickTime.h +-do +-as_ac_Header=`echo "ac_cv_header_$ac_header" | $as_tr_sh` +-if { as_var=$as_ac_Header; eval "test \"\${$as_var+set}\" = set"; }; then +- { echo "$as_me:$LINENO: checking for $ac_header" >&5 +-echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6; } +-if { as_var=$as_ac_Header; eval "test \"\${$as_var+set}\" = set"; }; then +- echo $ECHO_N "(cached) $ECHO_C" >&6 +-fi +-ac_res=`eval echo '${'$as_ac_Header'}'` +- { echo "$as_me:$LINENO: result: $ac_res" >&5 +-echo "${ECHO_T}$ac_res" >&6; } +-else +- # Is the header compilable? +-{ echo "$as_me:$LINENO: checking $ac_header usability" >&5 +-echo $ECHO_N "checking $ac_header usability... $ECHO_C" >&6; } +-cat >conftest.$ac_ext <<_ACEOF +-/* confdefs.h. */ +-_ACEOF +-cat confdefs.h >>conftest.$ac_ext +-cat >>conftest.$ac_ext <<_ACEOF +-/* end confdefs.h. */ +-$ac_includes_default +-#include <$ac_header> +-_ACEOF +-rm -f conftest.$ac_objext +-if { (ac_try="$ac_compile" +-case "(($ac_try" in +- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; +- *) ac_try_echo=$ac_try;; +-esac +-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 +- (eval "$ac_compile") 2>conftest.er1 +- ac_status=$? +- grep -v '^ *+' conftest.er1 >conftest.err +- rm -f conftest.er1 +- cat conftest.err >&5 +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); } && { +- test -z "$ac_c_werror_flag" || +- test ! -s conftest.err +- } && test -s conftest.$ac_objext; then +- ac_header_compiler=yes +-else +- echo "$as_me: failed program was:" >&5 +-sed 's/^/| /' conftest.$ac_ext >&5 +- +- ac_header_compiler=no +-fi +- +-rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext +-{ echo "$as_me:$LINENO: result: $ac_header_compiler" >&5 +-echo "${ECHO_T}$ac_header_compiler" >&6; } +- +-# Is the header present? +-{ echo "$as_me:$LINENO: checking $ac_header presence" >&5 +-echo $ECHO_N "checking $ac_header presence... $ECHO_C" >&6; } +-cat >conftest.$ac_ext <<_ACEOF +-/* confdefs.h. */ +-_ACEOF +-cat confdefs.h >>conftest.$ac_ext +-cat >>conftest.$ac_ext <<_ACEOF +-/* end confdefs.h. */ +-#include <$ac_header> +-_ACEOF +-if { (ac_try="$ac_cpp conftest.$ac_ext" +-case "(($ac_try" in +- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; +- *) ac_try_echo=$ac_try;; +-esac +-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 +- (eval "$ac_cpp conftest.$ac_ext") 2>conftest.er1 +- ac_status=$? +- grep -v '^ *+' conftest.er1 >conftest.err +- rm -f conftest.er1 +- cat conftest.err >&5 +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); } >/dev/null && { +- test -z "$ac_c_preproc_warn_flag$ac_c_werror_flag" || +- test ! -s conftest.err +- }; then +- ac_header_preproc=yes +-else +- echo "$as_me: failed program was:" >&5 +-sed 's/^/| /' conftest.$ac_ext >&5 +- +- ac_header_preproc=no +-fi +- +-rm -f conftest.err conftest.$ac_ext +-{ echo "$as_me:$LINENO: result: $ac_header_preproc" >&5 +-echo "${ECHO_T}$ac_header_preproc" >&6; } +- +-# So? What about this header? +-case $ac_header_compiler:$ac_header_preproc:$ac_c_preproc_warn_flag in +- yes:no: ) +- { echo "$as_me:$LINENO: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&5 +-echo "$as_me: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&2;} +- { echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the compiler's result" >&5 +-echo "$as_me: WARNING: $ac_header: proceeding with the compiler's result" >&2;} +- ac_header_preproc=yes +- ;; +- no:yes:* ) +- { echo "$as_me:$LINENO: WARNING: $ac_header: present but cannot be compiled" >&5 +-echo "$as_me: WARNING: $ac_header: present but cannot be compiled" >&2;} +- { echo "$as_me:$LINENO: WARNING: $ac_header: check for missing prerequisite headers?" >&5 +-echo "$as_me: WARNING: $ac_header: check for missing prerequisite headers?" >&2;} +- { echo "$as_me:$LINENO: WARNING: $ac_header: see the Autoconf documentation" >&5 +-echo "$as_me: WARNING: $ac_header: see the Autoconf documentation" >&2;} +- { echo "$as_me:$LINENO: WARNING: $ac_header: section \"Present But Cannot Be Compiled\"" >&5 +-echo "$as_me: WARNING: $ac_header: section \"Present But Cannot Be Compiled\"" >&2;} +- { echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the preprocessor's result" >&5 +-echo "$as_me: WARNING: $ac_header: proceeding with the preprocessor's result" >&2;} +- { echo "$as_me:$LINENO: WARNING: $ac_header: in the future, the compiler will take precedence" >&5 +-echo "$as_me: WARNING: $ac_header: in the future, the compiler will take precedence" >&2;} +- +- ;; +-esac +-{ echo "$as_me:$LINENO: checking for $ac_header" >&5 +-echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6; } +-if { as_var=$as_ac_Header; eval "test \"\${$as_var+set}\" = set"; }; then +- echo $ECHO_N "(cached) $ECHO_C" >&6 +-else +- eval "$as_ac_Header=\$ac_header_preproc" +-fi +-ac_res=`eval echo '${'$as_ac_Header'}'` +- { echo "$as_me:$LINENO: result: $ac_res" >&5 +-echo "${ECHO_T}$ac_res" >&6; } +- +-fi +-if test `eval echo '${'$as_ac_Header'}'` = yes; then +- cat >>confdefs.h <<_ACEOF +-#define `echo "HAVE_$ac_header" | $as_tr_cpp` 1 +-_ACEOF +- +- BUILTINS="${BUILTINS} quicktime" +- +- +- for element in quicktime; do +- eval "LDFLAGS_${element}="'"'"-framework QuickTime -framework Carbon "'$'"{LDFLAGS_${element}} "'"' +- am_modules_with_ldflags="${am_modules_with_ldflags} ${element}" +- done +- +- +-else +- { { echo "$as_me:$LINENO: error: cannot find QuickTime headers" >&5 +-echo "$as_me: error: cannot find QuickTime headers" >&2;} +- { (exit 1); exit 1; }; } +-fi +- +-done +- +- fi +-fi +- +-# Check whether --enable-real was given. +-if test "${enable_real+set}" = set; then +- enableval=$enable_real; +-fi +- +-if test "${enable_real}" = "yes"; then +- +- PLUGINS="${PLUGINS} realaudio" +- +-fi +- +-# Check whether --enable-realrtsp was given. +-if test "${enable_realrtsp+set}" = set; then +- enableval=$enable_realrtsp; +-fi +- +-if test "${enable_realrtsp}" = "yes"; then +- +- PLUGINS="${PLUGINS} access_realrtsp" +- +-fi +- +- +-for ac_header in zlib.h +-do +-as_ac_Header=`echo "ac_cv_header_$ac_header" | $as_tr_sh` +-if { as_var=$as_ac_Header; eval "test \"\${$as_var+set}\" = set"; }; then +- { echo "$as_me:$LINENO: checking for $ac_header" >&5 +-echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6; } +-if { as_var=$as_ac_Header; eval "test \"\${$as_var+set}\" = set"; }; then +- echo $ECHO_N "(cached) $ECHO_C" >&6 +-fi +-ac_res=`eval echo '${'$as_ac_Header'}'` +- { echo "$as_me:$LINENO: result: $ac_res" >&5 +-echo "${ECHO_T}$ac_res" >&6; } +-else +- # Is the header compilable? +-{ echo "$as_me:$LINENO: checking $ac_header usability" >&5 +-echo $ECHO_N "checking $ac_header usability... $ECHO_C" >&6; } +-cat >conftest.$ac_ext <<_ACEOF +-/* confdefs.h. */ +-_ACEOF +-cat confdefs.h >>conftest.$ac_ext +-cat >>conftest.$ac_ext <<_ACEOF +-/* end confdefs.h. */ +-$ac_includes_default +-#include <$ac_header> +-_ACEOF +-rm -f conftest.$ac_objext +-if { (ac_try="$ac_compile" +-case "(($ac_try" in +- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; +- *) ac_try_echo=$ac_try;; +-esac +-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 +- (eval "$ac_compile") 2>conftest.er1 +- ac_status=$? +- grep -v '^ *+' conftest.er1 >conftest.err +- rm -f conftest.er1 +- cat conftest.err >&5 +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); } && { +- test -z "$ac_c_werror_flag" || +- test ! -s conftest.err +- } && test -s conftest.$ac_objext; then +- ac_header_compiler=yes +-else +- echo "$as_me: failed program was:" >&5 +-sed 's/^/| /' conftest.$ac_ext >&5 +- +- ac_header_compiler=no +-fi +- +-rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext +-{ echo "$as_me:$LINENO: result: $ac_header_compiler" >&5 +-echo "${ECHO_T}$ac_header_compiler" >&6; } +- +-# Is the header present? +-{ echo "$as_me:$LINENO: checking $ac_header presence" >&5 +-echo $ECHO_N "checking $ac_header presence... $ECHO_C" >&6; } +-cat >conftest.$ac_ext <<_ACEOF +-/* confdefs.h. */ +-_ACEOF +-cat confdefs.h >>conftest.$ac_ext +-cat >>conftest.$ac_ext <<_ACEOF +-/* end confdefs.h. */ +-#include <$ac_header> +-_ACEOF +-if { (ac_try="$ac_cpp conftest.$ac_ext" +-case "(($ac_try" in +- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; +- *) ac_try_echo=$ac_try;; +-esac +-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 +- (eval "$ac_cpp conftest.$ac_ext") 2>conftest.er1 +- ac_status=$? +- grep -v '^ *+' conftest.er1 >conftest.err +- rm -f conftest.er1 +- cat conftest.err >&5 +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); } >/dev/null && { +- test -z "$ac_c_preproc_warn_flag$ac_c_werror_flag" || +- test ! -s conftest.err +- }; then +- ac_header_preproc=yes +-else +- echo "$as_me: failed program was:" >&5 +-sed 's/^/| /' conftest.$ac_ext >&5 +- +- ac_header_preproc=no +-fi +- +-rm -f conftest.err conftest.$ac_ext +-{ echo "$as_me:$LINENO: result: $ac_header_preproc" >&5 +-echo "${ECHO_T}$ac_header_preproc" >&6; } +- +-# So? What about this header? +-case $ac_header_compiler:$ac_header_preproc:$ac_c_preproc_warn_flag in +- yes:no: ) +- { echo "$as_me:$LINENO: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&5 +-echo "$as_me: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&2;} +- { echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the compiler's result" >&5 +-echo "$as_me: WARNING: $ac_header: proceeding with the compiler's result" >&2;} +- ac_header_preproc=yes +- ;; +- no:yes:* ) +- { echo "$as_me:$LINENO: WARNING: $ac_header: present but cannot be compiled" >&5 +-echo "$as_me: WARNING: $ac_header: present but cannot be compiled" >&2;} +- { echo "$as_me:$LINENO: WARNING: $ac_header: check for missing prerequisite headers?" >&5 +-echo "$as_me: WARNING: $ac_header: check for missing prerequisite headers?" >&2;} +- { echo "$as_me:$LINENO: WARNING: $ac_header: see the Autoconf documentation" >&5 +-echo "$as_me: WARNING: $ac_header: see the Autoconf documentation" >&2;} +- { echo "$as_me:$LINENO: WARNING: $ac_header: section \"Present But Cannot Be Compiled\"" >&5 +-echo "$as_me: WARNING: $ac_header: section \"Present But Cannot Be Compiled\"" >&2;} +- { echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the preprocessor's result" >&5 +-echo "$as_me: WARNING: $ac_header: proceeding with the preprocessor's result" >&2;} +- { echo "$as_me:$LINENO: WARNING: $ac_header: in the future, the compiler will take precedence" >&5 +-echo "$as_me: WARNING: $ac_header: in the future, the compiler will take precedence" >&2;} ++ if test "${SYS}" = "mingw32"; then + +- ;; +-esac +-{ echo "$as_me:$LINENO: checking for $ac_header" >&5 +-echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6; } +-if { as_var=$as_ac_Header; eval "test \"\${$as_var+set}\" = set"; }; then +- echo $ECHO_N "(cached) $ECHO_C" >&6 +-else +- eval "$as_ac_Header=\$ac_header_preproc" +-fi +-ac_res=`eval echo '${'$as_ac_Header'}'` +- { echo "$as_me:$LINENO: result: $ac_res" >&5 +-echo "${ECHO_T}$ac_res" >&6; } ++ BUILTINS="${BUILTINS} quicktime" + +-fi +-if test `eval echo '${'$as_ac_Header'}'` = yes; then ++ else ++ for ac_header in QuickTime/QuickTime.h ++do : ++ ac_fn_c_check_header_mongrel "$LINENO" "QuickTime/QuickTime.h" "ac_cv_header_QuickTime_QuickTime_h" "$ac_includes_default" ++if test "x$ac_cv_header_QuickTime_QuickTime_h" = xyes; then : + cat >>confdefs.h <<_ACEOF +-#define `echo "HAVE_$ac_header" | $as_tr_cpp` 1 ++#define HAVE_QUICKTIME_QUICKTIME_H 1 + _ACEOF + ++ BUILTINS="${BUILTINS} quicktime" + +- for element in mp4 skins2 sap mkv; do +- eval "LDFLAGS_${element}="'"'"-lz "'$'"{LDFLAGS_${element}} "'"' ++ ++ for element in quicktime; do ++ eval "LDFLAGS_${element}="'"'"-framework QuickTime -framework Carbon "'$'"{LDFLAGS_${element}} "'"' + am_modules_with_ldflags="${am_modules_with_ldflags} ${element}" + done + + ++else ++ as_fn_error $? "cannot find QuickTime headers" "$LINENO" 5 + fi + + done + +- +- +-for ac_header in sysfs/libsysfs.h +-do +-as_ac_Header=`echo "ac_cv_header_$ac_header" | $as_tr_sh` +-if { as_var=$as_ac_Header; eval "test \"\${$as_var+set}\" = set"; }; then +- { echo "$as_me:$LINENO: checking for $ac_header" >&5 +-echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6; } +-if { as_var=$as_ac_Header; eval "test \"\${$as_var+set}\" = set"; }; then +- echo $ECHO_N "(cached) $ECHO_C" >&6 ++ fi + fi +-ac_res=`eval echo '${'$as_ac_Header'}'` +- { echo "$as_me:$LINENO: result: $ac_res" >&5 +-echo "${ECHO_T}$ac_res" >&6; } +-else +- # Is the header compilable? +-{ echo "$as_me:$LINENO: checking $ac_header usability" >&5 +-echo $ECHO_N "checking $ac_header usability... $ECHO_C" >&6; } +-cat >conftest.$ac_ext <<_ACEOF +-/* confdefs.h. */ +-_ACEOF +-cat confdefs.h >>conftest.$ac_ext +-cat >>conftest.$ac_ext <<_ACEOF +-/* end confdefs.h. */ +-$ac_includes_default +-#include <$ac_header> +-_ACEOF +-rm -f conftest.$ac_objext +-if { (ac_try="$ac_compile" +-case "(($ac_try" in +- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; +- *) ac_try_echo=$ac_try;; +-esac +-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 +- (eval "$ac_compile") 2>conftest.er1 +- ac_status=$? +- grep -v '^ *+' conftest.er1 >conftest.err +- rm -f conftest.er1 +- cat conftest.err >&5 +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); } && { +- test -z "$ac_c_werror_flag" || +- test ! -s conftest.err +- } && test -s conftest.$ac_objext; then +- ac_header_compiler=yes +-else +- echo "$as_me: failed program was:" >&5 +-sed 's/^/| /' conftest.$ac_ext >&5 + +- ac_header_compiler=no ++# Check whether --enable-real was given. ++if test "${enable_real+set}" = set; then : ++ enableval=$enable_real; + fi + +-rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext +-{ echo "$as_me:$LINENO: result: $ac_header_compiler" >&5 +-echo "${ECHO_T}$ac_header_compiler" >&6; } ++if test "${enable_real}" = "yes"; then + +-# Is the header present? +-{ echo "$as_me:$LINENO: checking $ac_header presence" >&5 +-echo $ECHO_N "checking $ac_header presence... $ECHO_C" >&6; } +-cat >conftest.$ac_ext <<_ACEOF +-/* confdefs.h. */ +-_ACEOF +-cat confdefs.h >>conftest.$ac_ext +-cat >>conftest.$ac_ext <<_ACEOF +-/* end confdefs.h. */ +-#include <$ac_header> +-_ACEOF +-if { (ac_try="$ac_cpp conftest.$ac_ext" +-case "(($ac_try" in +- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; +- *) ac_try_echo=$ac_try;; +-esac +-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 +- (eval "$ac_cpp conftest.$ac_ext") 2>conftest.er1 +- ac_status=$? +- grep -v '^ *+' conftest.er1 >conftest.err +- rm -f conftest.er1 +- cat conftest.err >&5 +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); } >/dev/null && { +- test -z "$ac_c_preproc_warn_flag$ac_c_werror_flag" || +- test ! -s conftest.err +- }; then +- ac_header_preproc=yes +-else +- echo "$as_me: failed program was:" >&5 +-sed 's/^/| /' conftest.$ac_ext >&5 ++ PLUGINS="${PLUGINS} realaudio" + +- ac_header_preproc=no + fi + +-rm -f conftest.err conftest.$ac_ext +-{ echo "$as_me:$LINENO: result: $ac_header_preproc" >&5 +-echo "${ECHO_T}$ac_header_preproc" >&6; } ++# Check whether --enable-realrtsp was given. ++if test "${enable_realrtsp+set}" = set; then : ++ enableval=$enable_realrtsp; ++fi + +-# So? What about this header? +-case $ac_header_compiler:$ac_header_preproc:$ac_c_preproc_warn_flag in +- yes:no: ) +- { echo "$as_me:$LINENO: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&5 +-echo "$as_me: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&2;} +- { echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the compiler's result" >&5 +-echo "$as_me: WARNING: $ac_header: proceeding with the compiler's result" >&2;} +- ac_header_preproc=yes +- ;; +- no:yes:* ) +- { echo "$as_me:$LINENO: WARNING: $ac_header: present but cannot be compiled" >&5 +-echo "$as_me: WARNING: $ac_header: present but cannot be compiled" >&2;} +- { echo "$as_me:$LINENO: WARNING: $ac_header: check for missing prerequisite headers?" >&5 +-echo "$as_me: WARNING: $ac_header: check for missing prerequisite headers?" >&2;} +- { echo "$as_me:$LINENO: WARNING: $ac_header: see the Autoconf documentation" >&5 +-echo "$as_me: WARNING: $ac_header: see the Autoconf documentation" >&2;} +- { echo "$as_me:$LINENO: WARNING: $ac_header: section \"Present But Cannot Be Compiled\"" >&5 +-echo "$as_me: WARNING: $ac_header: section \"Present But Cannot Be Compiled\"" >&2;} +- { echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the preprocessor's result" >&5 +-echo "$as_me: WARNING: $ac_header: proceeding with the preprocessor's result" >&2;} +- { echo "$as_me:$LINENO: WARNING: $ac_header: in the future, the compiler will take precedence" >&5 +-echo "$as_me: WARNING: $ac_header: in the future, the compiler will take precedence" >&2;} ++if test "${enable_realrtsp}" = "yes"; then + +- ;; +-esac +-{ echo "$as_me:$LINENO: checking for $ac_header" >&5 +-echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6; } +-if { as_var=$as_ac_Header; eval "test \"\${$as_var+set}\" = set"; }; then +- echo $ECHO_N "(cached) $ECHO_C" >&6 +-else +- eval "$as_ac_Header=\$ac_header_preproc" +-fi +-ac_res=`eval echo '${'$as_ac_Header'}'` +- { echo "$as_me:$LINENO: result: $ac_res" >&5 +-echo "${ECHO_T}$ac_res" >&6; } ++ PLUGINS="${PLUGINS} access_realrtsp" + + fi +-if test `eval echo '${'$as_ac_Header'}'` = yes; then ++ ++for ac_header in zlib.h ++do : ++ ac_fn_c_check_header_mongrel "$LINENO" "zlib.h" "ac_cv_header_zlib_h" "$ac_includes_default" ++if test "x$ac_cv_header_zlib_h" = xyes; then : + cat >>confdefs.h <<_ACEOF +-#define `echo "HAVE_$ac_header" | $as_tr_cpp` 1 ++#define HAVE_ZLIB_H 1 + _ACEOF + + +- for element in mp4 mkv; do +- eval "LDFLAGS_${element}="'"'"-lsysfs "'$'"{LDFLAGS_${element}} "'"' ++ for element in mp4 skins2 sap mkv; do ++ eval "LDFLAGS_${element}="'"'"-lz "'$'"{LDFLAGS_${element}} "'"' + am_modules_with_ldflags="${am_modules_with_ldflags} ${element}" + done + +@@ -48942,148 +34365,40 @@ fi + done + + +-# Check whether --enable-libtar was given. +-if test "${enable_libtar+set}" = set; then +- enableval=$enable_libtar; +-fi +- ++for ac_header in sysfs/libsysfs.h ++do : ++ ac_fn_c_check_header_mongrel "$LINENO" "sysfs/libsysfs.h" "ac_cv_header_sysfs_libsysfs_h" "$ac_includes_default" ++if test "x$ac_cv_header_sysfs_libsysfs_h" = xyes; then : ++ cat >>confdefs.h <<_ACEOF ++#define HAVE_SYSFS_LIBSYSFS_H 1 ++_ACEOF + +-if test "${enable_libtar}" != "no"; then + ++ for element in mp4 mkv; do ++ eval "LDFLAGS_${element}="'"'"-lsysfs "'$'"{LDFLAGS_${element}} "'"' ++ am_modules_with_ldflags="${am_modules_with_ldflags} ${element}" ++ done + +-for ac_header in libtar.h +-do +-as_ac_Header=`echo "ac_cv_header_$ac_header" | $as_tr_sh` +-if { as_var=$as_ac_Header; eval "test \"\${$as_var+set}\" = set"; }; then +- { echo "$as_me:$LINENO: checking for $ac_header" >&5 +-echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6; } +-if { as_var=$as_ac_Header; eval "test \"\${$as_var+set}\" = set"; }; then +- echo $ECHO_N "(cached) $ECHO_C" >&6 +-fi +-ac_res=`eval echo '${'$as_ac_Header'}'` +- { echo "$as_me:$LINENO: result: $ac_res" >&5 +-echo "${ECHO_T}$ac_res" >&6; } +-else +- # Is the header compilable? +-{ echo "$as_me:$LINENO: checking $ac_header usability" >&5 +-echo $ECHO_N "checking $ac_header usability... $ECHO_C" >&6; } +-cat >conftest.$ac_ext <<_ACEOF +-/* confdefs.h. */ +-_ACEOF +-cat confdefs.h >>conftest.$ac_ext +-cat >>conftest.$ac_ext <<_ACEOF +-/* end confdefs.h. */ +-$ac_includes_default +-#include <$ac_header> +-_ACEOF +-rm -f conftest.$ac_objext +-if { (ac_try="$ac_compile" +-case "(($ac_try" in +- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; +- *) ac_try_echo=$ac_try;; +-esac +-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 +- (eval "$ac_compile") 2>conftest.er1 +- ac_status=$? +- grep -v '^ *+' conftest.er1 >conftest.err +- rm -f conftest.er1 +- cat conftest.err >&5 +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); } && { +- test -z "$ac_c_werror_flag" || +- test ! -s conftest.err +- } && test -s conftest.$ac_objext; then +- ac_header_compiler=yes +-else +- echo "$as_me: failed program was:" >&5 +-sed 's/^/| /' conftest.$ac_ext >&5 + +- ac_header_compiler=no + fi + +-rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext +-{ echo "$as_me:$LINENO: result: $ac_header_compiler" >&5 +-echo "${ECHO_T}$ac_header_compiler" >&6; } ++done + +-# Is the header present? +-{ echo "$as_me:$LINENO: checking $ac_header presence" >&5 +-echo $ECHO_N "checking $ac_header presence... $ECHO_C" >&6; } +-cat >conftest.$ac_ext <<_ACEOF +-/* confdefs.h. */ +-_ACEOF +-cat confdefs.h >>conftest.$ac_ext +-cat >>conftest.$ac_ext <<_ACEOF +-/* end confdefs.h. */ +-#include <$ac_header> +-_ACEOF +-if { (ac_try="$ac_cpp conftest.$ac_ext" +-case "(($ac_try" in +- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; +- *) ac_try_echo=$ac_try;; +-esac +-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 +- (eval "$ac_cpp conftest.$ac_ext") 2>conftest.er1 +- ac_status=$? +- grep -v '^ *+' conftest.er1 >conftest.err +- rm -f conftest.er1 +- cat conftest.err >&5 +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); } >/dev/null && { +- test -z "$ac_c_preproc_warn_flag$ac_c_werror_flag" || +- test ! -s conftest.err +- }; then +- ac_header_preproc=yes +-else +- echo "$as_me: failed program was:" >&5 +-sed 's/^/| /' conftest.$ac_ext >&5 + +- ac_header_preproc=no ++# Check whether --enable-libtar was given. ++if test "${enable_libtar+set}" = set; then : ++ enableval=$enable_libtar; + fi + +-rm -f conftest.err conftest.$ac_ext +-{ echo "$as_me:$LINENO: result: $ac_header_preproc" >&5 +-echo "${ECHO_T}$ac_header_preproc" >&6; } +- +-# So? What about this header? +-case $ac_header_compiler:$ac_header_preproc:$ac_c_preproc_warn_flag in +- yes:no: ) +- { echo "$as_me:$LINENO: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&5 +-echo "$as_me: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&2;} +- { echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the compiler's result" >&5 +-echo "$as_me: WARNING: $ac_header: proceeding with the compiler's result" >&2;} +- ac_header_preproc=yes +- ;; +- no:yes:* ) +- { echo "$as_me:$LINENO: WARNING: $ac_header: present but cannot be compiled" >&5 +-echo "$as_me: WARNING: $ac_header: present but cannot be compiled" >&2;} +- { echo "$as_me:$LINENO: WARNING: $ac_header: check for missing prerequisite headers?" >&5 +-echo "$as_me: WARNING: $ac_header: check for missing prerequisite headers?" >&2;} +- { echo "$as_me:$LINENO: WARNING: $ac_header: see the Autoconf documentation" >&5 +-echo "$as_me: WARNING: $ac_header: see the Autoconf documentation" >&2;} +- { echo "$as_me:$LINENO: WARNING: $ac_header: section \"Present But Cannot Be Compiled\"" >&5 +-echo "$as_me: WARNING: $ac_header: section \"Present But Cannot Be Compiled\"" >&2;} +- { echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the preprocessor's result" >&5 +-echo "$as_me: WARNING: $ac_header: proceeding with the preprocessor's result" >&2;} +- { echo "$as_me:$LINENO: WARNING: $ac_header: in the future, the compiler will take precedence" >&5 +-echo "$as_me: WARNING: $ac_header: in the future, the compiler will take precedence" >&2;} + +- ;; +-esac +-{ echo "$as_me:$LINENO: checking for $ac_header" >&5 +-echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6; } +-if { as_var=$as_ac_Header; eval "test \"\${$as_var+set}\" = set"; }; then +- echo $ECHO_N "(cached) $ECHO_C" >&6 +-else +- eval "$as_ac_Header=\$ac_header_preproc" +-fi +-ac_res=`eval echo '${'$as_ac_Header'}'` +- { echo "$as_me:$LINENO: result: $ac_res" >&5 +-echo "${ECHO_T}$ac_res" >&6; } ++if test "${enable_libtar}" != "no"; then : + +-fi +-if test `eval echo '${'$as_ac_Header'}'` = yes; then ++ for ac_header in libtar.h ++do : ++ ac_fn_c_check_header_mongrel "$LINENO" "libtar.h" "ac_cv_header_libtar_h" "$ac_includes_default" ++if test "x$ac_cv_header_libtar_h" = xyes; then : + cat >>confdefs.h <<_ACEOF +-#define `echo "HAVE_$ac_header" | $as_tr_cpp` 1 ++#define HAVE_LIBTAR_H 1 + _ACEOF + + +@@ -49101,9 +34416,8 @@ done + fi + + +- + # Check whether --enable-a52 was given. +-if test "${enable_a52+set}" = set; then ++if test "${enable_a52+set}" = set; then : + enableval=$enable_a52; + fi + +@@ -49111,13 +34425,13 @@ if test "${enable_a52}" != "no" + then + + # Check whether --with-a52 was given. +-if test "${with_a52+set}" = set; then ++if test "${with_a52+set}" = set; then : + withval=$with_a52; + fi + + + # Check whether --with-a52-tree was given. +-if test "${with_a52_tree+set}" = set; then ++if test "${with_a52_tree+set}" = set; then : + withval=$with_a52_tree; + fi + +@@ -49126,18 +34440,16 @@ fi + real_a52_tree="`cd ${with_a52_tree} 2>/dev/null && pwd`" + if test -z "${real_a52_tree}" + then +- { echo "$as_me:$LINENO: result: no" >&5 +-echo "${ECHO_T}no" >&6; } +- { { echo "$as_me:$LINENO: error: ${with_a52_tree} directory doesn't exist" >&5 +-echo "$as_me: error: ${with_a52_tree} directory doesn't exist" >&2;} +- { (exit 1); exit 1; }; } ++ { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 ++$as_echo "no" >&6; } ++ as_fn_error $? "${with_a52_tree} directory doesn't exist" "$LINENO" 5 + fi +- { echo "$as_me:$LINENO: checking for a52.h in ${real_a52_tree}/include" >&5 +-echo $ECHO_N "checking for a52.h in ${real_a52_tree}/include... $ECHO_C" >&6; } ++ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for a52.h in ${real_a52_tree}/include" >&5 ++$as_echo_n "checking for a52.h in ${real_a52_tree}/include... " >&6; } + if test -f ${real_a52_tree}/include/a52.h + then +- { echo "$as_me:$LINENO: result: yes" >&5 +-echo "${ECHO_T}yes" >&6; } ++ { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5 ++$as_echo "yes" >&6; } + + for element in a52tofloat32; do + eval "CPPFLAGS_${element}="'"$'"{CPPFLAGS_${element}} -I${real_a52_tree}"'"' +@@ -49151,18 +34463,14 @@ echo "${ECHO_T}yes" >&6; } + done + + LDFLAGS="${LDFLAGS_save} ${LDFLAGS_a52tofloat32}" +- { echo "$as_me:$LINENO: checking for a52_free in -la52" >&5 +-echo $ECHO_N "checking for a52_free in -la52... $ECHO_C" >&6; } +-if test "${ac_cv_lib_a52_a52_free+set}" = set; then +- echo $ECHO_N "(cached) $ECHO_C" >&6 ++ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for a52_free in -la52" >&5 ++$as_echo_n "checking for a52_free in -la52... " >&6; } ++if ${ac_cv_lib_a52_a52_free+:} false; then : ++ $as_echo_n "(cached) " >&6 + else + ac_check_lib_save_LIBS=$LIBS + LIBS="-la52 $LIBS" +-cat >conftest.$ac_ext <<_ACEOF +-/* confdefs.h. */ +-_ACEOF +-cat confdefs.h >>conftest.$ac_ext +-cat >>conftest.$ac_ext <<_ACEOF ++cat confdefs.h - <<_ACEOF >conftest.$ac_ext + /* end confdefs.h. */ + + /* Override any GCC internal prototype to avoid an error. +@@ -49180,39 +34488,18 @@ return a52_free (); + return 0; + } + _ACEOF +-rm -f conftest.$ac_objext conftest$ac_exeext +-if { (ac_try="$ac_link" +-case "(($ac_try" in +- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; +- *) ac_try_echo=$ac_try;; +-esac +-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 +- (eval "$ac_link") 2>conftest.er1 +- ac_status=$? +- grep -v '^ *+' conftest.er1 >conftest.err +- rm -f conftest.er1 +- cat conftest.err >&5 +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); } && { +- test -z "$ac_c_werror_flag" || +- test ! -s conftest.err +- } && test -s conftest$ac_exeext && +- $as_test_x conftest$ac_exeext; then ++if ac_fn_c_try_link "$LINENO"; then : + ac_cv_lib_a52_a52_free=yes + else +- echo "$as_me: failed program was:" >&5 +-sed 's/^/| /' conftest.$ac_ext >&5 +- +- ac_cv_lib_a52_a52_free=no ++ ac_cv_lib_a52_a52_free=no + fi +- +-rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ +- conftest$ac_exeext conftest.$ac_ext ++rm -f core conftest.err conftest.$ac_objext \ ++ conftest$ac_exeext conftest.$ac_ext + LIBS=$ac_check_lib_save_LIBS + fi +-{ echo "$as_me:$LINENO: result: $ac_cv_lib_a52_a52_free" >&5 +-echo "${ECHO_T}$ac_cv_lib_a52_a52_free" >&6; } +-if test $ac_cv_lib_a52_a52_free = yes; then ++{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_a52_a52_free" >&5 ++$as_echo "$ac_cv_lib_a52_a52_free" >&6; } ++if test "x$ac_cv_lib_a52_a52_free" = xyes; then : + + + BUILTINS="${BUILTINS} a52tofloat32" +@@ -49234,24 +34521,18 @@ else + + if test -f ${real_a52_tree}/liba52/.libs/liba52.a + then +- { { echo "$as_me:$LINENO: error: make sure you have at least a52dec-0.7.3" >&5 +-echo "$as_me: error: make sure you have at least a52dec-0.7.3" >&2;} +- { (exit 1); exit 1; }; } ++ as_fn_error $? "make sure you have at least a52dec-0.7.3" "$LINENO" 5 + else +- { { echo "$as_me:$LINENO: error: the specified tree hasn't been compiled" >&5 +-echo "$as_me: error: the specified tree hasn't been compiled" >&2;} +- { (exit 1); exit 1; }; } ++ as_fn_error $? "the specified tree hasn't been compiled" "$LINENO" 5 + fi + + fi + + LDFLAGS="${LDFLAGS_save}" + else +- { echo "$as_me:$LINENO: result: no" >&5 +-echo "${ECHO_T}no" >&6; } +- { { echo "$as_me:$LINENO: error: the specified tree doesn't have a52.h" >&5 +-echo "$as_me: error: the specified tree doesn't have a52.h" >&2;} +- { (exit 1); exit 1; }; } ++ { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 ++$as_echo "no" >&6; } ++ as_fn_error $? "the specified tree doesn't have a52.h" "$LINENO" 5 + fi + else + if test -z "${with_a52}" +@@ -49264,154 +34545,22 @@ echo "$as_me: error: the specified tree doesn't have a52.h" >&2;} + fi + CPPFLAGS="${CPPFLAGS_save} ${CPPFLAGS_test} ${CPPFLAGS_a52tofloat32}" + LDFLAGS="${LDFLAGS_save} ${LDFLAGS_test} ${LDFLAGS_a52tofloat32}" +- +-for ac_header in a52dec/a52.h +-do +-as_ac_Header=`echo "ac_cv_header_$ac_header" | $as_tr_sh` +-if { as_var=$as_ac_Header; eval "test \"\${$as_var+set}\" = set"; }; then +- { echo "$as_me:$LINENO: checking for $ac_header" >&5 +-echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6; } +-if { as_var=$as_ac_Header; eval "test \"\${$as_var+set}\" = set"; }; then +- echo $ECHO_N "(cached) $ECHO_C" >&6 +-fi +-ac_res=`eval echo '${'$as_ac_Header'}'` +- { echo "$as_me:$LINENO: result: $ac_res" >&5 +-echo "${ECHO_T}$ac_res" >&6; } +-else +- # Is the header compilable? +-{ echo "$as_me:$LINENO: checking $ac_header usability" >&5 +-echo $ECHO_N "checking $ac_header usability... $ECHO_C" >&6; } +-cat >conftest.$ac_ext <<_ACEOF +-/* confdefs.h. */ +-_ACEOF +-cat confdefs.h >>conftest.$ac_ext +-cat >>conftest.$ac_ext <<_ACEOF +-/* end confdefs.h. */ +-$ac_includes_default +-#include <$ac_header> +-_ACEOF +-rm -f conftest.$ac_objext +-if { (ac_try="$ac_compile" +-case "(($ac_try" in +- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; +- *) ac_try_echo=$ac_try;; +-esac +-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 +- (eval "$ac_compile") 2>conftest.er1 +- ac_status=$? +- grep -v '^ *+' conftest.er1 >conftest.err +- rm -f conftest.er1 +- cat conftest.err >&5 +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); } && { +- test -z "$ac_c_werror_flag" || +- test ! -s conftest.err +- } && test -s conftest.$ac_objext; then +- ac_header_compiler=yes +-else +- echo "$as_me: failed program was:" >&5 +-sed 's/^/| /' conftest.$ac_ext >&5 +- +- ac_header_compiler=no +-fi +- +-rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext +-{ echo "$as_me:$LINENO: result: $ac_header_compiler" >&5 +-echo "${ECHO_T}$ac_header_compiler" >&6; } +- +-# Is the header present? +-{ echo "$as_me:$LINENO: checking $ac_header presence" >&5 +-echo $ECHO_N "checking $ac_header presence... $ECHO_C" >&6; } +-cat >conftest.$ac_ext <<_ACEOF +-/* confdefs.h. */ +-_ACEOF +-cat confdefs.h >>conftest.$ac_ext +-cat >>conftest.$ac_ext <<_ACEOF +-/* end confdefs.h. */ +-#include <$ac_header> +-_ACEOF +-if { (ac_try="$ac_cpp conftest.$ac_ext" +-case "(($ac_try" in +- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; +- *) ac_try_echo=$ac_try;; +-esac +-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 +- (eval "$ac_cpp conftest.$ac_ext") 2>conftest.er1 +- ac_status=$? +- grep -v '^ *+' conftest.er1 >conftest.err +- rm -f conftest.er1 +- cat conftest.err >&5 +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); } >/dev/null && { +- test -z "$ac_c_preproc_warn_flag$ac_c_werror_flag" || +- test ! -s conftest.err +- }; then +- ac_header_preproc=yes +-else +- echo "$as_me: failed program was:" >&5 +-sed 's/^/| /' conftest.$ac_ext >&5 +- +- ac_header_preproc=no +-fi +- +-rm -f conftest.err conftest.$ac_ext +-{ echo "$as_me:$LINENO: result: $ac_header_preproc" >&5 +-echo "${ECHO_T}$ac_header_preproc" >&6; } +- +-# So? What about this header? +-case $ac_header_compiler:$ac_header_preproc:$ac_c_preproc_warn_flag in +- yes:no: ) +- { echo "$as_me:$LINENO: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&5 +-echo "$as_me: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&2;} +- { echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the compiler's result" >&5 +-echo "$as_me: WARNING: $ac_header: proceeding with the compiler's result" >&2;} +- ac_header_preproc=yes +- ;; +- no:yes:* ) +- { echo "$as_me:$LINENO: WARNING: $ac_header: present but cannot be compiled" >&5 +-echo "$as_me: WARNING: $ac_header: present but cannot be compiled" >&2;} +- { echo "$as_me:$LINENO: WARNING: $ac_header: check for missing prerequisite headers?" >&5 +-echo "$as_me: WARNING: $ac_header: check for missing prerequisite headers?" >&2;} +- { echo "$as_me:$LINENO: WARNING: $ac_header: see the Autoconf documentation" >&5 +-echo "$as_me: WARNING: $ac_header: see the Autoconf documentation" >&2;} +- { echo "$as_me:$LINENO: WARNING: $ac_header: section \"Present But Cannot Be Compiled\"" >&5 +-echo "$as_me: WARNING: $ac_header: section \"Present But Cannot Be Compiled\"" >&2;} +- { echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the preprocessor's result" >&5 +-echo "$as_me: WARNING: $ac_header: proceeding with the preprocessor's result" >&2;} +- { echo "$as_me:$LINENO: WARNING: $ac_header: in the future, the compiler will take precedence" >&5 +-echo "$as_me: WARNING: $ac_header: in the future, the compiler will take precedence" >&2;} +- +- ;; +-esac +-{ echo "$as_me:$LINENO: checking for $ac_header" >&5 +-echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6; } +-if { as_var=$as_ac_Header; eval "test \"\${$as_var+set}\" = set"; }; then +- echo $ECHO_N "(cached) $ECHO_C" >&6 +-else +- eval "$as_ac_Header=\$ac_header_preproc" +-fi +-ac_res=`eval echo '${'$as_ac_Header'}'` +- { echo "$as_me:$LINENO: result: $ac_res" >&5 +-echo "${ECHO_T}$ac_res" >&6; } +- +-fi +-if test `eval echo '${'$as_ac_Header'}'` = yes; then ++ for ac_header in a52dec/a52.h ++do : ++ ac_fn_c_check_header_mongrel "$LINENO" "a52dec/a52.h" "ac_cv_header_a52dec_a52_h" "$ac_includes_default" ++if test "x$ac_cv_header_a52dec_a52_h" = xyes; then : + cat >>confdefs.h <<_ACEOF +-#define `echo "HAVE_$ac_header" | $as_tr_cpp` 1 ++#define HAVE_A52DEC_A52_H 1 + _ACEOF + +- { echo "$as_me:$LINENO: checking for a52_free in -la52" >&5 +-echo $ECHO_N "checking for a52_free in -la52... $ECHO_C" >&6; } +-if test "${ac_cv_lib_a52_a52_free+set}" = set; then +- echo $ECHO_N "(cached) $ECHO_C" >&6 ++ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for a52_free in -la52" >&5 ++$as_echo_n "checking for a52_free in -la52... " >&6; } ++if ${ac_cv_lib_a52_a52_free+:} false; then : ++ $as_echo_n "(cached) " >&6 + else + ac_check_lib_save_LIBS=$LIBS + LIBS="-la52 $LIBS" +-cat >conftest.$ac_ext <<_ACEOF +-/* confdefs.h. */ +-_ACEOF +-cat confdefs.h >>conftest.$ac_ext +-cat >>conftest.$ac_ext <<_ACEOF ++cat confdefs.h - <<_ACEOF >conftest.$ac_ext + /* end confdefs.h. */ + + /* Override any GCC internal prototype to avoid an error. +@@ -49429,39 +34578,18 @@ return a52_free (); + return 0; + } + _ACEOF +-rm -f conftest.$ac_objext conftest$ac_exeext +-if { (ac_try="$ac_link" +-case "(($ac_try" in +- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; +- *) ac_try_echo=$ac_try;; +-esac +-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 +- (eval "$ac_link") 2>conftest.er1 +- ac_status=$? +- grep -v '^ *+' conftest.er1 >conftest.err +- rm -f conftest.er1 +- cat conftest.err >&5 +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); } && { +- test -z "$ac_c_werror_flag" || +- test ! -s conftest.err +- } && test -s conftest$ac_exeext && +- $as_test_x conftest$ac_exeext; then ++if ac_fn_c_try_link "$LINENO"; then : + ac_cv_lib_a52_a52_free=yes + else +- echo "$as_me: failed program was:" >&5 +-sed 's/^/| /' conftest.$ac_ext >&5 +- +- ac_cv_lib_a52_a52_free=no ++ ac_cv_lib_a52_a52_free=no + fi +- +-rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ +- conftest$ac_exeext conftest.$ac_ext ++rm -f core conftest.err conftest.$ac_objext \ ++ conftest$ac_exeext conftest.$ac_ext + LIBS=$ac_check_lib_save_LIBS + fi +-{ echo "$as_me:$LINENO: result: $ac_cv_lib_a52_a52_free" >&5 +-echo "${ECHO_T}$ac_cv_lib_a52_a52_free" >&6; } +-if test $ac_cv_lib_a52_a52_free = yes; then ++{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_a52_a52_free" >&5 ++$as_echo "$ac_cv_lib_a52_a52_free" >&6; } ++if test "x$ac_cv_lib_a52_a52_free" = xyes; then : + + + PLUGINS="${PLUGINS} a52tofloat32" +@@ -49481,9 +34609,7 @@ if test $ac_cv_lib_a52_a52_free = yes; then + + else + +- { { echo "$as_me:$LINENO: error: Could not find liba52 on your system: you may get it from http://liba52.sf.net/. Alternatively you can use --disable-a52 to disable the a52 plugin." >&5 +-echo "$as_me: error: Could not find liba52 on your system: you may get it from http://liba52.sf.net/. Alternatively you can use --disable-a52 to disable the a52 plugin." >&2;} +- { (exit 1); exit 1; }; } ++ as_fn_error $? "Could not find liba52 on your system: you may get it from http://liba52.sf.net/. Alternatively you can use --disable-a52 to disable the a52 plugin." "$LINENO" 5 + + fi + +@@ -49499,7 +34625,7 @@ fi + + + # Check whether --with-a52-fixed was given. +-if test "${with_a52_fixed+set}" = set; then ++if test "${with_a52_fixed+set}" = set; then : + withval=$with_a52_fixed; + + for element in a52tofloat32; do +@@ -49511,14 +34637,14 @@ fi + + + # Check whether --enable-dts was given. +-if test "${enable_dts+set}" = set; then ++if test "${enable_dts+set}" = set; then : + enableval=$enable_dts; + fi + + if test "${enable_dts}" != "no"; then + + # Check whether --with-dts-tree was given. +-if test "${with_dts_tree+set}" = set; then ++if test "${with_dts_tree+set}" = set; then : + withval=$with_dts_tree; + fi + +@@ -49527,18 +34653,16 @@ fi + real_dts_tree="`cd ${with_dts_tree} 2>/dev/null && pwd`" + if test -z "${real_dts_tree}" + then +- { echo "$as_me:$LINENO: result: no" >&5 +-echo "${ECHO_T}no" >&6; } +- { { echo "$as_me:$LINENO: error: ${with_dts_tree} directory doesn't exist" >&5 +-echo "$as_me: error: ${with_dts_tree} directory doesn't exist" >&2;} +- { (exit 1); exit 1; }; } ++ { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 ++$as_echo "no" >&6; } ++ as_fn_error $? "${with_dts_tree} directory doesn't exist" "$LINENO" 5 + fi +- { echo "$as_me:$LINENO: checking for dts.h in ${real_dts_tree}/include" >&5 +-echo $ECHO_N "checking for dts.h in ${real_dts_tree}/include... $ECHO_C" >&6; } ++ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for dts.h in ${real_dts_tree}/include" >&5 ++$as_echo_n "checking for dts.h in ${real_dts_tree}/include... " >&6; } + if test -f ${real_dts_tree}/include/dts.h + then +- { echo "$as_me:$LINENO: result: yes" >&5 +-echo "${ECHO_T}yes" >&6; } ++ { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5 ++$as_echo "yes" >&6; } + + for element in dtstofloat32; do + eval "CPPFLAGS_${element}="'"$'"{CPPFLAGS_${element}} -I${real_dts_tree}/include"'"' +@@ -49552,18 +34676,14 @@ echo "${ECHO_T}yes" >&6; } + done + + LDFLAGS="${LDFLAGS_save} ${LDFLAGS_dtstofloat32}" +- { echo "$as_me:$LINENO: checking for dts_free in -ldts_pic" >&5 +-echo $ECHO_N "checking for dts_free in -ldts_pic... $ECHO_C" >&6; } +-if test "${ac_cv_lib_dts_pic_dts_free+set}" = set; then +- echo $ECHO_N "(cached) $ECHO_C" >&6 ++ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for dts_free in -ldts_pic" >&5 ++$as_echo_n "checking for dts_free in -ldts_pic... " >&6; } ++if ${ac_cv_lib_dts_pic_dts_free+:} false; then : ++ $as_echo_n "(cached) " >&6 + else + ac_check_lib_save_LIBS=$LIBS + LIBS="-ldts_pic -lm $LIBS" +-cat >conftest.$ac_ext <<_ACEOF +-/* confdefs.h. */ +-_ACEOF +-cat confdefs.h >>conftest.$ac_ext +-cat >>conftest.$ac_ext <<_ACEOF ++cat confdefs.h - <<_ACEOF >conftest.$ac_ext + /* end confdefs.h. */ + + /* Override any GCC internal prototype to avoid an error. +@@ -49581,39 +34701,18 @@ return dts_free (); + return 0; + } + _ACEOF +-rm -f conftest.$ac_objext conftest$ac_exeext +-if { (ac_try="$ac_link" +-case "(($ac_try" in +- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; +- *) ac_try_echo=$ac_try;; +-esac +-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 +- (eval "$ac_link") 2>conftest.er1 +- ac_status=$? +- grep -v '^ *+' conftest.er1 >conftest.err +- rm -f conftest.er1 +- cat conftest.err >&5 +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); } && { +- test -z "$ac_c_werror_flag" || +- test ! -s conftest.err +- } && test -s conftest$ac_exeext && +- $as_test_x conftest$ac_exeext; then ++if ac_fn_c_try_link "$LINENO"; then : + ac_cv_lib_dts_pic_dts_free=yes + else +- echo "$as_me: failed program was:" >&5 +-sed 's/^/| /' conftest.$ac_ext >&5 +- +- ac_cv_lib_dts_pic_dts_free=no ++ ac_cv_lib_dts_pic_dts_free=no + fi +- +-rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ +- conftest$ac_exeext conftest.$ac_ext ++rm -f core conftest.err conftest.$ac_objext \ ++ conftest$ac_exeext conftest.$ac_ext + LIBS=$ac_check_lib_save_LIBS + fi +-{ echo "$as_me:$LINENO: result: $ac_cv_lib_dts_pic_dts_free" >&5 +-echo "${ECHO_T}$ac_cv_lib_dts_pic_dts_free" >&6; } +-if test $ac_cv_lib_dts_pic_dts_free = yes; then ++{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_dts_pic_dts_free" >&5 ++$as_echo "$ac_cv_lib_dts_pic_dts_free" >&6; } ++if test "x$ac_cv_lib_dts_pic_dts_free" = xyes; then : + + + PLUGINS="${PLUGINS} dtstofloat32" +@@ -49627,18 +34726,14 @@ if test $ac_cv_lib_dts_pic_dts_free = yes; then + + else + +- { echo "$as_me:$LINENO: checking for dts_free in -ldts" >&5 +-echo $ECHO_N "checking for dts_free in -ldts... $ECHO_C" >&6; } +-if test "${ac_cv_lib_dts_dts_free+set}" = set; then +- echo $ECHO_N "(cached) $ECHO_C" >&6 ++ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for dts_free in -ldts" >&5 ++$as_echo_n "checking for dts_free in -ldts... " >&6; } ++if ${ac_cv_lib_dts_dts_free+:} false; then : ++ $as_echo_n "(cached) " >&6 + else + ac_check_lib_save_LIBS=$LIBS + LIBS="-ldts $LIBS" +-cat >conftest.$ac_ext <<_ACEOF +-/* confdefs.h. */ +-_ACEOF +-cat confdefs.h >>conftest.$ac_ext +-cat >>conftest.$ac_ext <<_ACEOF ++cat confdefs.h - <<_ACEOF >conftest.$ac_ext + /* end confdefs.h. */ + + /* Override any GCC internal prototype to avoid an error. +@@ -49656,39 +34751,18 @@ return dts_free (); + return 0; + } + _ACEOF +-rm -f conftest.$ac_objext conftest$ac_exeext +-if { (ac_try="$ac_link" +-case "(($ac_try" in +- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; +- *) ac_try_echo=$ac_try;; +-esac +-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 +- (eval "$ac_link") 2>conftest.er1 +- ac_status=$? +- grep -v '^ *+' conftest.er1 >conftest.err +- rm -f conftest.er1 +- cat conftest.err >&5 +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); } && { +- test -z "$ac_c_werror_flag" || +- test ! -s conftest.err +- } && test -s conftest$ac_exeext && +- $as_test_x conftest$ac_exeext; then ++if ac_fn_c_try_link "$LINENO"; then : + ac_cv_lib_dts_dts_free=yes + else +- echo "$as_me: failed program was:" >&5 +-sed 's/^/| /' conftest.$ac_ext >&5 +- +- ac_cv_lib_dts_dts_free=no ++ ac_cv_lib_dts_dts_free=no + fi +- +-rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ +- conftest$ac_exeext conftest.$ac_ext ++rm -f core conftest.err conftest.$ac_objext \ ++ conftest$ac_exeext conftest.$ac_ext + LIBS=$ac_check_lib_save_LIBS + fi +-{ echo "$as_me:$LINENO: result: $ac_cv_lib_dts_dts_free" >&5 +-echo "${ECHO_T}$ac_cv_lib_dts_dts_free" >&6; } +-if test $ac_cv_lib_dts_dts_free = yes; then ++{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_dts_dts_free" >&5 ++$as_echo "$ac_cv_lib_dts_dts_free" >&6; } ++if test "x$ac_cv_lib_dts_dts_free" = xyes; then : + + + BUILTINS="${BUILTINS} dtstofloat32" +@@ -49704,13 +34778,9 @@ else + + if test -f ${real_dts_tree}/libdts/libdts.a + then +- { { echo "$as_me:$LINENO: error: make sure you have at least libdts-0.0.2" >&5 +-echo "$as_me: error: make sure you have at least libdts-0.0.2" >&2;} +- { (exit 1); exit 1; }; } ++ as_fn_error $? "make sure you have at least libdts-0.0.2" "$LINENO" 5 + else +- { { echo "$as_me:$LINENO: error: the specified tree hasn't been compiled" >&5 +-echo "$as_me: error: the specified tree hasn't been compiled" >&2;} +- { (exit 1); exit 1; }; } ++ as_fn_error $? "the specified tree hasn't been compiled" "$LINENO" 5 + fi + + fi +@@ -49720,162 +34790,28 @@ fi + + LDFLAGS="${LDFLAGS_save}" + else +- { echo "$as_me:$LINENO: result: no" >&5 +-echo "${ECHO_T}no" >&6; } +- { { echo "$as_me:$LINENO: error: the specified tree doesn't have dts.h" >&5 +-echo "$as_me: error: the specified tree doesn't have dts.h" >&2;} +- { (exit 1); exit 1; }; } ++ { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 ++$as_echo "no" >&6; } ++ as_fn_error $? "the specified tree doesn't have dts.h" "$LINENO" 5 + fi + else + LDFLAGS="${LDFLAGS_save} ${LDFLAGS_dtstofloat32}" +- +-for ac_header in dts.h +-do +-as_ac_Header=`echo "ac_cv_header_$ac_header" | $as_tr_sh` +-if { as_var=$as_ac_Header; eval "test \"\${$as_var+set}\" = set"; }; then +- { echo "$as_me:$LINENO: checking for $ac_header" >&5 +-echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6; } +-if { as_var=$as_ac_Header; eval "test \"\${$as_var+set}\" = set"; }; then +- echo $ECHO_N "(cached) $ECHO_C" >&6 +-fi +-ac_res=`eval echo '${'$as_ac_Header'}'` +- { echo "$as_me:$LINENO: result: $ac_res" >&5 +-echo "${ECHO_T}$ac_res" >&6; } +-else +- # Is the header compilable? +-{ echo "$as_me:$LINENO: checking $ac_header usability" >&5 +-echo $ECHO_N "checking $ac_header usability... $ECHO_C" >&6; } +-cat >conftest.$ac_ext <<_ACEOF +-/* confdefs.h. */ +-_ACEOF +-cat confdefs.h >>conftest.$ac_ext +-cat >>conftest.$ac_ext <<_ACEOF +-/* end confdefs.h. */ +-$ac_includes_default +-#include <$ac_header> +-_ACEOF +-rm -f conftest.$ac_objext +-if { (ac_try="$ac_compile" +-case "(($ac_try" in +- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; +- *) ac_try_echo=$ac_try;; +-esac +-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 +- (eval "$ac_compile") 2>conftest.er1 +- ac_status=$? +- grep -v '^ *+' conftest.er1 >conftest.err +- rm -f conftest.er1 +- cat conftest.err >&5 +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); } && { +- test -z "$ac_c_werror_flag" || +- test ! -s conftest.err +- } && test -s conftest.$ac_objext; then +- ac_header_compiler=yes +-else +- echo "$as_me: failed program was:" >&5 +-sed 's/^/| /' conftest.$ac_ext >&5 +- +- ac_header_compiler=no +-fi +- +-rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext +-{ echo "$as_me:$LINENO: result: $ac_header_compiler" >&5 +-echo "${ECHO_T}$ac_header_compiler" >&6; } +- +-# Is the header present? +-{ echo "$as_me:$LINENO: checking $ac_header presence" >&5 +-echo $ECHO_N "checking $ac_header presence... $ECHO_C" >&6; } +-cat >conftest.$ac_ext <<_ACEOF +-/* confdefs.h. */ +-_ACEOF +-cat confdefs.h >>conftest.$ac_ext +-cat >>conftest.$ac_ext <<_ACEOF +-/* end confdefs.h. */ +-#include <$ac_header> +-_ACEOF +-if { (ac_try="$ac_cpp conftest.$ac_ext" +-case "(($ac_try" in +- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; +- *) ac_try_echo=$ac_try;; +-esac +-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 +- (eval "$ac_cpp conftest.$ac_ext") 2>conftest.er1 +- ac_status=$? +- grep -v '^ *+' conftest.er1 >conftest.err +- rm -f conftest.er1 +- cat conftest.err >&5 +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); } >/dev/null && { +- test -z "$ac_c_preproc_warn_flag$ac_c_werror_flag" || +- test ! -s conftest.err +- }; then +- ac_header_preproc=yes +-else +- echo "$as_me: failed program was:" >&5 +-sed 's/^/| /' conftest.$ac_ext >&5 +- +- ac_header_preproc=no +-fi +- +-rm -f conftest.err conftest.$ac_ext +-{ echo "$as_me:$LINENO: result: $ac_header_preproc" >&5 +-echo "${ECHO_T}$ac_header_preproc" >&6; } +- +-# So? What about this header? +-case $ac_header_compiler:$ac_header_preproc:$ac_c_preproc_warn_flag in +- yes:no: ) +- { echo "$as_me:$LINENO: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&5 +-echo "$as_me: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&2;} +- { echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the compiler's result" >&5 +-echo "$as_me: WARNING: $ac_header: proceeding with the compiler's result" >&2;} +- ac_header_preproc=yes +- ;; +- no:yes:* ) +- { echo "$as_me:$LINENO: WARNING: $ac_header: present but cannot be compiled" >&5 +-echo "$as_me: WARNING: $ac_header: present but cannot be compiled" >&2;} +- { echo "$as_me:$LINENO: WARNING: $ac_header: check for missing prerequisite headers?" >&5 +-echo "$as_me: WARNING: $ac_header: check for missing prerequisite headers?" >&2;} +- { echo "$as_me:$LINENO: WARNING: $ac_header: see the Autoconf documentation" >&5 +-echo "$as_me: WARNING: $ac_header: see the Autoconf documentation" >&2;} +- { echo "$as_me:$LINENO: WARNING: $ac_header: section \"Present But Cannot Be Compiled\"" >&5 +-echo "$as_me: WARNING: $ac_header: section \"Present But Cannot Be Compiled\"" >&2;} +- { echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the preprocessor's result" >&5 +-echo "$as_me: WARNING: $ac_header: proceeding with the preprocessor's result" >&2;} +- { echo "$as_me:$LINENO: WARNING: $ac_header: in the future, the compiler will take precedence" >&5 +-echo "$as_me: WARNING: $ac_header: in the future, the compiler will take precedence" >&2;} +- +- ;; +-esac +-{ echo "$as_me:$LINENO: checking for $ac_header" >&5 +-echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6; } +-if { as_var=$as_ac_Header; eval "test \"\${$as_var+set}\" = set"; }; then +- echo $ECHO_N "(cached) $ECHO_C" >&6 +-else +- eval "$as_ac_Header=\$ac_header_preproc" +-fi +-ac_res=`eval echo '${'$as_ac_Header'}'` +- { echo "$as_me:$LINENO: result: $ac_res" >&5 +-echo "${ECHO_T}$ac_res" >&6; } +- +-fi +-if test `eval echo '${'$as_ac_Header'}'` = yes; then ++ for ac_header in dts.h ++do : ++ ac_fn_c_check_header_mongrel "$LINENO" "dts.h" "ac_cv_header_dts_h" "$ac_includes_default" ++if test "x$ac_cv_header_dts_h" = xyes; then : + cat >>confdefs.h <<_ACEOF +-#define `echo "HAVE_$ac_header" | $as_tr_cpp` 1 ++#define HAVE_DTS_H 1 + _ACEOF + +- { echo "$as_me:$LINENO: checking for dts_free in -ldts_pic" >&5 +-echo $ECHO_N "checking for dts_free in -ldts_pic... $ECHO_C" >&6; } +-if test "${ac_cv_lib_dts_pic_dts_free+set}" = set; then +- echo $ECHO_N "(cached) $ECHO_C" >&6 ++ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for dts_free in -ldts_pic" >&5 ++$as_echo_n "checking for dts_free in -ldts_pic... " >&6; } ++if ${ac_cv_lib_dts_pic_dts_free+:} false; then : ++ $as_echo_n "(cached) " >&6 + else + ac_check_lib_save_LIBS=$LIBS + LIBS="-ldts_pic -lm $LIBS" +-cat >conftest.$ac_ext <<_ACEOF +-/* confdefs.h. */ +-_ACEOF +-cat confdefs.h >>conftest.$ac_ext +-cat >>conftest.$ac_ext <<_ACEOF ++cat confdefs.h - <<_ACEOF >conftest.$ac_ext + /* end confdefs.h. */ + + /* Override any GCC internal prototype to avoid an error. +@@ -49893,39 +34829,18 @@ return dts_free (); + return 0; + } + _ACEOF +-rm -f conftest.$ac_objext conftest$ac_exeext +-if { (ac_try="$ac_link" +-case "(($ac_try" in +- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; +- *) ac_try_echo=$ac_try;; +-esac +-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 +- (eval "$ac_link") 2>conftest.er1 +- ac_status=$? +- grep -v '^ *+' conftest.er1 >conftest.err +- rm -f conftest.er1 +- cat conftest.err >&5 +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); } && { +- test -z "$ac_c_werror_flag" || +- test ! -s conftest.err +- } && test -s conftest$ac_exeext && +- $as_test_x conftest$ac_exeext; then ++if ac_fn_c_try_link "$LINENO"; then : + ac_cv_lib_dts_pic_dts_free=yes + else +- echo "$as_me: failed program was:" >&5 +-sed 's/^/| /' conftest.$ac_ext >&5 +- +- ac_cv_lib_dts_pic_dts_free=no ++ ac_cv_lib_dts_pic_dts_free=no + fi +- +-rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ +- conftest$ac_exeext conftest.$ac_ext ++rm -f core conftest.err conftest.$ac_objext \ ++ conftest$ac_exeext conftest.$ac_ext + LIBS=$ac_check_lib_save_LIBS + fi +-{ echo "$as_me:$LINENO: result: $ac_cv_lib_dts_pic_dts_free" >&5 +-echo "${ECHO_T}$ac_cv_lib_dts_pic_dts_free" >&6; } +-if test $ac_cv_lib_dts_pic_dts_free = yes; then ++{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_dts_pic_dts_free" >&5 ++$as_echo "$ac_cv_lib_dts_pic_dts_free" >&6; } ++if test "x$ac_cv_lib_dts_pic_dts_free" = xyes; then : + + + PLUGINS="${PLUGINS} dtstofloat32" +@@ -49939,18 +34854,14 @@ if test $ac_cv_lib_dts_pic_dts_free = yes; then + + else + +- { echo "$as_me:$LINENO: checking for dts_free in -ldts" >&5 +-echo $ECHO_N "checking for dts_free in -ldts... $ECHO_C" >&6; } +-if test "${ac_cv_lib_dts_dts_free+set}" = set; then +- echo $ECHO_N "(cached) $ECHO_C" >&6 ++ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for dts_free in -ldts" >&5 ++$as_echo_n "checking for dts_free in -ldts... " >&6; } ++if ${ac_cv_lib_dts_dts_free+:} false; then : ++ $as_echo_n "(cached) " >&6 + else + ac_check_lib_save_LIBS=$LIBS + LIBS="-ldts $LIBS" +-cat >conftest.$ac_ext <<_ACEOF +-/* confdefs.h. */ +-_ACEOF +-cat confdefs.h >>conftest.$ac_ext +-cat >>conftest.$ac_ext <<_ACEOF ++cat confdefs.h - <<_ACEOF >conftest.$ac_ext + /* end confdefs.h. */ + + /* Override any GCC internal prototype to avoid an error. +@@ -49968,39 +34879,18 @@ return dts_free (); + return 0; + } + _ACEOF +-rm -f conftest.$ac_objext conftest$ac_exeext +-if { (ac_try="$ac_link" +-case "(($ac_try" in +- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; +- *) ac_try_echo=$ac_try;; +-esac +-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 +- (eval "$ac_link") 2>conftest.er1 +- ac_status=$? +- grep -v '^ *+' conftest.er1 >conftest.err +- rm -f conftest.er1 +- cat conftest.err >&5 +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); } && { +- test -z "$ac_c_werror_flag" || +- test ! -s conftest.err +- } && test -s conftest$ac_exeext && +- $as_test_x conftest$ac_exeext; then ++if ac_fn_c_try_link "$LINENO"; then : + ac_cv_lib_dts_dts_free=yes + else +- echo "$as_me: failed program was:" >&5 +-sed 's/^/| /' conftest.$ac_ext >&5 +- +- ac_cv_lib_dts_dts_free=no ++ ac_cv_lib_dts_dts_free=no + fi +- +-rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ +- conftest$ac_exeext conftest.$ac_ext ++rm -f core conftest.err conftest.$ac_objext \ ++ conftest$ac_exeext conftest.$ac_ext + LIBS=$ac_check_lib_save_LIBS + fi +-{ echo "$as_me:$LINENO: result: $ac_cv_lib_dts_dts_free" >&5 +-echo "${ECHO_T}$ac_cv_lib_dts_dts_free" >&6; } +-if test $ac_cv_lib_dts_dts_free = yes; then ++{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_dts_dts_free" >&5 ++$as_echo "$ac_cv_lib_dts_dts_free" >&6; } ++if test "x$ac_cv_lib_dts_dts_free" = xyes; then : + + + BUILTINS="${BUILTINS} dtstofloat32" +@@ -50015,9 +34905,7 @@ if test $ac_cv_lib_dts_dts_free = yes; then + else + + if test "${enable_dts}" = "yes"; then +- { { echo "$as_me:$LINENO: error: Could not find libdts on your system: you may get it from http://www.videolan.org/dtsdec.html" >&5 +-echo "$as_me: error: Could not find libdts on your system: you may get it from http://www.videolan.org/dtsdec.html" >&2;} +- { (exit 1); exit 1; }; } ++ as_fn_error $? "Could not find libdts on your system: you may get it from http://www.videolan.org/dtsdec.html" "$LINENO" 5 + fi + + fi +@@ -50035,7 +34923,7 @@ done + fi + + # Check whether --enable-flac was given. +-if test "${enable_flac+set}" = set; then ++if test "${enable_flac+set}" = set; then : + enableval=$enable_flac; + fi + +@@ -50043,27 +34931,25 @@ if test "${enable_flac}" = "yes" + then + + # Check whether --with-flac-tree was given. +-if test "${with_flac_tree+set}" = set; then ++if test "${with_flac_tree+set}" = set; then : + withval=$with_flac_tree; + fi + + if test -n "${with_flac_tree}" + then +- { echo "$as_me:$LINENO: checking for libFLAC.a in ${with_flac_tree}" >&5 +-echo $ECHO_N "checking for libFLAC.a in ${with_flac_tree}... $ECHO_C" >&6; } ++ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for libFLAC.a in ${with_flac_tree}" >&5 ++$as_echo_n "checking for libFLAC.a in ${with_flac_tree}... " >&6; } + real_flac_tree="`cd ${with_flac_tree} 2>/dev/null && pwd`" + if test -z "${real_flac_tree}" + then +- { echo "$as_me:$LINENO: result: no" >&5 +-echo "${ECHO_T}no" >&6; } +- { { echo "$as_me:$LINENO: error: cannot cd to ${with_flac_tree}" >&5 +-echo "$as_me: error: cannot cd to ${with_flac_tree}" >&2;} +- { (exit 1); exit 1; }; } ++ { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 ++$as_echo "no" >&6; } ++ as_fn_error $? "cannot cd to ${with_flac_tree}" "$LINENO" 5 + fi + if test -f "${real_flac_tree}/src/libFLAC/.libs/libFLAC.a" + then +- { echo "$as_me:$LINENO: result: ${real_flac_tree}/src/libFLAC/.libs/libFLAC.a" >&5 +-echo "${ECHO_T}${real_flac_tree}/src/libFLAC/.libs/libFLAC.a" >&6; } ++ { $as_echo "$as_me:${as_lineno-$LINENO}: result: ${real_flac_tree}/src/libFLAC/.libs/libFLAC.a" >&5 ++$as_echo "${real_flac_tree}/src/libFLAC/.libs/libFLAC.a" >&6; } + + for element in flacdec; do + eval "LDFLAGS_${element}="'"'"${real_flac_tree}/src/libFLAC/.libs/libFLAC.a "'$'"{LDFLAGS_${element}} "'"' +@@ -50077,152 +34963,20 @@ echo "${ECHO_T}${real_flac_tree}/src/libFLAC/.libs/libFLAC.a" >&6; } + done + + +-cat >>confdefs.h <<\_ACEOF +-#define HAVE_FLAC_STREAM_DECODER_H 1 +-_ACEOF ++$as_echo "#define HAVE_FLAC_STREAM_DECODER_H 1" >>confdefs.h + + else +- { echo "$as_me:$LINENO: result: no" >&5 +-echo "${ECHO_T}no" >&6; } +- { { echo "$as_me:$LINENO: error: cannot find ${real_flac_tree}/src/libFLAC/.libs/libFLAC.a, make sure you compiled flac in ${with_flac_tree}" >&5 +-echo "$as_me: error: cannot find ${real_flac_tree}/src/libFLAC/.libs/libFLAC.a, make sure you compiled flac in ${with_flac_tree}" >&2;} +- { (exit 1); exit 1; }; } ++ { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 ++$as_echo "no" >&6; } ++ as_fn_error $? "cannot find ${real_flac_tree}/src/libFLAC/.libs/libFLAC.a, make sure you compiled flac in ${with_flac_tree}" "$LINENO" 5 + fi + else +- +-for ac_header in FLAC/stream_decoder.h +-do +-as_ac_Header=`echo "ac_cv_header_$ac_header" | $as_tr_sh` +-if { as_var=$as_ac_Header; eval "test \"\${$as_var+set}\" = set"; }; then +- { echo "$as_me:$LINENO: checking for $ac_header" >&5 +-echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6; } +-if { as_var=$as_ac_Header; eval "test \"\${$as_var+set}\" = set"; }; then +- echo $ECHO_N "(cached) $ECHO_C" >&6 +-fi +-ac_res=`eval echo '${'$as_ac_Header'}'` +- { echo "$as_me:$LINENO: result: $ac_res" >&5 +-echo "${ECHO_T}$ac_res" >&6; } +-else +- # Is the header compilable? +-{ echo "$as_me:$LINENO: checking $ac_header usability" >&5 +-echo $ECHO_N "checking $ac_header usability... $ECHO_C" >&6; } +-cat >conftest.$ac_ext <<_ACEOF +-/* confdefs.h. */ +-_ACEOF +-cat confdefs.h >>conftest.$ac_ext +-cat >>conftest.$ac_ext <<_ACEOF +-/* end confdefs.h. */ +-$ac_includes_default +-#include <$ac_header> +-_ACEOF +-rm -f conftest.$ac_objext +-if { (ac_try="$ac_compile" +-case "(($ac_try" in +- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; +- *) ac_try_echo=$ac_try;; +-esac +-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 +- (eval "$ac_compile") 2>conftest.er1 +- ac_status=$? +- grep -v '^ *+' conftest.er1 >conftest.err +- rm -f conftest.er1 +- cat conftest.err >&5 +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); } && { +- test -z "$ac_c_werror_flag" || +- test ! -s conftest.err +- } && test -s conftest.$ac_objext; then +- ac_header_compiler=yes +-else +- echo "$as_me: failed program was:" >&5 +-sed 's/^/| /' conftest.$ac_ext >&5 +- +- ac_header_compiler=no +-fi +- +-rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext +-{ echo "$as_me:$LINENO: result: $ac_header_compiler" >&5 +-echo "${ECHO_T}$ac_header_compiler" >&6; } +- +-# Is the header present? +-{ echo "$as_me:$LINENO: checking $ac_header presence" >&5 +-echo $ECHO_N "checking $ac_header presence... $ECHO_C" >&6; } +-cat >conftest.$ac_ext <<_ACEOF +-/* confdefs.h. */ +-_ACEOF +-cat confdefs.h >>conftest.$ac_ext +-cat >>conftest.$ac_ext <<_ACEOF +-/* end confdefs.h. */ +-#include <$ac_header> +-_ACEOF +-if { (ac_try="$ac_cpp conftest.$ac_ext" +-case "(($ac_try" in +- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; +- *) ac_try_echo=$ac_try;; +-esac +-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 +- (eval "$ac_cpp conftest.$ac_ext") 2>conftest.er1 +- ac_status=$? +- grep -v '^ *+' conftest.er1 >conftest.err +- rm -f conftest.er1 +- cat conftest.err >&5 +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); } >/dev/null && { +- test -z "$ac_c_preproc_warn_flag$ac_c_werror_flag" || +- test ! -s conftest.err +- }; then +- ac_header_preproc=yes +-else +- echo "$as_me: failed program was:" >&5 +-sed 's/^/| /' conftest.$ac_ext >&5 +- +- ac_header_preproc=no +-fi +- +-rm -f conftest.err conftest.$ac_ext +-{ echo "$as_me:$LINENO: result: $ac_header_preproc" >&5 +-echo "${ECHO_T}$ac_header_preproc" >&6; } +- +-# So? What about this header? +-case $ac_header_compiler:$ac_header_preproc:$ac_c_preproc_warn_flag in +- yes:no: ) +- { echo "$as_me:$LINENO: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&5 +-echo "$as_me: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&2;} +- { echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the compiler's result" >&5 +-echo "$as_me: WARNING: $ac_header: proceeding with the compiler's result" >&2;} +- ac_header_preproc=yes +- ;; +- no:yes:* ) +- { echo "$as_me:$LINENO: WARNING: $ac_header: present but cannot be compiled" >&5 +-echo "$as_me: WARNING: $ac_header: present but cannot be compiled" >&2;} +- { echo "$as_me:$LINENO: WARNING: $ac_header: check for missing prerequisite headers?" >&5 +-echo "$as_me: WARNING: $ac_header: check for missing prerequisite headers?" >&2;} +- { echo "$as_me:$LINENO: WARNING: $ac_header: see the Autoconf documentation" >&5 +-echo "$as_me: WARNING: $ac_header: see the Autoconf documentation" >&2;} +- { echo "$as_me:$LINENO: WARNING: $ac_header: section \"Present But Cannot Be Compiled\"" >&5 +-echo "$as_me: WARNING: $ac_header: section \"Present But Cannot Be Compiled\"" >&2;} +- { echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the preprocessor's result" >&5 +-echo "$as_me: WARNING: $ac_header: proceeding with the preprocessor's result" >&2;} +- { echo "$as_me:$LINENO: WARNING: $ac_header: in the future, the compiler will take precedence" >&5 +-echo "$as_me: WARNING: $ac_header: in the future, the compiler will take precedence" >&2;} +- +- ;; +-esac +-{ echo "$as_me:$LINENO: checking for $ac_header" >&5 +-echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6; } +-if { as_var=$as_ac_Header; eval "test \"\${$as_var+set}\" = set"; }; then +- echo $ECHO_N "(cached) $ECHO_C" >&6 +-else +- eval "$as_ac_Header=\$ac_header_preproc" +-fi +-ac_res=`eval echo '${'$as_ac_Header'}'` +- { echo "$as_me:$LINENO: result: $ac_res" >&5 +-echo "${ECHO_T}$ac_res" >&6; } +- +-fi +-if test `eval echo '${'$as_ac_Header'}'` = yes; then ++ for ac_header in FLAC/stream_decoder.h ++do : ++ ac_fn_c_check_header_mongrel "$LINENO" "FLAC/stream_decoder.h" "ac_cv_header_FLAC_stream_decoder_h" "$ac_includes_default" ++if test "x$ac_cv_header_FLAC_stream_decoder_h" = xyes; then : + cat >>confdefs.h <<_ACEOF +-#define `echo "HAVE_$ac_header" | $as_tr_cpp` 1 ++#define HAVE_FLAC_STREAM_DECODER_H 1 + _ACEOF + + +@@ -50240,7 +34994,7 @@ done + fi + + # Check whether --enable-libmpeg2 was given. +-if test "${enable_libmpeg2+set}" = set; then ++if test "${enable_libmpeg2+set}" = set; then : + enableval=$enable_libmpeg2; + fi + +@@ -50248,27 +35002,25 @@ if test "${enable_libmpeg2}" != "no" + then + + # Check whether --with-libmpeg2-tree was given. +-if test "${with_libmpeg2_tree+set}" = set; then ++if test "${with_libmpeg2_tree+set}" = set; then : + withval=$with_libmpeg2_tree; + fi + + if test -n "${with_libmpeg2_tree}" + then +- { echo "$as_me:$LINENO: checking for libmpeg2.a in ${with_libmpeg2_tree}" >&5 +-echo $ECHO_N "checking for libmpeg2.a in ${with_libmpeg2_tree}... $ECHO_C" >&6; } ++ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for libmpeg2.a in ${with_libmpeg2_tree}" >&5 ++$as_echo_n "checking for libmpeg2.a in ${with_libmpeg2_tree}... " >&6; } + real_libmpeg2_tree="`cd ${with_libmpeg2_tree} 2>/dev/null && pwd`" + if test -z "${real_libmpeg2_tree}" + then +- { echo "$as_me:$LINENO: result: no" >&5 +-echo "${ECHO_T}no" >&6; } +- { { echo "$as_me:$LINENO: error: cannot cd to ${with_libmpeg2_tree}" >&5 +-echo "$as_me: error: cannot cd to ${with_libmpeg2_tree}" >&2;} +- { (exit 1); exit 1; }; } ++ { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 ++$as_echo "no" >&6; } ++ as_fn_error $? "cannot cd to ${with_libmpeg2_tree}" "$LINENO" 5 + fi + if test -f "${real_libmpeg2_tree}/libmpeg2/.libs/libmpeg2.a" + then +- { echo "$as_me:$LINENO: result: ${real_libmpeg2_tree}/libmpeg2/.libs/libmpeg2.a" >&5 +-echo "${ECHO_T}${real_libmpeg2_tree}/libmpeg2/.libs/libmpeg2.a" >&6; } ++ { $as_echo "$as_me:${as_lineno-$LINENO}: result: ${real_libmpeg2_tree}/libmpeg2/.libs/libmpeg2.a" >&5 ++$as_echo "${real_libmpeg2_tree}/libmpeg2/.libs/libmpeg2.a" >&6; } + + BUILTINS="${BUILTINS} libmpeg2" + +@@ -50286,156 +35038,22 @@ echo "${ECHO_T}${real_libmpeg2_tree}/libmpeg2/.libs/libmpeg2.a" >&6; } + + eval "`cd ${real_libmpeg2_tree}/include && ln -sf . mpeg2dec 2>/dev/null`" + else +- { echo "$as_me:$LINENO: result: no" >&5 +-echo "${ECHO_T}no" >&6; } +- { { echo "$as_me:$LINENO: error: cannot find ${real_libmpeg2_tree}/libmpeg2/.libs/libmpeg2.a, make sure you compiled libmpeg2 in ${with_libmpeg2_tree}" >&5 +-echo "$as_me: error: cannot find ${real_libmpeg2_tree}/libmpeg2/.libs/libmpeg2.a, make sure you compiled libmpeg2 in ${with_libmpeg2_tree}" >&2;} +- { (exit 1); exit 1; }; } ++ { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 ++$as_echo "no" >&6; } ++ as_fn_error $? "cannot find ${real_libmpeg2_tree}/libmpeg2/.libs/libmpeg2.a, make sure you compiled libmpeg2 in ${with_libmpeg2_tree}" "$LINENO" 5 + fi + else +- +-for ac_header in mpeg2dec/mpeg2.h +-do +-as_ac_Header=`echo "ac_cv_header_$ac_header" | $as_tr_sh` +-if { as_var=$as_ac_Header; eval "test \"\${$as_var+set}\" = set"; }; then +- { echo "$as_me:$LINENO: checking for $ac_header" >&5 +-echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6; } +-if { as_var=$as_ac_Header; eval "test \"\${$as_var+set}\" = set"; }; then +- echo $ECHO_N "(cached) $ECHO_C" >&6 +-fi +-ac_res=`eval echo '${'$as_ac_Header'}'` +- { echo "$as_me:$LINENO: result: $ac_res" >&5 +-echo "${ECHO_T}$ac_res" >&6; } +-else +- # Is the header compilable? +-{ echo "$as_me:$LINENO: checking $ac_header usability" >&5 +-echo $ECHO_N "checking $ac_header usability... $ECHO_C" >&6; } +-cat >conftest.$ac_ext <<_ACEOF +-/* confdefs.h. */ +-_ACEOF +-cat confdefs.h >>conftest.$ac_ext +-cat >>conftest.$ac_ext <<_ACEOF +-/* end confdefs.h. */ +-$ac_includes_default +-#include <$ac_header> +-_ACEOF +-rm -f conftest.$ac_objext +-if { (ac_try="$ac_compile" +-case "(($ac_try" in +- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; +- *) ac_try_echo=$ac_try;; +-esac +-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 +- (eval "$ac_compile") 2>conftest.er1 +- ac_status=$? +- grep -v '^ *+' conftest.er1 >conftest.err +- rm -f conftest.er1 +- cat conftest.err >&5 +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); } && { +- test -z "$ac_c_werror_flag" || +- test ! -s conftest.err +- } && test -s conftest.$ac_objext; then +- ac_header_compiler=yes +-else +- echo "$as_me: failed program was:" >&5 +-sed 's/^/| /' conftest.$ac_ext >&5 +- +- ac_header_compiler=no +-fi +- +-rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext +-{ echo "$as_me:$LINENO: result: $ac_header_compiler" >&5 +-echo "${ECHO_T}$ac_header_compiler" >&6; } +- +-# Is the header present? +-{ echo "$as_me:$LINENO: checking $ac_header presence" >&5 +-echo $ECHO_N "checking $ac_header presence... $ECHO_C" >&6; } +-cat >conftest.$ac_ext <<_ACEOF +-/* confdefs.h. */ +-_ACEOF +-cat confdefs.h >>conftest.$ac_ext +-cat >>conftest.$ac_ext <<_ACEOF +-/* end confdefs.h. */ +-#include <$ac_header> +-_ACEOF +-if { (ac_try="$ac_cpp conftest.$ac_ext" +-case "(($ac_try" in +- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; +- *) ac_try_echo=$ac_try;; +-esac +-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 +- (eval "$ac_cpp conftest.$ac_ext") 2>conftest.er1 +- ac_status=$? +- grep -v '^ *+' conftest.er1 >conftest.err +- rm -f conftest.er1 +- cat conftest.err >&5 +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); } >/dev/null && { +- test -z "$ac_c_preproc_warn_flag$ac_c_werror_flag" || +- test ! -s conftest.err +- }; then +- ac_header_preproc=yes +-else +- echo "$as_me: failed program was:" >&5 +-sed 's/^/| /' conftest.$ac_ext >&5 +- +- ac_header_preproc=no +-fi +- +-rm -f conftest.err conftest.$ac_ext +-{ echo "$as_me:$LINENO: result: $ac_header_preproc" >&5 +-echo "${ECHO_T}$ac_header_preproc" >&6; } +- +-# So? What about this header? +-case $ac_header_compiler:$ac_header_preproc:$ac_c_preproc_warn_flag in +- yes:no: ) +- { echo "$as_me:$LINENO: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&5 +-echo "$as_me: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&2;} +- { echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the compiler's result" >&5 +-echo "$as_me: WARNING: $ac_header: proceeding with the compiler's result" >&2;} +- ac_header_preproc=yes +- ;; +- no:yes:* ) +- { echo "$as_me:$LINENO: WARNING: $ac_header: present but cannot be compiled" >&5 +-echo "$as_me: WARNING: $ac_header: present but cannot be compiled" >&2;} +- { echo "$as_me:$LINENO: WARNING: $ac_header: check for missing prerequisite headers?" >&5 +-echo "$as_me: WARNING: $ac_header: check for missing prerequisite headers?" >&2;} +- { echo "$as_me:$LINENO: WARNING: $ac_header: see the Autoconf documentation" >&5 +-echo "$as_me: WARNING: $ac_header: see the Autoconf documentation" >&2;} +- { echo "$as_me:$LINENO: WARNING: $ac_header: section \"Present But Cannot Be Compiled\"" >&5 +-echo "$as_me: WARNING: $ac_header: section \"Present But Cannot Be Compiled\"" >&2;} +- { echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the preprocessor's result" >&5 +-echo "$as_me: WARNING: $ac_header: proceeding with the preprocessor's result" >&2;} +- { echo "$as_me:$LINENO: WARNING: $ac_header: in the future, the compiler will take precedence" >&5 +-echo "$as_me: WARNING: $ac_header: in the future, the compiler will take precedence" >&2;} +- +- ;; +-esac +-{ echo "$as_me:$LINENO: checking for $ac_header" >&5 +-echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6; } +-if { as_var=$as_ac_Header; eval "test \"\${$as_var+set}\" = set"; }; then +- echo $ECHO_N "(cached) $ECHO_C" >&6 +-else +- eval "$as_ac_Header=\$ac_header_preproc" +-fi +-ac_res=`eval echo '${'$as_ac_Header'}'` +- { echo "$as_me:$LINENO: result: $ac_res" >&5 +-echo "${ECHO_T}$ac_res" >&6; } +- +-fi +-if test `eval echo '${'$as_ac_Header'}'` = yes; then ++ for ac_header in mpeg2dec/mpeg2.h ++do : ++ ac_fn_c_check_header_mongrel "$LINENO" "mpeg2dec/mpeg2.h" "ac_cv_header_mpeg2dec_mpeg2_h" "$ac_includes_default" ++if test "x$ac_cv_header_mpeg2dec_mpeg2_h" = xyes; then : + cat >>confdefs.h <<_ACEOF +-#define `echo "HAVE_$ac_header" | $as_tr_cpp` 1 ++#define HAVE_MPEG2DEC_MPEG2_H 1 + _ACEOF + +- { echo "$as_me:$LINENO: checking for libmpeg2 version >= 0.3.2" >&5 +-echo $ECHO_N "checking for libmpeg2 version >= 0.3.2... $ECHO_C" >&6; } +- cat >conftest.$ac_ext <<_ACEOF +-/* confdefs.h. */ +-_ACEOF +-cat confdefs.h >>conftest.$ac_ext +-cat >>conftest.$ac_ext <<_ACEOF ++ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for libmpeg2 version >= 0.3.2" >&5 ++$as_echo_n "checking for libmpeg2 version >= 0.3.2... " >&6; } ++ cat confdefs.h - <<_ACEOF >conftest.$ac_ext + /* end confdefs.h. */ + #include + #ifdef MPEG2_RELEASE +@@ -50445,376 +35063,112 @@ cat >>conftest.$ac_ext <<_ACEOF + #endif + _ACEOF + if (eval "$ac_cpp conftest.$ac_ext") 2>&5 | +- $EGREP "yes" >/dev/null 2>&1; then +- { echo "$as_me:$LINENO: result: yes" >&5 +-echo "${ECHO_T}yes" >&6; } ++ $EGREP "yes" >/dev/null 2>&1; then : ++ { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5 ++$as_echo "yes" >&6; } + + PLUGINS="${PLUGINS} libmpeg2" + +- +- for element in libmpeg2; do +- eval "LDFLAGS_${element}="'"'"-lmpeg2 "'$'"{LDFLAGS_${element}} "'"' +- am_modules_with_ldflags="${am_modules_with_ldflags} ${element}" +- done +- +-else +- { echo "$as_me:$LINENO: result: no" >&5 +-echo "${ECHO_T}no" >&6; } +- { { echo "$as_me:$LINENO: error: Your libmpeg2 is too old (you need the cvs version): you may get a more recent one from http://libmpeg2.sf.net/. Alternatively you can use --disable-libmpeg2 to disable the libmpeg2 plugin." >&5 +-echo "$as_me: error: Your libmpeg2 is too old (you need the cvs version): you may get a more recent one from http://libmpeg2.sf.net/. Alternatively you can use --disable-libmpeg2 to disable the libmpeg2 plugin." >&2;} +- { (exit 1); exit 1; }; } +-fi +-rm -f conftest* +- +-else +- { { echo "$as_me:$LINENO: error: Could not find libmpeg2 on your system: you may get it from http://libmpeg2.sf.net/ (you need the cvs version). Alternatively you can use --disable-libmpeg2 to disable the libmpeg2 plugin." >&5 +-echo "$as_me: error: Could not find libmpeg2 on your system: you may get it from http://libmpeg2.sf.net/ (you need the cvs version). Alternatively you can use --disable-libmpeg2 to disable the libmpeg2 plugin." >&2;} +- { (exit 1); exit 1; }; } +- +-fi +- +-done +- +- fi +-fi +- +-# Check whether --enable-vorbis was given. +-if test "${enable_vorbis+set}" = set; then +- enableval=$enable_vorbis; +-fi +- +-if test "${enable_vorbis}" != "no" +-then +- +-# Check whether --with-vorbis-tree was given. +-if test "${with_vorbis_tree+set}" = set; then +- withval=$with_vorbis_tree; +-fi +- +- if test -n "${with_vorbis_tree}" +- then +- { echo "$as_me:$LINENO: checking for libvorbis.a in ${with_vorbis_tree}" >&5 +-echo $ECHO_N "checking for libvorbis.a in ${with_vorbis_tree}... $ECHO_C" >&6; } +- real_vorbis_tree="`cd ${with_vorbis_tree} 2>/dev/null && pwd`" +- if test -z "${real_vorbis_tree}" +- then +- { echo "$as_me:$LINENO: result: no" >&5 +-echo "${ECHO_T}no" >&6; } +- { { echo "$as_me:$LINENO: error: cannot cd to ${with_vorbis_tree}" >&5 +-echo "$as_me: error: cannot cd to ${with_vorbis_tree}" >&2;} +- { (exit 1); exit 1; }; } +- fi +- if test -f "${real_vorbis_tree}/lib/.libs/libvorbis.a" +- then +- { echo "$as_me:$LINENO: result: ${real_vorbis_tree}/lib/.libs/libvorbis.a" >&5 +-echo "${ECHO_T}${real_vorbis_tree}/lib/.libs/libvorbis.a" >&6; } +- +- PLUGINS="${PLUGINS} vorbis" +- +- +- for element in vorbis; do +- eval "LDFLAGS_${element}="'"'"${real_vorbis_tree}/lib/.libs/libvorbis.a ${real_vorbis_tree}/lib/.libs/libvorbisenc.a "'$'"{LDFLAGS_${element}} "'"' +- am_modules_with_ldflags="${am_modules_with_ldflags} ${element}" +- done +- +- +- for element in vorbis; do +- eval "CFLAGS_${element}="'"$'"{CFLAGS_${element}} -I${real_vorbis_tree}/include"'"' +- am_modules_with_cflags="${am_modules_with_cflags} ${element}" +- done +- +- else +- { echo "$as_me:$LINENO: result: no" >&5 +-echo "${ECHO_T}no" >&6; } +- { { echo "$as_me:$LINENO: error: cannot find ${real_vorbis_tree}/lib/.libs/libvorbis.a, make sure you compiled vorbis in ${with_vorbis_tree}" >&5 +-echo "$as_me: error: cannot find ${real_vorbis_tree}/lib/.libs/libvorbis.a, make sure you compiled vorbis in ${with_vorbis_tree}" >&2;} +- { (exit 1); exit 1; }; } +- fi +- else +- +-for ac_header in vorbis/codec.h +-do +-as_ac_Header=`echo "ac_cv_header_$ac_header" | $as_tr_sh` +-if { as_var=$as_ac_Header; eval "test \"\${$as_var+set}\" = set"; }; then +- { echo "$as_me:$LINENO: checking for $ac_header" >&5 +-echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6; } +-if { as_var=$as_ac_Header; eval "test \"\${$as_var+set}\" = set"; }; then +- echo $ECHO_N "(cached) $ECHO_C" >&6 +-fi +-ac_res=`eval echo '${'$as_ac_Header'}'` +- { echo "$as_me:$LINENO: result: $ac_res" >&5 +-echo "${ECHO_T}$ac_res" >&6; } +-else +- # Is the header compilable? +-{ echo "$as_me:$LINENO: checking $ac_header usability" >&5 +-echo $ECHO_N "checking $ac_header usability... $ECHO_C" >&6; } +-cat >conftest.$ac_ext <<_ACEOF +-/* confdefs.h. */ +-_ACEOF +-cat confdefs.h >>conftest.$ac_ext +-cat >>conftest.$ac_ext <<_ACEOF +-/* end confdefs.h. */ +-$ac_includes_default +-#include <$ac_header> +-_ACEOF +-rm -f conftest.$ac_objext +-if { (ac_try="$ac_compile" +-case "(($ac_try" in +- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; +- *) ac_try_echo=$ac_try;; +-esac +-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 +- (eval "$ac_compile") 2>conftest.er1 +- ac_status=$? +- grep -v '^ *+' conftest.er1 >conftest.err +- rm -f conftest.er1 +- cat conftest.err >&5 +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); } && { +- test -z "$ac_c_werror_flag" || +- test ! -s conftest.err +- } && test -s conftest.$ac_objext; then +- ac_header_compiler=yes +-else +- echo "$as_me: failed program was:" >&5 +-sed 's/^/| /' conftest.$ac_ext >&5 +- +- ac_header_compiler=no +-fi +- +-rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext +-{ echo "$as_me:$LINENO: result: $ac_header_compiler" >&5 +-echo "${ECHO_T}$ac_header_compiler" >&6; } +- +-# Is the header present? +-{ echo "$as_me:$LINENO: checking $ac_header presence" >&5 +-echo $ECHO_N "checking $ac_header presence... $ECHO_C" >&6; } +-cat >conftest.$ac_ext <<_ACEOF +-/* confdefs.h. */ +-_ACEOF +-cat confdefs.h >>conftest.$ac_ext +-cat >>conftest.$ac_ext <<_ACEOF +-/* end confdefs.h. */ +-#include <$ac_header> +-_ACEOF +-if { (ac_try="$ac_cpp conftest.$ac_ext" +-case "(($ac_try" in +- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; +- *) ac_try_echo=$ac_try;; +-esac +-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 +- (eval "$ac_cpp conftest.$ac_ext") 2>conftest.er1 +- ac_status=$? +- grep -v '^ *+' conftest.er1 >conftest.err +- rm -f conftest.er1 +- cat conftest.err >&5 +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); } >/dev/null && { +- test -z "$ac_c_preproc_warn_flag$ac_c_werror_flag" || +- test ! -s conftest.err +- }; then +- ac_header_preproc=yes ++ ++ for element in libmpeg2; do ++ eval "LDFLAGS_${element}="'"'"-lmpeg2 "'$'"{LDFLAGS_${element}} "'"' ++ am_modules_with_ldflags="${am_modules_with_ldflags} ${element}" ++ done ++ + else +- echo "$as_me: failed program was:" >&5 +-sed 's/^/| /' conftest.$ac_ext >&5 ++ { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 ++$as_echo "no" >&6; } ++ as_fn_error $? "Your libmpeg2 is too old (you need the cvs version): you may get a more recent one from http://libmpeg2.sf.net/. Alternatively you can use --disable-libmpeg2 to disable the libmpeg2 plugin." "$LINENO" 5 ++fi ++rm -f conftest* ++ ++else ++ as_fn_error $? "Could not find libmpeg2 on your system: you may get it from http://libmpeg2.sf.net/ (you need the cvs version). Alternatively you can use --disable-libmpeg2 to disable the libmpeg2 plugin." "$LINENO" 5 + +- ac_header_preproc=no + fi + +-rm -f conftest.err conftest.$ac_ext +-{ echo "$as_me:$LINENO: result: $ac_header_preproc" >&5 +-echo "${ECHO_T}$ac_header_preproc" >&6; } ++done + +-# So? What about this header? +-case $ac_header_compiler:$ac_header_preproc:$ac_c_preproc_warn_flag in +- yes:no: ) +- { echo "$as_me:$LINENO: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&5 +-echo "$as_me: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&2;} +- { echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the compiler's result" >&5 +-echo "$as_me: WARNING: $ac_header: proceeding with the compiler's result" >&2;} +- ac_header_preproc=yes +- ;; +- no:yes:* ) +- { echo "$as_me:$LINENO: WARNING: $ac_header: present but cannot be compiled" >&5 +-echo "$as_me: WARNING: $ac_header: present but cannot be compiled" >&2;} +- { echo "$as_me:$LINENO: WARNING: $ac_header: check for missing prerequisite headers?" >&5 +-echo "$as_me: WARNING: $ac_header: check for missing prerequisite headers?" >&2;} +- { echo "$as_me:$LINENO: WARNING: $ac_header: see the Autoconf documentation" >&5 +-echo "$as_me: WARNING: $ac_header: see the Autoconf documentation" >&2;} +- { echo "$as_me:$LINENO: WARNING: $ac_header: section \"Present But Cannot Be Compiled\"" >&5 +-echo "$as_me: WARNING: $ac_header: section \"Present But Cannot Be Compiled\"" >&2;} +- { echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the preprocessor's result" >&5 +-echo "$as_me: WARNING: $ac_header: proceeding with the preprocessor's result" >&2;} +- { echo "$as_me:$LINENO: WARNING: $ac_header: in the future, the compiler will take precedence" >&5 +-echo "$as_me: WARNING: $ac_header: in the future, the compiler will take precedence" >&2;} ++ fi ++fi + +- ;; +-esac +-{ echo "$as_me:$LINENO: checking for $ac_header" >&5 +-echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6; } +-if { as_var=$as_ac_Header; eval "test \"\${$as_var+set}\" = set"; }; then +- echo $ECHO_N "(cached) $ECHO_C" >&6 +-else +- eval "$as_ac_Header=\$ac_header_preproc" ++# Check whether --enable-vorbis was given. ++if test "${enable_vorbis+set}" = set; then : ++ enableval=$enable_vorbis; + fi +-ac_res=`eval echo '${'$as_ac_Header'}'` +- { echo "$as_me:$LINENO: result: $ac_res" >&5 +-echo "${ECHO_T}$ac_res" >&6; } + ++if test "${enable_vorbis}" != "no" ++then ++ ++# Check whether --with-vorbis-tree was given. ++if test "${with_vorbis_tree+set}" = set; then : ++ withval=$with_vorbis_tree; + fi +-if test `eval echo '${'$as_ac_Header'}'` = yes; then +- cat >>confdefs.h <<_ACEOF +-#define `echo "HAVE_$ac_header" | $as_tr_cpp` 1 +-_ACEOF + ++ if test -n "${with_vorbis_tree}" ++ then ++ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for libvorbis.a in ${with_vorbis_tree}" >&5 ++$as_echo_n "checking for libvorbis.a in ${with_vorbis_tree}... " >&6; } ++ real_vorbis_tree="`cd ${with_vorbis_tree} 2>/dev/null && pwd`" ++ if test -z "${real_vorbis_tree}" ++ then ++ { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 ++$as_echo "no" >&6; } ++ as_fn_error $? "cannot cd to ${with_vorbis_tree}" "$LINENO" 5 ++ fi ++ if test -f "${real_vorbis_tree}/lib/.libs/libvorbis.a" ++ then ++ { $as_echo "$as_me:${as_lineno-$LINENO}: result: ${real_vorbis_tree}/lib/.libs/libvorbis.a" >&5 ++$as_echo "${real_vorbis_tree}/lib/.libs/libvorbis.a" >&6; } + + PLUGINS="${PLUGINS} vorbis" + + + for element in vorbis; do +- eval "LDFLAGS_${element}="'"'"-lvorbis -logg "'$'"{LDFLAGS_${element}} "'"' ++ eval "LDFLAGS_${element}="'"'"${real_vorbis_tree}/lib/.libs/libvorbis.a ${real_vorbis_tree}/lib/.libs/libvorbisenc.a "'$'"{LDFLAGS_${element}} "'"' + am_modules_with_ldflags="${am_modules_with_ldflags} ${element}" + done + +-fi +- +-done +- + ++ for element in vorbis; do ++ eval "CFLAGS_${element}="'"$'"{CFLAGS_${element}} -I${real_vorbis_tree}/include"'"' ++ am_modules_with_cflags="${am_modules_with_cflags} ${element}" ++ done + +-for ac_header in vorbis/vorbisenc.h +-do +-as_ac_Header=`echo "ac_cv_header_$ac_header" | $as_tr_sh` +-if { as_var=$as_ac_Header; eval "test \"\${$as_var+set}\" = set"; }; then +- { echo "$as_me:$LINENO: checking for $ac_header" >&5 +-echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6; } +-if { as_var=$as_ac_Header; eval "test \"\${$as_var+set}\" = set"; }; then +- echo $ECHO_N "(cached) $ECHO_C" >&6 +-fi +-ac_res=`eval echo '${'$as_ac_Header'}'` +- { echo "$as_me:$LINENO: result: $ac_res" >&5 +-echo "${ECHO_T}$ac_res" >&6; } +-else +- # Is the header compilable? +-{ echo "$as_me:$LINENO: checking $ac_header usability" >&5 +-echo $ECHO_N "checking $ac_header usability... $ECHO_C" >&6; } +-cat >conftest.$ac_ext <<_ACEOF +-/* confdefs.h. */ +-_ACEOF +-cat confdefs.h >>conftest.$ac_ext +-cat >>conftest.$ac_ext <<_ACEOF +-/* end confdefs.h. */ +-$ac_includes_default +-#include <$ac_header> ++ else ++ { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 ++$as_echo "no" >&6; } ++ as_fn_error $? "cannot find ${real_vorbis_tree}/lib/.libs/libvorbis.a, make sure you compiled vorbis in ${with_vorbis_tree}" "$LINENO" 5 ++ fi ++ else ++ for ac_header in vorbis/codec.h ++do : ++ ac_fn_c_check_header_mongrel "$LINENO" "vorbis/codec.h" "ac_cv_header_vorbis_codec_h" "$ac_includes_default" ++if test "x$ac_cv_header_vorbis_codec_h" = xyes; then : ++ cat >>confdefs.h <<_ACEOF ++#define HAVE_VORBIS_CODEC_H 1 + _ACEOF +-rm -f conftest.$ac_objext +-if { (ac_try="$ac_compile" +-case "(($ac_try" in +- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; +- *) ac_try_echo=$ac_try;; +-esac +-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 +- (eval "$ac_compile") 2>conftest.er1 +- ac_status=$? +- grep -v '^ *+' conftest.er1 >conftest.err +- rm -f conftest.er1 +- cat conftest.err >&5 +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); } && { +- test -z "$ac_c_werror_flag" || +- test ! -s conftest.err +- } && test -s conftest.$ac_objext; then +- ac_header_compiler=yes +-else +- echo "$as_me: failed program was:" >&5 +-sed 's/^/| /' conftest.$ac_ext >&5 + +- ac_header_compiler=no +-fi + +-rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext +-{ echo "$as_me:$LINENO: result: $ac_header_compiler" >&5 +-echo "${ECHO_T}$ac_header_compiler" >&6; } ++ PLUGINS="${PLUGINS} vorbis" + +-# Is the header present? +-{ echo "$as_me:$LINENO: checking $ac_header presence" >&5 +-echo $ECHO_N "checking $ac_header presence... $ECHO_C" >&6; } +-cat >conftest.$ac_ext <<_ACEOF +-/* confdefs.h. */ +-_ACEOF +-cat confdefs.h >>conftest.$ac_ext +-cat >>conftest.$ac_ext <<_ACEOF +-/* end confdefs.h. */ +-#include <$ac_header> +-_ACEOF +-if { (ac_try="$ac_cpp conftest.$ac_ext" +-case "(($ac_try" in +- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; +- *) ac_try_echo=$ac_try;; +-esac +-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 +- (eval "$ac_cpp conftest.$ac_ext") 2>conftest.er1 +- ac_status=$? +- grep -v '^ *+' conftest.er1 >conftest.err +- rm -f conftest.er1 +- cat conftest.err >&5 +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); } >/dev/null && { +- test -z "$ac_c_preproc_warn_flag$ac_c_werror_flag" || +- test ! -s conftest.err +- }; then +- ac_header_preproc=yes +-else +- echo "$as_me: failed program was:" >&5 +-sed 's/^/| /' conftest.$ac_ext >&5 + +- ac_header_preproc=no +-fi ++ for element in vorbis; do ++ eval "LDFLAGS_${element}="'"'"-lvorbis -logg "'$'"{LDFLAGS_${element}} "'"' ++ am_modules_with_ldflags="${am_modules_with_ldflags} ${element}" ++ done + +-rm -f conftest.err conftest.$ac_ext +-{ echo "$as_me:$LINENO: result: $ac_header_preproc" >&5 +-echo "${ECHO_T}$ac_header_preproc" >&6; } ++fi + +-# So? What about this header? +-case $ac_header_compiler:$ac_header_preproc:$ac_c_preproc_warn_flag in +- yes:no: ) +- { echo "$as_me:$LINENO: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&5 +-echo "$as_me: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&2;} +- { echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the compiler's result" >&5 +-echo "$as_me: WARNING: $ac_header: proceeding with the compiler's result" >&2;} +- ac_header_preproc=yes +- ;; +- no:yes:* ) +- { echo "$as_me:$LINENO: WARNING: $ac_header: present but cannot be compiled" >&5 +-echo "$as_me: WARNING: $ac_header: present but cannot be compiled" >&2;} +- { echo "$as_me:$LINENO: WARNING: $ac_header: check for missing prerequisite headers?" >&5 +-echo "$as_me: WARNING: $ac_header: check for missing prerequisite headers?" >&2;} +- { echo "$as_me:$LINENO: WARNING: $ac_header: see the Autoconf documentation" >&5 +-echo "$as_me: WARNING: $ac_header: see the Autoconf documentation" >&2;} +- { echo "$as_me:$LINENO: WARNING: $ac_header: section \"Present But Cannot Be Compiled\"" >&5 +-echo "$as_me: WARNING: $ac_header: section \"Present But Cannot Be Compiled\"" >&2;} +- { echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the preprocessor's result" >&5 +-echo "$as_me: WARNING: $ac_header: proceeding with the preprocessor's result" >&2;} +- { echo "$as_me:$LINENO: WARNING: $ac_header: in the future, the compiler will take precedence" >&5 +-echo "$as_me: WARNING: $ac_header: in the future, the compiler will take precedence" >&2;} ++done + +- ;; +-esac +-{ echo "$as_me:$LINENO: checking for $ac_header" >&5 +-echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6; } +-if { as_var=$as_ac_Header; eval "test \"\${$as_var+set}\" = set"; }; then +- echo $ECHO_N "(cached) $ECHO_C" >&6 +-else +- eval "$as_ac_Header=\$ac_header_preproc" +-fi +-ac_res=`eval echo '${'$as_ac_Header'}'` +- { echo "$as_me:$LINENO: result: $ac_res" >&5 +-echo "${ECHO_T}$ac_res" >&6; } + +-fi +-if test `eval echo '${'$as_ac_Header'}'` = yes; then ++ for ac_header in vorbis/vorbisenc.h ++do : ++ ac_fn_c_check_header_mongrel "$LINENO" "vorbis/vorbisenc.h" "ac_cv_header_vorbis_vorbisenc_h" "$ac_includes_default" ++if test "x$ac_cv_header_vorbis_vorbisenc_h" = xyes; then : + cat >>confdefs.h <<_ACEOF +-#define `echo "HAVE_$ac_header" | $as_tr_cpp` 1 ++#define HAVE_VORBIS_VORBISENC_H 1 + _ACEOF + + +@@ -50831,146 +35185,18 @@ done + fi + + # Check whether --enable-tremor was given. +-if test "${enable_tremor+set}" = set; then ++if test "${enable_tremor+set}" = set; then : + enableval=$enable_tremor; + fi + + if test "${enable_tremor}" = "yes" + then +- +-for ac_header in tremor/ivorbiscodec.h +-do +-as_ac_Header=`echo "ac_cv_header_$ac_header" | $as_tr_sh` +-if { as_var=$as_ac_Header; eval "test \"\${$as_var+set}\" = set"; }; then +- { echo "$as_me:$LINENO: checking for $ac_header" >&5 +-echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6; } +-if { as_var=$as_ac_Header; eval "test \"\${$as_var+set}\" = set"; }; then +- echo $ECHO_N "(cached) $ECHO_C" >&6 +-fi +-ac_res=`eval echo '${'$as_ac_Header'}'` +- { echo "$as_me:$LINENO: result: $ac_res" >&5 +-echo "${ECHO_T}$ac_res" >&6; } +-else +- # Is the header compilable? +-{ echo "$as_me:$LINENO: checking $ac_header usability" >&5 +-echo $ECHO_N "checking $ac_header usability... $ECHO_C" >&6; } +-cat >conftest.$ac_ext <<_ACEOF +-/* confdefs.h. */ +-_ACEOF +-cat confdefs.h >>conftest.$ac_ext +-cat >>conftest.$ac_ext <<_ACEOF +-/* end confdefs.h. */ +-$ac_includes_default +-#include <$ac_header> +-_ACEOF +-rm -f conftest.$ac_objext +-if { (ac_try="$ac_compile" +-case "(($ac_try" in +- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; +- *) ac_try_echo=$ac_try;; +-esac +-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 +- (eval "$ac_compile") 2>conftest.er1 +- ac_status=$? +- grep -v '^ *+' conftest.er1 >conftest.err +- rm -f conftest.er1 +- cat conftest.err >&5 +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); } && { +- test -z "$ac_c_werror_flag" || +- test ! -s conftest.err +- } && test -s conftest.$ac_objext; then +- ac_header_compiler=yes +-else +- echo "$as_me: failed program was:" >&5 +-sed 's/^/| /' conftest.$ac_ext >&5 +- +- ac_header_compiler=no +-fi +- +-rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext +-{ echo "$as_me:$LINENO: result: $ac_header_compiler" >&5 +-echo "${ECHO_T}$ac_header_compiler" >&6; } +- +-# Is the header present? +-{ echo "$as_me:$LINENO: checking $ac_header presence" >&5 +-echo $ECHO_N "checking $ac_header presence... $ECHO_C" >&6; } +-cat >conftest.$ac_ext <<_ACEOF +-/* confdefs.h. */ +-_ACEOF +-cat confdefs.h >>conftest.$ac_ext +-cat >>conftest.$ac_ext <<_ACEOF +-/* end confdefs.h. */ +-#include <$ac_header> +-_ACEOF +-if { (ac_try="$ac_cpp conftest.$ac_ext" +-case "(($ac_try" in +- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; +- *) ac_try_echo=$ac_try;; +-esac +-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 +- (eval "$ac_cpp conftest.$ac_ext") 2>conftest.er1 +- ac_status=$? +- grep -v '^ *+' conftest.er1 >conftest.err +- rm -f conftest.er1 +- cat conftest.err >&5 +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); } >/dev/null && { +- test -z "$ac_c_preproc_warn_flag$ac_c_werror_flag" || +- test ! -s conftest.err +- }; then +- ac_header_preproc=yes +-else +- echo "$as_me: failed program was:" >&5 +-sed 's/^/| /' conftest.$ac_ext >&5 +- +- ac_header_preproc=no +-fi +- +-rm -f conftest.err conftest.$ac_ext +-{ echo "$as_me:$LINENO: result: $ac_header_preproc" >&5 +-echo "${ECHO_T}$ac_header_preproc" >&6; } +- +-# So? What about this header? +-case $ac_header_compiler:$ac_header_preproc:$ac_c_preproc_warn_flag in +- yes:no: ) +- { echo "$as_me:$LINENO: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&5 +-echo "$as_me: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&2;} +- { echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the compiler's result" >&5 +-echo "$as_me: WARNING: $ac_header: proceeding with the compiler's result" >&2;} +- ac_header_preproc=yes +- ;; +- no:yes:* ) +- { echo "$as_me:$LINENO: WARNING: $ac_header: present but cannot be compiled" >&5 +-echo "$as_me: WARNING: $ac_header: present but cannot be compiled" >&2;} +- { echo "$as_me:$LINENO: WARNING: $ac_header: check for missing prerequisite headers?" >&5 +-echo "$as_me: WARNING: $ac_header: check for missing prerequisite headers?" >&2;} +- { echo "$as_me:$LINENO: WARNING: $ac_header: see the Autoconf documentation" >&5 +-echo "$as_me: WARNING: $ac_header: see the Autoconf documentation" >&2;} +- { echo "$as_me:$LINENO: WARNING: $ac_header: section \"Present But Cannot Be Compiled\"" >&5 +-echo "$as_me: WARNING: $ac_header: section \"Present But Cannot Be Compiled\"" >&2;} +- { echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the preprocessor's result" >&5 +-echo "$as_me: WARNING: $ac_header: proceeding with the preprocessor's result" >&2;} +- { echo "$as_me:$LINENO: WARNING: $ac_header: in the future, the compiler will take precedence" >&5 +-echo "$as_me: WARNING: $ac_header: in the future, the compiler will take precedence" >&2;} +- +- ;; +-esac +-{ echo "$as_me:$LINENO: checking for $ac_header" >&5 +-echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6; } +-if { as_var=$as_ac_Header; eval "test \"\${$as_var+set}\" = set"; }; then +- echo $ECHO_N "(cached) $ECHO_C" >&6 +-else +- eval "$as_ac_Header=\$ac_header_preproc" +-fi +-ac_res=`eval echo '${'$as_ac_Header'}'` +- { echo "$as_me:$LINENO: result: $ac_res" >&5 +-echo "${ECHO_T}$ac_res" >&6; } +- +-fi +-if test `eval echo '${'$as_ac_Header'}'` = yes; then ++ for ac_header in tremor/ivorbiscodec.h ++do : ++ ac_fn_c_check_header_mongrel "$LINENO" "tremor/ivorbiscodec.h" "ac_cv_header_tremor_ivorbiscodec_h" "$ac_includes_default" ++if test "x$ac_cv_header_tremor_ivorbiscodec_h" = xyes; then : + cat >>confdefs.h <<_ACEOF +-#define `echo "HAVE_$ac_header" | $as_tr_cpp` 1 ++#define HAVE_TREMOR_IVORBISCODEC_H 1 + _ACEOF + + +@@ -50990,7 +35216,7 @@ done + fi + + # Check whether --enable-speex was given. +-if test "${enable_speex+set}" = set; then ++if test "${enable_speex+set}" = set; then : + enableval=$enable_speex; + fi + +@@ -50998,27 +35224,25 @@ if test "${enable_speex}" != "no" + then + + # Check whether --with-speex-tree was given. +-if test "${with_speex_tree+set}" = set; then ++if test "${with_speex_tree+set}" = set; then : + withval=$with_speex_tree; + fi + + if test -n "${with_speex_tree}" + then +- { echo "$as_me:$LINENO: checking for libspeex.a in ${with_speex_tree}" >&5 +-echo $ECHO_N "checking for libspeex.a in ${with_speex_tree}... $ECHO_C" >&6; } ++ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for libspeex.a in ${with_speex_tree}" >&5 ++$as_echo_n "checking for libspeex.a in ${with_speex_tree}... " >&6; } + real_speex_tree="`cd ${with_speex_tree} 2>/dev/null && pwd`" + if test -z "${real_speex_tree}" + then +- { echo "$as_me:$LINENO: result: no" >&5 +-echo "${ECHO_T}no" >&6; } +- { { echo "$as_me:$LINENO: error: cannot cd to ${with_speex_tree}" >&5 +-echo "$as_me: error: cannot cd to ${with_speex_tree}" >&2;} +- { (exit 1); exit 1; }; } ++ { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 ++$as_echo "no" >&6; } ++ as_fn_error $? "cannot cd to ${with_speex_tree}" "$LINENO" 5 + fi + if test -f "${real_speex_tree}/libspeex/.libs/libspeex.a" + then +- { echo "$as_me:$LINENO: result: ${real_speex_tree}/libspeex/.libs/libspeex.a" >&5 +-echo "${ECHO_T}${real_speex_tree}/libspeex/.libs/libspeex.a" >&6; } ++ { $as_echo "$as_me:${as_lineno-$LINENO}: result: ${real_speex_tree}/libspeex/.libs/libspeex.a" >&5 ++$as_echo "${real_speex_tree}/libspeex/.libs/libspeex.a" >&6; } + + PLUGINS="${PLUGINS} speex" + +@@ -51035,162 +35259,28 @@ echo "${ECHO_T}${real_speex_tree}/libspeex/.libs/libspeex.a" >&6; } + done + + else +- { echo "$as_me:$LINENO: result: no" >&5 +-echo "${ECHO_T}no" >&6; } +- { { echo "$as_me:$LINENO: error: cannot find ${real_speex_tree}/libspeex/.libs/libspeex.a, make sure you compiled speex in ${with_speex_tree}" >&5 +-echo "$as_me: error: cannot find ${real_speex_tree}/libspeex/.libs/libspeex.a, make sure you compiled speex in ${with_speex_tree}" >&2;} +- { (exit 1); exit 1; }; } ++ { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 ++$as_echo "no" >&6; } ++ as_fn_error $? "cannot find ${real_speex_tree}/libspeex/.libs/libspeex.a, make sure you compiled speex in ${with_speex_tree}" "$LINENO" 5 + fi + else +- +-for ac_header in speex/speex.h +-do +-as_ac_Header=`echo "ac_cv_header_$ac_header" | $as_tr_sh` +-if { as_var=$as_ac_Header; eval "test \"\${$as_var+set}\" = set"; }; then +- { echo "$as_me:$LINENO: checking for $ac_header" >&5 +-echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6; } +-if { as_var=$as_ac_Header; eval "test \"\${$as_var+set}\" = set"; }; then +- echo $ECHO_N "(cached) $ECHO_C" >&6 +-fi +-ac_res=`eval echo '${'$as_ac_Header'}'` +- { echo "$as_me:$LINENO: result: $ac_res" >&5 +-echo "${ECHO_T}$ac_res" >&6; } +-else +- # Is the header compilable? +-{ echo "$as_me:$LINENO: checking $ac_header usability" >&5 +-echo $ECHO_N "checking $ac_header usability... $ECHO_C" >&6; } +-cat >conftest.$ac_ext <<_ACEOF +-/* confdefs.h. */ +-_ACEOF +-cat confdefs.h >>conftest.$ac_ext +-cat >>conftest.$ac_ext <<_ACEOF +-/* end confdefs.h. */ +-$ac_includes_default +-#include <$ac_header> +-_ACEOF +-rm -f conftest.$ac_objext +-if { (ac_try="$ac_compile" +-case "(($ac_try" in +- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; +- *) ac_try_echo=$ac_try;; +-esac +-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 +- (eval "$ac_compile") 2>conftest.er1 +- ac_status=$? +- grep -v '^ *+' conftest.er1 >conftest.err +- rm -f conftest.er1 +- cat conftest.err >&5 +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); } && { +- test -z "$ac_c_werror_flag" || +- test ! -s conftest.err +- } && test -s conftest.$ac_objext; then +- ac_header_compiler=yes +-else +- echo "$as_me: failed program was:" >&5 +-sed 's/^/| /' conftest.$ac_ext >&5 +- +- ac_header_compiler=no +-fi +- +-rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext +-{ echo "$as_me:$LINENO: result: $ac_header_compiler" >&5 +-echo "${ECHO_T}$ac_header_compiler" >&6; } +- +-# Is the header present? +-{ echo "$as_me:$LINENO: checking $ac_header presence" >&5 +-echo $ECHO_N "checking $ac_header presence... $ECHO_C" >&6; } +-cat >conftest.$ac_ext <<_ACEOF +-/* confdefs.h. */ +-_ACEOF +-cat confdefs.h >>conftest.$ac_ext +-cat >>conftest.$ac_ext <<_ACEOF +-/* end confdefs.h. */ +-#include <$ac_header> +-_ACEOF +-if { (ac_try="$ac_cpp conftest.$ac_ext" +-case "(($ac_try" in +- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; +- *) ac_try_echo=$ac_try;; +-esac +-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 +- (eval "$ac_cpp conftest.$ac_ext") 2>conftest.er1 +- ac_status=$? +- grep -v '^ *+' conftest.er1 >conftest.err +- rm -f conftest.er1 +- cat conftest.err >&5 +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); } >/dev/null && { +- test -z "$ac_c_preproc_warn_flag$ac_c_werror_flag" || +- test ! -s conftest.err +- }; then +- ac_header_preproc=yes +-else +- echo "$as_me: failed program was:" >&5 +-sed 's/^/| /' conftest.$ac_ext >&5 +- +- ac_header_preproc=no +-fi +- +-rm -f conftest.err conftest.$ac_ext +-{ echo "$as_me:$LINENO: result: $ac_header_preproc" >&5 +-echo "${ECHO_T}$ac_header_preproc" >&6; } +- +-# So? What about this header? +-case $ac_header_compiler:$ac_header_preproc:$ac_c_preproc_warn_flag in +- yes:no: ) +- { echo "$as_me:$LINENO: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&5 +-echo "$as_me: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&2;} +- { echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the compiler's result" >&5 +-echo "$as_me: WARNING: $ac_header: proceeding with the compiler's result" >&2;} +- ac_header_preproc=yes +- ;; +- no:yes:* ) +- { echo "$as_me:$LINENO: WARNING: $ac_header: present but cannot be compiled" >&5 +-echo "$as_me: WARNING: $ac_header: present but cannot be compiled" >&2;} +- { echo "$as_me:$LINENO: WARNING: $ac_header: check for missing prerequisite headers?" >&5 +-echo "$as_me: WARNING: $ac_header: check for missing prerequisite headers?" >&2;} +- { echo "$as_me:$LINENO: WARNING: $ac_header: see the Autoconf documentation" >&5 +-echo "$as_me: WARNING: $ac_header: see the Autoconf documentation" >&2;} +- { echo "$as_me:$LINENO: WARNING: $ac_header: section \"Present But Cannot Be Compiled\"" >&5 +-echo "$as_me: WARNING: $ac_header: section \"Present But Cannot Be Compiled\"" >&2;} +- { echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the preprocessor's result" >&5 +-echo "$as_me: WARNING: $ac_header: proceeding with the preprocessor's result" >&2;} +- { echo "$as_me:$LINENO: WARNING: $ac_header: in the future, the compiler will take precedence" >&5 +-echo "$as_me: WARNING: $ac_header: in the future, the compiler will take precedence" >&2;} +- +- ;; +-esac +-{ echo "$as_me:$LINENO: checking for $ac_header" >&5 +-echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6; } +-if { as_var=$as_ac_Header; eval "test \"\${$as_var+set}\" = set"; }; then +- echo $ECHO_N "(cached) $ECHO_C" >&6 +-else +- eval "$as_ac_Header=\$ac_header_preproc" +-fi +-ac_res=`eval echo '${'$as_ac_Header'}'` +- { echo "$as_me:$LINENO: result: $ac_res" >&5 +-echo "${ECHO_T}$ac_res" >&6; } +- +-fi +-if test `eval echo '${'$as_ac_Header'}'` = yes; then ++ for ac_header in speex/speex.h ++do : ++ ac_fn_c_check_header_mongrel "$LINENO" "speex/speex.h" "ac_cv_header_speex_speex_h" "$ac_includes_default" ++if test "x$ac_cv_header_speex_speex_h" = xyes; then : + cat >>confdefs.h <<_ACEOF +-#define `echo "HAVE_$ac_header" | $as_tr_cpp` 1 ++#define HAVE_SPEEX_SPEEX_H 1 + _ACEOF + + LDFLAGS="${LDFLAGS_save} ${LDFLAGS_speex}" +- { echo "$as_me:$LINENO: checking for speex_decode_int in -lspeex" >&5 +-echo $ECHO_N "checking for speex_decode_int in -lspeex... $ECHO_C" >&6; } +-if test "${ac_cv_lib_speex_speex_decode_int+set}" = set; then +- echo $ECHO_N "(cached) $ECHO_C" >&6 ++ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for speex_decode_int in -lspeex" >&5 ++$as_echo_n "checking for speex_decode_int in -lspeex... " >&6; } ++if ${ac_cv_lib_speex_speex_decode_int+:} false; then : ++ $as_echo_n "(cached) " >&6 + else + ac_check_lib_save_LIBS=$LIBS + LIBS="-lspeex $LIBS" +-cat >conftest.$ac_ext <<_ACEOF +-/* confdefs.h. */ +-_ACEOF +-cat confdefs.h >>conftest.$ac_ext +-cat >>conftest.$ac_ext <<_ACEOF ++cat confdefs.h - <<_ACEOF >conftest.$ac_ext + /* end confdefs.h. */ + + /* Override any GCC internal prototype to avoid an error. +@@ -51208,39 +35298,18 @@ return speex_decode_int (); + return 0; + } + _ACEOF +-rm -f conftest.$ac_objext conftest$ac_exeext +-if { (ac_try="$ac_link" +-case "(($ac_try" in +- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; +- *) ac_try_echo=$ac_try;; +-esac +-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 +- (eval "$ac_link") 2>conftest.er1 +- ac_status=$? +- grep -v '^ *+' conftest.er1 >conftest.err +- rm -f conftest.er1 +- cat conftest.err >&5 +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); } && { +- test -z "$ac_c_werror_flag" || +- test ! -s conftest.err +- } && test -s conftest$ac_exeext && +- $as_test_x conftest$ac_exeext; then ++if ac_fn_c_try_link "$LINENO"; then : + ac_cv_lib_speex_speex_decode_int=yes + else +- echo "$as_me: failed program was:" >&5 +-sed 's/^/| /' conftest.$ac_ext >&5 +- +- ac_cv_lib_speex_speex_decode_int=no ++ ac_cv_lib_speex_speex_decode_int=no + fi +- +-rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ +- conftest$ac_exeext conftest.$ac_ext ++rm -f core conftest.err conftest.$ac_objext \ ++ conftest$ac_exeext conftest.$ac_ext + LIBS=$ac_check_lib_save_LIBS + fi +-{ echo "$as_me:$LINENO: result: $ac_cv_lib_speex_speex_decode_int" >&5 +-echo "${ECHO_T}$ac_cv_lib_speex_speex_decode_int" >&6; } +-if test $ac_cv_lib_speex_speex_decode_int = yes; then ++{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_speex_speex_decode_int" >&5 ++$as_echo "$ac_cv_lib_speex_speex_decode_int" >&6; } ++if test "x$ac_cv_lib_speex_speex_decode_int" = xyes; then : + + + PLUGINS="${PLUGINS} speex" +@@ -51252,11 +35321,11 @@ if test $ac_cv_lib_speex_speex_decode_int = yes; then + done + + else +- { echo "$as_me:$LINENO: result: no" >&5 +-echo "${ECHO_T}no" >&6; } +- { echo "$as_me:$LINENO: WARNING: Your libspeex is too old, please get the development ++ { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 ++$as_echo "no" >&6; } ++ { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: Your libspeex is too old, please get the development + version." >&5 +-echo "$as_me: WARNING: Your libspeex is too old, please get the development ++$as_echo "$as_me: WARNING: Your libspeex is too old, please get the development + version." >&2;} + fi + +@@ -51270,7 +35339,7 @@ done + fi + + # Check whether --enable-tarkin was given. +-if test "${enable_tarkin+set}" = set; then ++if test "${enable_tarkin+set}" = set; then : + enableval=$enable_tarkin; + fi + +@@ -51278,14 +35347,14 @@ if test "${enable_tarkin}" = "yes" + then + + # Check whether --with-tarkin-tree was given. +-if test "${with_tarkin_tree+set}" = set; then ++if test "${with_tarkin_tree+set}" = set; then : + withval=$with_tarkin_tree; + fi + + if test -n "${with_tarkin_tree}" + then +- { echo "$as_me:$LINENO: checking for tarkin.o in ${with_tarkin_tree}" >&5 +-echo $ECHO_N "checking for tarkin.o in ${with_tarkin_tree}... $ECHO_C" >&6; } ++ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for tarkin.o in ${with_tarkin_tree}" >&5 ++$as_echo_n "checking for tarkin.o in ${with_tarkin_tree}... " >&6; } + real_tarkin_tree="`cd ${with_tarkin_tree} 2>/dev/null && pwd`" + if test -f "${real_tarkin_tree}/tarkin.o" + then +@@ -51304,175 +35373,40 @@ echo $ECHO_N "checking for tarkin.o in ${with_tarkin_tree}... $ECHO_C" >&6; } + am_modules_with_ldflags="${am_modules_with_ldflags} ${element}" + done + +- { echo "$as_me:$LINENO: result: yes" >&5 +-echo "${ECHO_T}yes" >&6; } ++ { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5 ++$as_echo "yes" >&6; } + else +- { echo "$as_me:$LINENO: result: no" >&5 +-echo "${ECHO_T}no" >&6; } +- { { echo "$as_me:$LINENO: error: cannot find ${real_tarkin_tree}/tarkin.o, +- make sure you compiled tarkin in ${with_tarkin_tree}" >&5 +-echo "$as_me: error: cannot find ${real_tarkin_tree}/tarkin.o, +- make sure you compiled tarkin in ${with_tarkin_tree}" >&2;} +- { (exit 1); exit 1; }; } ++ { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 ++$as_echo "no" >&6; } ++ as_fn_error $? "cannot find ${real_tarkin_tree}/tarkin.o, ++ make sure you compiled tarkin in ${with_tarkin_tree}" "$LINENO" 5 + fi + fi + fi + + # Check whether --enable-theora was given. +-if test "${enable_theora+set}" = set; then ++if test "${enable_theora+set}" = set; then : + enableval=$enable_theora; + fi + + if test "${enable_theora}" = "yes" + then +- +-for ac_header in theora/theora.h +-do +-as_ac_Header=`echo "ac_cv_header_$ac_header" | $as_tr_sh` +-if { as_var=$as_ac_Header; eval "test \"\${$as_var+set}\" = set"; }; then +- { echo "$as_me:$LINENO: checking for $ac_header" >&5 +-echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6; } +-if { as_var=$as_ac_Header; eval "test \"\${$as_var+set}\" = set"; }; then +- echo $ECHO_N "(cached) $ECHO_C" >&6 +-fi +-ac_res=`eval echo '${'$as_ac_Header'}'` +- { echo "$as_me:$LINENO: result: $ac_res" >&5 +-echo "${ECHO_T}$ac_res" >&6; } +-else +- # Is the header compilable? +-{ echo "$as_me:$LINENO: checking $ac_header usability" >&5 +-echo $ECHO_N "checking $ac_header usability... $ECHO_C" >&6; } +-cat >conftest.$ac_ext <<_ACEOF +-/* confdefs.h. */ +-_ACEOF +-cat confdefs.h >>conftest.$ac_ext +-cat >>conftest.$ac_ext <<_ACEOF +-/* end confdefs.h. */ +-$ac_includes_default +-#include <$ac_header> +-_ACEOF +-rm -f conftest.$ac_objext +-if { (ac_try="$ac_compile" +-case "(($ac_try" in +- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; +- *) ac_try_echo=$ac_try;; +-esac +-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 +- (eval "$ac_compile") 2>conftest.er1 +- ac_status=$? +- grep -v '^ *+' conftest.er1 >conftest.err +- rm -f conftest.er1 +- cat conftest.err >&5 +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); } && { +- test -z "$ac_c_werror_flag" || +- test ! -s conftest.err +- } && test -s conftest.$ac_objext; then +- ac_header_compiler=yes +-else +- echo "$as_me: failed program was:" >&5 +-sed 's/^/| /' conftest.$ac_ext >&5 +- +- ac_header_compiler=no +-fi +- +-rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext +-{ echo "$as_me:$LINENO: result: $ac_header_compiler" >&5 +-echo "${ECHO_T}$ac_header_compiler" >&6; } +- +-# Is the header present? +-{ echo "$as_me:$LINENO: checking $ac_header presence" >&5 +-echo $ECHO_N "checking $ac_header presence... $ECHO_C" >&6; } +-cat >conftest.$ac_ext <<_ACEOF +-/* confdefs.h. */ +-_ACEOF +-cat confdefs.h >>conftest.$ac_ext +-cat >>conftest.$ac_ext <<_ACEOF +-/* end confdefs.h. */ +-#include <$ac_header> +-_ACEOF +-if { (ac_try="$ac_cpp conftest.$ac_ext" +-case "(($ac_try" in +- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; +- *) ac_try_echo=$ac_try;; +-esac +-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 +- (eval "$ac_cpp conftest.$ac_ext") 2>conftest.er1 +- ac_status=$? +- grep -v '^ *+' conftest.er1 >conftest.err +- rm -f conftest.er1 +- cat conftest.err >&5 +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); } >/dev/null && { +- test -z "$ac_c_preproc_warn_flag$ac_c_werror_flag" || +- test ! -s conftest.err +- }; then +- ac_header_preproc=yes +-else +- echo "$as_me: failed program was:" >&5 +-sed 's/^/| /' conftest.$ac_ext >&5 +- +- ac_header_preproc=no +-fi +- +-rm -f conftest.err conftest.$ac_ext +-{ echo "$as_me:$LINENO: result: $ac_header_preproc" >&5 +-echo "${ECHO_T}$ac_header_preproc" >&6; } +- +-# So? What about this header? +-case $ac_header_compiler:$ac_header_preproc:$ac_c_preproc_warn_flag in +- yes:no: ) +- { echo "$as_me:$LINENO: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&5 +-echo "$as_me: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&2;} +- { echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the compiler's result" >&5 +-echo "$as_me: WARNING: $ac_header: proceeding with the compiler's result" >&2;} +- ac_header_preproc=yes +- ;; +- no:yes:* ) +- { echo "$as_me:$LINENO: WARNING: $ac_header: present but cannot be compiled" >&5 +-echo "$as_me: WARNING: $ac_header: present but cannot be compiled" >&2;} +- { echo "$as_me:$LINENO: WARNING: $ac_header: check for missing prerequisite headers?" >&5 +-echo "$as_me: WARNING: $ac_header: check for missing prerequisite headers?" >&2;} +- { echo "$as_me:$LINENO: WARNING: $ac_header: see the Autoconf documentation" >&5 +-echo "$as_me: WARNING: $ac_header: see the Autoconf documentation" >&2;} +- { echo "$as_me:$LINENO: WARNING: $ac_header: section \"Present But Cannot Be Compiled\"" >&5 +-echo "$as_me: WARNING: $ac_header: section \"Present But Cannot Be Compiled\"" >&2;} +- { echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the preprocessor's result" >&5 +-echo "$as_me: WARNING: $ac_header: proceeding with the preprocessor's result" >&2;} +- { echo "$as_me:$LINENO: WARNING: $ac_header: in the future, the compiler will take precedence" >&5 +-echo "$as_me: WARNING: $ac_header: in the future, the compiler will take precedence" >&2;} +- +- ;; +-esac +-{ echo "$as_me:$LINENO: checking for $ac_header" >&5 +-echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6; } +-if { as_var=$as_ac_Header; eval "test \"\${$as_var+set}\" = set"; }; then +- echo $ECHO_N "(cached) $ECHO_C" >&6 +-else +- eval "$as_ac_Header=\$ac_header_preproc" +-fi +-ac_res=`eval echo '${'$as_ac_Header'}'` +- { echo "$as_me:$LINENO: result: $ac_res" >&5 +-echo "${ECHO_T}$ac_res" >&6; } +- +-fi +-if test `eval echo '${'$as_ac_Header'}'` = yes; then ++ for ac_header in theora/theora.h ++do : ++ ac_fn_c_check_header_mongrel "$LINENO" "theora/theora.h" "ac_cv_header_theora_theora_h" "$ac_includes_default" ++if test "x$ac_cv_header_theora_theora_h" = xyes; then : + cat >>confdefs.h <<_ACEOF +-#define `echo "HAVE_$ac_header" | $as_tr_cpp` 1 ++#define HAVE_THEORA_THEORA_H 1 + _ACEOF + +- { echo "$as_me:$LINENO: checking for theora_granule_time in -ltheora" >&5 +-echo $ECHO_N "checking for theora_granule_time in -ltheora... $ECHO_C" >&6; } +-if test "${ac_cv_lib_theora_theora_granule_time+set}" = set; then +- echo $ECHO_N "(cached) $ECHO_C" >&6 ++ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for theora_granule_time in -ltheora" >&5 ++$as_echo_n "checking for theora_granule_time in -ltheora... " >&6; } ++if ${ac_cv_lib_theora_theora_granule_time+:} false; then : ++ $as_echo_n "(cached) " >&6 + else + ac_check_lib_save_LIBS=$LIBS + LIBS="-ltheora -logg $LIBS" +-cat >conftest.$ac_ext <<_ACEOF +-/* confdefs.h. */ +-_ACEOF +-cat confdefs.h >>conftest.$ac_ext +-cat >>conftest.$ac_ext <<_ACEOF ++cat confdefs.h - <<_ACEOF >conftest.$ac_ext + /* end confdefs.h. */ + + /* Override any GCC internal prototype to avoid an error. +@@ -51490,39 +35424,18 @@ return theora_granule_time (); + return 0; + } + _ACEOF +-rm -f conftest.$ac_objext conftest$ac_exeext +-if { (ac_try="$ac_link" +-case "(($ac_try" in +- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; +- *) ac_try_echo=$ac_try;; +-esac +-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 +- (eval "$ac_link") 2>conftest.er1 +- ac_status=$? +- grep -v '^ *+' conftest.er1 >conftest.err +- rm -f conftest.er1 +- cat conftest.err >&5 +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); } && { +- test -z "$ac_c_werror_flag" || +- test ! -s conftest.err +- } && test -s conftest$ac_exeext && +- $as_test_x conftest$ac_exeext; then ++if ac_fn_c_try_link "$LINENO"; then : + ac_cv_lib_theora_theora_granule_time=yes + else +- echo "$as_me: failed program was:" >&5 +-sed 's/^/| /' conftest.$ac_ext >&5 +- +- ac_cv_lib_theora_theora_granule_time=no ++ ac_cv_lib_theora_theora_granule_time=no + fi +- +-rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ +- conftest$ac_exeext conftest.$ac_ext ++rm -f core conftest.err conftest.$ac_objext \ ++ conftest$ac_exeext conftest.$ac_ext + LIBS=$ac_check_lib_save_LIBS + fi +-{ echo "$as_me:$LINENO: result: $ac_cv_lib_theora_theora_granule_time" >&5 +-echo "${ECHO_T}$ac_cv_lib_theora_theora_granule_time" >&6; } +-if test $ac_cv_lib_theora_theora_granule_time = yes; then ++{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_theora_theora_granule_time" >&5 ++$as_echo "$ac_cv_lib_theora_theora_granule_time" >&6; } ++if test "x$ac_cv_lib_theora_theora_granule_time" = xyes; then : + + if test "${SYS}" = "mingw32"; then + +@@ -51542,11 +35455,8 @@ if test $ac_cv_lib_theora_theora_granule_time = yes; then + + else + +- { { echo "$as_me:$LINENO: error: libtheora doesn't appear to be installed on your system. +-You also need to check that you have a libogg posterior to the 1.0 release." >&5 +-echo "$as_me: error: libtheora doesn't appear to be installed on your system. +-You also need to check that you have a libogg posterior to the 1.0 release." >&2;} +- { (exit 1); exit 1; }; } ++ as_fn_error $? "libtheora doesn't appear to be installed on your system. ++You also need to check that you have a libogg posterior to the 1.0 release." "$LINENO" 5 + fi + + +@@ -51557,26 +35467,26 @@ done + fi + + # Check whether --enable-dirac was given. +-if test "${enable_dirac+set}" = set; then ++if test "${enable_dirac+set}" = set; then : + enableval=$enable_dirac; + fi + + if test "${enable_dirac}" = "yes"; then + + pkg_failed=no +-{ echo "$as_me:$LINENO: checking for DIRAC" >&5 +-echo $ECHO_N "checking for DIRAC... $ECHO_C" >&6; } ++{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for DIRAC" >&5 ++$as_echo_n "checking for DIRAC... " >&6; } + + if test -n "$PKG_CONFIG"; then + if test -n "$DIRAC_CFLAGS"; then + pkg_cv_DIRAC_CFLAGS="$DIRAC_CFLAGS" + else + if test -n "$PKG_CONFIG" && \ +- { (echo "$as_me:$LINENO: \$PKG_CONFIG --exists --print-errors \"dirac\"") >&5 ++ { { $as_echo "$as_me:${as_lineno-$LINENO}: \$PKG_CONFIG --exists --print-errors \"dirac\""; } >&5 + ($PKG_CONFIG --exists --print-errors "dirac") 2>&5 + ac_status=$? +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); }; then ++ $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 ++ test $ac_status = 0; }; then + pkg_cv_DIRAC_CFLAGS=`$PKG_CONFIG --cflags "dirac" 2>/dev/null` + else + pkg_failed=yes +@@ -51590,11 +35500,11 @@ if test -n "$PKG_CONFIG"; then + pkg_cv_DIRAC_LIBS="$DIRAC_LIBS" + else + if test -n "$PKG_CONFIG" && \ +- { (echo "$as_me:$LINENO: \$PKG_CONFIG --exists --print-errors \"dirac\"") >&5 ++ { { $as_echo "$as_me:${as_lineno-$LINENO}: \$PKG_CONFIG --exists --print-errors \"dirac\""; } >&5 + ($PKG_CONFIG --exists --print-errors "dirac") 2>&5 + ac_status=$? +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); }; then ++ $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 ++ test $ac_status = 0; }; then + pkg_cv_DIRAC_LIBS=`$PKG_CONFIG --libs "dirac" 2>/dev/null` + else + pkg_failed=yes +@@ -51621,24 +35531,20 @@ fi + # Put the nasty error message in config.log where it belongs + echo "$DIRAC_PKG_ERRORS" >&5 + +- { echo "$as_me:$LINENO: result: no" >&5 +-echo "${ECHO_T}no" >&6; } ++ { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 ++$as_echo "no" >&6; } + +- { { echo "$as_me:$LINENO: error: libdirac doesn't appear to be installed on you system." >&5 +-echo "$as_me: error: libdirac doesn't appear to be installed on you system." >&2;} +- { (exit 1); exit 1; }; } ++ as_fn_error $? "libdirac doesn't appear to be installed on you system." "$LINENO" 5 + + elif test $pkg_failed = untried; then + +- { { echo "$as_me:$LINENO: error: libdirac doesn't appear to be installed on you system." >&5 +-echo "$as_me: error: libdirac doesn't appear to be installed on you system." >&2;} +- { (exit 1); exit 1; }; } ++ as_fn_error $? "libdirac doesn't appear to be installed on you system." "$LINENO" 5 + + else + DIRAC_CFLAGS=$pkg_cv_DIRAC_CFLAGS + DIRAC_LIBS=$pkg_cv_DIRAC_LIBS +- { echo "$as_me:$LINENO: result: yes" >&5 +-echo "${ECHO_T}yes" >&6; } ++ { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5 ++$as_echo "yes" >&6; } + + + PLUGINS="${PLUGINS} dirac" +@@ -51659,160 +35565,28 @@ fi + fi + + # Check whether --enable-png was given. +-if test "${enable_png+set}" = set; then ++if test "${enable_png+set}" = set; then : + enableval=$enable_png; + fi + + if test "${enable_png}" != "no"; then +- + for ac_header in png.h +-do +-as_ac_Header=`echo "ac_cv_header_$ac_header" | $as_tr_sh` +-if { as_var=$as_ac_Header; eval "test \"\${$as_var+set}\" = set"; }; then +- { echo "$as_me:$LINENO: checking for $ac_header" >&5 +-echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6; } +-if { as_var=$as_ac_Header; eval "test \"\${$as_var+set}\" = set"; }; then +- echo $ECHO_N "(cached) $ECHO_C" >&6 +-fi +-ac_res=`eval echo '${'$as_ac_Header'}'` +- { echo "$as_me:$LINENO: result: $ac_res" >&5 +-echo "${ECHO_T}$ac_res" >&6; } +-else +- # Is the header compilable? +-{ echo "$as_me:$LINENO: checking $ac_header usability" >&5 +-echo $ECHO_N "checking $ac_header usability... $ECHO_C" >&6; } +-cat >conftest.$ac_ext <<_ACEOF +-/* confdefs.h. */ +-_ACEOF +-cat confdefs.h >>conftest.$ac_ext +-cat >>conftest.$ac_ext <<_ACEOF +-/* end confdefs.h. */ +-$ac_includes_default +-#include <$ac_header> +-_ACEOF +-rm -f conftest.$ac_objext +-if { (ac_try="$ac_compile" +-case "(($ac_try" in +- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; +- *) ac_try_echo=$ac_try;; +-esac +-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 +- (eval "$ac_compile") 2>conftest.er1 +- ac_status=$? +- grep -v '^ *+' conftest.er1 >conftest.err +- rm -f conftest.er1 +- cat conftest.err >&5 +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); } && { +- test -z "$ac_c_werror_flag" || +- test ! -s conftest.err +- } && test -s conftest.$ac_objext; then +- ac_header_compiler=yes +-else +- echo "$as_me: failed program was:" >&5 +-sed 's/^/| /' conftest.$ac_ext >&5 +- +- ac_header_compiler=no +-fi +- +-rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext +-{ echo "$as_me:$LINENO: result: $ac_header_compiler" >&5 +-echo "${ECHO_T}$ac_header_compiler" >&6; } +- +-# Is the header present? +-{ echo "$as_me:$LINENO: checking $ac_header presence" >&5 +-echo $ECHO_N "checking $ac_header presence... $ECHO_C" >&6; } +-cat >conftest.$ac_ext <<_ACEOF +-/* confdefs.h. */ +-_ACEOF +-cat confdefs.h >>conftest.$ac_ext +-cat >>conftest.$ac_ext <<_ACEOF +-/* end confdefs.h. */ +-#include <$ac_header> +-_ACEOF +-if { (ac_try="$ac_cpp conftest.$ac_ext" +-case "(($ac_try" in +- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; +- *) ac_try_echo=$ac_try;; +-esac +-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 +- (eval "$ac_cpp conftest.$ac_ext") 2>conftest.er1 +- ac_status=$? +- grep -v '^ *+' conftest.er1 >conftest.err +- rm -f conftest.er1 +- cat conftest.err >&5 +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); } >/dev/null && { +- test -z "$ac_c_preproc_warn_flag$ac_c_werror_flag" || +- test ! -s conftest.err +- }; then +- ac_header_preproc=yes +-else +- echo "$as_me: failed program was:" >&5 +-sed 's/^/| /' conftest.$ac_ext >&5 +- +- ac_header_preproc=no +-fi +- +-rm -f conftest.err conftest.$ac_ext +-{ echo "$as_me:$LINENO: result: $ac_header_preproc" >&5 +-echo "${ECHO_T}$ac_header_preproc" >&6; } +- +-# So? What about this header? +-case $ac_header_compiler:$ac_header_preproc:$ac_c_preproc_warn_flag in +- yes:no: ) +- { echo "$as_me:$LINENO: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&5 +-echo "$as_me: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&2;} +- { echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the compiler's result" >&5 +-echo "$as_me: WARNING: $ac_header: proceeding with the compiler's result" >&2;} +- ac_header_preproc=yes +- ;; +- no:yes:* ) +- { echo "$as_me:$LINENO: WARNING: $ac_header: present but cannot be compiled" >&5 +-echo "$as_me: WARNING: $ac_header: present but cannot be compiled" >&2;} +- { echo "$as_me:$LINENO: WARNING: $ac_header: check for missing prerequisite headers?" >&5 +-echo "$as_me: WARNING: $ac_header: check for missing prerequisite headers?" >&2;} +- { echo "$as_me:$LINENO: WARNING: $ac_header: see the Autoconf documentation" >&5 +-echo "$as_me: WARNING: $ac_header: see the Autoconf documentation" >&2;} +- { echo "$as_me:$LINENO: WARNING: $ac_header: section \"Present But Cannot Be Compiled\"" >&5 +-echo "$as_me: WARNING: $ac_header: section \"Present But Cannot Be Compiled\"" >&2;} +- { echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the preprocessor's result" >&5 +-echo "$as_me: WARNING: $ac_header: proceeding with the preprocessor's result" >&2;} +- { echo "$as_me:$LINENO: WARNING: $ac_header: in the future, the compiler will take precedence" >&5 +-echo "$as_me: WARNING: $ac_header: in the future, the compiler will take precedence" >&2;} +- +- ;; +-esac +-{ echo "$as_me:$LINENO: checking for $ac_header" >&5 +-echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6; } +-if { as_var=$as_ac_Header; eval "test \"\${$as_var+set}\" = set"; }; then +- echo $ECHO_N "(cached) $ECHO_C" >&6 +-else +- eval "$as_ac_Header=\$ac_header_preproc" +-fi +-ac_res=`eval echo '${'$as_ac_Header'}'` +- { echo "$as_me:$LINENO: result: $ac_res" >&5 +-echo "${ECHO_T}$ac_res" >&6; } +- +-fi +-if test `eval echo '${'$as_ac_Header'}'` = yes; then ++do : ++ ac_fn_c_check_header_mongrel "$LINENO" "png.h" "ac_cv_header_png_h" "$ac_includes_default" ++if test "x$ac_cv_header_png_h" = xyes; then : + cat >>confdefs.h <<_ACEOF +-#define `echo "HAVE_$ac_header" | $as_tr_cpp` 1 ++#define HAVE_PNG_H 1 + _ACEOF + + LDFLAGS="${LDFLAGS_save} -lz" +- { echo "$as_me:$LINENO: checking for png_set_rows in -lpng" >&5 +-echo $ECHO_N "checking for png_set_rows in -lpng... $ECHO_C" >&6; } +-if test "${ac_cv_lib_png_png_set_rows+set}" = set; then +- echo $ECHO_N "(cached) $ECHO_C" >&6 ++ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for png_set_rows in -lpng" >&5 ++$as_echo_n "checking for png_set_rows in -lpng... " >&6; } ++if ${ac_cv_lib_png_png_set_rows+:} false; then : ++ $as_echo_n "(cached) " >&6 + else + ac_check_lib_save_LIBS=$LIBS + LIBS="-lpng -lz $LIBS" +-cat >conftest.$ac_ext <<_ACEOF +-/* confdefs.h. */ +-_ACEOF +-cat confdefs.h >>conftest.$ac_ext +-cat >>conftest.$ac_ext <<_ACEOF ++cat confdefs.h - <<_ACEOF >conftest.$ac_ext + /* end confdefs.h. */ + + /* Override any GCC internal prototype to avoid an error. +@@ -51830,39 +35604,18 @@ return png_set_rows (); + return 0; + } + _ACEOF +-rm -f conftest.$ac_objext conftest$ac_exeext +-if { (ac_try="$ac_link" +-case "(($ac_try" in +- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; +- *) ac_try_echo=$ac_try;; +-esac +-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 +- (eval "$ac_link") 2>conftest.er1 +- ac_status=$? +- grep -v '^ *+' conftest.er1 >conftest.err +- rm -f conftest.er1 +- cat conftest.err >&5 +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); } && { +- test -z "$ac_c_werror_flag" || +- test ! -s conftest.err +- } && test -s conftest$ac_exeext && +- $as_test_x conftest$ac_exeext; then ++if ac_fn_c_try_link "$LINENO"; then : + ac_cv_lib_png_png_set_rows=yes + else +- echo "$as_me: failed program was:" >&5 +-sed 's/^/| /' conftest.$ac_ext >&5 +- +- ac_cv_lib_png_png_set_rows=no ++ ac_cv_lib_png_png_set_rows=no + fi +- +-rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ +- conftest$ac_exeext conftest.$ac_ext ++rm -f core conftest.err conftest.$ac_objext \ ++ conftest$ac_exeext conftest.$ac_ext + LIBS=$ac_check_lib_save_LIBS + fi +-{ echo "$as_me:$LINENO: result: $ac_cv_lib_png_png_set_rows" >&5 +-echo "${ECHO_T}$ac_cv_lib_png_png_set_rows" >&6; } +-if test $ac_cv_lib_png_png_set_rows = yes; then ++{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_png_png_set_rows" >&5 ++$as_echo "$ac_cv_lib_png_png_set_rows" >&6; } ++if test "x$ac_cv_lib_png_png_set_rows" = xyes; then : + + + for element in png; do +@@ -51877,9 +35630,7 @@ if test $ac_cv_lib_png_png_set_rows = yes; then + PLUGINS="${PLUGINS} osdmenu" + + +-cat >>confdefs.h <<\_ACEOF +-#define HAVE_LIBPNG 1 +-_ACEOF ++$as_echo "#define HAVE_LIBPNG 1" >>confdefs.h + + fi + +@@ -51892,14 +35643,14 @@ done + fi + + # Check whether --enable-x264 was given. +-if test "${enable_x264+set}" = set; then ++if test "${enable_x264+set}" = set; then : + enableval=$enable_x264; + fi + + if test "${enable_x264}" != "no"; then + + # Check whether --with-x264-tree was given. +-if test "${with_x264_tree+set}" = set; then ++if test "${with_x264_tree+set}" = set; then : + withval=$with_x264_tree; + fi + +@@ -51908,18 +35659,16 @@ fi + real_x264_tree="`cd ${with_x264_tree} 2>/dev/null && pwd`" + if test -z "${real_x264_tree}" + then +- { echo "$as_me:$LINENO: result: no" >&5 +-echo "${ECHO_T}no" >&6; } +- { { echo "$as_me:$LINENO: error: ${with_x264_tree} directory doesn't exist" >&5 +-echo "$as_me: error: ${with_x264_tree} directory doesn't exist" >&2;} +- { (exit 1); exit 1; }; } ++ { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 ++$as_echo "no" >&6; } ++ as_fn_error $? "${with_x264_tree} directory doesn't exist" "$LINENO" 5 + fi +- { echo "$as_me:$LINENO: checking for x264.h in ${real_x264_tree}" >&5 +-echo $ECHO_N "checking for x264.h in ${real_x264_tree}... $ECHO_C" >&6; } ++ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for x264.h in ${real_x264_tree}" >&5 ++$as_echo_n "checking for x264.h in ${real_x264_tree}... " >&6; } + if test -f ${real_x264_tree}/x264.h + then +- { echo "$as_me:$LINENO: result: yes" >&5 +-echo "${ECHO_T}yes" >&6; } ++ { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5 ++$as_echo "yes" >&6; } + + for element in x264; do + eval "CPPFLAGS_${element}="'"$'"{CPPFLAGS_${element}} -I${real_x264_tree}"'"' +@@ -51933,18 +35682,14 @@ echo "${ECHO_T}yes" >&6; } + done + + LDFLAGS="${LDFLAGS_save} ${LDFLAGS_x264} ${THREAD_LIB}" +- { echo "$as_me:$LINENO: checking for x264_encoder_open in -lx264" >&5 +-echo $ECHO_N "checking for x264_encoder_open in -lx264... $ECHO_C" >&6; } +-if test "${ac_cv_lib_x264_x264_encoder_open+set}" = set; then +- echo $ECHO_N "(cached) $ECHO_C" >&6 ++ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for x264_encoder_open in -lx264" >&5 ++$as_echo_n "checking for x264_encoder_open in -lx264... " >&6; } ++if ${ac_cv_lib_x264_x264_encoder_open+:} false; then : ++ $as_echo_n "(cached) " >&6 + else + ac_check_lib_save_LIBS=$LIBS + LIBS="-lx264 $LIBS" +-cat >conftest.$ac_ext <<_ACEOF +-/* confdefs.h. */ +-_ACEOF +-cat confdefs.h >>conftest.$ac_ext +-cat >>conftest.$ac_ext <<_ACEOF ++cat confdefs.h - <<_ACEOF >conftest.$ac_ext + /* end confdefs.h. */ + + /* Override any GCC internal prototype to avoid an error. +@@ -51962,39 +35707,18 @@ return x264_encoder_open (); + return 0; + } + _ACEOF +-rm -f conftest.$ac_objext conftest$ac_exeext +-if { (ac_try="$ac_link" +-case "(($ac_try" in +- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; +- *) ac_try_echo=$ac_try;; +-esac +-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 +- (eval "$ac_link") 2>conftest.er1 +- ac_status=$? +- grep -v '^ *+' conftest.er1 >conftest.err +- rm -f conftest.er1 +- cat conftest.err >&5 +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); } && { +- test -z "$ac_c_werror_flag" || +- test ! -s conftest.err +- } && test -s conftest$ac_exeext && +- $as_test_x conftest$ac_exeext; then ++if ac_fn_c_try_link "$LINENO"; then : + ac_cv_lib_x264_x264_encoder_open=yes + else +- echo "$as_me: failed program was:" >&5 +-sed 's/^/| /' conftest.$ac_ext >&5 +- +- ac_cv_lib_x264_x264_encoder_open=no ++ ac_cv_lib_x264_x264_encoder_open=no + fi +- +-rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ +- conftest$ac_exeext conftest.$ac_ext ++rm -f core conftest.err conftest.$ac_objext \ ++ conftest$ac_exeext conftest.$ac_ext + LIBS=$ac_check_lib_save_LIBS + fi +-{ echo "$as_me:$LINENO: result: $ac_cv_lib_x264_x264_encoder_open" >&5 +-echo "${ECHO_T}$ac_cv_lib_x264_x264_encoder_open" >&6; } +-if test $ac_cv_lib_x264_x264_encoder_open = yes; then ++{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_x264_x264_encoder_open" >&5 ++$as_echo "$ac_cv_lib_x264_x264_encoder_open" >&6; } ++if test "x$ac_cv_lib_x264_x264_encoder_open" = xyes; then : + + + BUILTINS="${BUILTINS} x264" +@@ -52008,170 +35732,34 @@ if test $ac_cv_lib_x264_x264_encoder_open = yes; then + + else + +- { { echo "$as_me:$LINENO: error: the specified tree hasn't been compiled" >&5 +-echo "$as_me: error: the specified tree hasn't been compiled" >&2;} +- { (exit 1); exit 1; }; } ++ as_fn_error $? "the specified tree hasn't been compiled" "$LINENO" 5 + + fi + + LDFLAGS="${LDFLAGS_save}" + else +- { echo "$as_me:$LINENO: result: no" >&5 +-echo "${ECHO_T}no" >&6; } +- { { echo "$as_me:$LINENO: error: the specified tree doesn't have x264.h" >&5 +-echo "$as_me: error: the specified tree doesn't have x264.h" >&2;} +- { (exit 1); exit 1; }; } ++ { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 ++$as_echo "no" >&6; } ++ as_fn_error $? "the specified tree doesn't have x264.h" "$LINENO" 5 + fi + else + LDFLAGS="${LDFLAGS_save} ${LDFLAGS_x264} ${THREAD_LIB}" +- +-for ac_header in x264.h +-do +-as_ac_Header=`echo "ac_cv_header_$ac_header" | $as_tr_sh` +-if { as_var=$as_ac_Header; eval "test \"\${$as_var+set}\" = set"; }; then +- { echo "$as_me:$LINENO: checking for $ac_header" >&5 +-echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6; } +-if { as_var=$as_ac_Header; eval "test \"\${$as_var+set}\" = set"; }; then +- echo $ECHO_N "(cached) $ECHO_C" >&6 +-fi +-ac_res=`eval echo '${'$as_ac_Header'}'` +- { echo "$as_me:$LINENO: result: $ac_res" >&5 +-echo "${ECHO_T}$ac_res" >&6; } +-else +- # Is the header compilable? +-{ echo "$as_me:$LINENO: checking $ac_header usability" >&5 +-echo $ECHO_N "checking $ac_header usability... $ECHO_C" >&6; } +-cat >conftest.$ac_ext <<_ACEOF +-/* confdefs.h. */ +-_ACEOF +-cat confdefs.h >>conftest.$ac_ext +-cat >>conftest.$ac_ext <<_ACEOF +-/* end confdefs.h. */ +-$ac_includes_default +-#include <$ac_header> +-_ACEOF +-rm -f conftest.$ac_objext +-if { (ac_try="$ac_compile" +-case "(($ac_try" in +- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; +- *) ac_try_echo=$ac_try;; +-esac +-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 +- (eval "$ac_compile") 2>conftest.er1 +- ac_status=$? +- grep -v '^ *+' conftest.er1 >conftest.err +- rm -f conftest.er1 +- cat conftest.err >&5 +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); } && { +- test -z "$ac_c_werror_flag" || +- test ! -s conftest.err +- } && test -s conftest.$ac_objext; then +- ac_header_compiler=yes +-else +- echo "$as_me: failed program was:" >&5 +-sed 's/^/| /' conftest.$ac_ext >&5 +- +- ac_header_compiler=no +-fi +- +-rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext +-{ echo "$as_me:$LINENO: result: $ac_header_compiler" >&5 +-echo "${ECHO_T}$ac_header_compiler" >&6; } +- +-# Is the header present? +-{ echo "$as_me:$LINENO: checking $ac_header presence" >&5 +-echo $ECHO_N "checking $ac_header presence... $ECHO_C" >&6; } +-cat >conftest.$ac_ext <<_ACEOF +-/* confdefs.h. */ +-_ACEOF +-cat confdefs.h >>conftest.$ac_ext +-cat >>conftest.$ac_ext <<_ACEOF +-/* end confdefs.h. */ +-#include <$ac_header> +-_ACEOF +-if { (ac_try="$ac_cpp conftest.$ac_ext" +-case "(($ac_try" in +- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; +- *) ac_try_echo=$ac_try;; +-esac +-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 +- (eval "$ac_cpp conftest.$ac_ext") 2>conftest.er1 +- ac_status=$? +- grep -v '^ *+' conftest.er1 >conftest.err +- rm -f conftest.er1 +- cat conftest.err >&5 +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); } >/dev/null && { +- test -z "$ac_c_preproc_warn_flag$ac_c_werror_flag" || +- test ! -s conftest.err +- }; then +- ac_header_preproc=yes +-else +- echo "$as_me: failed program was:" >&5 +-sed 's/^/| /' conftest.$ac_ext >&5 +- +- ac_header_preproc=no +-fi +- +-rm -f conftest.err conftest.$ac_ext +-{ echo "$as_me:$LINENO: result: $ac_header_preproc" >&5 +-echo "${ECHO_T}$ac_header_preproc" >&6; } +- +-# So? What about this header? +-case $ac_header_compiler:$ac_header_preproc:$ac_c_preproc_warn_flag in +- yes:no: ) +- { echo "$as_me:$LINENO: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&5 +-echo "$as_me: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&2;} +- { echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the compiler's result" >&5 +-echo "$as_me: WARNING: $ac_header: proceeding with the compiler's result" >&2;} +- ac_header_preproc=yes +- ;; +- no:yes:* ) +- { echo "$as_me:$LINENO: WARNING: $ac_header: present but cannot be compiled" >&5 +-echo "$as_me: WARNING: $ac_header: present but cannot be compiled" >&2;} +- { echo "$as_me:$LINENO: WARNING: $ac_header: check for missing prerequisite headers?" >&5 +-echo "$as_me: WARNING: $ac_header: check for missing prerequisite headers?" >&2;} +- { echo "$as_me:$LINENO: WARNING: $ac_header: see the Autoconf documentation" >&5 +-echo "$as_me: WARNING: $ac_header: see the Autoconf documentation" >&2;} +- { echo "$as_me:$LINENO: WARNING: $ac_header: section \"Present But Cannot Be Compiled\"" >&5 +-echo "$as_me: WARNING: $ac_header: section \"Present But Cannot Be Compiled\"" >&2;} +- { echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the preprocessor's result" >&5 +-echo "$as_me: WARNING: $ac_header: proceeding with the preprocessor's result" >&2;} +- { echo "$as_me:$LINENO: WARNING: $ac_header: in the future, the compiler will take precedence" >&5 +-echo "$as_me: WARNING: $ac_header: in the future, the compiler will take precedence" >&2;} +- +- ;; +-esac +-{ echo "$as_me:$LINENO: checking for $ac_header" >&5 +-echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6; } +-if { as_var=$as_ac_Header; eval "test \"\${$as_var+set}\" = set"; }; then +- echo $ECHO_N "(cached) $ECHO_C" >&6 +-else +- eval "$as_ac_Header=\$ac_header_preproc" +-fi +-ac_res=`eval echo '${'$as_ac_Header'}'` +- { echo "$as_me:$LINENO: result: $ac_res" >&5 +-echo "${ECHO_T}$ac_res" >&6; } +- +-fi +-if test `eval echo '${'$as_ac_Header'}'` = yes; then ++ for ac_header in x264.h ++do : ++ ac_fn_c_check_header_mongrel "$LINENO" "x264.h" "ac_cv_header_x264_h" "$ac_includes_default" ++if test "x$ac_cv_header_x264_h" = xyes; then : + cat >>confdefs.h <<_ACEOF +-#define `echo "HAVE_$ac_header" | $as_tr_cpp` 1 ++#define HAVE_X264_H 1 + _ACEOF + +- { echo "$as_me:$LINENO: checking for x264_encoder_open in -lx264" >&5 +-echo $ECHO_N "checking for x264_encoder_open in -lx264... $ECHO_C" >&6; } +-if test "${ac_cv_lib_x264_x264_encoder_open+set}" = set; then +- echo $ECHO_N "(cached) $ECHO_C" >&6 ++ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for x264_encoder_open in -lx264" >&5 ++$as_echo_n "checking for x264_encoder_open in -lx264... " >&6; } ++if ${ac_cv_lib_x264_x264_encoder_open+:} false; then : ++ $as_echo_n "(cached) " >&6 + else + ac_check_lib_save_LIBS=$LIBS + LIBS="-lx264 $LIBS" +-cat >conftest.$ac_ext <<_ACEOF +-/* confdefs.h. */ +-_ACEOF +-cat confdefs.h >>conftest.$ac_ext +-cat >>conftest.$ac_ext <<_ACEOF ++cat confdefs.h - <<_ACEOF >conftest.$ac_ext + /* end confdefs.h. */ + + /* Override any GCC internal prototype to avoid an error. +@@ -52189,39 +35777,18 @@ return x264_encoder_open (); + return 0; + } + _ACEOF +-rm -f conftest.$ac_objext conftest$ac_exeext +-if { (ac_try="$ac_link" +-case "(($ac_try" in +- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; +- *) ac_try_echo=$ac_try;; +-esac +-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 +- (eval "$ac_link") 2>conftest.er1 +- ac_status=$? +- grep -v '^ *+' conftest.er1 >conftest.err +- rm -f conftest.er1 +- cat conftest.err >&5 +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); } && { +- test -z "$ac_c_werror_flag" || +- test ! -s conftest.err +- } && test -s conftest$ac_exeext && +- $as_test_x conftest$ac_exeext; then ++if ac_fn_c_try_link "$LINENO"; then : + ac_cv_lib_x264_x264_encoder_open=yes + else +- echo "$as_me: failed program was:" >&5 +-sed 's/^/| /' conftest.$ac_ext >&5 +- +- ac_cv_lib_x264_x264_encoder_open=no ++ ac_cv_lib_x264_x264_encoder_open=no + fi +- +-rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ +- conftest$ac_exeext conftest.$ac_ext ++rm -f core conftest.err conftest.$ac_objext \ ++ conftest$ac_exeext conftest.$ac_ext + LIBS=$ac_check_lib_save_LIBS + fi +-{ echo "$as_me:$LINENO: result: $ac_cv_lib_x264_x264_encoder_open" >&5 +-echo "${ECHO_T}$ac_cv_lib_x264_x264_encoder_open" >&6; } +-if test $ac_cv_lib_x264_x264_encoder_open = yes; then ++{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_x264_x264_encoder_open" >&5 ++$as_echo "$ac_cv_lib_x264_x264_encoder_open" >&6; } ++if test "x$ac_cv_lib_x264_x264_encoder_open" = xyes; then : + + + PLUGINS="${PLUGINS} x264" +@@ -52236,9 +35803,7 @@ if test $ac_cv_lib_x264_x264_encoder_open = yes; then + else + + if test "${enable_x264}" = "yes"; then +- { { echo "$as_me:$LINENO: error: Could not find libx264 on your system: you may get it from http://www.videolan.org/x264.html" >&5 +-echo "$as_me: error: Could not find libx264 on your system: you may get it from http://www.videolan.org/x264.html" >&2;} +- { (exit 1); exit 1; }; } ++ as_fn_error $? "Could not find libx264 on your system: you may get it from http://www.videolan.org/x264.html" "$LINENO" 5 + fi + + fi +@@ -52253,7 +35818,7 @@ done + fi + + # Check whether --enable-cmml was given. +-if test "${enable_cmml+set}" = set; then ++if test "${enable_cmml+set}" = set; then : + enableval=$enable_cmml; + fi + +@@ -52268,250 +35833,71 @@ fi + + + # Check whether --with- was given. +-if test "${with_+set}" = set; then ++if test "${with_+set}" = set; then : + withval=$with_; + fi + + + if test "${SYS}" != "mingw32" -a "${SYS}" != "mingwce"; then + CPPFLAGS="${CPPFLAGS_save} ${X_CFLAGS}" +- +-for ac_header in X11/extensions/dpms.h +-do +-as_ac_Header=`echo "ac_cv_header_$ac_header" | $as_tr_sh` +-{ echo "$as_me:$LINENO: checking for $ac_header" >&5 +-echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6; } +-if { as_var=$as_ac_Header; eval "test \"\${$as_var+set}\" = set"; }; then +- echo $ECHO_N "(cached) $ECHO_C" >&6 +-else +- cat >conftest.$ac_ext <<_ACEOF +-/* confdefs.h. */ +-_ACEOF +-cat confdefs.h >>conftest.$ac_ext +-cat >>conftest.$ac_ext <<_ACEOF +-/* end confdefs.h. */ +- ++ for ac_header in X11/extensions/dpms.h ++do : ++ ac_fn_c_check_header_compile "$LINENO" "X11/extensions/dpms.h" "ac_cv_header_X11_extensions_dpms_h" " + #include + +- +-#include <$ac_header> +-_ACEOF +-rm -f conftest.$ac_objext +-if { (ac_try="$ac_compile" +-case "(($ac_try" in +- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; +- *) ac_try_echo=$ac_try;; +-esac +-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 +- (eval "$ac_compile") 2>conftest.er1 +- ac_status=$? +- grep -v '^ *+' conftest.er1 >conftest.err +- rm -f conftest.er1 +- cat conftest.err >&5 +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); } && { +- test -z "$ac_c_werror_flag" || +- test ! -s conftest.err +- } && test -s conftest.$ac_objext; then +- eval "$as_ac_Header=yes" +-else +- echo "$as_me: failed program was:" >&5 +-sed 's/^/| /' conftest.$ac_ext >&5 +- +- eval "$as_ac_Header=no" +-fi +- +-rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext +-fi +-ac_res=`eval echo '${'$as_ac_Header'}'` +- { echo "$as_me:$LINENO: result: $ac_res" >&5 +-echo "${ECHO_T}$ac_res" >&6; } +-if test `eval echo '${'$as_ac_Header'}'` = yes; then ++" ++if test "x$ac_cv_header_X11_extensions_dpms_h" = xyes; then : + cat >>confdefs.h <<_ACEOF +-#define `echo "HAVE_$ac_header" | $as_tr_cpp` 1 ++#define HAVE_X11_EXTENSIONS_DPMS_H 1 + _ACEOF + +- { echo "$as_me:$LINENO: checking for DPMSInfo in X11/extensions/dpms.h" >&5 +-echo $ECHO_N "checking for DPMSInfo in X11/extensions/dpms.h... $ECHO_C" >&6; } +- cat >conftest.$ac_ext <<_ACEOF +-/* confdefs.h. */ +-_ACEOF +-cat confdefs.h >>conftest.$ac_ext +-cat >>conftest.$ac_ext <<_ACEOF ++ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for DPMSInfo in X11/extensions/dpms.h" >&5 ++$as_echo_n "checking for DPMSInfo in X11/extensions/dpms.h... " >&6; } ++ cat confdefs.h - <<_ACEOF >conftest.$ac_ext + /* end confdefs.h. */ + #include + + _ACEOF + if (eval "$ac_cpp conftest.$ac_ext") 2>&5 | +- $EGREP "DPMSInfo" >/dev/null 2>&1; then +- +- { echo "$as_me:$LINENO: result: yes" >&5 +-echo "${ECHO_T}yes" >&6; } +- +-cat >>confdefs.h <<\_ACEOF +-#define DPMSINFO_IN_DPMS_H 1 +-_ACEOF +- +- +-else +- +- { echo "$as_me:$LINENO: result: no" >&5 +-echo "${ECHO_T}no" >&6; } +- +-fi +-rm -f conftest* +- +- +-fi +- +-done +- +- CPPFLAGS="${CPPFLAGS_save}" +-fi +- +-# Check whether --enable-x11 was given. +-if test "${enable_x11+set}" = set; then +- enableval=$enable_x11; +-fi +- +-if test "${enable_x11}" != "no" && +- (test "${SYS}" != "mingw32" -a "${SYS}" != "mingwce" || +- test "${enable_x11}" = "yes"); then +- CPPFLAGS="${CPPFLAGS_save} ${X_FLAGS}" ++ $EGREP "DPMSInfo" >/dev/null 2>&1; then : + +-for ac_header in X11/Xlib.h +-do +-as_ac_Header=`echo "ac_cv_header_$ac_header" | $as_tr_sh` +-if { as_var=$as_ac_Header; eval "test \"\${$as_var+set}\" = set"; }; then +- { echo "$as_me:$LINENO: checking for $ac_header" >&5 +-echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6; } +-if { as_var=$as_ac_Header; eval "test \"\${$as_var+set}\" = set"; }; then +- echo $ECHO_N "(cached) $ECHO_C" >&6 +-fi +-ac_res=`eval echo '${'$as_ac_Header'}'` +- { echo "$as_me:$LINENO: result: $ac_res" >&5 +-echo "${ECHO_T}$ac_res" >&6; } +-else +- # Is the header compilable? +-{ echo "$as_me:$LINENO: checking $ac_header usability" >&5 +-echo $ECHO_N "checking $ac_header usability... $ECHO_C" >&6; } +-cat >conftest.$ac_ext <<_ACEOF +-/* confdefs.h. */ +-_ACEOF +-cat confdefs.h >>conftest.$ac_ext +-cat >>conftest.$ac_ext <<_ACEOF +-/* end confdefs.h. */ +-$ac_includes_default +-#include <$ac_header> +-_ACEOF +-rm -f conftest.$ac_objext +-if { (ac_try="$ac_compile" +-case "(($ac_try" in +- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; +- *) ac_try_echo=$ac_try;; +-esac +-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 +- (eval "$ac_compile") 2>conftest.er1 +- ac_status=$? +- grep -v '^ *+' conftest.er1 >conftest.err +- rm -f conftest.er1 +- cat conftest.err >&5 +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); } && { +- test -z "$ac_c_werror_flag" || +- test ! -s conftest.err +- } && test -s conftest.$ac_objext; then +- ac_header_compiler=yes +-else +- echo "$as_me: failed program was:" >&5 +-sed 's/^/| /' conftest.$ac_ext >&5 ++ { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5 ++$as_echo "yes" >&6; } + +- ac_header_compiler=no +-fi ++$as_echo "#define DPMSINFO_IN_DPMS_H 1" >>confdefs.h + +-rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext +-{ echo "$as_me:$LINENO: result: $ac_header_compiler" >&5 +-echo "${ECHO_T}$ac_header_compiler" >&6; } + +-# Is the header present? +-{ echo "$as_me:$LINENO: checking $ac_header presence" >&5 +-echo $ECHO_N "checking $ac_header presence... $ECHO_C" >&6; } +-cat >conftest.$ac_ext <<_ACEOF +-/* confdefs.h. */ +-_ACEOF +-cat confdefs.h >>conftest.$ac_ext +-cat >>conftest.$ac_ext <<_ACEOF +-/* end confdefs.h. */ +-#include <$ac_header> +-_ACEOF +-if { (ac_try="$ac_cpp conftest.$ac_ext" +-case "(($ac_try" in +- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; +- *) ac_try_echo=$ac_try;; +-esac +-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 +- (eval "$ac_cpp conftest.$ac_ext") 2>conftest.er1 +- ac_status=$? +- grep -v '^ *+' conftest.er1 >conftest.err +- rm -f conftest.er1 +- cat conftest.err >&5 +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); } >/dev/null && { +- test -z "$ac_c_preproc_warn_flag$ac_c_werror_flag" || +- test ! -s conftest.err +- }; then +- ac_header_preproc=yes + else +- echo "$as_me: failed program was:" >&5 +-sed 's/^/| /' conftest.$ac_ext >&5 + +- ac_header_preproc=no ++ { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 ++$as_echo "no" >&6; } ++ + fi ++rm -f conftest* + +-rm -f conftest.err conftest.$ac_ext +-{ echo "$as_me:$LINENO: result: $ac_header_preproc" >&5 +-echo "${ECHO_T}$ac_header_preproc" >&6; } + +-# So? What about this header? +-case $ac_header_compiler:$ac_header_preproc:$ac_c_preproc_warn_flag in +- yes:no: ) +- { echo "$as_me:$LINENO: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&5 +-echo "$as_me: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&2;} +- { echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the compiler's result" >&5 +-echo "$as_me: WARNING: $ac_header: proceeding with the compiler's result" >&2;} +- ac_header_preproc=yes +- ;; +- no:yes:* ) +- { echo "$as_me:$LINENO: WARNING: $ac_header: present but cannot be compiled" >&5 +-echo "$as_me: WARNING: $ac_header: present but cannot be compiled" >&2;} +- { echo "$as_me:$LINENO: WARNING: $ac_header: check for missing prerequisite headers?" >&5 +-echo "$as_me: WARNING: $ac_header: check for missing prerequisite headers?" >&2;} +- { echo "$as_me:$LINENO: WARNING: $ac_header: see the Autoconf documentation" >&5 +-echo "$as_me: WARNING: $ac_header: see the Autoconf documentation" >&2;} +- { echo "$as_me:$LINENO: WARNING: $ac_header: section \"Present But Cannot Be Compiled\"" >&5 +-echo "$as_me: WARNING: $ac_header: section \"Present But Cannot Be Compiled\"" >&2;} +- { echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the preprocessor's result" >&5 +-echo "$as_me: WARNING: $ac_header: proceeding with the preprocessor's result" >&2;} +- { echo "$as_me:$LINENO: WARNING: $ac_header: in the future, the compiler will take precedence" >&5 +-echo "$as_me: WARNING: $ac_header: in the future, the compiler will take precedence" >&2;} ++fi + +- ;; +-esac +-{ echo "$as_me:$LINENO: checking for $ac_header" >&5 +-echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6; } +-if { as_var=$as_ac_Header; eval "test \"\${$as_var+set}\" = set"; }; then +- echo $ECHO_N "(cached) $ECHO_C" >&6 +-else +- eval "$as_ac_Header=\$ac_header_preproc" ++done ++ ++ CPPFLAGS="${CPPFLAGS_save}" + fi +-ac_res=`eval echo '${'$as_ac_Header'}'` +- { echo "$as_me:$LINENO: result: $ac_res" >&5 +-echo "${ECHO_T}$ac_res" >&6; } + ++# Check whether --enable-x11 was given. ++if test "${enable_x11+set}" = set; then : ++ enableval=$enable_x11; + fi +-if test `eval echo '${'$as_ac_Header'}'` = yes; then ++ ++if test "${enable_x11}" != "no" && ++ (test "${SYS}" != "mingw32" -a "${SYS}" != "mingwce" || ++ test "${enable_x11}" = "yes"); then ++ CPPFLAGS="${CPPFLAGS_save} ${X_FLAGS}" ++ for ac_header in X11/Xlib.h ++do : ++ ac_fn_c_check_header_mongrel "$LINENO" "X11/Xlib.h" "ac_cv_header_X11_Xlib_h" "$ac_includes_default" ++if test "x$ac_cv_header_X11_Xlib_h" = xyes; then : + cat >>confdefs.h <<_ACEOF +-#define `echo "HAVE_$ac_header" | $as_tr_cpp` 1 ++#define HAVE_X11_XLIB_H 1 + _ACEOF + + +@@ -52538,7 +35924,7 @@ done + fi + + # Check whether --enable-xvideo was given. +-if test "${enable_xvideo+set}" = set; then ++if test "${enable_xvideo+set}" = set; then : + enableval=$enable_xvideo; + fi + +@@ -52546,155 +35932,23 @@ if test "${enable_xvideo}" != "no" && + (test "${SYS}" != "mingw32" -a "${SYS}" != "mingwce" || + test "${enable_xvideo}" = "yes"); then + CPPFLAGS="${CPPFLAGS_save} ${X_CFLAGS}" +- +-for ac_header in X11/extensions/Xv.h +-do +-as_ac_Header=`echo "ac_cv_header_$ac_header" | $as_tr_sh` +-if { as_var=$as_ac_Header; eval "test \"\${$as_var+set}\" = set"; }; then +- { echo "$as_me:$LINENO: checking for $ac_header" >&5 +-echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6; } +-if { as_var=$as_ac_Header; eval "test \"\${$as_var+set}\" = set"; }; then +- echo $ECHO_N "(cached) $ECHO_C" >&6 +-fi +-ac_res=`eval echo '${'$as_ac_Header'}'` +- { echo "$as_me:$LINENO: result: $ac_res" >&5 +-echo "${ECHO_T}$ac_res" >&6; } +-else +- # Is the header compilable? +-{ echo "$as_me:$LINENO: checking $ac_header usability" >&5 +-echo $ECHO_N "checking $ac_header usability... $ECHO_C" >&6; } +-cat >conftest.$ac_ext <<_ACEOF +-/* confdefs.h. */ +-_ACEOF +-cat confdefs.h >>conftest.$ac_ext +-cat >>conftest.$ac_ext <<_ACEOF +-/* end confdefs.h. */ +-$ac_includes_default +-#include <$ac_header> +-_ACEOF +-rm -f conftest.$ac_objext +-if { (ac_try="$ac_compile" +-case "(($ac_try" in +- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; +- *) ac_try_echo=$ac_try;; +-esac +-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 +- (eval "$ac_compile") 2>conftest.er1 +- ac_status=$? +- grep -v '^ *+' conftest.er1 >conftest.err +- rm -f conftest.er1 +- cat conftest.err >&5 +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); } && { +- test -z "$ac_c_werror_flag" || +- test ! -s conftest.err +- } && test -s conftest.$ac_objext; then +- ac_header_compiler=yes +-else +- echo "$as_me: failed program was:" >&5 +-sed 's/^/| /' conftest.$ac_ext >&5 +- +- ac_header_compiler=no +-fi +- +-rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext +-{ echo "$as_me:$LINENO: result: $ac_header_compiler" >&5 +-echo "${ECHO_T}$ac_header_compiler" >&6; } +- +-# Is the header present? +-{ echo "$as_me:$LINENO: checking $ac_header presence" >&5 +-echo $ECHO_N "checking $ac_header presence... $ECHO_C" >&6; } +-cat >conftest.$ac_ext <<_ACEOF +-/* confdefs.h. */ +-_ACEOF +-cat confdefs.h >>conftest.$ac_ext +-cat >>conftest.$ac_ext <<_ACEOF +-/* end confdefs.h. */ +-#include <$ac_header> +-_ACEOF +-if { (ac_try="$ac_cpp conftest.$ac_ext" +-case "(($ac_try" in +- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; +- *) ac_try_echo=$ac_try;; +-esac +-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 +- (eval "$ac_cpp conftest.$ac_ext") 2>conftest.er1 +- ac_status=$? +- grep -v '^ *+' conftest.er1 >conftest.err +- rm -f conftest.er1 +- cat conftest.err >&5 +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); } >/dev/null && { +- test -z "$ac_c_preproc_warn_flag$ac_c_werror_flag" || +- test ! -s conftest.err +- }; then +- ac_header_preproc=yes +-else +- echo "$as_me: failed program was:" >&5 +-sed 's/^/| /' conftest.$ac_ext >&5 +- +- ac_header_preproc=no +-fi +- +-rm -f conftest.err conftest.$ac_ext +-{ echo "$as_me:$LINENO: result: $ac_header_preproc" >&5 +-echo "${ECHO_T}$ac_header_preproc" >&6; } +- +-# So? What about this header? +-case $ac_header_compiler:$ac_header_preproc:$ac_c_preproc_warn_flag in +- yes:no: ) +- { echo "$as_me:$LINENO: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&5 +-echo "$as_me: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&2;} +- { echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the compiler's result" >&5 +-echo "$as_me: WARNING: $ac_header: proceeding with the compiler's result" >&2;} +- ac_header_preproc=yes +- ;; +- no:yes:* ) +- { echo "$as_me:$LINENO: WARNING: $ac_header: present but cannot be compiled" >&5 +-echo "$as_me: WARNING: $ac_header: present but cannot be compiled" >&2;} +- { echo "$as_me:$LINENO: WARNING: $ac_header: check for missing prerequisite headers?" >&5 +-echo "$as_me: WARNING: $ac_header: check for missing prerequisite headers?" >&2;} +- { echo "$as_me:$LINENO: WARNING: $ac_header: see the Autoconf documentation" >&5 +-echo "$as_me: WARNING: $ac_header: see the Autoconf documentation" >&2;} +- { echo "$as_me:$LINENO: WARNING: $ac_header: section \"Present But Cannot Be Compiled\"" >&5 +-echo "$as_me: WARNING: $ac_header: section \"Present But Cannot Be Compiled\"" >&2;} +- { echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the preprocessor's result" >&5 +-echo "$as_me: WARNING: $ac_header: proceeding with the preprocessor's result" >&2;} +- { echo "$as_me:$LINENO: WARNING: $ac_header: in the future, the compiler will take precedence" >&5 +-echo "$as_me: WARNING: $ac_header: in the future, the compiler will take precedence" >&2;} +- +- ;; +-esac +-{ echo "$as_me:$LINENO: checking for $ac_header" >&5 +-echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6; } +-if { as_var=$as_ac_Header; eval "test \"\${$as_var+set}\" = set"; }; then +- echo $ECHO_N "(cached) $ECHO_C" >&6 +-else +- eval "$as_ac_Header=\$ac_header_preproc" +-fi +-ac_res=`eval echo '${'$as_ac_Header'}'` +- { echo "$as_me:$LINENO: result: $ac_res" >&5 +-echo "${ECHO_T}$ac_res" >&6; } +- +-fi +-if test `eval echo '${'$as_ac_Header'}'` = yes; then ++ for ac_header in X11/extensions/Xv.h ++do : ++ ac_fn_c_check_header_mongrel "$LINENO" "X11/extensions/Xv.h" "ac_cv_header_X11_extensions_Xv_h" "$ac_includes_default" ++if test "x$ac_cv_header_X11_extensions_Xv_h" = xyes; then : + cat >>confdefs.h <<_ACEOF +-#define `echo "HAVE_$ac_header" | $as_tr_cpp` 1 ++#define HAVE_X11_EXTENSIONS_XV_H 1 + _ACEOF + + CFLAGS="${CFLAGS_save} ${X_LIBS} ${X_PRE_LIBS} -lX11 -lXext" +- { echo "$as_me:$LINENO: checking for XvPutImage in -lXv" >&5 +-echo $ECHO_N "checking for XvPutImage in -lXv... $ECHO_C" >&6; } +-if test "${ac_cv_lib_Xv_XvPutImage+set}" = set; then +- echo $ECHO_N "(cached) $ECHO_C" >&6 ++ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for XvPutImage in -lXv" >&5 ++$as_echo_n "checking for XvPutImage in -lXv... " >&6; } ++if ${ac_cv_lib_Xv_XvPutImage+:} false; then : ++ $as_echo_n "(cached) " >&6 + else + ac_check_lib_save_LIBS=$LIBS + LIBS="-lXv $LIBS" +-cat >conftest.$ac_ext <<_ACEOF +-/* confdefs.h. */ +-_ACEOF +-cat confdefs.h >>conftest.$ac_ext +-cat >>conftest.$ac_ext <<_ACEOF ++cat confdefs.h - <<_ACEOF >conftest.$ac_ext + /* end confdefs.h. */ + + /* Override any GCC internal prototype to avoid an error. +@@ -52712,39 +35966,18 @@ return XvPutImage (); + return 0; + } + _ACEOF +-rm -f conftest.$ac_objext conftest$ac_exeext +-if { (ac_try="$ac_link" +-case "(($ac_try" in +- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; +- *) ac_try_echo=$ac_try;; +-esac +-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 +- (eval "$ac_link") 2>conftest.er1 +- ac_status=$? +- grep -v '^ *+' conftest.er1 >conftest.err +- rm -f conftest.er1 +- cat conftest.err >&5 +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); } && { +- test -z "$ac_c_werror_flag" || +- test ! -s conftest.err +- } && test -s conftest$ac_exeext && +- $as_test_x conftest$ac_exeext; then ++if ac_fn_c_try_link "$LINENO"; then : + ac_cv_lib_Xv_XvPutImage=yes + else +- echo "$as_me: failed program was:" >&5 +-sed 's/^/| /' conftest.$ac_ext >&5 +- +- ac_cv_lib_Xv_XvPutImage=no ++ ac_cv_lib_Xv_XvPutImage=no + fi +- +-rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ +- conftest$ac_exeext conftest.$ac_ext ++rm -f core conftest.err conftest.$ac_objext \ ++ conftest$ac_exeext conftest.$ac_ext + LIBS=$ac_check_lib_save_LIBS + fi +-{ echo "$as_me:$LINENO: result: $ac_cv_lib_Xv_XvPutImage" >&5 +-echo "${ECHO_T}$ac_cv_lib_Xv_XvPutImage" >&6; } +-if test $ac_cv_lib_Xv_XvPutImage = yes; then ++{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_Xv_XvPutImage" >&5 ++$as_echo "$ac_cv_lib_Xv_XvPutImage" >&6; } ++if test "x$ac_cv_lib_Xv_XvPutImage" = xyes; then : + + # If libXv.so is available, xvideo can be a plugin. Otherwise, we + # test for libXv_pic. +@@ -52765,18 +35998,14 @@ if test $ac_cv_lib_Xv_XvPutImage = yes; then + done + + else +- { echo "$as_me:$LINENO: checking for XvPutImage in -lXv_pic" >&5 +-echo $ECHO_N "checking for XvPutImage in -lXv_pic... $ECHO_C" >&6; } +-if test "${ac_cv_lib_Xv_pic_XvPutImage+set}" = set; then +- echo $ECHO_N "(cached) $ECHO_C" >&6 ++ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for XvPutImage in -lXv_pic" >&5 ++$as_echo_n "checking for XvPutImage in -lXv_pic... " >&6; } ++if ${ac_cv_lib_Xv_pic_XvPutImage+:} false; then : ++ $as_echo_n "(cached) " >&6 + else + ac_check_lib_save_LIBS=$LIBS + LIBS="-lXv_pic $LIBS" +-cat >conftest.$ac_ext <<_ACEOF +-/* confdefs.h. */ +-_ACEOF +-cat confdefs.h >>conftest.$ac_ext +-cat >>conftest.$ac_ext <<_ACEOF ++cat confdefs.h - <<_ACEOF >conftest.$ac_ext + /* end confdefs.h. */ + + /* Override any GCC internal prototype to avoid an error. +@@ -52794,39 +36023,18 @@ return XvPutImage (); + return 0; + } + _ACEOF +-rm -f conftest.$ac_objext conftest$ac_exeext +-if { (ac_try="$ac_link" +-case "(($ac_try" in +- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; +- *) ac_try_echo=$ac_try;; +-esac +-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 +- (eval "$ac_link") 2>conftest.er1 +- ac_status=$? +- grep -v '^ *+' conftest.er1 >conftest.err +- rm -f conftest.er1 +- cat conftest.err >&5 +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); } && { +- test -z "$ac_c_werror_flag" || +- test ! -s conftest.err +- } && test -s conftest$ac_exeext && +- $as_test_x conftest$ac_exeext; then ++if ac_fn_c_try_link "$LINENO"; then : + ac_cv_lib_Xv_pic_XvPutImage=yes + else +- echo "$as_me: failed program was:" >&5 +-sed 's/^/| /' conftest.$ac_ext >&5 +- +- ac_cv_lib_Xv_pic_XvPutImage=no ++ ac_cv_lib_Xv_pic_XvPutImage=no + fi +- +-rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ +- conftest$ac_exeext conftest.$ac_ext ++rm -f core conftest.err conftest.$ac_objext \ ++ conftest$ac_exeext conftest.$ac_ext + LIBS=$ac_check_lib_save_LIBS + fi +-{ echo "$as_me:$LINENO: result: $ac_cv_lib_Xv_pic_XvPutImage" >&5 +-echo "${ECHO_T}$ac_cv_lib_Xv_pic_XvPutImage" >&6; } +-if test $ac_cv_lib_Xv_pic_XvPutImage = yes; then ++{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_Xv_pic_XvPutImage" >&5 ++$as_echo "$ac_cv_lib_Xv_pic_XvPutImage" >&6; } ++if test "x$ac_cv_lib_Xv_pic_XvPutImage" = xyes; then : + + + PLUGINS="${PLUGINS} xvideo" +@@ -52878,7 +36086,7 @@ done + fi + + # Check whether --enable-glx was given. +-if test "${enable_glx+set}" = set; then ++if test "${enable_glx+set}" = set; then : + enableval=$enable_glx; + fi + +@@ -52886,153 +36094,20 @@ if test "${enable_glx}" != "no" && + (test "${SYS}" != "mingw32" -a "${SYS}" != "mingwce" || + test "${enable_glx}" = "yes"); then + CPPFLAGS="${CPPFLAGS_save} ${X_CFLAGS}" +- +- +- +-for ac_header in X11/Xlib.h GL/glu.h GL/glx.h +-do +-as_ac_Header=`echo "ac_cv_header_$ac_header" | $as_tr_sh` +-if { as_var=$as_ac_Header; eval "test \"\${$as_var+set}\" = set"; }; then +- { echo "$as_me:$LINENO: checking for $ac_header" >&5 +-echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6; } +-if { as_var=$as_ac_Header; eval "test \"\${$as_var+set}\" = set"; }; then +- echo $ECHO_N "(cached) $ECHO_C" >&6 +-fi +-ac_res=`eval echo '${'$as_ac_Header'}'` +- { echo "$as_me:$LINENO: result: $ac_res" >&5 +-echo "${ECHO_T}$ac_res" >&6; } +-else +- # Is the header compilable? +-{ echo "$as_me:$LINENO: checking $ac_header usability" >&5 +-echo $ECHO_N "checking $ac_header usability... $ECHO_C" >&6; } +-cat >conftest.$ac_ext <<_ACEOF +-/* confdefs.h. */ +-_ACEOF +-cat confdefs.h >>conftest.$ac_ext +-cat >>conftest.$ac_ext <<_ACEOF +-/* end confdefs.h. */ +-$ac_includes_default +-#include <$ac_header> +-_ACEOF +-rm -f conftest.$ac_objext +-if { (ac_try="$ac_compile" +-case "(($ac_try" in +- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; +- *) ac_try_echo=$ac_try;; +-esac +-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 +- (eval "$ac_compile") 2>conftest.er1 +- ac_status=$? +- grep -v '^ *+' conftest.er1 >conftest.err +- rm -f conftest.er1 +- cat conftest.err >&5 +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); } && { +- test -z "$ac_c_werror_flag" || +- test ! -s conftest.err +- } && test -s conftest.$ac_objext; then +- ac_header_compiler=yes +-else +- echo "$as_me: failed program was:" >&5 +-sed 's/^/| /' conftest.$ac_ext >&5 +- +- ac_header_compiler=no +-fi +- +-rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext +-{ echo "$as_me:$LINENO: result: $ac_header_compiler" >&5 +-echo "${ECHO_T}$ac_header_compiler" >&6; } +- +-# Is the header present? +-{ echo "$as_me:$LINENO: checking $ac_header presence" >&5 +-echo $ECHO_N "checking $ac_header presence... $ECHO_C" >&6; } +-cat >conftest.$ac_ext <<_ACEOF +-/* confdefs.h. */ +-_ACEOF +-cat confdefs.h >>conftest.$ac_ext +-cat >>conftest.$ac_ext <<_ACEOF +-/* end confdefs.h. */ +-#include <$ac_header> +-_ACEOF +-if { (ac_try="$ac_cpp conftest.$ac_ext" +-case "(($ac_try" in +- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; +- *) ac_try_echo=$ac_try;; +-esac +-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 +- (eval "$ac_cpp conftest.$ac_ext") 2>conftest.er1 +- ac_status=$? +- grep -v '^ *+' conftest.er1 >conftest.err +- rm -f conftest.er1 +- cat conftest.err >&5 +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); } >/dev/null && { +- test -z "$ac_c_preproc_warn_flag$ac_c_werror_flag" || +- test ! -s conftest.err +- }; then +- ac_header_preproc=yes +-else +- echo "$as_me: failed program was:" >&5 +-sed 's/^/| /' conftest.$ac_ext >&5 +- +- ac_header_preproc=no +-fi +- +-rm -f conftest.err conftest.$ac_ext +-{ echo "$as_me:$LINENO: result: $ac_header_preproc" >&5 +-echo "${ECHO_T}$ac_header_preproc" >&6; } +- +-# So? What about this header? +-case $ac_header_compiler:$ac_header_preproc:$ac_c_preproc_warn_flag in +- yes:no: ) +- { echo "$as_me:$LINENO: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&5 +-echo "$as_me: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&2;} +- { echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the compiler's result" >&5 +-echo "$as_me: WARNING: $ac_header: proceeding with the compiler's result" >&2;} +- ac_header_preproc=yes +- ;; +- no:yes:* ) +- { echo "$as_me:$LINENO: WARNING: $ac_header: present but cannot be compiled" >&5 +-echo "$as_me: WARNING: $ac_header: present but cannot be compiled" >&2;} +- { echo "$as_me:$LINENO: WARNING: $ac_header: check for missing prerequisite headers?" >&5 +-echo "$as_me: WARNING: $ac_header: check for missing prerequisite headers?" >&2;} +- { echo "$as_me:$LINENO: WARNING: $ac_header: see the Autoconf documentation" >&5 +-echo "$as_me: WARNING: $ac_header: see the Autoconf documentation" >&2;} +- { echo "$as_me:$LINENO: WARNING: $ac_header: section \"Present But Cannot Be Compiled\"" >&5 +-echo "$as_me: WARNING: $ac_header: section \"Present But Cannot Be Compiled\"" >&2;} +- { echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the preprocessor's result" >&5 +-echo "$as_me: WARNING: $ac_header: proceeding with the preprocessor's result" >&2;} +- { echo "$as_me:$LINENO: WARNING: $ac_header: in the future, the compiler will take precedence" >&5 +-echo "$as_me: WARNING: $ac_header: in the future, the compiler will take precedence" >&2;} +- +- ;; +-esac +-{ echo "$as_me:$LINENO: checking for $ac_header" >&5 +-echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6; } +-if { as_var=$as_ac_Header; eval "test \"\${$as_var+set}\" = set"; }; then +- echo $ECHO_N "(cached) $ECHO_C" >&6 +-else +- eval "$as_ac_Header=\$ac_header_preproc" +-fi +-ac_res=`eval echo '${'$as_ac_Header'}'` +- { echo "$as_me:$LINENO: result: $ac_res" >&5 +-echo "${ECHO_T}$ac_res" >&6; } +- +-fi +-if test `eval echo '${'$as_ac_Header'}'` = yes; then ++ for ac_header in X11/Xlib.h GL/glu.h GL/glx.h ++do : ++ as_ac_Header=`$as_echo "ac_cv_header_$ac_header" | $as_tr_sh` ++ac_fn_c_check_header_mongrel "$LINENO" "$ac_header" "$as_ac_Header" "$ac_includes_default" ++if eval test \"x\$"$as_ac_Header"\" = x"yes"; then : + cat >>confdefs.h <<_ACEOF +-#define `echo "HAVE_$ac_header" | $as_tr_cpp` 1 ++#define `$as_echo "HAVE_$ac_header" | $as_tr_cpp` 1 + _ACEOF + + fi + + done + +- cat >conftest.$ac_ext <<_ACEOF +-/* confdefs.h. */ +-_ACEOF +-cat confdefs.h >>conftest.$ac_ext +-cat >>conftest.$ac_ext <<_ACEOF ++ cat confdefs.h - <<_ACEOF >conftest.$ac_ext + /* end confdefs.h. */ + #if !defined(HAVE_X11_XLIB_H) || !defined(HAVE_GL_GLU_H) || !defined(HAVE_GL_GLX_H) + choke me +@@ -53045,23 +36120,7 @@ main () + return 0; + } + _ACEOF +-rm -f conftest.$ac_objext +-if { (ac_try="$ac_compile" +-case "(($ac_try" in +- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; +- *) ac_try_echo=$ac_try;; +-esac +-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 +- (eval "$ac_compile") 2>conftest.er1 +- ac_status=$? +- grep -v '^ *+' conftest.er1 >conftest.err +- rm -f conftest.er1 +- cat conftest.err >&5 +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); } && { +- test -z "$ac_c_werror_flag" || +- test ! -s conftest.err +- } && test -s conftest.$ac_objext; then ++if ac_fn_c_try_compile "$LINENO"; then : + + + PLUGINS="${PLUGINS} glx" +@@ -53079,19 +36138,13 @@ eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + done + + +-else +- echo "$as_me: failed program was:" >&5 +-sed 's/^/| /' conftest.$ac_ext >&5 +- +- + fi +- + rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext + CPPFLAGS="${CPPFLAGS_save}" + fi + + # Check whether --enable-xinerama was given. +-if test "${enable_xinerama+set}" = set; then ++if test "${enable_xinerama+set}" = set; then : + enableval=$enable_xinerama; + fi + +@@ -53101,154 +36154,22 @@ if test "${enable_xvideo}" != "no" && test "${enable_xinerama}" != "no" && + ac_cv_have_xinerama="no" + CPPFLAGS="${CPPFLAGS_save} ${X_CFLAGS}" + CFLAGS="${CFLAGS_save} ${X_LIBS} ${X_PRE_LIBS} -lX11 -lXext" +- +-for ac_header in X11/extensions/Xinerama.h +-do +-as_ac_Header=`echo "ac_cv_header_$ac_header" | $as_tr_sh` +-if { as_var=$as_ac_Header; eval "test \"\${$as_var+set}\" = set"; }; then +- { echo "$as_me:$LINENO: checking for $ac_header" >&5 +-echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6; } +-if { as_var=$as_ac_Header; eval "test \"\${$as_var+set}\" = set"; }; then +- echo $ECHO_N "(cached) $ECHO_C" >&6 +-fi +-ac_res=`eval echo '${'$as_ac_Header'}'` +- { echo "$as_me:$LINENO: result: $ac_res" >&5 +-echo "${ECHO_T}$ac_res" >&6; } +-else +- # Is the header compilable? +-{ echo "$as_me:$LINENO: checking $ac_header usability" >&5 +-echo $ECHO_N "checking $ac_header usability... $ECHO_C" >&6; } +-cat >conftest.$ac_ext <<_ACEOF +-/* confdefs.h. */ +-_ACEOF +-cat confdefs.h >>conftest.$ac_ext +-cat >>conftest.$ac_ext <<_ACEOF +-/* end confdefs.h. */ +-$ac_includes_default +-#include <$ac_header> +-_ACEOF +-rm -f conftest.$ac_objext +-if { (ac_try="$ac_compile" +-case "(($ac_try" in +- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; +- *) ac_try_echo=$ac_try;; +-esac +-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 +- (eval "$ac_compile") 2>conftest.er1 +- ac_status=$? +- grep -v '^ *+' conftest.er1 >conftest.err +- rm -f conftest.er1 +- cat conftest.err >&5 +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); } && { +- test -z "$ac_c_werror_flag" || +- test ! -s conftest.err +- } && test -s conftest.$ac_objext; then +- ac_header_compiler=yes +-else +- echo "$as_me: failed program was:" >&5 +-sed 's/^/| /' conftest.$ac_ext >&5 +- +- ac_header_compiler=no +-fi +- +-rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext +-{ echo "$as_me:$LINENO: result: $ac_header_compiler" >&5 +-echo "${ECHO_T}$ac_header_compiler" >&6; } +- +-# Is the header present? +-{ echo "$as_me:$LINENO: checking $ac_header presence" >&5 +-echo $ECHO_N "checking $ac_header presence... $ECHO_C" >&6; } +-cat >conftest.$ac_ext <<_ACEOF +-/* confdefs.h. */ +-_ACEOF +-cat confdefs.h >>conftest.$ac_ext +-cat >>conftest.$ac_ext <<_ACEOF +-/* end confdefs.h. */ +-#include <$ac_header> +-_ACEOF +-if { (ac_try="$ac_cpp conftest.$ac_ext" +-case "(($ac_try" in +- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; +- *) ac_try_echo=$ac_try;; +-esac +-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 +- (eval "$ac_cpp conftest.$ac_ext") 2>conftest.er1 +- ac_status=$? +- grep -v '^ *+' conftest.er1 >conftest.err +- rm -f conftest.er1 +- cat conftest.err >&5 +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); } >/dev/null && { +- test -z "$ac_c_preproc_warn_flag$ac_c_werror_flag" || +- test ! -s conftest.err +- }; then +- ac_header_preproc=yes +-else +- echo "$as_me: failed program was:" >&5 +-sed 's/^/| /' conftest.$ac_ext >&5 +- +- ac_header_preproc=no +-fi +- +-rm -f conftest.err conftest.$ac_ext +-{ echo "$as_me:$LINENO: result: $ac_header_preproc" >&5 +-echo "${ECHO_T}$ac_header_preproc" >&6; } +- +-# So? What about this header? +-case $ac_header_compiler:$ac_header_preproc:$ac_c_preproc_warn_flag in +- yes:no: ) +- { echo "$as_me:$LINENO: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&5 +-echo "$as_me: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&2;} +- { echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the compiler's result" >&5 +-echo "$as_me: WARNING: $ac_header: proceeding with the compiler's result" >&2;} +- ac_header_preproc=yes +- ;; +- no:yes:* ) +- { echo "$as_me:$LINENO: WARNING: $ac_header: present but cannot be compiled" >&5 +-echo "$as_me: WARNING: $ac_header: present but cannot be compiled" >&2;} +- { echo "$as_me:$LINENO: WARNING: $ac_header: check for missing prerequisite headers?" >&5 +-echo "$as_me: WARNING: $ac_header: check for missing prerequisite headers?" >&2;} +- { echo "$as_me:$LINENO: WARNING: $ac_header: see the Autoconf documentation" >&5 +-echo "$as_me: WARNING: $ac_header: see the Autoconf documentation" >&2;} +- { echo "$as_me:$LINENO: WARNING: $ac_header: section \"Present But Cannot Be Compiled\"" >&5 +-echo "$as_me: WARNING: $ac_header: section \"Present But Cannot Be Compiled\"" >&2;} +- { echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the preprocessor's result" >&5 +-echo "$as_me: WARNING: $ac_header: proceeding with the preprocessor's result" >&2;} +- { echo "$as_me:$LINENO: WARNING: $ac_header: in the future, the compiler will take precedence" >&5 +-echo "$as_me: WARNING: $ac_header: in the future, the compiler will take precedence" >&2;} +- +- ;; +-esac +-{ echo "$as_me:$LINENO: checking for $ac_header" >&5 +-echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6; } +-if { as_var=$as_ac_Header; eval "test \"\${$as_var+set}\" = set"; }; then +- echo $ECHO_N "(cached) $ECHO_C" >&6 +-else +- eval "$as_ac_Header=\$ac_header_preproc" +-fi +-ac_res=`eval echo '${'$as_ac_Header'}'` +- { echo "$as_me:$LINENO: result: $ac_res" >&5 +-echo "${ECHO_T}$ac_res" >&6; } +- +-fi +-if test `eval echo '${'$as_ac_Header'}'` = yes; then ++ for ac_header in X11/extensions/Xinerama.h ++do : ++ ac_fn_c_check_header_mongrel "$LINENO" "X11/extensions/Xinerama.h" "ac_cv_header_X11_extensions_Xinerama_h" "$ac_includes_default" ++if test "x$ac_cv_header_X11_extensions_Xinerama_h" = xyes; then : + cat >>confdefs.h <<_ACEOF +-#define `echo "HAVE_$ac_header" | $as_tr_cpp` 1 ++#define HAVE_X11_EXTENSIONS_XINERAMA_H 1 + _ACEOF + +- { echo "$as_me:$LINENO: checking for XineramaQueryExtension in -lXinerama_pic" >&5 +-echo $ECHO_N "checking for XineramaQueryExtension in -lXinerama_pic... $ECHO_C" >&6; } +-if test "${ac_cv_lib_Xinerama_pic_XineramaQueryExtension+set}" = set; then +- echo $ECHO_N "(cached) $ECHO_C" >&6 ++ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for XineramaQueryExtension in -lXinerama_pic" >&5 ++$as_echo_n "checking for XineramaQueryExtension in -lXinerama_pic... " >&6; } ++if ${ac_cv_lib_Xinerama_pic_XineramaQueryExtension+:} false; then : ++ $as_echo_n "(cached) " >&6 + else + ac_check_lib_save_LIBS=$LIBS + LIBS="-lXinerama_pic $LIBS" +-cat >conftest.$ac_ext <<_ACEOF +-/* confdefs.h. */ +-_ACEOF +-cat confdefs.h >>conftest.$ac_ext +-cat >>conftest.$ac_ext <<_ACEOF ++cat confdefs.h - <<_ACEOF >conftest.$ac_ext + /* end confdefs.h. */ + + /* Override any GCC internal prototype to avoid an error. +@@ -53266,39 +36187,18 @@ return XineramaQueryExtension (); + return 0; + } + _ACEOF +-rm -f conftest.$ac_objext conftest$ac_exeext +-if { (ac_try="$ac_link" +-case "(($ac_try" in +- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; +- *) ac_try_echo=$ac_try;; +-esac +-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 +- (eval "$ac_link") 2>conftest.er1 +- ac_status=$? +- grep -v '^ *+' conftest.er1 >conftest.err +- rm -f conftest.er1 +- cat conftest.err >&5 +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); } && { +- test -z "$ac_c_werror_flag" || +- test ! -s conftest.err +- } && test -s conftest$ac_exeext && +- $as_test_x conftest$ac_exeext; then ++if ac_fn_c_try_link "$LINENO"; then : + ac_cv_lib_Xinerama_pic_XineramaQueryExtension=yes + else +- echo "$as_me: failed program was:" >&5 +-sed 's/^/| /' conftest.$ac_ext >&5 +- +- ac_cv_lib_Xinerama_pic_XineramaQueryExtension=no ++ ac_cv_lib_Xinerama_pic_XineramaQueryExtension=no + fi +- +-rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ +- conftest$ac_exeext conftest.$ac_ext ++rm -f core conftest.err conftest.$ac_objext \ ++ conftest$ac_exeext conftest.$ac_ext + LIBS=$ac_check_lib_save_LIBS + fi +-{ echo "$as_me:$LINENO: result: $ac_cv_lib_Xinerama_pic_XineramaQueryExtension" >&5 +-echo "${ECHO_T}$ac_cv_lib_Xinerama_pic_XineramaQueryExtension" >&6; } +-if test $ac_cv_lib_Xinerama_pic_XineramaQueryExtension = yes; then ++{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_Xinerama_pic_XineramaQueryExtension" >&5 ++$as_echo "$ac_cv_lib_Xinerama_pic_XineramaQueryExtension" >&6; } ++if test "x$ac_cv_lib_Xinerama_pic_XineramaQueryExtension" = xyes; then : + + + for element in xvideo; do +@@ -53322,18 +36222,14 @@ if test $ac_cv_lib_Xinerama_pic_XineramaQueryExtension = yes; then + + else + +- { echo "$as_me:$LINENO: checking for XineramaQueryExtension in -lXinerama" >&5 +-echo $ECHO_N "checking for XineramaQueryExtension in -lXinerama... $ECHO_C" >&6; } +-if test "${ac_cv_lib_Xinerama_XineramaQueryExtension+set}" = set; then +- echo $ECHO_N "(cached) $ECHO_C" >&6 ++ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for XineramaQueryExtension in -lXinerama" >&5 ++$as_echo_n "checking for XineramaQueryExtension in -lXinerama... " >&6; } ++if ${ac_cv_lib_Xinerama_XineramaQueryExtension+:} false; then : ++ $as_echo_n "(cached) " >&6 + else + ac_check_lib_save_LIBS=$LIBS + LIBS="-lXinerama $LIBS" +-cat >conftest.$ac_ext <<_ACEOF +-/* confdefs.h. */ +-_ACEOF +-cat confdefs.h >>conftest.$ac_ext +-cat >>conftest.$ac_ext <<_ACEOF ++cat confdefs.h - <<_ACEOF >conftest.$ac_ext + /* end confdefs.h. */ + + /* Override any GCC internal prototype to avoid an error. +@@ -53351,39 +36247,18 @@ return XineramaQueryExtension (); + return 0; + } + _ACEOF +-rm -f conftest.$ac_objext conftest$ac_exeext +-if { (ac_try="$ac_link" +-case "(($ac_try" in +- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; +- *) ac_try_echo=$ac_try;; +-esac +-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 +- (eval "$ac_link") 2>conftest.er1 +- ac_status=$? +- grep -v '^ *+' conftest.er1 >conftest.err +- rm -f conftest.er1 +- cat conftest.err >&5 +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); } && { +- test -z "$ac_c_werror_flag" || +- test ! -s conftest.err +- } && test -s conftest$ac_exeext && +- $as_test_x conftest$ac_exeext; then ++if ac_fn_c_try_link "$LINENO"; then : + ac_cv_lib_Xinerama_XineramaQueryExtension=yes + else +- echo "$as_me: failed program was:" >&5 +-sed 's/^/| /' conftest.$ac_ext >&5 +- +- ac_cv_lib_Xinerama_XineramaQueryExtension=no ++ ac_cv_lib_Xinerama_XineramaQueryExtension=no + fi +- +-rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ +- conftest$ac_exeext conftest.$ac_ext ++rm -f core conftest.err conftest.$ac_objext \ ++ conftest$ac_exeext conftest.$ac_ext + LIBS=$ac_check_lib_save_LIBS + fi +-{ echo "$as_me:$LINENO: result: $ac_cv_lib_Xinerama_XineramaQueryExtension" >&5 +-echo "${ECHO_T}$ac_cv_lib_Xinerama_XineramaQueryExtension" >&6; } +-if test $ac_cv_lib_Xinerama_XineramaQueryExtension = yes; then ++{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_Xinerama_XineramaQueryExtension" >&5 ++$as_echo "$ac_cv_lib_Xinerama_XineramaQueryExtension" >&6; } ++if test "x$ac_cv_lib_Xinerama_XineramaQueryExtension" = xyes; then : + + + for element in xvideo; do +@@ -53417,9 +36292,7 @@ done + + if test "${ac_cv_have_xinerama}" = "yes"; then + +-cat >>confdefs.h <<\_ACEOF +-#define HAVE_XINERAMA 1 +-_ACEOF ++$as_echo "#define HAVE_XINERAMA 1" >>confdefs.h + + fi + CFLAGS="${CFLAGS_save}" +@@ -53428,75 +36301,26 @@ _ACEOF + ac_cv_have_xf86vidmode="no" + CPPFLAGS="${CPPFLAGS_save} ${X_CFLAGS}" + CFLAGS="${CFLAGS_save} ${X_LIBS} ${X_PRE_LIBS} -lX11 -lXext" +- +-for ac_header in X11/extensions/xf86vmode.h +-do +-as_ac_Header=`echo "ac_cv_header_$ac_header" | $as_tr_sh` +-{ echo "$as_me:$LINENO: checking for $ac_header" >&5 +-echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6; } +-if { as_var=$as_ac_Header; eval "test \"\${$as_var+set}\" = set"; }; then +- echo $ECHO_N "(cached) $ECHO_C" >&6 +-else +- cat >conftest.$ac_ext <<_ACEOF +-/* confdefs.h. */ +-_ACEOF +-cat confdefs.h >>conftest.$ac_ext +-cat >>conftest.$ac_ext <<_ACEOF +-/* end confdefs.h. */ +-#ifdef HAVE_X11_XLIB_H ++ for ac_header in X11/extensions/xf86vmode.h ++do : ++ ac_fn_c_check_header_compile "$LINENO" "X11/extensions/xf86vmode.h" "ac_cv_header_X11_extensions_xf86vmode_h" "#ifdef HAVE_X11_XLIB_H + # include + #endif + +- +-#include <$ac_header> +-_ACEOF +-rm -f conftest.$ac_objext +-if { (ac_try="$ac_compile" +-case "(($ac_try" in +- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; +- *) ac_try_echo=$ac_try;; +-esac +-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 +- (eval "$ac_compile") 2>conftest.er1 +- ac_status=$? +- grep -v '^ *+' conftest.er1 >conftest.err +- rm -f conftest.er1 +- cat conftest.err >&5 +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); } && { +- test -z "$ac_c_werror_flag" || +- test ! -s conftest.err +- } && test -s conftest.$ac_objext; then +- eval "$as_ac_Header=yes" +-else +- echo "$as_me: failed program was:" >&5 +-sed 's/^/| /' conftest.$ac_ext >&5 +- +- eval "$as_ac_Header=no" +-fi +- +-rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext +-fi +-ac_res=`eval echo '${'$as_ac_Header'}'` +- { echo "$as_me:$LINENO: result: $ac_res" >&5 +-echo "${ECHO_T}$ac_res" >&6; } +-if test `eval echo '${'$as_ac_Header'}'` = yes; then ++" ++if test "x$ac_cv_header_X11_extensions_xf86vmode_h" = xyes; then : + cat >>confdefs.h <<_ACEOF +-#define `echo "HAVE_$ac_header" | $as_tr_cpp` 1 ++#define HAVE_X11_EXTENSIONS_XF86VMODE_H 1 + _ACEOF + +- { echo "$as_me:$LINENO: checking for XF86VidModeGetViewPort in -lXxf86vm_pic" >&5 +-echo $ECHO_N "checking for XF86VidModeGetViewPort in -lXxf86vm_pic... $ECHO_C" >&6; } +-if test "${ac_cv_lib_Xxf86vm_pic_XF86VidModeGetViewPort+set}" = set; then +- echo $ECHO_N "(cached) $ECHO_C" >&6 ++ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for XF86VidModeGetViewPort in -lXxf86vm_pic" >&5 ++$as_echo_n "checking for XF86VidModeGetViewPort in -lXxf86vm_pic... " >&6; } ++if ${ac_cv_lib_Xxf86vm_pic_XF86VidModeGetViewPort+:} false; then : ++ $as_echo_n "(cached) " >&6 + else + ac_check_lib_save_LIBS=$LIBS + LIBS="-lXxf86vm_pic $LIBS" +-cat >conftest.$ac_ext <<_ACEOF +-/* confdefs.h. */ +-_ACEOF +-cat confdefs.h >>conftest.$ac_ext +-cat >>conftest.$ac_ext <<_ACEOF ++cat confdefs.h - <<_ACEOF >conftest.$ac_ext + /* end confdefs.h. */ + + /* Override any GCC internal prototype to avoid an error. +@@ -53514,39 +36338,18 @@ return XF86VidModeGetViewPort (); + return 0; + } + _ACEOF +-rm -f conftest.$ac_objext conftest$ac_exeext +-if { (ac_try="$ac_link" +-case "(($ac_try" in +- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; +- *) ac_try_echo=$ac_try;; +-esac +-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 +- (eval "$ac_link") 2>conftest.er1 +- ac_status=$? +- grep -v '^ *+' conftest.er1 >conftest.err +- rm -f conftest.er1 +- cat conftest.err >&5 +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); } && { +- test -z "$ac_c_werror_flag" || +- test ! -s conftest.err +- } && test -s conftest$ac_exeext && +- $as_test_x conftest$ac_exeext; then ++if ac_fn_c_try_link "$LINENO"; then : + ac_cv_lib_Xxf86vm_pic_XF86VidModeGetViewPort=yes + else +- echo "$as_me: failed program was:" >&5 +-sed 's/^/| /' conftest.$ac_ext >&5 +- +- ac_cv_lib_Xxf86vm_pic_XF86VidModeGetViewPort=no ++ ac_cv_lib_Xxf86vm_pic_XF86VidModeGetViewPort=no + fi +- +-rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ +- conftest$ac_exeext conftest.$ac_ext ++rm -f core conftest.err conftest.$ac_objext \ ++ conftest$ac_exeext conftest.$ac_ext + LIBS=$ac_check_lib_save_LIBS + fi +-{ echo "$as_me:$LINENO: result: $ac_cv_lib_Xxf86vm_pic_XF86VidModeGetViewPort" >&5 +-echo "${ECHO_T}$ac_cv_lib_Xxf86vm_pic_XF86VidModeGetViewPort" >&6; } +-if test $ac_cv_lib_Xxf86vm_pic_XF86VidModeGetViewPort = yes; then ++{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_Xxf86vm_pic_XF86VidModeGetViewPort" >&5 ++$as_echo "$ac_cv_lib_Xxf86vm_pic_XF86VidModeGetViewPort" >&6; } ++if test "x$ac_cv_lib_Xxf86vm_pic_XF86VidModeGetViewPort" = xyes; then : + + + for element in xvideo; do +@@ -53570,18 +36373,14 @@ if test $ac_cv_lib_Xxf86vm_pic_XF86VidModeGetViewPort = yes; then + + else + +- { echo "$as_me:$LINENO: checking for XF86VidModeGetViewPort in -lXxf86vm" >&5 +-echo $ECHO_N "checking for XF86VidModeGetViewPort in -lXxf86vm... $ECHO_C" >&6; } +-if test "${ac_cv_lib_Xxf86vm_XF86VidModeGetViewPort+set}" = set; then +- echo $ECHO_N "(cached) $ECHO_C" >&6 ++ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for XF86VidModeGetViewPort in -lXxf86vm" >&5 ++$as_echo_n "checking for XF86VidModeGetViewPort in -lXxf86vm... " >&6; } ++if ${ac_cv_lib_Xxf86vm_XF86VidModeGetViewPort+:} false; then : ++ $as_echo_n "(cached) " >&6 + else + ac_check_lib_save_LIBS=$LIBS + LIBS="-lXxf86vm $LIBS" +-cat >conftest.$ac_ext <<_ACEOF +-/* confdefs.h. */ +-_ACEOF +-cat confdefs.h >>conftest.$ac_ext +-cat >>conftest.$ac_ext <<_ACEOF ++cat confdefs.h - <<_ACEOF >conftest.$ac_ext + /* end confdefs.h. */ + + /* Override any GCC internal prototype to avoid an error. +@@ -53599,39 +36398,18 @@ return XF86VidModeGetViewPort (); + return 0; + } + _ACEOF +-rm -f conftest.$ac_objext conftest$ac_exeext +-if { (ac_try="$ac_link" +-case "(($ac_try" in +- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; +- *) ac_try_echo=$ac_try;; +-esac +-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 +- (eval "$ac_link") 2>conftest.er1 +- ac_status=$? +- grep -v '^ *+' conftest.er1 >conftest.err +- rm -f conftest.er1 +- cat conftest.err >&5 +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); } && { +- test -z "$ac_c_werror_flag" || +- test ! -s conftest.err +- } && test -s conftest$ac_exeext && +- $as_test_x conftest$ac_exeext; then ++if ac_fn_c_try_link "$LINENO"; then : + ac_cv_lib_Xxf86vm_XF86VidModeGetViewPort=yes + else +- echo "$as_me: failed program was:" >&5 +-sed 's/^/| /' conftest.$ac_ext >&5 +- +- ac_cv_lib_Xxf86vm_XF86VidModeGetViewPort=no ++ ac_cv_lib_Xxf86vm_XF86VidModeGetViewPort=no + fi +- +-rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ +- conftest$ac_exeext conftest.$ac_ext ++rm -f core conftest.err conftest.$ac_objext \ ++ conftest$ac_exeext conftest.$ac_ext + LIBS=$ac_check_lib_save_LIBS + fi +-{ echo "$as_me:$LINENO: result: $ac_cv_lib_Xxf86vm_XF86VidModeGetViewPort" >&5 +-echo "${ECHO_T}$ac_cv_lib_Xxf86vm_XF86VidModeGetViewPort" >&6; } +-if test $ac_cv_lib_Xxf86vm_XF86VidModeGetViewPort = yes; then ++{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_Xxf86vm_XF86VidModeGetViewPort" >&5 ++$as_echo "$ac_cv_lib_Xxf86vm_XF86VidModeGetViewPort" >&6; } ++if test "x$ac_cv_lib_Xxf86vm_XF86VidModeGetViewPort" = xyes; then : + + + for element in xvideo; do +@@ -53665,162 +36443,31 @@ fi + + done + +- if test "${ac_cv_have_xf86vidmode}" = "yes"; then ++ if test "${ac_cv_have_xf86vidmode}" = "yes"; then : + +-cat >>confdefs.h <<\_ACEOF +-#define HAVE_XF86VIDMODE 1 +-_ACEOF ++$as_echo "#define HAVE_XF86VIDMODE 1" >>confdefs.h + + + fi +- + CFLAGS="${CFLAGS_save}" + CPPFLAGS="${CPPFLAGS_save}" + + fi + + # Check whether --enable-opengl was given. +-if test "${enable_opengl+set}" = set; then ++if test "${enable_opengl+set}" = set; then : + enableval=$enable_opengl; + fi + + if test "${enable_opengl}" != "no" && + test "${SYS}" != "beos" -a "${SYS}" != "mingwce"; then + if test "${SYS}" != "darwin"; then +- +-for ac_header in GL/gl.h +-do +-as_ac_Header=`echo "ac_cv_header_$ac_header" | $as_tr_sh` +-if { as_var=$as_ac_Header; eval "test \"\${$as_var+set}\" = set"; }; then +- { echo "$as_me:$LINENO: checking for $ac_header" >&5 +-echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6; } +-if { as_var=$as_ac_Header; eval "test \"\${$as_var+set}\" = set"; }; then +- echo $ECHO_N "(cached) $ECHO_C" >&6 +-fi +-ac_res=`eval echo '${'$as_ac_Header'}'` +- { echo "$as_me:$LINENO: result: $ac_res" >&5 +-echo "${ECHO_T}$ac_res" >&6; } +-else +- # Is the header compilable? +-{ echo "$as_me:$LINENO: checking $ac_header usability" >&5 +-echo $ECHO_N "checking $ac_header usability... $ECHO_C" >&6; } +-cat >conftest.$ac_ext <<_ACEOF +-/* confdefs.h. */ +-_ACEOF +-cat confdefs.h >>conftest.$ac_ext +-cat >>conftest.$ac_ext <<_ACEOF +-/* end confdefs.h. */ +-$ac_includes_default +-#include <$ac_header> +-_ACEOF +-rm -f conftest.$ac_objext +-if { (ac_try="$ac_compile" +-case "(($ac_try" in +- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; +- *) ac_try_echo=$ac_try;; +-esac +-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 +- (eval "$ac_compile") 2>conftest.er1 +- ac_status=$? +- grep -v '^ *+' conftest.er1 >conftest.err +- rm -f conftest.er1 +- cat conftest.err >&5 +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); } && { +- test -z "$ac_c_werror_flag" || +- test ! -s conftest.err +- } && test -s conftest.$ac_objext; then +- ac_header_compiler=yes +-else +- echo "$as_me: failed program was:" >&5 +-sed 's/^/| /' conftest.$ac_ext >&5 +- +- ac_header_compiler=no +-fi +- +-rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext +-{ echo "$as_me:$LINENO: result: $ac_header_compiler" >&5 +-echo "${ECHO_T}$ac_header_compiler" >&6; } +- +-# Is the header present? +-{ echo "$as_me:$LINENO: checking $ac_header presence" >&5 +-echo $ECHO_N "checking $ac_header presence... $ECHO_C" >&6; } +-cat >conftest.$ac_ext <<_ACEOF +-/* confdefs.h. */ +-_ACEOF +-cat confdefs.h >>conftest.$ac_ext +-cat >>conftest.$ac_ext <<_ACEOF +-/* end confdefs.h. */ +-#include <$ac_header> +-_ACEOF +-if { (ac_try="$ac_cpp conftest.$ac_ext" +-case "(($ac_try" in +- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; +- *) ac_try_echo=$ac_try;; +-esac +-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 +- (eval "$ac_cpp conftest.$ac_ext") 2>conftest.er1 +- ac_status=$? +- grep -v '^ *+' conftest.er1 >conftest.err +- rm -f conftest.er1 +- cat conftest.err >&5 +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); } >/dev/null && { +- test -z "$ac_c_preproc_warn_flag$ac_c_werror_flag" || +- test ! -s conftest.err +- }; then +- ac_header_preproc=yes +-else +- echo "$as_me: failed program was:" >&5 +-sed 's/^/| /' conftest.$ac_ext >&5 +- +- ac_header_preproc=no +-fi +- +-rm -f conftest.err conftest.$ac_ext +-{ echo "$as_me:$LINENO: result: $ac_header_preproc" >&5 +-echo "${ECHO_T}$ac_header_preproc" >&6; } +- +-# So? What about this header? +-case $ac_header_compiler:$ac_header_preproc:$ac_c_preproc_warn_flag in +- yes:no: ) +- { echo "$as_me:$LINENO: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&5 +-echo "$as_me: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&2;} +- { echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the compiler's result" >&5 +-echo "$as_me: WARNING: $ac_header: proceeding with the compiler's result" >&2;} +- ac_header_preproc=yes +- ;; +- no:yes:* ) +- { echo "$as_me:$LINENO: WARNING: $ac_header: present but cannot be compiled" >&5 +-echo "$as_me: WARNING: $ac_header: present but cannot be compiled" >&2;} +- { echo "$as_me:$LINENO: WARNING: $ac_header: check for missing prerequisite headers?" >&5 +-echo "$as_me: WARNING: $ac_header: check for missing prerequisite headers?" >&2;} +- { echo "$as_me:$LINENO: WARNING: $ac_header: see the Autoconf documentation" >&5 +-echo "$as_me: WARNING: $ac_header: see the Autoconf documentation" >&2;} +- { echo "$as_me:$LINENO: WARNING: $ac_header: section \"Present But Cannot Be Compiled\"" >&5 +-echo "$as_me: WARNING: $ac_header: section \"Present But Cannot Be Compiled\"" >&2;} +- { echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the preprocessor's result" >&5 +-echo "$as_me: WARNING: $ac_header: proceeding with the preprocessor's result" >&2;} +- { echo "$as_me:$LINENO: WARNING: $ac_header: in the future, the compiler will take precedence" >&5 +-echo "$as_me: WARNING: $ac_header: in the future, the compiler will take precedence" >&2;} +- +- ;; +-esac +-{ echo "$as_me:$LINENO: checking for $ac_header" >&5 +-echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6; } +-if { as_var=$as_ac_Header; eval "test \"\${$as_var+set}\" = set"; }; then +- echo $ECHO_N "(cached) $ECHO_C" >&6 +-else +- eval "$as_ac_Header=\$ac_header_preproc" +-fi +-ac_res=`eval echo '${'$as_ac_Header'}'` +- { echo "$as_me:$LINENO: result: $ac_res" >&5 +-echo "${ECHO_T}$ac_res" >&6; } +- +-fi +-if test `eval echo '${'$as_ac_Header'}'` = yes; then ++ for ac_header in GL/gl.h ++do : ++ ac_fn_c_check_header_mongrel "$LINENO" "GL/gl.h" "ac_cv_header_GL_gl_h" "$ac_includes_default" ++if test "x$ac_cv_header_GL_gl_h" = xyes; then : + cat >>confdefs.h <<_ACEOF +-#define `echo "HAVE_$ac_header" | $as_tr_cpp` 1 ++#define HAVE_GL_GL_H 1 + _ACEOF + + +@@ -53860,12 +36507,12 @@ done + fi + + # Check whether --enable-sdl was given. +-if test "${enable_sdl+set}" = set; then ++if test "${enable_sdl+set}" = set; then : + enableval=$enable_sdl; + fi + + # Check whether --enable-sdl-image was given. +-if test "${enable_sdl_image+set}" = set; then ++if test "${enable_sdl_image+set}" = set; then : + enableval=$enable_sdl_image; + fi + +@@ -53874,7 +36521,7 @@ then + SDL_PATH="${PATH}" + + # Check whether --with-sdl-config-path was given. +-if test "${with_sdl_config_path+set}" = set; then ++if test "${with_sdl_config_path+set}" = set; then : + withval=$with_sdl_config_path; if test "${with_sdl_config_path}" != "no" + then + SDL_PATH="${with_sdl_config_path}:${PATH}" +@@ -53883,10 +36530,10 @@ fi + + # Extract the first word of "sdl12-config", so it can be a program name with args. + set dummy sdl12-config; ac_word=$2 +-{ echo "$as_me:$LINENO: checking for $ac_word" >&5 +-echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6; } +-if test "${ac_cv_path_SDL12_CONFIG+set}" = set; then +- echo $ECHO_N "(cached) $ECHO_C" >&6 ++{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 ++$as_echo_n "checking for $ac_word... " >&6; } ++if ${ac_cv_path_SDL12_CONFIG+:} false; then : ++ $as_echo_n "(cached) " >&6 + else + case $SDL12_CONFIG in + [\\/]* | ?:[\\/]*) +@@ -53898,14 +36545,14 @@ for as_dir in ${SDL_PATH} + do + IFS=$as_save_IFS + test -z "$as_dir" && as_dir=. +- for ac_exec_ext in '' $ac_executable_extensions; do +- if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then ++ for ac_exec_ext in '' $ac_executable_extensions; do ++ if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then + ac_cv_path_SDL12_CONFIG="$as_dir/$ac_word$ac_exec_ext" +- echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 ++ $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 + break 2 + fi + done +-done ++ done + IFS=$as_save_IFS + + test -z "$ac_cv_path_SDL12_CONFIG" && ac_cv_path_SDL12_CONFIG="no" +@@ -53914,11 +36561,11 @@ esac + fi + SDL12_CONFIG=$ac_cv_path_SDL12_CONFIG + if test -n "$SDL12_CONFIG"; then +- { echo "$as_me:$LINENO: result: $SDL12_CONFIG" >&5 +-echo "${ECHO_T}$SDL12_CONFIG" >&6; } ++ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $SDL12_CONFIG" >&5 ++$as_echo "$SDL12_CONFIG" >&6; } + else +- { echo "$as_me:$LINENO: result: no" >&5 +-echo "${ECHO_T}no" >&6; } ++ { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 ++$as_echo "no" >&6; } + fi + + +@@ -53929,10 +36576,10 @@ fi + then + # Extract the first word of "sdl11-config", so it can be a program name with args. + set dummy sdl11-config; ac_word=$2 +-{ echo "$as_me:$LINENO: checking for $ac_word" >&5 +-echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6; } +-if test "${ac_cv_path_SDL11_CONFIG+set}" = set; then +- echo $ECHO_N "(cached) $ECHO_C" >&6 ++{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 ++$as_echo_n "checking for $ac_word... " >&6; } ++if ${ac_cv_path_SDL11_CONFIG+:} false; then : ++ $as_echo_n "(cached) " >&6 + else + case $SDL11_CONFIG in + [\\/]* | ?:[\\/]*) +@@ -53944,14 +36591,14 @@ for as_dir in ${SDL_PATH} + do + IFS=$as_save_IFS + test -z "$as_dir" && as_dir=. +- for ac_exec_ext in '' $ac_executable_extensions; do +- if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then ++ for ac_exec_ext in '' $ac_executable_extensions; do ++ if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then + ac_cv_path_SDL11_CONFIG="$as_dir/$ac_word$ac_exec_ext" +- echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 ++ $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 + break 2 + fi + done +-done ++ done + IFS=$as_save_IFS + + test -z "$ac_cv_path_SDL11_CONFIG" && ac_cv_path_SDL11_CONFIG="no" +@@ -53960,11 +36607,11 @@ esac + fi + SDL11_CONFIG=$ac_cv_path_SDL11_CONFIG + if test -n "$SDL11_CONFIG"; then +- { echo "$as_me:$LINENO: result: $SDL11_CONFIG" >&5 +-echo "${ECHO_T}$SDL11_CONFIG" >&6; } ++ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $SDL11_CONFIG" >&5 ++$as_echo "$SDL11_CONFIG" >&6; } + else +- { echo "$as_me:$LINENO: result: no" >&5 +-echo "${ECHO_T}no" >&6; } ++ { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 ++$as_echo "no" >&6; } + fi + + +@@ -53976,10 +36623,10 @@ fi + then + # Extract the first word of "sdl-config", so it can be a program name with args. + set dummy sdl-config; ac_word=$2 +-{ echo "$as_me:$LINENO: checking for $ac_word" >&5 +-echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6; } +-if test "${ac_cv_path_SDL_CONFIG+set}" = set; then +- echo $ECHO_N "(cached) $ECHO_C" >&6 ++{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 ++$as_echo_n "checking for $ac_word... " >&6; } ++if ${ac_cv_path_SDL_CONFIG+:} false; then : ++ $as_echo_n "(cached) " >&6 + else + case $SDL_CONFIG in + [\\/]* | ?:[\\/]*) +@@ -53989,502 +36636,114 @@ else + as_save_IFS=$IFS; IFS=$PATH_SEPARATOR + for as_dir in ${SDL_PATH} + do +- IFS=$as_save_IFS +- test -z "$as_dir" && as_dir=. +- for ac_exec_ext in '' $ac_executable_extensions; do +- if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then +- ac_cv_path_SDL_CONFIG="$as_dir/$ac_word$ac_exec_ext" +- echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 +- break 2 +- fi +-done +-done +-IFS=$as_save_IFS +- +- test -z "$ac_cv_path_SDL_CONFIG" && ac_cv_path_SDL_CONFIG="no" +- ;; +-esac +-fi +-SDL_CONFIG=$ac_cv_path_SDL_CONFIG +-if test -n "$SDL_CONFIG"; then +- { echo "$as_me:$LINENO: result: $SDL_CONFIG" >&5 +-echo "${ECHO_T}$SDL_CONFIG" >&6; } +-else +- { echo "$as_me:$LINENO: result: no" >&5 +-echo "${ECHO_T}no" >&6; } +-fi +- +- +- SDL_HEADER="SDL/SDL.h" +- SDL_IMAGE="SDL/SDL_image.h" +- fi +- # check for cross-compiling +- SDL_PREFIX= +- +-# Check whether --with-sdl-prefix was given. +-if test "${with_sdl_prefix+set}" = set; then +- withval=$with_sdl_prefix; +-fi +- +- if test "${with_sdl_prefix}" != "no" -a -n "${with_sdl_prefix}" +- then +- SDL_PREFIX="--prefix=${with_sdl_prefix}" +- fi +- if test "${SDL_CONFIG}" != "no" +- then +- # SDL on Darwin is heavily patched and can only run SDL_image +- if test "${SYS}" != "darwin" -a "${SYS}" != "mingw32"; then +- +- PLUGINS="${PLUGINS} vout_sdl aout_sdl" +- +- fi +- +- for element in vout_sdl aout_sdl sdl_image; do +- eval "CFLAGS_${element}="'"$'"{CFLAGS_${element}} `${SDL_CONFIG} ${SDL_PREFIX} --cflags | sed 's,SDL,,'`"'"' +- am_modules_with_cflags="${am_modules_with_cflags} ${element}" +- done +- +- +- for element in vout_sdl aout_sdl sdl_image; do +- eval "LDFLAGS_${element}="'"'"`${SDL_CONFIG} ${SDL_PREFIX} --libs | sed 's,-rdynamic,,'` "'$'"{LDFLAGS_${element}} "'"' +- am_modules_with_ldflags="${am_modules_with_ldflags} ${element}" +- done +- +- CPPFLAGS="${CPPFLAGS_save} ${CFLAGS_vout_sdl}" +- +-for ac_header in ${SDL_HEADER} +-do +-as_ac_Header=`echo "ac_cv_header_$ac_header" | $as_tr_sh` +-if { as_var=$as_ac_Header; eval "test \"\${$as_var+set}\" = set"; }; then +- { echo "$as_me:$LINENO: checking for $ac_header" >&5 +-echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6; } +-if { as_var=$as_ac_Header; eval "test \"\${$as_var+set}\" = set"; }; then +- echo $ECHO_N "(cached) $ECHO_C" >&6 +-fi +-ac_res=`eval echo '${'$as_ac_Header'}'` +- { echo "$as_me:$LINENO: result: $ac_res" >&5 +-echo "${ECHO_T}$ac_res" >&6; } +-else +- # Is the header compilable? +-{ echo "$as_me:$LINENO: checking $ac_header usability" >&5 +-echo $ECHO_N "checking $ac_header usability... $ECHO_C" >&6; } +-cat >conftest.$ac_ext <<_ACEOF +-/* confdefs.h. */ +-_ACEOF +-cat confdefs.h >>conftest.$ac_ext +-cat >>conftest.$ac_ext <<_ACEOF +-/* end confdefs.h. */ +-$ac_includes_default +-#include <$ac_header> +-_ACEOF +-rm -f conftest.$ac_objext +-if { (ac_try="$ac_compile" +-case "(($ac_try" in +- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; +- *) ac_try_echo=$ac_try;; +-esac +-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 +- (eval "$ac_compile") 2>conftest.er1 +- ac_status=$? +- grep -v '^ *+' conftest.er1 >conftest.err +- rm -f conftest.er1 +- cat conftest.err >&5 +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); } && { +- test -z "$ac_c_werror_flag" || +- test ! -s conftest.err +- } && test -s conftest.$ac_objext; then +- ac_header_compiler=yes +-else +- echo "$as_me: failed program was:" >&5 +-sed 's/^/| /' conftest.$ac_ext >&5 +- +- ac_header_compiler=no +-fi +- +-rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext +-{ echo "$as_me:$LINENO: result: $ac_header_compiler" >&5 +-echo "${ECHO_T}$ac_header_compiler" >&6; } +- +-# Is the header present? +-{ echo "$as_me:$LINENO: checking $ac_header presence" >&5 +-echo $ECHO_N "checking $ac_header presence... $ECHO_C" >&6; } +-cat >conftest.$ac_ext <<_ACEOF +-/* confdefs.h. */ +-_ACEOF +-cat confdefs.h >>conftest.$ac_ext +-cat >>conftest.$ac_ext <<_ACEOF +-/* end confdefs.h. */ +-#include <$ac_header> +-_ACEOF +-if { (ac_try="$ac_cpp conftest.$ac_ext" +-case "(($ac_try" in +- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; +- *) ac_try_echo=$ac_try;; +-esac +-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 +- (eval "$ac_cpp conftest.$ac_ext") 2>conftest.er1 +- ac_status=$? +- grep -v '^ *+' conftest.er1 >conftest.err +- rm -f conftest.er1 +- cat conftest.err >&5 +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); } >/dev/null && { +- test -z "$ac_c_preproc_warn_flag$ac_c_werror_flag" || +- test ! -s conftest.err +- }; then +- ac_header_preproc=yes +-else +- echo "$as_me: failed program was:" >&5 +-sed 's/^/| /' conftest.$ac_ext >&5 +- +- ac_header_preproc=no +-fi +- +-rm -f conftest.err conftest.$ac_ext +-{ echo "$as_me:$LINENO: result: $ac_header_preproc" >&5 +-echo "${ECHO_T}$ac_header_preproc" >&6; } +- +-# So? What about this header? +-case $ac_header_compiler:$ac_header_preproc:$ac_c_preproc_warn_flag in +- yes:no: ) +- { echo "$as_me:$LINENO: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&5 +-echo "$as_me: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&2;} +- { echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the compiler's result" >&5 +-echo "$as_me: WARNING: $ac_header: proceeding with the compiler's result" >&2;} +- ac_header_preproc=yes +- ;; +- no:yes:* ) +- { echo "$as_me:$LINENO: WARNING: $ac_header: present but cannot be compiled" >&5 +-echo "$as_me: WARNING: $ac_header: present but cannot be compiled" >&2;} +- { echo "$as_me:$LINENO: WARNING: $ac_header: check for missing prerequisite headers?" >&5 +-echo "$as_me: WARNING: $ac_header: check for missing prerequisite headers?" >&2;} +- { echo "$as_me:$LINENO: WARNING: $ac_header: see the Autoconf documentation" >&5 +-echo "$as_me: WARNING: $ac_header: see the Autoconf documentation" >&2;} +- { echo "$as_me:$LINENO: WARNING: $ac_header: section \"Present But Cannot Be Compiled\"" >&5 +-echo "$as_me: WARNING: $ac_header: section \"Present But Cannot Be Compiled\"" >&2;} +- { echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the preprocessor's result" >&5 +-echo "$as_me: WARNING: $ac_header: proceeding with the preprocessor's result" >&2;} +- { echo "$as_me:$LINENO: WARNING: $ac_header: in the future, the compiler will take precedence" >&5 +-echo "$as_me: WARNING: $ac_header: in the future, the compiler will take precedence" >&2;} +- +- ;; +-esac +-{ echo "$as_me:$LINENO: checking for $ac_header" >&5 +-echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6; } +-if { as_var=$as_ac_Header; eval "test \"\${$as_var+set}\" = set"; }; then +- echo $ECHO_N "(cached) $ECHO_C" >&6 +-else +- eval "$as_ac_Header=\$ac_header_preproc" +-fi +-ac_res=`eval echo '${'$as_ac_Header'}'` +- { echo "$as_me:$LINENO: result: $ac_res" >&5 +-echo "${ECHO_T}$ac_res" >&6; } +- +-fi +-if test `eval echo '${'$as_ac_Header'}'` = yes; then +- cat >>confdefs.h <<_ACEOF +-#define `echo "HAVE_$ac_header" | $as_tr_cpp` 1 +-_ACEOF +- +-cat >>confdefs.h <<_ACEOF +-#define SDL_INCLUDE_FILE <${SDL_HEADER}> +-_ACEOF +- +-else +- +-for ac_header in SDL.h +-do +-as_ac_Header=`echo "ac_cv_header_$ac_header" | $as_tr_sh` +-if { as_var=$as_ac_Header; eval "test \"\${$as_var+set}\" = set"; }; then +- { echo "$as_me:$LINENO: checking for $ac_header" >&5 +-echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6; } +-if { as_var=$as_ac_Header; eval "test \"\${$as_var+set}\" = set"; }; then +- echo $ECHO_N "(cached) $ECHO_C" >&6 +-fi +-ac_res=`eval echo '${'$as_ac_Header'}'` +- { echo "$as_me:$LINENO: result: $ac_res" >&5 +-echo "${ECHO_T}$ac_res" >&6; } +-else +- # Is the header compilable? +-{ echo "$as_me:$LINENO: checking $ac_header usability" >&5 +-echo $ECHO_N "checking $ac_header usability... $ECHO_C" >&6; } +-cat >conftest.$ac_ext <<_ACEOF +-/* confdefs.h. */ +-_ACEOF +-cat confdefs.h >>conftest.$ac_ext +-cat >>conftest.$ac_ext <<_ACEOF +-/* end confdefs.h. */ +-$ac_includes_default +-#include <$ac_header> +-_ACEOF +-rm -f conftest.$ac_objext +-if { (ac_try="$ac_compile" +-case "(($ac_try" in +- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; +- *) ac_try_echo=$ac_try;; +-esac +-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 +- (eval "$ac_compile") 2>conftest.er1 +- ac_status=$? +- grep -v '^ *+' conftest.er1 >conftest.err +- rm -f conftest.er1 +- cat conftest.err >&5 +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); } && { +- test -z "$ac_c_werror_flag" || +- test ! -s conftest.err +- } && test -s conftest.$ac_objext; then +- ac_header_compiler=yes +-else +- echo "$as_me: failed program was:" >&5 +-sed 's/^/| /' conftest.$ac_ext >&5 +- +- ac_header_compiler=no +-fi +- +-rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext +-{ echo "$as_me:$LINENO: result: $ac_header_compiler" >&5 +-echo "${ECHO_T}$ac_header_compiler" >&6; } +- +-# Is the header present? +-{ echo "$as_me:$LINENO: checking $ac_header presence" >&5 +-echo $ECHO_N "checking $ac_header presence... $ECHO_C" >&6; } +-cat >conftest.$ac_ext <<_ACEOF +-/* confdefs.h. */ +-_ACEOF +-cat confdefs.h >>conftest.$ac_ext +-cat >>conftest.$ac_ext <<_ACEOF +-/* end confdefs.h. */ +-#include <$ac_header> +-_ACEOF +-if { (ac_try="$ac_cpp conftest.$ac_ext" +-case "(($ac_try" in +- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; +- *) ac_try_echo=$ac_try;; +-esac +-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 +- (eval "$ac_cpp conftest.$ac_ext") 2>conftest.er1 +- ac_status=$? +- grep -v '^ *+' conftest.er1 >conftest.err +- rm -f conftest.er1 +- cat conftest.err >&5 +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); } >/dev/null && { +- test -z "$ac_c_preproc_warn_flag$ac_c_werror_flag" || +- test ! -s conftest.err +- }; then +- ac_header_preproc=yes +-else +- echo "$as_me: failed program was:" >&5 +-sed 's/^/| /' conftest.$ac_ext >&5 +- +- ac_header_preproc=no +-fi +- +-rm -f conftest.err conftest.$ac_ext +-{ echo "$as_me:$LINENO: result: $ac_header_preproc" >&5 +-echo "${ECHO_T}$ac_header_preproc" >&6; } +- +-# So? What about this header? +-case $ac_header_compiler:$ac_header_preproc:$ac_c_preproc_warn_flag in +- yes:no: ) +- { echo "$as_me:$LINENO: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&5 +-echo "$as_me: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&2;} +- { echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the compiler's result" >&5 +-echo "$as_me: WARNING: $ac_header: proceeding with the compiler's result" >&2;} +- ac_header_preproc=yes +- ;; +- no:yes:* ) +- { echo "$as_me:$LINENO: WARNING: $ac_header: present but cannot be compiled" >&5 +-echo "$as_me: WARNING: $ac_header: present but cannot be compiled" >&2;} +- { echo "$as_me:$LINENO: WARNING: $ac_header: check for missing prerequisite headers?" >&5 +-echo "$as_me: WARNING: $ac_header: check for missing prerequisite headers?" >&2;} +- { echo "$as_me:$LINENO: WARNING: $ac_header: see the Autoconf documentation" >&5 +-echo "$as_me: WARNING: $ac_header: see the Autoconf documentation" >&2;} +- { echo "$as_me:$LINENO: WARNING: $ac_header: section \"Present But Cannot Be Compiled\"" >&5 +-echo "$as_me: WARNING: $ac_header: section \"Present But Cannot Be Compiled\"" >&2;} +- { echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the preprocessor's result" >&5 +-echo "$as_me: WARNING: $ac_header: proceeding with the preprocessor's result" >&2;} +- { echo "$as_me:$LINENO: WARNING: $ac_header: in the future, the compiler will take precedence" >&5 +-echo "$as_me: WARNING: $ac_header: in the future, the compiler will take precedence" >&2;} ++ IFS=$as_save_IFS ++ test -z "$as_dir" && as_dir=. ++ for ac_exec_ext in '' $ac_executable_extensions; do ++ if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then ++ ac_cv_path_SDL_CONFIG="$as_dir/$ac_word$ac_exec_ext" ++ $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 ++ break 2 ++ fi ++done ++ done ++IFS=$as_save_IFS + +- ;; ++ test -z "$ac_cv_path_SDL_CONFIG" && ac_cv_path_SDL_CONFIG="no" ++ ;; + esac +-{ echo "$as_me:$LINENO: checking for $ac_header" >&5 +-echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6; } +-if { as_var=$as_ac_Header; eval "test \"\${$as_var+set}\" = set"; }; then +- echo $ECHO_N "(cached) $ECHO_C" >&6 +-else +- eval "$as_ac_Header=\$ac_header_preproc" + fi +-ac_res=`eval echo '${'$as_ac_Header'}'` +- { echo "$as_me:$LINENO: result: $ac_res" >&5 +-echo "${ECHO_T}$ac_res" >&6; } +- ++SDL_CONFIG=$ac_cv_path_SDL_CONFIG ++if test -n "$SDL_CONFIG"; then ++ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $SDL_CONFIG" >&5 ++$as_echo "$SDL_CONFIG" >&6; } ++else ++ { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 ++$as_echo "no" >&6; } + fi +-if test `eval echo '${'$as_ac_Header'}'` = yes; then +- cat >>confdefs.h <<_ACEOF +-#define `echo "HAVE_$ac_header" | $as_tr_cpp` 1 +-_ACEOF + +-cat >>confdefs.h <<\_ACEOF +-#define SDL_INCLUDE_FILE +-_ACEOF + +-else +- { { echo "$as_me:$LINENO: error: The development package for SDL is not installed. +-Please install it and try again. Alternatively you can also configure with +---disable-sdl." >&5 +-echo "$as_me: error: The development package for SDL is not installed. +-Please install it and try again. Alternatively you can also configure with +---disable-sdl." >&2;} +- { (exit 1); exit 1; }; } ++ SDL_HEADER="SDL/SDL.h" ++ SDL_IMAGE="SDL/SDL_image.h" ++ fi ++ # check for cross-compiling ++ SDL_PREFIX= + ++# Check whether --with-sdl-prefix was given. ++if test "${with_sdl_prefix+set}" = set; then : ++ withval=$with_sdl_prefix; + fi + +-done ++ if test "${with_sdl_prefix}" != "no" -a -n "${with_sdl_prefix}" ++ then ++ SDL_PREFIX="--prefix=${with_sdl_prefix}" ++ fi ++ if test "${SDL_CONFIG}" != "no" ++ then ++ # SDL on Darwin is heavily patched and can only run SDL_image ++ if test "${SYS}" != "darwin" -a "${SYS}" != "mingw32"; then + +-fi ++ PLUGINS="${PLUGINS} vout_sdl aout_sdl" + +-done ++ fi + +- if test "${enable_sdl_image}" != "no"; then ++ for element in vout_sdl aout_sdl sdl_image; do ++ eval "CFLAGS_${element}="'"$'"{CFLAGS_${element}} `${SDL_CONFIG} ${SDL_PREFIX} --cflags | sed 's,SDL,,'`"'"' ++ am_modules_with_cflags="${am_modules_with_cflags} ${element}" ++ done + + +-for ac_header in ${SDL_IMAGE} +-do +-as_ac_Header=`echo "ac_cv_header_$ac_header" | $as_tr_sh` +-if { as_var=$as_ac_Header; eval "test \"\${$as_var+set}\" = set"; }; then +- { echo "$as_me:$LINENO: checking for $ac_header" >&5 +-echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6; } +-if { as_var=$as_ac_Header; eval "test \"\${$as_var+set}\" = set"; }; then +- echo $ECHO_N "(cached) $ECHO_C" >&6 +-fi +-ac_res=`eval echo '${'$as_ac_Header'}'` +- { echo "$as_me:$LINENO: result: $ac_res" >&5 +-echo "${ECHO_T}$ac_res" >&6; } +-else +- # Is the header compilable? +-{ echo "$as_me:$LINENO: checking $ac_header usability" >&5 +-echo $ECHO_N "checking $ac_header usability... $ECHO_C" >&6; } +-cat >conftest.$ac_ext <<_ACEOF +-/* confdefs.h. */ ++ for element in vout_sdl aout_sdl sdl_image; do ++ eval "LDFLAGS_${element}="'"'"`${SDL_CONFIG} ${SDL_PREFIX} --libs | sed 's,-rdynamic,,'` "'$'"{LDFLAGS_${element}} "'"' ++ am_modules_with_ldflags="${am_modules_with_ldflags} ${element}" ++ done ++ ++ CPPFLAGS="${CPPFLAGS_save} ${CFLAGS_vout_sdl}" ++ for ac_header in ${SDL_HEADER} ++do : ++ as_ac_Header=`$as_echo "ac_cv_header_$ac_header" | $as_tr_sh` ++ac_fn_c_check_header_mongrel "$LINENO" "$ac_header" "$as_ac_Header" "$ac_includes_default" ++if eval test \"x\$"$as_ac_Header"\" = x"yes"; then : ++ cat >>confdefs.h <<_ACEOF ++#define `$as_echo "HAVE_$ac_header" | $as_tr_cpp` 1 + _ACEOF +-cat confdefs.h >>conftest.$ac_ext +-cat >>conftest.$ac_ext <<_ACEOF +-/* end confdefs.h. */ +-$ac_includes_default +-#include <$ac_header> ++ ++cat >>confdefs.h <<_ACEOF ++#define SDL_INCLUDE_FILE <${SDL_HEADER}> + _ACEOF +-rm -f conftest.$ac_objext +-if { (ac_try="$ac_compile" +-case "(($ac_try" in +- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; +- *) ac_try_echo=$ac_try;; +-esac +-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 +- (eval "$ac_compile") 2>conftest.er1 +- ac_status=$? +- grep -v '^ *+' conftest.er1 >conftest.err +- rm -f conftest.er1 +- cat conftest.err >&5 +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); } && { +- test -z "$ac_c_werror_flag" || +- test ! -s conftest.err +- } && test -s conftest.$ac_objext; then +- ac_header_compiler=yes +-else +- echo "$as_me: failed program was:" >&5 +-sed 's/^/| /' conftest.$ac_ext >&5 + +- ac_header_compiler=no +-fi ++else ++ for ac_header in SDL.h ++do : ++ ac_fn_c_check_header_mongrel "$LINENO" "SDL.h" "ac_cv_header_SDL_h" "$ac_includes_default" ++if test "x$ac_cv_header_SDL_h" = xyes; then : ++ cat >>confdefs.h <<_ACEOF ++#define HAVE_SDL_H 1 ++_ACEOF + +-rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext +-{ echo "$as_me:$LINENO: result: $ac_header_compiler" >&5 +-echo "${ECHO_T}$ac_header_compiler" >&6; } ++$as_echo "#define SDL_INCLUDE_FILE " >>confdefs.h + +-# Is the header present? +-{ echo "$as_me:$LINENO: checking $ac_header presence" >&5 +-echo $ECHO_N "checking $ac_header presence... $ECHO_C" >&6; } +-cat >conftest.$ac_ext <<_ACEOF +-/* confdefs.h. */ +-_ACEOF +-cat confdefs.h >>conftest.$ac_ext +-cat >>conftest.$ac_ext <<_ACEOF +-/* end confdefs.h. */ +-#include <$ac_header> +-_ACEOF +-if { (ac_try="$ac_cpp conftest.$ac_ext" +-case "(($ac_try" in +- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; +- *) ac_try_echo=$ac_try;; +-esac +-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 +- (eval "$ac_cpp conftest.$ac_ext") 2>conftest.er1 +- ac_status=$? +- grep -v '^ *+' conftest.er1 >conftest.err +- rm -f conftest.er1 +- cat conftest.err >&5 +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); } >/dev/null && { +- test -z "$ac_c_preproc_warn_flag$ac_c_werror_flag" || +- test ! -s conftest.err +- }; then +- ac_header_preproc=yes + else +- echo "$as_me: failed program was:" >&5 +-sed 's/^/| /' conftest.$ac_ext >&5 ++ as_fn_error $? "The development package for SDL is not installed. ++Please install it and try again. Alternatively you can also configure with ++--disable-sdl." "$LINENO" 5 + +- ac_header_preproc=no + fi + +-rm -f conftest.err conftest.$ac_ext +-{ echo "$as_me:$LINENO: result: $ac_header_preproc" >&5 +-echo "${ECHO_T}$ac_header_preproc" >&6; } +- +-# So? What about this header? +-case $ac_header_compiler:$ac_header_preproc:$ac_c_preproc_warn_flag in +- yes:no: ) +- { echo "$as_me:$LINENO: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&5 +-echo "$as_me: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&2;} +- { echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the compiler's result" >&5 +-echo "$as_me: WARNING: $ac_header: proceeding with the compiler's result" >&2;} +- ac_header_preproc=yes +- ;; +- no:yes:* ) +- { echo "$as_me:$LINENO: WARNING: $ac_header: present but cannot be compiled" >&5 +-echo "$as_me: WARNING: $ac_header: present but cannot be compiled" >&2;} +- { echo "$as_me:$LINENO: WARNING: $ac_header: check for missing prerequisite headers?" >&5 +-echo "$as_me: WARNING: $ac_header: check for missing prerequisite headers?" >&2;} +- { echo "$as_me:$LINENO: WARNING: $ac_header: see the Autoconf documentation" >&5 +-echo "$as_me: WARNING: $ac_header: see the Autoconf documentation" >&2;} +- { echo "$as_me:$LINENO: WARNING: $ac_header: section \"Present But Cannot Be Compiled\"" >&5 +-echo "$as_me: WARNING: $ac_header: section \"Present But Cannot Be Compiled\"" >&2;} +- { echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the preprocessor's result" >&5 +-echo "$as_me: WARNING: $ac_header: proceeding with the preprocessor's result" >&2;} +- { echo "$as_me:$LINENO: WARNING: $ac_header: in the future, the compiler will take precedence" >&5 +-echo "$as_me: WARNING: $ac_header: in the future, the compiler will take precedence" >&2;} ++done + +- ;; +-esac +-{ echo "$as_me:$LINENO: checking for $ac_header" >&5 +-echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6; } +-if { as_var=$as_ac_Header; eval "test \"\${$as_var+set}\" = set"; }; then +- echo $ECHO_N "(cached) $ECHO_C" >&6 +-else +- eval "$as_ac_Header=\$ac_header_preproc" + fi +-ac_res=`eval echo '${'$as_ac_Header'}'` +- { echo "$as_me:$LINENO: result: $ac_res" >&5 +-echo "${ECHO_T}$ac_res" >&6; } + +-fi +-if test `eval echo '${'$as_ac_Header'}'` = yes; then ++done ++ ++ if test "${enable_sdl_image}" != "no"; then : ++ ++ for ac_header in ${SDL_IMAGE} ++do : ++ as_ac_Header=`$as_echo "ac_cv_header_$ac_header" | $as_tr_sh` ++ac_fn_c_check_header_mongrel "$LINENO" "$ac_header" "$as_ac_Header" "$ac_includes_default" ++if eval test \"x\$"$as_ac_Header"\" = x"yes"; then : + cat >>confdefs.h <<_ACEOF +-#define `echo "HAVE_$ac_header" | $as_tr_cpp` 1 ++#define `$as_echo "HAVE_$ac_header" | $as_tr_cpp` 1 + _ACEOF + + cat >>confdefs.h <<_ACEOF +@@ -54494,18 +36753,14 @@ _ACEOF + + PLUGINS="${PLUGINS} sdl_image" + +- { echo "$as_me:$LINENO: checking for png_set_rows in -lpng" >&5 +-echo $ECHO_N "checking for png_set_rows in -lpng... $ECHO_C" >&6; } +-if test "${ac_cv_lib_png_png_set_rows+set}" = set; then +- echo $ECHO_N "(cached) $ECHO_C" >&6 ++ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for png_set_rows in -lpng" >&5 ++$as_echo_n "checking for png_set_rows in -lpng... " >&6; } ++if ${ac_cv_lib_png_png_set_rows+:} false; then : ++ $as_echo_n "(cached) " >&6 + else + ac_check_lib_save_LIBS=$LIBS + LIBS="-lpng -lz $LIBS" +-cat >conftest.$ac_ext <<_ACEOF +-/* confdefs.h. */ +-_ACEOF +-cat confdefs.h >>conftest.$ac_ext +-cat >>conftest.$ac_ext <<_ACEOF ++cat confdefs.h - <<_ACEOF >conftest.$ac_ext + /* end confdefs.h. */ + + /* Override any GCC internal prototype to avoid an error. +@@ -54523,39 +36778,18 @@ return png_set_rows (); + return 0; + } + _ACEOF +-rm -f conftest.$ac_objext conftest$ac_exeext +-if { (ac_try="$ac_link" +-case "(($ac_try" in +- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; +- *) ac_try_echo=$ac_try;; +-esac +-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 +- (eval "$ac_link") 2>conftest.er1 +- ac_status=$? +- grep -v '^ *+' conftest.er1 >conftest.err +- rm -f conftest.er1 +- cat conftest.err >&5 +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); } && { +- test -z "$ac_c_werror_flag" || +- test ! -s conftest.err +- } && test -s conftest$ac_exeext && +- $as_test_x conftest$ac_exeext; then ++if ac_fn_c_try_link "$LINENO"; then : + ac_cv_lib_png_png_set_rows=yes + else +- echo "$as_me: failed program was:" >&5 +-sed 's/^/| /' conftest.$ac_ext >&5 +- +- ac_cv_lib_png_png_set_rows=no ++ ac_cv_lib_png_png_set_rows=no + fi +- +-rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ +- conftest$ac_exeext conftest.$ac_ext ++rm -f core conftest.err conftest.$ac_objext \ ++ conftest$ac_exeext conftest.$ac_ext + LIBS=$ac_check_lib_save_LIBS + fi +-{ echo "$as_me:$LINENO: result: $ac_cv_lib_png_png_set_rows" >&5 +-echo "${ECHO_T}$ac_cv_lib_png_png_set_rows" >&6; } +-if test $ac_cv_lib_png_png_set_rows = yes; then ++{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_png_png_set_rows" >&5 ++$as_echo "$ac_cv_lib_png_png_set_rows" >&6; } ++if test "x$ac_cv_lib_png_png_set_rows" = xyes; then : + + for element in sdl_image; do + eval "LDFLAGS_${element}="'"'"-lpng -lz "'$'"{LDFLAGS_${element}} "'"' +@@ -54564,18 +36798,14 @@ if test $ac_cv_lib_png_png_set_rows = yes; then + + fi + +- { echo "$as_me:$LINENO: checking for jpeg_start_decompress in -ljpeg" >&5 +-echo $ECHO_N "checking for jpeg_start_decompress in -ljpeg... $ECHO_C" >&6; } +-if test "${ac_cv_lib_jpeg_jpeg_start_decompress+set}" = set; then +- echo $ECHO_N "(cached) $ECHO_C" >&6 ++ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for jpeg_start_decompress in -ljpeg" >&5 ++$as_echo_n "checking for jpeg_start_decompress in -ljpeg... " >&6; } ++if ${ac_cv_lib_jpeg_jpeg_start_decompress+:} false; then : ++ $as_echo_n "(cached) " >&6 + else + ac_check_lib_save_LIBS=$LIBS + LIBS="-ljpeg $LIBS" +-cat >conftest.$ac_ext <<_ACEOF +-/* confdefs.h. */ +-_ACEOF +-cat confdefs.h >>conftest.$ac_ext +-cat >>conftest.$ac_ext <<_ACEOF ++cat confdefs.h - <<_ACEOF >conftest.$ac_ext + /* end confdefs.h. */ + + /* Override any GCC internal prototype to avoid an error. +@@ -54593,39 +36823,18 @@ return jpeg_start_decompress (); + return 0; + } + _ACEOF +-rm -f conftest.$ac_objext conftest$ac_exeext +-if { (ac_try="$ac_link" +-case "(($ac_try" in +- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; +- *) ac_try_echo=$ac_try;; +-esac +-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 +- (eval "$ac_link") 2>conftest.er1 +- ac_status=$? +- grep -v '^ *+' conftest.er1 >conftest.err +- rm -f conftest.er1 +- cat conftest.err >&5 +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); } && { +- test -z "$ac_c_werror_flag" || +- test ! -s conftest.err +- } && test -s conftest$ac_exeext && +- $as_test_x conftest$ac_exeext; then ++if ac_fn_c_try_link "$LINENO"; then : + ac_cv_lib_jpeg_jpeg_start_decompress=yes + else +- echo "$as_me: failed program was:" >&5 +-sed 's/^/| /' conftest.$ac_ext >&5 +- +- ac_cv_lib_jpeg_jpeg_start_decompress=no ++ ac_cv_lib_jpeg_jpeg_start_decompress=no + fi +- +-rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ +- conftest$ac_exeext conftest.$ac_ext ++rm -f core conftest.err conftest.$ac_objext \ ++ conftest$ac_exeext conftest.$ac_ext + LIBS=$ac_check_lib_save_LIBS + fi +-{ echo "$as_me:$LINENO: result: $ac_cv_lib_jpeg_jpeg_start_decompress" >&5 +-echo "${ECHO_T}$ac_cv_lib_jpeg_jpeg_start_decompress" >&6; } +-if test $ac_cv_lib_jpeg_jpeg_start_decompress = yes; then ++{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_jpeg_jpeg_start_decompress" >&5 ++$as_echo "$ac_cv_lib_jpeg_jpeg_start_decompress" >&6; } ++if test "x$ac_cv_lib_jpeg_jpeg_start_decompress" = xyes; then : + + for element in sdl_image; do + eval "LDFLAGS_${element}="'"'"-ljpeg "'$'"{LDFLAGS_${element}} "'"' +@@ -54634,18 +36843,14 @@ if test $ac_cv_lib_jpeg_jpeg_start_decompress = yes; then + + fi + +- { echo "$as_me:$LINENO: checking for TIFFClientOpen in -ltiff" >&5 +-echo $ECHO_N "checking for TIFFClientOpen in -ltiff... $ECHO_C" >&6; } +-if test "${ac_cv_lib_tiff_TIFFClientOpen+set}" = set; then +- echo $ECHO_N "(cached) $ECHO_C" >&6 ++ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for TIFFClientOpen in -ltiff" >&5 ++$as_echo_n "checking for TIFFClientOpen in -ltiff... " >&6; } ++if ${ac_cv_lib_tiff_TIFFClientOpen+:} false; then : ++ $as_echo_n "(cached) " >&6 + else + ac_check_lib_save_LIBS=$LIBS + LIBS="-ltiff $LIBS" +-cat >conftest.$ac_ext <<_ACEOF +-/* confdefs.h. */ +-_ACEOF +-cat confdefs.h >>conftest.$ac_ext +-cat >>conftest.$ac_ext <<_ACEOF ++cat confdefs.h - <<_ACEOF >conftest.$ac_ext + /* end confdefs.h. */ + + /* Override any GCC internal prototype to avoid an error. +@@ -54663,39 +36868,18 @@ return TIFFClientOpen (); + return 0; + } + _ACEOF +-rm -f conftest.$ac_objext conftest$ac_exeext +-if { (ac_try="$ac_link" +-case "(($ac_try" in +- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; +- *) ac_try_echo=$ac_try;; +-esac +-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 +- (eval "$ac_link") 2>conftest.er1 +- ac_status=$? +- grep -v '^ *+' conftest.er1 >conftest.err +- rm -f conftest.er1 +- cat conftest.err >&5 +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); } && { +- test -z "$ac_c_werror_flag" || +- test ! -s conftest.err +- } && test -s conftest$ac_exeext && +- $as_test_x conftest$ac_exeext; then ++if ac_fn_c_try_link "$LINENO"; then : + ac_cv_lib_tiff_TIFFClientOpen=yes + else +- echo "$as_me: failed program was:" >&5 +-sed 's/^/| /' conftest.$ac_ext >&5 +- +- ac_cv_lib_tiff_TIFFClientOpen=no ++ ac_cv_lib_tiff_TIFFClientOpen=no + fi +- +-rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ +- conftest$ac_exeext conftest.$ac_ext ++rm -f core conftest.err conftest.$ac_objext \ ++ conftest$ac_exeext conftest.$ac_ext + LIBS=$ac_check_lib_save_LIBS + fi +-{ echo "$as_me:$LINENO: result: $ac_cv_lib_tiff_TIFFClientOpen" >&5 +-echo "${ECHO_T}$ac_cv_lib_tiff_TIFFClientOpen" >&6; } +-if test $ac_cv_lib_tiff_TIFFClientOpen = yes; then ++{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_tiff_TIFFClientOpen" >&5 ++$as_echo "$ac_cv_lib_tiff_TIFFClientOpen" >&6; } ++if test "x$ac_cv_lib_tiff_TIFFClientOpen" = xyes; then : + + for element in sdl_image; do + eval "LDFLAGS_${element}="'"'"-ltiff "'$'"{LDFLAGS_${element}} "'"' +@@ -54711,150 +36895,20 @@ fi + done + + else +- +-for ac_header in SDL_image.h +-do +-as_ac_Header=`echo "ac_cv_header_$ac_header" | $as_tr_sh` +-if { as_var=$as_ac_Header; eval "test \"\${$as_var+set}\" = set"; }; then +- { echo "$as_me:$LINENO: checking for $ac_header" >&5 +-echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6; } +-if { as_var=$as_ac_Header; eval "test \"\${$as_var+set}\" = set"; }; then +- echo $ECHO_N "(cached) $ECHO_C" >&6 +-fi +-ac_res=`eval echo '${'$as_ac_Header'}'` +- { echo "$as_me:$LINENO: result: $ac_res" >&5 +-echo "${ECHO_T}$ac_res" >&6; } +-else +- # Is the header compilable? +-{ echo "$as_me:$LINENO: checking $ac_header usability" >&5 +-echo $ECHO_N "checking $ac_header usability... $ECHO_C" >&6; } +-cat >conftest.$ac_ext <<_ACEOF +-/* confdefs.h. */ +-_ACEOF +-cat confdefs.h >>conftest.$ac_ext +-cat >>conftest.$ac_ext <<_ACEOF +-/* end confdefs.h. */ +-$ac_includes_default +-#include <$ac_header> +-_ACEOF +-rm -f conftest.$ac_objext +-if { (ac_try="$ac_compile" +-case "(($ac_try" in +- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; +- *) ac_try_echo=$ac_try;; +-esac +-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 +- (eval "$ac_compile") 2>conftest.er1 +- ac_status=$? +- grep -v '^ *+' conftest.er1 >conftest.err +- rm -f conftest.er1 +- cat conftest.err >&5 +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); } && { +- test -z "$ac_c_werror_flag" || +- test ! -s conftest.err +- } && test -s conftest.$ac_objext; then +- ac_header_compiler=yes +-else +- echo "$as_me: failed program was:" >&5 +-sed 's/^/| /' conftest.$ac_ext >&5 +- +- ac_header_compiler=no +-fi +- +-rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext +-{ echo "$as_me:$LINENO: result: $ac_header_compiler" >&5 +-echo "${ECHO_T}$ac_header_compiler" >&6; } +- +-# Is the header present? +-{ echo "$as_me:$LINENO: checking $ac_header presence" >&5 +-echo $ECHO_N "checking $ac_header presence... $ECHO_C" >&6; } +-cat >conftest.$ac_ext <<_ACEOF +-/* confdefs.h. */ +-_ACEOF +-cat confdefs.h >>conftest.$ac_ext +-cat >>conftest.$ac_ext <<_ACEOF +-/* end confdefs.h. */ +-#include <$ac_header> +-_ACEOF +-if { (ac_try="$ac_cpp conftest.$ac_ext" +-case "(($ac_try" in +- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; +- *) ac_try_echo=$ac_try;; +-esac +-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 +- (eval "$ac_cpp conftest.$ac_ext") 2>conftest.er1 +- ac_status=$? +- grep -v '^ *+' conftest.er1 >conftest.err +- rm -f conftest.er1 +- cat conftest.err >&5 +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); } >/dev/null && { +- test -z "$ac_c_preproc_warn_flag$ac_c_werror_flag" || +- test ! -s conftest.err +- }; then +- ac_header_preproc=yes +-else +- echo "$as_me: failed program was:" >&5 +-sed 's/^/| /' conftest.$ac_ext >&5 +- +- ac_header_preproc=no +-fi +- +-rm -f conftest.err conftest.$ac_ext +-{ echo "$as_me:$LINENO: result: $ac_header_preproc" >&5 +-echo "${ECHO_T}$ac_header_preproc" >&6; } +- +-# So? What about this header? +-case $ac_header_compiler:$ac_header_preproc:$ac_c_preproc_warn_flag in +- yes:no: ) +- { echo "$as_me:$LINENO: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&5 +-echo "$as_me: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&2;} +- { echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the compiler's result" >&5 +-echo "$as_me: WARNING: $ac_header: proceeding with the compiler's result" >&2;} +- ac_header_preproc=yes +- ;; +- no:yes:* ) +- { echo "$as_me:$LINENO: WARNING: $ac_header: present but cannot be compiled" >&5 +-echo "$as_me: WARNING: $ac_header: present but cannot be compiled" >&2;} +- { echo "$as_me:$LINENO: WARNING: $ac_header: check for missing prerequisite headers?" >&5 +-echo "$as_me: WARNING: $ac_header: check for missing prerequisite headers?" >&2;} +- { echo "$as_me:$LINENO: WARNING: $ac_header: see the Autoconf documentation" >&5 +-echo "$as_me: WARNING: $ac_header: see the Autoconf documentation" >&2;} +- { echo "$as_me:$LINENO: WARNING: $ac_header: section \"Present But Cannot Be Compiled\"" >&5 +-echo "$as_me: WARNING: $ac_header: section \"Present But Cannot Be Compiled\"" >&2;} +- { echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the preprocessor's result" >&5 +-echo "$as_me: WARNING: $ac_header: proceeding with the preprocessor's result" >&2;} +- { echo "$as_me:$LINENO: WARNING: $ac_header: in the future, the compiler will take precedence" >&5 +-echo "$as_me: WARNING: $ac_header: in the future, the compiler will take precedence" >&2;} +- +- ;; +-esac +-{ echo "$as_me:$LINENO: checking for $ac_header" >&5 +-echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6; } +-if { as_var=$as_ac_Header; eval "test \"\${$as_var+set}\" = set"; }; then +- echo $ECHO_N "(cached) $ECHO_C" >&6 +-else +- eval "$as_ac_Header=\$ac_header_preproc" +-fi +-ac_res=`eval echo '${'$as_ac_Header'}'` +- { echo "$as_me:$LINENO: result: $ac_res" >&5 +-echo "${ECHO_T}$ac_res" >&6; } +- +-fi +-if test `eval echo '${'$as_ac_Header'}'` = yes; then ++ for ac_header in SDL_image.h ++do : ++ ac_fn_c_check_header_mongrel "$LINENO" "SDL_image.h" "ac_cv_header_SDL_image_h" "$ac_includes_default" ++if test "x$ac_cv_header_SDL_image_h" = xyes; then : + cat >>confdefs.h <<_ACEOF +-#define `echo "HAVE_$ac_header" | $as_tr_cpp` 1 ++#define HAVE_SDL_IMAGE_H 1 + _ACEOF + +-cat >>confdefs.h <<\_ACEOF +-#define SDL_IMAGE_INCLUDE_FILE +-_ACEOF ++$as_echo "#define SDL_IMAGE_INCLUDE_FILE " >>confdefs.h + + else +- { echo "$as_me:$LINENO: WARNING: The development package for SDL_image is not installed. ++ { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: The development package for SDL_image is not installed. + You should install it alongside your SDL package." >&5 +-echo "$as_me: WARNING: The development package for SDL_image is not installed. ++$as_echo "$as_me: WARNING: The development package for SDL_image is not installed. + You should install it alongside your SDL package." >&2;} + + fi +@@ -54867,38 +36921,29 @@ done + + + fi +- + CPPFLAGS="${CPPFLAGS_save}" + if expr 1.1.5 \> `${SDL_CONFIG} --version` >/dev/null + then +- { { echo "$as_me:$LINENO: error: The development package for SDL is not installed. +-Please install it and try again. Alternatively you can also configure with +---disable-sdl." >&5 +-echo "$as_me: error: The development package for SDL is not installed. ++ as_fn_error $? "The development package for SDL is not installed. + Please install it and try again. Alternatively you can also configure with +---disable-sdl." >&2;} +- { (exit 1); exit 1; }; } ++--disable-sdl." "$LINENO" 5 + fi + + elif test "${enable_sdl}" = "yes" + then +- { { echo "$as_me:$LINENO: error: I couldn't find the SDL package. You can download libSDL ++ as_fn_error $? "I couldn't find the SDL package. You can download libSDL + from http://www.libsdl.org/, or configure with --disable-sdl. Have a nice day. +- " >&5 +-echo "$as_me: error: I couldn't find the SDL package. You can download libSDL +-from http://www.libsdl.org/, or configure with --disable-sdl. Have a nice day. +- " >&2;} +- { (exit 1); exit 1; }; } ++ " "$LINENO" 5 + fi + fi + + # Check whether --enable-freetype was given. +-if test "${enable_freetype+set}" = set; then ++if test "${enable_freetype+set}" = set; then : + enableval=$enable_freetype; + fi + + # Check whether --enable-fribidi was given. +-if test "${enable_fribidi+set}" = set; then ++if test "${enable_fribidi+set}" = set; then : + enableval=$enable_fribidi; + fi + +@@ -54907,7 +36952,7 @@ then + FREETYPE_PATH="${PATH}" + + # Check whether --with-freetype-config-path was given. +-if test "${with_freetype_config_path+set}" = set; then ++if test "${with_freetype_config_path+set}" = set; then : + withval=$with_freetype_config_path; if test "${with_freetype_config_path}" != "no" + then + FREETYPE_PATH="${with_freetype_config_path}:${PATH}" +@@ -54916,10 +36961,10 @@ fi + + # Extract the first word of "freetype-config", so it can be a program name with args. + set dummy freetype-config; ac_word=$2 +-{ echo "$as_me:$LINENO: checking for $ac_word" >&5 +-echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6; } +-if test "${ac_cv_path_FREETYPE_CONFIG+set}" = set; then +- echo $ECHO_N "(cached) $ECHO_C" >&6 ++{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 ++$as_echo_n "checking for $ac_word... " >&6; } ++if ${ac_cv_path_FREETYPE_CONFIG+:} false; then : ++ $as_echo_n "(cached) " >&6 + else + case $FREETYPE_CONFIG in + [\\/]* | ?:[\\/]*) +@@ -54931,14 +36976,14 @@ for as_dir in ${FREETYPE_PATH} + do + IFS=$as_save_IFS + test -z "$as_dir" && as_dir=. +- for ac_exec_ext in '' $ac_executable_extensions; do +- if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then ++ for ac_exec_ext in '' $ac_executable_extensions; do ++ if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then + ac_cv_path_FREETYPE_CONFIG="$as_dir/$ac_word$ac_exec_ext" +- echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 ++ $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 + break 2 + fi + done +-done ++ done + IFS=$as_save_IFS + + test -z "$ac_cv_path_FREETYPE_CONFIG" && ac_cv_path_FREETYPE_CONFIG="no" +@@ -54947,11 +36992,11 @@ esac + fi + FREETYPE_CONFIG=$ac_cv_path_FREETYPE_CONFIG + if test -n "$FREETYPE_CONFIG"; then +- { echo "$as_me:$LINENO: result: $FREETYPE_CONFIG" >&5 +-echo "${ECHO_T}$FREETYPE_CONFIG" >&6; } ++ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $FREETYPE_CONFIG" >&5 ++$as_echo "$FREETYPE_CONFIG" >&6; } + else +- { echo "$as_me:$LINENO: result: no" >&5 +-echo "${ECHO_T}no" >&6; } ++ { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 ++$as_echo "no" >&6; } + fi + + +@@ -54973,140 +37018,12 @@ fi + am_modules_with_ldflags="${am_modules_with_ldflags} ${element}" + done + +- +-for ac_header in Carbon/Carbon.h +-do +-as_ac_Header=`echo "ac_cv_header_$ac_header" | $as_tr_sh` +-if { as_var=$as_ac_Header; eval "test \"\${$as_var+set}\" = set"; }; then +- { echo "$as_me:$LINENO: checking for $ac_header" >&5 +-echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6; } +-if { as_var=$as_ac_Header; eval "test \"\${$as_var+set}\" = set"; }; then +- echo $ECHO_N "(cached) $ECHO_C" >&6 +-fi +-ac_res=`eval echo '${'$as_ac_Header'}'` +- { echo "$as_me:$LINENO: result: $ac_res" >&5 +-echo "${ECHO_T}$ac_res" >&6; } +-else +- # Is the header compilable? +-{ echo "$as_me:$LINENO: checking $ac_header usability" >&5 +-echo $ECHO_N "checking $ac_header usability... $ECHO_C" >&6; } +-cat >conftest.$ac_ext <<_ACEOF +-/* confdefs.h. */ +-_ACEOF +-cat confdefs.h >>conftest.$ac_ext +-cat >>conftest.$ac_ext <<_ACEOF +-/* end confdefs.h. */ +-$ac_includes_default +-#include <$ac_header> +-_ACEOF +-rm -f conftest.$ac_objext +-if { (ac_try="$ac_compile" +-case "(($ac_try" in +- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; +- *) ac_try_echo=$ac_try;; +-esac +-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 +- (eval "$ac_compile") 2>conftest.er1 +- ac_status=$? +- grep -v '^ *+' conftest.er1 >conftest.err +- rm -f conftest.er1 +- cat conftest.err >&5 +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); } && { +- test -z "$ac_c_werror_flag" || +- test ! -s conftest.err +- } && test -s conftest.$ac_objext; then +- ac_header_compiler=yes +-else +- echo "$as_me: failed program was:" >&5 +-sed 's/^/| /' conftest.$ac_ext >&5 +- +- ac_header_compiler=no +-fi +- +-rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext +-{ echo "$as_me:$LINENO: result: $ac_header_compiler" >&5 +-echo "${ECHO_T}$ac_header_compiler" >&6; } +- +-# Is the header present? +-{ echo "$as_me:$LINENO: checking $ac_header presence" >&5 +-echo $ECHO_N "checking $ac_header presence... $ECHO_C" >&6; } +-cat >conftest.$ac_ext <<_ACEOF +-/* confdefs.h. */ +-_ACEOF +-cat confdefs.h >>conftest.$ac_ext +-cat >>conftest.$ac_ext <<_ACEOF +-/* end confdefs.h. */ +-#include <$ac_header> +-_ACEOF +-if { (ac_try="$ac_cpp conftest.$ac_ext" +-case "(($ac_try" in +- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; +- *) ac_try_echo=$ac_try;; +-esac +-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 +- (eval "$ac_cpp conftest.$ac_ext") 2>conftest.er1 +- ac_status=$? +- grep -v '^ *+' conftest.er1 >conftest.err +- rm -f conftest.er1 +- cat conftest.err >&5 +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); } >/dev/null && { +- test -z "$ac_c_preproc_warn_flag$ac_c_werror_flag" || +- test ! -s conftest.err +- }; then +- ac_header_preproc=yes +-else +- echo "$as_me: failed program was:" >&5 +-sed 's/^/| /' conftest.$ac_ext >&5 +- +- ac_header_preproc=no +-fi +- +-rm -f conftest.err conftest.$ac_ext +-{ echo "$as_me:$LINENO: result: $ac_header_preproc" >&5 +-echo "${ECHO_T}$ac_header_preproc" >&6; } +- +-# So? What about this header? +-case $ac_header_compiler:$ac_header_preproc:$ac_c_preproc_warn_flag in +- yes:no: ) +- { echo "$as_me:$LINENO: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&5 +-echo "$as_me: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&2;} +- { echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the compiler's result" >&5 +-echo "$as_me: WARNING: $ac_header: proceeding with the compiler's result" >&2;} +- ac_header_preproc=yes +- ;; +- no:yes:* ) +- { echo "$as_me:$LINENO: WARNING: $ac_header: present but cannot be compiled" >&5 +-echo "$as_me: WARNING: $ac_header: present but cannot be compiled" >&2;} +- { echo "$as_me:$LINENO: WARNING: $ac_header: check for missing prerequisite headers?" >&5 +-echo "$as_me: WARNING: $ac_header: check for missing prerequisite headers?" >&2;} +- { echo "$as_me:$LINENO: WARNING: $ac_header: see the Autoconf documentation" >&5 +-echo "$as_me: WARNING: $ac_header: see the Autoconf documentation" >&2;} +- { echo "$as_me:$LINENO: WARNING: $ac_header: section \"Present But Cannot Be Compiled\"" >&5 +-echo "$as_me: WARNING: $ac_header: section \"Present But Cannot Be Compiled\"" >&2;} +- { echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the preprocessor's result" >&5 +-echo "$as_me: WARNING: $ac_header: proceeding with the preprocessor's result" >&2;} +- { echo "$as_me:$LINENO: WARNING: $ac_header: in the future, the compiler will take precedence" >&5 +-echo "$as_me: WARNING: $ac_header: in the future, the compiler will take precedence" >&2;} +- +- ;; +-esac +-{ echo "$as_me:$LINENO: checking for $ac_header" >&5 +-echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6; } +-if { as_var=$as_ac_Header; eval "test \"\${$as_var+set}\" = set"; }; then +- echo $ECHO_N "(cached) $ECHO_C" >&6 +-else +- eval "$as_ac_Header=\$ac_header_preproc" +-fi +-ac_res=`eval echo '${'$as_ac_Header'}'` +- { echo "$as_me:$LINENO: result: $ac_res" >&5 +-echo "${ECHO_T}$ac_res" >&6; } +- +-fi +-if test `eval echo '${'$as_ac_Header'}'` = yes; then ++ for ac_header in Carbon/Carbon.h ++do : ++ ac_fn_c_check_header_mongrel "$LINENO" "Carbon/Carbon.h" "ac_cv_header_Carbon_Carbon_h" "$ac_includes_default" ++if test "x$ac_cv_header_Carbon_Carbon_h" = xyes; then : + cat >>confdefs.h <<_ACEOF +-#define `echo "HAVE_$ac_header" | $as_tr_cpp` 1 ++#define HAVE_CARBON_CARBON_H 1 + _ACEOF + + for element in freetype; do +@@ -55120,13 +37037,9 @@ done + + elif test "${enable_freetype}" = "yes" + then +- { { echo "$as_me:$LINENO: error: I couldn't find the freetype package. You can download libfreetype2 ++ as_fn_error $? "I couldn't find the freetype package. You can download libfreetype2 + from http://www.freetype.org/, or configure with --disable-freetype. Have a nice day. +- " >&5 +-echo "$as_me: error: I couldn't find the freetype package. You can download libfreetype2 +-from http://www.freetype.org/, or configure with --disable-freetype. Have a nice day. +- " >&2;} +- { (exit 1); exit 1; }; } ++ " "$LINENO" 5 + fi + + if test "${enable_fribidi}" != "no" +@@ -55134,7 +37047,7 @@ from http://www.freetype.org/, or configure with --disable-freetype. Have a nice + FRIBIDI_PATH="${PATH}" + + # Check whether --with-fribidi-config-path was given. +-if test "${with_fribidi_config_path+set}" = set; then ++if test "${with_fribidi_config_path+set}" = set; then : + withval=$with_fribidi_config_path; if test "${with_fribidi_config_path}" != "no" + then + FRIBIDI_PATH="${with_fribidi_config_path}:${PATH}" +@@ -55143,10 +37056,10 @@ fi + + # Extract the first word of "fribidi-config", so it can be a program name with args. + set dummy fribidi-config; ac_word=$2 +-{ echo "$as_me:$LINENO: checking for $ac_word" >&5 +-echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6; } +-if test "${ac_cv_path_FRIBIDI_CONFIG+set}" = set; then +- echo $ECHO_N "(cached) $ECHO_C" >&6 ++{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 ++$as_echo_n "checking for $ac_word... " >&6; } ++if ${ac_cv_path_FRIBIDI_CONFIG+:} false; then : ++ $as_echo_n "(cached) " >&6 + else + case $FRIBIDI_CONFIG in + [\\/]* | ?:[\\/]*) +@@ -55158,14 +37071,14 @@ for as_dir in ${FRIBIDI_PATH} + do + IFS=$as_save_IFS + test -z "$as_dir" && as_dir=. +- for ac_exec_ext in '' $ac_executable_extensions; do +- if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then ++ for ac_exec_ext in '' $ac_executable_extensions; do ++ if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then + ac_cv_path_FRIBIDI_CONFIG="$as_dir/$ac_word$ac_exec_ext" +- echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 ++ $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 + break 2 + fi + done +-done ++ done + IFS=$as_save_IFS + + test -z "$ac_cv_path_FRIBIDI_CONFIG" && ac_cv_path_FRIBIDI_CONFIG="no" +@@ -55174,11 +37087,11 @@ esac + fi + FRIBIDI_CONFIG=$ac_cv_path_FRIBIDI_CONFIG + if test -n "$FRIBIDI_CONFIG"; then +- { echo "$as_me:$LINENO: result: $FRIBIDI_CONFIG" >&5 +-echo "${ECHO_T}$FRIBIDI_CONFIG" >&6; } ++ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $FRIBIDI_CONFIG" >&5 ++$as_echo "$FRIBIDI_CONFIG" >&6; } + else +- { echo "$as_me:$LINENO: result: no" >&5 +-echo "${ECHO_T}no" >&6; } ++ { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 ++$as_echo "no" >&6; } + fi + + +@@ -55214,7 +37127,7 @@ fi + fi + + # Check whether --enable-libxml2 was given. +-if test "${enable_libxml2+set}" = set; then ++if test "${enable_libxml2+set}" = set; then : + enableval=$enable_libxml2; + fi + +@@ -55223,7 +37136,7 @@ then + XML2_PATH="${PATH}" + + # Check whether --with-xml2-config-path was given. +-if test "${with_xml2_config_path+set}" = set; then ++if test "${with_xml2_config_path+set}" = set; then : + withval=$with_xml2_config_path; if test "${with_xml2_config_path}" != "no"; then + XML2_PATH="${with_xml2_config_path}:${PATH}" + fi +@@ -55231,10 +37144,10 @@ fi + + # Extract the first word of "xml2-config", so it can be a program name with args. + set dummy xml2-config; ac_word=$2 +-{ echo "$as_me:$LINENO: checking for $ac_word" >&5 +-echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6; } +-if test "${ac_cv_path_XML2_CONFIG+set}" = set; then +- echo $ECHO_N "(cached) $ECHO_C" >&6 ++{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 ++$as_echo_n "checking for $ac_word... " >&6; } ++if ${ac_cv_path_XML2_CONFIG+:} false; then : ++ $as_echo_n "(cached) " >&6 + else + case $XML2_CONFIG in + [\\/]* | ?:[\\/]*) +@@ -55246,14 +37159,14 @@ for as_dir in ${XML2_PATH} + do + IFS=$as_save_IFS + test -z "$as_dir" && as_dir=. +- for ac_exec_ext in '' $ac_executable_extensions; do +- if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then ++ for ac_exec_ext in '' $ac_executable_extensions; do ++ if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then + ac_cv_path_XML2_CONFIG="$as_dir/$ac_word$ac_exec_ext" +- echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 ++ $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 + break 2 + fi + done +-done ++ done + IFS=$as_save_IFS + + test -z "$ac_cv_path_XML2_CONFIG" && ac_cv_path_XML2_CONFIG="no" +@@ -55262,11 +37175,11 @@ esac + fi + XML2_CONFIG=$ac_cv_path_XML2_CONFIG + if test -n "$XML2_CONFIG"; then +- { echo "$as_me:$LINENO: result: $XML2_CONFIG" >&5 +-echo "${ECHO_T}$XML2_CONFIG" >&6; } ++ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $XML2_CONFIG" >&5 ++$as_echo "$XML2_CONFIG" >&6; } + else +- { echo "$as_me:$LINENO: result: no" >&5 +-echo "${ECHO_T}no" >&6; } ++ { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 ++$as_echo "no" >&6; } + fi + + +@@ -55285,18 +37198,14 @@ fi + + CPPFLAGS="${CPPFLAGS_save} ${CPPFLAGS_xml}" + LDFLAGS="${LDFLAGS_save} ${LDFLAGS_xml}" +- { echo "$as_me:$LINENO: checking for xmlTextReaderConstName in -lxml2" >&5 +-echo $ECHO_N "checking for xmlTextReaderConstName in -lxml2... $ECHO_C" >&6; } +-if test "${ac_cv_lib_xml2_xmlTextReaderConstName+set}" = set; then +- echo $ECHO_N "(cached) $ECHO_C" >&6 ++ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for xmlTextReaderConstName in -lxml2" >&5 ++$as_echo_n "checking for xmlTextReaderConstName in -lxml2... " >&6; } ++if ${ac_cv_lib_xml2_xmlTextReaderConstName+:} false; then : ++ $as_echo_n "(cached) " >&6 + else + ac_check_lib_save_LIBS=$LIBS + LIBS="-lxml2 $LIBS" +-cat >conftest.$ac_ext <<_ACEOF +-/* confdefs.h. */ +-_ACEOF +-cat confdefs.h >>conftest.$ac_ext +-cat >>conftest.$ac_ext <<_ACEOF ++cat confdefs.h - <<_ACEOF >conftest.$ac_ext + /* end confdefs.h. */ + + /* Override any GCC internal prototype to avoid an error. +@@ -55314,63 +37223,36 @@ return xmlTextReaderConstName (); + return 0; + } + _ACEOF +-rm -f conftest.$ac_objext conftest$ac_exeext +-if { (ac_try="$ac_link" +-case "(($ac_try" in +- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; +- *) ac_try_echo=$ac_try;; +-esac +-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 +- (eval "$ac_link") 2>conftest.er1 +- ac_status=$? +- grep -v '^ *+' conftest.er1 >conftest.err +- rm -f conftest.er1 +- cat conftest.err >&5 +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); } && { +- test -z "$ac_c_werror_flag" || +- test ! -s conftest.err +- } && test -s conftest$ac_exeext && +- $as_test_x conftest$ac_exeext; then ++if ac_fn_c_try_link "$LINENO"; then : + ac_cv_lib_xml2_xmlTextReaderConstName=yes + else +- echo "$as_me: failed program was:" >&5 +-sed 's/^/| /' conftest.$ac_ext >&5 +- +- ac_cv_lib_xml2_xmlTextReaderConstName=no ++ ac_cv_lib_xml2_xmlTextReaderConstName=no + fi +- +-rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ +- conftest$ac_exeext conftest.$ac_ext ++rm -f core conftest.err conftest.$ac_objext \ ++ conftest$ac_exeext conftest.$ac_ext + LIBS=$ac_check_lib_save_LIBS + fi +-{ echo "$as_me:$LINENO: result: $ac_cv_lib_xml2_xmlTextReaderConstName" >&5 +-echo "${ECHO_T}$ac_cv_lib_xml2_xmlTextReaderConstName" >&6; } +-if test $ac_cv_lib_xml2_xmlTextReaderConstName = yes; then ++{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_xml2_xmlTextReaderConstName" >&5 ++$as_echo "$ac_cv_lib_xml2_xmlTextReaderConstName" >&6; } ++if test "x$ac_cv_lib_xml2_xmlTextReaderConstName" = xyes; then : + +- cat >conftest.$ac_ext <<_ACEOF +-/* confdefs.h. */ +-_ACEOF +-cat confdefs.h >>conftest.$ac_ext +-cat >>conftest.$ac_ext <<_ACEOF ++ cat confdefs.h - <<_ACEOF >conftest.$ac_ext + /* end confdefs.h. */ + #include + + _ACEOF + if (eval "$ac_cpp conftest.$ac_ext") 2>&5 | +- $EGREP "xmlTextReaderConstName" >/dev/null 2>&1; then ++ $EGREP "xmlTextReaderConstName" >/dev/null 2>&1; then : + + + PLUGINS="${PLUGINS} xml" + + else + +- { echo "$as_me:$LINENO: WARNING: libxml2 missing the xmlTextReader extension, you should update your version" >&5 +-echo "$as_me: WARNING: libxml2 missing the xmlTextReader extension, you should update your version" >&2;} ++ { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: libxml2 missing the xmlTextReader extension, you should update your version" >&5 ++$as_echo "$as_me: WARNING: libxml2 missing the xmlTextReader extension, you should update your version" >&2;} + if test "${enable_xml2}" = "yes"; then +- { { echo "$as_me:$LINENO: error: libxml2 missing the xmlTextReader extension" >&5 +-echo "$as_me: error: libxml2 missing the xmlTextReader extension" >&2;} +- { (exit 1); exit 1; }; } ++ as_fn_error $? "libxml2 missing the xmlTextReader extension" "$LINENO" 5 + fi + fi + rm -f conftest* +@@ -55378,12 +37260,10 @@ rm -f conftest* + + else + +- { echo "$as_me:$LINENO: WARNING: libxml2 missing the xmlTextReader extension, you should update your version" >&5 +-echo "$as_me: WARNING: libxml2 missing the xmlTextReader extension, you should update your version" >&2;} ++ { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: libxml2 missing the xmlTextReader extension, you should update your version" >&5 ++$as_echo "$as_me: WARNING: libxml2 missing the xmlTextReader extension, you should update your version" >&2;} + if test "${enable_xml2}" = "yes"; then +- { { echo "$as_me:$LINENO: error: libxml2 missing the xmlTextReader extension" >&5 +-echo "$as_me: error: libxml2 missing the xmlTextReader extension" >&2;} +- { (exit 1); exit 1; }; } ++ as_fn_error $? "libxml2 missing the xmlTextReader extension" "$LINENO" 5 + fi + fi + +@@ -55391,15 +37271,13 @@ fi + CPPFLAGS="${CPPFLAGS_save}" + else + if test "${enable_xml2}" = "yes"; then +- { { echo "$as_me:$LINENO: error: Could not find libxml2" >&5 +-echo "$as_me: error: Could not find libxml2" >&2;} +- { (exit 1); exit 1; }; } ++ as_fn_error $? "Could not find libxml2" "$LINENO" 5 + fi + fi + fi + + # Check whether --enable-svg was given. +-if test "${enable_svg+set}" = set; then ++if test "${enable_svg+set}" = set; then : + enableval=$enable_svg; + fi + +@@ -55407,19 +37285,19 @@ if test "${enable_svg}" = "yes" + then + + pkg_failed=no +-{ echo "$as_me:$LINENO: checking for SVG" >&5 +-echo $ECHO_N "checking for SVG... $ECHO_C" >&6; } ++{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for SVG" >&5 ++$as_echo_n "checking for SVG... " >&6; } + + if test -n "$PKG_CONFIG"; then + if test -n "$SVG_CFLAGS"; then + pkg_cv_SVG_CFLAGS="$SVG_CFLAGS" + else + if test -n "$PKG_CONFIG" && \ +- { (echo "$as_me:$LINENO: \$PKG_CONFIG --exists --print-errors \"librsvg-2.0 >= 2.9.0\"") >&5 ++ { { $as_echo "$as_me:${as_lineno-$LINENO}: \$PKG_CONFIG --exists --print-errors \"librsvg-2.0 >= 2.9.0\""; } >&5 + ($PKG_CONFIG --exists --print-errors "librsvg-2.0 >= 2.9.0") 2>&5 + ac_status=$? +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); }; then ++ $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 ++ test $ac_status = 0; }; then + pkg_cv_SVG_CFLAGS=`$PKG_CONFIG --cflags "librsvg-2.0 >= 2.9.0" 2>/dev/null` + else + pkg_failed=yes +@@ -55433,11 +37311,11 @@ if test -n "$PKG_CONFIG"; then + pkg_cv_SVG_LIBS="$SVG_LIBS" + else + if test -n "$PKG_CONFIG" && \ +- { (echo "$as_me:$LINENO: \$PKG_CONFIG --exists --print-errors \"librsvg-2.0 >= 2.9.0\"") >&5 ++ { { $as_echo "$as_me:${as_lineno-$LINENO}: \$PKG_CONFIG --exists --print-errors \"librsvg-2.0 >= 2.9.0\""; } >&5 + ($PKG_CONFIG --exists --print-errors "librsvg-2.0 >= 2.9.0") 2>&5 + ac_status=$? +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); }; then ++ $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 ++ test $ac_status = 0; }; then + pkg_cv_SVG_LIBS=`$PKG_CONFIG --libs "librsvg-2.0 >= 2.9.0" 2>/dev/null` + else + pkg_failed=yes +@@ -55464,18 +37342,18 @@ fi + # Put the nasty error message in config.log where it belongs + echo "$SVG_PKG_ERRORS" >&5 + +- { echo "$as_me:$LINENO: result: no" >&5 +-echo "${ECHO_T}no" >&6; } +- { echo "$as_me:$LINENO: WARNING: SVG library not found" >&5 +-echo "$as_me: WARNING: SVG library not found" >&2;} ++ { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 ++$as_echo "no" >&6; } ++ { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: SVG library not found" >&5 ++$as_echo "$as_me: WARNING: SVG library not found" >&2;} + elif test $pkg_failed = untried; then +- { echo "$as_me:$LINENO: WARNING: SVG library not found" >&5 +-echo "$as_me: WARNING: SVG library not found" >&2;} ++ { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: SVG library not found" >&5 ++$as_echo "$as_me: WARNING: SVG library not found" >&2;} + else + SVG_CFLAGS=$pkg_cv_SVG_CFLAGS + SVG_LIBS=$pkg_cv_SVG_LIBS +- { echo "$as_me:$LINENO: result: yes" >&5 +-echo "${ECHO_T}yes" >&6; } ++ { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5 ++$as_echo "yes" >&6; } + + + for element in svg; do +@@ -55496,7 +37374,7 @@ fi + fi + + # Check whether --enable-snapshot was given. +-if test "${enable_snapshot+set}" = set; then ++if test "${enable_snapshot+set}" = set; then : + enableval=$enable_snapshot; + fi + +@@ -55508,7 +37386,7 @@ then + fi + + # Check whether --enable-qte was given. +-if test "${enable_qte+set}" = set; then ++if test "${enable_qte+set}" = set; then : + enableval=$enable_qte; + fi + +@@ -55516,7 +37394,7 @@ if test "${enable_qte}" = "yes" + then + + # Check whether --with-qte was given. +-if test "${with_qte+set}" = set; then ++if test "${with_qte+set}" = set; then : + withval=$with_qte; + fi + +@@ -55553,148 +37431,18 @@ fi + + NEED_QTE_MAIN=yes + CPPFLAGS="${CPPFLAGS_save} ${CXXFLAGS_qte}" +- +- +-for ac_header in qt.h jpeglib.h +-do +-as_ac_Header=`echo "ac_cv_header_$ac_header" | $as_tr_sh` +-if { as_var=$as_ac_Header; eval "test \"\${$as_var+set}\" = set"; }; then +- { echo "$as_me:$LINENO: checking for $ac_header" >&5 +-echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6; } +-if { as_var=$as_ac_Header; eval "test \"\${$as_var+set}\" = set"; }; then +- echo $ECHO_N "(cached) $ECHO_C" >&6 +-fi +-ac_res=`eval echo '${'$as_ac_Header'}'` +- { echo "$as_me:$LINENO: result: $ac_res" >&5 +-echo "${ECHO_T}$ac_res" >&6; } +-else +- # Is the header compilable? +-{ echo "$as_me:$LINENO: checking $ac_header usability" >&5 +-echo $ECHO_N "checking $ac_header usability... $ECHO_C" >&6; } +-cat >conftest.$ac_ext <<_ACEOF +-/* confdefs.h. */ +-_ACEOF +-cat confdefs.h >>conftest.$ac_ext +-cat >>conftest.$ac_ext <<_ACEOF +-/* end confdefs.h. */ +-$ac_includes_default +-#include <$ac_header> +-_ACEOF +-rm -f conftest.$ac_objext +-if { (ac_try="$ac_compile" +-case "(($ac_try" in +- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; +- *) ac_try_echo=$ac_try;; +-esac +-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 +- (eval "$ac_compile") 2>conftest.er1 +- ac_status=$? +- grep -v '^ *+' conftest.er1 >conftest.err +- rm -f conftest.er1 +- cat conftest.err >&5 +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); } && { +- test -z "$ac_c_werror_flag" || +- test ! -s conftest.err +- } && test -s conftest.$ac_objext; then +- ac_header_compiler=yes +-else +- echo "$as_me: failed program was:" >&5 +-sed 's/^/| /' conftest.$ac_ext >&5 +- +- ac_header_compiler=no +-fi +- +-rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext +-{ echo "$as_me:$LINENO: result: $ac_header_compiler" >&5 +-echo "${ECHO_T}$ac_header_compiler" >&6; } +- +-# Is the header present? +-{ echo "$as_me:$LINENO: checking $ac_header presence" >&5 +-echo $ECHO_N "checking $ac_header presence... $ECHO_C" >&6; } +-cat >conftest.$ac_ext <<_ACEOF +-/* confdefs.h. */ +-_ACEOF +-cat confdefs.h >>conftest.$ac_ext +-cat >>conftest.$ac_ext <<_ACEOF +-/* end confdefs.h. */ +-#include <$ac_header> +-_ACEOF +-if { (ac_try="$ac_cpp conftest.$ac_ext" +-case "(($ac_try" in +- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; +- *) ac_try_echo=$ac_try;; +-esac +-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 +- (eval "$ac_cpp conftest.$ac_ext") 2>conftest.er1 +- ac_status=$? +- grep -v '^ *+' conftest.er1 >conftest.err +- rm -f conftest.er1 +- cat conftest.err >&5 +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); } >/dev/null && { +- test -z "$ac_c_preproc_warn_flag$ac_c_werror_flag" || +- test ! -s conftest.err +- }; then +- ac_header_preproc=yes +-else +- echo "$as_me: failed program was:" >&5 +-sed 's/^/| /' conftest.$ac_ext >&5 +- +- ac_header_preproc=no +-fi +- +-rm -f conftest.err conftest.$ac_ext +-{ echo "$as_me:$LINENO: result: $ac_header_preproc" >&5 +-echo "${ECHO_T}$ac_header_preproc" >&6; } +- +-# So? What about this header? +-case $ac_header_compiler:$ac_header_preproc:$ac_c_preproc_warn_flag in +- yes:no: ) +- { echo "$as_me:$LINENO: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&5 +-echo "$as_me: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&2;} +- { echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the compiler's result" >&5 +-echo "$as_me: WARNING: $ac_header: proceeding with the compiler's result" >&2;} +- ac_header_preproc=yes +- ;; +- no:yes:* ) +- { echo "$as_me:$LINENO: WARNING: $ac_header: present but cannot be compiled" >&5 +-echo "$as_me: WARNING: $ac_header: present but cannot be compiled" >&2;} +- { echo "$as_me:$LINENO: WARNING: $ac_header: check for missing prerequisite headers?" >&5 +-echo "$as_me: WARNING: $ac_header: check for missing prerequisite headers?" >&2;} +- { echo "$as_me:$LINENO: WARNING: $ac_header: see the Autoconf documentation" >&5 +-echo "$as_me: WARNING: $ac_header: see the Autoconf documentation" >&2;} +- { echo "$as_me:$LINENO: WARNING: $ac_header: section \"Present But Cannot Be Compiled\"" >&5 +-echo "$as_me: WARNING: $ac_header: section \"Present But Cannot Be Compiled\"" >&2;} +- { echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the preprocessor's result" >&5 +-echo "$as_me: WARNING: $ac_header: proceeding with the preprocessor's result" >&2;} +- { echo "$as_me:$LINENO: WARNING: $ac_header: in the future, the compiler will take precedence" >&5 +-echo "$as_me: WARNING: $ac_header: in the future, the compiler will take precedence" >&2;} +- +- ;; +-esac +-{ echo "$as_me:$LINENO: checking for $ac_header" >&5 +-echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6; } +-if { as_var=$as_ac_Header; eval "test \"\${$as_var+set}\" = set"; }; then +- echo $ECHO_N "(cached) $ECHO_C" >&6 +-else +- eval "$as_ac_Header=\$ac_header_preproc" +-fi +-ac_res=`eval echo '${'$as_ac_Header'}'` +- { echo "$as_me:$LINENO: result: $ac_res" >&5 +-echo "${ECHO_T}$ac_res" >&6; } +- +-fi +-if test `eval echo '${'$as_ac_Header'}'` = yes; then ++ for ac_header in qt.h jpeglib.h ++do : ++ as_ac_Header=`$as_echo "ac_cv_header_$ac_header" | $as_tr_sh` ++ac_fn_c_check_header_mongrel "$LINENO" "$ac_header" "$as_ac_Header" "$ac_includes_default" ++if eval test \"x\$"$as_ac_Header"\" = x"yes"; then : + cat >>confdefs.h <<_ACEOF +-#define `echo "HAVE_$ac_header" | $as_tr_cpp` 1 ++#define `$as_echo "HAVE_$ac_header" | $as_tr_cpp` 1 + _ACEOF + + else + +- { { echo "$as_me:$LINENO: error: echo \"Cannot find QT Embedded development headers.\"" >&5 +-echo "$as_me: error: echo \"Cannot find QT Embedded development headers.\"" >&2;} +- { (exit 1); exit 1; }; } ++ as_fn_error $? "echo \"Cannot find QT Embedded development headers.\"" "$LINENO" 5 + + fi + +@@ -55705,7 +37453,7 @@ fi + + + # Check whether --enable-hd1000v was given. +-if test "${enable_hd1000v+set}" = set; then ++if test "${enable_hd1000v+set}" = set; then : + enableval=$enable_hd1000v; + fi + +@@ -55718,141 +37466,13 @@ ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' + ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' + ac_compiler_gnu=$ac_cv_cxx_compiler_gnu + +- +- +-for ac_header in cascade/graphics/CascadeScreen.h cascade/graphics/CascadeBitmap.h +-do +-as_ac_Header=`echo "ac_cv_header_$ac_header" | $as_tr_sh` +-if { as_var=$as_ac_Header; eval "test \"\${$as_var+set}\" = set"; }; then +- { echo "$as_me:$LINENO: checking for $ac_header" >&5 +-echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6; } +-if { as_var=$as_ac_Header; eval "test \"\${$as_var+set}\" = set"; }; then +- echo $ECHO_N "(cached) $ECHO_C" >&6 +-fi +-ac_res=`eval echo '${'$as_ac_Header'}'` +- { echo "$as_me:$LINENO: result: $ac_res" >&5 +-echo "${ECHO_T}$ac_res" >&6; } +-else +- # Is the header compilable? +-{ echo "$as_me:$LINENO: checking $ac_header usability" >&5 +-echo $ECHO_N "checking $ac_header usability... $ECHO_C" >&6; } +-cat >conftest.$ac_ext <<_ACEOF +-/* confdefs.h. */ +-_ACEOF +-cat confdefs.h >>conftest.$ac_ext +-cat >>conftest.$ac_ext <<_ACEOF +-/* end confdefs.h. */ +-$ac_includes_default +-#include <$ac_header> +-_ACEOF +-rm -f conftest.$ac_objext +-if { (ac_try="$ac_compile" +-case "(($ac_try" in +- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; +- *) ac_try_echo=$ac_try;; +-esac +-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 +- (eval "$ac_compile") 2>conftest.er1 +- ac_status=$? +- grep -v '^ *+' conftest.er1 >conftest.err +- rm -f conftest.er1 +- cat conftest.err >&5 +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); } && { +- test -z "$ac_cxx_werror_flag" || +- test ! -s conftest.err +- } && test -s conftest.$ac_objext; then +- ac_header_compiler=yes +-else +- echo "$as_me: failed program was:" >&5 +-sed 's/^/| /' conftest.$ac_ext >&5 +- +- ac_header_compiler=no +-fi +- +-rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext +-{ echo "$as_me:$LINENO: result: $ac_header_compiler" >&5 +-echo "${ECHO_T}$ac_header_compiler" >&6; } +- +-# Is the header present? +-{ echo "$as_me:$LINENO: checking $ac_header presence" >&5 +-echo $ECHO_N "checking $ac_header presence... $ECHO_C" >&6; } +-cat >conftest.$ac_ext <<_ACEOF +-/* confdefs.h. */ +-_ACEOF +-cat confdefs.h >>conftest.$ac_ext +-cat >>conftest.$ac_ext <<_ACEOF +-/* end confdefs.h. */ +-#include <$ac_header> +-_ACEOF +-if { (ac_try="$ac_cpp conftest.$ac_ext" +-case "(($ac_try" in +- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; +- *) ac_try_echo=$ac_try;; +-esac +-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 +- (eval "$ac_cpp conftest.$ac_ext") 2>conftest.er1 +- ac_status=$? +- grep -v '^ *+' conftest.er1 >conftest.err +- rm -f conftest.er1 +- cat conftest.err >&5 +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); } >/dev/null && { +- test -z "$ac_cxx_preproc_warn_flag$ac_cxx_werror_flag" || +- test ! -s conftest.err +- }; then +- ac_header_preproc=yes +-else +- echo "$as_me: failed program was:" >&5 +-sed 's/^/| /' conftest.$ac_ext >&5 +- +- ac_header_preproc=no +-fi +- +-rm -f conftest.err conftest.$ac_ext +-{ echo "$as_me:$LINENO: result: $ac_header_preproc" >&5 +-echo "${ECHO_T}$ac_header_preproc" >&6; } +- +-# So? What about this header? +-case $ac_header_compiler:$ac_header_preproc:$ac_cxx_preproc_warn_flag in +- yes:no: ) +- { echo "$as_me:$LINENO: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&5 +-echo "$as_me: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&2;} +- { echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the compiler's result" >&5 +-echo "$as_me: WARNING: $ac_header: proceeding with the compiler's result" >&2;} +- ac_header_preproc=yes +- ;; +- no:yes:* ) +- { echo "$as_me:$LINENO: WARNING: $ac_header: present but cannot be compiled" >&5 +-echo "$as_me: WARNING: $ac_header: present but cannot be compiled" >&2;} +- { echo "$as_me:$LINENO: WARNING: $ac_header: check for missing prerequisite headers?" >&5 +-echo "$as_me: WARNING: $ac_header: check for missing prerequisite headers?" >&2;} +- { echo "$as_me:$LINENO: WARNING: $ac_header: see the Autoconf documentation" >&5 +-echo "$as_me: WARNING: $ac_header: see the Autoconf documentation" >&2;} +- { echo "$as_me:$LINENO: WARNING: $ac_header: section \"Present But Cannot Be Compiled\"" >&5 +-echo "$as_me: WARNING: $ac_header: section \"Present But Cannot Be Compiled\"" >&2;} +- { echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the preprocessor's result" >&5 +-echo "$as_me: WARNING: $ac_header: proceeding with the preprocessor's result" >&2;} +- { echo "$as_me:$LINENO: WARNING: $ac_header: in the future, the compiler will take precedence" >&5 +-echo "$as_me: WARNING: $ac_header: in the future, the compiler will take precedence" >&2;} +- +- ;; +-esac +-{ echo "$as_me:$LINENO: checking for $ac_header" >&5 +-echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6; } +-if { as_var=$as_ac_Header; eval "test \"\${$as_var+set}\" = set"; }; then +- echo $ECHO_N "(cached) $ECHO_C" >&6 +-else +- eval "$as_ac_Header=\$ac_header_preproc" +-fi +-ac_res=`eval echo '${'$as_ac_Header'}'` +- { echo "$as_me:$LINENO: result: $ac_res" >&5 +-echo "${ECHO_T}$ac_res" >&6; } +- +-fi +-if test `eval echo '${'$as_ac_Header'}'` = yes; then ++ for ac_header in cascade/graphics/CascadeScreen.h cascade/graphics/CascadeBitmap.h ++do : ++ as_ac_Header=`$as_echo "ac_cv_header_$ac_header" | $as_tr_sh` ++ac_fn_cxx_check_header_mongrel "$LINENO" "$ac_header" "$as_ac_Header" "$ac_includes_default" ++if eval test \"x\$"$as_ac_Header"\" = x"yes"; then : + cat >>confdefs.h <<_ACEOF +-#define `echo "HAVE_$ac_header" | $as_tr_cpp` 1 ++#define `$as_echo "HAVE_$ac_header" | $as_tr_cpp` 1 + _ACEOF + + can_build_roku="yes" +@@ -55860,8 +37480,8 @@ _ACEOF + else + + can_build_roku="no" +- { echo "$as_me:$LINENO: WARNING: Not building Roku HD1000 compatible video output" >&5 +-echo "$as_me: WARNING: Not building Roku HD1000 compatible video output" >&2;} ++ { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: Not building Roku HD1000 compatible video output" >&5 ++$as_echo "$as_me: WARNING: Not building Roku HD1000 compatible video output" >&2;} + + fi + +@@ -55881,319 +37501,42 @@ done + fi + ac_ext=c + ac_cpp='$CPP $CPPFLAGS' +-ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' +-ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' +-ac_compiler_gnu=$ac_cv_c_compiler_gnu +- +-fi +- +-# Check whether --enable-directx was given. +-if test "${enable_directx+set}" = set; then +- enableval=$enable_directx; +-fi +- +-if test "${enable_directx}" != "no" +-then +- if test "${SYS}" = "mingw32" -o "${SYS}" = "mingwce" -o "${SYS}" = "cygwin" +- then +- +-# Check whether --with-directx was given. +-if test "${with_directx+set}" = set; then +- withval=$with_directx; +-fi +- +- if test -z "${with_directx}" +- then +- +-for ac_header in ddraw.h +-do +-as_ac_Header=`echo "ac_cv_header_$ac_header" | $as_tr_sh` +-if { as_var=$as_ac_Header; eval "test \"\${$as_var+set}\" = set"; }; then +- { echo "$as_me:$LINENO: checking for $ac_header" >&5 +-echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6; } +-if { as_var=$as_ac_Header; eval "test \"\${$as_var+set}\" = set"; }; then +- echo $ECHO_N "(cached) $ECHO_C" >&6 +-fi +-ac_res=`eval echo '${'$as_ac_Header'}'` +- { echo "$as_me:$LINENO: result: $ac_res" >&5 +-echo "${ECHO_T}$ac_res" >&6; } +-else +- # Is the header compilable? +-{ echo "$as_me:$LINENO: checking $ac_header usability" >&5 +-echo $ECHO_N "checking $ac_header usability... $ECHO_C" >&6; } +-cat >conftest.$ac_ext <<_ACEOF +-/* confdefs.h. */ +-_ACEOF +-cat confdefs.h >>conftest.$ac_ext +-cat >>conftest.$ac_ext <<_ACEOF +-/* end confdefs.h. */ +-$ac_includes_default +-#include <$ac_header> +-_ACEOF +-rm -f conftest.$ac_objext +-if { (ac_try="$ac_compile" +-case "(($ac_try" in +- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; +- *) ac_try_echo=$ac_try;; +-esac +-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 +- (eval "$ac_compile") 2>conftest.er1 +- ac_status=$? +- grep -v '^ *+' conftest.er1 >conftest.err +- rm -f conftest.er1 +- cat conftest.err >&5 +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); } && { +- test -z "$ac_c_werror_flag" || +- test ! -s conftest.err +- } && test -s conftest.$ac_objext; then +- ac_header_compiler=yes +-else +- echo "$as_me: failed program was:" >&5 +-sed 's/^/| /' conftest.$ac_ext >&5 +- +- ac_header_compiler=no +-fi +- +-rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext +-{ echo "$as_me:$LINENO: result: $ac_header_compiler" >&5 +-echo "${ECHO_T}$ac_header_compiler" >&6; } +- +-# Is the header present? +-{ echo "$as_me:$LINENO: checking $ac_header presence" >&5 +-echo $ECHO_N "checking $ac_header presence... $ECHO_C" >&6; } +-cat >conftest.$ac_ext <<_ACEOF +-/* confdefs.h. */ +-_ACEOF +-cat confdefs.h >>conftest.$ac_ext +-cat >>conftest.$ac_ext <<_ACEOF +-/* end confdefs.h. */ +-#include <$ac_header> +-_ACEOF +-if { (ac_try="$ac_cpp conftest.$ac_ext" +-case "(($ac_try" in +- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; +- *) ac_try_echo=$ac_try;; +-esac +-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 +- (eval "$ac_cpp conftest.$ac_ext") 2>conftest.er1 +- ac_status=$? +- grep -v '^ *+' conftest.er1 >conftest.err +- rm -f conftest.er1 +- cat conftest.err >&5 +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); } >/dev/null && { +- test -z "$ac_c_preproc_warn_flag$ac_c_werror_flag" || +- test ! -s conftest.err +- }; then +- ac_header_preproc=yes +-else +- echo "$as_me: failed program was:" >&5 +-sed 's/^/| /' conftest.$ac_ext >&5 +- +- ac_header_preproc=no +-fi +- +-rm -f conftest.err conftest.$ac_ext +-{ echo "$as_me:$LINENO: result: $ac_header_preproc" >&5 +-echo "${ECHO_T}$ac_header_preproc" >&6; } +- +-# So? What about this header? +-case $ac_header_compiler:$ac_header_preproc:$ac_c_preproc_warn_flag in +- yes:no: ) +- { echo "$as_me:$LINENO: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&5 +-echo "$as_me: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&2;} +- { echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the compiler's result" >&5 +-echo "$as_me: WARNING: $ac_header: proceeding with the compiler's result" >&2;} +- ac_header_preproc=yes +- ;; +- no:yes:* ) +- { echo "$as_me:$LINENO: WARNING: $ac_header: present but cannot be compiled" >&5 +-echo "$as_me: WARNING: $ac_header: present but cannot be compiled" >&2;} +- { echo "$as_me:$LINENO: WARNING: $ac_header: check for missing prerequisite headers?" >&5 +-echo "$as_me: WARNING: $ac_header: check for missing prerequisite headers?" >&2;} +- { echo "$as_me:$LINENO: WARNING: $ac_header: see the Autoconf documentation" >&5 +-echo "$as_me: WARNING: $ac_header: see the Autoconf documentation" >&2;} +- { echo "$as_me:$LINENO: WARNING: $ac_header: section \"Present But Cannot Be Compiled\"" >&5 +-echo "$as_me: WARNING: $ac_header: section \"Present But Cannot Be Compiled\"" >&2;} +- { echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the preprocessor's result" >&5 +-echo "$as_me: WARNING: $ac_header: proceeding with the preprocessor's result" >&2;} +- { echo "$as_me:$LINENO: WARNING: $ac_header: in the future, the compiler will take precedence" >&5 +-echo "$as_me: WARNING: $ac_header: in the future, the compiler will take precedence" >&2;} +- +- ;; +-esac +-{ echo "$as_me:$LINENO: checking for $ac_header" >&5 +-echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6; } +-if { as_var=$as_ac_Header; eval "test \"\${$as_var+set}\" = set"; }; then +- echo $ECHO_N "(cached) $ECHO_C" >&6 +-else +- eval "$as_ac_Header=\$ac_header_preproc" +-fi +-ac_res=`eval echo '${'$as_ac_Header'}'` +- { echo "$as_me:$LINENO: result: $ac_res" >&5 +-echo "${ECHO_T}$ac_res" >&6; } +- +-fi +-if test `eval echo '${'$as_ac_Header'}'` = yes; then +- cat >>confdefs.h <<_ACEOF +-#define `echo "HAVE_$ac_header" | $as_tr_cpp` 1 +-_ACEOF +- +- PLUGINS="${PLUGINS} vout_directx aout_directx" +- +- +- for element in vout_directx; do +- eval "LDFLAGS_${element}="'"'"-lgdi32 "'$'"{LDFLAGS_${element}} "'"' +- am_modules_with_ldflags="${am_modules_with_ldflags} ${element}" +- done +- +- +-fi +- +-done +- +- +-for ac_header in GL/gl.h +-do +-as_ac_Header=`echo "ac_cv_header_$ac_header" | $as_tr_sh` +-if { as_var=$as_ac_Header; eval "test \"\${$as_var+set}\" = set"; }; then +- { echo "$as_me:$LINENO: checking for $ac_header" >&5 +-echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6; } +-if { as_var=$as_ac_Header; eval "test \"\${$as_var+set}\" = set"; }; then +- echo $ECHO_N "(cached) $ECHO_C" >&6 +-fi +-ac_res=`eval echo '${'$as_ac_Header'}'` +- { echo "$as_me:$LINENO: result: $ac_res" >&5 +-echo "${ECHO_T}$ac_res" >&6; } +-else +- # Is the header compilable? +-{ echo "$as_me:$LINENO: checking $ac_header usability" >&5 +-echo $ECHO_N "checking $ac_header usability... $ECHO_C" >&6; } +-cat >conftest.$ac_ext <<_ACEOF +-/* confdefs.h. */ +-_ACEOF +-cat confdefs.h >>conftest.$ac_ext +-cat >>conftest.$ac_ext <<_ACEOF +-/* end confdefs.h. */ +-$ac_includes_default +-#include <$ac_header> +-_ACEOF +-rm -f conftest.$ac_objext +-if { (ac_try="$ac_compile" +-case "(($ac_try" in +- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; +- *) ac_try_echo=$ac_try;; +-esac +-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 +- (eval "$ac_compile") 2>conftest.er1 +- ac_status=$? +- grep -v '^ *+' conftest.er1 >conftest.err +- rm -f conftest.er1 +- cat conftest.err >&5 +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); } && { +- test -z "$ac_c_werror_flag" || +- test ! -s conftest.err +- } && test -s conftest.$ac_objext; then +- ac_header_compiler=yes +-else +- echo "$as_me: failed program was:" >&5 +-sed 's/^/| /' conftest.$ac_ext >&5 +- +- ac_header_compiler=no +-fi +- +-rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext +-{ echo "$as_me:$LINENO: result: $ac_header_compiler" >&5 +-echo "${ECHO_T}$ac_header_compiler" >&6; } +- +-# Is the header present? +-{ echo "$as_me:$LINENO: checking $ac_header presence" >&5 +-echo $ECHO_N "checking $ac_header presence... $ECHO_C" >&6; } +-cat >conftest.$ac_ext <<_ACEOF +-/* confdefs.h. */ +-_ACEOF +-cat confdefs.h >>conftest.$ac_ext +-cat >>conftest.$ac_ext <<_ACEOF +-/* end confdefs.h. */ +-#include <$ac_header> +-_ACEOF +-if { (ac_try="$ac_cpp conftest.$ac_ext" +-case "(($ac_try" in +- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; +- *) ac_try_echo=$ac_try;; +-esac +-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 +- (eval "$ac_cpp conftest.$ac_ext") 2>conftest.er1 +- ac_status=$? +- grep -v '^ *+' conftest.er1 >conftest.err +- rm -f conftest.er1 +- cat conftest.err >&5 +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); } >/dev/null && { +- test -z "$ac_c_preproc_warn_flag$ac_c_werror_flag" || +- test ! -s conftest.err +- }; then +- ac_header_preproc=yes +-else +- echo "$as_me: failed program was:" >&5 +-sed 's/^/| /' conftest.$ac_ext >&5 ++ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' ++ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' ++ac_compiler_gnu=$ac_cv_c_compiler_gnu + +- ac_header_preproc=no + fi + +-rm -f conftest.err conftest.$ac_ext +-{ echo "$as_me:$LINENO: result: $ac_header_preproc" >&5 +-echo "${ECHO_T}$ac_header_preproc" >&6; } ++# Check whether --enable-directx was given. ++if test "${enable_directx+set}" = set; then : ++ enableval=$enable_directx; ++fi + +-# So? What about this header? +-case $ac_header_compiler:$ac_header_preproc:$ac_c_preproc_warn_flag in +- yes:no: ) +- { echo "$as_me:$LINENO: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&5 +-echo "$as_me: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&2;} +- { echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the compiler's result" >&5 +-echo "$as_me: WARNING: $ac_header: proceeding with the compiler's result" >&2;} +- ac_header_preproc=yes +- ;; +- no:yes:* ) +- { echo "$as_me:$LINENO: WARNING: $ac_header: present but cannot be compiled" >&5 +-echo "$as_me: WARNING: $ac_header: present but cannot be compiled" >&2;} +- { echo "$as_me:$LINENO: WARNING: $ac_header: check for missing prerequisite headers?" >&5 +-echo "$as_me: WARNING: $ac_header: check for missing prerequisite headers?" >&2;} +- { echo "$as_me:$LINENO: WARNING: $ac_header: see the Autoconf documentation" >&5 +-echo "$as_me: WARNING: $ac_header: see the Autoconf documentation" >&2;} +- { echo "$as_me:$LINENO: WARNING: $ac_header: section \"Present But Cannot Be Compiled\"" >&5 +-echo "$as_me: WARNING: $ac_header: section \"Present But Cannot Be Compiled\"" >&2;} +- { echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the preprocessor's result" >&5 +-echo "$as_me: WARNING: $ac_header: proceeding with the preprocessor's result" >&2;} +- { echo "$as_me:$LINENO: WARNING: $ac_header: in the future, the compiler will take precedence" >&5 +-echo "$as_me: WARNING: $ac_header: in the future, the compiler will take precedence" >&2;} ++if test "${enable_directx}" != "no" ++then ++ if test "${SYS}" = "mingw32" -o "${SYS}" = "mingwce" -o "${SYS}" = "cygwin" ++ then + +- ;; +-esac +-{ echo "$as_me:$LINENO: checking for $ac_header" >&5 +-echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6; } +-if { as_var=$as_ac_Header; eval "test \"\${$as_var+set}\" = set"; }; then +- echo $ECHO_N "(cached) $ECHO_C" >&6 +-else +- eval "$as_ac_Header=\$ac_header_preproc" ++# Check whether --with-directx was given. ++if test "${with_directx+set}" = set; then : ++ withval=$with_directx; + fi +-ac_res=`eval echo '${'$as_ac_Header'}'` +- { echo "$as_me:$LINENO: result: $ac_res" >&5 +-echo "${ECHO_T}$ac_res" >&6; } + +-fi +-if test `eval echo '${'$as_ac_Header'}'` = yes; then ++ if test -z "${with_directx}" ++ then ++ for ac_header in ddraw.h ++do : ++ ac_fn_c_check_header_mongrel "$LINENO" "ddraw.h" "ac_cv_header_ddraw_h" "$ac_includes_default" ++if test "x$ac_cv_header_ddraw_h" = xyes; then : + cat >>confdefs.h <<_ACEOF +-#define `echo "HAVE_$ac_header" | $as_tr_cpp` 1 ++#define HAVE_DDRAW_H 1 + _ACEOF + +- PLUGINS="${PLUGINS} glwin32" ++ PLUGINS="${PLUGINS} vout_directx aout_directx" + + +- for element in glwin32; do +- eval "LDFLAGS_${element}="'"'"-lopengl32 -lgdi32 "'$'"{LDFLAGS_${element}} "'"' ++ for element in vout_directx; do ++ eval "LDFLAGS_${element}="'"'"-lgdi32 "'$'"{LDFLAGS_${element}} "'"' + am_modules_with_ldflags="${am_modules_with_ldflags} ${element}" + done + +@@ -56202,140 +37545,33 @@ fi + + done + +- +-for ac_header in d3d9.h +-do +-as_ac_Header=`echo "ac_cv_header_$ac_header" | $as_tr_sh` +-if { as_var=$as_ac_Header; eval "test \"\${$as_var+set}\" = set"; }; then +- { echo "$as_me:$LINENO: checking for $ac_header" >&5 +-echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6; } +-if { as_var=$as_ac_Header; eval "test \"\${$as_var+set}\" = set"; }; then +- echo $ECHO_N "(cached) $ECHO_C" >&6 +-fi +-ac_res=`eval echo '${'$as_ac_Header'}'` +- { echo "$as_me:$LINENO: result: $ac_res" >&5 +-echo "${ECHO_T}$ac_res" >&6; } +-else +- # Is the header compilable? +-{ echo "$as_me:$LINENO: checking $ac_header usability" >&5 +-echo $ECHO_N "checking $ac_header usability... $ECHO_C" >&6; } +-cat >conftest.$ac_ext <<_ACEOF +-/* confdefs.h. */ +-_ACEOF +-cat confdefs.h >>conftest.$ac_ext +-cat >>conftest.$ac_ext <<_ACEOF +-/* end confdefs.h. */ +-$ac_includes_default +-#include <$ac_header> ++ for ac_header in GL/gl.h ++do : ++ ac_fn_c_check_header_mongrel "$LINENO" "GL/gl.h" "ac_cv_header_GL_gl_h" "$ac_includes_default" ++if test "x$ac_cv_header_GL_gl_h" = xyes; then : ++ cat >>confdefs.h <<_ACEOF ++#define HAVE_GL_GL_H 1 + _ACEOF +-rm -f conftest.$ac_objext +-if { (ac_try="$ac_compile" +-case "(($ac_try" in +- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; +- *) ac_try_echo=$ac_try;; +-esac +-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 +- (eval "$ac_compile") 2>conftest.er1 +- ac_status=$? +- grep -v '^ *+' conftest.er1 >conftest.err +- rm -f conftest.er1 +- cat conftest.err >&5 +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); } && { +- test -z "$ac_c_werror_flag" || +- test ! -s conftest.err +- } && test -s conftest.$ac_objext; then +- ac_header_compiler=yes +-else +- echo "$as_me: failed program was:" >&5 +-sed 's/^/| /' conftest.$ac_ext >&5 + +- ac_header_compiler=no +-fi +- +-rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext +-{ echo "$as_me:$LINENO: result: $ac_header_compiler" >&5 +-echo "${ECHO_T}$ac_header_compiler" >&6; } +- +-# Is the header present? +-{ echo "$as_me:$LINENO: checking $ac_header presence" >&5 +-echo $ECHO_N "checking $ac_header presence... $ECHO_C" >&6; } +-cat >conftest.$ac_ext <<_ACEOF +-/* confdefs.h. */ +-_ACEOF +-cat confdefs.h >>conftest.$ac_ext +-cat >>conftest.$ac_ext <<_ACEOF +-/* end confdefs.h. */ +-#include <$ac_header> +-_ACEOF +-if { (ac_try="$ac_cpp conftest.$ac_ext" +-case "(($ac_try" in +- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; +- *) ac_try_echo=$ac_try;; +-esac +-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 +- (eval "$ac_cpp conftest.$ac_ext") 2>conftest.er1 +- ac_status=$? +- grep -v '^ *+' conftest.er1 >conftest.err +- rm -f conftest.er1 +- cat conftest.err >&5 +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); } >/dev/null && { +- test -z "$ac_c_preproc_warn_flag$ac_c_werror_flag" || +- test ! -s conftest.err +- }; then +- ac_header_preproc=yes +-else +- echo "$as_me: failed program was:" >&5 +-sed 's/^/| /' conftest.$ac_ext >&5 ++ PLUGINS="${PLUGINS} glwin32" + +- ac_header_preproc=no +-fi + +-rm -f conftest.err conftest.$ac_ext +-{ echo "$as_me:$LINENO: result: $ac_header_preproc" >&5 +-echo "${ECHO_T}$ac_header_preproc" >&6; } ++ for element in glwin32; do ++ eval "LDFLAGS_${element}="'"'"-lopengl32 -lgdi32 "'$'"{LDFLAGS_${element}} "'"' ++ am_modules_with_ldflags="${am_modules_with_ldflags} ${element}" ++ done + +-# So? What about this header? +-case $ac_header_compiler:$ac_header_preproc:$ac_c_preproc_warn_flag in +- yes:no: ) +- { echo "$as_me:$LINENO: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&5 +-echo "$as_me: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&2;} +- { echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the compiler's result" >&5 +-echo "$as_me: WARNING: $ac_header: proceeding with the compiler's result" >&2;} +- ac_header_preproc=yes +- ;; +- no:yes:* ) +- { echo "$as_me:$LINENO: WARNING: $ac_header: present but cannot be compiled" >&5 +-echo "$as_me: WARNING: $ac_header: present but cannot be compiled" >&2;} +- { echo "$as_me:$LINENO: WARNING: $ac_header: check for missing prerequisite headers?" >&5 +-echo "$as_me: WARNING: $ac_header: check for missing prerequisite headers?" >&2;} +- { echo "$as_me:$LINENO: WARNING: $ac_header: see the Autoconf documentation" >&5 +-echo "$as_me: WARNING: $ac_header: see the Autoconf documentation" >&2;} +- { echo "$as_me:$LINENO: WARNING: $ac_header: section \"Present But Cannot Be Compiled\"" >&5 +-echo "$as_me: WARNING: $ac_header: section \"Present But Cannot Be Compiled\"" >&2;} +- { echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the preprocessor's result" >&5 +-echo "$as_me: WARNING: $ac_header: proceeding with the preprocessor's result" >&2;} +- { echo "$as_me:$LINENO: WARNING: $ac_header: in the future, the compiler will take precedence" >&5 +-echo "$as_me: WARNING: $ac_header: in the future, the compiler will take precedence" >&2;} + +- ;; +-esac +-{ echo "$as_me:$LINENO: checking for $ac_header" >&5 +-echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6; } +-if { as_var=$as_ac_Header; eval "test \"\${$as_var+set}\" = set"; }; then +- echo $ECHO_N "(cached) $ECHO_C" >&6 +-else +- eval "$as_ac_Header=\$ac_header_preproc" + fi +-ac_res=`eval echo '${'$as_ac_Header'}'` +- { echo "$as_me:$LINENO: result: $ac_res" >&5 +-echo "${ECHO_T}$ac_res" >&6; } + +-fi +-if test `eval echo '${'$as_ac_Header'}'` = yes; then ++done ++ ++ for ac_header in d3d9.h ++do : ++ ac_fn_c_check_header_mongrel "$LINENO" "d3d9.h" "ac_cv_header_d3d9_h" "$ac_includes_default" ++if test "x$ac_cv_header_d3d9_h" = xyes; then : + cat >>confdefs.h <<_ACEOF +-#define `echo "HAVE_$ac_header" | $as_tr_cpp` 1 ++#define HAVE_D3D9_H 1 + _ACEOF + + PLUGINS="${PLUGINS} direct3d" +@@ -56352,8 +37588,8 @@ fi + done + + else +- { echo "$as_me:$LINENO: checking for directX headers in ${with_directx}" >&5 +-echo $ECHO_N "checking for directX headers in ${with_directx}... $ECHO_C" >&6; } ++ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for directX headers in ${with_directx}" >&5 ++$as_echo_n "checking for directX headers in ${with_directx}... " >&6; } + if test -f ${with_directx}/ddraw.h + then + +@@ -56371,160 +37607,30 @@ echo $ECHO_N "checking for directX headers in ${with_directx}... $ECHO_C" >&6; } + am_modules_with_ldflags="${am_modules_with_ldflags} ${element}" + done + +- { echo "$as_me:$LINENO: result: yes" >&5 +-echo "${ECHO_T}yes" >&6; } ++ { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5 ++$as_echo "yes" >&6; } + else +- { echo "$as_me:$LINENO: result: no" >&5 +-echo "${ECHO_T}no" >&6; } +- { { echo "$as_me:$LINENO: error: Cannot find ${with_directx}/ddraw.h!" >&5 +-echo "$as_me: error: Cannot find ${with_directx}/ddraw.h!" >&2;} +- { (exit 1); exit 1; }; } ++ { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 ++$as_echo "no" >&6; } ++ as_fn_error $? "Cannot find ${with_directx}/ddraw.h!" "$LINENO" 5 + fi + fi + fi + fi + + # Check whether --enable-fb was given. +-if test "${enable_fb+set}" = set; then ++if test "${enable_fb+set}" = set; then : + enableval=$enable_fb; + fi + + if test "${enable_fb}" != "no" + then +- +-for ac_header in linux/fb.h +-do +-as_ac_Header=`echo "ac_cv_header_$ac_header" | $as_tr_sh` +-if { as_var=$as_ac_Header; eval "test \"\${$as_var+set}\" = set"; }; then +- { echo "$as_me:$LINENO: checking for $ac_header" >&5 +-echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6; } +-if { as_var=$as_ac_Header; eval "test \"\${$as_var+set}\" = set"; }; then +- echo $ECHO_N "(cached) $ECHO_C" >&6 +-fi +-ac_res=`eval echo '${'$as_ac_Header'}'` +- { echo "$as_me:$LINENO: result: $ac_res" >&5 +-echo "${ECHO_T}$ac_res" >&6; } +-else +- # Is the header compilable? +-{ echo "$as_me:$LINENO: checking $ac_header usability" >&5 +-echo $ECHO_N "checking $ac_header usability... $ECHO_C" >&6; } +-cat >conftest.$ac_ext <<_ACEOF +-/* confdefs.h. */ +-_ACEOF +-cat confdefs.h >>conftest.$ac_ext +-cat >>conftest.$ac_ext <<_ACEOF +-/* end confdefs.h. */ +-$ac_includes_default +-#include <$ac_header> +-_ACEOF +-rm -f conftest.$ac_objext +-if { (ac_try="$ac_compile" +-case "(($ac_try" in +- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; +- *) ac_try_echo=$ac_try;; +-esac +-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 +- (eval "$ac_compile") 2>conftest.er1 +- ac_status=$? +- grep -v '^ *+' conftest.er1 >conftest.err +- rm -f conftest.er1 +- cat conftest.err >&5 +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); } && { +- test -z "$ac_c_werror_flag" || +- test ! -s conftest.err +- } && test -s conftest.$ac_objext; then +- ac_header_compiler=yes +-else +- echo "$as_me: failed program was:" >&5 +-sed 's/^/| /' conftest.$ac_ext >&5 +- +- ac_header_compiler=no +-fi +- +-rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext +-{ echo "$as_me:$LINENO: result: $ac_header_compiler" >&5 +-echo "${ECHO_T}$ac_header_compiler" >&6; } +- +-# Is the header present? +-{ echo "$as_me:$LINENO: checking $ac_header presence" >&5 +-echo $ECHO_N "checking $ac_header presence... $ECHO_C" >&6; } +-cat >conftest.$ac_ext <<_ACEOF +-/* confdefs.h. */ +-_ACEOF +-cat confdefs.h >>conftest.$ac_ext +-cat >>conftest.$ac_ext <<_ACEOF +-/* end confdefs.h. */ +-#include <$ac_header> +-_ACEOF +-if { (ac_try="$ac_cpp conftest.$ac_ext" +-case "(($ac_try" in +- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; +- *) ac_try_echo=$ac_try;; +-esac +-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 +- (eval "$ac_cpp conftest.$ac_ext") 2>conftest.er1 +- ac_status=$? +- grep -v '^ *+' conftest.er1 >conftest.err +- rm -f conftest.er1 +- cat conftest.err >&5 +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); } >/dev/null && { +- test -z "$ac_c_preproc_warn_flag$ac_c_werror_flag" || +- test ! -s conftest.err +- }; then +- ac_header_preproc=yes +-else +- echo "$as_me: failed program was:" >&5 +-sed 's/^/| /' conftest.$ac_ext >&5 +- +- ac_header_preproc=no +-fi +- +-rm -f conftest.err conftest.$ac_ext +-{ echo "$as_me:$LINENO: result: $ac_header_preproc" >&5 +-echo "${ECHO_T}$ac_header_preproc" >&6; } +- +-# So? What about this header? +-case $ac_header_compiler:$ac_header_preproc:$ac_c_preproc_warn_flag in +- yes:no: ) +- { echo "$as_me:$LINENO: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&5 +-echo "$as_me: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&2;} +- { echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the compiler's result" >&5 +-echo "$as_me: WARNING: $ac_header: proceeding with the compiler's result" >&2;} +- ac_header_preproc=yes +- ;; +- no:yes:* ) +- { echo "$as_me:$LINENO: WARNING: $ac_header: present but cannot be compiled" >&5 +-echo "$as_me: WARNING: $ac_header: present but cannot be compiled" >&2;} +- { echo "$as_me:$LINENO: WARNING: $ac_header: check for missing prerequisite headers?" >&5 +-echo "$as_me: WARNING: $ac_header: check for missing prerequisite headers?" >&2;} +- { echo "$as_me:$LINENO: WARNING: $ac_header: see the Autoconf documentation" >&5 +-echo "$as_me: WARNING: $ac_header: see the Autoconf documentation" >&2;} +- { echo "$as_me:$LINENO: WARNING: $ac_header: section \"Present But Cannot Be Compiled\"" >&5 +-echo "$as_me: WARNING: $ac_header: section \"Present But Cannot Be Compiled\"" >&2;} +- { echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the preprocessor's result" >&5 +-echo "$as_me: WARNING: $ac_header: proceeding with the preprocessor's result" >&2;} +- { echo "$as_me:$LINENO: WARNING: $ac_header: in the future, the compiler will take precedence" >&5 +-echo "$as_me: WARNING: $ac_header: in the future, the compiler will take precedence" >&2;} +- +- ;; +-esac +-{ echo "$as_me:$LINENO: checking for $ac_header" >&5 +-echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6; } +-if { as_var=$as_ac_Header; eval "test \"\${$as_var+set}\" = set"; }; then +- echo $ECHO_N "(cached) $ECHO_C" >&6 +-else +- eval "$as_ac_Header=\$ac_header_preproc" +-fi +-ac_res=`eval echo '${'$as_ac_Header'}'` +- { echo "$as_me:$LINENO: result: $ac_res" >&5 +-echo "${ECHO_T}$ac_res" >&6; } +- +-fi +-if test `eval echo '${'$as_ac_Header'}'` = yes; then ++ for ac_header in linux/fb.h ++do : ++ ac_fn_c_check_header_mongrel "$LINENO" "linux/fb.h" "ac_cv_header_linux_fb_h" "$ac_includes_default" ++if test "x$ac_cv_header_linux_fb_h" = xyes; then : + cat >>confdefs.h <<_ACEOF +-#define `echo "HAVE_$ac_header" | $as_tr_cpp` 1 ++#define HAVE_LINUX_FB_H 1 + _ACEOF + + +@@ -56538,7 +37644,7 @@ done + fi + + # Check whether --enable-mga was given. +-if test "${enable_mga+set}" = set; then ++if test "${enable_mga+set}" = set; then : + enableval=$enable_mga; if test "${enable_mga}" = "yes" + then + +@@ -56549,7 +37655,7 @@ fi + + + # Check whether --enable-svgalib was given. +-if test "${enable_svgalib+set}" = set; then ++if test "${enable_svgalib+set}" = set; then : + enableval=$enable_svgalib; + fi + +@@ -56567,7 +37673,7 @@ then + fi + + # Check whether --enable-directfb was given. +-if test "${enable_directfb+set}" = set; then ++if test "${enable_directfb+set}" = set; then : + enableval=$enable_directfb; + fi + +@@ -56577,132 +37683,8 @@ then + then + CPPFLAGS_save="${CPPFLAGS}" + CPPFLAGS="${CPPFLAGS} -I${with_directfb}/include" +- if test "${ac_cv_header_directfb_h+set}" = set; then +- { echo "$as_me:$LINENO: checking for directfb.h" >&5 +-echo $ECHO_N "checking for directfb.h... $ECHO_C" >&6; } +-if test "${ac_cv_header_directfb_h+set}" = set; then +- echo $ECHO_N "(cached) $ECHO_C" >&6 +-fi +-{ echo "$as_me:$LINENO: result: $ac_cv_header_directfb_h" >&5 +-echo "${ECHO_T}$ac_cv_header_directfb_h" >&6; } +-else +- # Is the header compilable? +-{ echo "$as_me:$LINENO: checking directfb.h usability" >&5 +-echo $ECHO_N "checking directfb.h usability... $ECHO_C" >&6; } +-cat >conftest.$ac_ext <<_ACEOF +-/* confdefs.h. */ +-_ACEOF +-cat confdefs.h >>conftest.$ac_ext +-cat >>conftest.$ac_ext <<_ACEOF +-/* end confdefs.h. */ +-$ac_includes_default +-#include +-_ACEOF +-rm -f conftest.$ac_objext +-if { (ac_try="$ac_compile" +-case "(($ac_try" in +- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; +- *) ac_try_echo=$ac_try;; +-esac +-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 +- (eval "$ac_compile") 2>conftest.er1 +- ac_status=$? +- grep -v '^ *+' conftest.er1 >conftest.err +- rm -f conftest.er1 +- cat conftest.err >&5 +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); } && { +- test -z "$ac_c_werror_flag" || +- test ! -s conftest.err +- } && test -s conftest.$ac_objext; then +- ac_header_compiler=yes +-else +- echo "$as_me: failed program was:" >&5 +-sed 's/^/| /' conftest.$ac_ext >&5 +- +- ac_header_compiler=no +-fi +- +-rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext +-{ echo "$as_me:$LINENO: result: $ac_header_compiler" >&5 +-echo "${ECHO_T}$ac_header_compiler" >&6; } +- +-# Is the header present? +-{ echo "$as_me:$LINENO: checking directfb.h presence" >&5 +-echo $ECHO_N "checking directfb.h presence... $ECHO_C" >&6; } +-cat >conftest.$ac_ext <<_ACEOF +-/* confdefs.h. */ +-_ACEOF +-cat confdefs.h >>conftest.$ac_ext +-cat >>conftest.$ac_ext <<_ACEOF +-/* end confdefs.h. */ +-#include +-_ACEOF +-if { (ac_try="$ac_cpp conftest.$ac_ext" +-case "(($ac_try" in +- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; +- *) ac_try_echo=$ac_try;; +-esac +-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 +- (eval "$ac_cpp conftest.$ac_ext") 2>conftest.er1 +- ac_status=$? +- grep -v '^ *+' conftest.er1 >conftest.err +- rm -f conftest.er1 +- cat conftest.err >&5 +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); } >/dev/null && { +- test -z "$ac_c_preproc_warn_flag$ac_c_werror_flag" || +- test ! -s conftest.err +- }; then +- ac_header_preproc=yes +-else +- echo "$as_me: failed program was:" >&5 +-sed 's/^/| /' conftest.$ac_ext >&5 +- +- ac_header_preproc=no +-fi +- +-rm -f conftest.err conftest.$ac_ext +-{ echo "$as_me:$LINENO: result: $ac_header_preproc" >&5 +-echo "${ECHO_T}$ac_header_preproc" >&6; } +- +-# So? What about this header? +-case $ac_header_compiler:$ac_header_preproc:$ac_c_preproc_warn_flag in +- yes:no: ) +- { echo "$as_me:$LINENO: WARNING: directfb.h: accepted by the compiler, rejected by the preprocessor!" >&5 +-echo "$as_me: WARNING: directfb.h: accepted by the compiler, rejected by the preprocessor!" >&2;} +- { echo "$as_me:$LINENO: WARNING: directfb.h: proceeding with the compiler's result" >&5 +-echo "$as_me: WARNING: directfb.h: proceeding with the compiler's result" >&2;} +- ac_header_preproc=yes +- ;; +- no:yes:* ) +- { echo "$as_me:$LINENO: WARNING: directfb.h: present but cannot be compiled" >&5 +-echo "$as_me: WARNING: directfb.h: present but cannot be compiled" >&2;} +- { echo "$as_me:$LINENO: WARNING: directfb.h: check for missing prerequisite headers?" >&5 +-echo "$as_me: WARNING: directfb.h: check for missing prerequisite headers?" >&2;} +- { echo "$as_me:$LINENO: WARNING: directfb.h: see the Autoconf documentation" >&5 +-echo "$as_me: WARNING: directfb.h: see the Autoconf documentation" >&2;} +- { echo "$as_me:$LINENO: WARNING: directfb.h: section \"Present But Cannot Be Compiled\"" >&5 +-echo "$as_me: WARNING: directfb.h: section \"Present But Cannot Be Compiled\"" >&2;} +- { echo "$as_me:$LINENO: WARNING: directfb.h: proceeding with the preprocessor's result" >&5 +-echo "$as_me: WARNING: directfb.h: proceeding with the preprocessor's result" >&2;} +- { echo "$as_me:$LINENO: WARNING: directfb.h: in the future, the compiler will take precedence" >&5 +-echo "$as_me: WARNING: directfb.h: in the future, the compiler will take precedence" >&2;} +- +- ;; +-esac +-{ echo "$as_me:$LINENO: checking for directfb.h" >&5 +-echo $ECHO_N "checking for directfb.h... $ECHO_C" >&6; } +-if test "${ac_cv_header_directfb_h+set}" = set; then +- echo $ECHO_N "(cached) $ECHO_C" >&6 +-else +- ac_cv_header_directfb_h=$ac_header_preproc +-fi +-{ echo "$as_me:$LINENO: result: $ac_cv_header_directfb_h" >&5 +-echo "${ECHO_T}$ac_cv_header_directfb_h" >&6; } +- +-fi +-if test $ac_cv_header_directfb_h = yes; then ++ ac_fn_c_check_header_mongrel "$LINENO" "directfb.h" "ac_cv_header_directfb_h" "$ac_includes_default" ++if test "x$ac_cv_header_directfb_h" = xyes; then : + have_directfb="true" + else + have_directfb="false" +@@ -56712,7 +37694,7 @@ fi + CPPFLAGS="${CPPFLAGS_save}" + + # Check whether --with-directfb was given. +-if test "${with_directfb+set}" = set; then ++if test "${with_directfb+set}" = set; then : + withval=$with_directfb; if test "${with_directfb}" != "no" -a -n "${with_directfb}" + then + +@@ -56732,27 +37714,25 @@ if test "${with_directfb+set}" = set; then + + fi + else +- { { echo "$as_me:$LINENO: error: cannot find directfb headers in ${with_directfb}/include" >&5 +-echo "$as_me: error: cannot find directfb headers in ${with_directfb}/include" >&2;} +- { (exit 1); exit 1; }; } ++ as_fn_error $? "cannot find directfb headers in ${with_directfb}/include" "$LINENO" 5 + fi + + else + + pkg_failed=no +-{ echo "$as_me:$LINENO: checking for DIRECTFB" >&5 +-echo $ECHO_N "checking for DIRECTFB... $ECHO_C" >&6; } ++{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for DIRECTFB" >&5 ++$as_echo_n "checking for DIRECTFB... " >&6; } + + if test -n "$PKG_CONFIG"; then + if test -n "$DIRECTFB_CFLAGS"; then + pkg_cv_DIRECTFB_CFLAGS="$DIRECTFB_CFLAGS" + else + if test -n "$PKG_CONFIG" && \ +- { (echo "$as_me:$LINENO: \$PKG_CONFIG --exists --print-errors \"directfb\"") >&5 ++ { { $as_echo "$as_me:${as_lineno-$LINENO}: \$PKG_CONFIG --exists --print-errors \"directfb\""; } >&5 + ($PKG_CONFIG --exists --print-errors "directfb") 2>&5 + ac_status=$? +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); }; then ++ $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 ++ test $ac_status = 0; }; then + pkg_cv_DIRECTFB_CFLAGS=`$PKG_CONFIG --cflags "directfb" 2>/dev/null` + else + pkg_failed=yes +@@ -56766,11 +37746,11 @@ if test -n "$PKG_CONFIG"; then + pkg_cv_DIRECTFB_LIBS="$DIRECTFB_LIBS" + else + if test -n "$PKG_CONFIG" && \ +- { (echo "$as_me:$LINENO: \$PKG_CONFIG --exists --print-errors \"directfb\"") >&5 ++ { { $as_echo "$as_me:${as_lineno-$LINENO}: \$PKG_CONFIG --exists --print-errors \"directfb\""; } >&5 + ($PKG_CONFIG --exists --print-errors "directfb") 2>&5 + ac_status=$? +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); }; then ++ $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 ++ test $ac_status = 0; }; then + pkg_cv_DIRECTFB_LIBS=`$PKG_CONFIG --libs "directfb" 2>/dev/null` + else + pkg_failed=yes +@@ -56797,146 +37777,22 @@ fi + # Put the nasty error message in config.log where it belongs + echo "$DIRECTFB_PKG_ERRORS" >&5 + +- { echo "$as_me:$LINENO: result: no" >&5 +-echo "${ECHO_T}no" >&6; } ++ { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 ++$as_echo "no" >&6; } + have_directfb="false" + elif test $pkg_failed = untried; then + have_directfb="false" + else + DIRECTFB_CFLAGS=$pkg_cv_DIRECTFB_CFLAGS + DIRECTFB_LIBS=$pkg_cv_DIRECTFB_LIBS +- { echo "$as_me:$LINENO: result: yes" >&5 +-echo "${ECHO_T}yes" >&6; } ++ { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5 ++$as_echo "yes" >&6; } + have_directfb="true" + fi + if test "${have_directfb}" = "false" + then +- if test "${ac_cv_header_directfb_h+set}" = set; then +- { echo "$as_me:$LINENO: checking for directfb.h" >&5 +-echo $ECHO_N "checking for directfb.h... $ECHO_C" >&6; } +-if test "${ac_cv_header_directfb_h+set}" = set; then +- echo $ECHO_N "(cached) $ECHO_C" >&6 +-fi +-{ echo "$as_me:$LINENO: result: $ac_cv_header_directfb_h" >&5 +-echo "${ECHO_T}$ac_cv_header_directfb_h" >&6; } +-else +- # Is the header compilable? +-{ echo "$as_me:$LINENO: checking directfb.h usability" >&5 +-echo $ECHO_N "checking directfb.h usability... $ECHO_C" >&6; } +-cat >conftest.$ac_ext <<_ACEOF +-/* confdefs.h. */ +-_ACEOF +-cat confdefs.h >>conftest.$ac_ext +-cat >>conftest.$ac_ext <<_ACEOF +-/* end confdefs.h. */ +-$ac_includes_default +-#include +-_ACEOF +-rm -f conftest.$ac_objext +-if { (ac_try="$ac_compile" +-case "(($ac_try" in +- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; +- *) ac_try_echo=$ac_try;; +-esac +-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 +- (eval "$ac_compile") 2>conftest.er1 +- ac_status=$? +- grep -v '^ *+' conftest.er1 >conftest.err +- rm -f conftest.er1 +- cat conftest.err >&5 +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); } && { +- test -z "$ac_c_werror_flag" || +- test ! -s conftest.err +- } && test -s conftest.$ac_objext; then +- ac_header_compiler=yes +-else +- echo "$as_me: failed program was:" >&5 +-sed 's/^/| /' conftest.$ac_ext >&5 +- +- ac_header_compiler=no +-fi +- +-rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext +-{ echo "$as_me:$LINENO: result: $ac_header_compiler" >&5 +-echo "${ECHO_T}$ac_header_compiler" >&6; } +- +-# Is the header present? +-{ echo "$as_me:$LINENO: checking directfb.h presence" >&5 +-echo $ECHO_N "checking directfb.h presence... $ECHO_C" >&6; } +-cat >conftest.$ac_ext <<_ACEOF +-/* confdefs.h. */ +-_ACEOF +-cat confdefs.h >>conftest.$ac_ext +-cat >>conftest.$ac_ext <<_ACEOF +-/* end confdefs.h. */ +-#include +-_ACEOF +-if { (ac_try="$ac_cpp conftest.$ac_ext" +-case "(($ac_try" in +- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; +- *) ac_try_echo=$ac_try;; +-esac +-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 +- (eval "$ac_cpp conftest.$ac_ext") 2>conftest.er1 +- ac_status=$? +- grep -v '^ *+' conftest.er1 >conftest.err +- rm -f conftest.er1 +- cat conftest.err >&5 +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); } >/dev/null && { +- test -z "$ac_c_preproc_warn_flag$ac_c_werror_flag" || +- test ! -s conftest.err +- }; then +- ac_header_preproc=yes +-else +- echo "$as_me: failed program was:" >&5 +-sed 's/^/| /' conftest.$ac_ext >&5 +- +- ac_header_preproc=no +-fi +- +-rm -f conftest.err conftest.$ac_ext +-{ echo "$as_me:$LINENO: result: $ac_header_preproc" >&5 +-echo "${ECHO_T}$ac_header_preproc" >&6; } +- +-# So? What about this header? +-case $ac_header_compiler:$ac_header_preproc:$ac_c_preproc_warn_flag in +- yes:no: ) +- { echo "$as_me:$LINENO: WARNING: directfb.h: accepted by the compiler, rejected by the preprocessor!" >&5 +-echo "$as_me: WARNING: directfb.h: accepted by the compiler, rejected by the preprocessor!" >&2;} +- { echo "$as_me:$LINENO: WARNING: directfb.h: proceeding with the compiler's result" >&5 +-echo "$as_me: WARNING: directfb.h: proceeding with the compiler's result" >&2;} +- ac_header_preproc=yes +- ;; +- no:yes:* ) +- { echo "$as_me:$LINENO: WARNING: directfb.h: present but cannot be compiled" >&5 +-echo "$as_me: WARNING: directfb.h: present but cannot be compiled" >&2;} +- { echo "$as_me:$LINENO: WARNING: directfb.h: check for missing prerequisite headers?" >&5 +-echo "$as_me: WARNING: directfb.h: check for missing prerequisite headers?" >&2;} +- { echo "$as_me:$LINENO: WARNING: directfb.h: see the Autoconf documentation" >&5 +-echo "$as_me: WARNING: directfb.h: see the Autoconf documentation" >&2;} +- { echo "$as_me:$LINENO: WARNING: directfb.h: section \"Present But Cannot Be Compiled\"" >&5 +-echo "$as_me: WARNING: directfb.h: section \"Present But Cannot Be Compiled\"" >&2;} +- { echo "$as_me:$LINENO: WARNING: directfb.h: proceeding with the preprocessor's result" >&5 +-echo "$as_me: WARNING: directfb.h: proceeding with the preprocessor's result" >&2;} +- { echo "$as_me:$LINENO: WARNING: directfb.h: in the future, the compiler will take precedence" >&5 +-echo "$as_me: WARNING: directfb.h: in the future, the compiler will take precedence" >&2;} +- +- ;; +-esac +-{ echo "$as_me:$LINENO: checking for directfb.h" >&5 +-echo $ECHO_N "checking for directfb.h... $ECHO_C" >&6; } +-if test "${ac_cv_header_directfb_h+set}" = set; then +- echo $ECHO_N "(cached) $ECHO_C" >&6 +-else +- ac_cv_header_directfb_h=$ac_header_preproc +-fi +-{ echo "$as_me:$LINENO: result: $ac_cv_header_directfb_h" >&5 +-echo "${ECHO_T}$ac_cv_header_directfb_h" >&6; } +- +-fi +-if test $ac_cv_header_directfb_h = yes; then ++ ac_fn_c_check_header_mongrel "$LINENO" "directfb.h" "ac_cv_header_directfb_h" "$ac_includes_default" ++if test "x$ac_cv_header_directfb_h" = xyes; then : + have_directfb="true" + else + have_directfb="false" +@@ -56962,15 +37818,13 @@ fi + done + + else +- { { echo "$as_me:$LINENO: error: cannot find /usr/include/directfb headers, make sure directfb is installed on your system or use --disable-directfb" >&5 +-echo "$as_me: error: cannot find /usr/include/directfb headers, make sure directfb is installed on your system or use --disable-directfb" >&2;} +- { (exit 1); exit 1; }; } ++ as_fn_error $? "cannot find /usr/include/directfb headers, make sure directfb is installed on your system or use --disable-directfb" "$LINENO" 5 + fi + fi + fi + + # Check whether --enable-ggi was given. +-if test "${enable_ggi+set}" = set; then ++if test "${enable_ggi+set}" = set; then : + enableval=$enable_ggi; + fi + +@@ -56987,7 +37841,7 @@ then + + + # Check whether --with-ggi was given. +-if test "${with_ggi+set}" = set; then ++if test "${with_ggi+set}" = set; then : + withval=$with_ggi; if test "${with_ggi}" != "no" -a -n "${with_ggi}" + then + +@@ -57008,7 +37862,7 @@ fi + fi + + # Check whether --enable-glide was given. +-if test "${enable_glide+set}" = set; then ++if test "${enable_glide+set}" = set; then : + enableval=$enable_glide; + fi + +@@ -57017,7 +37871,7 @@ then + CFLAGS_save="${CFLAGS}" + + # Check whether --with-glide was given. +-if test "${with_glide+set}" = set; then ++if test "${with_glide+set}" = set; then : + withval=$with_glide; if test "${with_glide}" != "no" -a -n "${with_glide}" + then + +@@ -57037,132 +37891,8 @@ if test "${with_glide+set}" = set; then + fi + + CFLAGS="$CFLAGS -I/usr/include/glide" +- if test "${ac_cv_header_glide_h+set}" = set; then +- { echo "$as_me:$LINENO: checking for glide.h" >&5 +-echo $ECHO_N "checking for glide.h... $ECHO_C" >&6; } +-if test "${ac_cv_header_glide_h+set}" = set; then +- echo $ECHO_N "(cached) $ECHO_C" >&6 +-fi +-{ echo "$as_me:$LINENO: result: $ac_cv_header_glide_h" >&5 +-echo "${ECHO_T}$ac_cv_header_glide_h" >&6; } +-else +- # Is the header compilable? +-{ echo "$as_me:$LINENO: checking glide.h usability" >&5 +-echo $ECHO_N "checking glide.h usability... $ECHO_C" >&6; } +-cat >conftest.$ac_ext <<_ACEOF +-/* confdefs.h. */ +-_ACEOF +-cat confdefs.h >>conftest.$ac_ext +-cat >>conftest.$ac_ext <<_ACEOF +-/* end confdefs.h. */ +-$ac_includes_default +-#include +-_ACEOF +-rm -f conftest.$ac_objext +-if { (ac_try="$ac_compile" +-case "(($ac_try" in +- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; +- *) ac_try_echo=$ac_try;; +-esac +-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 +- (eval "$ac_compile") 2>conftest.er1 +- ac_status=$? +- grep -v '^ *+' conftest.er1 >conftest.err +- rm -f conftest.er1 +- cat conftest.err >&5 +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); } && { +- test -z "$ac_c_werror_flag" || +- test ! -s conftest.err +- } && test -s conftest.$ac_objext; then +- ac_header_compiler=yes +-else +- echo "$as_me: failed program was:" >&5 +-sed 's/^/| /' conftest.$ac_ext >&5 +- +- ac_header_compiler=no +-fi +- +-rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext +-{ echo "$as_me:$LINENO: result: $ac_header_compiler" >&5 +-echo "${ECHO_T}$ac_header_compiler" >&6; } +- +-# Is the header present? +-{ echo "$as_me:$LINENO: checking glide.h presence" >&5 +-echo $ECHO_N "checking glide.h presence... $ECHO_C" >&6; } +-cat >conftest.$ac_ext <<_ACEOF +-/* confdefs.h. */ +-_ACEOF +-cat confdefs.h >>conftest.$ac_ext +-cat >>conftest.$ac_ext <<_ACEOF +-/* end confdefs.h. */ +-#include +-_ACEOF +-if { (ac_try="$ac_cpp conftest.$ac_ext" +-case "(($ac_try" in +- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; +- *) ac_try_echo=$ac_try;; +-esac +-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 +- (eval "$ac_cpp conftest.$ac_ext") 2>conftest.er1 +- ac_status=$? +- grep -v '^ *+' conftest.er1 >conftest.err +- rm -f conftest.er1 +- cat conftest.err >&5 +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); } >/dev/null && { +- test -z "$ac_c_preproc_warn_flag$ac_c_werror_flag" || +- test ! -s conftest.err +- }; then +- ac_header_preproc=yes +-else +- echo "$as_me: failed program was:" >&5 +-sed 's/^/| /' conftest.$ac_ext >&5 +- +- ac_header_preproc=no +-fi +- +-rm -f conftest.err conftest.$ac_ext +-{ echo "$as_me:$LINENO: result: $ac_header_preproc" >&5 +-echo "${ECHO_T}$ac_header_preproc" >&6; } +- +-# So? What about this header? +-case $ac_header_compiler:$ac_header_preproc:$ac_c_preproc_warn_flag in +- yes:no: ) +- { echo "$as_me:$LINENO: WARNING: glide.h: accepted by the compiler, rejected by the preprocessor!" >&5 +-echo "$as_me: WARNING: glide.h: accepted by the compiler, rejected by the preprocessor!" >&2;} +- { echo "$as_me:$LINENO: WARNING: glide.h: proceeding with the compiler's result" >&5 +-echo "$as_me: WARNING: glide.h: proceeding with the compiler's result" >&2;} +- ac_header_preproc=yes +- ;; +- no:yes:* ) +- { echo "$as_me:$LINENO: WARNING: glide.h: present but cannot be compiled" >&5 +-echo "$as_me: WARNING: glide.h: present but cannot be compiled" >&2;} +- { echo "$as_me:$LINENO: WARNING: glide.h: check for missing prerequisite headers?" >&5 +-echo "$as_me: WARNING: glide.h: check for missing prerequisite headers?" >&2;} +- { echo "$as_me:$LINENO: WARNING: glide.h: see the Autoconf documentation" >&5 +-echo "$as_me: WARNING: glide.h: see the Autoconf documentation" >&2;} +- { echo "$as_me:$LINENO: WARNING: glide.h: section \"Present But Cannot Be Compiled\"" >&5 +-echo "$as_me: WARNING: glide.h: section \"Present But Cannot Be Compiled\"" >&2;} +- { echo "$as_me:$LINENO: WARNING: glide.h: proceeding with the preprocessor's result" >&5 +-echo "$as_me: WARNING: glide.h: proceeding with the preprocessor's result" >&2;} +- { echo "$as_me:$LINENO: WARNING: glide.h: in the future, the compiler will take precedence" >&5 +-echo "$as_me: WARNING: glide.h: in the future, the compiler will take precedence" >&2;} +- +- ;; +-esac +-{ echo "$as_me:$LINENO: checking for glide.h" >&5 +-echo $ECHO_N "checking for glide.h... $ECHO_C" >&6; } +-if test "${ac_cv_header_glide_h+set}" = set; then +- echo $ECHO_N "(cached) $ECHO_C" >&6 +-else +- ac_cv_header_glide_h=$ac_header_preproc +-fi +-{ echo "$as_me:$LINENO: result: $ac_cv_header_glide_h" >&5 +-echo "${ECHO_T}$ac_cv_header_glide_h" >&6; } +- +-fi +-if test $ac_cv_header_glide_h = yes; then ++ ac_fn_c_check_header_mongrel "$LINENO" "glide.h" "ac_cv_header_glide_h" "$ac_includes_default" ++if test "x$ac_cv_header_glide_h" = xyes; then : + + + PLUGINS="${PLUGINS} glide" +@@ -57182,9 +37912,7 @@ if test $ac_cv_header_glide_h = yes; then + + else + +- { { echo "$as_me:$LINENO: error: You don't have libglide. Install it or do not use --enable-glide" >&5 +-echo "$as_me: error: You don't have libglide. Install it or do not use --enable-glide" >&2;} +- { (exit 1); exit 1; }; } ++ as_fn_error $? "You don't have libglide. Install it or do not use --enable-glide" "$LINENO" 5 + + fi + +@@ -57193,138 +37921,14 @@ fi + fi + + # Check whether --enable-aa was given. +-if test "${enable_aa+set}" = set; then ++if test "${enable_aa+set}" = set; then : + enableval=$enable_aa; + fi + + if test "${enable_aa}" = "yes" + then +- if test "${ac_cv_header_aalib_h+set}" = set; then +- { echo "$as_me:$LINENO: checking for aalib.h" >&5 +-echo $ECHO_N "checking for aalib.h... $ECHO_C" >&6; } +-if test "${ac_cv_header_aalib_h+set}" = set; then +- echo $ECHO_N "(cached) $ECHO_C" >&6 +-fi +-{ echo "$as_me:$LINENO: result: $ac_cv_header_aalib_h" >&5 +-echo "${ECHO_T}$ac_cv_header_aalib_h" >&6; } +-else +- # Is the header compilable? +-{ echo "$as_me:$LINENO: checking aalib.h usability" >&5 +-echo $ECHO_N "checking aalib.h usability... $ECHO_C" >&6; } +-cat >conftest.$ac_ext <<_ACEOF +-/* confdefs.h. */ +-_ACEOF +-cat confdefs.h >>conftest.$ac_ext +-cat >>conftest.$ac_ext <<_ACEOF +-/* end confdefs.h. */ +-$ac_includes_default +-#include +-_ACEOF +-rm -f conftest.$ac_objext +-if { (ac_try="$ac_compile" +-case "(($ac_try" in +- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; +- *) ac_try_echo=$ac_try;; +-esac +-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 +- (eval "$ac_compile") 2>conftest.er1 +- ac_status=$? +- grep -v '^ *+' conftest.er1 >conftest.err +- rm -f conftest.er1 +- cat conftest.err >&5 +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); } && { +- test -z "$ac_c_werror_flag" || +- test ! -s conftest.err +- } && test -s conftest.$ac_objext; then +- ac_header_compiler=yes +-else +- echo "$as_me: failed program was:" >&5 +-sed 's/^/| /' conftest.$ac_ext >&5 +- +- ac_header_compiler=no +-fi +- +-rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext +-{ echo "$as_me:$LINENO: result: $ac_header_compiler" >&5 +-echo "${ECHO_T}$ac_header_compiler" >&6; } +- +-# Is the header present? +-{ echo "$as_me:$LINENO: checking aalib.h presence" >&5 +-echo $ECHO_N "checking aalib.h presence... $ECHO_C" >&6; } +-cat >conftest.$ac_ext <<_ACEOF +-/* confdefs.h. */ +-_ACEOF +-cat confdefs.h >>conftest.$ac_ext +-cat >>conftest.$ac_ext <<_ACEOF +-/* end confdefs.h. */ +-#include +-_ACEOF +-if { (ac_try="$ac_cpp conftest.$ac_ext" +-case "(($ac_try" in +- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; +- *) ac_try_echo=$ac_try;; +-esac +-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 +- (eval "$ac_cpp conftest.$ac_ext") 2>conftest.er1 +- ac_status=$? +- grep -v '^ *+' conftest.er1 >conftest.err +- rm -f conftest.er1 +- cat conftest.err >&5 +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); } >/dev/null && { +- test -z "$ac_c_preproc_warn_flag$ac_c_werror_flag" || +- test ! -s conftest.err +- }; then +- ac_header_preproc=yes +-else +- echo "$as_me: failed program was:" >&5 +-sed 's/^/| /' conftest.$ac_ext >&5 +- +- ac_header_preproc=no +-fi +- +-rm -f conftest.err conftest.$ac_ext +-{ echo "$as_me:$LINENO: result: $ac_header_preproc" >&5 +-echo "${ECHO_T}$ac_header_preproc" >&6; } +- +-# So? What about this header? +-case $ac_header_compiler:$ac_header_preproc:$ac_c_preproc_warn_flag in +- yes:no: ) +- { echo "$as_me:$LINENO: WARNING: aalib.h: accepted by the compiler, rejected by the preprocessor!" >&5 +-echo "$as_me: WARNING: aalib.h: accepted by the compiler, rejected by the preprocessor!" >&2;} +- { echo "$as_me:$LINENO: WARNING: aalib.h: proceeding with the compiler's result" >&5 +-echo "$as_me: WARNING: aalib.h: proceeding with the compiler's result" >&2;} +- ac_header_preproc=yes +- ;; +- no:yes:* ) +- { echo "$as_me:$LINENO: WARNING: aalib.h: present but cannot be compiled" >&5 +-echo "$as_me: WARNING: aalib.h: present but cannot be compiled" >&2;} +- { echo "$as_me:$LINENO: WARNING: aalib.h: check for missing prerequisite headers?" >&5 +-echo "$as_me: WARNING: aalib.h: check for missing prerequisite headers?" >&2;} +- { echo "$as_me:$LINENO: WARNING: aalib.h: see the Autoconf documentation" >&5 +-echo "$as_me: WARNING: aalib.h: see the Autoconf documentation" >&2;} +- { echo "$as_me:$LINENO: WARNING: aalib.h: section \"Present But Cannot Be Compiled\"" >&5 +-echo "$as_me: WARNING: aalib.h: section \"Present But Cannot Be Compiled\"" >&2;} +- { echo "$as_me:$LINENO: WARNING: aalib.h: proceeding with the preprocessor's result" >&5 +-echo "$as_me: WARNING: aalib.h: proceeding with the preprocessor's result" >&2;} +- { echo "$as_me:$LINENO: WARNING: aalib.h: in the future, the compiler will take precedence" >&5 +-echo "$as_me: WARNING: aalib.h: in the future, the compiler will take precedence" >&2;} +- +- ;; +-esac +-{ echo "$as_me:$LINENO: checking for aalib.h" >&5 +-echo $ECHO_N "checking for aalib.h... $ECHO_C" >&6; } +-if test "${ac_cv_header_aalib_h+set}" = set; then +- echo $ECHO_N "(cached) $ECHO_C" >&6 +-else +- ac_cv_header_aalib_h=$ac_header_preproc +-fi +-{ echo "$as_me:$LINENO: result: $ac_cv_header_aalib_h" >&5 +-echo "${ECHO_T}$ac_cv_header_aalib_h" >&6; } +- +-fi +-if test $ac_cv_header_aalib_h = yes; then ++ ac_fn_c_check_header_mongrel "$LINENO" "aalib.h" "ac_cv_header_aalib_h" "$ac_includes_default" ++if test "x$ac_cv_header_aalib_h" = xyes; then : + have_aa="true" + else + have_aa="false" +@@ -57346,7 +37950,7 @@ fi + fi + + # Check whether --enable-caca was given. +-if test "${enable_caca+set}" = set; then ++if test "${enable_caca+set}" = set; then : + enableval=$enable_caca; + fi + +@@ -57355,7 +37959,7 @@ then + CACA_PATH="${PATH}" + + # Check whether --with-caca-config-path was given. +-if test "${with_caca_config_path+set}" = set; then ++if test "${with_caca_config_path+set}" = set; then : + withval=$with_caca_config_path; if test "${with_caca_config_path}" != "no" + then + CACA_PATH="${with_caca_config_path}:${PATH}" +@@ -57364,10 +37968,10 @@ fi + + # Extract the first word of "caca-config", so it can be a program name with args. + set dummy caca-config; ac_word=$2 +-{ echo "$as_me:$LINENO: checking for $ac_word" >&5 +-echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6; } +-if test "${ac_cv_path_CACA_CONFIG+set}" = set; then +- echo $ECHO_N "(cached) $ECHO_C" >&6 ++{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 ++$as_echo_n "checking for $ac_word... " >&6; } ++if ${ac_cv_path_CACA_CONFIG+:} false; then : ++ $as_echo_n "(cached) " >&6 + else + case $CACA_CONFIG in + [\\/]* | ?:[\\/]*) +@@ -57379,14 +37983,14 @@ for as_dir in ${CACA_PATH} + do + IFS=$as_save_IFS + test -z "$as_dir" && as_dir=. +- for ac_exec_ext in '' $ac_executable_extensions; do +- if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then ++ for ac_exec_ext in '' $ac_executable_extensions; do ++ if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then + ac_cv_path_CACA_CONFIG="$as_dir/$ac_word$ac_exec_ext" +- echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 ++ $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 + break 2 + fi + done +-done ++ done + IFS=$as_save_IFS + + test -z "$ac_cv_path_CACA_CONFIG" && ac_cv_path_CACA_CONFIG="no" +@@ -57395,11 +37999,11 @@ esac + fi + CACA_CONFIG=$ac_cv_path_CACA_CONFIG + if test -n "$CACA_CONFIG"; then +- { echo "$as_me:$LINENO: result: $CACA_CONFIG" >&5 +-echo "${ECHO_T}$CACA_CONFIG" >&6; } ++ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $CACA_CONFIG" >&5 ++$as_echo "$CACA_CONFIG" >&6; } + else +- { echo "$as_me:$LINENO: result: no" >&5 +-echo "${ECHO_T}no" >&6; } ++ { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 ++$as_echo "no" >&6; } + fi + + +@@ -57420,11 +38024,7 @@ fi + am_modules_with_ldflags="${am_modules_with_ldflags} ${element}" + done + +- cat >conftest.$ac_ext <<_ACEOF +-/* confdefs.h. */ +-_ACEOF +-cat confdefs.h >>conftest.$ac_ext +-cat >>conftest.$ac_ext <<_ACEOF ++ cat confdefs.h - <<_ACEOF >conftest.$ac_ext + /* end confdefs.h. */ + #include + caca_event_t ev; +@@ -57437,42 +38037,20 @@ ev.type = 0; + return 0; + } + _ACEOF +-rm -f conftest.$ac_objext +-if { (ac_try="$ac_compile" +-case "(($ac_try" in +- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; +- *) ac_try_echo=$ac_try;; +-esac +-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 +- (eval "$ac_compile") 2>conftest.er1 +- ac_status=$? +- grep -v '^ *+' conftest.er1 >conftest.err +- rm -f conftest.er1 +- cat conftest.err >&5 +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); } && { +- test -z "$ac_c_werror_flag" || +- test ! -s conftest.err +- } && test -s conftest.$ac_objext; then +- : +-else +- echo "$as_me: failed program was:" >&5 +-sed 's/^/| /' conftest.$ac_ext >&5 ++if ac_fn_c_try_compile "$LINENO"; then : + ++else + +-cat >>confdefs.h <<\_ACEOF +-#define CACA_EVENT_OPAQUE 1 +-_ACEOF ++$as_echo "#define CACA_EVENT_OPAQUE 1" >>confdefs.h + + + fi +- + rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext + fi + fi + + # Check whether --enable-wingdi was given. +-if test "${enable_wingdi+set}" = set; then ++if test "${enable_wingdi+set}" = set; then : + enableval=$enable_wingdi; + fi + +@@ -57498,13 +38076,13 @@ fi + + + # Check whether --with- was given. +-if test "${with_+set}" = set; then ++if test "${with_+set}" = set; then : + withval=$with_; + fi + + + # Check whether --enable-oss was given. +-if test "${enable_oss+set}" = set; then ++if test "${enable_oss+set}" = set; then : + enableval=$enable_oss; + fi + +@@ -57513,159 +38091,26 @@ if test "${enable_oss}" != "no" && + (test "${SYS}" != "mingw32" -a "${SYS}" != "mingwce" || + test "${enable_oss}" = "yes") + then +- +- +- +-for ac_header in soundcard.h sys/soundcard.h machine/soundcard.h +-do +-as_ac_Header=`echo "ac_cv_header_$ac_header" | $as_tr_sh` +-if { as_var=$as_ac_Header; eval "test \"\${$as_var+set}\" = set"; }; then +- { echo "$as_me:$LINENO: checking for $ac_header" >&5 +-echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6; } +-if { as_var=$as_ac_Header; eval "test \"\${$as_var+set}\" = set"; }; then +- echo $ECHO_N "(cached) $ECHO_C" >&6 +-fi +-ac_res=`eval echo '${'$as_ac_Header'}'` +- { echo "$as_me:$LINENO: result: $ac_res" >&5 +-echo "${ECHO_T}$ac_res" >&6; } +-else +- # Is the header compilable? +-{ echo "$as_me:$LINENO: checking $ac_header usability" >&5 +-echo $ECHO_N "checking $ac_header usability... $ECHO_C" >&6; } +-cat >conftest.$ac_ext <<_ACEOF +-/* confdefs.h. */ +-_ACEOF +-cat confdefs.h >>conftest.$ac_ext +-cat >>conftest.$ac_ext <<_ACEOF +-/* end confdefs.h. */ +-$ac_includes_default +-#include <$ac_header> +-_ACEOF +-rm -f conftest.$ac_objext +-if { (ac_try="$ac_compile" +-case "(($ac_try" in +- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; +- *) ac_try_echo=$ac_try;; +-esac +-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 +- (eval "$ac_compile") 2>conftest.er1 +- ac_status=$? +- grep -v '^ *+' conftest.er1 >conftest.err +- rm -f conftest.er1 +- cat conftest.err >&5 +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); } && { +- test -z "$ac_c_werror_flag" || +- test ! -s conftest.err +- } && test -s conftest.$ac_objext; then +- ac_header_compiler=yes +-else +- echo "$as_me: failed program was:" >&5 +-sed 's/^/| /' conftest.$ac_ext >&5 +- +- ac_header_compiler=no +-fi +- +-rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext +-{ echo "$as_me:$LINENO: result: $ac_header_compiler" >&5 +-echo "${ECHO_T}$ac_header_compiler" >&6; } +- +-# Is the header present? +-{ echo "$as_me:$LINENO: checking $ac_header presence" >&5 +-echo $ECHO_N "checking $ac_header presence... $ECHO_C" >&6; } +-cat >conftest.$ac_ext <<_ACEOF +-/* confdefs.h. */ +-_ACEOF +-cat confdefs.h >>conftest.$ac_ext +-cat >>conftest.$ac_ext <<_ACEOF +-/* end confdefs.h. */ +-#include <$ac_header> +-_ACEOF +-if { (ac_try="$ac_cpp conftest.$ac_ext" +-case "(($ac_try" in +- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; +- *) ac_try_echo=$ac_try;; +-esac +-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 +- (eval "$ac_cpp conftest.$ac_ext") 2>conftest.er1 +- ac_status=$? +- grep -v '^ *+' conftest.er1 >conftest.err +- rm -f conftest.er1 +- cat conftest.err >&5 +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); } >/dev/null && { +- test -z "$ac_c_preproc_warn_flag$ac_c_werror_flag" || +- test ! -s conftest.err +- }; then +- ac_header_preproc=yes +-else +- echo "$as_me: failed program was:" >&5 +-sed 's/^/| /' conftest.$ac_ext >&5 +- +- ac_header_preproc=no +-fi +- +-rm -f conftest.err conftest.$ac_ext +-{ echo "$as_me:$LINENO: result: $ac_header_preproc" >&5 +-echo "${ECHO_T}$ac_header_preproc" >&6; } +- +-# So? What about this header? +-case $ac_header_compiler:$ac_header_preproc:$ac_c_preproc_warn_flag in +- yes:no: ) +- { echo "$as_me:$LINENO: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&5 +-echo "$as_me: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&2;} +- { echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the compiler's result" >&5 +-echo "$as_me: WARNING: $ac_header: proceeding with the compiler's result" >&2;} +- ac_header_preproc=yes +- ;; +- no:yes:* ) +- { echo "$as_me:$LINENO: WARNING: $ac_header: present but cannot be compiled" >&5 +-echo "$as_me: WARNING: $ac_header: present but cannot be compiled" >&2;} +- { echo "$as_me:$LINENO: WARNING: $ac_header: check for missing prerequisite headers?" >&5 +-echo "$as_me: WARNING: $ac_header: check for missing prerequisite headers?" >&2;} +- { echo "$as_me:$LINENO: WARNING: $ac_header: see the Autoconf documentation" >&5 +-echo "$as_me: WARNING: $ac_header: see the Autoconf documentation" >&2;} +- { echo "$as_me:$LINENO: WARNING: $ac_header: section \"Present But Cannot Be Compiled\"" >&5 +-echo "$as_me: WARNING: $ac_header: section \"Present But Cannot Be Compiled\"" >&2;} +- { echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the preprocessor's result" >&5 +-echo "$as_me: WARNING: $ac_header: proceeding with the preprocessor's result" >&2;} +- { echo "$as_me:$LINENO: WARNING: $ac_header: in the future, the compiler will take precedence" >&5 +-echo "$as_me: WARNING: $ac_header: in the future, the compiler will take precedence" >&2;} +- +- ;; +-esac +-{ echo "$as_me:$LINENO: checking for $ac_header" >&5 +-echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6; } +-if { as_var=$as_ac_Header; eval "test \"\${$as_var+set}\" = set"; }; then +- echo $ECHO_N "(cached) $ECHO_C" >&6 +-else +- eval "$as_ac_Header=\$ac_header_preproc" +-fi +-ac_res=`eval echo '${'$as_ac_Header'}'` +- { echo "$as_me:$LINENO: result: $ac_res" >&5 +-echo "${ECHO_T}$ac_res" >&6; } +- +-fi +-if test `eval echo '${'$as_ac_Header'}'` = yes; then ++ for ac_header in soundcard.h sys/soundcard.h machine/soundcard.h ++do : ++ as_ac_Header=`$as_echo "ac_cv_header_$ac_header" | $as_tr_sh` ++ac_fn_c_check_header_mongrel "$LINENO" "$ac_header" "$as_ac_Header" "$ac_includes_default" ++if eval test \"x\$"$as_ac_Header"\" = x"yes"; then : + cat >>confdefs.h <<_ACEOF +-#define `echo "HAVE_$ac_header" | $as_tr_cpp` 1 ++#define `$as_echo "HAVE_$ac_header" | $as_tr_cpp` 1 + _ACEOF + + + PLUGINS="${PLUGINS} oss" + +- { echo "$as_me:$LINENO: checking for main in -lossaudio" >&5 +-echo $ECHO_N "checking for main in -lossaudio... $ECHO_C" >&6; } +-if test "${ac_cv_lib_ossaudio_main+set}" = set; then +- echo $ECHO_N "(cached) $ECHO_C" >&6 ++ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for main in -lossaudio" >&5 ++$as_echo_n "checking for main in -lossaudio... " >&6; } ++if ${ac_cv_lib_ossaudio_main+:} false; then : ++ $as_echo_n "(cached) " >&6 + else + ac_check_lib_save_LIBS=$LIBS + LIBS="-lossaudio $LIBS" +-cat >conftest.$ac_ext <<_ACEOF +-/* confdefs.h. */ +-_ACEOF +-cat confdefs.h >>conftest.$ac_ext +-cat >>conftest.$ac_ext <<_ACEOF ++cat confdefs.h - <<_ACEOF >conftest.$ac_ext + /* end confdefs.h. */ + + +@@ -57677,39 +38122,18 @@ return main (); + return 0; + } + _ACEOF +-rm -f conftest.$ac_objext conftest$ac_exeext +-if { (ac_try="$ac_link" +-case "(($ac_try" in +- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; +- *) ac_try_echo=$ac_try;; +-esac +-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 +- (eval "$ac_link") 2>conftest.er1 +- ac_status=$? +- grep -v '^ *+' conftest.er1 >conftest.err +- rm -f conftest.er1 +- cat conftest.err >&5 +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); } && { +- test -z "$ac_c_werror_flag" || +- test ! -s conftest.err +- } && test -s conftest$ac_exeext && +- $as_test_x conftest$ac_exeext; then ++if ac_fn_c_try_link "$LINENO"; then : + ac_cv_lib_ossaudio_main=yes + else +- echo "$as_me: failed program was:" >&5 +-sed 's/^/| /' conftest.$ac_ext >&5 +- +- ac_cv_lib_ossaudio_main=no ++ ac_cv_lib_ossaudio_main=no + fi +- +-rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ +- conftest$ac_exeext conftest.$ac_ext ++rm -f core conftest.err conftest.$ac_objext \ ++ conftest$ac_exeext conftest.$ac_ext + LIBS=$ac_check_lib_save_LIBS + fi +-{ echo "$as_me:$LINENO: result: $ac_cv_lib_ossaudio_main" >&5 +-echo "${ECHO_T}$ac_cv_lib_ossaudio_main" >&6; } +-if test $ac_cv_lib_ossaudio_main = yes; then ++{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_ossaudio_main" >&5 ++$as_echo "$ac_cv_lib_ossaudio_main" >&6; } ++if test "x$ac_cv_lib_ossaudio_main" = xyes; then : + + for element in oss; do + eval "LDFLAGS_${element}="'"'"-lossaudio "'$'"{LDFLAGS_${element}} "'"' +@@ -57726,15 +38150,15 @@ done + fi + + # Check whether --enable-esd was given. +-if test "${enable_esd+set}" = set; then ++if test "${enable_esd+set}" = set; then : + enableval=$enable_esd; if test "${enable_esd}" = "yes" + then + # Extract the first word of "esd-config", so it can be a program name with args. + set dummy esd-config; ac_word=$2 +-{ echo "$as_me:$LINENO: checking for $ac_word" >&5 +-echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6; } +-if test "${ac_cv_path_ESD_CONFIG+set}" = set; then +- echo $ECHO_N "(cached) $ECHO_C" >&6 ++{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 ++$as_echo_n "checking for $ac_word... " >&6; } ++if ${ac_cv_path_ESD_CONFIG+:} false; then : ++ $as_echo_n "(cached) " >&6 + else + case $ESD_CONFIG in + [\\/]* | ?:[\\/]*) +@@ -57746,14 +38170,14 @@ for as_dir in $PATH + do + IFS=$as_save_IFS + test -z "$as_dir" && as_dir=. +- for ac_exec_ext in '' $ac_executable_extensions; do +- if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then ++ for ac_exec_ext in '' $ac_executable_extensions; do ++ if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then + ac_cv_path_ESD_CONFIG="$as_dir/$ac_word$ac_exec_ext" +- echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 ++ $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 + break 2 + fi + done +-done ++ done + IFS=$as_save_IFS + + test -z "$ac_cv_path_ESD_CONFIG" && ac_cv_path_ESD_CONFIG="no" +@@ -57762,11 +38186,11 @@ esac + fi + ESD_CONFIG=$ac_cv_path_ESD_CONFIG + if test -n "$ESD_CONFIG"; then +- { echo "$as_me:$LINENO: result: $ESD_CONFIG" >&5 +-echo "${ECHO_T}$ESD_CONFIG" >&6; } ++ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ESD_CONFIG" >&5 ++$as_echo "$ESD_CONFIG" >&6; } + else +- { echo "$as_me:$LINENO: result: no" >&5 +-echo "${ECHO_T}no" >&6; } ++ { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 ++$as_echo "no" >&6; } + fi + + +@@ -57793,7 +38217,7 @@ fi + + + # Check whether --enable-portaudio was given. +-if test "${enable_portaudio+set}" = set; then ++if test "${enable_portaudio+set}" = set; then : + enableval=$enable_portaudio; if test "${enable_portaudio}" = "yes" + then + +@@ -57825,15 +38249,15 @@ fi + + + # Check whether --enable-arts was given. +-if test "${enable_arts+set}" = set; then ++if test "${enable_arts+set}" = set; then : + enableval=$enable_arts; if test "${enable_arts}" = "yes" + then + # Extract the first word of "artsc-config", so it can be a program name with args. + set dummy artsc-config; ac_word=$2 +-{ echo "$as_me:$LINENO: checking for $ac_word" >&5 +-echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6; } +-if test "${ac_cv_path_ARTS_CONFIG+set}" = set; then +- echo $ECHO_N "(cached) $ECHO_C" >&6 ++{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 ++$as_echo_n "checking for $ac_word... " >&6; } ++if ${ac_cv_path_ARTS_CONFIG+:} false; then : ++ $as_echo_n "(cached) " >&6 + else + case $ARTS_CONFIG in + [\\/]* | ?:[\\/]*) +@@ -57845,14 +38269,14 @@ for as_dir in $PATH + do + IFS=$as_save_IFS + test -z "$as_dir" && as_dir=. +- for ac_exec_ext in '' $ac_executable_extensions; do +- if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then ++ for ac_exec_ext in '' $ac_executable_extensions; do ++ if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then + ac_cv_path_ARTS_CONFIG="$as_dir/$ac_word$ac_exec_ext" +- echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 ++ $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 + break 2 + fi + done +-done ++ done + IFS=$as_save_IFS + + test -z "$ac_cv_path_ARTS_CONFIG" && ac_cv_path_ARTS_CONFIG="no" +@@ -57861,11 +38285,11 @@ esac + fi + ARTS_CONFIG=$ac_cv_path_ARTS_CONFIG + if test -n "$ARTS_CONFIG"; then +- { echo "$as_me:$LINENO: result: $ARTS_CONFIG" >&5 +-echo "${ECHO_T}$ARTS_CONFIG" >&6; } ++ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ARTS_CONFIG" >&5 ++$as_echo "$ARTS_CONFIG" >&6; } + else +- { echo "$as_me:$LINENO: result: no" >&5 +-echo "${ECHO_T}no" >&6; } ++ { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 ++$as_echo "no" >&6; } + fi + + +@@ -57892,150 +38316,22 @@ fi + + + # Check whether --enable-alsa was given. +-if test "${enable_alsa+set}" = set; then ++if test "${enable_alsa+set}" = set; then : + enableval=$enable_alsa; + fi + + if test "${enable_alsa}" != "no" + then +- if test "${ac_cv_header_alsa_asoundlib_h+set}" = set; then +- { echo "$as_me:$LINENO: checking for alsa/asoundlib.h" >&5 +-echo $ECHO_N "checking for alsa/asoundlib.h... $ECHO_C" >&6; } +-if test "${ac_cv_header_alsa_asoundlib_h+set}" = set; then +- echo $ECHO_N "(cached) $ECHO_C" >&6 +-fi +-{ echo "$as_me:$LINENO: result: $ac_cv_header_alsa_asoundlib_h" >&5 +-echo "${ECHO_T}$ac_cv_header_alsa_asoundlib_h" >&6; } +-else +- # Is the header compilable? +-{ echo "$as_me:$LINENO: checking alsa/asoundlib.h usability" >&5 +-echo $ECHO_N "checking alsa/asoundlib.h usability... $ECHO_C" >&6; } +-cat >conftest.$ac_ext <<_ACEOF +-/* confdefs.h. */ +-_ACEOF +-cat confdefs.h >>conftest.$ac_ext +-cat >>conftest.$ac_ext <<_ACEOF +-/* end confdefs.h. */ +-$ac_includes_default +-#include +-_ACEOF +-rm -f conftest.$ac_objext +-if { (ac_try="$ac_compile" +-case "(($ac_try" in +- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; +- *) ac_try_echo=$ac_try;; +-esac +-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 +- (eval "$ac_compile") 2>conftest.er1 +- ac_status=$? +- grep -v '^ *+' conftest.er1 >conftest.err +- rm -f conftest.er1 +- cat conftest.err >&5 +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); } && { +- test -z "$ac_c_werror_flag" || +- test ! -s conftest.err +- } && test -s conftest.$ac_objext; then +- ac_header_compiler=yes +-else +- echo "$as_me: failed program was:" >&5 +-sed 's/^/| /' conftest.$ac_ext >&5 +- +- ac_header_compiler=no +-fi +- +-rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext +-{ echo "$as_me:$LINENO: result: $ac_header_compiler" >&5 +-echo "${ECHO_T}$ac_header_compiler" >&6; } +- +-# Is the header present? +-{ echo "$as_me:$LINENO: checking alsa/asoundlib.h presence" >&5 +-echo $ECHO_N "checking alsa/asoundlib.h presence... $ECHO_C" >&6; } +-cat >conftest.$ac_ext <<_ACEOF +-/* confdefs.h. */ +-_ACEOF +-cat confdefs.h >>conftest.$ac_ext +-cat >>conftest.$ac_ext <<_ACEOF +-/* end confdefs.h. */ +-#include +-_ACEOF +-if { (ac_try="$ac_cpp conftest.$ac_ext" +-case "(($ac_try" in +- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; +- *) ac_try_echo=$ac_try;; +-esac +-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 +- (eval "$ac_cpp conftest.$ac_ext") 2>conftest.er1 +- ac_status=$? +- grep -v '^ *+' conftest.er1 >conftest.err +- rm -f conftest.er1 +- cat conftest.err >&5 +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); } >/dev/null && { +- test -z "$ac_c_preproc_warn_flag$ac_c_werror_flag" || +- test ! -s conftest.err +- }; then +- ac_header_preproc=yes +-else +- echo "$as_me: failed program was:" >&5 +-sed 's/^/| /' conftest.$ac_ext >&5 +- +- ac_header_preproc=no +-fi +- +-rm -f conftest.err conftest.$ac_ext +-{ echo "$as_me:$LINENO: result: $ac_header_preproc" >&5 +-echo "${ECHO_T}$ac_header_preproc" >&6; } +- +-# So? What about this header? +-case $ac_header_compiler:$ac_header_preproc:$ac_c_preproc_warn_flag in +- yes:no: ) +- { echo "$as_me:$LINENO: WARNING: alsa/asoundlib.h: accepted by the compiler, rejected by the preprocessor!" >&5 +-echo "$as_me: WARNING: alsa/asoundlib.h: accepted by the compiler, rejected by the preprocessor!" >&2;} +- { echo "$as_me:$LINENO: WARNING: alsa/asoundlib.h: proceeding with the compiler's result" >&5 +-echo "$as_me: WARNING: alsa/asoundlib.h: proceeding with the compiler's result" >&2;} +- ac_header_preproc=yes +- ;; +- no:yes:* ) +- { echo "$as_me:$LINENO: WARNING: alsa/asoundlib.h: present but cannot be compiled" >&5 +-echo "$as_me: WARNING: alsa/asoundlib.h: present but cannot be compiled" >&2;} +- { echo "$as_me:$LINENO: WARNING: alsa/asoundlib.h: check for missing prerequisite headers?" >&5 +-echo "$as_me: WARNING: alsa/asoundlib.h: check for missing prerequisite headers?" >&2;} +- { echo "$as_me:$LINENO: WARNING: alsa/asoundlib.h: see the Autoconf documentation" >&5 +-echo "$as_me: WARNING: alsa/asoundlib.h: see the Autoconf documentation" >&2;} +- { echo "$as_me:$LINENO: WARNING: alsa/asoundlib.h: section \"Present But Cannot Be Compiled\"" >&5 +-echo "$as_me: WARNING: alsa/asoundlib.h: section \"Present But Cannot Be Compiled\"" >&2;} +- { echo "$as_me:$LINENO: WARNING: alsa/asoundlib.h: proceeding with the preprocessor's result" >&5 +-echo "$as_me: WARNING: alsa/asoundlib.h: proceeding with the preprocessor's result" >&2;} +- { echo "$as_me:$LINENO: WARNING: alsa/asoundlib.h: in the future, the compiler will take precedence" >&5 +-echo "$as_me: WARNING: alsa/asoundlib.h: in the future, the compiler will take precedence" >&2;} +- +- ;; +-esac +-{ echo "$as_me:$LINENO: checking for alsa/asoundlib.h" >&5 +-echo $ECHO_N "checking for alsa/asoundlib.h... $ECHO_C" >&6; } +-if test "${ac_cv_header_alsa_asoundlib_h+set}" = set; then +- echo $ECHO_N "(cached) $ECHO_C" >&6 +-else +- ac_cv_header_alsa_asoundlib_h=$ac_header_preproc +-fi +-{ echo "$as_me:$LINENO: result: $ac_cv_header_alsa_asoundlib_h" >&5 +-echo "${ECHO_T}$ac_cv_header_alsa_asoundlib_h" >&6; } +- +-fi +-if test $ac_cv_header_alsa_asoundlib_h = yes; then +- { echo "$as_me:$LINENO: checking for main in -lasound" >&5 +-echo $ECHO_N "checking for main in -lasound... $ECHO_C" >&6; } +-if test "${ac_cv_lib_asound_main+set}" = set; then +- echo $ECHO_N "(cached) $ECHO_C" >&6 ++ ac_fn_c_check_header_mongrel "$LINENO" "alsa/asoundlib.h" "ac_cv_header_alsa_asoundlib_h" "$ac_includes_default" ++if test "x$ac_cv_header_alsa_asoundlib_h" = xyes; then : ++ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for main in -lasound" >&5 ++$as_echo_n "checking for main in -lasound... " >&6; } ++if ${ac_cv_lib_asound_main+:} false; then : ++ $as_echo_n "(cached) " >&6 + else + ac_check_lib_save_LIBS=$LIBS + LIBS="-lasound $LIBS" +-cat >conftest.$ac_ext <<_ACEOF +-/* confdefs.h. */ +-_ACEOF +-cat confdefs.h >>conftest.$ac_ext +-cat >>conftest.$ac_ext <<_ACEOF ++cat confdefs.h - <<_ACEOF >conftest.$ac_ext + /* end confdefs.h. */ + + +@@ -58047,39 +38343,18 @@ return main (); + return 0; + } + _ACEOF +-rm -f conftest.$ac_objext conftest$ac_exeext +-if { (ac_try="$ac_link" +-case "(($ac_try" in +- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; +- *) ac_try_echo=$ac_try;; +-esac +-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 +- (eval "$ac_link") 2>conftest.er1 +- ac_status=$? +- grep -v '^ *+' conftest.er1 >conftest.err +- rm -f conftest.er1 +- cat conftest.err >&5 +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); } && { +- test -z "$ac_c_werror_flag" || +- test ! -s conftest.err +- } && test -s conftest$ac_exeext && +- $as_test_x conftest$ac_exeext; then ++if ac_fn_c_try_link "$LINENO"; then : + ac_cv_lib_asound_main=yes + else +- echo "$as_me: failed program was:" >&5 +-sed 's/^/| /' conftest.$ac_ext >&5 +- +- ac_cv_lib_asound_main=no ++ ac_cv_lib_asound_main=no + fi +- +-rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ +- conftest$ac_exeext conftest.$ac_ext ++rm -f core conftest.err conftest.$ac_objext \ ++ conftest$ac_exeext conftest.$ac_ext + LIBS=$ac_check_lib_save_LIBS + fi +-{ echo "$as_me:$LINENO: result: $ac_cv_lib_asound_main" >&5 +-echo "${ECHO_T}$ac_cv_lib_asound_main" >&6; } +-if test $ac_cv_lib_asound_main = yes; then ++{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_asound_main" >&5 ++$as_echo "$ac_cv_lib_asound_main" >&6; } ++if test "x$ac_cv_lib_asound_main" = xyes; then : + have_alsa="true" + else + have_alsa="false" +@@ -58093,11 +38368,7 @@ fi + if test "${have_alsa}" = "true" + then + CFLAGS="${CFLAGS_save}" +- cat >conftest.$ac_ext <<_ACEOF +-/* confdefs.h. */ +-_ACEOF +-cat confdefs.h >>conftest.$ac_ext +-cat >>conftest.$ac_ext <<_ACEOF ++ cat confdefs.h - <<_ACEOF >conftest.$ac_ext + /* end confdefs.h. */ + #define ALSA_PCM_NEW_HW_PARAMS_API + #define ALSA_PCM_NEW_SW_PARAMS_API +@@ -58110,35 +38381,11 @@ void foo() { snd_pcm_hw_params_get_period_time(0,0,0); } + return 0; + } + _ACEOF +-rm -f conftest.$ac_objext +-if { (ac_try="$ac_compile" +-case "(($ac_try" in +- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; +- *) ac_try_echo=$ac_try;; +-esac +-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 +- (eval "$ac_compile") 2>conftest.er1 +- ac_status=$? +- grep -v '^ *+' conftest.er1 >conftest.err +- rm -f conftest.er1 +- cat conftest.err >&5 +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); } && { +- test -z "$ac_c_werror_flag" || +- test ! -s conftest.err +- } && test -s conftest.$ac_objext; then +- +-cat >>confdefs.h <<\_ACEOF +-#define HAVE_ALSA_NEW_API 1 +-_ACEOF +- +-else +- echo "$as_me: failed program was:" >&5 +-sed 's/^/| /' conftest.$ac_ext >&5 ++if ac_fn_c_try_compile "$LINENO"; then : + ++$as_echo "#define HAVE_ALSA_NEW_API 1" >>confdefs.h + + fi +- + rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext + + PLUGINS="${PLUGINS} alsa" +@@ -58151,15 +38398,13 @@ rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext + + else + if test "${enable_alsa}" = "yes"; then +- { { echo "$as_me:$LINENO: error: Could not find ALSA development headers" >&5 +-echo "$as_me: error: Could not find ALSA development headers" >&2;} +- { (exit 1); exit 1; }; } ++ as_fn_error $? "Could not find ALSA development headers" "$LINENO" 5 + fi + fi + fi + + # Check whether --enable-waveout was given. +-if test "${enable_waveout+set}" = set; then ++if test "${enable_waveout+set}" = set; then : + enableval=$enable_waveout; + fi + +@@ -58183,147 +38428,19 @@ if test "${enable_waveout}" != "no"; then + fi + + # Check whether --enable-macosx-audio was given. +-if test "${enable_macosx_audio+set}" = set; then ++if test "${enable_macosx_audio+set}" = set; then : + enableval=$enable_macosx_audio; + fi + + if test "${enable_macosx-audio}" != "no" && + (test "${SYS}" = "darwin" || test "${enable_macosx-audio}" = "yes") + then +- +-for ac_header in CoreAudio/CoreAudio.h +-do +-as_ac_Header=`echo "ac_cv_header_$ac_header" | $as_tr_sh` +-if { as_var=$as_ac_Header; eval "test \"\${$as_var+set}\" = set"; }; then +- { echo "$as_me:$LINENO: checking for $ac_header" >&5 +-echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6; } +-if { as_var=$as_ac_Header; eval "test \"\${$as_var+set}\" = set"; }; then +- echo $ECHO_N "(cached) $ECHO_C" >&6 +-fi +-ac_res=`eval echo '${'$as_ac_Header'}'` +- { echo "$as_me:$LINENO: result: $ac_res" >&5 +-echo "${ECHO_T}$ac_res" >&6; } +-else +- # Is the header compilable? +-{ echo "$as_me:$LINENO: checking $ac_header usability" >&5 +-echo $ECHO_N "checking $ac_header usability... $ECHO_C" >&6; } +-cat >conftest.$ac_ext <<_ACEOF +-/* confdefs.h. */ +-_ACEOF +-cat confdefs.h >>conftest.$ac_ext +-cat >>conftest.$ac_ext <<_ACEOF +-/* end confdefs.h. */ +-$ac_includes_default +-#include <$ac_header> +-_ACEOF +-rm -f conftest.$ac_objext +-if { (ac_try="$ac_compile" +-case "(($ac_try" in +- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; +- *) ac_try_echo=$ac_try;; +-esac +-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 +- (eval "$ac_compile") 2>conftest.er1 +- ac_status=$? +- grep -v '^ *+' conftest.er1 >conftest.err +- rm -f conftest.er1 +- cat conftest.err >&5 +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); } && { +- test -z "$ac_c_werror_flag" || +- test ! -s conftest.err +- } && test -s conftest.$ac_objext; then +- ac_header_compiler=yes +-else +- echo "$as_me: failed program was:" >&5 +-sed 's/^/| /' conftest.$ac_ext >&5 +- +- ac_header_compiler=no +-fi +- +-rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext +-{ echo "$as_me:$LINENO: result: $ac_header_compiler" >&5 +-echo "${ECHO_T}$ac_header_compiler" >&6; } +- +-# Is the header present? +-{ echo "$as_me:$LINENO: checking $ac_header presence" >&5 +-echo $ECHO_N "checking $ac_header presence... $ECHO_C" >&6; } +-cat >conftest.$ac_ext <<_ACEOF +-/* confdefs.h. */ +-_ACEOF +-cat confdefs.h >>conftest.$ac_ext +-cat >>conftest.$ac_ext <<_ACEOF +-/* end confdefs.h. */ +-#include <$ac_header> +-_ACEOF +-if { (ac_try="$ac_cpp conftest.$ac_ext" +-case "(($ac_try" in +- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; +- *) ac_try_echo=$ac_try;; +-esac +-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 +- (eval "$ac_cpp conftest.$ac_ext") 2>conftest.er1 +- ac_status=$? +- grep -v '^ *+' conftest.er1 >conftest.err +- rm -f conftest.er1 +- cat conftest.err >&5 +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); } >/dev/null && { +- test -z "$ac_c_preproc_warn_flag$ac_c_werror_flag" || +- test ! -s conftest.err +- }; then +- ac_header_preproc=yes +-else +- echo "$as_me: failed program was:" >&5 +-sed 's/^/| /' conftest.$ac_ext >&5 +- +- ac_header_preproc=no +-fi +- +-rm -f conftest.err conftest.$ac_ext +-{ echo "$as_me:$LINENO: result: $ac_header_preproc" >&5 +-echo "${ECHO_T}$ac_header_preproc" >&6; } +- +-# So? What about this header? +-case $ac_header_compiler:$ac_header_preproc:$ac_c_preproc_warn_flag in +- yes:no: ) +- { echo "$as_me:$LINENO: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&5 +-echo "$as_me: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&2;} +- { echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the compiler's result" >&5 +-echo "$as_me: WARNING: $ac_header: proceeding with the compiler's result" >&2;} +- ac_header_preproc=yes +- ;; +- no:yes:* ) +- { echo "$as_me:$LINENO: WARNING: $ac_header: present but cannot be compiled" >&5 +-echo "$as_me: WARNING: $ac_header: present but cannot be compiled" >&2;} +- { echo "$as_me:$LINENO: WARNING: $ac_header: check for missing prerequisite headers?" >&5 +-echo "$as_me: WARNING: $ac_header: check for missing prerequisite headers?" >&2;} +- { echo "$as_me:$LINENO: WARNING: $ac_header: see the Autoconf documentation" >&5 +-echo "$as_me: WARNING: $ac_header: see the Autoconf documentation" >&2;} +- { echo "$as_me:$LINENO: WARNING: $ac_header: section \"Present But Cannot Be Compiled\"" >&5 +-echo "$as_me: WARNING: $ac_header: section \"Present But Cannot Be Compiled\"" >&2;} +- { echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the preprocessor's result" >&5 +-echo "$as_me: WARNING: $ac_header: proceeding with the preprocessor's result" >&2;} +- { echo "$as_me:$LINENO: WARNING: $ac_header: in the future, the compiler will take precedence" >&5 +-echo "$as_me: WARNING: $ac_header: in the future, the compiler will take precedence" >&2;} +- +- ;; +-esac +-{ echo "$as_me:$LINENO: checking for $ac_header" >&5 +-echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6; } +-if { as_var=$as_ac_Header; eval "test \"\${$as_var+set}\" = set"; }; then +- echo $ECHO_N "(cached) $ECHO_C" >&6 +-else +- eval "$as_ac_Header=\$ac_header_preproc" +-fi +-ac_res=`eval echo '${'$as_ac_Header'}'` +- { echo "$as_me:$LINENO: result: $ac_res" >&5 +-echo "${ECHO_T}$ac_res" >&6; } +- +-fi +-if test `eval echo '${'$as_ac_Header'}'` = yes; then ++ for ac_header in CoreAudio/CoreAudio.h ++do : ++ ac_fn_c_check_header_mongrel "$LINENO" "CoreAudio/CoreAudio.h" "ac_cv_header_CoreAudio_CoreAudio_h" "$ac_includes_default" ++if test "x$ac_cv_header_CoreAudio_CoreAudio_h" = xyes; then : + cat >>confdefs.h <<_ACEOF +-#define `echo "HAVE_$ac_header" | $as_tr_cpp` 1 ++#define HAVE_COREAUDIO_COREAUDIO_H 1 + _ACEOF + + BUILTINS="${BUILTINS} auhal" +@@ -58336,9 +38453,7 @@ _ACEOF + + + else +- { { echo "$as_me:$LINENO: error: cannot find CoreAudio headers" >&5 +-echo "$as_me: error: cannot find CoreAudio headers" >&2;} +- { (exit 1); exit 1; }; } ++ as_fn_error $? "cannot find CoreAudio headers" "$LINENO" 5 + fi + + done +@@ -58346,7 +38461,7 @@ done + fi + + # Check whether --enable-hd1000a was given. +-if test "${enable_hd1000a+set}" = set; then ++if test "${enable_hd1000a+set}" = set; then : + enableval=$enable_hd1000a; + fi + +@@ -58360,157 +38475,25 @@ ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' + ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' + ac_compiler_gnu=$ac_cv_cxx_compiler_gnu + +- +-for ac_header in deschutes/libraries/hdmachinex225/PCMAudioPlayer.h +-do +-as_ac_Header=`echo "ac_cv_header_$ac_header" | $as_tr_sh` +-if { as_var=$as_ac_Header; eval "test \"\${$as_var+set}\" = set"; }; then +- { echo "$as_me:$LINENO: checking for $ac_header" >&5 +-echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6; } +-if { as_var=$as_ac_Header; eval "test \"\${$as_var+set}\" = set"; }; then +- echo $ECHO_N "(cached) $ECHO_C" >&6 +-fi +-ac_res=`eval echo '${'$as_ac_Header'}'` +- { echo "$as_me:$LINENO: result: $ac_res" >&5 +-echo "${ECHO_T}$ac_res" >&6; } +-else +- # Is the header compilable? +-{ echo "$as_me:$LINENO: checking $ac_header usability" >&5 +-echo $ECHO_N "checking $ac_header usability... $ECHO_C" >&6; } +-cat >conftest.$ac_ext <<_ACEOF +-/* confdefs.h. */ +-_ACEOF +-cat confdefs.h >>conftest.$ac_ext +-cat >>conftest.$ac_ext <<_ACEOF +-/* end confdefs.h. */ +-$ac_includes_default +-#include <$ac_header> +-_ACEOF +-rm -f conftest.$ac_objext +-if { (ac_try="$ac_compile" +-case "(($ac_try" in +- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; +- *) ac_try_echo=$ac_try;; +-esac +-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 +- (eval "$ac_compile") 2>conftest.er1 +- ac_status=$? +- grep -v '^ *+' conftest.er1 >conftest.err +- rm -f conftest.er1 +- cat conftest.err >&5 +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); } && { +- test -z "$ac_cxx_werror_flag" || +- test ! -s conftest.err +- } && test -s conftest.$ac_objext; then +- ac_header_compiler=yes +-else +- echo "$as_me: failed program was:" >&5 +-sed 's/^/| /' conftest.$ac_ext >&5 +- +- ac_header_compiler=no +-fi +- +-rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext +-{ echo "$as_me:$LINENO: result: $ac_header_compiler" >&5 +-echo "${ECHO_T}$ac_header_compiler" >&6; } +- +-# Is the header present? +-{ echo "$as_me:$LINENO: checking $ac_header presence" >&5 +-echo $ECHO_N "checking $ac_header presence... $ECHO_C" >&6; } +-cat >conftest.$ac_ext <<_ACEOF +-/* confdefs.h. */ +-_ACEOF +-cat confdefs.h >>conftest.$ac_ext +-cat >>conftest.$ac_ext <<_ACEOF +-/* end confdefs.h. */ +-#include <$ac_header> +-_ACEOF +-if { (ac_try="$ac_cpp conftest.$ac_ext" +-case "(($ac_try" in +- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; +- *) ac_try_echo=$ac_try;; +-esac +-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 +- (eval "$ac_cpp conftest.$ac_ext") 2>conftest.er1 +- ac_status=$? +- grep -v '^ *+' conftest.er1 >conftest.err +- rm -f conftest.er1 +- cat conftest.err >&5 +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); } >/dev/null && { +- test -z "$ac_cxx_preproc_warn_flag$ac_cxx_werror_flag" || +- test ! -s conftest.err +- }; then +- ac_header_preproc=yes +-else +- echo "$as_me: failed program was:" >&5 +-sed 's/^/| /' conftest.$ac_ext >&5 +- +- ac_header_preproc=no +-fi +- +-rm -f conftest.err conftest.$ac_ext +-{ echo "$as_me:$LINENO: result: $ac_header_preproc" >&5 +-echo "${ECHO_T}$ac_header_preproc" >&6; } +- +-# So? What about this header? +-case $ac_header_compiler:$ac_header_preproc:$ac_cxx_preproc_warn_flag in +- yes:no: ) +- { echo "$as_me:$LINENO: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&5 +-echo "$as_me: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&2;} +- { echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the compiler's result" >&5 +-echo "$as_me: WARNING: $ac_header: proceeding with the compiler's result" >&2;} +- ac_header_preproc=yes +- ;; +- no:yes:* ) +- { echo "$as_me:$LINENO: WARNING: $ac_header: present but cannot be compiled" >&5 +-echo "$as_me: WARNING: $ac_header: present but cannot be compiled" >&2;} +- { echo "$as_me:$LINENO: WARNING: $ac_header: check for missing prerequisite headers?" >&5 +-echo "$as_me: WARNING: $ac_header: check for missing prerequisite headers?" >&2;} +- { echo "$as_me:$LINENO: WARNING: $ac_header: see the Autoconf documentation" >&5 +-echo "$as_me: WARNING: $ac_header: see the Autoconf documentation" >&2;} +- { echo "$as_me:$LINENO: WARNING: $ac_header: section \"Present But Cannot Be Compiled\"" >&5 +-echo "$as_me: WARNING: $ac_header: section \"Present But Cannot Be Compiled\"" >&2;} +- { echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the preprocessor's result" >&5 +-echo "$as_me: WARNING: $ac_header: proceeding with the preprocessor's result" >&2;} +- { echo "$as_me:$LINENO: WARNING: $ac_header: in the future, the compiler will take precedence" >&5 +-echo "$as_me: WARNING: $ac_header: in the future, the compiler will take precedence" >&2;} +- +- ;; +-esac +-{ echo "$as_me:$LINENO: checking for $ac_header" >&5 +-echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6; } +-if { as_var=$as_ac_Header; eval "test \"\${$as_var+set}\" = set"; }; then +- echo $ECHO_N "(cached) $ECHO_C" >&6 +-else +- eval "$as_ac_Header=\$ac_header_preproc" +-fi +-ac_res=`eval echo '${'$as_ac_Header'}'` +- { echo "$as_me:$LINENO: result: $ac_res" >&5 +-echo "${ECHO_T}$ac_res" >&6; } +- +-fi +-if test `eval echo '${'$as_ac_Header'}'` = yes; then ++ for ac_header in deschutes/libraries/hdmachinex225/PCMAudioPlayer.h ++do : ++ ac_fn_cxx_check_header_mongrel "$LINENO" "deschutes/libraries/hdmachinex225/PCMAudioPlayer.h" "ac_cv_header_deschutes_libraries_hdmachinex225_PCMAudioPlayer_h" "$ac_includes_default" ++if test "x$ac_cv_header_deschutes_libraries_hdmachinex225_PCMAudioPlayer_h" = xyes; then : + cat >>confdefs.h <<_ACEOF +-#define `echo "HAVE_$ac_header" | $as_tr_cpp` 1 ++#define HAVE_DESCHUTES_LIBRARIES_HDMACHINEX225_PCMAUDIOPLAYER_H 1 + _ACEOF + + + PLUGINS="${PLUGINS} hd1000a" + +- { echo "$as_me:$LINENO: checking for main in -lHDMachineX225" >&5 +-echo $ECHO_N "checking for main in -lHDMachineX225... $ECHO_C" >&6; } +-if test "${ac_cv_lib_HDMachineX225_main+set}" = set; then +- echo $ECHO_N "(cached) $ECHO_C" >&6 ++ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for main in -lHDMachineX225" >&5 ++$as_echo_n "checking for main in -lHDMachineX225... " >&6; } ++if ${ac_cv_lib_HDMachineX225_main+:} false; then : ++ $as_echo_n "(cached) " >&6 + else + ac_check_lib_save_LIBS=$LIBS + LIBS="-lHDMachineX225 $LIBS" +-cat >conftest.$ac_ext <<_ACEOF +-/* confdefs.h. */ +-_ACEOF +-cat confdefs.h >>conftest.$ac_ext +-cat >>conftest.$ac_ext <<_ACEOF ++cat confdefs.h - <<_ACEOF >conftest.$ac_ext + /* end confdefs.h. */ + + +@@ -58522,39 +38505,18 @@ return main (); + return 0; + } + _ACEOF +-rm -f conftest.$ac_objext conftest$ac_exeext +-if { (ac_try="$ac_link" +-case "(($ac_try" in +- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; +- *) ac_try_echo=$ac_try;; +-esac +-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 +- (eval "$ac_link") 2>conftest.er1 +- ac_status=$? +- grep -v '^ *+' conftest.er1 >conftest.err +- rm -f conftest.er1 +- cat conftest.err >&5 +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); } && { +- test -z "$ac_cxx_werror_flag" || +- test ! -s conftest.err +- } && test -s conftest$ac_exeext && +- $as_test_x conftest$ac_exeext; then ++if ac_fn_cxx_try_link "$LINENO"; then : + ac_cv_lib_HDMachineX225_main=yes + else +- echo "$as_me: failed program was:" >&5 +-sed 's/^/| /' conftest.$ac_ext >&5 +- +- ac_cv_lib_HDMachineX225_main=no ++ ac_cv_lib_HDMachineX225_main=no + fi +- +-rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ +- conftest$ac_exeext conftest.$ac_ext ++rm -f core conftest.err conftest.$ac_objext \ ++ conftest$ac_exeext conftest.$ac_ext + LIBS=$ac_check_lib_save_LIBS + fi +-{ echo "$as_me:$LINENO: result: $ac_cv_lib_HDMachineX225_main" >&5 +-echo "${ECHO_T}$ac_cv_lib_HDMachineX225_main" >&6; } +-if test $ac_cv_lib_HDMachineX225_main = yes; then ++{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_HDMachineX225_main" >&5 ++$as_echo "$ac_cv_lib_HDMachineX225_main" >&6; } ++if test "x$ac_cv_lib_HDMachineX225_main" = xyes; then : + + for element in hd1000a; do + eval "LDFLAGS_${element}="'"'"-lHDMachineX225 "'$'"{LDFLAGS_${element}} "'"' +@@ -58576,143 +38538,15 @@ ac_compiler_gnu=$ac_cv_c_compiler_gnu + fi + + # Check whether --enable-jack was given. +-if test "${enable_jack+set}" = set; then ++if test "${enable_jack+set}" = set; then : + enableval=$enable_jack; if test "${enable_jack}" = "yes" + then +- +-for ac_header in jack/jack.h +-do +-as_ac_Header=`echo "ac_cv_header_$ac_header" | $as_tr_sh` +-if { as_var=$as_ac_Header; eval "test \"\${$as_var+set}\" = set"; }; then +- { echo "$as_me:$LINENO: checking for $ac_header" >&5 +-echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6; } +-if { as_var=$as_ac_Header; eval "test \"\${$as_var+set}\" = set"; }; then +- echo $ECHO_N "(cached) $ECHO_C" >&6 +-fi +-ac_res=`eval echo '${'$as_ac_Header'}'` +- { echo "$as_me:$LINENO: result: $ac_res" >&5 +-echo "${ECHO_T}$ac_res" >&6; } +-else +- # Is the header compilable? +-{ echo "$as_me:$LINENO: checking $ac_header usability" >&5 +-echo $ECHO_N "checking $ac_header usability... $ECHO_C" >&6; } +-cat >conftest.$ac_ext <<_ACEOF +-/* confdefs.h. */ +-_ACEOF +-cat confdefs.h >>conftest.$ac_ext +-cat >>conftest.$ac_ext <<_ACEOF +-/* end confdefs.h. */ +-$ac_includes_default +-#include <$ac_header> +-_ACEOF +-rm -f conftest.$ac_objext +-if { (ac_try="$ac_compile" +-case "(($ac_try" in +- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; +- *) ac_try_echo=$ac_try;; +-esac +-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 +- (eval "$ac_compile") 2>conftest.er1 +- ac_status=$? +- grep -v '^ *+' conftest.er1 >conftest.err +- rm -f conftest.er1 +- cat conftest.err >&5 +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); } && { +- test -z "$ac_c_werror_flag" || +- test ! -s conftest.err +- } && test -s conftest.$ac_objext; then +- ac_header_compiler=yes +-else +- echo "$as_me: failed program was:" >&5 +-sed 's/^/| /' conftest.$ac_ext >&5 +- +- ac_header_compiler=no +-fi +- +-rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext +-{ echo "$as_me:$LINENO: result: $ac_header_compiler" >&5 +-echo "${ECHO_T}$ac_header_compiler" >&6; } +- +-# Is the header present? +-{ echo "$as_me:$LINENO: checking $ac_header presence" >&5 +-echo $ECHO_N "checking $ac_header presence... $ECHO_C" >&6; } +-cat >conftest.$ac_ext <<_ACEOF +-/* confdefs.h. */ +-_ACEOF +-cat confdefs.h >>conftest.$ac_ext +-cat >>conftest.$ac_ext <<_ACEOF +-/* end confdefs.h. */ +-#include <$ac_header> +-_ACEOF +-if { (ac_try="$ac_cpp conftest.$ac_ext" +-case "(($ac_try" in +- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; +- *) ac_try_echo=$ac_try;; +-esac +-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 +- (eval "$ac_cpp conftest.$ac_ext") 2>conftest.er1 +- ac_status=$? +- grep -v '^ *+' conftest.er1 >conftest.err +- rm -f conftest.er1 +- cat conftest.err >&5 +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); } >/dev/null && { +- test -z "$ac_c_preproc_warn_flag$ac_c_werror_flag" || +- test ! -s conftest.err +- }; then +- ac_header_preproc=yes +-else +- echo "$as_me: failed program was:" >&5 +-sed 's/^/| /' conftest.$ac_ext >&5 +- +- ac_header_preproc=no +-fi +- +-rm -f conftest.err conftest.$ac_ext +-{ echo "$as_me:$LINENO: result: $ac_header_preproc" >&5 +-echo "${ECHO_T}$ac_header_preproc" >&6; } +- +-# So? What about this header? +-case $ac_header_compiler:$ac_header_preproc:$ac_c_preproc_warn_flag in +- yes:no: ) +- { echo "$as_me:$LINENO: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&5 +-echo "$as_me: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&2;} +- { echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the compiler's result" >&5 +-echo "$as_me: WARNING: $ac_header: proceeding with the compiler's result" >&2;} +- ac_header_preproc=yes +- ;; +- no:yes:* ) +- { echo "$as_me:$LINENO: WARNING: $ac_header: present but cannot be compiled" >&5 +-echo "$as_me: WARNING: $ac_header: present but cannot be compiled" >&2;} +- { echo "$as_me:$LINENO: WARNING: $ac_header: check for missing prerequisite headers?" >&5 +-echo "$as_me: WARNING: $ac_header: check for missing prerequisite headers?" >&2;} +- { echo "$as_me:$LINENO: WARNING: $ac_header: see the Autoconf documentation" >&5 +-echo "$as_me: WARNING: $ac_header: see the Autoconf documentation" >&2;} +- { echo "$as_me:$LINENO: WARNING: $ac_header: section \"Present But Cannot Be Compiled\"" >&5 +-echo "$as_me: WARNING: $ac_header: section \"Present But Cannot Be Compiled\"" >&2;} +- { echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the preprocessor's result" >&5 +-echo "$as_me: WARNING: $ac_header: proceeding with the preprocessor's result" >&2;} +- { echo "$as_me:$LINENO: WARNING: $ac_header: in the future, the compiler will take precedence" >&5 +-echo "$as_me: WARNING: $ac_header: in the future, the compiler will take precedence" >&2;} +- +- ;; +-esac +-{ echo "$as_me:$LINENO: checking for $ac_header" >&5 +-echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6; } +-if { as_var=$as_ac_Header; eval "test \"\${$as_var+set}\" = set"; }; then +- echo $ECHO_N "(cached) $ECHO_C" >&6 +-else +- eval "$as_ac_Header=\$ac_header_preproc" +-fi +-ac_res=`eval echo '${'$as_ac_Header'}'` +- { echo "$as_me:$LINENO: result: $ac_res" >&5 +-echo "${ECHO_T}$ac_res" >&6; } +- +-fi +-if test `eval echo '${'$as_ac_Header'}'` = yes; then ++ for ac_header in jack/jack.h ++do : ++ ac_fn_c_check_header_mongrel "$LINENO" "jack/jack.h" "ac_cv_header_jack_jack_h" "$ac_includes_default" ++if test "x$ac_cv_header_jack_jack_h" = xyes; then : + cat >>confdefs.h <<_ACEOF +-#define `echo "HAVE_$ac_header" | $as_tr_cpp` 1 ++#define HAVE_JACK_JACK_H 1 + _ACEOF + + +@@ -58733,20 +38567,20 @@ fi + + + # Check whether --enable-cyberlink was given. +-if test "${enable_cyberlink+set}" = set; then ++if test "${enable_cyberlink+set}" = set; then : + enableval=$enable_cyberlink; + fi + +- if test "${enable_cyberlink}" = "yes" ; then ++ if test "${enable_cyberlink}" = "yes" ; then : + + + # Check whether --with-cyberlink-tree was given. +-if test "${with_cyberlink_tree+set}" = set; then ++if test "${with_cyberlink_tree+set}" = set; then : + withval=$with_cyberlink_tree; + fi + + +- if test ! -z "${with_cyberlink_tree}" -a "${CXX}" != ""; then ++ if test ! -z "${with_cyberlink_tree}" -a "${CXX}" != ""; then : + + ac_ext=cpp + ac_cpp='$CXXCPP $CPPFLAGS' +@@ -58755,153 +38589,22 @@ ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ex + ac_compiler_gnu=$ac_cv_cxx_compiler_gnu + + real_cyberlink_tree="`cd ${with_cyberlink_tree} 2>/dev/null && pwd`" +- if test -z "${real_cyberlink_tree}"; then ++ if test -z "${real_cyberlink_tree}"; then : + +- { echo "$as_me:$LINENO: result: no" >&5 +-echo "${ECHO_T}no" >&6; } +- { { echo "$as_me:$LINENO: error: cannot cd to ${with_cyberlink_tree}" >&5 +-echo "$as_me: error: cannot cd to ${with_cyberlink_tree}" >&2;} +- { (exit 1); exit 1; }; } ++ { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 ++$as_echo "no" >&6; } ++ as_fn_error $? "cannot cd to ${with_cyberlink_tree}" "$LINENO" 5 + + fi +- + CPPFLAGS_save="${CPPFLAGS}" + CPPFLAGS_cyberlink="-I${real_cyberlink_tree}/include" + CPPFLAGS="${CPPFLAGS} ${CPPFLAGS_cyberlink}" +- +-for ac_header in cybergarage/upnp/MediaServer.h +-do +-as_ac_Header=`echo "ac_cv_header_$ac_header" | $as_tr_sh` +-if { as_var=$as_ac_Header; eval "test \"\${$as_var+set}\" = set"; }; then +- { echo "$as_me:$LINENO: checking for $ac_header" >&5 +-echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6; } +-if { as_var=$as_ac_Header; eval "test \"\${$as_var+set}\" = set"; }; then +- echo $ECHO_N "(cached) $ECHO_C" >&6 +-fi +-ac_res=`eval echo '${'$as_ac_Header'}'` +- { echo "$as_me:$LINENO: result: $ac_res" >&5 +-echo "${ECHO_T}$ac_res" >&6; } +-else +- # Is the header compilable? +-{ echo "$as_me:$LINENO: checking $ac_header usability" >&5 +-echo $ECHO_N "checking $ac_header usability... $ECHO_C" >&6; } +-cat >conftest.$ac_ext <<_ACEOF +-/* confdefs.h. */ +-_ACEOF +-cat confdefs.h >>conftest.$ac_ext +-cat >>conftest.$ac_ext <<_ACEOF +-/* end confdefs.h. */ +-$ac_includes_default +-#include <$ac_header> +-_ACEOF +-rm -f conftest.$ac_objext +-if { (ac_try="$ac_compile" +-case "(($ac_try" in +- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; +- *) ac_try_echo=$ac_try;; +-esac +-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 +- (eval "$ac_compile") 2>conftest.er1 +- ac_status=$? +- grep -v '^ *+' conftest.er1 >conftest.err +- rm -f conftest.er1 +- cat conftest.err >&5 +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); } && { +- test -z "$ac_cxx_werror_flag" || +- test ! -s conftest.err +- } && test -s conftest.$ac_objext; then +- ac_header_compiler=yes +-else +- echo "$as_me: failed program was:" >&5 +-sed 's/^/| /' conftest.$ac_ext >&5 +- +- ac_header_compiler=no +-fi +- +-rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext +-{ echo "$as_me:$LINENO: result: $ac_header_compiler" >&5 +-echo "${ECHO_T}$ac_header_compiler" >&6; } +- +-# Is the header present? +-{ echo "$as_me:$LINENO: checking $ac_header presence" >&5 +-echo $ECHO_N "checking $ac_header presence... $ECHO_C" >&6; } +-cat >conftest.$ac_ext <<_ACEOF +-/* confdefs.h. */ +-_ACEOF +-cat confdefs.h >>conftest.$ac_ext +-cat >>conftest.$ac_ext <<_ACEOF +-/* end confdefs.h. */ +-#include <$ac_header> +-_ACEOF +-if { (ac_try="$ac_cpp conftest.$ac_ext" +-case "(($ac_try" in +- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; +- *) ac_try_echo=$ac_try;; +-esac +-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 +- (eval "$ac_cpp conftest.$ac_ext") 2>conftest.er1 +- ac_status=$? +- grep -v '^ *+' conftest.er1 >conftest.err +- rm -f conftest.er1 +- cat conftest.err >&5 +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); } >/dev/null && { +- test -z "$ac_cxx_preproc_warn_flag$ac_cxx_werror_flag" || +- test ! -s conftest.err +- }; then +- ac_header_preproc=yes +-else +- echo "$as_me: failed program was:" >&5 +-sed 's/^/| /' conftest.$ac_ext >&5 +- +- ac_header_preproc=no +-fi +- +-rm -f conftest.err conftest.$ac_ext +-{ echo "$as_me:$LINENO: result: $ac_header_preproc" >&5 +-echo "${ECHO_T}$ac_header_preproc" >&6; } +- +-# So? What about this header? +-case $ac_header_compiler:$ac_header_preproc:$ac_cxx_preproc_warn_flag in +- yes:no: ) +- { echo "$as_me:$LINENO: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&5 +-echo "$as_me: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&2;} +- { echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the compiler's result" >&5 +-echo "$as_me: WARNING: $ac_header: proceeding with the compiler's result" >&2;} +- ac_header_preproc=yes +- ;; +- no:yes:* ) +- { echo "$as_me:$LINENO: WARNING: $ac_header: present but cannot be compiled" >&5 +-echo "$as_me: WARNING: $ac_header: present but cannot be compiled" >&2;} +- { echo "$as_me:$LINENO: WARNING: $ac_header: check for missing prerequisite headers?" >&5 +-echo "$as_me: WARNING: $ac_header: check for missing prerequisite headers?" >&2;} +- { echo "$as_me:$LINENO: WARNING: $ac_header: see the Autoconf documentation" >&5 +-echo "$as_me: WARNING: $ac_header: see the Autoconf documentation" >&2;} +- { echo "$as_me:$LINENO: WARNING: $ac_header: section \"Present But Cannot Be Compiled\"" >&5 +-echo "$as_me: WARNING: $ac_header: section \"Present But Cannot Be Compiled\"" >&2;} +- { echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the preprocessor's result" >&5 +-echo "$as_me: WARNING: $ac_header: proceeding with the preprocessor's result" >&2;} +- { echo "$as_me:$LINENO: WARNING: $ac_header: in the future, the compiler will take precedence" >&5 +-echo "$as_me: WARNING: $ac_header: in the future, the compiler will take precedence" >&2;} +- +- ;; +-esac +-{ echo "$as_me:$LINENO: checking for $ac_header" >&5 +-echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6; } +-if { as_var=$as_ac_Header; eval "test \"\${$as_var+set}\" = set"; }; then +- echo $ECHO_N "(cached) $ECHO_C" >&6 +-else +- eval "$as_ac_Header=\$ac_header_preproc" +-fi +-ac_res=`eval echo '${'$as_ac_Header'}'` +- { echo "$as_me:$LINENO: result: $ac_res" >&5 +-echo "${ECHO_T}$ac_res" >&6; } +- +-fi +-if test `eval echo '${'$as_ac_Header'}'` = yes; then ++ for ac_header in cybergarage/upnp/MediaServer.h ++do : ++ ac_fn_cxx_check_header_mongrel "$LINENO" "cybergarage/upnp/MediaServer.h" "ac_cv_header_cybergarage_upnp_MediaServer_h" "$ac_includes_default" ++if test "x$ac_cv_header_cybergarage_upnp_MediaServer_h" = xyes; then : + cat >>confdefs.h <<_ACEOF +-#define `echo "HAVE_$ac_header" | $as_tr_cpp` 1 ++#define HAVE_CYBERGARAGE_UPNP_MEDIASERVER_H 1 + _ACEOF + + for element in upnp_cc; do +@@ -58915,31 +38618,25 @@ _ACEOF + + else + +- { { echo "$as_me:$LINENO: error: cannot find CyberLink for C++ headers" >&5 +-echo "$as_me: error: cannot find CyberLink for C++ headers" >&2;} +- { (exit 1); exit 1; }; } ++ as_fn_error $? "cannot find CyberLink for C++ headers" "$LINENO" 5 + + fi + + done + +- { echo "$as_me:$LINENO: checking for libclink.a in ${with_cyberlink_tree}" >&5 +-echo $ECHO_N "checking for libclink.a in ${with_cyberlink_tree}... $ECHO_C" >&6; } +- if test -f "${real_cyberlink_tree}/lib/unix/libclink.a"; then ++ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for libclink.a in ${with_cyberlink_tree}" >&5 ++$as_echo_n "checking for libclink.a in ${with_cyberlink_tree}... " >&6; } ++ if test -f "${real_cyberlink_tree}/lib/unix/libclink.a"; then : + +- { echo "$as_me:$LINENO: result: ${real_cyberlink_tree}/lib/unix/libclink.a" >&5 +-echo "${ECHO_T}${real_cyberlink_tree}/lib/unix/libclink.a" >&6; } +- { echo "$as_me:$LINENO: checking for XML parser to link CyberLink with" >&5 +-echo $ECHO_N "checking for XML parser to link CyberLink with... $ECHO_C" >&6; } ++ { $as_echo "$as_me:${as_lineno-$LINENO}: result: ${real_cyberlink_tree}/lib/unix/libclink.a" >&5 ++$as_echo "${real_cyberlink_tree}/lib/unix/libclink.a" >&6; } ++ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for XML parser to link CyberLink with" >&5 ++$as_echo_n "checking for XML parser to link CyberLink with... " >&6; } + LIBS_save="$LIBS" + LIBS_cclink="no" + for l in "`xml2-config --libs`" -lexpat -lxerces-c; do + LIBS="$LIBS_save ${real_cyberlink_tree}/lib/unix/libclink.a -lpthread $l" +- cat >conftest.$ac_ext <<_ACEOF +-/* confdefs.h. */ +-_ACEOF +-cat confdefs.h >>conftest.$ac_ext +-cat >>conftest.$ac_ext <<_ACEOF ++ cat confdefs.h - <<_ACEOF >conftest.$ac_ext + /* end confdefs.h. */ + + #include +@@ -58967,46 +38664,21 @@ testclass l; + return 0; + } + _ACEOF +-rm -f conftest.$ac_objext conftest$ac_exeext +-if { (ac_try="$ac_link" +-case "(($ac_try" in +- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; +- *) ac_try_echo=$ac_try;; +-esac +-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 +- (eval "$ac_link") 2>conftest.er1 +- ac_status=$? +- grep -v '^ *+' conftest.er1 >conftest.err +- rm -f conftest.er1 +- cat conftest.err >&5 +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); } && { +- test -z "$ac_cxx_werror_flag" || +- test ! -s conftest.err +- } && test -s conftest$ac_exeext && +- $as_test_x conftest$ac_exeext; then ++if ac_fn_cxx_try_link "$LINENO"; then : + LIBS_cclink="$l" +-else +- echo "$as_me: failed program was:" >&5 +-sed 's/^/| /' conftest.$ac_ext >&5 +- +- + fi +- +-rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ +- conftest$ac_exeext conftest.$ac_ext ++rm -f core conftest.err conftest.$ac_objext \ ++ conftest$ac_exeext conftest.$ac_ext + done + LIBS="${LIBS_save}" +- if test "${LIBS_cclink}" = "no"; then +- { { echo "$as_me:$LINENO: error: cannot find XML parser for CyberLink +-See \`config.log' for more details." >&5 +-echo "$as_me: error: cannot find XML parser for CyberLink +-See \`config.log' for more details." >&2;} +- { (exit 1); exit 1; }; } ++ if test "${LIBS_cclink}" = "no"; then : ++ { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5 ++$as_echo "$as_me: error: in \`$ac_pwd':" >&2;} ++as_fn_error $? "cannot find XML parser for CyberLink ++See \`config.log' for more details" "$LINENO" 5; } + fi +- +- { echo "$as_me:$LINENO: result: ${LIBS_cclink}" >&5 +-echo "${ECHO_T}${LIBS_cclink}" >&6; } ++ { $as_echo "$as_me:${as_lineno-$LINENO}: result: ${LIBS_cclink}" >&5 ++$as_echo "${LIBS_cclink}" >&6; } + + for element in upnp_cc; do + eval "LDFLAGS_${element}="'"'"${real_cyberlink_tree}/lib/unix/libclink.a -lpthread ${LIBS_cclink} "'$'"{LDFLAGS_${element}} "'"' +@@ -59016,14 +38688,11 @@ echo "${ECHO_T}${LIBS_cclink}" >&6; } + + else + +- { echo "$as_me:$LINENO: result: no" >&5 +-echo "${ECHO_T}no" >&6; } +- { { echo "$as_me:$LINENO: error: cannot find ${real_cyberlink_tree}/lib/unix/libclink.a, make sure you compiled CyberLink for C++ in ${with_cyberlink_tree}" >&5 +-echo "$as_me: error: cannot find ${real_cyberlink_tree}/lib/unix/libclink.a, make sure you compiled CyberLink for C++ in ${with_cyberlink_tree}" >&2;} +- { (exit 1); exit 1; }; } ++ { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 ++$as_echo "no" >&6; } ++ as_fn_error $? "cannot find ${real_cyberlink_tree}/lib/unix/libclink.a, make sure you compiled CyberLink for C++ in ${with_cyberlink_tree}" "$LINENO" 5 + + fi +- + CPPFLAGS="${CPPFLAGS_save}" + ac_ext=c + ac_cpp='$CPP $CPPFLAGS' +@@ -59034,12 +38703,10 @@ ac_compiler_gnu=$ac_cv_c_compiler_gnu + + fi + +- + fi + +- + # Check whether --enable-upnp was given. +-if test "${enable_upnp+set}" = set; then ++if test "${enable_upnp+set}" = set; then : + enableval=$enable_upnp; + fi + +@@ -59050,20 +38717,16 @@ fi + am_modules_with_cxxflags="${am_modules_with_cxxflags} ${element}" + done + +-if test "x${enable_upnp}" != "xno"; then ++if test "x${enable_upnp}" != "xno"; then : + +- { echo "$as_me:$LINENO: checking for UpnpInit in -lupnp" >&5 +-echo $ECHO_N "checking for UpnpInit in -lupnp... $ECHO_C" >&6; } +-if test "${ac_cv_lib_upnp_UpnpInit+set}" = set; then +- echo $ECHO_N "(cached) $ECHO_C" >&6 ++ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for UpnpInit in -lupnp" >&5 ++$as_echo_n "checking for UpnpInit in -lupnp... " >&6; } ++if ${ac_cv_lib_upnp_UpnpInit+:} false; then : ++ $as_echo_n "(cached) " >&6 + else + ac_check_lib_save_LIBS=$LIBS + LIBS="-lupnp -lpthread $LIBS" +-cat >conftest.$ac_ext <<_ACEOF +-/* confdefs.h. */ +-_ACEOF +-cat confdefs.h >>conftest.$ac_ext +-cat >>conftest.$ac_ext <<_ACEOF ++cat confdefs.h - <<_ACEOF >conftest.$ac_ext + /* end confdefs.h. */ + + /* Override any GCC internal prototype to avoid an error. +@@ -59081,53 +38744,29 @@ return UpnpInit (); + return 0; + } + _ACEOF +-rm -f conftest.$ac_objext conftest$ac_exeext +-if { (ac_try="$ac_link" +-case "(($ac_try" in +- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; +- *) ac_try_echo=$ac_try;; +-esac +-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 +- (eval "$ac_link") 2>conftest.er1 +- ac_status=$? +- grep -v '^ *+' conftest.er1 >conftest.err +- rm -f conftest.er1 +- cat conftest.err >&5 +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); } && { +- test -z "$ac_c_werror_flag" || +- test ! -s conftest.err +- } && test -s conftest$ac_exeext && +- $as_test_x conftest$ac_exeext; then ++if ac_fn_c_try_link "$LINENO"; then : + ac_cv_lib_upnp_UpnpInit=yes + else +- echo "$as_me: failed program was:" >&5 +-sed 's/^/| /' conftest.$ac_ext >&5 +- +- ac_cv_lib_upnp_UpnpInit=no ++ ac_cv_lib_upnp_UpnpInit=no + fi +- +-rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ +- conftest$ac_exeext conftest.$ac_ext ++rm -f core conftest.err conftest.$ac_objext \ ++ conftest$ac_exeext conftest.$ac_ext + LIBS=$ac_check_lib_save_LIBS + fi +-{ echo "$as_me:$LINENO: result: $ac_cv_lib_upnp_UpnpInit" >&5 +-echo "${ECHO_T}$ac_cv_lib_upnp_UpnpInit" >&6; } +-if test $ac_cv_lib_upnp_UpnpInit = yes; then ++{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_upnp_UpnpInit" >&5 ++$as_echo "$ac_cv_lib_upnp_UpnpInit" >&6; } ++if test "x$ac_cv_lib_upnp_UpnpInit" = xyes; then : + has_upnp="yes" + else + has_upnp="no" + fi + +- if test "x${enable_upnp}" != "x" && test "${has_upnp}" = "no"; then ++ if test "x${enable_upnp}" != "x" && test "${has_upnp}" = "no"; then : + +- { { echo "$as_me:$LINENO: error: cannot find Intel UPnP SDK (libupnp)" >&5 +-echo "$as_me: error: cannot find Intel UPnP SDK (libupnp)" >&2;} +- { (exit 1); exit 1; }; } ++ as_fn_error $? "cannot find Intel UPnP SDK (libupnp)" "$LINENO" 5 + + fi +- +- if test "${has_upnp}" = "yes"; then ++ if test "${has_upnp}" = "yes"; then : + + + for element in upnp_intel; do +@@ -59138,15 +38777,13 @@ fi + + fi + +- + else + + has_upnp="no" + + fi + +- +-if test "${has_upnp}" = "yes"; then ++if test "${has_upnp}" = "yes"; then : + + + PLUGINS="${PLUGINS} upnp_intel" +@@ -59157,14 +38794,13 @@ fi + + + +- + # Check whether --with- was given. +-if test "${with_+set}" = set; then ++if test "${with_+set}" = set; then : + withval=$with_; + fi + + +-if test "${SYS}" = "beos" ++if test "${SYS}" = "beos" || test "${SYS}" = "haiku" + then + + BUILTINS="${BUILTINS} beos" +@@ -59172,13 +38808,12 @@ then + fi + + # Check whether --enable-skins2 was given. +-if test "${enable_skins2+set}" = set; then ++if test "${enable_skins2+set}" = set; then : + enableval=$enable_skins2; + fi + + if test "${enable_skins2}" = "yes" || +- (test "${SYS}" != "darwin" && test "${SYS}" != "beos" && +- test "${SYS}" != "mingwce" && test "${enable_skins2}" != "no"); then ++ (test "${SYS}" != "darwin" && test "${SYS}" != "beos" && test "${SYS}" != "haiku" && test "${SYS}" != "mingwce" && test "${enable_skins2}" != "no"); then + + skins2_missing_lib="no" + +@@ -59198,9 +38833,7 @@ if test "${enable_skins2}" = "yes" || + else + skins2_missing_lib="yes" + if test "${enable_skins2}" = "yes"; then +- { { echo "$as_me:$LINENO: error: Could not find freetype (required for skins2)" >&5 +-echo "$as_me: error: Could not find freetype (required for skins2)" >&2;} +- { (exit 1); exit 1; }; } ++ as_fn_error $? "Could not find freetype (required for skins2)" "$LINENO" 5 + fi + fi + +@@ -59257,7 +38890,7 @@ fi + + + # Check whether --enable-pda was given. +-if test "${enable_pda+set}" = set; then ++if test "${enable_pda+set}" = set; then : + enableval=$enable_pda; + fi + +@@ -59265,19 +38898,19 @@ if test "${enable_pda}" = "yes" + then + + pkg_failed=no +-{ echo "$as_me:$LINENO: checking for GTK2" >&5 +-echo $ECHO_N "checking for GTK2... $ECHO_C" >&6; } ++{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for GTK2" >&5 ++$as_echo_n "checking for GTK2... " >&6; } + + if test -n "$PKG_CONFIG"; then + if test -n "$GTK2_CFLAGS"; then + pkg_cv_GTK2_CFLAGS="$GTK2_CFLAGS" + else + if test -n "$PKG_CONFIG" && \ +- { (echo "$as_me:$LINENO: \$PKG_CONFIG --exists --print-errors \"gtk+-2.0 >= 2.0.0, gthread-2.0\"") >&5 ++ { { $as_echo "$as_me:${as_lineno-$LINENO}: \$PKG_CONFIG --exists --print-errors \"gtk+-2.0 >= 2.0.0, gthread-2.0\""; } >&5 + ($PKG_CONFIG --exists --print-errors "gtk+-2.0 >= 2.0.0, gthread-2.0") 2>&5 + ac_status=$? +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); }; then ++ $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 ++ test $ac_status = 0; }; then + pkg_cv_GTK2_CFLAGS=`$PKG_CONFIG --cflags "gtk+-2.0 >= 2.0.0, gthread-2.0" 2>/dev/null` + else + pkg_failed=yes +@@ -59291,11 +38924,11 @@ if test -n "$PKG_CONFIG"; then + pkg_cv_GTK2_LIBS="$GTK2_LIBS" + else + if test -n "$PKG_CONFIG" && \ +- { (echo "$as_me:$LINENO: \$PKG_CONFIG --exists --print-errors \"gtk+-2.0 >= 2.0.0, gthread-2.0\"") >&5 ++ { { $as_echo "$as_me:${as_lineno-$LINENO}: \$PKG_CONFIG --exists --print-errors \"gtk+-2.0 >= 2.0.0, gthread-2.0\""; } >&5 + ($PKG_CONFIG --exists --print-errors "gtk+-2.0 >= 2.0.0, gthread-2.0") 2>&5 + ac_status=$? +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); }; then ++ $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 ++ test $ac_status = 0; }; then + pkg_cv_GTK2_LIBS=`$PKG_CONFIG --libs "gtk+-2.0 >= 2.0.0, gthread-2.0" 2>/dev/null` + else + pkg_failed=yes +@@ -59322,18 +38955,7 @@ fi + # Put the nasty error message in config.log where it belongs + echo "$GTK2_PKG_ERRORS" >&5 + +- { { echo "$as_me:$LINENO: error: Package requirements (gtk+-2.0 >= 2.0.0, gthread-2.0) were not met: +- +-$GTK2_PKG_ERRORS +- +-Consider adjusting the PKG_CONFIG_PATH environment variable if you +-installed software in a non-standard prefix. +- +-Alternatively, you may set the environment variables GTK2_CFLAGS +-and GTK2_LIBS to avoid the need to call pkg-config. +-See the pkg-config man page for more details. +-" >&5 +-echo "$as_me: error: Package requirements (gtk+-2.0 >= 2.0.0, gthread-2.0) were not met: ++ as_fn_error $? "Package requirements (gtk+-2.0 >= 2.0.0, gthread-2.0) were not met: + + $GTK2_PKG_ERRORS + +@@ -59343,20 +38965,11 @@ installed software in a non-standard prefix. + Alternatively, you may set the environment variables GTK2_CFLAGS + and GTK2_LIBS to avoid the need to call pkg-config. + See the pkg-config man page for more details. +-" >&2;} +- { (exit 1); exit 1; }; } ++" "$LINENO" 5 + elif test $pkg_failed = untried; then +- { { echo "$as_me:$LINENO: error: The pkg-config script could not be found or is too old. Make sure it +-is in your PATH or set the PKG_CONFIG environment variable to the full +-path to pkg-config. +- +-Alternatively, you may set the environment variables GTK2_CFLAGS +-and GTK2_LIBS to avoid the need to call pkg-config. +-See the pkg-config man page for more details. +- +-To get pkg-config, see . +-See \`config.log' for more details." >&5 +-echo "$as_me: error: The pkg-config script could not be found or is too old. Make sure it ++ { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5 ++$as_echo "$as_me: error: in \`$ac_pwd':" >&2;} ++as_fn_error $? "The pkg-config script could not be found or is too old. Make sure it + is in your PATH or set the PKG_CONFIG environment variable to the full + path to pkg-config. + +@@ -59365,13 +38978,12 @@ and GTK2_LIBS to avoid the need to call pkg-config. + See the pkg-config man page for more details. + + To get pkg-config, see . +-See \`config.log' for more details." >&2;} +- { (exit 1); exit 1; }; } ++See \`config.log' for more details" "$LINENO" 5; } + else + GTK2_CFLAGS=$pkg_cv_GTK2_CFLAGS + GTK2_LIBS=$pkg_cv_GTK2_LIBS +- { echo "$as_me:$LINENO: result: yes" >&5 +-echo "${ECHO_T}yes" >&6; } ++ { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5 ++$as_echo "yes" >&6; } + : + fi + +@@ -59409,14 +39021,14 @@ fi + + + # Check whether --enable-wxwidgets was given. +-if test "${enable_wxwidgets+set}" = set; then ++if test "${enable_wxwidgets+set}" = set; then : + enableval=$enable_wxwidgets; + fi + + if test "${enable_wxwindows}" + then +- { echo "$as_me:$LINENO: WARNING: --{en|dis}able-wxwindows is deprecated. Use --{en|dis}able-wxwidgets instead." >&5 +-echo "$as_me: WARNING: --{en|dis}able-wxwindows is deprecated. Use --{en|dis}able-wxwidgets instead." >&2;} ++ { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: --{en|dis}able-wxwindows is deprecated. Use --{en|dis}able-wxwidgets instead." >&5 ++$as_echo "$as_me: WARNING: --{en|dis}able-wxwindows is deprecated. Use --{en|dis}able-wxwidgets instead." >&2;} + fi + + if test "${enable_wxwindows}" = "no" +@@ -59428,7 +39040,7 @@ then + WXWIDGETS_PATH="${PATH}" + + # Check whether --with-wx-config-path was given. +-if test "${with_wx_config_path+set}" = set; then ++if test "${with_wx_config_path+set}" = set; then : + withval=$with_wx_config_path; if test "${with_wx_config_path}" != "no" + then + WXWIDGETS_PATH="${with_wx_config_path}:${PATH}" +@@ -59438,7 +39050,7 @@ fi + WXWIDGETS_NAME="wx-config" + + # Check whether --with-wx-config was given. +-if test "${with_wx_config+set}" = set; then ++if test "${with_wx_config+set}" = set; then : + withval=$with_wx_config; if test "${with_wx_config}" != "no" + then + WXWIDGETS_NAME="${with_wx_config}" +@@ -59448,10 +39060,10 @@ fi + # look for wx-config + # Extract the first word of "${WXWIDGETS_NAME}", so it can be a program name with args. + set dummy ${WXWIDGETS_NAME}; ac_word=$2 +-{ echo "$as_me:$LINENO: checking for $ac_word" >&5 +-echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6; } +-if test "${ac_cv_path_WX_CONFIG+set}" = set; then +- echo $ECHO_N "(cached) $ECHO_C" >&6 ++{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 ++$as_echo_n "checking for $ac_word... " >&6; } ++if ${ac_cv_path_WX_CONFIG+:} false; then : ++ $as_echo_n "(cached) " >&6 + else + case $WX_CONFIG in + [\\/]* | ?:[\\/]*) +@@ -59463,14 +39075,14 @@ for as_dir in ${WXWIDGETS_PATH} + do + IFS=$as_save_IFS + test -z "$as_dir" && as_dir=. +- for ac_exec_ext in '' $ac_executable_extensions; do +- if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then ++ for ac_exec_ext in '' $ac_executable_extensions; do ++ if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then + ac_cv_path_WX_CONFIG="$as_dir/$ac_word$ac_exec_ext" +- echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 ++ $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 + break 2 + fi + done +-done ++ done + IFS=$as_save_IFS + + test -z "$ac_cv_path_WX_CONFIG" && ac_cv_path_WX_CONFIG="no" +@@ -59479,11 +39091,11 @@ esac + fi + WX_CONFIG=$ac_cv_path_WX_CONFIG + if test -n "$WX_CONFIG"; then +- { echo "$as_me:$LINENO: result: $WX_CONFIG" >&5 +-echo "${ECHO_T}$WX_CONFIG" >&6; } ++ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $WX_CONFIG" >&5 ++$as_echo "$WX_CONFIG" >&6; } + else +- { echo "$as_me:$LINENO: result: no" >&5 +-echo "${ECHO_T}no" >&6; } ++ { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 ++$as_echo "no" >&6; } + fi + + +@@ -59491,9 +39103,7 @@ fi + then + if expr 2.3.0 \> `${WX_CONFIG} --version` >/dev/null + then +- { { echo "$as_me:$LINENO: error: Your development package for wxWidgets is too old, you need at least version 2.3.0. Please upgrade and try again. Alternatively you can also configure with --disable-wxwidgets." >&5 +-echo "$as_me: error: Your development package for wxWidgets is too old, you need at least version 2.3.0. Please upgrade and try again. Alternatively you can also configure with --disable-wxwidgets." >&2;} +- { (exit 1); exit 1; }; } ++ as_fn_error $? "Your development package for wxWidgets is too old, you need at least version 2.3.0. Please upgrade and try again. Alternatively you can also configure with --disable-wxwidgets." "$LINENO" 5 + fi + ac_ext=cpp + ac_cpp='$CXXCPP $CPPFLAGS' +@@ -59504,17 +39114,13 @@ ac_compiler_gnu=$ac_cv_cxx_compiler_gnu + # Turn this error: + # playlist.cpp:1351: error: ISO C++ forbids cast to non-reference type + # into a warning. However better would be to fix playlist.cpp +- { echo "$as_me:$LINENO: checking if \$CXX accepts -fpermissive" >&5 +-echo $ECHO_N "checking if \$CXX accepts -fpermissive... $ECHO_C" >&6; } +-if test "${ac_cv_cxx_fpermissive+set}" = set; then +- echo $ECHO_N "(cached) $ECHO_C" >&6 ++ { $as_echo "$as_me:${as_lineno-$LINENO}: checking if \$CXX accepts -fpermissive" >&5 ++$as_echo_n "checking if \$CXX accepts -fpermissive... " >&6; } ++if ${ac_cv_cxx_fpermissive+:} false; then : ++ $as_echo_n "(cached) " >&6 + else + CXXFLAGS="${CXXFLAGS_save} -fpermissive" +- cat >conftest.$ac_ext <<_ACEOF +-/* confdefs.h. */ +-_ACEOF +-cat confdefs.h >>conftest.$ac_ext +-cat >>conftest.$ac_ext <<_ACEOF ++ cat confdefs.h - <<_ACEOF >conftest.$ac_ext + /* end confdefs.h. */ + + int +@@ -59525,35 +39131,15 @@ main () + return 0; + } + _ACEOF +-rm -f conftest.$ac_objext +-if { (ac_try="$ac_compile" +-case "(($ac_try" in +- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; +- *) ac_try_echo=$ac_try;; +-esac +-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 +- (eval "$ac_compile") 2>conftest.er1 +- ac_status=$? +- grep -v '^ *+' conftest.er1 >conftest.err +- rm -f conftest.er1 +- cat conftest.err >&5 +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); } && { +- test -z "$ac_cxx_werror_flag" || +- test ! -s conftest.err +- } && test -s conftest.$ac_objext; then ++if ac_fn_cxx_try_compile "$LINENO"; then : + ac_cv_cxx_fpermissive=yes + else +- echo "$as_me: failed program was:" >&5 +-sed 's/^/| /' conftest.$ac_ext >&5 +- +- ac_cv_cxx_fpermissive=no ++ ac_cv_cxx_fpermissive=no + fi +- + rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext + fi +-{ echo "$as_me:$LINENO: result: $ac_cv_cxx_fpermissive" >&5 +-echo "${ECHO_T}$ac_cv_cxx_fpermissive" >&6; } ++{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_cxx_fpermissive" >&5 ++$as_echo "$ac_cv_cxx_fpermissive" >&6; } + if test "${ac_cv_cxx_fpermissive}" = "yes"; then + + for element in wxwidgets; do +@@ -59600,8 +39186,8 @@ echo "${ECHO_T}$ac_cv_cxx_fpermissive" >&6; } + done + + else +- { echo "$as_me:$LINENO: WARNING: Probe disc disabled because ok libcdio library not found" >&5 +-echo "$as_me: WARNING: Probe disc disabled because ok libcdio library not found" >&2;} ++ { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: Probe disc disabled because ok libcdio library not found" >&5 ++$as_echo "$as_me: WARNING: Probe disc disabled because ok libcdio library not found" >&2;} + fi + + if test "$have_libvcdinfo" = "yes" +@@ -59619,147 +39205,19 @@ echo "$as_me: WARNING: Probe disc disabled because ok libcdio library not found" + done + + else +- { echo "$as_me:$LINENO: WARNING: VCD information on Probe disc disabled because ok libvcdinfo not found" >&5 +-echo "$as_me: WARNING: VCD information on Probe disc disabled because ok libvcdinfo not found" >&2;} ++ { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: VCD information on Probe disc disabled because ok libvcdinfo not found" >&5 ++$as_echo "$as_me: WARNING: VCD information on Probe disc disabled because ok libvcdinfo not found" >&2;} + fi + + # now look for the wxprec.h header + CPPFLAGS="${CPPFLAGS_save} ${CXXFLAGS_wxwidgets}" + ac_cv_wx_headers=yes +- +-for ac_header in wx/wxprec.h +-do +-as_ac_Header=`echo "ac_cv_header_$ac_header" | $as_tr_sh` +-if { as_var=$as_ac_Header; eval "test \"\${$as_var+set}\" = set"; }; then +- { echo "$as_me:$LINENO: checking for $ac_header" >&5 +-echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6; } +-if { as_var=$as_ac_Header; eval "test \"\${$as_var+set}\" = set"; }; then +- echo $ECHO_N "(cached) $ECHO_C" >&6 +-fi +-ac_res=`eval echo '${'$as_ac_Header'}'` +- { echo "$as_me:$LINENO: result: $ac_res" >&5 +-echo "${ECHO_T}$ac_res" >&6; } +-else +- # Is the header compilable? +-{ echo "$as_me:$LINENO: checking $ac_header usability" >&5 +-echo $ECHO_N "checking $ac_header usability... $ECHO_C" >&6; } +-cat >conftest.$ac_ext <<_ACEOF +-/* confdefs.h. */ +-_ACEOF +-cat confdefs.h >>conftest.$ac_ext +-cat >>conftest.$ac_ext <<_ACEOF +-/* end confdefs.h. */ +-$ac_includes_default +-#include <$ac_header> +-_ACEOF +-rm -f conftest.$ac_objext +-if { (ac_try="$ac_compile" +-case "(($ac_try" in +- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; +- *) ac_try_echo=$ac_try;; +-esac +-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 +- (eval "$ac_compile") 2>conftest.er1 +- ac_status=$? +- grep -v '^ *+' conftest.er1 >conftest.err +- rm -f conftest.er1 +- cat conftest.err >&5 +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); } && { +- test -z "$ac_cxx_werror_flag" || +- test ! -s conftest.err +- } && test -s conftest.$ac_objext; then +- ac_header_compiler=yes +-else +- echo "$as_me: failed program was:" >&5 +-sed 's/^/| /' conftest.$ac_ext >&5 +- +- ac_header_compiler=no +-fi +- +-rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext +-{ echo "$as_me:$LINENO: result: $ac_header_compiler" >&5 +-echo "${ECHO_T}$ac_header_compiler" >&6; } +- +-# Is the header present? +-{ echo "$as_me:$LINENO: checking $ac_header presence" >&5 +-echo $ECHO_N "checking $ac_header presence... $ECHO_C" >&6; } +-cat >conftest.$ac_ext <<_ACEOF +-/* confdefs.h. */ +-_ACEOF +-cat confdefs.h >>conftest.$ac_ext +-cat >>conftest.$ac_ext <<_ACEOF +-/* end confdefs.h. */ +-#include <$ac_header> +-_ACEOF +-if { (ac_try="$ac_cpp conftest.$ac_ext" +-case "(($ac_try" in +- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; +- *) ac_try_echo=$ac_try;; +-esac +-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 +- (eval "$ac_cpp conftest.$ac_ext") 2>conftest.er1 +- ac_status=$? +- grep -v '^ *+' conftest.er1 >conftest.err +- rm -f conftest.er1 +- cat conftest.err >&5 +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); } >/dev/null && { +- test -z "$ac_cxx_preproc_warn_flag$ac_cxx_werror_flag" || +- test ! -s conftest.err +- }; then +- ac_header_preproc=yes +-else +- echo "$as_me: failed program was:" >&5 +-sed 's/^/| /' conftest.$ac_ext >&5 +- +- ac_header_preproc=no +-fi +- +-rm -f conftest.err conftest.$ac_ext +-{ echo "$as_me:$LINENO: result: $ac_header_preproc" >&5 +-echo "${ECHO_T}$ac_header_preproc" >&6; } +- +-# So? What about this header? +-case $ac_header_compiler:$ac_header_preproc:$ac_cxx_preproc_warn_flag in +- yes:no: ) +- { echo "$as_me:$LINENO: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&5 +-echo "$as_me: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&2;} +- { echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the compiler's result" >&5 +-echo "$as_me: WARNING: $ac_header: proceeding with the compiler's result" >&2;} +- ac_header_preproc=yes +- ;; +- no:yes:* ) +- { echo "$as_me:$LINENO: WARNING: $ac_header: present but cannot be compiled" >&5 +-echo "$as_me: WARNING: $ac_header: present but cannot be compiled" >&2;} +- { echo "$as_me:$LINENO: WARNING: $ac_header: check for missing prerequisite headers?" >&5 +-echo "$as_me: WARNING: $ac_header: check for missing prerequisite headers?" >&2;} +- { echo "$as_me:$LINENO: WARNING: $ac_header: see the Autoconf documentation" >&5 +-echo "$as_me: WARNING: $ac_header: see the Autoconf documentation" >&2;} +- { echo "$as_me:$LINENO: WARNING: $ac_header: section \"Present But Cannot Be Compiled\"" >&5 +-echo "$as_me: WARNING: $ac_header: section \"Present But Cannot Be Compiled\"" >&2;} +- { echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the preprocessor's result" >&5 +-echo "$as_me: WARNING: $ac_header: proceeding with the preprocessor's result" >&2;} +- { echo "$as_me:$LINENO: WARNING: $ac_header: in the future, the compiler will take precedence" >&5 +-echo "$as_me: WARNING: $ac_header: in the future, the compiler will take precedence" >&2;} +- +- ;; +-esac +-{ echo "$as_me:$LINENO: checking for $ac_header" >&5 +-echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6; } +-if { as_var=$as_ac_Header; eval "test \"\${$as_var+set}\" = set"; }; then +- echo $ECHO_N "(cached) $ECHO_C" >&6 +-else +- eval "$as_ac_Header=\$ac_header_preproc" +-fi +-ac_res=`eval echo '${'$as_ac_Header'}'` +- { echo "$as_me:$LINENO: result: $ac_res" >&5 +-echo "${ECHO_T}$ac_res" >&6; } +- +-fi +-if test `eval echo '${'$as_ac_Header'}'` = yes; then ++ for ac_header in wx/wxprec.h ++do : ++ ac_fn_cxx_check_header_mongrel "$LINENO" "wx/wxprec.h" "ac_cv_header_wx_wxprec_h" "$ac_includes_default" ++if test "x$ac_cv_header_wx_wxprec_h" = xyes; then : + cat >>confdefs.h <<_ACEOF +-#define `echo "HAVE_$ac_header" | $as_tr_cpp` 1 ++#define HAVE_WX_WXPREC_H 1 + _ACEOF + + else +@@ -59835,19 +39293,17 @@ if test "${enable_skins2}" != "no" + then + if test "${WX_CONFIG}" = "no" + then +- { { echo "$as_me:$LINENO: error: The skins2 module depends on the wxWidgets development package. Without it you won't be able to open any dialog box from the interface, which makes the skins2 interface rather useless. Install the wxWidgets development package or alternatively you can also configure with: --disable-wxwidgets --disable-skins2." >&5 +-echo "$as_me: error: The skins2 module depends on the wxWidgets development package. Without it you won't be able to open any dialog box from the interface, which makes the skins2 interface rather useless. Install the wxWidgets development package or alternatively you can also configure with: --disable-wxwidgets --disable-skins2." >&2;} +- { (exit 1); exit 1; }; } ++ as_fn_error $? "The skins2 module depends on the wxWidgets development package. Without it you won't be able to open any dialog box from the interface, which makes the skins2 interface rather useless. Install the wxWidgets development package or alternatively you can also configure with: --disable-wxwidgets --disable-skins2." "$LINENO" 5 + fi + fi + + + # Check whether --enable-opie was given. +-if test "${enable_opie+set}" = set; then ++if test "${enable_opie+set}" = set; then : + enableval=$enable_opie; if test "${enable_opie}" = "yes"; then + + # Check whether --with-qte was given. +-if test "${with_qte+set}" = set; then ++if test "${with_qte+set}" = set; then : + withval=$with_qte; + fi + +@@ -59880,148 +39336,18 @@ fi + + fi + CPPFLAGS="${CPPFLAGS_save} ${CXXFLAGS_qte}" +- +- +-for ac_header in qt.h jpeglib.h +-do +-as_ac_Header=`echo "ac_cv_header_$ac_header" | $as_tr_sh` +-if { as_var=$as_ac_Header; eval "test \"\${$as_var+set}\" = set"; }; then +- { echo "$as_me:$LINENO: checking for $ac_header" >&5 +-echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6; } +-if { as_var=$as_ac_Header; eval "test \"\${$as_var+set}\" = set"; }; then +- echo $ECHO_N "(cached) $ECHO_C" >&6 +-fi +-ac_res=`eval echo '${'$as_ac_Header'}'` +- { echo "$as_me:$LINENO: result: $ac_res" >&5 +-echo "${ECHO_T}$ac_res" >&6; } +-else +- # Is the header compilable? +-{ echo "$as_me:$LINENO: checking $ac_header usability" >&5 +-echo $ECHO_N "checking $ac_header usability... $ECHO_C" >&6; } +-cat >conftest.$ac_ext <<_ACEOF +-/* confdefs.h. */ +-_ACEOF +-cat confdefs.h >>conftest.$ac_ext +-cat >>conftest.$ac_ext <<_ACEOF +-/* end confdefs.h. */ +-$ac_includes_default +-#include <$ac_header> +-_ACEOF +-rm -f conftest.$ac_objext +-if { (ac_try="$ac_compile" +-case "(($ac_try" in +- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; +- *) ac_try_echo=$ac_try;; +-esac +-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 +- (eval "$ac_compile") 2>conftest.er1 +- ac_status=$? +- grep -v '^ *+' conftest.er1 >conftest.err +- rm -f conftest.er1 +- cat conftest.err >&5 +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); } && { +- test -z "$ac_c_werror_flag" || +- test ! -s conftest.err +- } && test -s conftest.$ac_objext; then +- ac_header_compiler=yes +-else +- echo "$as_me: failed program was:" >&5 +-sed 's/^/| /' conftest.$ac_ext >&5 +- +- ac_header_compiler=no +-fi +- +-rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext +-{ echo "$as_me:$LINENO: result: $ac_header_compiler" >&5 +-echo "${ECHO_T}$ac_header_compiler" >&6; } +- +-# Is the header present? +-{ echo "$as_me:$LINENO: checking $ac_header presence" >&5 +-echo $ECHO_N "checking $ac_header presence... $ECHO_C" >&6; } +-cat >conftest.$ac_ext <<_ACEOF +-/* confdefs.h. */ +-_ACEOF +-cat confdefs.h >>conftest.$ac_ext +-cat >>conftest.$ac_ext <<_ACEOF +-/* end confdefs.h. */ +-#include <$ac_header> +-_ACEOF +-if { (ac_try="$ac_cpp conftest.$ac_ext" +-case "(($ac_try" in +- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; +- *) ac_try_echo=$ac_try;; +-esac +-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 +- (eval "$ac_cpp conftest.$ac_ext") 2>conftest.er1 +- ac_status=$? +- grep -v '^ *+' conftest.er1 >conftest.err +- rm -f conftest.er1 +- cat conftest.err >&5 +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); } >/dev/null && { +- test -z "$ac_c_preproc_warn_flag$ac_c_werror_flag" || +- test ! -s conftest.err +- }; then +- ac_header_preproc=yes +-else +- echo "$as_me: failed program was:" >&5 +-sed 's/^/| /' conftest.$ac_ext >&5 +- +- ac_header_preproc=no +-fi +- +-rm -f conftest.err conftest.$ac_ext +-{ echo "$as_me:$LINENO: result: $ac_header_preproc" >&5 +-echo "${ECHO_T}$ac_header_preproc" >&6; } +- +-# So? What about this header? +-case $ac_header_compiler:$ac_header_preproc:$ac_c_preproc_warn_flag in +- yes:no: ) +- { echo "$as_me:$LINENO: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&5 +-echo "$as_me: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&2;} +- { echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the compiler's result" >&5 +-echo "$as_me: WARNING: $ac_header: proceeding with the compiler's result" >&2;} +- ac_header_preproc=yes +- ;; +- no:yes:* ) +- { echo "$as_me:$LINENO: WARNING: $ac_header: present but cannot be compiled" >&5 +-echo "$as_me: WARNING: $ac_header: present but cannot be compiled" >&2;} +- { echo "$as_me:$LINENO: WARNING: $ac_header: check for missing prerequisite headers?" >&5 +-echo "$as_me: WARNING: $ac_header: check for missing prerequisite headers?" >&2;} +- { echo "$as_me:$LINENO: WARNING: $ac_header: see the Autoconf documentation" >&5 +-echo "$as_me: WARNING: $ac_header: see the Autoconf documentation" >&2;} +- { echo "$as_me:$LINENO: WARNING: $ac_header: section \"Present But Cannot Be Compiled\"" >&5 +-echo "$as_me: WARNING: $ac_header: section \"Present But Cannot Be Compiled\"" >&2;} +- { echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the preprocessor's result" >&5 +-echo "$as_me: WARNING: $ac_header: proceeding with the preprocessor's result" >&2;} +- { echo "$as_me:$LINENO: WARNING: $ac_header: in the future, the compiler will take precedence" >&5 +-echo "$as_me: WARNING: $ac_header: in the future, the compiler will take precedence" >&2;} +- +- ;; +-esac +-{ echo "$as_me:$LINENO: checking for $ac_header" >&5 +-echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6; } +-if { as_var=$as_ac_Header; eval "test \"\${$as_var+set}\" = set"; }; then +- echo $ECHO_N "(cached) $ECHO_C" >&6 +-else +- eval "$as_ac_Header=\$ac_header_preproc" +-fi +-ac_res=`eval echo '${'$as_ac_Header'}'` +- { echo "$as_me:$LINENO: result: $ac_res" >&5 +-echo "${ECHO_T}$ac_res" >&6; } +- +-fi +-if test `eval echo '${'$as_ac_Header'}'` = yes; then ++ for ac_header in qt.h jpeglib.h ++do : ++ as_ac_Header=`$as_echo "ac_cv_header_$ac_header" | $as_tr_sh` ++ac_fn_c_check_header_mongrel "$LINENO" "$ac_header" "$as_ac_Header" "$ac_includes_default" ++if eval test \"x\$"$as_ac_Header"\" = x"yes"; then : + cat >>confdefs.h <<_ACEOF +-#define `echo "HAVE_$ac_header" | $as_tr_cpp` 1 ++#define `$as_echo "HAVE_$ac_header" | $as_tr_cpp` 1 + _ACEOF + + else + +- { { echo "$as_me:$LINENO: error: echo \"Cannot find QT Embedded development headers.\"" >&5 +-echo "$as_me: error: echo \"Cannot find QT Embedded development headers.\"" >&2;} +- { (exit 1); exit 1; }; } ++ as_fn_error $? "echo \"Cannot find QT Embedded development headers.\"" "$LINENO" 5 + + fi + +@@ -60058,7 +39384,7 @@ fi + ORIGCFLAGS=$CFLAGS + CFLAGS="$CFLAGS -x objective-c" + # Check whether --enable-macosx was given. +-if test "${enable_macosx+set}" = set; then ++if test "${enable_macosx+set}" = set; then : + enableval=$enable_macosx; if test "${enable_macosx}" = "yes" + then + +@@ -60078,140 +39404,12 @@ if test "${enable_macosx+set}" = set; then + + fi + else +- +-for ac_header in Cocoa/Cocoa.h +-do +-as_ac_Header=`echo "ac_cv_header_$ac_header" | $as_tr_sh` +-if { as_var=$as_ac_Header; eval "test \"\${$as_var+set}\" = set"; }; then +- { echo "$as_me:$LINENO: checking for $ac_header" >&5 +-echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6; } +-if { as_var=$as_ac_Header; eval "test \"\${$as_var+set}\" = set"; }; then +- echo $ECHO_N "(cached) $ECHO_C" >&6 +-fi +-ac_res=`eval echo '${'$as_ac_Header'}'` +- { echo "$as_me:$LINENO: result: $ac_res" >&5 +-echo "${ECHO_T}$ac_res" >&6; } +-else +- # Is the header compilable? +-{ echo "$as_me:$LINENO: checking $ac_header usability" >&5 +-echo $ECHO_N "checking $ac_header usability... $ECHO_C" >&6; } +-cat >conftest.$ac_ext <<_ACEOF +-/* confdefs.h. */ +-_ACEOF +-cat confdefs.h >>conftest.$ac_ext +-cat >>conftest.$ac_ext <<_ACEOF +-/* end confdefs.h. */ +-$ac_includes_default +-#include <$ac_header> +-_ACEOF +-rm -f conftest.$ac_objext +-if { (ac_try="$ac_compile" +-case "(($ac_try" in +- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; +- *) ac_try_echo=$ac_try;; +-esac +-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 +- (eval "$ac_compile") 2>conftest.er1 +- ac_status=$? +- grep -v '^ *+' conftest.er1 >conftest.err +- rm -f conftest.er1 +- cat conftest.err >&5 +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); } && { +- test -z "$ac_c_werror_flag" || +- test ! -s conftest.err +- } && test -s conftest.$ac_objext; then +- ac_header_compiler=yes +-else +- echo "$as_me: failed program was:" >&5 +-sed 's/^/| /' conftest.$ac_ext >&5 +- +- ac_header_compiler=no +-fi +- +-rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext +-{ echo "$as_me:$LINENO: result: $ac_header_compiler" >&5 +-echo "${ECHO_T}$ac_header_compiler" >&6; } +- +-# Is the header present? +-{ echo "$as_me:$LINENO: checking $ac_header presence" >&5 +-echo $ECHO_N "checking $ac_header presence... $ECHO_C" >&6; } +-cat >conftest.$ac_ext <<_ACEOF +-/* confdefs.h. */ +-_ACEOF +-cat confdefs.h >>conftest.$ac_ext +-cat >>conftest.$ac_ext <<_ACEOF +-/* end confdefs.h. */ +-#include <$ac_header> +-_ACEOF +-if { (ac_try="$ac_cpp conftest.$ac_ext" +-case "(($ac_try" in +- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; +- *) ac_try_echo=$ac_try;; +-esac +-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 +- (eval "$ac_cpp conftest.$ac_ext") 2>conftest.er1 +- ac_status=$? +- grep -v '^ *+' conftest.er1 >conftest.err +- rm -f conftest.er1 +- cat conftest.err >&5 +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); } >/dev/null && { +- test -z "$ac_c_preproc_warn_flag$ac_c_werror_flag" || +- test ! -s conftest.err +- }; then +- ac_header_preproc=yes +-else +- echo "$as_me: failed program was:" >&5 +-sed 's/^/| /' conftest.$ac_ext >&5 +- +- ac_header_preproc=no +-fi +- +-rm -f conftest.err conftest.$ac_ext +-{ echo "$as_me:$LINENO: result: $ac_header_preproc" >&5 +-echo "${ECHO_T}$ac_header_preproc" >&6; } +- +-# So? What about this header? +-case $ac_header_compiler:$ac_header_preproc:$ac_c_preproc_warn_flag in +- yes:no: ) +- { echo "$as_me:$LINENO: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&5 +-echo "$as_me: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&2;} +- { echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the compiler's result" >&5 +-echo "$as_me: WARNING: $ac_header: proceeding with the compiler's result" >&2;} +- ac_header_preproc=yes +- ;; +- no:yes:* ) +- { echo "$as_me:$LINENO: WARNING: $ac_header: present but cannot be compiled" >&5 +-echo "$as_me: WARNING: $ac_header: present but cannot be compiled" >&2;} +- { echo "$as_me:$LINENO: WARNING: $ac_header: check for missing prerequisite headers?" >&5 +-echo "$as_me: WARNING: $ac_header: check for missing prerequisite headers?" >&2;} +- { echo "$as_me:$LINENO: WARNING: $ac_header: see the Autoconf documentation" >&5 +-echo "$as_me: WARNING: $ac_header: see the Autoconf documentation" >&2;} +- { echo "$as_me:$LINENO: WARNING: $ac_header: section \"Present But Cannot Be Compiled\"" >&5 +-echo "$as_me: WARNING: $ac_header: section \"Present But Cannot Be Compiled\"" >&2;} +- { echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the preprocessor's result" >&5 +-echo "$as_me: WARNING: $ac_header: proceeding with the preprocessor's result" >&2;} +- { echo "$as_me:$LINENO: WARNING: $ac_header: in the future, the compiler will take precedence" >&5 +-echo "$as_me: WARNING: $ac_header: in the future, the compiler will take precedence" >&2;} +- +- ;; +-esac +-{ echo "$as_me:$LINENO: checking for $ac_header" >&5 +-echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6; } +-if { as_var=$as_ac_Header; eval "test \"\${$as_var+set}\" = set"; }; then +- echo $ECHO_N "(cached) $ECHO_C" >&6 +-else +- eval "$as_ac_Header=\$ac_header_preproc" +-fi +-ac_res=`eval echo '${'$as_ac_Header'}'` +- { echo "$as_me:$LINENO: result: $ac_res" >&5 +-echo "${ECHO_T}$ac_res" >&6; } +- +-fi +-if test `eval echo '${'$as_ac_Header'}'` = yes; then ++ for ac_header in Cocoa/Cocoa.h ++do : ++ ac_fn_c_check_header_mongrel "$LINENO" "Cocoa/Cocoa.h" "ac_cv_header_Cocoa_Cocoa_h" "$ac_includes_default" ++if test "x$ac_cv_header_Cocoa_Cocoa_h" = xyes; then : + cat >>confdefs.h <<_ACEOF +-#define `echo "HAVE_$ac_header" | $as_tr_cpp` 1 ++#define HAVE_COCOA_COCOA_H 1 + _ACEOF + + BUILTINS="${BUILTINS} macosx" +@@ -60238,146 +39436,18 @@ fi + CFLAGS=$ORIGCFLAGS + + # Check whether --enable-qnx was given. +-if test "${enable_qnx+set}" = set; then ++if test "${enable_qnx+set}" = set; then : + enableval=$enable_qnx; + fi + + if test "${enable_qnx}" != "no" + then +- +-for ac_header in Ph.h +-do +-as_ac_Header=`echo "ac_cv_header_$ac_header" | $as_tr_sh` +-if { as_var=$as_ac_Header; eval "test \"\${$as_var+set}\" = set"; }; then +- { echo "$as_me:$LINENO: checking for $ac_header" >&5 +-echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6; } +-if { as_var=$as_ac_Header; eval "test \"\${$as_var+set}\" = set"; }; then +- echo $ECHO_N "(cached) $ECHO_C" >&6 +-fi +-ac_res=`eval echo '${'$as_ac_Header'}'` +- { echo "$as_me:$LINENO: result: $ac_res" >&5 +-echo "${ECHO_T}$ac_res" >&6; } +-else +- # Is the header compilable? +-{ echo "$as_me:$LINENO: checking $ac_header usability" >&5 +-echo $ECHO_N "checking $ac_header usability... $ECHO_C" >&6; } +-cat >conftest.$ac_ext <<_ACEOF +-/* confdefs.h. */ +-_ACEOF +-cat confdefs.h >>conftest.$ac_ext +-cat >>conftest.$ac_ext <<_ACEOF +-/* end confdefs.h. */ +-$ac_includes_default +-#include <$ac_header> +-_ACEOF +-rm -f conftest.$ac_objext +-if { (ac_try="$ac_compile" +-case "(($ac_try" in +- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; +- *) ac_try_echo=$ac_try;; +-esac +-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 +- (eval "$ac_compile") 2>conftest.er1 +- ac_status=$? +- grep -v '^ *+' conftest.er1 >conftest.err +- rm -f conftest.er1 +- cat conftest.err >&5 +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); } && { +- test -z "$ac_c_werror_flag" || +- test ! -s conftest.err +- } && test -s conftest.$ac_objext; then +- ac_header_compiler=yes +-else +- echo "$as_me: failed program was:" >&5 +-sed 's/^/| /' conftest.$ac_ext >&5 +- +- ac_header_compiler=no +-fi +- +-rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext +-{ echo "$as_me:$LINENO: result: $ac_header_compiler" >&5 +-echo "${ECHO_T}$ac_header_compiler" >&6; } +- +-# Is the header present? +-{ echo "$as_me:$LINENO: checking $ac_header presence" >&5 +-echo $ECHO_N "checking $ac_header presence... $ECHO_C" >&6; } +-cat >conftest.$ac_ext <<_ACEOF +-/* confdefs.h. */ +-_ACEOF +-cat confdefs.h >>conftest.$ac_ext +-cat >>conftest.$ac_ext <<_ACEOF +-/* end confdefs.h. */ +-#include <$ac_header> +-_ACEOF +-if { (ac_try="$ac_cpp conftest.$ac_ext" +-case "(($ac_try" in +- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; +- *) ac_try_echo=$ac_try;; +-esac +-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 +- (eval "$ac_cpp conftest.$ac_ext") 2>conftest.er1 +- ac_status=$? +- grep -v '^ *+' conftest.er1 >conftest.err +- rm -f conftest.er1 +- cat conftest.err >&5 +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); } >/dev/null && { +- test -z "$ac_c_preproc_warn_flag$ac_c_werror_flag" || +- test ! -s conftest.err +- }; then +- ac_header_preproc=yes +-else +- echo "$as_me: failed program was:" >&5 +-sed 's/^/| /' conftest.$ac_ext >&5 +- +- ac_header_preproc=no +-fi +- +-rm -f conftest.err conftest.$ac_ext +-{ echo "$as_me:$LINENO: result: $ac_header_preproc" >&5 +-echo "${ECHO_T}$ac_header_preproc" >&6; } +- +-# So? What about this header? +-case $ac_header_compiler:$ac_header_preproc:$ac_c_preproc_warn_flag in +- yes:no: ) +- { echo "$as_me:$LINENO: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&5 +-echo "$as_me: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&2;} +- { echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the compiler's result" >&5 +-echo "$as_me: WARNING: $ac_header: proceeding with the compiler's result" >&2;} +- ac_header_preproc=yes +- ;; +- no:yes:* ) +- { echo "$as_me:$LINENO: WARNING: $ac_header: present but cannot be compiled" >&5 +-echo "$as_me: WARNING: $ac_header: present but cannot be compiled" >&2;} +- { echo "$as_me:$LINENO: WARNING: $ac_header: check for missing prerequisite headers?" >&5 +-echo "$as_me: WARNING: $ac_header: check for missing prerequisite headers?" >&2;} +- { echo "$as_me:$LINENO: WARNING: $ac_header: see the Autoconf documentation" >&5 +-echo "$as_me: WARNING: $ac_header: see the Autoconf documentation" >&2;} +- { echo "$as_me:$LINENO: WARNING: $ac_header: section \"Present But Cannot Be Compiled\"" >&5 +-echo "$as_me: WARNING: $ac_header: section \"Present But Cannot Be Compiled\"" >&2;} +- { echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the preprocessor's result" >&5 +-echo "$as_me: WARNING: $ac_header: proceeding with the preprocessor's result" >&2;} +- { echo "$as_me:$LINENO: WARNING: $ac_header: in the future, the compiler will take precedence" >&5 +-echo "$as_me: WARNING: $ac_header: in the future, the compiler will take precedence" >&2;} +- +- ;; +-esac +-{ echo "$as_me:$LINENO: checking for $ac_header" >&5 +-echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6; } +-if { as_var=$as_ac_Header; eval "test \"\${$as_var+set}\" = set"; }; then +- echo $ECHO_N "(cached) $ECHO_C" >&6 +-else +- eval "$as_ac_Header=\$ac_header_preproc" +-fi +-ac_res=`eval echo '${'$as_ac_Header'}'` +- { echo "$as_me:$LINENO: result: $ac_res" >&5 +-echo "${ECHO_T}$ac_res" >&6; } +- +-fi +-if test `eval echo '${'$as_ac_Header'}'` = yes; then ++ for ac_header in Ph.h ++do : ++ ac_fn_c_check_header_mongrel "$LINENO" "Ph.h" "ac_cv_header_Ph_h" "$ac_includes_default" ++if test "x$ac_cv_header_Ph_h" = xyes; then : + cat >>confdefs.h <<_ACEOF +-#define `echo "HAVE_$ac_header" | $as_tr_cpp` 1 ++#define HAVE_PH_H 1 + _ACEOF + + +@@ -60397,7 +39467,7 @@ done + fi + + # Check whether --enable-ncurses was given. +-if test "${enable_ncurses+set}" = set; then ++if test "${enable_ncurses+set}" = set; then : + enableval=$enable_ncurses; if test "${enable_ncurses}" = "yes"; then + + PLUGINS="${PLUGINS} ncurses" +@@ -60413,156 +39483,28 @@ fi + + + # Check whether --enable-xosd was given. +-if test "${enable_xosd+set}" = set; then ++if test "${enable_xosd+set}" = set; then : + enableval=$enable_xosd; + fi + + if test "${enable_xosd}" = "yes" + then +- if test "${ac_cv_header_xosd_h+set}" = set; then +- { echo "$as_me:$LINENO: checking for xosd.h" >&5 +-echo $ECHO_N "checking for xosd.h... $ECHO_C" >&6; } +-if test "${ac_cv_header_xosd_h+set}" = set; then +- echo $ECHO_N "(cached) $ECHO_C" >&6 +-fi +-{ echo "$as_me:$LINENO: result: $ac_cv_header_xosd_h" >&5 +-echo "${ECHO_T}$ac_cv_header_xosd_h" >&6; } +-else +- # Is the header compilable? +-{ echo "$as_me:$LINENO: checking xosd.h usability" >&5 +-echo $ECHO_N "checking xosd.h usability... $ECHO_C" >&6; } +-cat >conftest.$ac_ext <<_ACEOF +-/* confdefs.h. */ +-_ACEOF +-cat confdefs.h >>conftest.$ac_ext +-cat >>conftest.$ac_ext <<_ACEOF +-/* end confdefs.h. */ +-$ac_includes_default +-#include +-_ACEOF +-rm -f conftest.$ac_objext +-if { (ac_try="$ac_compile" +-case "(($ac_try" in +- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; +- *) ac_try_echo=$ac_try;; +-esac +-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 +- (eval "$ac_compile") 2>conftest.er1 +- ac_status=$? +- grep -v '^ *+' conftest.er1 >conftest.err +- rm -f conftest.er1 +- cat conftest.err >&5 +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); } && { +- test -z "$ac_c_werror_flag" || +- test ! -s conftest.err +- } && test -s conftest.$ac_objext; then +- ac_header_compiler=yes +-else +- echo "$as_me: failed program was:" >&5 +-sed 's/^/| /' conftest.$ac_ext >&5 +- +- ac_header_compiler=no +-fi +- +-rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext +-{ echo "$as_me:$LINENO: result: $ac_header_compiler" >&5 +-echo "${ECHO_T}$ac_header_compiler" >&6; } +- +-# Is the header present? +-{ echo "$as_me:$LINENO: checking xosd.h presence" >&5 +-echo $ECHO_N "checking xosd.h presence... $ECHO_C" >&6; } +-cat >conftest.$ac_ext <<_ACEOF +-/* confdefs.h. */ +-_ACEOF +-cat confdefs.h >>conftest.$ac_ext +-cat >>conftest.$ac_ext <<_ACEOF +-/* end confdefs.h. */ +-#include +-_ACEOF +-if { (ac_try="$ac_cpp conftest.$ac_ext" +-case "(($ac_try" in +- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; +- *) ac_try_echo=$ac_try;; +-esac +-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 +- (eval "$ac_cpp conftest.$ac_ext") 2>conftest.er1 +- ac_status=$? +- grep -v '^ *+' conftest.er1 >conftest.err +- rm -f conftest.er1 +- cat conftest.err >&5 +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); } >/dev/null && { +- test -z "$ac_c_preproc_warn_flag$ac_c_werror_flag" || +- test ! -s conftest.err +- }; then +- ac_header_preproc=yes +-else +- echo "$as_me: failed program was:" >&5 +-sed 's/^/| /' conftest.$ac_ext >&5 +- +- ac_header_preproc=no +-fi +- +-rm -f conftest.err conftest.$ac_ext +-{ echo "$as_me:$LINENO: result: $ac_header_preproc" >&5 +-echo "${ECHO_T}$ac_header_preproc" >&6; } +- +-# So? What about this header? +-case $ac_header_compiler:$ac_header_preproc:$ac_c_preproc_warn_flag in +- yes:no: ) +- { echo "$as_me:$LINENO: WARNING: xosd.h: accepted by the compiler, rejected by the preprocessor!" >&5 +-echo "$as_me: WARNING: xosd.h: accepted by the compiler, rejected by the preprocessor!" >&2;} +- { echo "$as_me:$LINENO: WARNING: xosd.h: proceeding with the compiler's result" >&5 +-echo "$as_me: WARNING: xosd.h: proceeding with the compiler's result" >&2;} +- ac_header_preproc=yes +- ;; +- no:yes:* ) +- { echo "$as_me:$LINENO: WARNING: xosd.h: present but cannot be compiled" >&5 +-echo "$as_me: WARNING: xosd.h: present but cannot be compiled" >&2;} +- { echo "$as_me:$LINENO: WARNING: xosd.h: check for missing prerequisite headers?" >&5 +-echo "$as_me: WARNING: xosd.h: check for missing prerequisite headers?" >&2;} +- { echo "$as_me:$LINENO: WARNING: xosd.h: see the Autoconf documentation" >&5 +-echo "$as_me: WARNING: xosd.h: see the Autoconf documentation" >&2;} +- { echo "$as_me:$LINENO: WARNING: xosd.h: section \"Present But Cannot Be Compiled\"" >&5 +-echo "$as_me: WARNING: xosd.h: section \"Present But Cannot Be Compiled\"" >&2;} +- { echo "$as_me:$LINENO: WARNING: xosd.h: proceeding with the preprocessor's result" >&5 +-echo "$as_me: WARNING: xosd.h: proceeding with the preprocessor's result" >&2;} +- { echo "$as_me:$LINENO: WARNING: xosd.h: in the future, the compiler will take precedence" >&5 +-echo "$as_me: WARNING: xosd.h: in the future, the compiler will take precedence" >&2;} +- +- ;; +-esac +-{ echo "$as_me:$LINENO: checking for xosd.h" >&5 +-echo $ECHO_N "checking for xosd.h... $ECHO_C" >&6; } +-if test "${ac_cv_header_xosd_h+set}" = set; then +- echo $ECHO_N "(cached) $ECHO_C" >&6 +-else +- ac_cv_header_xosd_h=$ac_header_preproc +-fi +-{ echo "$as_me:$LINENO: result: $ac_cv_header_xosd_h" >&5 +-echo "${ECHO_T}$ac_cv_header_xosd_h" >&6; } +- +-fi +-if test $ac_cv_header_xosd_h = yes; then ++ ac_fn_c_check_header_mongrel "$LINENO" "xosd.h" "ac_cv_header_xosd_h" "$ac_includes_default" ++if test "x$ac_cv_header_xosd_h" = xyes; then : + have_xosd="true" + else + have_xosd="false" + fi + + +- { echo "$as_me:$LINENO: checking for xosd_set_offset in -lxosd" >&5 +-echo $ECHO_N "checking for xosd_set_offset in -lxosd... $ECHO_C" >&6; } +-if test "${ac_cv_lib_xosd_xosd_set_offset+set}" = set; then +- echo $ECHO_N "(cached) $ECHO_C" >&6 ++ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for xosd_set_offset in -lxosd" >&5 ++$as_echo_n "checking for xosd_set_offset in -lxosd... " >&6; } ++if ${ac_cv_lib_xosd_xosd_set_offset+:} false; then : ++ $as_echo_n "(cached) " >&6 + else + ac_check_lib_save_LIBS=$LIBS + LIBS="-lxosd $LIBS" +-cat >conftest.$ac_ext <<_ACEOF +-/* confdefs.h. */ +-_ACEOF +-cat confdefs.h >>conftest.$ac_ext +-cat >>conftest.$ac_ext <<_ACEOF ++cat confdefs.h - <<_ACEOF >conftest.$ac_ext + /* end confdefs.h. */ + + /* Override any GCC internal prototype to avoid an error. +@@ -60580,57 +39522,30 @@ return xosd_set_offset (); + return 0; + } + _ACEOF +-rm -f conftest.$ac_objext conftest$ac_exeext +-if { (ac_try="$ac_link" +-case "(($ac_try" in +- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; +- *) ac_try_echo=$ac_try;; +-esac +-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 +- (eval "$ac_link") 2>conftest.er1 +- ac_status=$? +- grep -v '^ *+' conftest.er1 >conftest.err +- rm -f conftest.er1 +- cat conftest.err >&5 +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); } && { +- test -z "$ac_c_werror_flag" || +- test ! -s conftest.err +- } && test -s conftest$ac_exeext && +- $as_test_x conftest$ac_exeext; then ++if ac_fn_c_try_link "$LINENO"; then : + ac_cv_lib_xosd_xosd_set_offset=yes + else +- echo "$as_me: failed program was:" >&5 +-sed 's/^/| /' conftest.$ac_ext >&5 +- +- ac_cv_lib_xosd_xosd_set_offset=no ++ ac_cv_lib_xosd_xosd_set_offset=no + fi +- +-rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ +- conftest$ac_exeext conftest.$ac_ext ++rm -f core conftest.err conftest.$ac_objext \ ++ conftest$ac_exeext conftest.$ac_ext + LIBS=$ac_check_lib_save_LIBS + fi +-{ echo "$as_me:$LINENO: result: $ac_cv_lib_xosd_xosd_set_offset" >&5 +-echo "${ECHO_T}$ac_cv_lib_xosd_xosd_set_offset" >&6; } +-if test $ac_cv_lib_xosd_xosd_set_offset = yes; then ++{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_xosd_xosd_set_offset" >&5 ++$as_echo "$ac_cv_lib_xosd_xosd_set_offset" >&6; } ++if test "x$ac_cv_lib_xosd_xosd_set_offset" = xyes; then : + +-cat >>confdefs.h <<\_ACEOF +-#define HAVE_XOSD_VERSION_1 1 +-_ACEOF ++$as_echo "#define HAVE_XOSD_VERSION_1 1" >>confdefs.h + + else +- { echo "$as_me:$LINENO: checking for xosd_set_horizontal_offset in -lxosd" >&5 +-echo $ECHO_N "checking for xosd_set_horizontal_offset in -lxosd... $ECHO_C" >&6; } +-if test "${ac_cv_lib_xosd_xosd_set_horizontal_offset+set}" = set; then +- echo $ECHO_N "(cached) $ECHO_C" >&6 ++ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for xosd_set_horizontal_offset in -lxosd" >&5 ++$as_echo_n "checking for xosd_set_horizontal_offset in -lxosd... " >&6; } ++if ${ac_cv_lib_xosd_xosd_set_horizontal_offset+:} false; then : ++ $as_echo_n "(cached) " >&6 + else + ac_check_lib_save_LIBS=$LIBS + LIBS="-lxosd $LIBS" +-cat >conftest.$ac_ext <<_ACEOF +-/* confdefs.h. */ +-_ACEOF +-cat confdefs.h >>conftest.$ac_ext +-cat >>conftest.$ac_ext <<_ACEOF ++cat confdefs.h - <<_ACEOF >conftest.$ac_ext + /* end confdefs.h. */ + + /* Override any GCC internal prototype to avoid an error. +@@ -60648,50 +39563,23 @@ return xosd_set_horizontal_offset (); + return 0; + } + _ACEOF +-rm -f conftest.$ac_objext conftest$ac_exeext +-if { (ac_try="$ac_link" +-case "(($ac_try" in +- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; +- *) ac_try_echo=$ac_try;; +-esac +-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 +- (eval "$ac_link") 2>conftest.er1 +- ac_status=$? +- grep -v '^ *+' conftest.er1 >conftest.err +- rm -f conftest.er1 +- cat conftest.err >&5 +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); } && { +- test -z "$ac_c_werror_flag" || +- test ! -s conftest.err +- } && test -s conftest$ac_exeext && +- $as_test_x conftest$ac_exeext; then ++if ac_fn_c_try_link "$LINENO"; then : + ac_cv_lib_xosd_xosd_set_horizontal_offset=yes + else +- echo "$as_me: failed program was:" >&5 +-sed 's/^/| /' conftest.$ac_ext >&5 +- +- ac_cv_lib_xosd_xosd_set_horizontal_offset=no ++ ac_cv_lib_xosd_xosd_set_horizontal_offset=no + fi +- +-rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ +- conftest$ac_exeext conftest.$ac_ext ++rm -f core conftest.err conftest.$ac_objext \ ++ conftest$ac_exeext conftest.$ac_ext + LIBS=$ac_check_lib_save_LIBS + fi +-{ echo "$as_me:$LINENO: result: $ac_cv_lib_xosd_xosd_set_horizontal_offset" >&5 +-echo "${ECHO_T}$ac_cv_lib_xosd_xosd_set_horizontal_offset" >&6; } +-if test $ac_cv_lib_xosd_xosd_set_horizontal_offset = yes; then ++{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_xosd_xosd_set_horizontal_offset" >&5 ++$as_echo "$ac_cv_lib_xosd_xosd_set_horizontal_offset" >&6; } ++if test "x$ac_cv_lib_xosd_xosd_set_horizontal_offset" = xyes; then : + +-cat >>confdefs.h <<\_ACEOF +-#define HAVE_XOSD_VERSION_2 1 +-_ACEOF ++$as_echo "#define HAVE_XOSD_VERSION_2 1" >>confdefs.h + + else +- cat >conftest.$ac_ext <<_ACEOF +-/* confdefs.h. */ +-_ACEOF +-cat confdefs.h >>conftest.$ac_ext +-cat >>conftest.$ac_ext <<_ACEOF ++ cat confdefs.h - <<_ACEOF >conftest.$ac_ext + /* end confdefs.h. */ + #include + int +@@ -60702,35 +39590,13 @@ void foo() { xosd_init("foo","bar",12,XOSD_top,2,12,42); } + return 0; + } + _ACEOF +-rm -f conftest.$ac_objext +-if { (ac_try="$ac_compile" +-case "(($ac_try" in +- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; +- *) ac_try_echo=$ac_try;; +-esac +-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 +- (eval "$ac_compile") 2>conftest.er1 +- ac_status=$? +- grep -v '^ *+' conftest.er1 >conftest.err +- rm -f conftest.er1 +- cat conftest.err >&5 +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); } && { +- test -z "$ac_c_werror_flag" || +- test ! -s conftest.err +- } && test -s conftest.$ac_objext; then +- : +-else +- echo "$as_me: failed program was:" >&5 +-sed 's/^/| /' conftest.$ac_ext >&5 ++if ac_fn_c_try_compile "$LINENO"; then : + ++else + +-cat >>confdefs.h <<\_ACEOF +-#define HAVE_XOSD_VERSION_0 1 +-_ACEOF ++$as_echo "#define HAVE_XOSD_VERSION_0 1" >>confdefs.h + + fi +- + rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext + fi + +@@ -60751,7 +39617,7 @@ fi + fi + + # Check whether --enable-visual was given. +-if test "${enable_visual+set}" = set; then ++if test "${enable_visual+set}" = set; then : + enableval=$enable_visual; + fi + +@@ -60763,147 +39629,19 @@ then + fi + + # Check whether --enable-galaktos was given. +-if test "${enable_galaktos+set}" = set; then ++if test "${enable_galaktos+set}" = set; then : + enableval=$enable_galaktos; + fi + + if test "${enable_galaktos}" = "yes" + then +- +- +-for ac_header in GL/gl.h GL/glu.h +-do +-as_ac_Header=`echo "ac_cv_header_$ac_header" | $as_tr_sh` +-if { as_var=$as_ac_Header; eval "test \"\${$as_var+set}\" = set"; }; then +- { echo "$as_me:$LINENO: checking for $ac_header" >&5 +-echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6; } +-if { as_var=$as_ac_Header; eval "test \"\${$as_var+set}\" = set"; }; then +- echo $ECHO_N "(cached) $ECHO_C" >&6 +-fi +-ac_res=`eval echo '${'$as_ac_Header'}'` +- { echo "$as_me:$LINENO: result: $ac_res" >&5 +-echo "${ECHO_T}$ac_res" >&6; } +-else +- # Is the header compilable? +-{ echo "$as_me:$LINENO: checking $ac_header usability" >&5 +-echo $ECHO_N "checking $ac_header usability... $ECHO_C" >&6; } +-cat >conftest.$ac_ext <<_ACEOF +-/* confdefs.h. */ +-_ACEOF +-cat confdefs.h >>conftest.$ac_ext +-cat >>conftest.$ac_ext <<_ACEOF +-/* end confdefs.h. */ +-$ac_includes_default +-#include <$ac_header> +-_ACEOF +-rm -f conftest.$ac_objext +-if { (ac_try="$ac_compile" +-case "(($ac_try" in +- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; +- *) ac_try_echo=$ac_try;; +-esac +-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 +- (eval "$ac_compile") 2>conftest.er1 +- ac_status=$? +- grep -v '^ *+' conftest.er1 >conftest.err +- rm -f conftest.er1 +- cat conftest.err >&5 +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); } && { +- test -z "$ac_c_werror_flag" || +- test ! -s conftest.err +- } && test -s conftest.$ac_objext; then +- ac_header_compiler=yes +-else +- echo "$as_me: failed program was:" >&5 +-sed 's/^/| /' conftest.$ac_ext >&5 +- +- ac_header_compiler=no +-fi +- +-rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext +-{ echo "$as_me:$LINENO: result: $ac_header_compiler" >&5 +-echo "${ECHO_T}$ac_header_compiler" >&6; } +- +-# Is the header present? +-{ echo "$as_me:$LINENO: checking $ac_header presence" >&5 +-echo $ECHO_N "checking $ac_header presence... $ECHO_C" >&6; } +-cat >conftest.$ac_ext <<_ACEOF +-/* confdefs.h. */ +-_ACEOF +-cat confdefs.h >>conftest.$ac_ext +-cat >>conftest.$ac_ext <<_ACEOF +-/* end confdefs.h. */ +-#include <$ac_header> +-_ACEOF +-if { (ac_try="$ac_cpp conftest.$ac_ext" +-case "(($ac_try" in +- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; +- *) ac_try_echo=$ac_try;; +-esac +-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 +- (eval "$ac_cpp conftest.$ac_ext") 2>conftest.er1 +- ac_status=$? +- grep -v '^ *+' conftest.er1 >conftest.err +- rm -f conftest.er1 +- cat conftest.err >&5 +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); } >/dev/null && { +- test -z "$ac_c_preproc_warn_flag$ac_c_werror_flag" || +- test ! -s conftest.err +- }; then +- ac_header_preproc=yes +-else +- echo "$as_me: failed program was:" >&5 +-sed 's/^/| /' conftest.$ac_ext >&5 +- +- ac_header_preproc=no +-fi +- +-rm -f conftest.err conftest.$ac_ext +-{ echo "$as_me:$LINENO: result: $ac_header_preproc" >&5 +-echo "${ECHO_T}$ac_header_preproc" >&6; } +- +-# So? What about this header? +-case $ac_header_compiler:$ac_header_preproc:$ac_c_preproc_warn_flag in +- yes:no: ) +- { echo "$as_me:$LINENO: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&5 +-echo "$as_me: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&2;} +- { echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the compiler's result" >&5 +-echo "$as_me: WARNING: $ac_header: proceeding with the compiler's result" >&2;} +- ac_header_preproc=yes +- ;; +- no:yes:* ) +- { echo "$as_me:$LINENO: WARNING: $ac_header: present but cannot be compiled" >&5 +-echo "$as_me: WARNING: $ac_header: present but cannot be compiled" >&2;} +- { echo "$as_me:$LINENO: WARNING: $ac_header: check for missing prerequisite headers?" >&5 +-echo "$as_me: WARNING: $ac_header: check for missing prerequisite headers?" >&2;} +- { echo "$as_me:$LINENO: WARNING: $ac_header: see the Autoconf documentation" >&5 +-echo "$as_me: WARNING: $ac_header: see the Autoconf documentation" >&2;} +- { echo "$as_me:$LINENO: WARNING: $ac_header: section \"Present But Cannot Be Compiled\"" >&5 +-echo "$as_me: WARNING: $ac_header: section \"Present But Cannot Be Compiled\"" >&2;} +- { echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the preprocessor's result" >&5 +-echo "$as_me: WARNING: $ac_header: proceeding with the preprocessor's result" >&2;} +- { echo "$as_me:$LINENO: WARNING: $ac_header: in the future, the compiler will take precedence" >&5 +-echo "$as_me: WARNING: $ac_header: in the future, the compiler will take precedence" >&2;} +- +- ;; +-esac +-{ echo "$as_me:$LINENO: checking for $ac_header" >&5 +-echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6; } +-if { as_var=$as_ac_Header; eval "test \"\${$as_var+set}\" = set"; }; then +- echo $ECHO_N "(cached) $ECHO_C" >&6 +-else +- eval "$as_ac_Header=\$ac_header_preproc" +-fi +-ac_res=`eval echo '${'$as_ac_Header'}'` +- { echo "$as_me:$LINENO: result: $ac_res" >&5 +-echo "${ECHO_T}$ac_res" >&6; } +- +-fi +-if test `eval echo '${'$as_ac_Header'}'` = yes; then ++ for ac_header in GL/gl.h GL/glu.h ++do : ++ as_ac_Header=`$as_echo "ac_cv_header_$ac_header" | $as_tr_sh` ++ac_fn_c_check_header_mongrel "$LINENO" "$ac_header" "$as_ac_Header" "$ac_includes_default" ++if eval test \"x\$"$as_ac_Header"\" = x"yes"; then : + cat >>confdefs.h <<_ACEOF +-#define `echo "HAVE_$ac_header" | $as_tr_cpp` 1 ++#define `$as_echo "HAVE_$ac_header" | $as_tr_cpp` 1 + _ACEOF + + +@@ -60932,7 +39670,7 @@ done + fi + + # Check whether --enable-goom was given. +-if test "${enable_goom+set}" = set; then ++if test "${enable_goom+set}" = set; then : + enableval=$enable_goom; + fi + +@@ -60940,25 +39678,23 @@ if test "${enable_goom}" = "yes" + then + + # Check whether --with-goom-tree was given. +-if test "${with_goom_tree+set}" = set; then ++if test "${with_goom_tree+set}" = set; then : + withval=$with_goom_tree; + fi + + + if test "${with_goom_tree}" != "no" -a -n "${with_goom_tree}"; then +- { echo "$as_me:$LINENO: checking for libgoom2.a in ${with_goom_tree}" >&5 +-echo $ECHO_N "checking for libgoom2.a in ${with_goom_tree}... $ECHO_C" >&6; } ++ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for libgoom2.a in ${with_goom_tree}" >&5 ++$as_echo_n "checking for libgoom2.a in ${with_goom_tree}... " >&6; } + real_goom_tree="`cd ${with_goom_tree} 2>/dev/null && pwd`" + if test -z "${real_goom_tree}"; then +- { echo "$as_me:$LINENO: result: no" >&5 +-echo "${ECHO_T}no" >&6; } +- { { echo "$as_me:$LINENO: error: cannot cd to ${with_goom_tree}" >&5 +-echo "$as_me: error: cannot cd to ${with_goom_tree}" >&2;} +- { (exit 1); exit 1; }; } ++ { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 ++$as_echo "no" >&6; } ++ as_fn_error $? "cannot cd to ${with_goom_tree}" "$LINENO" 5 + fi + if test -f "${real_goom_tree}/src/.libs/libgoom2.a"; then +- { echo "$as_me:$LINENO: result: ${real_goom_tree}/src/.libs/libgoom2.a" >&5 +-echo "${ECHO_T}${real_goom_tree}/src/.libs/libgoom2.a" >&6; } ++ { $as_echo "$as_me:${as_lineno-$LINENO}: result: ${real_goom_tree}/src/.libs/libgoom2.a" >&5 ++$as_echo "${real_goom_tree}/src/.libs/libgoom2.a" >&6; } + + BUILTINS="${BUILTINS} goom" + +@@ -60975,13 +39711,13 @@ echo "${ECHO_T}${real_goom_tree}/src/.libs/libgoom2.a" >&6; } + done + + else +- { echo "$as_me:$LINENO: result: no" >&5 +-echo "${ECHO_T}no" >&6; } +- { echo "$as_me:$LINENO: checking for libgoom.a in ${with_goom_tree}" >&5 +-echo $ECHO_N "checking for libgoom.a in ${with_goom_tree}... $ECHO_C" >&6; } ++ { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 ++$as_echo "no" >&6; } ++ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for libgoom.a in ${with_goom_tree}" >&5 ++$as_echo_n "checking for libgoom.a in ${with_goom_tree}... " >&6; } + if test -f "${real_goom_tree}/libgoom.a"; then +- { echo "$as_me:$LINENO: result: ${real_goom_tree}/libgoom.a" >&5 +-echo "${ECHO_T}${real_goom_tree}/libgoom.a" >&6; } ++ { $as_echo "$as_me:${as_lineno-$LINENO}: result: ${real_goom_tree}/libgoom.a" >&5 ++$as_echo "${real_goom_tree}/libgoom.a" >&6; } + + BUILTINS="${BUILTINS} goom" + +@@ -60998,163 +39734,29 @@ echo "${ECHO_T}${real_goom_tree}/libgoom.a" >&6; } + done + + else +- { echo "$as_me:$LINENO: result: no" >&5 +-echo "${ECHO_T}no" >&6; } +- { { echo "$as_me:$LINENO: error: cannot find ${real_goom_tree}/src/.libs/libgoom2.a, make sure you compiled goom in ${with_goom_tree}" >&5 +-echo "$as_me: error: cannot find ${real_goom_tree}/src/.libs/libgoom2.a, make sure you compiled goom in ${with_goom_tree}" >&2;} +- { (exit 1); exit 1; }; } ++ { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 ++$as_echo "no" >&6; } ++ as_fn_error $? "cannot find ${real_goom_tree}/src/.libs/libgoom2.a, make sure you compiled goom in ${with_goom_tree}" "$LINENO" 5 + fi + fi + else +- +-for ac_header in goom/goom.h +-do +-as_ac_Header=`echo "ac_cv_header_$ac_header" | $as_tr_sh` +-if { as_var=$as_ac_Header; eval "test \"\${$as_var+set}\" = set"; }; then +- { echo "$as_me:$LINENO: checking for $ac_header" >&5 +-echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6; } +-if { as_var=$as_ac_Header; eval "test \"\${$as_var+set}\" = set"; }; then +- echo $ECHO_N "(cached) $ECHO_C" >&6 +-fi +-ac_res=`eval echo '${'$as_ac_Header'}'` +- { echo "$as_me:$LINENO: result: $ac_res" >&5 +-echo "${ECHO_T}$ac_res" >&6; } +-else +- # Is the header compilable? +-{ echo "$as_me:$LINENO: checking $ac_header usability" >&5 +-echo $ECHO_N "checking $ac_header usability... $ECHO_C" >&6; } +-cat >conftest.$ac_ext <<_ACEOF +-/* confdefs.h. */ +-_ACEOF +-cat confdefs.h >>conftest.$ac_ext +-cat >>conftest.$ac_ext <<_ACEOF +-/* end confdefs.h. */ +-$ac_includes_default +-#include <$ac_header> +-_ACEOF +-rm -f conftest.$ac_objext +-if { (ac_try="$ac_compile" +-case "(($ac_try" in +- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; +- *) ac_try_echo=$ac_try;; +-esac +-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 +- (eval "$ac_compile") 2>conftest.er1 +- ac_status=$? +- grep -v '^ *+' conftest.er1 >conftest.err +- rm -f conftest.er1 +- cat conftest.err >&5 +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); } && { +- test -z "$ac_c_werror_flag" || +- test ! -s conftest.err +- } && test -s conftest.$ac_objext; then +- ac_header_compiler=yes +-else +- echo "$as_me: failed program was:" >&5 +-sed 's/^/| /' conftest.$ac_ext >&5 +- +- ac_header_compiler=no +-fi +- +-rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext +-{ echo "$as_me:$LINENO: result: $ac_header_compiler" >&5 +-echo "${ECHO_T}$ac_header_compiler" >&6; } +- +-# Is the header present? +-{ echo "$as_me:$LINENO: checking $ac_header presence" >&5 +-echo $ECHO_N "checking $ac_header presence... $ECHO_C" >&6; } +-cat >conftest.$ac_ext <<_ACEOF +-/* confdefs.h. */ +-_ACEOF +-cat confdefs.h >>conftest.$ac_ext +-cat >>conftest.$ac_ext <<_ACEOF +-/* end confdefs.h. */ +-#include <$ac_header> +-_ACEOF +-if { (ac_try="$ac_cpp conftest.$ac_ext" +-case "(($ac_try" in +- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; +- *) ac_try_echo=$ac_try;; +-esac +-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 +- (eval "$ac_cpp conftest.$ac_ext") 2>conftest.er1 +- ac_status=$? +- grep -v '^ *+' conftest.er1 >conftest.err +- rm -f conftest.er1 +- cat conftest.err >&5 +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); } >/dev/null && { +- test -z "$ac_c_preproc_warn_flag$ac_c_werror_flag" || +- test ! -s conftest.err +- }; then +- ac_header_preproc=yes +-else +- echo "$as_me: failed program was:" >&5 +-sed 's/^/| /' conftest.$ac_ext >&5 +- +- ac_header_preproc=no +-fi +- +-rm -f conftest.err conftest.$ac_ext +-{ echo "$as_me:$LINENO: result: $ac_header_preproc" >&5 +-echo "${ECHO_T}$ac_header_preproc" >&6; } +- +-# So? What about this header? +-case $ac_header_compiler:$ac_header_preproc:$ac_c_preproc_warn_flag in +- yes:no: ) +- { echo "$as_me:$LINENO: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&5 +-echo "$as_me: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&2;} +- { echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the compiler's result" >&5 +-echo "$as_me: WARNING: $ac_header: proceeding with the compiler's result" >&2;} +- ac_header_preproc=yes +- ;; +- no:yes:* ) +- { echo "$as_me:$LINENO: WARNING: $ac_header: present but cannot be compiled" >&5 +-echo "$as_me: WARNING: $ac_header: present but cannot be compiled" >&2;} +- { echo "$as_me:$LINENO: WARNING: $ac_header: check for missing prerequisite headers?" >&5 +-echo "$as_me: WARNING: $ac_header: check for missing prerequisite headers?" >&2;} +- { echo "$as_me:$LINENO: WARNING: $ac_header: see the Autoconf documentation" >&5 +-echo "$as_me: WARNING: $ac_header: see the Autoconf documentation" >&2;} +- { echo "$as_me:$LINENO: WARNING: $ac_header: section \"Present But Cannot Be Compiled\"" >&5 +-echo "$as_me: WARNING: $ac_header: section \"Present But Cannot Be Compiled\"" >&2;} +- { echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the preprocessor's result" >&5 +-echo "$as_me: WARNING: $ac_header: proceeding with the preprocessor's result" >&2;} +- { echo "$as_me:$LINENO: WARNING: $ac_header: in the future, the compiler will take precedence" >&5 +-echo "$as_me: WARNING: $ac_header: in the future, the compiler will take precedence" >&2;} +- +- ;; +-esac +-{ echo "$as_me:$LINENO: checking for $ac_header" >&5 +-echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6; } +-if { as_var=$as_ac_Header; eval "test \"\${$as_var+set}\" = set"; }; then +- echo $ECHO_N "(cached) $ECHO_C" >&6 +-else +- eval "$as_ac_Header=\$ac_header_preproc" +-fi +-ac_res=`eval echo '${'$as_ac_Header'}'` +- { echo "$as_me:$LINENO: result: $ac_res" >&5 +-echo "${ECHO_T}$ac_res" >&6; } +- +-fi +-if test `eval echo '${'$as_ac_Header'}'` = yes; then ++ for ac_header in goom/goom.h ++do : ++ ac_fn_c_check_header_mongrel "$LINENO" "goom/goom.h" "ac_cv_header_goom_goom_h" "$ac_includes_default" ++if test "x$ac_cv_header_goom_goom_h" = xyes; then : + cat >>confdefs.h <<_ACEOF +-#define `echo "HAVE_$ac_header" | $as_tr_cpp` 1 ++#define HAVE_GOOM_GOOM_H 1 + _ACEOF + + LDFLAGS="${LDFLAGS_save} ${LDFLAGS_goom}" +- { echo "$as_me:$LINENO: checking for goom_init in -lgoom2" >&5 +-echo $ECHO_N "checking for goom_init in -lgoom2... $ECHO_C" >&6; } +-if test "${ac_cv_lib_goom2_goom_init+set}" = set; then +- echo $ECHO_N "(cached) $ECHO_C" >&6 ++ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for goom_init in -lgoom2" >&5 ++$as_echo_n "checking for goom_init in -lgoom2... " >&6; } ++if ${ac_cv_lib_goom2_goom_init+:} false; then : ++ $as_echo_n "(cached) " >&6 + else + ac_check_lib_save_LIBS=$LIBS + LIBS="-lgoom2 $LIBS" +-cat >conftest.$ac_ext <<_ACEOF +-/* confdefs.h. */ +-_ACEOF +-cat confdefs.h >>conftest.$ac_ext +-cat >>conftest.$ac_ext <<_ACEOF ++cat confdefs.h - <<_ACEOF >conftest.$ac_ext + /* end confdefs.h. */ + + /* Override any GCC internal prototype to avoid an error. +@@ -61172,39 +39774,18 @@ return goom_init (); + return 0; + } + _ACEOF +-rm -f conftest.$ac_objext conftest$ac_exeext +-if { (ac_try="$ac_link" +-case "(($ac_try" in +- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; +- *) ac_try_echo=$ac_try;; +-esac +-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 +- (eval "$ac_link") 2>conftest.er1 +- ac_status=$? +- grep -v '^ *+' conftest.er1 >conftest.err +- rm -f conftest.er1 +- cat conftest.err >&5 +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); } && { +- test -z "$ac_c_werror_flag" || +- test ! -s conftest.err +- } && test -s conftest$ac_exeext && +- $as_test_x conftest$ac_exeext; then ++if ac_fn_c_try_link "$LINENO"; then : + ac_cv_lib_goom2_goom_init=yes + else +- echo "$as_me: failed program was:" >&5 +-sed 's/^/| /' conftest.$ac_ext >&5 +- +- ac_cv_lib_goom2_goom_init=no ++ ac_cv_lib_goom2_goom_init=no + fi +- +-rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ +- conftest$ac_exeext conftest.$ac_ext ++rm -f core conftest.err conftest.$ac_objext \ ++ conftest$ac_exeext conftest.$ac_ext + LIBS=$ac_check_lib_save_LIBS + fi +-{ echo "$as_me:$LINENO: result: $ac_cv_lib_goom2_goom_init" >&5 +-echo "${ECHO_T}$ac_cv_lib_goom2_goom_init" >&6; } +-if test $ac_cv_lib_goom2_goom_init = yes; then ++{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_goom2_goom_init" >&5 ++$as_echo "$ac_cv_lib_goom2_goom_init" >&6; } ++if test "x$ac_cv_lib_goom2_goom_init" = xyes; then : + + + PLUGINS="${PLUGINS} goom" +@@ -61218,9 +39799,7 @@ if test $ac_cv_lib_goom2_goom_init = yes; then + + else + +- { { echo "$as_me:$LINENO: error: Could not find goom on your system: you may get it from http://www.ios-software.com/." >&5 +-echo "$as_me: error: Could not find goom on your system: you may get it from http://www.ios-software.com/." >&2;} +- { (exit 1); exit 1; }; } ++ as_fn_error $? "Could not find goom on your system: you may get it from http://www.ios-software.com/." "$LINENO" 5 + + fi + +@@ -61234,7 +39813,7 @@ done + fi + + # Check whether --enable-daap was given. +-if test "${enable_daap+set}" = set; then ++if test "${enable_daap+set}" = set; then : + enableval=$enable_daap; + fi + +@@ -61242,19 +39821,19 @@ if test "$enable_daap" != "no" + then + + pkg_failed=no +-{ echo "$as_me:$LINENO: checking for DAAP" >&5 +-echo $ECHO_N "checking for DAAP... $ECHO_C" >&6; } ++{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for DAAP" >&5 ++$as_echo_n "checking for DAAP... " >&6; } + + if test -n "$PKG_CONFIG"; then + if test -n "$DAAP_CFLAGS"; then + pkg_cv_DAAP_CFLAGS="$DAAP_CFLAGS" + else + if test -n "$PKG_CONFIG" && \ +- { (echo "$as_me:$LINENO: \$PKG_CONFIG --exists --print-errors \"opendaap >= 0.3.0\"") >&5 ++ { { $as_echo "$as_me:${as_lineno-$LINENO}: \$PKG_CONFIG --exists --print-errors \"opendaap >= 0.3.0\""; } >&5 + ($PKG_CONFIG --exists --print-errors "opendaap >= 0.3.0") 2>&5 + ac_status=$? +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); }; then ++ $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 ++ test $ac_status = 0; }; then + pkg_cv_DAAP_CFLAGS=`$PKG_CONFIG --cflags "opendaap >= 0.3.0" 2>/dev/null` + else + pkg_failed=yes +@@ -61268,11 +39847,11 @@ if test -n "$PKG_CONFIG"; then + pkg_cv_DAAP_LIBS="$DAAP_LIBS" + else + if test -n "$PKG_CONFIG" && \ +- { (echo "$as_me:$LINENO: \$PKG_CONFIG --exists --print-errors \"opendaap >= 0.3.0\"") >&5 ++ { { $as_echo "$as_me:${as_lineno-$LINENO}: \$PKG_CONFIG --exists --print-errors \"opendaap >= 0.3.0\""; } >&5 + ($PKG_CONFIG --exists --print-errors "opendaap >= 0.3.0") 2>&5 + ac_status=$? +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); }; then ++ $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 ++ test $ac_status = 0; }; then + pkg_cv_DAAP_LIBS=`$PKG_CONFIG --libs "opendaap >= 0.3.0" 2>/dev/null` + else + pkg_failed=yes +@@ -61299,18 +39878,18 @@ fi + # Put the nasty error message in config.log where it belongs + echo "$DAAP_PKG_ERRORS" >&5 + +- { echo "$as_me:$LINENO: result: no" >&5 +-echo "${ECHO_T}no" >&6; } +- { echo "$as_me:$LINENO: WARNING: DAAP library not found" >&5 +-echo "$as_me: WARNING: DAAP library not found" >&2;} ++ { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 ++$as_echo "no" >&6; } ++ { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: DAAP library not found" >&5 ++$as_echo "$as_me: WARNING: DAAP library not found" >&2;} + elif test $pkg_failed = untried; then +- { echo "$as_me:$LINENO: WARNING: DAAP library not found" >&5 +-echo "$as_me: WARNING: DAAP library not found" >&2;} ++ { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: DAAP library not found" >&5 ++$as_echo "$as_me: WARNING: DAAP library not found" >&2;} + else + DAAP_CFLAGS=$pkg_cv_DAAP_CFLAGS + DAAP_LIBS=$pkg_cv_DAAP_LIBS +- { echo "$as_me:$LINENO: result: yes" >&5 +-echo "${ECHO_T}yes" >&6; } ++ { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5 ++$as_echo "yes" >&6; } + + PLUGINS="${PLUGINS} daap" + +@@ -61330,7 +39909,7 @@ fi + fi + + # Check whether --enable-bonjour was given. +-if test "${enable_bonjour+set}" = set; then ++if test "${enable_bonjour+set}" = set; then : + enableval=$enable_bonjour; + fi + +@@ -61338,19 +39917,19 @@ if test "${enable_bonjour}" != "no" + then + + pkg_failed=no +-{ echo "$as_me:$LINENO: checking for BONJOUR" >&5 +-echo $ECHO_N "checking for BONJOUR... $ECHO_C" >&6; } ++{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for BONJOUR" >&5 ++$as_echo_n "checking for BONJOUR... " >&6; } + + if test -n "$PKG_CONFIG"; then + if test -n "$BONJOUR_CFLAGS"; then + pkg_cv_BONJOUR_CFLAGS="$BONJOUR_CFLAGS" + else + if test -n "$PKG_CONFIG" && \ +- { (echo "$as_me:$LINENO: \$PKG_CONFIG --exists --print-errors \"avahi-client >= 0.3\"") >&5 ++ { { $as_echo "$as_me:${as_lineno-$LINENO}: \$PKG_CONFIG --exists --print-errors \"avahi-client >= 0.3\""; } >&5 + ($PKG_CONFIG --exists --print-errors "avahi-client >= 0.3") 2>&5 + ac_status=$? +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); }; then ++ $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 ++ test $ac_status = 0; }; then + pkg_cv_BONJOUR_CFLAGS=`$PKG_CONFIG --cflags "avahi-client >= 0.3" 2>/dev/null` + else + pkg_failed=yes +@@ -61364,11 +39943,11 @@ if test -n "$PKG_CONFIG"; then + pkg_cv_BONJOUR_LIBS="$BONJOUR_LIBS" + else + if test -n "$PKG_CONFIG" && \ +- { (echo "$as_me:$LINENO: \$PKG_CONFIG --exists --print-errors \"avahi-client >= 0.3\"") >&5 ++ { { $as_echo "$as_me:${as_lineno-$LINENO}: \$PKG_CONFIG --exists --print-errors \"avahi-client >= 0.3\""; } >&5 + ($PKG_CONFIG --exists --print-errors "avahi-client >= 0.3") 2>&5 + ac_status=$? +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); }; then ++ $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 ++ test $ac_status = 0; }; then + pkg_cv_BONJOUR_LIBS=`$PKG_CONFIG --libs "avahi-client >= 0.3" 2>/dev/null` + else + pkg_failed=yes +@@ -61395,33 +39974,33 @@ fi + # Put the nasty error message in config.log where it belongs + echo "$BONJOUR_PKG_ERRORS" >&5 + +- { echo "$as_me:$LINENO: result: no" >&5 +-echo "${ECHO_T}no" >&6; } +- { echo "$as_me:$LINENO: WARNING: avahi-client library not found" >&5 +-echo "$as_me: WARNING: avahi-client library not found" >&2;} ++ { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 ++$as_echo "no" >&6; } ++ { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: avahi-client library not found" >&5 ++$as_echo "$as_me: WARNING: avahi-client library not found" >&2;} + elif test $pkg_failed = untried; then +- { echo "$as_me:$LINENO: WARNING: avahi-client library not found" >&5 +-echo "$as_me: WARNING: avahi-client library not found" >&2;} ++ { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: avahi-client library not found" >&5 ++$as_echo "$as_me: WARNING: avahi-client library not found" >&2;} + else + BONJOUR_CFLAGS=$pkg_cv_BONJOUR_CFLAGS + BONJOUR_LIBS=$pkg_cv_BONJOUR_LIBS +- { echo "$as_me:$LINENO: result: yes" >&5 +-echo "${ECHO_T}yes" >&6; } ++ { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5 ++$as_echo "yes" >&6; } + + pkg_failed=no +-{ echo "$as_me:$LINENO: checking for BONJOUR" >&5 +-echo $ECHO_N "checking for BONJOUR... $ECHO_C" >&6; } ++{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for BONJOUR" >&5 ++$as_echo_n "checking for BONJOUR... " >&6; } + + if test -n "$PKG_CONFIG"; then + if test -n "$BONJOUR_CFLAGS"; then + pkg_cv_BONJOUR_CFLAGS="$BONJOUR_CFLAGS" + else + if test -n "$PKG_CONFIG" && \ +- { (echo "$as_me:$LINENO: \$PKG_CONFIG --exists --print-errors \"avahi-client >= 0.6\"") >&5 ++ { { $as_echo "$as_me:${as_lineno-$LINENO}: \$PKG_CONFIG --exists --print-errors \"avahi-client >= 0.6\""; } >&5 + ($PKG_CONFIG --exists --print-errors "avahi-client >= 0.6") 2>&5 + ac_status=$? +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); }; then ++ $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 ++ test $ac_status = 0; }; then + pkg_cv_BONJOUR_CFLAGS=`$PKG_CONFIG --cflags "avahi-client >= 0.6" 2>/dev/null` + else + pkg_failed=yes +@@ -61435,11 +40014,11 @@ if test -n "$PKG_CONFIG"; then + pkg_cv_BONJOUR_LIBS="$BONJOUR_LIBS" + else + if test -n "$PKG_CONFIG" && \ +- { (echo "$as_me:$LINENO: \$PKG_CONFIG --exists --print-errors \"avahi-client >= 0.6\"") >&5 ++ { { $as_echo "$as_me:${as_lineno-$LINENO}: \$PKG_CONFIG --exists --print-errors \"avahi-client >= 0.6\""; } >&5 + ($PKG_CONFIG --exists --print-errors "avahi-client >= 0.6") 2>&5 + ac_status=$? +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); }; then ++ $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 ++ test $ac_status = 0; }; then + pkg_cv_BONJOUR_LIBS=`$PKG_CONFIG --libs "avahi-client >= 0.6" 2>/dev/null` + else + pkg_failed=yes +@@ -61466,18 +40045,7 @@ fi + # Put the nasty error message in config.log where it belongs + echo "$BONJOUR_PKG_ERRORS" >&5 + +- { { echo "$as_me:$LINENO: error: Package requirements (avahi-client >= 0.6) were not met: +- +-$BONJOUR_PKG_ERRORS +- +-Consider adjusting the PKG_CONFIG_PATH environment variable if you +-installed software in a non-standard prefix. +- +-Alternatively, you may set the environment variables BONJOUR_CFLAGS +-and BONJOUR_LIBS to avoid the need to call pkg-config. +-See the pkg-config man page for more details. +-" >&5 +-echo "$as_me: error: Package requirements (avahi-client >= 0.6) were not met: ++ as_fn_error $? "Package requirements (avahi-client >= 0.6) were not met: + + $BONJOUR_PKG_ERRORS + +@@ -61487,20 +40055,11 @@ installed software in a non-standard prefix. + Alternatively, you may set the environment variables BONJOUR_CFLAGS + and BONJOUR_LIBS to avoid the need to call pkg-config. + See the pkg-config man page for more details. +-" >&2;} +- { (exit 1); exit 1; }; } ++" "$LINENO" 5 + elif test $pkg_failed = untried; then +- { { echo "$as_me:$LINENO: error: The pkg-config script could not be found or is too old. Make sure it +-is in your PATH or set the PKG_CONFIG environment variable to the full +-path to pkg-config. +- +-Alternatively, you may set the environment variables BONJOUR_CFLAGS +-and BONJOUR_LIBS to avoid the need to call pkg-config. +-See the pkg-config man page for more details. +- +-To get pkg-config, see . +-See \`config.log' for more details." >&5 +-echo "$as_me: error: The pkg-config script could not be found or is too old. Make sure it ++ { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5 ++$as_echo "$as_me: error: in \`$ac_pwd':" >&2;} ++as_fn_error $? "The pkg-config script could not be found or is too old. Make sure it + is in your PATH or set the PKG_CONFIG environment variable to the full + path to pkg-config. + +@@ -61509,23 +40068,18 @@ and BONJOUR_LIBS to avoid the need to call pkg-config. + See the pkg-config man page for more details. + + To get pkg-config, see . +-See \`config.log' for more details." >&2;} +- { (exit 1); exit 1; }; } ++See \`config.log' for more details" "$LINENO" 5; } + else + BONJOUR_CFLAGS=$pkg_cv_BONJOUR_CFLAGS + BONJOUR_LIBS=$pkg_cv_BONJOUR_LIBS +- { echo "$as_me:$LINENO: result: yes" >&5 +-echo "${ECHO_T}yes" >&6; } ++ { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5 ++$as_echo "yes" >&6; } + +-cat >>confdefs.h <<\_ACEOF +-#define HAVE_AVAHI_06 +-_ACEOF ++$as_echo "#define HAVE_AVAHI_06 /**/" >>confdefs.h + + fi + +-cat >>confdefs.h <<\_ACEOF +-#define HAVE_AVAHI_CLIENT +-_ACEOF ++$as_echo "#define HAVE_AVAHI_CLIENT /**/" >>confdefs.h + + + for element in bonjour access_output_http; do +@@ -61546,150 +40100,22 @@ fi + fi + + # Check whether --enable-lirc was given. +-if test "${enable_lirc+set}" = set; then ++if test "${enable_lirc+set}" = set; then : + enableval=$enable_lirc; + fi + + if test "${enable_lirc}" = "yes" + then +- if test "${ac_cv_header_lirc_lirc_client_h+set}" = set; then +- { echo "$as_me:$LINENO: checking for lirc/lirc_client.h" >&5 +-echo $ECHO_N "checking for lirc/lirc_client.h... $ECHO_C" >&6; } +-if test "${ac_cv_header_lirc_lirc_client_h+set}" = set; then +- echo $ECHO_N "(cached) $ECHO_C" >&6 +-fi +-{ echo "$as_me:$LINENO: result: $ac_cv_header_lirc_lirc_client_h" >&5 +-echo "${ECHO_T}$ac_cv_header_lirc_lirc_client_h" >&6; } +-else +- # Is the header compilable? +-{ echo "$as_me:$LINENO: checking lirc/lirc_client.h usability" >&5 +-echo $ECHO_N "checking lirc/lirc_client.h usability... $ECHO_C" >&6; } +-cat >conftest.$ac_ext <<_ACEOF +-/* confdefs.h. */ +-_ACEOF +-cat confdefs.h >>conftest.$ac_ext +-cat >>conftest.$ac_ext <<_ACEOF +-/* end confdefs.h. */ +-$ac_includes_default +-#include +-_ACEOF +-rm -f conftest.$ac_objext +-if { (ac_try="$ac_compile" +-case "(($ac_try" in +- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; +- *) ac_try_echo=$ac_try;; +-esac +-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 +- (eval "$ac_compile") 2>conftest.er1 +- ac_status=$? +- grep -v '^ *+' conftest.er1 >conftest.err +- rm -f conftest.er1 +- cat conftest.err >&5 +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); } && { +- test -z "$ac_c_werror_flag" || +- test ! -s conftest.err +- } && test -s conftest.$ac_objext; then +- ac_header_compiler=yes +-else +- echo "$as_me: failed program was:" >&5 +-sed 's/^/| /' conftest.$ac_ext >&5 +- +- ac_header_compiler=no +-fi +- +-rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext +-{ echo "$as_me:$LINENO: result: $ac_header_compiler" >&5 +-echo "${ECHO_T}$ac_header_compiler" >&6; } +- +-# Is the header present? +-{ echo "$as_me:$LINENO: checking lirc/lirc_client.h presence" >&5 +-echo $ECHO_N "checking lirc/lirc_client.h presence... $ECHO_C" >&6; } +-cat >conftest.$ac_ext <<_ACEOF +-/* confdefs.h. */ +-_ACEOF +-cat confdefs.h >>conftest.$ac_ext +-cat >>conftest.$ac_ext <<_ACEOF +-/* end confdefs.h. */ +-#include +-_ACEOF +-if { (ac_try="$ac_cpp conftest.$ac_ext" +-case "(($ac_try" in +- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; +- *) ac_try_echo=$ac_try;; +-esac +-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 +- (eval "$ac_cpp conftest.$ac_ext") 2>conftest.er1 +- ac_status=$? +- grep -v '^ *+' conftest.er1 >conftest.err +- rm -f conftest.er1 +- cat conftest.err >&5 +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); } >/dev/null && { +- test -z "$ac_c_preproc_warn_flag$ac_c_werror_flag" || +- test ! -s conftest.err +- }; then +- ac_header_preproc=yes +-else +- echo "$as_me: failed program was:" >&5 +-sed 's/^/| /' conftest.$ac_ext >&5 +- +- ac_header_preproc=no +-fi +- +-rm -f conftest.err conftest.$ac_ext +-{ echo "$as_me:$LINENO: result: $ac_header_preproc" >&5 +-echo "${ECHO_T}$ac_header_preproc" >&6; } +- +-# So? What about this header? +-case $ac_header_compiler:$ac_header_preproc:$ac_c_preproc_warn_flag in +- yes:no: ) +- { echo "$as_me:$LINENO: WARNING: lirc/lirc_client.h: accepted by the compiler, rejected by the preprocessor!" >&5 +-echo "$as_me: WARNING: lirc/lirc_client.h: accepted by the compiler, rejected by the preprocessor!" >&2;} +- { echo "$as_me:$LINENO: WARNING: lirc/lirc_client.h: proceeding with the compiler's result" >&5 +-echo "$as_me: WARNING: lirc/lirc_client.h: proceeding with the compiler's result" >&2;} +- ac_header_preproc=yes +- ;; +- no:yes:* ) +- { echo "$as_me:$LINENO: WARNING: lirc/lirc_client.h: present but cannot be compiled" >&5 +-echo "$as_me: WARNING: lirc/lirc_client.h: present but cannot be compiled" >&2;} +- { echo "$as_me:$LINENO: WARNING: lirc/lirc_client.h: check for missing prerequisite headers?" >&5 +-echo "$as_me: WARNING: lirc/lirc_client.h: check for missing prerequisite headers?" >&2;} +- { echo "$as_me:$LINENO: WARNING: lirc/lirc_client.h: see the Autoconf documentation" >&5 +-echo "$as_me: WARNING: lirc/lirc_client.h: see the Autoconf documentation" >&2;} +- { echo "$as_me:$LINENO: WARNING: lirc/lirc_client.h: section \"Present But Cannot Be Compiled\"" >&5 +-echo "$as_me: WARNING: lirc/lirc_client.h: section \"Present But Cannot Be Compiled\"" >&2;} +- { echo "$as_me:$LINENO: WARNING: lirc/lirc_client.h: proceeding with the preprocessor's result" >&5 +-echo "$as_me: WARNING: lirc/lirc_client.h: proceeding with the preprocessor's result" >&2;} +- { echo "$as_me:$LINENO: WARNING: lirc/lirc_client.h: in the future, the compiler will take precedence" >&5 +-echo "$as_me: WARNING: lirc/lirc_client.h: in the future, the compiler will take precedence" >&2;} +- +- ;; +-esac +-{ echo "$as_me:$LINENO: checking for lirc/lirc_client.h" >&5 +-echo $ECHO_N "checking for lirc/lirc_client.h... $ECHO_C" >&6; } +-if test "${ac_cv_header_lirc_lirc_client_h+set}" = set; then +- echo $ECHO_N "(cached) $ECHO_C" >&6 +-else +- ac_cv_header_lirc_lirc_client_h=$ac_header_preproc +-fi +-{ echo "$as_me:$LINENO: result: $ac_cv_header_lirc_lirc_client_h" >&5 +-echo "${ECHO_T}$ac_cv_header_lirc_lirc_client_h" >&6; } +- +-fi +-if test $ac_cv_header_lirc_lirc_client_h = yes; then +- { echo "$as_me:$LINENO: checking for lirc_init in -llirc_client" >&5 +-echo $ECHO_N "checking for lirc_init in -llirc_client... $ECHO_C" >&6; } +-if test "${ac_cv_lib_lirc_client_lirc_init+set}" = set; then +- echo $ECHO_N "(cached) $ECHO_C" >&6 ++ ac_fn_c_check_header_mongrel "$LINENO" "lirc/lirc_client.h" "ac_cv_header_lirc_lirc_client_h" "$ac_includes_default" ++if test "x$ac_cv_header_lirc_lirc_client_h" = xyes; then : ++ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for lirc_init in -llirc_client" >&5 ++$as_echo_n "checking for lirc_init in -llirc_client... " >&6; } ++if ${ac_cv_lib_lirc_client_lirc_init+:} false; then : ++ $as_echo_n "(cached) " >&6 + else + ac_check_lib_save_LIBS=$LIBS + LIBS="-llirc_client $LIBS" +-cat >conftest.$ac_ext <<_ACEOF +-/* confdefs.h. */ +-_ACEOF +-cat confdefs.h >>conftest.$ac_ext +-cat >>conftest.$ac_ext <<_ACEOF ++cat confdefs.h - <<_ACEOF >conftest.$ac_ext + /* end confdefs.h. */ + + /* Override any GCC internal prototype to avoid an error. +@@ -61707,39 +40133,18 @@ return lirc_init (); + return 0; + } + _ACEOF +-rm -f conftest.$ac_objext conftest$ac_exeext +-if { (ac_try="$ac_link" +-case "(($ac_try" in +- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; +- *) ac_try_echo=$ac_try;; +-esac +-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 +- (eval "$ac_link") 2>conftest.er1 +- ac_status=$? +- grep -v '^ *+' conftest.er1 >conftest.err +- rm -f conftest.er1 +- cat conftest.err >&5 +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); } && { +- test -z "$ac_c_werror_flag" || +- test ! -s conftest.err +- } && test -s conftest$ac_exeext && +- $as_test_x conftest$ac_exeext; then ++if ac_fn_c_try_link "$LINENO"; then : + ac_cv_lib_lirc_client_lirc_init=yes + else +- echo "$as_me: failed program was:" >&5 +-sed 's/^/| /' conftest.$ac_ext >&5 +- +- ac_cv_lib_lirc_client_lirc_init=no ++ ac_cv_lib_lirc_client_lirc_init=no + fi +- +-rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ +- conftest$ac_exeext conftest.$ac_ext ++rm -f core conftest.err conftest.$ac_objext \ ++ conftest$ac_exeext conftest.$ac_ext + LIBS=$ac_check_lib_save_LIBS + fi +-{ echo "$as_me:$LINENO: result: $ac_cv_lib_lirc_client_lirc_init" >&5 +-echo "${ECHO_T}$ac_cv_lib_lirc_client_lirc_init" >&6; } +-if test $ac_cv_lib_lirc_client_lirc_init = yes; then ++{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_lirc_client_lirc_init" >&5 ++$as_echo "$ac_cv_lib_lirc_client_lirc_init" >&6; } ++if test "x$ac_cv_lib_lirc_client_lirc_init" = xyes; then : + have_lirc="true" + else + have_lirc="false" +@@ -61767,34 +40172,34 @@ fi + + + # Check whether --with- was given. +-if test "${with_+set}" = set; then ++if test "${with_+set}" = set; then : + withval=$with_; + fi + + + # Check whether --enable-gnutls was given. +-if test "${enable_gnutls+set}" = set; then ++if test "${enable_gnutls+set}" = set; then : + enableval=$enable_gnutls; + fi + + +-if test "${enable_gnutls}" != "no"; then ++if test "${enable_gnutls}" != "no"; then : + + + pkg_failed=no +-{ echo "$as_me:$LINENO: checking for GNUTLS" >&5 +-echo $ECHO_N "checking for GNUTLS... $ECHO_C" >&6; } ++{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for GNUTLS" >&5 ++$as_echo_n "checking for GNUTLS... " >&6; } + + if test -n "$PKG_CONFIG"; then + if test -n "$GNUTLS_CFLAGS"; then + pkg_cv_GNUTLS_CFLAGS="$GNUTLS_CFLAGS" + else + if test -n "$PKG_CONFIG" && \ +- { (echo "$as_me:$LINENO: \$PKG_CONFIG --exists --print-errors \"gnutls >= 1.2.9\"") >&5 ++ { { $as_echo "$as_me:${as_lineno-$LINENO}: \$PKG_CONFIG --exists --print-errors \"gnutls >= 1.2.9\""; } >&5 + ($PKG_CONFIG --exists --print-errors "gnutls >= 1.2.9") 2>&5 + ac_status=$? +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); }; then ++ $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 ++ test $ac_status = 0; }; then + pkg_cv_GNUTLS_CFLAGS=`$PKG_CONFIG --cflags "gnutls >= 1.2.9" 2>/dev/null` + else + pkg_failed=yes +@@ -61808,11 +40213,11 @@ if test -n "$PKG_CONFIG"; then + pkg_cv_GNUTLS_LIBS="$GNUTLS_LIBS" + else + if test -n "$PKG_CONFIG" && \ +- { (echo "$as_me:$LINENO: \$PKG_CONFIG --exists --print-errors \"gnutls >= 1.2.9\"") >&5 ++ { { $as_echo "$as_me:${as_lineno-$LINENO}: \$PKG_CONFIG --exists --print-errors \"gnutls >= 1.2.9\""; } >&5 + ($PKG_CONFIG --exists --print-errors "gnutls >= 1.2.9") 2>&5 + ac_status=$? +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); }; then ++ $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 ++ test $ac_status = 0; }; then + pkg_cv_GNUTLS_LIBS=`$PKG_CONFIG --libs "gnutls >= 1.2.9" 2>/dev/null` + else + pkg_failed=yes +@@ -61839,20 +40244,20 @@ fi + # Put the nasty error message in config.log where it belongs + echo "$GNUTLS_PKG_ERRORS" >&5 + +- { echo "$as_me:$LINENO: result: no" >&5 +-echo "${ECHO_T}no" >&6; } ++ { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 ++$as_echo "no" >&6; } + have_gnutls="no" + elif test $pkg_failed = untried; then + have_gnutls="no" + else + GNUTLS_CFLAGS=$pkg_cv_GNUTLS_CFLAGS + GNUTLS_LIBS=$pkg_cv_GNUTLS_LIBS +- { echo "$as_me:$LINENO: result: yes" >&5 +-echo "${ECHO_T}yes" >&6; } ++ { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5 ++$as_echo "yes" >&6; } + have_gnutls="yes" + fi + +- if test "${have_gnutls}" = "yes"; then ++ if test "${have_gnutls}" = "yes"; then : + + + PLUGINS="${PLUGINS} gnutls" +@@ -61872,29 +40277,21 @@ fi + + else + +- if test "${enable_gnutls}" = "yes"; then ++ if test "${enable_gnutls}" = "yes"; then : + +- { { echo "$as_me:$LINENO: error: gnutls not present or too old (version 1.2.9 required)" >&5 +-echo "$as_me: error: gnutls not present or too old (version 1.2.9 required)" >&2;} +- { (exit 1); exit 1; }; } ++ as_fn_error $? "gnutls not present or too old (version 1.2.9 required)" "$LINENO" 5 + + fi + +- + fi +- +- { echo "$as_me:$LINENO: checking for gcry_control in -lgcrypt" >&5 +-echo $ECHO_N "checking for gcry_control in -lgcrypt... $ECHO_C" >&6; } +-if test "${ac_cv_lib_gcrypt_gcry_control+set}" = set; then +- echo $ECHO_N "(cached) $ECHO_C" >&6 ++ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for gcry_control in -lgcrypt" >&5 ++$as_echo_n "checking for gcry_control in -lgcrypt... " >&6; } ++if ${ac_cv_lib_gcrypt_gcry_control+:} false; then : ++ $as_echo_n "(cached) " >&6 + else + ac_check_lib_save_LIBS=$LIBS + LIBS="-lgcrypt $LIBS" +-cat >conftest.$ac_ext <<_ACEOF +-/* confdefs.h. */ +-_ACEOF +-cat confdefs.h >>conftest.$ac_ext +-cat >>conftest.$ac_ext <<_ACEOF ++cat confdefs.h - <<_ACEOF >conftest.$ac_ext + /* end confdefs.h. */ + + /* Override any GCC internal prototype to avoid an error. +@@ -61912,39 +40309,18 @@ return gcry_control (); + return 0; + } + _ACEOF +-rm -f conftest.$ac_objext conftest$ac_exeext +-if { (ac_try="$ac_link" +-case "(($ac_try" in +- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; +- *) ac_try_echo=$ac_try;; +-esac +-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 +- (eval "$ac_link") 2>conftest.er1 +- ac_status=$? +- grep -v '^ *+' conftest.er1 >conftest.err +- rm -f conftest.er1 +- cat conftest.err >&5 +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); } && { +- test -z "$ac_c_werror_flag" || +- test ! -s conftest.err +- } && test -s conftest$ac_exeext && +- $as_test_x conftest$ac_exeext; then ++if ac_fn_c_try_link "$LINENO"; then : + ac_cv_lib_gcrypt_gcry_control=yes + else +- echo "$as_me: failed program was:" >&5 +-sed 's/^/| /' conftest.$ac_ext >&5 +- +- ac_cv_lib_gcrypt_gcry_control=no ++ ac_cv_lib_gcrypt_gcry_control=no + fi +- +-rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ +- conftest$ac_exeext conftest.$ac_ext ++rm -f core conftest.err conftest.$ac_objext \ ++ conftest$ac_exeext conftest.$ac_ext + LIBS=$ac_check_lib_save_LIBS + fi +-{ echo "$as_me:$LINENO: result: $ac_cv_lib_gcrypt_gcry_control" >&5 +-echo "${ECHO_T}$ac_cv_lib_gcrypt_gcry_control" >&6; } +-if test $ac_cv_lib_gcrypt_gcry_control = yes; then ++{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_gcrypt_gcry_control" >&5 ++$as_echo "$ac_cv_lib_gcrypt_gcry_control" >&6; } ++if test "x$ac_cv_lib_gcrypt_gcry_control" = xyes; then : + + + for element in gnutls; do +@@ -61960,9 +40336,8 @@ fi + + + +- + # Check whether --with-words was given. +-if test "${with_words+set}" = set; then ++if test "${with_words+set}" = set; then : + withval=$with_words; + fi + +@@ -61974,10 +40349,10 @@ fi + ac_cv_c_bigendian=no + ;; + *) +- { echo "$as_me:$LINENO: checking whether the byte order is big-endian" >&5 +-echo $ECHO_N "checking whether the byte order is big-endian... $ECHO_C" >&6; } +-if test "${ac_cv_c_bigendian+set}" = set; then +- echo $ECHO_N "(cached) $ECHO_C" >&6 ++ { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether the byte order is big-endian" >&5 ++$as_echo_n "checking whether the byte order is big-endian... " >&6; } ++if ${ac_cv_c_bigendian+:} false; then : ++ $as_echo_n "(cached) " >&6 + else + ac_cv_c_bigendian="unknown" + cat >conftest.c <&5 +-echo "${ECHO_T}$ac_cv_c_bigendian" >&6; } ++{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_c_bigendian" >&5 ++$as_echo "$ac_cv_c_bigendian" >&6; } + if test "${ac_cv_c_bigendian}" = "unknown" + then +- { { echo "$as_me:$LINENO: error: Could not guess endianness, please use --with-words" >&5 +-echo "$as_me: error: Could not guess endianness, please use --with-words" >&2;} +- { (exit 1); exit 1; }; } ++ as_fn_error $? "Could not guess endianness, please use --with-words" "$LINENO" 5 + fi + ;; + esac + if test "${ac_cv_c_bigendian}" = "yes" + then + +-cat >>confdefs.h <<\_ACEOF +-#define WORDS_BIGENDIAN 1 +-_ACEOF ++$as_echo "#define WORDS_BIGENDIAN 1" >>confdefs.h + + fi + + loader=false + # Check whether --enable-loader was given. +-if test "${enable_loader+set}" = set; then ++if test "${enable_loader+set}" = set; then : + enableval=$enable_loader; + fi + +@@ -62042,7 +40413,7 @@ else + LOADER_FALSE= + fi + +-if test "${enable_loader}" = "yes"; then ++if test "${enable_loader}" = "yes"; then : + + PLUGINS="${PLUGINS} dmo quicktime" + +@@ -62085,16 +40456,15 @@ if test "${enable_loader}" = "yes"; then + + fi + +- + activex=false + # Check whether --enable-activex was given. +-if test "${enable_activex+set}" = set; then ++if test "${enable_activex+set}" = set; then : + enableval=$enable_activex; + fi + + + # Check whether --with-wine-sdk-path was given. +-if test "${with_wine_sdk_path+set}" = set; then ++if test "${with_wine_sdk_path+set}" = set; then : + withval=$with_wine_sdk_path; + fi + +@@ -62106,10 +40476,10 @@ then + do + # Extract the first word of "$ac_prog", so it can be a program name with args. + set dummy $ac_prog; ac_word=$2 +-{ echo "$as_me:$LINENO: checking for $ac_word" >&5 +-echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6; } +-if test "${ac_cv_prog_MIDL+set}" = set; then +- echo $ECHO_N "(cached) $ECHO_C" >&6 ++{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 ++$as_echo_n "checking for $ac_word... " >&6; } ++if ${ac_cv_prog_MIDL+:} false; then : ++ $as_echo_n "(cached) " >&6 + else + if test -n "$MIDL"; then + ac_cv_prog_MIDL="$MIDL" # Let the user override the test. +@@ -62119,25 +40489,25 @@ for as_dir in $PATH + do + IFS=$as_save_IFS + test -z "$as_dir" && as_dir=. +- for ac_exec_ext in '' $ac_executable_extensions; do +- if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then ++ for ac_exec_ext in '' $ac_executable_extensions; do ++ if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then + ac_cv_prog_MIDL="$ac_prog" +- echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 ++ $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 + break 2 + fi + done +-done ++ done + IFS=$as_save_IFS + + fi + fi + MIDL=$ac_cv_prog_MIDL + if test -n "$MIDL"; then +- { echo "$as_me:$LINENO: result: $MIDL" >&5 +-echo "${ECHO_T}$MIDL" >&6; } ++ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $MIDL" >&5 ++$as_echo "$MIDL" >&6; } + else +- { echo "$as_me:$LINENO: result: no" >&5 +-echo "${ECHO_T}no" >&6; } ++ { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 ++$as_echo "no" >&6; } + fi + + +@@ -62150,10 +40520,10 @@ test -n "$MIDL" || MIDL="no" + WINE_SDK_PATH=${with_wine_sdk_path} + # Extract the first word of "widl", so it can be a program name with args. + set dummy widl; ac_word=$2 +-{ echo "$as_me:$LINENO: checking for $ac_word" >&5 +-echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6; } +-if test "${ac_cv_path_WIDL+set}" = set; then +- echo $ECHO_N "(cached) $ECHO_C" >&6 ++{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 ++$as_echo_n "checking for $ac_word... " >&6; } ++if ${ac_cv_path_WIDL+:} false; then : ++ $as_echo_n "(cached) " >&6 + else + case $WIDL in + [\\/]* | ?:[\\/]*) +@@ -62166,14 +40536,14 @@ for as_dir in $as_dummy + do + IFS=$as_save_IFS + test -z "$as_dir" && as_dir=. +- for ac_exec_ext in '' $ac_executable_extensions; do +- if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then ++ for ac_exec_ext in '' $ac_executable_extensions; do ++ if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then + ac_cv_path_WIDL="$as_dir/$ac_word$ac_exec_ext" +- echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 ++ $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 + break 2 + fi + done +-done ++ done + IFS=$as_save_IFS + + test -z "$ac_cv_path_WIDL" && ac_cv_path_WIDL="no" +@@ -62182,11 +40552,11 @@ esac + fi + WIDL=$ac_cv_path_WIDL + if test -n "$WIDL"; then +- { echo "$as_me:$LINENO: result: $WIDL" >&5 +-echo "${ECHO_T}$WIDL" >&6; } ++ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $WIDL" >&5 ++$as_echo "$WIDL" >&6; } + else +- { echo "$as_me:$LINENO: result: no" >&5 +-echo "${ECHO_T}no" >&6; } ++ { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 ++$as_echo "no" >&6; } + fi + + +@@ -62199,141 +40569,13 @@ ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' + ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' + ac_compiler_gnu=$ac_cv_cxx_compiler_gnu + +- +- +-for ac_header in ole2.h olectl.h +-do +-as_ac_Header=`echo "ac_cv_header_$ac_header" | $as_tr_sh` +-if { as_var=$as_ac_Header; eval "test \"\${$as_var+set}\" = set"; }; then +- { echo "$as_me:$LINENO: checking for $ac_header" >&5 +-echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6; } +-if { as_var=$as_ac_Header; eval "test \"\${$as_var+set}\" = set"; }; then +- echo $ECHO_N "(cached) $ECHO_C" >&6 +-fi +-ac_res=`eval echo '${'$as_ac_Header'}'` +- { echo "$as_me:$LINENO: result: $ac_res" >&5 +-echo "${ECHO_T}$ac_res" >&6; } +-else +- # Is the header compilable? +-{ echo "$as_me:$LINENO: checking $ac_header usability" >&5 +-echo $ECHO_N "checking $ac_header usability... $ECHO_C" >&6; } +-cat >conftest.$ac_ext <<_ACEOF +-/* confdefs.h. */ +-_ACEOF +-cat confdefs.h >>conftest.$ac_ext +-cat >>conftest.$ac_ext <<_ACEOF +-/* end confdefs.h. */ +-$ac_includes_default +-#include <$ac_header> +-_ACEOF +-rm -f conftest.$ac_objext +-if { (ac_try="$ac_compile" +-case "(($ac_try" in +- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; +- *) ac_try_echo=$ac_try;; +-esac +-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 +- (eval "$ac_compile") 2>conftest.er1 +- ac_status=$? +- grep -v '^ *+' conftest.er1 >conftest.err +- rm -f conftest.er1 +- cat conftest.err >&5 +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); } && { +- test -z "$ac_cxx_werror_flag" || +- test ! -s conftest.err +- } && test -s conftest.$ac_objext; then +- ac_header_compiler=yes +-else +- echo "$as_me: failed program was:" >&5 +-sed 's/^/| /' conftest.$ac_ext >&5 +- +- ac_header_compiler=no +-fi +- +-rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext +-{ echo "$as_me:$LINENO: result: $ac_header_compiler" >&5 +-echo "${ECHO_T}$ac_header_compiler" >&6; } +- +-# Is the header present? +-{ echo "$as_me:$LINENO: checking $ac_header presence" >&5 +-echo $ECHO_N "checking $ac_header presence... $ECHO_C" >&6; } +-cat >conftest.$ac_ext <<_ACEOF +-/* confdefs.h. */ +-_ACEOF +-cat confdefs.h >>conftest.$ac_ext +-cat >>conftest.$ac_ext <<_ACEOF +-/* end confdefs.h. */ +-#include <$ac_header> +-_ACEOF +-if { (ac_try="$ac_cpp conftest.$ac_ext" +-case "(($ac_try" in +- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; +- *) ac_try_echo=$ac_try;; +-esac +-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 +- (eval "$ac_cpp conftest.$ac_ext") 2>conftest.er1 +- ac_status=$? +- grep -v '^ *+' conftest.er1 >conftest.err +- rm -f conftest.er1 +- cat conftest.err >&5 +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); } >/dev/null && { +- test -z "$ac_cxx_preproc_warn_flag$ac_cxx_werror_flag" || +- test ! -s conftest.err +- }; then +- ac_header_preproc=yes +-else +- echo "$as_me: failed program was:" >&5 +-sed 's/^/| /' conftest.$ac_ext >&5 +- +- ac_header_preproc=no +-fi +- +-rm -f conftest.err conftest.$ac_ext +-{ echo "$as_me:$LINENO: result: $ac_header_preproc" >&5 +-echo "${ECHO_T}$ac_header_preproc" >&6; } +- +-# So? What about this header? +-case $ac_header_compiler:$ac_header_preproc:$ac_cxx_preproc_warn_flag in +- yes:no: ) +- { echo "$as_me:$LINENO: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&5 +-echo "$as_me: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&2;} +- { echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the compiler's result" >&5 +-echo "$as_me: WARNING: $ac_header: proceeding with the compiler's result" >&2;} +- ac_header_preproc=yes +- ;; +- no:yes:* ) +- { echo "$as_me:$LINENO: WARNING: $ac_header: present but cannot be compiled" >&5 +-echo "$as_me: WARNING: $ac_header: present but cannot be compiled" >&2;} +- { echo "$as_me:$LINENO: WARNING: $ac_header: check for missing prerequisite headers?" >&5 +-echo "$as_me: WARNING: $ac_header: check for missing prerequisite headers?" >&2;} +- { echo "$as_me:$LINENO: WARNING: $ac_header: see the Autoconf documentation" >&5 +-echo "$as_me: WARNING: $ac_header: see the Autoconf documentation" >&2;} +- { echo "$as_me:$LINENO: WARNING: $ac_header: section \"Present But Cannot Be Compiled\"" >&5 +-echo "$as_me: WARNING: $ac_header: section \"Present But Cannot Be Compiled\"" >&2;} +- { echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the preprocessor's result" >&5 +-echo "$as_me: WARNING: $ac_header: proceeding with the preprocessor's result" >&2;} +- { echo "$as_me:$LINENO: WARNING: $ac_header: in the future, the compiler will take precedence" >&5 +-echo "$as_me: WARNING: $ac_header: in the future, the compiler will take precedence" >&2;} +- +- ;; +-esac +-{ echo "$as_me:$LINENO: checking for $ac_header" >&5 +-echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6; } +-if { as_var=$as_ac_Header; eval "test \"\${$as_var+set}\" = set"; }; then +- echo $ECHO_N "(cached) $ECHO_C" >&6 +-else +- eval "$as_ac_Header=\$ac_header_preproc" +-fi +-ac_res=`eval echo '${'$as_ac_Header'}'` +- { echo "$as_me:$LINENO: result: $ac_res" >&5 +-echo "${ECHO_T}$ac_res" >&6; } +- +-fi +-if test `eval echo '${'$as_ac_Header'}'` = yes; then ++ for ac_header in ole2.h olectl.h ++do : ++ as_ac_Header=`$as_echo "ac_cv_header_$ac_header" | $as_tr_sh` ++ac_fn_cxx_check_header_mongrel "$LINENO" "$ac_header" "$as_ac_Header" "$ac_includes_default" ++if eval test \"x\$"$as_ac_Header"\" = x"yes"; then : + cat >>confdefs.h <<_ACEOF +-#define `echo "HAVE_$ac_header" | $as_tr_cpp` 1 ++#define `$as_echo "HAVE_$ac_header" | $as_tr_cpp` 1 + _ACEOF + + for element in activex; do +@@ -62353,61 +40595,16 @@ _ACEOF + am_modules_with_ldflags="${am_modules_with_ldflags} ${element}" + done + +- +-for ac_header in objsafe.h +-do +-as_ac_Header=`echo "ac_cv_header_$ac_header" | $as_tr_sh` +-{ echo "$as_me:$LINENO: checking for $ac_header" >&5 +-echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6; } +-if { as_var=$as_ac_Header; eval "test \"\${$as_var+set}\" = set"; }; then +- echo $ECHO_N "(cached) $ECHO_C" >&6 +-else +- cat >conftest.$ac_ext <<_ACEOF +-/* confdefs.h. */ +-_ACEOF +-cat confdefs.h >>conftest.$ac_ext +-cat >>conftest.$ac_ext <<_ACEOF +-/* end confdefs.h. */ +-#if HAVE_OLE2_H ++ for ac_header in objsafe.h ++do : ++ ac_fn_cxx_check_header_compile "$LINENO" "objsafe.h" "ac_cv_header_objsafe_h" "#if HAVE_OLE2_H + # include + #endif + +- +-#include <$ac_header> +-_ACEOF +-rm -f conftest.$ac_objext +-if { (ac_try="$ac_compile" +-case "(($ac_try" in +- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; +- *) ac_try_echo=$ac_try;; +-esac +-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 +- (eval "$ac_compile") 2>conftest.er1 +- ac_status=$? +- grep -v '^ *+' conftest.er1 >conftest.err +- rm -f conftest.er1 +- cat conftest.err >&5 +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); } && { +- test -z "$ac_cxx_werror_flag" || +- test ! -s conftest.err +- } && test -s conftest.$ac_objext; then +- eval "$as_ac_Header=yes" +-else +- echo "$as_me: failed program was:" >&5 +-sed 's/^/| /' conftest.$ac_ext >&5 +- +- eval "$as_ac_Header=no" +-fi +- +-rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext +-fi +-ac_res=`eval echo '${'$as_ac_Header'}'` +- { echo "$as_me:$LINENO: result: $ac_res" >&5 +-echo "${ECHO_T}$ac_res" >&6; } +-if test `eval echo '${'$as_ac_Header'}'` = yes; then ++" ++if test "x$ac_cv_header_objsafe_h" = xyes; then : + cat >>confdefs.h <<_ACEOF +-#define `echo "HAVE_$ac_header" | $as_tr_cpp` 1 ++#define HAVE_OBJSAFE_H 1 + _ACEOF + + for element in activex; do +@@ -62422,9 +40619,7 @@ done + activex=: + + else +- { { echo "$as_me:$LINENO: error: required OLE headers are missing from your system" >&5 +-echo "$as_me: error: required OLE headers are missing from your system" >&2;} +- { (exit 1); exit 1; }; } ++ as_fn_error $? "required OLE headers are missing from your system" "$LINENO" 5 + + fi + +@@ -62473,13 +40668,13 @@ fi + + mozilla=false + # Check whether --enable-mozilla was given. +-if test "${enable_mozilla+set}" = set; then ++if test "${enable_mozilla+set}" = set; then : + enableval=$enable_mozilla; + fi + + + # Check whether --with-mozilla-sdk-path was given. +-if test "${with_mozilla_sdk_path+set}" = set; then ++if test "${with_mozilla_sdk_path+set}" = set; then : + withval=$with_mozilla_sdk_path; + fi + +@@ -62497,19 +40692,19 @@ then + then + + pkg_failed=no +-{ echo "$as_me:$LINENO: checking for FIREFOX" >&5 +-echo $ECHO_N "checking for FIREFOX... $ECHO_C" >&6; } ++{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for FIREFOX" >&5 ++$as_echo_n "checking for FIREFOX... " >&6; } + + if test -n "$PKG_CONFIG"; then + if test -n "$FIREFOX_CFLAGS"; then + pkg_cv_FIREFOX_CFLAGS="$FIREFOX_CFLAGS" + else + if test -n "$PKG_CONFIG" && \ +- { (echo "$as_me:$LINENO: \$PKG_CONFIG --exists --print-errors \"firefox-plugin\"") >&5 ++ { { $as_echo "$as_me:${as_lineno-$LINENO}: \$PKG_CONFIG --exists --print-errors \"firefox-plugin\""; } >&5 + ($PKG_CONFIG --exists --print-errors "firefox-plugin") 2>&5 + ac_status=$? +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); }; then ++ $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 ++ test $ac_status = 0; }; then + pkg_cv_FIREFOX_CFLAGS=`$PKG_CONFIG --cflags "firefox-plugin" 2>/dev/null` + else + pkg_failed=yes +@@ -62523,11 +40718,11 @@ if test -n "$PKG_CONFIG"; then + pkg_cv_FIREFOX_LIBS="$FIREFOX_LIBS" + else + if test -n "$PKG_CONFIG" && \ +- { (echo "$as_me:$LINENO: \$PKG_CONFIG --exists --print-errors \"firefox-plugin\"") >&5 ++ { { $as_echo "$as_me:${as_lineno-$LINENO}: \$PKG_CONFIG --exists --print-errors \"firefox-plugin\""; } >&5 + ($PKG_CONFIG --exists --print-errors "firefox-plugin") 2>&5 + ac_status=$? +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); }; then ++ $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 ++ test $ac_status = 0; }; then + pkg_cv_FIREFOX_LIBS=`$PKG_CONFIG --libs "firefox-plugin" 2>/dev/null` + else + pkg_failed=yes +@@ -62554,15 +40749,15 @@ fi + # Put the nasty error message in config.log where it belongs + echo "$FIREFOX_PKG_ERRORS" >&5 + +- { echo "$as_me:$LINENO: result: no" >&5 +-echo "${ECHO_T}no" >&6; } ++ { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 ++$as_echo "no" >&6; } + + # Extract the first word of "mozilla-config", so it can be a program name with args. + set dummy mozilla-config; ac_word=$2 +-{ echo "$as_me:$LINENO: checking for $ac_word" >&5 +-echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6; } +-if test "${ac_cv_path_MOZILLA_CONFIG+set}" = set; then +- echo $ECHO_N "(cached) $ECHO_C" >&6 ++{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 ++$as_echo_n "checking for $ac_word... " >&6; } ++if ${ac_cv_path_MOZILLA_CONFIG+:} false; then : ++ $as_echo_n "(cached) " >&6 + else + case $MOZILLA_CONFIG in + [\\/]* | ?:[\\/]*) +@@ -62574,14 +40769,14 @@ for as_dir in $PATH + do + IFS=$as_save_IFS + test -z "$as_dir" && as_dir=. +- for ac_exec_ext in '' $ac_executable_extensions; do +- if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then ++ for ac_exec_ext in '' $ac_executable_extensions; do ++ if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then + ac_cv_path_MOZILLA_CONFIG="$as_dir/$ac_word$ac_exec_ext" +- echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 ++ $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 + break 2 + fi + done +-done ++ done + IFS=$as_save_IFS + + test -z "$ac_cv_path_MOZILLA_CONFIG" && ac_cv_path_MOZILLA_CONFIG="no" +@@ -62590,11 +40785,11 @@ esac + fi + MOZILLA_CONFIG=$ac_cv_path_MOZILLA_CONFIG + if test -n "$MOZILLA_CONFIG"; then +- { echo "$as_me:$LINENO: result: $MOZILLA_CONFIG" >&5 +-echo "${ECHO_T}$MOZILLA_CONFIG" >&6; } ++ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $MOZILLA_CONFIG" >&5 ++$as_echo "$MOZILLA_CONFIG" >&6; } + else +- { echo "$as_me:$LINENO: result: no" >&5 +-echo "${ECHO_T}no" >&6; } ++ { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 ++$as_echo "no" >&6; } + fi + + +@@ -62602,10 +40797,10 @@ fi + then + # Extract the first word of "seamonkey-config", so it can be a program name with args. + set dummy seamonkey-config; ac_word=$2 +-{ echo "$as_me:$LINENO: checking for $ac_word" >&5 +-echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6; } +-if test "${ac_cv_path_SEAMONKEY_CONFIG+set}" = set; then +- echo $ECHO_N "(cached) $ECHO_C" >&6 ++{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 ++$as_echo_n "checking for $ac_word... " >&6; } ++if ${ac_cv_path_SEAMONKEY_CONFIG+:} false; then : ++ $as_echo_n "(cached) " >&6 + else + case $SEAMONKEY_CONFIG in + [\\/]* | ?:[\\/]*) +@@ -62617,14 +40812,14 @@ for as_dir in $PATH + do + IFS=$as_save_IFS + test -z "$as_dir" && as_dir=. +- for ac_exec_ext in '' $ac_executable_extensions; do +- if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then ++ for ac_exec_ext in '' $ac_executable_extensions; do ++ if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then + ac_cv_path_SEAMONKEY_CONFIG="$as_dir/$ac_word$ac_exec_ext" +- echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 ++ $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 + break 2 + fi + done +-done ++ done + IFS=$as_save_IFS + + test -z "$ac_cv_path_SEAMONKEY_CONFIG" && ac_cv_path_SEAMONKEY_CONFIG="no" +@@ -62633,11 +40828,11 @@ esac + fi + SEAMONKEY_CONFIG=$ac_cv_path_SEAMONKEY_CONFIG + if test -n "$SEAMONKEY_CONFIG"; then +- { echo "$as_me:$LINENO: result: $SEAMONKEY_CONFIG" >&5 +-echo "${ECHO_T}$SEAMONKEY_CONFIG" >&6; } ++ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $SEAMONKEY_CONFIG" >&5 ++$as_echo "$SEAMONKEY_CONFIG" >&6; } + else +- { echo "$as_me:$LINENO: result: no" >&5 +-echo "${ECHO_T}no" >&6; } ++ { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 ++$as_echo "no" >&6; } + fi + + +@@ -62645,10 +40840,10 @@ fi + then + # Extract the first word of "xulrunner-config", so it can be a program name with args. + set dummy xulrunner-config; ac_word=$2 +-{ echo "$as_me:$LINENO: checking for $ac_word" >&5 +-echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6; } +-if test "${ac_cv_path_XULRUNNER_CONFIG+set}" = set; then +- echo $ECHO_N "(cached) $ECHO_C" >&6 ++{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 ++$as_echo_n "checking for $ac_word... " >&6; } ++if ${ac_cv_path_XULRUNNER_CONFIG+:} false; then : ++ $as_echo_n "(cached) " >&6 + else + case $XULRUNNER_CONFIG in + [\\/]* | ?:[\\/]*) +@@ -62660,14 +40855,14 @@ for as_dir in $PATH + do + IFS=$as_save_IFS + test -z "$as_dir" && as_dir=. +- for ac_exec_ext in '' $ac_executable_extensions; do +- if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then ++ for ac_exec_ext in '' $ac_executable_extensions; do ++ if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then + ac_cv_path_XULRUNNER_CONFIG="$as_dir/$ac_word$ac_exec_ext" +- echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 ++ $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 + break 2 + fi + done +-done ++ done + IFS=$as_save_IFS + + test -z "$ac_cv_path_XULRUNNER_CONFIG" && ac_cv_path_XULRUNNER_CONFIG="no" +@@ -62676,19 +40871,17 @@ esac + fi + XULRUNNER_CONFIG=$ac_cv_path_XULRUNNER_CONFIG + if test -n "$XULRUNNER_CONFIG"; then +- { echo "$as_me:$LINENO: result: $XULRUNNER_CONFIG" >&5 +-echo "${ECHO_T}$XULRUNNER_CONFIG" >&6; } ++ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $XULRUNNER_CONFIG" >&5 ++$as_echo "$XULRUNNER_CONFIG" >&6; } + else +- { echo "$as_me:$LINENO: result: no" >&5 +-echo "${ECHO_T}no" >&6; } ++ { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 ++$as_echo "no" >&6; } + fi + + + if test "${XULRUNNER_CONFIG}" = "no" + then +- { { echo "$as_me:$LINENO: error: Please install the Mozilla development tools, mozilla-config was not found." >&5 +-echo "$as_me: error: Please install the Mozilla development tools, mozilla-config was not found." >&2;} +- { (exit 1); exit 1; }; } ++ as_fn_error $? "Please install the Mozilla development tools, mozilla-config was not found." "$LINENO" 5 + else + have_xul=true + MOZILLA_CONFIG="${XULRUNNER_CONFIG}" +@@ -62703,10 +40896,10 @@ elif test $pkg_failed = untried; then + + # Extract the first word of "mozilla-config", so it can be a program name with args. + set dummy mozilla-config; ac_word=$2 +-{ echo "$as_me:$LINENO: checking for $ac_word" >&5 +-echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6; } +-if test "${ac_cv_path_MOZILLA_CONFIG+set}" = set; then +- echo $ECHO_N "(cached) $ECHO_C" >&6 ++{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 ++$as_echo_n "checking for $ac_word... " >&6; } ++if ${ac_cv_path_MOZILLA_CONFIG+:} false; then : ++ $as_echo_n "(cached) " >&6 + else + case $MOZILLA_CONFIG in + [\\/]* | ?:[\\/]*) +@@ -62718,14 +40911,14 @@ for as_dir in $PATH + do + IFS=$as_save_IFS + test -z "$as_dir" && as_dir=. +- for ac_exec_ext in '' $ac_executable_extensions; do +- if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then ++ for ac_exec_ext in '' $ac_executable_extensions; do ++ if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then + ac_cv_path_MOZILLA_CONFIG="$as_dir/$ac_word$ac_exec_ext" +- echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 ++ $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 + break 2 + fi + done +-done ++ done + IFS=$as_save_IFS + + test -z "$ac_cv_path_MOZILLA_CONFIG" && ac_cv_path_MOZILLA_CONFIG="no" +@@ -62734,11 +40927,11 @@ esac + fi + MOZILLA_CONFIG=$ac_cv_path_MOZILLA_CONFIG + if test -n "$MOZILLA_CONFIG"; then +- { echo "$as_me:$LINENO: result: $MOZILLA_CONFIG" >&5 +-echo "${ECHO_T}$MOZILLA_CONFIG" >&6; } ++ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $MOZILLA_CONFIG" >&5 ++$as_echo "$MOZILLA_CONFIG" >&6; } + else +- { echo "$as_me:$LINENO: result: no" >&5 +-echo "${ECHO_T}no" >&6; } ++ { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 ++$as_echo "no" >&6; } + fi + + +@@ -62746,10 +40939,10 @@ fi + then + # Extract the first word of "seamonkey-config", so it can be a program name with args. + set dummy seamonkey-config; ac_word=$2 +-{ echo "$as_me:$LINENO: checking for $ac_word" >&5 +-echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6; } +-if test "${ac_cv_path_SEAMONKEY_CONFIG+set}" = set; then +- echo $ECHO_N "(cached) $ECHO_C" >&6 ++{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 ++$as_echo_n "checking for $ac_word... " >&6; } ++if ${ac_cv_path_SEAMONKEY_CONFIG+:} false; then : ++ $as_echo_n "(cached) " >&6 + else + case $SEAMONKEY_CONFIG in + [\\/]* | ?:[\\/]*) +@@ -62761,14 +40954,14 @@ for as_dir in $PATH + do + IFS=$as_save_IFS + test -z "$as_dir" && as_dir=. +- for ac_exec_ext in '' $ac_executable_extensions; do +- if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then ++ for ac_exec_ext in '' $ac_executable_extensions; do ++ if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then + ac_cv_path_SEAMONKEY_CONFIG="$as_dir/$ac_word$ac_exec_ext" +- echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 ++ $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 + break 2 + fi + done +-done ++ done + IFS=$as_save_IFS + + test -z "$ac_cv_path_SEAMONKEY_CONFIG" && ac_cv_path_SEAMONKEY_CONFIG="no" +@@ -62777,11 +40970,11 @@ esac + fi + SEAMONKEY_CONFIG=$ac_cv_path_SEAMONKEY_CONFIG + if test -n "$SEAMONKEY_CONFIG"; then +- { echo "$as_me:$LINENO: result: $SEAMONKEY_CONFIG" >&5 +-echo "${ECHO_T}$SEAMONKEY_CONFIG" >&6; } ++ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $SEAMONKEY_CONFIG" >&5 ++$as_echo "$SEAMONKEY_CONFIG" >&6; } + else +- { echo "$as_me:$LINENO: result: no" >&5 +-echo "${ECHO_T}no" >&6; } ++ { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 ++$as_echo "no" >&6; } + fi + + +@@ -62789,10 +40982,10 @@ fi + then + # Extract the first word of "xulrunner-config", so it can be a program name with args. + set dummy xulrunner-config; ac_word=$2 +-{ echo "$as_me:$LINENO: checking for $ac_word" >&5 +-echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6; } +-if test "${ac_cv_path_XULRUNNER_CONFIG+set}" = set; then +- echo $ECHO_N "(cached) $ECHO_C" >&6 ++{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 ++$as_echo_n "checking for $ac_word... " >&6; } ++if ${ac_cv_path_XULRUNNER_CONFIG+:} false; then : ++ $as_echo_n "(cached) " >&6 + else + case $XULRUNNER_CONFIG in + [\\/]* | ?:[\\/]*) +@@ -62804,14 +40997,14 @@ for as_dir in $PATH + do + IFS=$as_save_IFS + test -z "$as_dir" && as_dir=. +- for ac_exec_ext in '' $ac_executable_extensions; do +- if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then ++ for ac_exec_ext in '' $ac_executable_extensions; do ++ if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then + ac_cv_path_XULRUNNER_CONFIG="$as_dir/$ac_word$ac_exec_ext" +- echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 ++ $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 + break 2 + fi + done +-done ++ done + IFS=$as_save_IFS + + test -z "$ac_cv_path_XULRUNNER_CONFIG" && ac_cv_path_XULRUNNER_CONFIG="no" +@@ -62820,19 +41013,17 @@ esac + fi + XULRUNNER_CONFIG=$ac_cv_path_XULRUNNER_CONFIG + if test -n "$XULRUNNER_CONFIG"; then +- { echo "$as_me:$LINENO: result: $XULRUNNER_CONFIG" >&5 +-echo "${ECHO_T}$XULRUNNER_CONFIG" >&6; } ++ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $XULRUNNER_CONFIG" >&5 ++$as_echo "$XULRUNNER_CONFIG" >&6; } + else +- { echo "$as_me:$LINENO: result: no" >&5 +-echo "${ECHO_T}no" >&6; } ++ { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 ++$as_echo "no" >&6; } + fi + + + if test "${XULRUNNER_CONFIG}" = "no" + then +- { { echo "$as_me:$LINENO: error: Please install the Mozilla development tools, mozilla-config was not found." >&5 +-echo "$as_me: error: Please install the Mozilla development tools, mozilla-config was not found." >&2;} +- { (exit 1); exit 1; }; } ++ as_fn_error $? "Please install the Mozilla development tools, mozilla-config was not found." "$LINENO" 5 + else + have_xul=true + MOZILLA_CONFIG="${XULRUNNER_CONFIG}" +@@ -62846,24 +41037,24 @@ echo "$as_me: error: Please install the Mozilla development tools, mozilla-confi + else + FIREFOX_CFLAGS=$pkg_cv_FIREFOX_CFLAGS + FIREFOX_LIBS=$pkg_cv_FIREFOX_LIBS +- { echo "$as_me:$LINENO: result: yes" >&5 +-echo "${ECHO_T}yes" >&6; } ++ { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5 ++$as_echo "yes" >&6; } + + + pkg_failed=no +-{ echo "$as_me:$LINENO: checking for FIREFOX_XPCOM" >&5 +-echo $ECHO_N "checking for FIREFOX_XPCOM... $ECHO_C" >&6; } ++{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for FIREFOX_XPCOM" >&5 ++$as_echo_n "checking for FIREFOX_XPCOM... " >&6; } + + if test -n "$PKG_CONFIG"; then + if test -n "$FIREFOX_XPCOM_CFLAGS"; then + pkg_cv_FIREFOX_XPCOM_CFLAGS="$FIREFOX_XPCOM_CFLAGS" + else + if test -n "$PKG_CONFIG" && \ +- { (echo "$as_me:$LINENO: \$PKG_CONFIG --exists --print-errors \"firefox-xpcom\"") >&5 ++ { { $as_echo "$as_me:${as_lineno-$LINENO}: \$PKG_CONFIG --exists --print-errors \"firefox-xpcom\""; } >&5 + ($PKG_CONFIG --exists --print-errors "firefox-xpcom") 2>&5 + ac_status=$? +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); }; then ++ $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 ++ test $ac_status = 0; }; then + pkg_cv_FIREFOX_XPCOM_CFLAGS=`$PKG_CONFIG --cflags "firefox-xpcom" 2>/dev/null` + else + pkg_failed=yes +@@ -62877,11 +41068,11 @@ if test -n "$PKG_CONFIG"; then + pkg_cv_FIREFOX_XPCOM_LIBS="$FIREFOX_XPCOM_LIBS" + else + if test -n "$PKG_CONFIG" && \ +- { (echo "$as_me:$LINENO: \$PKG_CONFIG --exists --print-errors \"firefox-xpcom\"") >&5 ++ { { $as_echo "$as_me:${as_lineno-$LINENO}: \$PKG_CONFIG --exists --print-errors \"firefox-xpcom\""; } >&5 + ($PKG_CONFIG --exists --print-errors "firefox-xpcom") 2>&5 + ac_status=$? +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); }; then ++ $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 ++ test $ac_status = 0; }; then + pkg_cv_FIREFOX_XPCOM_LIBS=`$PKG_CONFIG --libs "firefox-xpcom" 2>/dev/null` + else + pkg_failed=yes +@@ -62908,24 +41099,24 @@ fi + # Put the nasty error message in config.log where it belongs + echo "$FIREFOX_XPCOM_PKG_ERRORS" >&5 + +- { echo "$as_me:$LINENO: result: no" >&5 +-echo "${ECHO_T}no" >&6; } ++ { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 ++$as_echo "no" >&6; } + + + pkg_failed=no +-{ echo "$as_me:$LINENO: checking for MOZILLA_NSPR" >&5 +-echo $ECHO_N "checking for MOZILLA_NSPR... $ECHO_C" >&6; } ++{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for MOZILLA_NSPR" >&5 ++$as_echo_n "checking for MOZILLA_NSPR... " >&6; } + + if test -n "$PKG_CONFIG"; then + if test -n "$MOZILLA_NSPR_CFLAGS"; then + pkg_cv_MOZILLA_NSPR_CFLAGS="$MOZILLA_NSPR_CFLAGS" + else + if test -n "$PKG_CONFIG" && \ +- { (echo "$as_me:$LINENO: \$PKG_CONFIG --exists --print-errors \"mozilla-nspr\"") >&5 ++ { { $as_echo "$as_me:${as_lineno-$LINENO}: \$PKG_CONFIG --exists --print-errors \"mozilla-nspr\""; } >&5 + ($PKG_CONFIG --exists --print-errors "mozilla-nspr") 2>&5 + ac_status=$? +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); }; then ++ $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 ++ test $ac_status = 0; }; then + pkg_cv_MOZILLA_NSPR_CFLAGS=`$PKG_CONFIG --cflags "mozilla-nspr" 2>/dev/null` + else + pkg_failed=yes +@@ -62939,11 +41130,11 @@ if test -n "$PKG_CONFIG"; then + pkg_cv_MOZILLA_NSPR_LIBS="$MOZILLA_NSPR_LIBS" + else + if test -n "$PKG_CONFIG" && \ +- { (echo "$as_me:$LINENO: \$PKG_CONFIG --exists --print-errors \"mozilla-nspr\"") >&5 ++ { { $as_echo "$as_me:${as_lineno-$LINENO}: \$PKG_CONFIG --exists --print-errors \"mozilla-nspr\""; } >&5 + ($PKG_CONFIG --exists --print-errors "mozilla-nspr") 2>&5 + ac_status=$? +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); }; then ++ $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 ++ test $ac_status = 0; }; then + pkg_cv_MOZILLA_NSPR_LIBS=`$PKG_CONFIG --libs "mozilla-nspr" 2>/dev/null` + else + pkg_failed=yes +@@ -62970,24 +41161,24 @@ fi + # Put the nasty error message in config.log where it belongs + echo "$MOZILLA_NSPR_PKG_ERRORS" >&5 + +- { echo "$as_me:$LINENO: result: no" >&5 +-echo "${ECHO_T}no" >&6; } ++ { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 ++$as_echo "no" >&6; } + + + pkg_failed=no +-{ echo "$as_me:$LINENO: checking for NSPR" >&5 +-echo $ECHO_N "checking for NSPR... $ECHO_C" >&6; } ++{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for NSPR" >&5 ++$as_echo_n "checking for NSPR... " >&6; } + + if test -n "$PKG_CONFIG"; then + if test -n "$NSPR_CFLAGS"; then + pkg_cv_NSPR_CFLAGS="$NSPR_CFLAGS" + else + if test -n "$PKG_CONFIG" && \ +- { (echo "$as_me:$LINENO: \$PKG_CONFIG --exists --print-errors \"nspr\"") >&5 ++ { { $as_echo "$as_me:${as_lineno-$LINENO}: \$PKG_CONFIG --exists --print-errors \"nspr\""; } >&5 + ($PKG_CONFIG --exists --print-errors "nspr") 2>&5 + ac_status=$? +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); }; then ++ $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 ++ test $ac_status = 0; }; then + pkg_cv_NSPR_CFLAGS=`$PKG_CONFIG --cflags "nspr" 2>/dev/null` + else + pkg_failed=yes +@@ -63001,11 +41192,11 @@ if test -n "$PKG_CONFIG"; then + pkg_cv_NSPR_LIBS="$NSPR_LIBS" + else + if test -n "$PKG_CONFIG" && \ +- { (echo "$as_me:$LINENO: \$PKG_CONFIG --exists --print-errors \"nspr\"") >&5 ++ { { $as_echo "$as_me:${as_lineno-$LINENO}: \$PKG_CONFIG --exists --print-errors \"nspr\""; } >&5 + ($PKG_CONFIG --exists --print-errors "nspr") 2>&5 + ac_status=$? +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); }; then ++ $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 ++ test $ac_status = 0; }; then + pkg_cv_NSPR_LIBS=`$PKG_CONFIG --libs "nspr" 2>/dev/null` + else + pkg_failed=yes +@@ -63032,26 +41223,22 @@ fi + # Put the nasty error message in config.log where it belongs + echo "$NSPR_PKG_ERRORS" >&5 + +- { echo "$as_me:$LINENO: result: no" >&5 +-echo "${ECHO_T}no" >&6; } ++ { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 ++$as_echo "no" >&6; } + +- { { echo "$as_me:$LINENO: error: Please install the nspr development tools." >&5 +-echo "$as_me: error: Please install the nspr development tools." >&2;} +- { (exit 1); exit 1; }; } ++ as_fn_error $? "Please install the nspr development tools." "$LINENO" 5 + + + elif test $pkg_failed = untried; then + +- { { echo "$as_me:$LINENO: error: Please install the nspr development tools." >&5 +-echo "$as_me: error: Please install the nspr development tools." >&2;} +- { (exit 1); exit 1; }; } ++ as_fn_error $? "Please install the nspr development tools." "$LINENO" 5 + + + else + NSPR_CFLAGS=$pkg_cv_NSPR_CFLAGS + NSPR_LIBS=$pkg_cv_NSPR_LIBS +- { echo "$as_me:$LINENO: result: yes" >&5 +-echo "${ECHO_T}yes" >&6; } ++ { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5 ++$as_echo "yes" >&6; } + : + fi + +@@ -63060,19 +41247,19 @@ elif test $pkg_failed = untried; then + + + pkg_failed=no +-{ echo "$as_me:$LINENO: checking for NSPR" >&5 +-echo $ECHO_N "checking for NSPR... $ECHO_C" >&6; } ++{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for NSPR" >&5 ++$as_echo_n "checking for NSPR... " >&6; } + + if test -n "$PKG_CONFIG"; then + if test -n "$NSPR_CFLAGS"; then + pkg_cv_NSPR_CFLAGS="$NSPR_CFLAGS" + else + if test -n "$PKG_CONFIG" && \ +- { (echo "$as_me:$LINENO: \$PKG_CONFIG --exists --print-errors \"nspr\"") >&5 ++ { { $as_echo "$as_me:${as_lineno-$LINENO}: \$PKG_CONFIG --exists --print-errors \"nspr\""; } >&5 + ($PKG_CONFIG --exists --print-errors "nspr") 2>&5 + ac_status=$? +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); }; then ++ $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 ++ test $ac_status = 0; }; then + pkg_cv_NSPR_CFLAGS=`$PKG_CONFIG --cflags "nspr" 2>/dev/null` + else + pkg_failed=yes +@@ -63086,11 +41273,11 @@ if test -n "$PKG_CONFIG"; then + pkg_cv_NSPR_LIBS="$NSPR_LIBS" + else + if test -n "$PKG_CONFIG" && \ +- { (echo "$as_me:$LINENO: \$PKG_CONFIG --exists --print-errors \"nspr\"") >&5 ++ { { $as_echo "$as_me:${as_lineno-$LINENO}: \$PKG_CONFIG --exists --print-errors \"nspr\""; } >&5 + ($PKG_CONFIG --exists --print-errors "nspr") 2>&5 + ac_status=$? +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); }; then ++ $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 ++ test $ac_status = 0; }; then + pkg_cv_NSPR_LIBS=`$PKG_CONFIG --libs "nspr" 2>/dev/null` + else + pkg_failed=yes +@@ -63117,26 +41304,22 @@ fi + # Put the nasty error message in config.log where it belongs + echo "$NSPR_PKG_ERRORS" >&5 + +- { echo "$as_me:$LINENO: result: no" >&5 +-echo "${ECHO_T}no" >&6; } ++ { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 ++$as_echo "no" >&6; } + +- { { echo "$as_me:$LINENO: error: Please install the nspr development tools." >&5 +-echo "$as_me: error: Please install the nspr development tools." >&2;} +- { (exit 1); exit 1; }; } ++ as_fn_error $? "Please install the nspr development tools." "$LINENO" 5 + + + elif test $pkg_failed = untried; then + +- { { echo "$as_me:$LINENO: error: Please install the nspr development tools." >&5 +-echo "$as_me: error: Please install the nspr development tools." >&2;} +- { (exit 1); exit 1; }; } ++ as_fn_error $? "Please install the nspr development tools." "$LINENO" 5 + + + else + NSPR_CFLAGS=$pkg_cv_NSPR_CFLAGS + NSPR_LIBS=$pkg_cv_NSPR_LIBS +- { echo "$as_me:$LINENO: result: yes" >&5 +-echo "${ECHO_T}yes" >&6; } ++ { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5 ++$as_echo "yes" >&6; } + : + fi + +@@ -63144,8 +41327,8 @@ fi + else + MOZILLA_NSPR_CFLAGS=$pkg_cv_MOZILLA_NSPR_CFLAGS + MOZILLA_NSPR_LIBS=$pkg_cv_MOZILLA_NSPR_LIBS +- { echo "$as_me:$LINENO: result: yes" >&5 +-echo "${ECHO_T}yes" >&6; } ++ { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5 ++$as_echo "yes" >&6; } + : + fi + +@@ -63153,19 +41336,19 @@ elif test $pkg_failed = untried; then + + + pkg_failed=no +-{ echo "$as_me:$LINENO: checking for MOZILLA_NSPR" >&5 +-echo $ECHO_N "checking for MOZILLA_NSPR... $ECHO_C" >&6; } ++{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for MOZILLA_NSPR" >&5 ++$as_echo_n "checking for MOZILLA_NSPR... " >&6; } + + if test -n "$PKG_CONFIG"; then + if test -n "$MOZILLA_NSPR_CFLAGS"; then + pkg_cv_MOZILLA_NSPR_CFLAGS="$MOZILLA_NSPR_CFLAGS" + else + if test -n "$PKG_CONFIG" && \ +- { (echo "$as_me:$LINENO: \$PKG_CONFIG --exists --print-errors \"mozilla-nspr\"") >&5 ++ { { $as_echo "$as_me:${as_lineno-$LINENO}: \$PKG_CONFIG --exists --print-errors \"mozilla-nspr\""; } >&5 + ($PKG_CONFIG --exists --print-errors "mozilla-nspr") 2>&5 + ac_status=$? +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); }; then ++ $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 ++ test $ac_status = 0; }; then + pkg_cv_MOZILLA_NSPR_CFLAGS=`$PKG_CONFIG --cflags "mozilla-nspr" 2>/dev/null` + else + pkg_failed=yes +@@ -63179,11 +41362,11 @@ if test -n "$PKG_CONFIG"; then + pkg_cv_MOZILLA_NSPR_LIBS="$MOZILLA_NSPR_LIBS" + else + if test -n "$PKG_CONFIG" && \ +- { (echo "$as_me:$LINENO: \$PKG_CONFIG --exists --print-errors \"mozilla-nspr\"") >&5 ++ { { $as_echo "$as_me:${as_lineno-$LINENO}: \$PKG_CONFIG --exists --print-errors \"mozilla-nspr\""; } >&5 + ($PKG_CONFIG --exists --print-errors "mozilla-nspr") 2>&5 + ac_status=$? +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); }; then ++ $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 ++ test $ac_status = 0; }; then + pkg_cv_MOZILLA_NSPR_LIBS=`$PKG_CONFIG --libs "mozilla-nspr" 2>/dev/null` + else + pkg_failed=yes +@@ -63210,24 +41393,24 @@ fi + # Put the nasty error message in config.log where it belongs + echo "$MOZILLA_NSPR_PKG_ERRORS" >&5 + +- { echo "$as_me:$LINENO: result: no" >&5 +-echo "${ECHO_T}no" >&6; } ++ { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 ++$as_echo "no" >&6; } + + + pkg_failed=no +-{ echo "$as_me:$LINENO: checking for NSPR" >&5 +-echo $ECHO_N "checking for NSPR... $ECHO_C" >&6; } ++{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for NSPR" >&5 ++$as_echo_n "checking for NSPR... " >&6; } + + if test -n "$PKG_CONFIG"; then + if test -n "$NSPR_CFLAGS"; then + pkg_cv_NSPR_CFLAGS="$NSPR_CFLAGS" + else + if test -n "$PKG_CONFIG" && \ +- { (echo "$as_me:$LINENO: \$PKG_CONFIG --exists --print-errors \"nspr\"") >&5 ++ { { $as_echo "$as_me:${as_lineno-$LINENO}: \$PKG_CONFIG --exists --print-errors \"nspr\""; } >&5 + ($PKG_CONFIG --exists --print-errors "nspr") 2>&5 + ac_status=$? +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); }; then ++ $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 ++ test $ac_status = 0; }; then + pkg_cv_NSPR_CFLAGS=`$PKG_CONFIG --cflags "nspr" 2>/dev/null` + else + pkg_failed=yes +@@ -63241,11 +41424,11 @@ if test -n "$PKG_CONFIG"; then + pkg_cv_NSPR_LIBS="$NSPR_LIBS" + else + if test -n "$PKG_CONFIG" && \ +- { (echo "$as_me:$LINENO: \$PKG_CONFIG --exists --print-errors \"nspr\"") >&5 ++ { { $as_echo "$as_me:${as_lineno-$LINENO}: \$PKG_CONFIG --exists --print-errors \"nspr\""; } >&5 + ($PKG_CONFIG --exists --print-errors "nspr") 2>&5 + ac_status=$? +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); }; then ++ $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 ++ test $ac_status = 0; }; then + pkg_cv_NSPR_LIBS=`$PKG_CONFIG --libs "nspr" 2>/dev/null` + else + pkg_failed=yes +@@ -63272,26 +41455,22 @@ fi + # Put the nasty error message in config.log where it belongs + echo "$NSPR_PKG_ERRORS" >&5 + +- { echo "$as_me:$LINENO: result: no" >&5 +-echo "${ECHO_T}no" >&6; } ++ { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 ++$as_echo "no" >&6; } + +- { { echo "$as_me:$LINENO: error: Please install the nspr development tools." >&5 +-echo "$as_me: error: Please install the nspr development tools." >&2;} +- { (exit 1); exit 1; }; } ++ as_fn_error $? "Please install the nspr development tools." "$LINENO" 5 + + + elif test $pkg_failed = untried; then + +- { { echo "$as_me:$LINENO: error: Please install the nspr development tools." >&5 +-echo "$as_me: error: Please install the nspr development tools." >&2;} +- { (exit 1); exit 1; }; } ++ as_fn_error $? "Please install the nspr development tools." "$LINENO" 5 + + + else + NSPR_CFLAGS=$pkg_cv_NSPR_CFLAGS + NSPR_LIBS=$pkg_cv_NSPR_LIBS +- { echo "$as_me:$LINENO: result: yes" >&5 +-echo "${ECHO_T}yes" >&6; } ++ { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5 ++$as_echo "yes" >&6; } + : + fi + +@@ -63300,19 +41479,19 @@ elif test $pkg_failed = untried; then + + + pkg_failed=no +-{ echo "$as_me:$LINENO: checking for NSPR" >&5 +-echo $ECHO_N "checking for NSPR... $ECHO_C" >&6; } ++{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for NSPR" >&5 ++$as_echo_n "checking for NSPR... " >&6; } + + if test -n "$PKG_CONFIG"; then + if test -n "$NSPR_CFLAGS"; then + pkg_cv_NSPR_CFLAGS="$NSPR_CFLAGS" + else + if test -n "$PKG_CONFIG" && \ +- { (echo "$as_me:$LINENO: \$PKG_CONFIG --exists --print-errors \"nspr\"") >&5 ++ { { $as_echo "$as_me:${as_lineno-$LINENO}: \$PKG_CONFIG --exists --print-errors \"nspr\""; } >&5 + ($PKG_CONFIG --exists --print-errors "nspr") 2>&5 + ac_status=$? +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); }; then ++ $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 ++ test $ac_status = 0; }; then + pkg_cv_NSPR_CFLAGS=`$PKG_CONFIG --cflags "nspr" 2>/dev/null` + else + pkg_failed=yes +@@ -63326,11 +41505,11 @@ if test -n "$PKG_CONFIG"; then + pkg_cv_NSPR_LIBS="$NSPR_LIBS" + else + if test -n "$PKG_CONFIG" && \ +- { (echo "$as_me:$LINENO: \$PKG_CONFIG --exists --print-errors \"nspr\"") >&5 ++ { { $as_echo "$as_me:${as_lineno-$LINENO}: \$PKG_CONFIG --exists --print-errors \"nspr\""; } >&5 + ($PKG_CONFIG --exists --print-errors "nspr") 2>&5 + ac_status=$? +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); }; then ++ $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 ++ test $ac_status = 0; }; then + pkg_cv_NSPR_LIBS=`$PKG_CONFIG --libs "nspr" 2>/dev/null` + else + pkg_failed=yes +@@ -63357,26 +41536,22 @@ fi + # Put the nasty error message in config.log where it belongs + echo "$NSPR_PKG_ERRORS" >&5 + +- { echo "$as_me:$LINENO: result: no" >&5 +-echo "${ECHO_T}no" >&6; } ++ { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 ++$as_echo "no" >&6; } + +- { { echo "$as_me:$LINENO: error: Please install the nspr development tools." >&5 +-echo "$as_me: error: Please install the nspr development tools." >&2;} +- { (exit 1); exit 1; }; } ++ as_fn_error $? "Please install the nspr development tools." "$LINENO" 5 + + + elif test $pkg_failed = untried; then + +- { { echo "$as_me:$LINENO: error: Please install the nspr development tools." >&5 +-echo "$as_me: error: Please install the nspr development tools." >&2;} +- { (exit 1); exit 1; }; } ++ as_fn_error $? "Please install the nspr development tools." "$LINENO" 5 + + + else + NSPR_CFLAGS=$pkg_cv_NSPR_CFLAGS + NSPR_LIBS=$pkg_cv_NSPR_LIBS +- { echo "$as_me:$LINENO: result: yes" >&5 +-echo "${ECHO_T}yes" >&6; } ++ { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5 ++$as_echo "yes" >&6; } + : + fi + +@@ -63384,154 +41559,26 @@ fi + else + MOZILLA_NSPR_CFLAGS=$pkg_cv_MOZILLA_NSPR_CFLAGS + MOZILLA_NSPR_LIBS=$pkg_cv_MOZILLA_NSPR_LIBS +- { echo "$as_me:$LINENO: result: yes" >&5 +-echo "${ECHO_T}yes" >&6; } ++ { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5 ++$as_echo "yes" >&6; } + : + fi + + else + FIREFOX_XPCOM_CFLAGS=$pkg_cv_FIREFOX_XPCOM_CFLAGS + FIREFOX_XPCOM_LIBS=$pkg_cv_FIREFOX_XPCOM_LIBS +- { echo "$as_me:$LINENO: result: yes" >&5 +-echo "${ECHO_T}yes" >&6; } ++ { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5 ++$as_echo "yes" >&6; } + : + fi + CPPFLAGS="${CPPFLAGS_save} ${FIREFOX_CFLAGS} ${FIREFOX_XPCOM_CFLAGS} ${MOZILLA_NSPR_CFLAGS} ${NSPR_CFLAGS} ${MOZILLA_CPPFLAGS}" + MOZILLA_REQUIRED_HEADERS=1 +- +-for ac_header in mozilla-config.h +-do +-as_ac_Header=`echo "ac_cv_header_$ac_header" | $as_tr_sh` +-if { as_var=$as_ac_Header; eval "test \"\${$as_var+set}\" = set"; }; then +- { echo "$as_me:$LINENO: checking for $ac_header" >&5 +-echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6; } +-if { as_var=$as_ac_Header; eval "test \"\${$as_var+set}\" = set"; }; then +- echo $ECHO_N "(cached) $ECHO_C" >&6 +-fi +-ac_res=`eval echo '${'$as_ac_Header'}'` +- { echo "$as_me:$LINENO: result: $ac_res" >&5 +-echo "${ECHO_T}$ac_res" >&6; } +-else +- # Is the header compilable? +-{ echo "$as_me:$LINENO: checking $ac_header usability" >&5 +-echo $ECHO_N "checking $ac_header usability... $ECHO_C" >&6; } +-cat >conftest.$ac_ext <<_ACEOF +-/* confdefs.h. */ +-_ACEOF +-cat confdefs.h >>conftest.$ac_ext +-cat >>conftest.$ac_ext <<_ACEOF +-/* end confdefs.h. */ +-$ac_includes_default +-#include <$ac_header> +-_ACEOF +-rm -f conftest.$ac_objext +-if { (ac_try="$ac_compile" +-case "(($ac_try" in +- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; +- *) ac_try_echo=$ac_try;; +-esac +-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 +- (eval "$ac_compile") 2>conftest.er1 +- ac_status=$? +- grep -v '^ *+' conftest.er1 >conftest.err +- rm -f conftest.er1 +- cat conftest.err >&5 +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); } && { +- test -z "$ac_cxx_werror_flag" || +- test ! -s conftest.err +- } && test -s conftest.$ac_objext; then +- ac_header_compiler=yes +-else +- echo "$as_me: failed program was:" >&5 +-sed 's/^/| /' conftest.$ac_ext >&5 +- +- ac_header_compiler=no +-fi +- +-rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext +-{ echo "$as_me:$LINENO: result: $ac_header_compiler" >&5 +-echo "${ECHO_T}$ac_header_compiler" >&6; } +- +-# Is the header present? +-{ echo "$as_me:$LINENO: checking $ac_header presence" >&5 +-echo $ECHO_N "checking $ac_header presence... $ECHO_C" >&6; } +-cat >conftest.$ac_ext <<_ACEOF +-/* confdefs.h. */ +-_ACEOF +-cat confdefs.h >>conftest.$ac_ext +-cat >>conftest.$ac_ext <<_ACEOF +-/* end confdefs.h. */ +-#include <$ac_header> +-_ACEOF +-if { (ac_try="$ac_cpp conftest.$ac_ext" +-case "(($ac_try" in +- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; +- *) ac_try_echo=$ac_try;; +-esac +-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 +- (eval "$ac_cpp conftest.$ac_ext") 2>conftest.er1 +- ac_status=$? +- grep -v '^ *+' conftest.er1 >conftest.err +- rm -f conftest.er1 +- cat conftest.err >&5 +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); } >/dev/null && { +- test -z "$ac_cxx_preproc_warn_flag$ac_cxx_werror_flag" || +- test ! -s conftest.err +- }; then +- ac_header_preproc=yes +-else +- echo "$as_me: failed program was:" >&5 +-sed 's/^/| /' conftest.$ac_ext >&5 +- +- ac_header_preproc=no +-fi +- +-rm -f conftest.err conftest.$ac_ext +-{ echo "$as_me:$LINENO: result: $ac_header_preproc" >&5 +-echo "${ECHO_T}$ac_header_preproc" >&6; } +- +-# So? What about this header? +-case $ac_header_compiler:$ac_header_preproc:$ac_cxx_preproc_warn_flag in +- yes:no: ) +- { echo "$as_me:$LINENO: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&5 +-echo "$as_me: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&2;} +- { echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the compiler's result" >&5 +-echo "$as_me: WARNING: $ac_header: proceeding with the compiler's result" >&2;} +- ac_header_preproc=yes +- ;; +- no:yes:* ) +- { echo "$as_me:$LINENO: WARNING: $ac_header: present but cannot be compiled" >&5 +-echo "$as_me: WARNING: $ac_header: present but cannot be compiled" >&2;} +- { echo "$as_me:$LINENO: WARNING: $ac_header: check for missing prerequisite headers?" >&5 +-echo "$as_me: WARNING: $ac_header: check for missing prerequisite headers?" >&2;} +- { echo "$as_me:$LINENO: WARNING: $ac_header: see the Autoconf documentation" >&5 +-echo "$as_me: WARNING: $ac_header: see the Autoconf documentation" >&2;} +- { echo "$as_me:$LINENO: WARNING: $ac_header: section \"Present But Cannot Be Compiled\"" >&5 +-echo "$as_me: WARNING: $ac_header: section \"Present But Cannot Be Compiled\"" >&2;} +- { echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the preprocessor's result" >&5 +-echo "$as_me: WARNING: $ac_header: proceeding with the preprocessor's result" >&2;} +- { echo "$as_me:$LINENO: WARNING: $ac_header: in the future, the compiler will take precedence" >&5 +-echo "$as_me: WARNING: $ac_header: in the future, the compiler will take precedence" >&2;} +- +- ;; +-esac +-{ echo "$as_me:$LINENO: checking for $ac_header" >&5 +-echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6; } +-if { as_var=$as_ac_Header; eval "test \"\${$as_var+set}\" = set"; }; then +- echo $ECHO_N "(cached) $ECHO_C" >&6 +-else +- eval "$as_ac_Header=\$ac_header_preproc" +-fi +-ac_res=`eval echo '${'$as_ac_Header'}'` +- { echo "$as_me:$LINENO: result: $ac_res" >&5 +-echo "${ECHO_T}$ac_res" >&6; } +- +-fi +-if test `eval echo '${'$as_ac_Header'}'` = yes; then ++ for ac_header in mozilla-config.h ++do : ++ ac_fn_cxx_check_header_mongrel "$LINENO" "mozilla-config.h" "ac_cv_header_mozilla_config_h" "$ac_includes_default" ++if test "x$ac_cv_header_mozilla_config_h" = xyes; then : + cat >>confdefs.h <<_ACEOF +-#define `echo "HAVE_$ac_header" | $as_tr_cpp` 1 ++#define HAVE_MOZILLA_CONFIG_H 1 + _ACEOF + + else +@@ -63540,140 +41587,12 @@ fi + + done + +- +-for ac_header in npapi.h +-do +-as_ac_Header=`echo "ac_cv_header_$ac_header" | $as_tr_sh` +-if { as_var=$as_ac_Header; eval "test \"\${$as_var+set}\" = set"; }; then +- { echo "$as_me:$LINENO: checking for $ac_header" >&5 +-echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6; } +-if { as_var=$as_ac_Header; eval "test \"\${$as_var+set}\" = set"; }; then +- echo $ECHO_N "(cached) $ECHO_C" >&6 +-fi +-ac_res=`eval echo '${'$as_ac_Header'}'` +- { echo "$as_me:$LINENO: result: $ac_res" >&5 +-echo "${ECHO_T}$ac_res" >&6; } +-else +- # Is the header compilable? +-{ echo "$as_me:$LINENO: checking $ac_header usability" >&5 +-echo $ECHO_N "checking $ac_header usability... $ECHO_C" >&6; } +-cat >conftest.$ac_ext <<_ACEOF +-/* confdefs.h. */ +-_ACEOF +-cat confdefs.h >>conftest.$ac_ext +-cat >>conftest.$ac_ext <<_ACEOF +-/* end confdefs.h. */ +-$ac_includes_default +-#include <$ac_header> +-_ACEOF +-rm -f conftest.$ac_objext +-if { (ac_try="$ac_compile" +-case "(($ac_try" in +- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; +- *) ac_try_echo=$ac_try;; +-esac +-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 +- (eval "$ac_compile") 2>conftest.er1 +- ac_status=$? +- grep -v '^ *+' conftest.er1 >conftest.err +- rm -f conftest.er1 +- cat conftest.err >&5 +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); } && { +- test -z "$ac_cxx_werror_flag" || +- test ! -s conftest.err +- } && test -s conftest.$ac_objext; then +- ac_header_compiler=yes +-else +- echo "$as_me: failed program was:" >&5 +-sed 's/^/| /' conftest.$ac_ext >&5 +- +- ac_header_compiler=no +-fi +- +-rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext +-{ echo "$as_me:$LINENO: result: $ac_header_compiler" >&5 +-echo "${ECHO_T}$ac_header_compiler" >&6; } +- +-# Is the header present? +-{ echo "$as_me:$LINENO: checking $ac_header presence" >&5 +-echo $ECHO_N "checking $ac_header presence... $ECHO_C" >&6; } +-cat >conftest.$ac_ext <<_ACEOF +-/* confdefs.h. */ +-_ACEOF +-cat confdefs.h >>conftest.$ac_ext +-cat >>conftest.$ac_ext <<_ACEOF +-/* end confdefs.h. */ +-#include <$ac_header> +-_ACEOF +-if { (ac_try="$ac_cpp conftest.$ac_ext" +-case "(($ac_try" in +- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; +- *) ac_try_echo=$ac_try;; +-esac +-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 +- (eval "$ac_cpp conftest.$ac_ext") 2>conftest.er1 +- ac_status=$? +- grep -v '^ *+' conftest.er1 >conftest.err +- rm -f conftest.er1 +- cat conftest.err >&5 +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); } >/dev/null && { +- test -z "$ac_cxx_preproc_warn_flag$ac_cxx_werror_flag" || +- test ! -s conftest.err +- }; then +- ac_header_preproc=yes +-else +- echo "$as_me: failed program was:" >&5 +-sed 's/^/| /' conftest.$ac_ext >&5 +- +- ac_header_preproc=no +-fi +- +-rm -f conftest.err conftest.$ac_ext +-{ echo "$as_me:$LINENO: result: $ac_header_preproc" >&5 +-echo "${ECHO_T}$ac_header_preproc" >&6; } +- +-# So? What about this header? +-case $ac_header_compiler:$ac_header_preproc:$ac_cxx_preproc_warn_flag in +- yes:no: ) +- { echo "$as_me:$LINENO: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&5 +-echo "$as_me: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&2;} +- { echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the compiler's result" >&5 +-echo "$as_me: WARNING: $ac_header: proceeding with the compiler's result" >&2;} +- ac_header_preproc=yes +- ;; +- no:yes:* ) +- { echo "$as_me:$LINENO: WARNING: $ac_header: present but cannot be compiled" >&5 +-echo "$as_me: WARNING: $ac_header: present but cannot be compiled" >&2;} +- { echo "$as_me:$LINENO: WARNING: $ac_header: check for missing prerequisite headers?" >&5 +-echo "$as_me: WARNING: $ac_header: check for missing prerequisite headers?" >&2;} +- { echo "$as_me:$LINENO: WARNING: $ac_header: see the Autoconf documentation" >&5 +-echo "$as_me: WARNING: $ac_header: see the Autoconf documentation" >&2;} +- { echo "$as_me:$LINENO: WARNING: $ac_header: section \"Present But Cannot Be Compiled\"" >&5 +-echo "$as_me: WARNING: $ac_header: section \"Present But Cannot Be Compiled\"" >&2;} +- { echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the preprocessor's result" >&5 +-echo "$as_me: WARNING: $ac_header: proceeding with the preprocessor's result" >&2;} +- { echo "$as_me:$LINENO: WARNING: $ac_header: in the future, the compiler will take precedence" >&5 +-echo "$as_me: WARNING: $ac_header: in the future, the compiler will take precedence" >&2;} +- +- ;; +-esac +-{ echo "$as_me:$LINENO: checking for $ac_header" >&5 +-echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6; } +-if { as_var=$as_ac_Header; eval "test \"\${$as_var+set}\" = set"; }; then +- echo $ECHO_N "(cached) $ECHO_C" >&6 +-else +- eval "$as_ac_Header=\$ac_header_preproc" +-fi +-ac_res=`eval echo '${'$as_ac_Header'}'` +- { echo "$as_me:$LINENO: result: $ac_res" >&5 +-echo "${ECHO_T}$ac_res" >&6; } +- +-fi +-if test `eval echo '${'$as_ac_Header'}'` = yes; then ++ for ac_header in npapi.h ++do : ++ ac_fn_cxx_check_header_mongrel "$LINENO" "npapi.h" "ac_cv_header_npapi_h" "$ac_includes_default" ++if test "x$ac_cv_header_npapi_h" = xyes; then : + cat >>confdefs.h <<_ACEOF +-#define `echo "HAVE_$ac_header" | $as_tr_cpp` 1 ++#define HAVE_NPAPI_H 1 + _ACEOF + + else +@@ -63682,61 +41601,16 @@ fi + + done + +- +-for ac_header in npruntime.h +-do +-as_ac_Header=`echo "ac_cv_header_$ac_header" | $as_tr_sh` +-{ echo "$as_me:$LINENO: checking for $ac_header" >&5 +-echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6; } +-if { as_var=$as_ac_Header; eval "test \"\${$as_var+set}\" = set"; }; then +- echo $ECHO_N "(cached) $ECHO_C" >&6 +-else +- cat >conftest.$ac_ext <<_ACEOF +-/* confdefs.h. */ +-_ACEOF +-cat confdefs.h >>conftest.$ac_ext +-cat >>conftest.$ac_ext <<_ACEOF +-/* end confdefs.h. */ +-#if HAVE_NPAPI_H ++ for ac_header in npruntime.h ++do : ++ ac_fn_cxx_check_header_compile "$LINENO" "npruntime.h" "ac_cv_header_npruntime_h" "#if HAVE_NPAPI_H + # include + #endif + +- +-#include <$ac_header> +-_ACEOF +-rm -f conftest.$ac_objext +-if { (ac_try="$ac_compile" +-case "(($ac_try" in +- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; +- *) ac_try_echo=$ac_try;; +-esac +-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 +- (eval "$ac_compile") 2>conftest.er1 +- ac_status=$? +- grep -v '^ *+' conftest.er1 >conftest.err +- rm -f conftest.er1 +- cat conftest.err >&5 +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); } && { +- test -z "$ac_cxx_werror_flag" || +- test ! -s conftest.err +- } && test -s conftest.$ac_objext; then +- eval "$as_ac_Header=yes" +-else +- echo "$as_me: failed program was:" >&5 +-sed 's/^/| /' conftest.$ac_ext >&5 +- +- eval "$as_ac_Header=no" +-fi +- +-rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext +-fi +-ac_res=`eval echo '${'$as_ac_Header'}'` +- { echo "$as_me:$LINENO: result: $ac_res" >&5 +-echo "${ECHO_T}$ac_res" >&6; } +-if test `eval echo '${'$as_ac_Header'}'` = yes; then ++" ++if test "x$ac_cv_header_npruntime_h" = xyes; then : + cat >>confdefs.h <<_ACEOF +-#define `echo "HAVE_$ac_header" | $as_tr_cpp` 1 ++#define HAVE_NPRUNTIME_H 1 + _ACEOF + + else +@@ -63746,9 +41620,7 @@ fi + done + + if test "${MOZILLA_REQUIRED_HEADERS}" = "0"; then +- { { echo "$as_me:$LINENO: error: Please install the Firefox development tools; mozilla-config.h, plugin/npapi.h and plugin/npruntime.h were not found." >&5 +-echo "$as_me: error: Please install the Firefox development tools; mozilla-config.h, plugin/npapi.h and plugin/npruntime.h were not found." >&2;} +- { (exit 1); exit 1; }; } ++ as_fn_error $? "Please install the Firefox development tools; mozilla-config.h, plugin/npapi.h and plugin/npruntime.h were not found." "$LINENO" 5 + fi + MOZILLA_REQUIRED_HEADERS= + mozilla=: +@@ -63791,19 +41663,15 @@ fi + then + if ${MOZILLA_CONFIG} --defines | grep -q 'MOZ_X11=1'; then + LDFLAGS="${LDFLAGS_save} ${X_LIBS} ${X_PRE_LIBS}" +- { echo "$as_me:$LINENO: checking for XtStrings in -lXt" >&5 +-echo $ECHO_N "checking for XtStrings in -lXt... $ECHO_C" >&6; } +-if test "${ac_cv_lib_Xt_XtStrings+set}" = set; then +- echo $ECHO_N "(cached) $ECHO_C" >&6 ++ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for XtStrings in -lXt" >&5 ++$as_echo_n "checking for XtStrings in -lXt... " >&6; } ++if ${ac_cv_lib_Xt_XtStrings+:} false; then : ++ $as_echo_n "(cached) " >&6 + else + ac_check_lib_save_LIBS=$LIBS + LIBS="-lXt ${X_LIBS} ${X_PRE_LIBS} -lX11 -lSM -lICE + $LIBS" +-cat >conftest.$ac_ext <<_ACEOF +-/* confdefs.h. */ +-_ACEOF +-cat confdefs.h >>conftest.$ac_ext +-cat >>conftest.$ac_ext <<_ACEOF ++cat confdefs.h - <<_ACEOF >conftest.$ac_ext + /* end confdefs.h. */ + + /* Override any GCC internal prototype to avoid an error. +@@ -63821,39 +41689,18 @@ return XtStrings (); + return 0; + } + _ACEOF +-rm -f conftest.$ac_objext conftest$ac_exeext +-if { (ac_try="$ac_link" +-case "(($ac_try" in +- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; +- *) ac_try_echo=$ac_try;; +-esac +-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 +- (eval "$ac_link") 2>conftest.er1 +- ac_status=$? +- grep -v '^ *+' conftest.er1 >conftest.err +- rm -f conftest.er1 +- cat conftest.err >&5 +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); } && { +- test -z "$ac_cxx_werror_flag" || +- test ! -s conftest.err +- } && test -s conftest$ac_exeext && +- $as_test_x conftest$ac_exeext; then ++if ac_fn_cxx_try_link "$LINENO"; then : + ac_cv_lib_Xt_XtStrings=yes + else +- echo "$as_me: failed program was:" >&5 +-sed 's/^/| /' conftest.$ac_ext >&5 +- +- ac_cv_lib_Xt_XtStrings=no ++ ac_cv_lib_Xt_XtStrings=no + fi +- +-rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ +- conftest$ac_exeext conftest.$ac_ext ++rm -f core conftest.err conftest.$ac_objext \ ++ conftest$ac_exeext conftest.$ac_ext + LIBS=$ac_check_lib_save_LIBS + fi +-{ echo "$as_me:$LINENO: result: $ac_cv_lib_Xt_XtStrings" >&5 +-echo "${ECHO_T}$ac_cv_lib_Xt_XtStrings" >&6; } +-if test $ac_cv_lib_Xt_XtStrings = yes; then ++{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_Xt_XtStrings" >&5 ++$as_echo "$ac_cv_lib_Xt_XtStrings" >&6; } ++if test "x$ac_cv_lib_Xt_XtStrings" = xyes; then : + + + for element in mozilla; do +@@ -63898,140 +41745,12 @@ fi + fi + CPPFLAGS="${CPPFLAGS_save} ${CPPFLAGS_mozilla}" + MOZILLA_REQUIRED_HEADERS=1 +- +-for ac_header in mozilla-config.h +-do +-as_ac_Header=`echo "ac_cv_header_$ac_header" | $as_tr_sh` +-if { as_var=$as_ac_Header; eval "test \"\${$as_var+set}\" = set"; }; then +- { echo "$as_me:$LINENO: checking for $ac_header" >&5 +-echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6; } +-if { as_var=$as_ac_Header; eval "test \"\${$as_var+set}\" = set"; }; then +- echo $ECHO_N "(cached) $ECHO_C" >&6 +-fi +-ac_res=`eval echo '${'$as_ac_Header'}'` +- { echo "$as_me:$LINENO: result: $ac_res" >&5 +-echo "${ECHO_T}$ac_res" >&6; } +-else +- # Is the header compilable? +-{ echo "$as_me:$LINENO: checking $ac_header usability" >&5 +-echo $ECHO_N "checking $ac_header usability... $ECHO_C" >&6; } +-cat >conftest.$ac_ext <<_ACEOF +-/* confdefs.h. */ +-_ACEOF +-cat confdefs.h >>conftest.$ac_ext +-cat >>conftest.$ac_ext <<_ACEOF +-/* end confdefs.h. */ +-$ac_includes_default +-#include <$ac_header> +-_ACEOF +-rm -f conftest.$ac_objext +-if { (ac_try="$ac_compile" +-case "(($ac_try" in +- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; +- *) ac_try_echo=$ac_try;; +-esac +-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 +- (eval "$ac_compile") 2>conftest.er1 +- ac_status=$? +- grep -v '^ *+' conftest.er1 >conftest.err +- rm -f conftest.er1 +- cat conftest.err >&5 +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); } && { +- test -z "$ac_cxx_werror_flag" || +- test ! -s conftest.err +- } && test -s conftest.$ac_objext; then +- ac_header_compiler=yes +-else +- echo "$as_me: failed program was:" >&5 +-sed 's/^/| /' conftest.$ac_ext >&5 +- +- ac_header_compiler=no +-fi +- +-rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext +-{ echo "$as_me:$LINENO: result: $ac_header_compiler" >&5 +-echo "${ECHO_T}$ac_header_compiler" >&6; } +- +-# Is the header present? +-{ echo "$as_me:$LINENO: checking $ac_header presence" >&5 +-echo $ECHO_N "checking $ac_header presence... $ECHO_C" >&6; } +-cat >conftest.$ac_ext <<_ACEOF +-/* confdefs.h. */ +-_ACEOF +-cat confdefs.h >>conftest.$ac_ext +-cat >>conftest.$ac_ext <<_ACEOF +-/* end confdefs.h. */ +-#include <$ac_header> +-_ACEOF +-if { (ac_try="$ac_cpp conftest.$ac_ext" +-case "(($ac_try" in +- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; +- *) ac_try_echo=$ac_try;; +-esac +-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 +- (eval "$ac_cpp conftest.$ac_ext") 2>conftest.er1 +- ac_status=$? +- grep -v '^ *+' conftest.er1 >conftest.err +- rm -f conftest.er1 +- cat conftest.err >&5 +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); } >/dev/null && { +- test -z "$ac_cxx_preproc_warn_flag$ac_cxx_werror_flag" || +- test ! -s conftest.err +- }; then +- ac_header_preproc=yes +-else +- echo "$as_me: failed program was:" >&5 +-sed 's/^/| /' conftest.$ac_ext >&5 +- +- ac_header_preproc=no +-fi +- +-rm -f conftest.err conftest.$ac_ext +-{ echo "$as_me:$LINENO: result: $ac_header_preproc" >&5 +-echo "${ECHO_T}$ac_header_preproc" >&6; } +- +-# So? What about this header? +-case $ac_header_compiler:$ac_header_preproc:$ac_cxx_preproc_warn_flag in +- yes:no: ) +- { echo "$as_me:$LINENO: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&5 +-echo "$as_me: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&2;} +- { echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the compiler's result" >&5 +-echo "$as_me: WARNING: $ac_header: proceeding with the compiler's result" >&2;} +- ac_header_preproc=yes +- ;; +- no:yes:* ) +- { echo "$as_me:$LINENO: WARNING: $ac_header: present but cannot be compiled" >&5 +-echo "$as_me: WARNING: $ac_header: present but cannot be compiled" >&2;} +- { echo "$as_me:$LINENO: WARNING: $ac_header: check for missing prerequisite headers?" >&5 +-echo "$as_me: WARNING: $ac_header: check for missing prerequisite headers?" >&2;} +- { echo "$as_me:$LINENO: WARNING: $ac_header: see the Autoconf documentation" >&5 +-echo "$as_me: WARNING: $ac_header: see the Autoconf documentation" >&2;} +- { echo "$as_me:$LINENO: WARNING: $ac_header: section \"Present But Cannot Be Compiled\"" >&5 +-echo "$as_me: WARNING: $ac_header: section \"Present But Cannot Be Compiled\"" >&2;} +- { echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the preprocessor's result" >&5 +-echo "$as_me: WARNING: $ac_header: proceeding with the preprocessor's result" >&2;} +- { echo "$as_me:$LINENO: WARNING: $ac_header: in the future, the compiler will take precedence" >&5 +-echo "$as_me: WARNING: $ac_header: in the future, the compiler will take precedence" >&2;} +- +- ;; +-esac +-{ echo "$as_me:$LINENO: checking for $ac_header" >&5 +-echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6; } +-if { as_var=$as_ac_Header; eval "test \"\${$as_var+set}\" = set"; }; then +- echo $ECHO_N "(cached) $ECHO_C" >&6 +-else +- eval "$as_ac_Header=\$ac_header_preproc" +-fi +-ac_res=`eval echo '${'$as_ac_Header'}'` +- { echo "$as_me:$LINENO: result: $ac_res" >&5 +-echo "${ECHO_T}$ac_res" >&6; } +- +-fi +-if test `eval echo '${'$as_ac_Header'}'` = yes; then ++ for ac_header in mozilla-config.h ++do : ++ ac_fn_cxx_check_header_mongrel "$LINENO" "mozilla-config.h" "ac_cv_header_mozilla_config_h" "$ac_includes_default" ++if test "x$ac_cv_header_mozilla_config_h" = xyes; then : + cat >>confdefs.h <<_ACEOF +-#define `echo "HAVE_$ac_header" | $as_tr_cpp` 1 ++#define HAVE_MOZILLA_CONFIG_H 1 + _ACEOF + + else +@@ -64040,140 +41759,12 @@ fi + + done + +- +-for ac_header in npapi.h +-do +-as_ac_Header=`echo "ac_cv_header_$ac_header" | $as_tr_sh` +-if { as_var=$as_ac_Header; eval "test \"\${$as_var+set}\" = set"; }; then +- { echo "$as_me:$LINENO: checking for $ac_header" >&5 +-echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6; } +-if { as_var=$as_ac_Header; eval "test \"\${$as_var+set}\" = set"; }; then +- echo $ECHO_N "(cached) $ECHO_C" >&6 +-fi +-ac_res=`eval echo '${'$as_ac_Header'}'` +- { echo "$as_me:$LINENO: result: $ac_res" >&5 +-echo "${ECHO_T}$ac_res" >&6; } +-else +- # Is the header compilable? +-{ echo "$as_me:$LINENO: checking $ac_header usability" >&5 +-echo $ECHO_N "checking $ac_header usability... $ECHO_C" >&6; } +-cat >conftest.$ac_ext <<_ACEOF +-/* confdefs.h. */ +-_ACEOF +-cat confdefs.h >>conftest.$ac_ext +-cat >>conftest.$ac_ext <<_ACEOF +-/* end confdefs.h. */ +-$ac_includes_default +-#include <$ac_header> +-_ACEOF +-rm -f conftest.$ac_objext +-if { (ac_try="$ac_compile" +-case "(($ac_try" in +- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; +- *) ac_try_echo=$ac_try;; +-esac +-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 +- (eval "$ac_compile") 2>conftest.er1 +- ac_status=$? +- grep -v '^ *+' conftest.er1 >conftest.err +- rm -f conftest.er1 +- cat conftest.err >&5 +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); } && { +- test -z "$ac_cxx_werror_flag" || +- test ! -s conftest.err +- } && test -s conftest.$ac_objext; then +- ac_header_compiler=yes +-else +- echo "$as_me: failed program was:" >&5 +-sed 's/^/| /' conftest.$ac_ext >&5 +- +- ac_header_compiler=no +-fi +- +-rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext +-{ echo "$as_me:$LINENO: result: $ac_header_compiler" >&5 +-echo "${ECHO_T}$ac_header_compiler" >&6; } +- +-# Is the header present? +-{ echo "$as_me:$LINENO: checking $ac_header presence" >&5 +-echo $ECHO_N "checking $ac_header presence... $ECHO_C" >&6; } +-cat >conftest.$ac_ext <<_ACEOF +-/* confdefs.h. */ +-_ACEOF +-cat confdefs.h >>conftest.$ac_ext +-cat >>conftest.$ac_ext <<_ACEOF +-/* end confdefs.h. */ +-#include <$ac_header> +-_ACEOF +-if { (ac_try="$ac_cpp conftest.$ac_ext" +-case "(($ac_try" in +- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; +- *) ac_try_echo=$ac_try;; +-esac +-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 +- (eval "$ac_cpp conftest.$ac_ext") 2>conftest.er1 +- ac_status=$? +- grep -v '^ *+' conftest.er1 >conftest.err +- rm -f conftest.er1 +- cat conftest.err >&5 +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); } >/dev/null && { +- test -z "$ac_cxx_preproc_warn_flag$ac_cxx_werror_flag" || +- test ! -s conftest.err +- }; then +- ac_header_preproc=yes +-else +- echo "$as_me: failed program was:" >&5 +-sed 's/^/| /' conftest.$ac_ext >&5 +- +- ac_header_preproc=no +-fi +- +-rm -f conftest.err conftest.$ac_ext +-{ echo "$as_me:$LINENO: result: $ac_header_preproc" >&5 +-echo "${ECHO_T}$ac_header_preproc" >&6; } +- +-# So? What about this header? +-case $ac_header_compiler:$ac_header_preproc:$ac_cxx_preproc_warn_flag in +- yes:no: ) +- { echo "$as_me:$LINENO: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&5 +-echo "$as_me: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&2;} +- { echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the compiler's result" >&5 +-echo "$as_me: WARNING: $ac_header: proceeding with the compiler's result" >&2;} +- ac_header_preproc=yes +- ;; +- no:yes:* ) +- { echo "$as_me:$LINENO: WARNING: $ac_header: present but cannot be compiled" >&5 +-echo "$as_me: WARNING: $ac_header: present but cannot be compiled" >&2;} +- { echo "$as_me:$LINENO: WARNING: $ac_header: check for missing prerequisite headers?" >&5 +-echo "$as_me: WARNING: $ac_header: check for missing prerequisite headers?" >&2;} +- { echo "$as_me:$LINENO: WARNING: $ac_header: see the Autoconf documentation" >&5 +-echo "$as_me: WARNING: $ac_header: see the Autoconf documentation" >&2;} +- { echo "$as_me:$LINENO: WARNING: $ac_header: section \"Present But Cannot Be Compiled\"" >&5 +-echo "$as_me: WARNING: $ac_header: section \"Present But Cannot Be Compiled\"" >&2;} +- { echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the preprocessor's result" >&5 +-echo "$as_me: WARNING: $ac_header: proceeding with the preprocessor's result" >&2;} +- { echo "$as_me:$LINENO: WARNING: $ac_header: in the future, the compiler will take precedence" >&5 +-echo "$as_me: WARNING: $ac_header: in the future, the compiler will take precedence" >&2;} +- +- ;; +-esac +-{ echo "$as_me:$LINENO: checking for $ac_header" >&5 +-echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6; } +-if { as_var=$as_ac_Header; eval "test \"\${$as_var+set}\" = set"; }; then +- echo $ECHO_N "(cached) $ECHO_C" >&6 +-else +- eval "$as_ac_Header=\$ac_header_preproc" +-fi +-ac_res=`eval echo '${'$as_ac_Header'}'` +- { echo "$as_me:$LINENO: result: $ac_res" >&5 +-echo "${ECHO_T}$ac_res" >&6; } +- +-fi +-if test `eval echo '${'$as_ac_Header'}'` = yes; then ++ for ac_header in npapi.h ++do : ++ ac_fn_cxx_check_header_mongrel "$LINENO" "npapi.h" "ac_cv_header_npapi_h" "$ac_includes_default" ++if test "x$ac_cv_header_npapi_h" = xyes; then : + cat >>confdefs.h <<_ACEOF +-#define `echo "HAVE_$ac_header" | $as_tr_cpp` 1 ++#define HAVE_NPAPI_H 1 + _ACEOF + + else +@@ -64182,61 +41773,16 @@ fi + + done + +- +-for ac_header in npruntime.h +-do +-as_ac_Header=`echo "ac_cv_header_$ac_header" | $as_tr_sh` +-{ echo "$as_me:$LINENO: checking for $ac_header" >&5 +-echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6; } +-if { as_var=$as_ac_Header; eval "test \"\${$as_var+set}\" = set"; }; then +- echo $ECHO_N "(cached) $ECHO_C" >&6 +-else +- cat >conftest.$ac_ext <<_ACEOF +-/* confdefs.h. */ +-_ACEOF +-cat confdefs.h >>conftest.$ac_ext +-cat >>conftest.$ac_ext <<_ACEOF +-/* end confdefs.h. */ +-#if HAVE_NPAPI_H ++ for ac_header in npruntime.h ++do : ++ ac_fn_cxx_check_header_compile "$LINENO" "npruntime.h" "ac_cv_header_npruntime_h" "#if HAVE_NPAPI_H + # include + #endif + +- +-#include <$ac_header> +-_ACEOF +-rm -f conftest.$ac_objext +-if { (ac_try="$ac_compile" +-case "(($ac_try" in +- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; +- *) ac_try_echo=$ac_try;; +-esac +-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 +- (eval "$ac_compile") 2>conftest.er1 +- ac_status=$? +- grep -v '^ *+' conftest.er1 >conftest.err +- rm -f conftest.er1 +- cat conftest.err >&5 +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); } && { +- test -z "$ac_cxx_werror_flag" || +- test ! -s conftest.err +- } && test -s conftest.$ac_objext; then +- eval "$as_ac_Header=yes" +-else +- echo "$as_me: failed program was:" >&5 +-sed 's/^/| /' conftest.$ac_ext >&5 +- +- eval "$as_ac_Header=no" +-fi +- +-rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext +-fi +-ac_res=`eval echo '${'$as_ac_Header'}'` +- { echo "$as_me:$LINENO: result: $ac_res" >&5 +-echo "${ECHO_T}$ac_res" >&6; } +-if test `eval echo '${'$as_ac_Header'}'` = yes; then ++" ++if test "x$ac_cv_header_npruntime_h" = xyes; then : + cat >>confdefs.h <<_ACEOF +-#define `echo "HAVE_$ac_header" | $as_tr_cpp` 1 ++#define HAVE_NPRUNTIME_H 1 + _ACEOF + + else +@@ -64247,9 +41793,7 @@ done + + if test "${MOZILLA_REQUIRED_HEADERS}" = "0" + then +- { { echo "$as_me:$LINENO: error: Please install the Mozilla development tools, required headers were not found." >&5 +-echo "$as_me: error: Please install the Mozilla development tools, required headers were not found." >&2;} +- { (exit 1); exit 1; }; } ++ as_fn_error $? "Please install the Mozilla development tools, required headers were not found." "$LINENO" 5 + fi + MOZILLA_REQUIRED_HEADERS= + CPPFLAGS="${CPPFLAGS_save}" +@@ -64261,10 +41805,10 @@ echo "$as_me: error: Please install the Mozilla development tools, required head + if test -n "$ac_tool_prefix"; then + # Extract the first word of "${ac_tool_prefix}cygpath", so it can be a program name with args. + set dummy ${ac_tool_prefix}cygpath; ac_word=$2 +-{ echo "$as_me:$LINENO: checking for $ac_word" >&5 +-echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6; } +-if test "${ac_cv_prog_CYGPATH+set}" = set; then +- echo $ECHO_N "(cached) $ECHO_C" >&6 ++{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 ++$as_echo_n "checking for $ac_word... " >&6; } ++if ${ac_cv_prog_CYGPATH+:} false; then : ++ $as_echo_n "(cached) " >&6 + else + if test -n "$CYGPATH"; then + ac_cv_prog_CYGPATH="$CYGPATH" # Let the user override the test. +@@ -64274,25 +41818,25 @@ for as_dir in $PATH + do + IFS=$as_save_IFS + test -z "$as_dir" && as_dir=. +- for ac_exec_ext in '' $ac_executable_extensions; do +- if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then ++ for ac_exec_ext in '' $ac_executable_extensions; do ++ if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then + ac_cv_prog_CYGPATH="${ac_tool_prefix}cygpath" +- echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 ++ $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 + break 2 + fi + done +-done ++ done + IFS=$as_save_IFS + + fi + fi + CYGPATH=$ac_cv_prog_CYGPATH + if test -n "$CYGPATH"; then +- { echo "$as_me:$LINENO: result: $CYGPATH" >&5 +-echo "${ECHO_T}$CYGPATH" >&6; } ++ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $CYGPATH" >&5 ++$as_echo "$CYGPATH" >&6; } + else +- { echo "$as_me:$LINENO: result: no" >&5 +-echo "${ECHO_T}no" >&6; } ++ { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 ++$as_echo "no" >&6; } + fi + + +@@ -64301,10 +41845,10 @@ if test -z "$ac_cv_prog_CYGPATH"; then + ac_ct_CYGPATH=$CYGPATH + # Extract the first word of "cygpath", so it can be a program name with args. + set dummy cygpath; ac_word=$2 +-{ echo "$as_me:$LINENO: checking for $ac_word" >&5 +-echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6; } +-if test "${ac_cv_prog_ac_ct_CYGPATH+set}" = set; then +- echo $ECHO_N "(cached) $ECHO_C" >&6 ++{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 ++$as_echo_n "checking for $ac_word... " >&6; } ++if ${ac_cv_prog_ac_ct_CYGPATH+:} false; then : ++ $as_echo_n "(cached) " >&6 + else + if test -n "$ac_ct_CYGPATH"; then + ac_cv_prog_ac_ct_CYGPATH="$ac_ct_CYGPATH" # Let the user override the test. +@@ -64314,25 +41858,25 @@ for as_dir in $PATH + do + IFS=$as_save_IFS + test -z "$as_dir" && as_dir=. +- for ac_exec_ext in '' $ac_executable_extensions; do +- if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then ++ for ac_exec_ext in '' $ac_executable_extensions; do ++ if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then + ac_cv_prog_ac_ct_CYGPATH="cygpath" +- echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 ++ $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 + break 2 + fi + done +-done ++ done + IFS=$as_save_IFS + + fi + fi + ac_ct_CYGPATH=$ac_cv_prog_ac_ct_CYGPATH + if test -n "$ac_ct_CYGPATH"; then +- { echo "$as_me:$LINENO: result: $ac_ct_CYGPATH" >&5 +-echo "${ECHO_T}$ac_ct_CYGPATH" >&6; } ++ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_ct_CYGPATH" >&5 ++$as_echo "$ac_ct_CYGPATH" >&6; } + else +- { echo "$as_me:$LINENO: result: no" >&5 +-echo "${ECHO_T}no" >&6; } ++ { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 ++$as_echo "no" >&6; } + fi + + if test "x$ac_ct_CYGPATH" = x; then +@@ -64340,12 +41884,8 @@ fi + else + case $cross_compiling:$ac_tool_warned in + yes:) +-{ echo "$as_me:$LINENO: WARNING: In the future, Autoconf will not detect cross-tools +-whose name does not start with the host triplet. If you think this +-configuration is useful to you, please write to autoconf@gnu.org." >&5 +-echo "$as_me: WARNING: In the future, Autoconf will not detect cross-tools +-whose name does not start with the host triplet. If you think this +-configuration is useful to you, please write to autoconf@gnu.org." >&2;} ++{ $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet" >&5 ++$as_echo "$as_me: WARNING: using cross tools not prefixed with host triplet" >&2;} + ac_tool_warned=yes ;; + esac + CYGPATH=$ac_ct_CYGPATH +@@ -64362,140 +41902,12 @@ fi + real_mozilla_sdk="`cd ${with_mozilla_sdk_path} 2>/dev/null && pwd`" + CPPFLAGS="${CPPFLAGS_save} -I${real_mozilla_sdk} -I${real_mozilla_sdk}/include" + MOZILLA_REQUIRED_HEADERS=1 +- +-for ac_header in mozilla-config.h +-do +-as_ac_Header=`echo "ac_cv_header_$ac_header" | $as_tr_sh` +-if { as_var=$as_ac_Header; eval "test \"\${$as_var+set}\" = set"; }; then +- { echo "$as_me:$LINENO: checking for $ac_header" >&5 +-echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6; } +-if { as_var=$as_ac_Header; eval "test \"\${$as_var+set}\" = set"; }; then +- echo $ECHO_N "(cached) $ECHO_C" >&6 +-fi +-ac_res=`eval echo '${'$as_ac_Header'}'` +- { echo "$as_me:$LINENO: result: $ac_res" >&5 +-echo "${ECHO_T}$ac_res" >&6; } +-else +- # Is the header compilable? +-{ echo "$as_me:$LINENO: checking $ac_header usability" >&5 +-echo $ECHO_N "checking $ac_header usability... $ECHO_C" >&6; } +-cat >conftest.$ac_ext <<_ACEOF +-/* confdefs.h. */ +-_ACEOF +-cat confdefs.h >>conftest.$ac_ext +-cat >>conftest.$ac_ext <<_ACEOF +-/* end confdefs.h. */ +-$ac_includes_default +-#include <$ac_header> +-_ACEOF +-rm -f conftest.$ac_objext +-if { (ac_try="$ac_compile" +-case "(($ac_try" in +- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; +- *) ac_try_echo=$ac_try;; +-esac +-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 +- (eval "$ac_compile") 2>conftest.er1 +- ac_status=$? +- grep -v '^ *+' conftest.er1 >conftest.err +- rm -f conftest.er1 +- cat conftest.err >&5 +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); } && { +- test -z "$ac_cxx_werror_flag" || +- test ! -s conftest.err +- } && test -s conftest.$ac_objext; then +- ac_header_compiler=yes +-else +- echo "$as_me: failed program was:" >&5 +-sed 's/^/| /' conftest.$ac_ext >&5 +- +- ac_header_compiler=no +-fi +- +-rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext +-{ echo "$as_me:$LINENO: result: $ac_header_compiler" >&5 +-echo "${ECHO_T}$ac_header_compiler" >&6; } +- +-# Is the header present? +-{ echo "$as_me:$LINENO: checking $ac_header presence" >&5 +-echo $ECHO_N "checking $ac_header presence... $ECHO_C" >&6; } +-cat >conftest.$ac_ext <<_ACEOF +-/* confdefs.h. */ +-_ACEOF +-cat confdefs.h >>conftest.$ac_ext +-cat >>conftest.$ac_ext <<_ACEOF +-/* end confdefs.h. */ +-#include <$ac_header> +-_ACEOF +-if { (ac_try="$ac_cpp conftest.$ac_ext" +-case "(($ac_try" in +- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; +- *) ac_try_echo=$ac_try;; +-esac +-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 +- (eval "$ac_cpp conftest.$ac_ext") 2>conftest.er1 +- ac_status=$? +- grep -v '^ *+' conftest.er1 >conftest.err +- rm -f conftest.er1 +- cat conftest.err >&5 +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); } >/dev/null && { +- test -z "$ac_cxx_preproc_warn_flag$ac_cxx_werror_flag" || +- test ! -s conftest.err +- }; then +- ac_header_preproc=yes +-else +- echo "$as_me: failed program was:" >&5 +-sed 's/^/| /' conftest.$ac_ext >&5 +- +- ac_header_preproc=no +-fi +- +-rm -f conftest.err conftest.$ac_ext +-{ echo "$as_me:$LINENO: result: $ac_header_preproc" >&5 +-echo "${ECHO_T}$ac_header_preproc" >&6; } +- +-# So? What about this header? +-case $ac_header_compiler:$ac_header_preproc:$ac_cxx_preproc_warn_flag in +- yes:no: ) +- { echo "$as_me:$LINENO: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&5 +-echo "$as_me: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&2;} +- { echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the compiler's result" >&5 +-echo "$as_me: WARNING: $ac_header: proceeding with the compiler's result" >&2;} +- ac_header_preproc=yes +- ;; +- no:yes:* ) +- { echo "$as_me:$LINENO: WARNING: $ac_header: present but cannot be compiled" >&5 +-echo "$as_me: WARNING: $ac_header: present but cannot be compiled" >&2;} +- { echo "$as_me:$LINENO: WARNING: $ac_header: check for missing prerequisite headers?" >&5 +-echo "$as_me: WARNING: $ac_header: check for missing prerequisite headers?" >&2;} +- { echo "$as_me:$LINENO: WARNING: $ac_header: see the Autoconf documentation" >&5 +-echo "$as_me: WARNING: $ac_header: see the Autoconf documentation" >&2;} +- { echo "$as_me:$LINENO: WARNING: $ac_header: section \"Present But Cannot Be Compiled\"" >&5 +-echo "$as_me: WARNING: $ac_header: section \"Present But Cannot Be Compiled\"" >&2;} +- { echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the preprocessor's result" >&5 +-echo "$as_me: WARNING: $ac_header: proceeding with the preprocessor's result" >&2;} +- { echo "$as_me:$LINENO: WARNING: $ac_header: in the future, the compiler will take precedence" >&5 +-echo "$as_me: WARNING: $ac_header: in the future, the compiler will take precedence" >&2;} +- +- ;; +-esac +-{ echo "$as_me:$LINENO: checking for $ac_header" >&5 +-echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6; } +-if { as_var=$as_ac_Header; eval "test \"\${$as_var+set}\" = set"; }; then +- echo $ECHO_N "(cached) $ECHO_C" >&6 +-else +- eval "$as_ac_Header=\$ac_header_preproc" +-fi +-ac_res=`eval echo '${'$as_ac_Header'}'` +- { echo "$as_me:$LINENO: result: $ac_res" >&5 +-echo "${ECHO_T}$ac_res" >&6; } +- +-fi +-if test `eval echo '${'$as_ac_Header'}'` = yes; then ++ for ac_header in mozilla-config.h ++do : ++ ac_fn_cxx_check_header_mongrel "$LINENO" "mozilla-config.h" "ac_cv_header_mozilla_config_h" "$ac_includes_default" ++if test "x$ac_cv_header_mozilla_config_h" = xyes; then : + cat >>confdefs.h <<_ACEOF +-#define `echo "HAVE_$ac_header" | $as_tr_cpp` 1 ++#define HAVE_MOZILLA_CONFIG_H 1 + _ACEOF + + else +@@ -64504,140 +41916,12 @@ fi + + done + +- +-for ac_header in npapi.h +-do +-as_ac_Header=`echo "ac_cv_header_$ac_header" | $as_tr_sh` +-if { as_var=$as_ac_Header; eval "test \"\${$as_var+set}\" = set"; }; then +- { echo "$as_me:$LINENO: checking for $ac_header" >&5 +-echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6; } +-if { as_var=$as_ac_Header; eval "test \"\${$as_var+set}\" = set"; }; then +- echo $ECHO_N "(cached) $ECHO_C" >&6 +-fi +-ac_res=`eval echo '${'$as_ac_Header'}'` +- { echo "$as_me:$LINENO: result: $ac_res" >&5 +-echo "${ECHO_T}$ac_res" >&6; } +-else +- # Is the header compilable? +-{ echo "$as_me:$LINENO: checking $ac_header usability" >&5 +-echo $ECHO_N "checking $ac_header usability... $ECHO_C" >&6; } +-cat >conftest.$ac_ext <<_ACEOF +-/* confdefs.h. */ +-_ACEOF +-cat confdefs.h >>conftest.$ac_ext +-cat >>conftest.$ac_ext <<_ACEOF +-/* end confdefs.h. */ +-$ac_includes_default +-#include <$ac_header> +-_ACEOF +-rm -f conftest.$ac_objext +-if { (ac_try="$ac_compile" +-case "(($ac_try" in +- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; +- *) ac_try_echo=$ac_try;; +-esac +-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 +- (eval "$ac_compile") 2>conftest.er1 +- ac_status=$? +- grep -v '^ *+' conftest.er1 >conftest.err +- rm -f conftest.er1 +- cat conftest.err >&5 +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); } && { +- test -z "$ac_cxx_werror_flag" || +- test ! -s conftest.err +- } && test -s conftest.$ac_objext; then +- ac_header_compiler=yes +-else +- echo "$as_me: failed program was:" >&5 +-sed 's/^/| /' conftest.$ac_ext >&5 +- +- ac_header_compiler=no +-fi +- +-rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext +-{ echo "$as_me:$LINENO: result: $ac_header_compiler" >&5 +-echo "${ECHO_T}$ac_header_compiler" >&6; } +- +-# Is the header present? +-{ echo "$as_me:$LINENO: checking $ac_header presence" >&5 +-echo $ECHO_N "checking $ac_header presence... $ECHO_C" >&6; } +-cat >conftest.$ac_ext <<_ACEOF +-/* confdefs.h. */ +-_ACEOF +-cat confdefs.h >>conftest.$ac_ext +-cat >>conftest.$ac_ext <<_ACEOF +-/* end confdefs.h. */ +-#include <$ac_header> +-_ACEOF +-if { (ac_try="$ac_cpp conftest.$ac_ext" +-case "(($ac_try" in +- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; +- *) ac_try_echo=$ac_try;; +-esac +-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 +- (eval "$ac_cpp conftest.$ac_ext") 2>conftest.er1 +- ac_status=$? +- grep -v '^ *+' conftest.er1 >conftest.err +- rm -f conftest.er1 +- cat conftest.err >&5 +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); } >/dev/null && { +- test -z "$ac_cxx_preproc_warn_flag$ac_cxx_werror_flag" || +- test ! -s conftest.err +- }; then +- ac_header_preproc=yes +-else +- echo "$as_me: failed program was:" >&5 +-sed 's/^/| /' conftest.$ac_ext >&5 +- +- ac_header_preproc=no +-fi +- +-rm -f conftest.err conftest.$ac_ext +-{ echo "$as_me:$LINENO: result: $ac_header_preproc" >&5 +-echo "${ECHO_T}$ac_header_preproc" >&6; } +- +-# So? What about this header? +-case $ac_header_compiler:$ac_header_preproc:$ac_cxx_preproc_warn_flag in +- yes:no: ) +- { echo "$as_me:$LINENO: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&5 +-echo "$as_me: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&2;} +- { echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the compiler's result" >&5 +-echo "$as_me: WARNING: $ac_header: proceeding with the compiler's result" >&2;} +- ac_header_preproc=yes +- ;; +- no:yes:* ) +- { echo "$as_me:$LINENO: WARNING: $ac_header: present but cannot be compiled" >&5 +-echo "$as_me: WARNING: $ac_header: present but cannot be compiled" >&2;} +- { echo "$as_me:$LINENO: WARNING: $ac_header: check for missing prerequisite headers?" >&5 +-echo "$as_me: WARNING: $ac_header: check for missing prerequisite headers?" >&2;} +- { echo "$as_me:$LINENO: WARNING: $ac_header: see the Autoconf documentation" >&5 +-echo "$as_me: WARNING: $ac_header: see the Autoconf documentation" >&2;} +- { echo "$as_me:$LINENO: WARNING: $ac_header: section \"Present But Cannot Be Compiled\"" >&5 +-echo "$as_me: WARNING: $ac_header: section \"Present But Cannot Be Compiled\"" >&2;} +- { echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the preprocessor's result" >&5 +-echo "$as_me: WARNING: $ac_header: proceeding with the preprocessor's result" >&2;} +- { echo "$as_me:$LINENO: WARNING: $ac_header: in the future, the compiler will take precedence" >&5 +-echo "$as_me: WARNING: $ac_header: in the future, the compiler will take precedence" >&2;} +- +- ;; +-esac +-{ echo "$as_me:$LINENO: checking for $ac_header" >&5 +-echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6; } +-if { as_var=$as_ac_Header; eval "test \"\${$as_var+set}\" = set"; }; then +- echo $ECHO_N "(cached) $ECHO_C" >&6 +-else +- eval "$as_ac_Header=\$ac_header_preproc" +-fi +-ac_res=`eval echo '${'$as_ac_Header'}'` +- { echo "$as_me:$LINENO: result: $ac_res" >&5 +-echo "${ECHO_T}$ac_res" >&6; } +- +-fi +-if test `eval echo '${'$as_ac_Header'}'` = yes; then ++ for ac_header in npapi.h ++do : ++ ac_fn_cxx_check_header_mongrel "$LINENO" "npapi.h" "ac_cv_header_npapi_h" "$ac_includes_default" ++if test "x$ac_cv_header_npapi_h" = xyes; then : + cat >>confdefs.h <<_ACEOF +-#define `echo "HAVE_$ac_header" | $as_tr_cpp` 1 ++#define HAVE_NPAPI_H 1 + _ACEOF + + else +@@ -64646,61 +41930,16 @@ fi + + done + +- +-for ac_header in npruntime.h +-do +-as_ac_Header=`echo "ac_cv_header_$ac_header" | $as_tr_sh` +-{ echo "$as_me:$LINENO: checking for $ac_header" >&5 +-echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6; } +-if { as_var=$as_ac_Header; eval "test \"\${$as_var+set}\" = set"; }; then +- echo $ECHO_N "(cached) $ECHO_C" >&6 +-else +- cat >conftest.$ac_ext <<_ACEOF +-/* confdefs.h. */ +-_ACEOF +-cat confdefs.h >>conftest.$ac_ext +-cat >>conftest.$ac_ext <<_ACEOF +-/* end confdefs.h. */ +-#if HAVE_NPAPI_H ++ for ac_header in npruntime.h ++do : ++ ac_fn_cxx_check_header_compile "$LINENO" "npruntime.h" "ac_cv_header_npruntime_h" "#if HAVE_NPAPI_H + #include + #endif + +- +-#include <$ac_header> +-_ACEOF +-rm -f conftest.$ac_objext +-if { (ac_try="$ac_compile" +-case "(($ac_try" in +- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; +- *) ac_try_echo=$ac_try;; +-esac +-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 +- (eval "$ac_compile") 2>conftest.er1 +- ac_status=$? +- grep -v '^ *+' conftest.er1 >conftest.err +- rm -f conftest.er1 +- cat conftest.err >&5 +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); } && { +- test -z "$ac_cxx_werror_flag" || +- test ! -s conftest.err +- } && test -s conftest.$ac_objext; then +- eval "$as_ac_Header=yes" +-else +- echo "$as_me: failed program was:" >&5 +-sed 's/^/| /' conftest.$ac_ext >&5 +- +- eval "$as_ac_Header=no" +-fi +- +-rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext +-fi +-ac_res=`eval echo '${'$as_ac_Header'}'` +- { echo "$as_me:$LINENO: result: $ac_res" >&5 +-echo "${ECHO_T}$ac_res" >&6; } +-if test `eval echo '${'$as_ac_Header'}'` = yes; then ++" ++if test "x$ac_cv_header_npruntime_h" = xyes; then : + cat >>confdefs.h <<_ACEOF +-#define `echo "HAVE_$ac_header" | $as_tr_cpp` 1 ++#define HAVE_NPRUNTIME_H 1 + _ACEOF + + else +@@ -64711,9 +41950,7 @@ done + + if test "${MOZILLA_REQUIRED_HEADERS}" = "0" + then +- { { echo "$as_me:$LINENO: error: Please install the Mozilla development tools, required headers were not found." >&5 +-echo "$as_me: error: Please install the Mozilla development tools, required headers were not found." >&2;} +- { (exit 1); exit 1; }; } ++ as_fn_error $? "Please install the Mozilla development tools, required headers were not found." "$LINENO" 5 + fi + MOZILLA_REQUIRED_HEADERS= + mozilla=: +@@ -64769,7 +42006,7 @@ fi + + + # Check whether --enable-mediacontrol-python-bindings was given. +-if test "${enable_mediacontrol_python_bindings+set}" = set; then ++if test "${enable_mediacontrol_python_bindings+set}" = set; then : + enableval=$enable_mediacontrol_python_bindings; + fi + +@@ -64785,28 +42022,25 @@ fi + + + # Check whether --enable-java-bindings was given. +-if test "${enable_java_bindings+set}" = set; then ++if test "${enable_java_bindings+set}" = set; then : + enableval=$enable_java_bindings; + fi + + if test "${enable_java_bindings}" = "yes" + then +- if test "x${JAVA_HOME}" == "x"; then +- { { echo "$as_me:$LINENO: error: Please set the JAVA_HOME variable to your JDK environment" >&5 +-echo "$as_me: error: Please set the JAVA_HOME variable to your JDK environment" >&2;} +- { (exit 1); exit 1; }; } ++ if test "x${JAVA_HOME}" == "x"; then : ++ as_fn_error $? "Please set the JAVA_HOME variable to your JDK environment" "$LINENO" 5 + fi + +- + if test "x$JAVAPREFIX" = x; then + test "x$JAVAC" = x && for ac_prog in "gcj$EXEEXT -C" guavac$EXEEXT jikes$EXEEXT javac$EXEEXT + do + # Extract the first word of "$ac_prog", so it can be a program name with args. + set dummy $ac_prog; ac_word=$2 +-{ echo "$as_me:$LINENO: checking for $ac_word" >&5 +-echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6; } +-if test "${ac_cv_prog_JAVAC+set}" = set; then +- echo $ECHO_N "(cached) $ECHO_C" >&6 ++{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 ++$as_echo_n "checking for $ac_word... " >&6; } ++if ${ac_cv_prog_JAVAC+:} false; then : ++ $as_echo_n "(cached) " >&6 + else + if test -n "$JAVAC"; then + ac_cv_prog_JAVAC="$JAVAC" # Let the user override the test. +@@ -64816,25 +42050,25 @@ for as_dir in $PATH + do + IFS=$as_save_IFS + test -z "$as_dir" && as_dir=. +- for ac_exec_ext in '' $ac_executable_extensions; do +- if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then ++ for ac_exec_ext in '' $ac_executable_extensions; do ++ if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then + ac_cv_prog_JAVAC="$ac_prog" +- echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 ++ $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 + break 2 + fi + done +-done ++ done + IFS=$as_save_IFS + + fi + fi + JAVAC=$ac_cv_prog_JAVAC + if test -n "$JAVAC"; then +- { echo "$as_me:$LINENO: result: $JAVAC" >&5 +-echo "${ECHO_T}$JAVAC" >&6; } ++ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $JAVAC" >&5 ++$as_echo "$JAVAC" >&6; } + else +- { echo "$as_me:$LINENO: result: no" >&5 +-echo "${ECHO_T}no" >&6; } ++ { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 ++$as_echo "no" >&6; } + fi + + +@@ -64846,10 +42080,10 @@ else + do + # Extract the first word of "$ac_prog", so it can be a program name with args. + set dummy $ac_prog; ac_word=$2 +-{ echo "$as_me:$LINENO: checking for $ac_word" >&5 +-echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6; } +-if test "${ac_cv_prog_JAVAC+set}" = set; then +- echo $ECHO_N "(cached) $ECHO_C" >&6 ++{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 ++$as_echo_n "checking for $ac_word... " >&6; } ++if ${ac_cv_prog_JAVAC+:} false; then : ++ $as_echo_n "(cached) " >&6 + else + if test -n "$JAVAC"; then + ac_cv_prog_JAVAC="$JAVAC" # Let the user override the test. +@@ -64859,25 +42093,25 @@ for as_dir in $PATH + do + IFS=$as_save_IFS + test -z "$as_dir" && as_dir=. +- for ac_exec_ext in '' $ac_executable_extensions; do +- if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then ++ for ac_exec_ext in '' $ac_executable_extensions; do ++ if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then + ac_cv_prog_JAVAC="$ac_prog" +- echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 ++ $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 + break 2 + fi + done +-done ++ done + IFS=$as_save_IFS + + fi + fi + JAVAC=$ac_cv_prog_JAVAC + if test -n "$JAVAC"; then +- { echo "$as_me:$LINENO: result: $JAVAC" >&5 +-echo "${ECHO_T}$JAVAC" >&6; } ++ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $JAVAC" >&5 ++$as_echo "$JAVAC" >&6; } + else +- { echo "$as_me:$LINENO: result: no" >&5 +-echo "${ECHO_T}no" >&6; } ++ { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 ++$as_echo "no" >&6; } + fi + + +@@ -64886,42 +42120,38 @@ done + test -n "$JAVAC" || JAVAC="$JAVAPREFIX" + + fi +-test "x$JAVAC" = x && { { echo "$as_me:$LINENO: error: no acceptable Java compiler found in \$PATH" >&5 +-echo "$as_me: error: no acceptable Java compiler found in \$PATH" >&2;} +- { (exit 1); exit 1; }; } ++test "x$JAVAC" = x && as_fn_error $? "no acceptable Java compiler found in \$PATH" "$LINENO" 5 + +-{ echo "$as_me:$LINENO: checking if $JAVAC works" >&5 +-echo $ECHO_N "checking if $JAVAC works... $ECHO_C" >&6; } +-if test "${ac_cv_prog_javac_works+set}" = set; then +- echo $ECHO_N "(cached) $ECHO_C" >&6 ++{ $as_echo "$as_me:${as_lineno-$LINENO}: checking if $JAVAC works" >&5 ++$as_echo_n "checking if $JAVAC works... " >&6; } ++if ${ac_cv_prog_javac_works+:} false; then : ++ $as_echo_n "(cached) " >&6 + else + + JAVA_TEST=Test.java + CLASS_TEST=Test.class + cat << \EOF > $JAVA_TEST +-/* #line 64902 "configure" */ ++/* #line 42134 "configure" */ + public class Test { + } + EOF + if { ac_try='$JAVAC $JAVACFLAGS $JAVA_TEST' +- { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 ++ { { eval echo "\"\$as_me\":${as_lineno-$LINENO}: \"$ac_try\""; } >&5 + (eval $ac_try) 2>&5 + ac_status=$? +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); }; } >/dev/null 2>&1; then ++ $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 ++ test $ac_status = 0; }; } >/dev/null 2>&1; then + ac_cv_prog_javac_works=yes + else +- { { echo "$as_me:$LINENO: error: The Java compiler $JAVAC failed (see config.log, check the CLASSPATH?)" >&5 +-echo "$as_me: error: The Java compiler $JAVAC failed (see config.log, check the CLASSPATH?)" >&2;} +- { (exit 1); exit 1; }; } ++ as_fn_error $? "The Java compiler $JAVAC failed (see config.log, check the CLASSPATH?)" "$LINENO" 5 + echo "configure: failed program was:" >&5 + cat $JAVA_TEST >&5 + fi + rm -f $JAVA_TEST $CLASS_TEST + + fi +-{ echo "$as_me:$LINENO: result: $ac_cv_prog_javac_works" >&5 +-echo "${ECHO_T}$ac_cv_prog_javac_works" >&6; } ++{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_prog_javac_works" >&5 ++$as_echo "$ac_cv_prog_javac_works" >&6; } + + + +@@ -64930,10 +42160,10 @@ if test x$JAVAPREFIX = x; then + do + # Extract the first word of "$ac_prog", so it can be a program name with args. + set dummy $ac_prog; ac_word=$2 +-{ echo "$as_me:$LINENO: checking for $ac_word" >&5 +-echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6; } +-if test "${ac_cv_prog_JAVA+set}" = set; then +- echo $ECHO_N "(cached) $ECHO_C" >&6 ++{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 ++$as_echo_n "checking for $ac_word... " >&6; } ++if ${ac_cv_prog_JAVA+:} false; then : ++ $as_echo_n "(cached) " >&6 + else + if test -n "$JAVA"; then + ac_cv_prog_JAVA="$JAVA" # Let the user override the test. +@@ -64943,25 +42173,25 @@ for as_dir in $PATH + do + IFS=$as_save_IFS + test -z "$as_dir" && as_dir=. +- for ac_exec_ext in '' $ac_executable_extensions; do +- if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then ++ for ac_exec_ext in '' $ac_executable_extensions; do ++ if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then + ac_cv_prog_JAVA="$ac_prog" +- echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 ++ $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 + break 2 + fi + done +-done ++ done + IFS=$as_save_IFS + + fi + fi + JAVA=$ac_cv_prog_JAVA + if test -n "$JAVA"; then +- { echo "$as_me:$LINENO: result: $JAVA" >&5 +-echo "${ECHO_T}$JAVA" >&6; } ++ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $JAVA" >&5 ++$as_echo "$JAVA" >&6; } + else +- { echo "$as_me:$LINENO: result: no" >&5 +-echo "${ECHO_T}no" >&6; } ++ { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 ++$as_echo "no" >&6; } + fi + + +@@ -64973,10 +42203,10 @@ else + do + # Extract the first word of "$ac_prog", so it can be a program name with args. + set dummy $ac_prog; ac_word=$2 +-{ echo "$as_me:$LINENO: checking for $ac_word" >&5 +-echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6; } +-if test "${ac_cv_prog_JAVA+set}" = set; then +- echo $ECHO_N "(cached) $ECHO_C" >&6 ++{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 ++$as_echo_n "checking for $ac_word... " >&6; } ++if ${ac_cv_prog_JAVA+:} false; then : ++ $as_echo_n "(cached) " >&6 + else + if test -n "$JAVA"; then + ac_cv_prog_JAVA="$JAVA" # Let the user override the test. +@@ -64986,25 +42216,25 @@ for as_dir in $PATH + do + IFS=$as_save_IFS + test -z "$as_dir" && as_dir=. +- for ac_exec_ext in '' $ac_executable_extensions; do +- if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then ++ for ac_exec_ext in '' $ac_executable_extensions; do ++ if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then + ac_cv_prog_JAVA="$ac_prog" +- echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 ++ $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 + break 2 + fi + done +-done ++ done + IFS=$as_save_IFS + + fi + fi + JAVA=$ac_cv_prog_JAVA + if test -n "$JAVA"; then +- { echo "$as_me:$LINENO: result: $JAVA" >&5 +-echo "${ECHO_T}$JAVA" >&6; } ++ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $JAVA" >&5 ++$as_echo "$JAVA" >&6; } + else +- { echo "$as_me:$LINENO: result: no" >&5 +-echo "${ECHO_T}no" >&6; } ++ { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 ++$as_echo "no" >&6; } + fi + + +@@ -65013,16 +42243,14 @@ done + test -n "$JAVA" || JAVA="$JAVAPREFIX" + + fi +-test x$JAVA = x && { { echo "$as_me:$LINENO: error: no acceptable Java virtual machine found in \$PATH" >&5 +-echo "$as_me: error: no acceptable Java virtual machine found in \$PATH" >&2;} +- { (exit 1); exit 1; }; } ++test x$JAVA = x && as_fn_error $? "no acceptable Java virtual machine found in \$PATH" "$LINENO" 5 + + # Extract the first word of "uudecode$EXEEXT", so it can be a program name with args. + set dummy uudecode$EXEEXT; ac_word=$2 +-{ echo "$as_me:$LINENO: checking for $ac_word" >&5 +-echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6; } +-if test "${ac_cv_prog_uudecode+set}" = set; then +- echo $ECHO_N "(cached) $ECHO_C" >&6 ++{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 ++$as_echo_n "checking for $ac_word... " >&6; } ++if ${ac_cv_prog_uudecode+:} false; then : ++ $as_echo_n "(cached) " >&6 + else + if test -n "$uudecode"; then + ac_cv_prog_uudecode="$uudecode" # Let the user override the test. +@@ -65032,33 +42260,33 @@ for as_dir in $PATH + do + IFS=$as_save_IFS + test -z "$as_dir" && as_dir=. +- for ac_exec_ext in '' $ac_executable_extensions; do +- if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then ++ for ac_exec_ext in '' $ac_executable_extensions; do ++ if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then + ac_cv_prog_uudecode="yes" +- echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 ++ $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 + break 2 + fi + done +-done ++ done + IFS=$as_save_IFS + + fi + fi + uudecode=$ac_cv_prog_uudecode + if test -n "$uudecode"; then +- { echo "$as_me:$LINENO: result: $uudecode" >&5 +-echo "${ECHO_T}$uudecode" >&6; } ++ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $uudecode" >&5 ++$as_echo "$uudecode" >&6; } + else +- { echo "$as_me:$LINENO: result: no" >&5 +-echo "${ECHO_T}no" >&6; } ++ { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 ++$as_echo "no" >&6; } + fi + + + if test x$uudecode = xyes; then +-{ echo "$as_me:$LINENO: checking if uudecode can decode base 64 file" >&5 +-echo $ECHO_N "checking if uudecode can decode base 64 file... $ECHO_C" >&6; } +-if test "${ac_cv_prog_uudecode_base64+set}" = set; then +- echo $ECHO_N "(cached) $ECHO_C" >&6 ++{ $as_echo "$as_me:${as_lineno-$LINENO}: checking if uudecode can decode base 64 file" >&5 ++$as_echo_n "checking if uudecode can decode base 64 file... " >&6; } ++if ${ac_cv_prog_uudecode_base64+:} false; then : ++ $as_echo_n "(cached) " >&6 + else + + cat << \EOF > Test.uue +@@ -65075,24 +42303,22 @@ EOF + if uudecode$EXEEXT Test.uue; then + ac_cv_prog_uudecode_base64=yes + else +- echo "configure: 65078: uudecode had trouble decoding base 64 file 'Test.uue'" >&5 ++ echo "configure: 42306: uudecode had trouble decoding base 64 file 'Test.uue'" >&5 + echo "configure: failed file was:" >&5 + cat Test.uue >&5 + ac_cv_prog_uudecode_base64=no + fi + rm -f Test.uue + fi +-{ echo "$as_me:$LINENO: result: $ac_cv_prog_uudecode_base64" >&5 +-echo "${ECHO_T}$ac_cv_prog_uudecode_base64" >&6; } ++{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_prog_uudecode_base64" >&5 ++$as_echo "$ac_cv_prog_uudecode_base64" >&6; } + fi + if test x$ac_cv_prog_uudecode_base64 != xyes; then + rm -f Test.class +- { echo "$as_me:$LINENO: WARNING: I have to compile Test.class from scratch" >&5 +-echo "$as_me: WARNING: I have to compile Test.class from scratch" >&2;} ++ { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: I have to compile Test.class from scratch" >&5 ++$as_echo "$as_me: WARNING: I have to compile Test.class from scratch" >&2;} + if test x$ac_cv_prog_javac_works = xno; then +- { { echo "$as_me:$LINENO: error: Cannot compile java source. $JAVAC does not work properly" >&5 +-echo "$as_me: error: Cannot compile java source. $JAVAC does not work properly" >&2;} +- { (exit 1); exit 1; }; } ++ as_fn_error $? "Cannot compile java source. $JAVAC does not work properly" "$LINENO" 5 + fi + if test x$ac_cv_prog_javac_works = x; then + +@@ -65101,10 +42327,10 @@ if test "x$JAVAPREFIX" = x; then + do + # Extract the first word of "$ac_prog", so it can be a program name with args. + set dummy $ac_prog; ac_word=$2 +-{ echo "$as_me:$LINENO: checking for $ac_word" >&5 +-echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6; } +-if test "${ac_cv_prog_JAVAC+set}" = set; then +- echo $ECHO_N "(cached) $ECHO_C" >&6 ++{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 ++$as_echo_n "checking for $ac_word... " >&6; } ++if ${ac_cv_prog_JAVAC+:} false; then : ++ $as_echo_n "(cached) " >&6 + else + if test -n "$JAVAC"; then + ac_cv_prog_JAVAC="$JAVAC" # Let the user override the test. +@@ -65114,25 +42340,25 @@ for as_dir in $PATH + do + IFS=$as_save_IFS + test -z "$as_dir" && as_dir=. +- for ac_exec_ext in '' $ac_executable_extensions; do +- if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then ++ for ac_exec_ext in '' $ac_executable_extensions; do ++ if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then + ac_cv_prog_JAVAC="$ac_prog" +- echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 ++ $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 + break 2 + fi + done +-done ++ done + IFS=$as_save_IFS + + fi + fi + JAVAC=$ac_cv_prog_JAVAC + if test -n "$JAVAC"; then +- { echo "$as_me:$LINENO: result: $JAVAC" >&5 +-echo "${ECHO_T}$JAVAC" >&6; } ++ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $JAVAC" >&5 ++$as_echo "$JAVAC" >&6; } + else +- { echo "$as_me:$LINENO: result: no" >&5 +-echo "${ECHO_T}no" >&6; } ++ { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 ++$as_echo "no" >&6; } + fi + + +@@ -65144,10 +42370,10 @@ else + do + # Extract the first word of "$ac_prog", so it can be a program name with args. + set dummy $ac_prog; ac_word=$2 +-{ echo "$as_me:$LINENO: checking for $ac_word" >&5 +-echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6; } +-if test "${ac_cv_prog_JAVAC+set}" = set; then +- echo $ECHO_N "(cached) $ECHO_C" >&6 ++{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 ++$as_echo_n "checking for $ac_word... " >&6; } ++if ${ac_cv_prog_JAVAC+:} false; then : ++ $as_echo_n "(cached) " >&6 + else + if test -n "$JAVAC"; then + ac_cv_prog_JAVAC="$JAVAC" # Let the user override the test. +@@ -65157,25 +42383,25 @@ for as_dir in $PATH + do + IFS=$as_save_IFS + test -z "$as_dir" && as_dir=. +- for ac_exec_ext in '' $ac_executable_extensions; do +- if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then ++ for ac_exec_ext in '' $ac_executable_extensions; do ++ if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then + ac_cv_prog_JAVAC="$ac_prog" +- echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 ++ $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 + break 2 + fi + done +-done ++ done + IFS=$as_save_IFS + + fi + fi + JAVAC=$ac_cv_prog_JAVAC + if test -n "$JAVAC"; then +- { echo "$as_me:$LINENO: result: $JAVAC" >&5 +-echo "${ECHO_T}$JAVAC" >&6; } ++ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $JAVAC" >&5 ++$as_echo "$JAVAC" >&6; } + else +- { echo "$as_me:$LINENO: result: no" >&5 +-echo "${ECHO_T}no" >&6; } ++ { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 ++$as_echo "no" >&6; } + fi + + +@@ -65184,57 +42410,53 @@ done + test -n "$JAVAC" || JAVAC="$JAVAPREFIX" + + fi +-test "x$JAVAC" = x && { { echo "$as_me:$LINENO: error: no acceptable Java compiler found in \$PATH" >&5 +-echo "$as_me: error: no acceptable Java compiler found in \$PATH" >&2;} +- { (exit 1); exit 1; }; } ++test "x$JAVAC" = x && as_fn_error $? "no acceptable Java compiler found in \$PATH" "$LINENO" 5 + +-{ echo "$as_me:$LINENO: checking if $JAVAC works" >&5 +-echo $ECHO_N "checking if $JAVAC works... $ECHO_C" >&6; } +-if test "${ac_cv_prog_javac_works+set}" = set; then +- echo $ECHO_N "(cached) $ECHO_C" >&6 ++{ $as_echo "$as_me:${as_lineno-$LINENO}: checking if $JAVAC works" >&5 ++$as_echo_n "checking if $JAVAC works... " >&6; } ++if ${ac_cv_prog_javac_works+:} false; then : ++ $as_echo_n "(cached) " >&6 + else + + JAVA_TEST=Test.java + CLASS_TEST=Test.class + cat << \EOF > $JAVA_TEST +-/* #line 65200 "configure" */ ++/* #line 42424 "configure" */ + public class Test { + } + EOF + if { ac_try='$JAVAC $JAVACFLAGS $JAVA_TEST' +- { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 ++ { { eval echo "\"\$as_me\":${as_lineno-$LINENO}: \"$ac_try\""; } >&5 + (eval $ac_try) 2>&5 + ac_status=$? +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); }; } >/dev/null 2>&1; then ++ $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 ++ test $ac_status = 0; }; } >/dev/null 2>&1; then + ac_cv_prog_javac_works=yes + else +- { { echo "$as_me:$LINENO: error: The Java compiler $JAVAC failed (see config.log, check the CLASSPATH?)" >&5 +-echo "$as_me: error: The Java compiler $JAVAC failed (see config.log, check the CLASSPATH?)" >&2;} +- { (exit 1); exit 1; }; } ++ as_fn_error $? "The Java compiler $JAVAC failed (see config.log, check the CLASSPATH?)" "$LINENO" 5 + echo "configure: failed program was:" >&5 + cat $JAVA_TEST >&5 + fi + rm -f $JAVA_TEST $CLASS_TEST + + fi +-{ echo "$as_me:$LINENO: result: $ac_cv_prog_javac_works" >&5 +-echo "${ECHO_T}$ac_cv_prog_javac_works" >&6; } ++{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_prog_javac_works" >&5 ++$as_echo "$ac_cv_prog_javac_works" >&6; } + + + fi + fi +-{ echo "$as_me:$LINENO: checking if $JAVA works" >&5 +-echo $ECHO_N "checking if $JAVA works... $ECHO_C" >&6; } +-if test "${ac_cv_prog_java_works+set}" = set; then +- echo $ECHO_N "(cached) $ECHO_C" >&6 ++{ $as_echo "$as_me:${as_lineno-$LINENO}: checking if $JAVA works" >&5 ++$as_echo_n "checking if $JAVA works... " >&6; } ++if ${ac_cv_prog_java_works+:} false; then : ++ $as_echo_n "(cached) " >&6 + else + + JAVA_TEST=Test.java + CLASS_TEST=Test.class + TEST=Test + cat << \EOF > $JAVA_TEST +-/* [#]line 65237 "configure" */ ++/* [#]line 42459 "configure" */ + public class Test { + public static void main (String args[]) { + System.exit (0); +@@ -65242,39 +42464,35 @@ public static void main (String args[]) { + EOF + if test x$ac_cv_prog_uudecode_base64 != xyes; then + if { ac_try='$JAVAC $JAVACFLAGS $JAVA_TEST' +- { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 ++ { { eval echo "\"\$as_me\":${as_lineno-$LINENO}: \"$ac_try\""; } >&5 + (eval $ac_try) 2>&5 + ac_status=$? +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); }; } && test -s $CLASS_TEST; then ++ $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 ++ test $ac_status = 0; }; } && test -s $CLASS_TEST; then + : + else + echo "configure: failed program was:" >&5 + cat $JAVA_TEST >&5 +- { { echo "$as_me:$LINENO: error: The Java compiler $JAVAC failed (see config.log, check the CLASSPATH?)" >&5 +-echo "$as_me: error: The Java compiler $JAVAC failed (see config.log, check the CLASSPATH?)" >&2;} +- { (exit 1); exit 1; }; } ++ as_fn_error $? "The Java compiler $JAVAC failed (see config.log, check the CLASSPATH?)" "$LINENO" 5 + fi + fi + if { ac_try='$JAVA $JAVAFLAGS $TEST' +- { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 ++ { { eval echo "\"\$as_me\":${as_lineno-$LINENO}: \"$ac_try\""; } >&5 + (eval $ac_try) 2>&5 + ac_status=$? +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); }; } >/dev/null 2>&1; then ++ $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 ++ test $ac_status = 0; }; } >/dev/null 2>&1; then + ac_cv_prog_java_works=yes + else + echo "configure: failed program was:" >&5 + cat $JAVA_TEST >&5 +- { { echo "$as_me:$LINENO: error: The Java VM $JAVA failed (see config.log, check the CLASSPATH?)" >&5 +-echo "$as_me: error: The Java VM $JAVA failed (see config.log, check the CLASSPATH?)" >&2;} +- { (exit 1); exit 1; }; } ++ as_fn_error $? "The Java VM $JAVA failed (see config.log, check the CLASSPATH?)" "$LINENO" 5 + fi + rm -fr $JAVA_TEST $CLASS_TEST Test.uue + + fi +-{ echo "$as_me:$LINENO: result: $ac_cv_prog_java_works" >&5 +-echo "${ECHO_T}$ac_cv_prog_java_works" >&6; } ++{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_prog_java_works" >&5 ++$as_echo "$ac_cv_prog_java_works" >&6; } + + + +@@ -65291,7 +42509,7 @@ fi + + + # Check whether --enable-testsuite was given. +-if test "${enable_testsuite+set}" = set; then ++if test "${enable_testsuite+set}" = set; then : + enableval=$enable_testsuite; + fi + +@@ -65326,18 +42544,14 @@ fi + + if test "${SYS}" = "mingw32" -o "${SYS}" = "cygwin" + then +- { echo "$as_me:$LINENO: checking for LoadUnicowsSymbol in -lunicows" >&5 +-echo $ECHO_N "checking for LoadUnicowsSymbol in -lunicows... $ECHO_C" >&6; } +-if test "${ac_cv_lib_unicows_LoadUnicowsSymbol+set}" = set; then +- echo $ECHO_N "(cached) $ECHO_C" >&6 ++ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for LoadUnicowsSymbol in -lunicows" >&5 ++$as_echo_n "checking for LoadUnicowsSymbol in -lunicows... " >&6; } ++if ${ac_cv_lib_unicows_LoadUnicowsSymbol+:} false; then : ++ $as_echo_n "(cached) " >&6 + else + ac_check_lib_save_LIBS=$LIBS + LIBS="-lunicows $LIBS" +-cat >conftest.$ac_ext <<_ACEOF +-/* confdefs.h. */ +-_ACEOF +-cat confdefs.h >>conftest.$ac_ext +-cat >>conftest.$ac_ext <<_ACEOF ++cat confdefs.h - <<_ACEOF >conftest.$ac_ext + /* end confdefs.h. */ + + /* Override any GCC internal prototype to avoid an error. +@@ -65355,39 +42569,18 @@ return LoadUnicowsSymbol (); + return 0; + } + _ACEOF +-rm -f conftest.$ac_objext conftest$ac_exeext +-if { (ac_try="$ac_link" +-case "(($ac_try" in +- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; +- *) ac_try_echo=$ac_try;; +-esac +-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 +- (eval "$ac_link") 2>conftest.er1 +- ac_status=$? +- grep -v '^ *+' conftest.er1 >conftest.err +- rm -f conftest.er1 +- cat conftest.err >&5 +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); } && { +- test -z "$ac_c_werror_flag" || +- test ! -s conftest.err +- } && test -s conftest$ac_exeext && +- $as_test_x conftest$ac_exeext; then ++if ac_fn_c_try_link "$LINENO"; then : + ac_cv_lib_unicows_LoadUnicowsSymbol=yes + else +- echo "$as_me: failed program was:" >&5 +-sed 's/^/| /' conftest.$ac_ext >&5 +- +- ac_cv_lib_unicows_LoadUnicowsSymbol=no ++ ac_cv_lib_unicows_LoadUnicowsSymbol=no + fi +- +-rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ +- conftest$ac_exeext conftest.$ac_ext ++rm -f core conftest.err conftest.$ac_objext \ ++ conftest$ac_exeext conftest.$ac_ext + LIBS=$ac_check_lib_save_LIBS + fi +-{ echo "$as_me:$LINENO: result: $ac_cv_lib_unicows_LoadUnicowsSymbol" >&5 +-echo "${ECHO_T}$ac_cv_lib_unicows_LoadUnicowsSymbol" >&6; } +-if test $ac_cv_lib_unicows_LoadUnicowsSymbol = yes; then ++{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_unicows_LoadUnicowsSymbol" >&5 ++$as_echo "$ac_cv_lib_unicows_LoadUnicowsSymbol" >&6; } ++if test "x$ac_cv_lib_unicows_LoadUnicowsSymbol" = xyes; then : + + + for element in vlc; do +@@ -65518,7 +42711,7 @@ builtin_support=false + plugin_support=: + + # Check whether --enable-plugins was given. +-if test "${enable_plugins+set}" = set; then ++if test "${enable_plugins+set}" = set; then : + enableval=$enable_plugins; if test "${enable_plugins}" = "no" + then + plugin_support=false +@@ -65536,9 +42729,7 @@ fi + if ${plugin_support} + then + +-cat >>confdefs.h <<\_ACEOF +-#define HAVE_DYNAMIC_PLUGINS 1 +-_ACEOF ++$as_echo "#define HAVE_DYNAMIC_PLUGINS 1" >>confdefs.h + + for plugin in `echo ${PLUGINS}` + do +@@ -65580,12 +42771,11 @@ else + fi + + +-if test "x${enable_shared_libvlc}" = "x"; then ++if test "x${enable_shared_libvlc}" = "x"; then : + enable_shared_libvlc=no + fi + + +- + if test "${enable_shared_libvlc}" != "no"; then + BUILD_SHARED_TRUE= + BUILD_SHARED_FALSE='#' +@@ -65594,19 +42784,16 @@ else + BUILD_SHARED_FALSE= + fi + +-if test "${enable_shared_libvlc}" != "no" || test "${enable_libtool}" != "no"; then ++if test "${enable_shared_libvlc}" != "no" || test "${enable_libtool}" != "no"; then : + + +-cat >>confdefs.h <<\_ACEOF +-#define HAVE_SHARED_LIBVLC 1 +-_ACEOF ++$as_echo "#define HAVE_SHARED_LIBVLC 1" >>confdefs.h + + FILE_LIBVLC_DLL="!define LIBVLC_DLL libvlc.dll" + else + FILE_LIBVLC_DLL="" + fi + +- + case "${target_cpu}" in + x86_64) + pic=pic +@@ -65745,8 +42932,8 @@ for i in `echo "${BUILTINS}" | sed -e 's@^ */@@g'` ; do LDFLAGS_libvlc="${LDFLAG + + + +- { echo "$as_me:$LINENO: result: configure: creating ./vlc-config.in" >&5 +-echo "${ECHO_T}configure: creating ./vlc-config.in" >&6; } ++ { $as_echo "$as_me:${as_lineno-$LINENO}: result: configure: creating ./vlc-config.in" >&5 ++$as_echo "configure: creating ./vlc-config.in" >&6; } + + am_all_modules="`for x in ${am_modules_with_cppflags} ${am_modules_with_cflags} ${am_modules_with_cxxflags} ${am_modules_with_objcflags} ${am_modules_with_ldflags}; do echo $x; done | sort | uniq`" + +@@ -66127,12 +43314,13 @@ _ACEOF + case $ac_val in #( + *${as_nl}*) + case $ac_var in #( +- *_cv_*) { echo "$as_me:$LINENO: WARNING: Cache variable $ac_var contains a newline." >&5 +-echo "$as_me: WARNING: Cache variable $ac_var contains a newline." >&2;} ;; ++ *_cv_*) { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: cache variable $ac_var contains a newline" >&5 ++$as_echo "$as_me: WARNING: cache variable $ac_var contains a newline" >&2;} ;; + esac + case $ac_var in #( + _ | IFS | as_nl) ;; #( +- *) $as_unset $ac_var ;; ++ BASH_ARGV | BASH_SOURCE) eval $ac_var= ;; #( ++ *) { eval $ac_var=; unset $ac_var;} ;; + esac ;; + esac + done +@@ -66140,8 +43328,8 @@ echo "$as_me: WARNING: Cache variable $ac_var contains a newline." >&2;} ;; + (set) 2>&1 | + case $as_nl`(ac_space=' '; set) 2>&1` in #( + *${as_nl}ac_space=\ *) +- # `set' does not quote correctly, so add quotes (double-quote +- # substitution turns \\\\ into \\, and sed turns \\ into \). ++ # `set' does not quote correctly, so add quotes: double-quote ++ # substitution turns \\\\ into \\, and sed turns \\ into \. + sed -n \ + "s/'/'\\\\''/g; + s/^\\([_$as_cr_alnum]*_cv_[_$as_cr_alnum]*\\)=\\(.*\\)/\\1='\\2'/p" +@@ -66163,13 +43351,24 @@ echo "$as_me: WARNING: Cache variable $ac_var contains a newline." >&2;} ;; + :end' >>confcache + if diff "$cache_file" confcache >/dev/null 2>&1; then :; else + if test -w "$cache_file"; then +- test "x$cache_file" != "x/dev/null" && +- { echo "$as_me:$LINENO: updating cache $cache_file" >&5 +-echo "$as_me: updating cache $cache_file" >&6;} +- cat confcache >$cache_file ++ if test "x$cache_file" != "x/dev/null"; then ++ { $as_echo "$as_me:${as_lineno-$LINENO}: updating cache $cache_file" >&5 ++$as_echo "$as_me: updating cache $cache_file" >&6;} ++ if test ! -f "$cache_file" || test -h "$cache_file"; then ++ cat confcache >"$cache_file" ++ else ++ case $cache_file in #( ++ */* | ?:*) ++ mv -f confcache "$cache_file"$$ && ++ mv -f "$cache_file"$$ "$cache_file" ;; #( ++ *) ++ mv -f confcache "$cache_file" ;; ++ esac ++ fi ++ fi + else +- { echo "$as_me:$LINENO: not updating unwritable cache $cache_file" >&5 +-echo "$as_me: not updating unwritable cache $cache_file" >&6;} ++ { $as_echo "$as_me:${as_lineno-$LINENO}: not updating unwritable cache $cache_file" >&5 ++$as_echo "$as_me: not updating unwritable cache $cache_file" >&6;} + fi + fi + rm -f confcache +@@ -66182,14 +43381,15 @@ DEFS=-DHAVE_CONFIG_H + + ac_libobjs= + ac_ltlibobjs= ++U= + for ac_i in : $LIBOBJS; do test "x$ac_i" = x: && continue + # 1. Remove the extension, and $U if already installed. + ac_script='s/\$U\././;s/\.o$//;s/\.obj$//' +- ac_i=`echo "$ac_i" | sed "$ac_script"` ++ ac_i=`$as_echo "$ac_i" | sed "$ac_script"` + # 2. Prepend LIBOBJDIR. When used with automake>=1.10 LIBOBJDIR + # will be set to the directory where LIBOBJS objects are built. +- ac_libobjs="$ac_libobjs \${LIBOBJDIR}$ac_i\$U.$ac_objext" +- ac_ltlibobjs="$ac_ltlibobjs \${LIBOBJDIR}$ac_i"'$U.lo' ++ as_fn_append ac_libobjs " \${LIBOBJDIR}$ac_i\$U.$ac_objext" ++ as_fn_append ac_ltlibobjs " \${LIBOBJDIR}$ac_i"'$U.lo' + done + LIBOBJS=$ac_libobjs + +@@ -66197,166 +43397,106 @@ LTLIBOBJS=$ac_ltlibobjs + + + if test -z "${MAINTAINER_MODE_TRUE}" && test -z "${MAINTAINER_MODE_FALSE}"; then +- { { echo "$as_me:$LINENO: error: conditional \"MAINTAINER_MODE\" was never defined. +-Usually this means the macro was only invoked conditionally." >&5 +-echo "$as_me: error: conditional \"MAINTAINER_MODE\" was never defined. +-Usually this means the macro was only invoked conditionally." >&2;} +- { (exit 1); exit 1; }; } ++ as_fn_error $? "conditional \"MAINTAINER_MODE\" was never defined. ++Usually this means the macro was only invoked conditionally." "$LINENO" 5 + fi + if test -z "${AMDEP_TRUE}" && test -z "${AMDEP_FALSE}"; then +- { { echo "$as_me:$LINENO: error: conditional \"AMDEP\" was never defined. +-Usually this means the macro was only invoked conditionally." >&5 +-echo "$as_me: error: conditional \"AMDEP\" was never defined. +-Usually this means the macro was only invoked conditionally." >&2;} +- { (exit 1); exit 1; }; } ++ as_fn_error $? "conditional \"AMDEP\" was never defined. ++Usually this means the macro was only invoked conditionally." "$LINENO" 5 + fi + if test -z "${am__fastdepCC_TRUE}" && test -z "${am__fastdepCC_FALSE}"; then +- { { echo "$as_me:$LINENO: error: conditional \"am__fastdepCC\" was never defined. +-Usually this means the macro was only invoked conditionally." >&5 +-echo "$as_me: error: conditional \"am__fastdepCC\" was never defined. +-Usually this means the macro was only invoked conditionally." >&2;} +- { (exit 1); exit 1; }; } ++ as_fn_error $? "conditional \"am__fastdepCC\" was never defined. ++Usually this means the macro was only invoked conditionally." "$LINENO" 5 + fi + if test -z "${am__fastdepCXX_TRUE}" && test -z "${am__fastdepCXX_FALSE}"; then +- { { echo "$as_me:$LINENO: error: conditional \"am__fastdepCXX\" was never defined. +-Usually this means the macro was only invoked conditionally." >&5 +-echo "$as_me: error: conditional \"am__fastdepCXX\" was never defined. +-Usually this means the macro was only invoked conditionally." >&2;} +- { (exit 1); exit 1; }; } ++ as_fn_error $? "conditional \"am__fastdepCXX\" was never defined. ++Usually this means the macro was only invoked conditionally." "$LINENO" 5 + fi + if test -z "${am__fastdepOBJC_TRUE}" && test -z "${am__fastdepOBJC_FALSE}"; then +- { { echo "$as_me:$LINENO: error: conditional \"am__fastdepOBJC\" was never defined. +-Usually this means the macro was only invoked conditionally." >&5 +-echo "$as_me: error: conditional \"am__fastdepOBJC\" was never defined. +-Usually this means the macro was only invoked conditionally." >&2;} +- { (exit 1); exit 1; }; } ++ as_fn_error $? "conditional \"am__fastdepOBJC\" was never defined. ++Usually this means the macro was only invoked conditionally." "$LINENO" 5 + fi + if test -z "${USE_LIBTOOL_TRUE}" && test -z "${USE_LIBTOOL_FALSE}"; then +- { { echo "$as_me:$LINENO: error: conditional \"USE_LIBTOOL\" was never defined. +-Usually this means the macro was only invoked conditionally." >&5 +-echo "$as_me: error: conditional \"USE_LIBTOOL\" was never defined. +-Usually this means the macro was only invoked conditionally." >&2;} +- { (exit 1); exit 1; }; } ++ as_fn_error $? "conditional \"USE_LIBTOOL\" was never defined. ++Usually this means the macro was only invoked conditionally." "$LINENO" 5 + fi + if test -z "${HAVE_BEOS_TRUE}" && test -z "${HAVE_BEOS_FALSE}"; then +- { { echo "$as_me:$LINENO: error: conditional \"HAVE_BEOS\" was never defined. +-Usually this means the macro was only invoked conditionally." >&5 +-echo "$as_me: error: conditional \"HAVE_BEOS\" was never defined. +-Usually this means the macro was only invoked conditionally." >&2;} +- { (exit 1); exit 1; }; } ++ as_fn_error $? "conditional \"HAVE_BEOS\" was never defined. ++Usually this means the macro was only invoked conditionally." "$LINENO" 5 ++fi ++if test -z "${HAVE_HAIKU_TRUE}" && test -z "${HAVE_HAIKU_FALSE}"; then ++ as_fn_error $? "conditional \"HAVE_HAIKU\" was never defined. ++Usually this means the macro was only invoked conditionally." "$LINENO" 5 + fi + if test -z "${HAVE_DARWIN_TRUE}" && test -z "${HAVE_DARWIN_FALSE}"; then +- { { echo "$as_me:$LINENO: error: conditional \"HAVE_DARWIN\" was never defined. +-Usually this means the macro was only invoked conditionally." >&5 +-echo "$as_me: error: conditional \"HAVE_DARWIN\" was never defined. +-Usually this means the macro was only invoked conditionally." >&2;} +- { (exit 1); exit 1; }; } ++ as_fn_error $? "conditional \"HAVE_DARWIN\" was never defined. ++Usually this means the macro was only invoked conditionally." "$LINENO" 5 + fi + if test -z "${HAVE_WIN32_TRUE}" && test -z "${HAVE_WIN32_FALSE}"; then +- { { echo "$as_me:$LINENO: error: conditional \"HAVE_WIN32\" was never defined. +-Usually this means the macro was only invoked conditionally." >&5 +-echo "$as_me: error: conditional \"HAVE_WIN32\" was never defined. +-Usually this means the macro was only invoked conditionally." >&2;} +- { (exit 1); exit 1; }; } ++ as_fn_error $? "conditional \"HAVE_WIN32\" was never defined. ++Usually this means the macro was only invoked conditionally." "$LINENO" 5 + fi + if test -z "${HAVE_WINCE_TRUE}" && test -z "${HAVE_WINCE_FALSE}"; then +- { { echo "$as_me:$LINENO: error: conditional \"HAVE_WINCE\" was never defined. +-Usually this means the macro was only invoked conditionally." >&5 +-echo "$as_me: error: conditional \"HAVE_WINCE\" was never defined. +-Usually this means the macro was only invoked conditionally." >&2;} +- { (exit 1); exit 1; }; } ++ as_fn_error $? "conditional \"HAVE_WINCE\" was never defined. ++Usually this means the macro was only invoked conditionally." "$LINENO" 5 + fi + if test -z "${BUILD_GETOPT_TRUE}" && test -z "${BUILD_GETOPT_FALSE}"; then +- { { echo "$as_me:$LINENO: error: conditional \"BUILD_GETOPT\" was never defined. +-Usually this means the macro was only invoked conditionally." >&5 +-echo "$as_me: error: conditional \"BUILD_GETOPT\" was never defined. +-Usually this means the macro was only invoked conditionally." >&2;} +- { (exit 1); exit 1; }; } ++ as_fn_error $? "conditional \"BUILD_GETOPT\" was never defined. ++Usually this means the macro was only invoked conditionally." "$LINENO" 5 + fi + if test -z "${BUILD_DIRENT_TRUE}" && test -z "${BUILD_DIRENT_FALSE}"; then +- { { echo "$as_me:$LINENO: error: conditional \"BUILD_DIRENT\" was never defined. +-Usually this means the macro was only invoked conditionally." >&5 +-echo "$as_me: error: conditional \"BUILD_DIRENT\" was never defined. +-Usually this means the macro was only invoked conditionally." >&2;} +- { (exit 1); exit 1; }; } ++ as_fn_error $? "conditional \"BUILD_DIRENT\" was never defined. ++Usually this means the macro was only invoked conditionally." "$LINENO" 5 + fi + if test -z "${LOADER_TRUE}" && test -z "${LOADER_FALSE}"; then +- { { echo "$as_me:$LINENO: error: conditional \"LOADER\" was never defined. +-Usually this means the macro was only invoked conditionally." >&5 +-echo "$as_me: error: conditional \"LOADER\" was never defined. +-Usually this means the macro was only invoked conditionally." >&2;} +- { (exit 1); exit 1; }; } ++ as_fn_error $? "conditional \"LOADER\" was never defined. ++Usually this means the macro was only invoked conditionally." "$LINENO" 5 + fi + if test -z "${HAS_MIDL_COMPILER_TRUE}" && test -z "${HAS_MIDL_COMPILER_FALSE}"; then +- { { echo "$as_me:$LINENO: error: conditional \"HAS_MIDL_COMPILER\" was never defined. +-Usually this means the macro was only invoked conditionally." >&5 +-echo "$as_me: error: conditional \"HAS_MIDL_COMPILER\" was never defined. +-Usually this means the macro was only invoked conditionally." >&2;} +- { (exit 1); exit 1; }; } ++ as_fn_error $? "conditional \"HAS_MIDL_COMPILER\" was never defined. ++Usually this means the macro was only invoked conditionally." "$LINENO" 5 + fi + if test -z "${HAS_WIDL_COMPILER_TRUE}" && test -z "${HAS_WIDL_COMPILER_FALSE}"; then +- { { echo "$as_me:$LINENO: error: conditional \"HAS_WIDL_COMPILER\" was never defined. +-Usually this means the macro was only invoked conditionally." >&5 +-echo "$as_me: error: conditional \"HAS_WIDL_COMPILER\" was never defined. +-Usually this means the macro was only invoked conditionally." >&2;} +- { (exit 1); exit 1; }; } ++ as_fn_error $? "conditional \"HAS_WIDL_COMPILER\" was never defined. ++Usually this means the macro was only invoked conditionally." "$LINENO" 5 + fi + if test -z "${BUILD_ACTIVEX_TRUE}" && test -z "${BUILD_ACTIVEX_FALSE}"; then +- { { echo "$as_me:$LINENO: error: conditional \"BUILD_ACTIVEX\" was never defined. +-Usually this means the macro was only invoked conditionally." >&5 +-echo "$as_me: error: conditional \"BUILD_ACTIVEX\" was never defined. +-Usually this means the macro was only invoked conditionally." >&2;} +- { (exit 1); exit 1; }; } ++ as_fn_error $? "conditional \"BUILD_ACTIVEX\" was never defined. ++Usually this means the macro was only invoked conditionally." "$LINENO" 5 + fi + if test -z "${BUILD_MOZILLA_TRUE}" && test -z "${BUILD_MOZILLA_FALSE}"; then +- { { echo "$as_me:$LINENO: error: conditional \"BUILD_MOZILLA\" was never defined. +-Usually this means the macro was only invoked conditionally." >&5 +-echo "$as_me: error: conditional \"BUILD_MOZILLA\" was never defined. +-Usually this means the macro was only invoked conditionally." >&2;} +- { (exit 1); exit 1; }; } ++ as_fn_error $? "conditional \"BUILD_MOZILLA\" was never defined. ++Usually this means the macro was only invoked conditionally." "$LINENO" 5 + fi + if test -z "${BUILD_PYTHON_TRUE}" && test -z "${BUILD_PYTHON_FALSE}"; then +- { { echo "$as_me:$LINENO: error: conditional \"BUILD_PYTHON\" was never defined. +-Usually this means the macro was only invoked conditionally." >&5 +-echo "$as_me: error: conditional \"BUILD_PYTHON\" was never defined. +-Usually this means the macro was only invoked conditionally." >&2;} +- { (exit 1); exit 1; }; } ++ as_fn_error $? "conditional \"BUILD_PYTHON\" was never defined. ++Usually this means the macro was only invoked conditionally." "$LINENO" 5 + fi + if test -z "${BUILD_JAVA_TRUE}" && test -z "${BUILD_JAVA_FALSE}"; then +- { { echo "$as_me:$LINENO: error: conditional \"BUILD_JAVA\" was never defined. +-Usually this means the macro was only invoked conditionally." >&5 +-echo "$as_me: error: conditional \"BUILD_JAVA\" was never defined. +-Usually this means the macro was only invoked conditionally." >&2;} +- { (exit 1); exit 1; }; } ++ as_fn_error $? "conditional \"BUILD_JAVA\" was never defined. ++Usually this means the macro was only invoked conditionally." "$LINENO" 5 + fi + if test -z "${HAVE_PLUGINS_TRUE}" && test -z "${HAVE_PLUGINS_FALSE}"; then +- { { echo "$as_me:$LINENO: error: conditional \"HAVE_PLUGINS\" was never defined. +-Usually this means the macro was only invoked conditionally." >&5 +-echo "$as_me: error: conditional \"HAVE_PLUGINS\" was never defined. +-Usually this means the macro was only invoked conditionally." >&2;} +- { (exit 1); exit 1; }; } ++ as_fn_error $? "conditional \"HAVE_PLUGINS\" was never defined. ++Usually this means the macro was only invoked conditionally." "$LINENO" 5 + fi + if test -z "${HAVE_BUILTINS_TRUE}" && test -z "${HAVE_BUILTINS_FALSE}"; then +- { { echo "$as_me:$LINENO: error: conditional \"HAVE_BUILTINS\" was never defined. +-Usually this means the macro was only invoked conditionally." >&5 +-echo "$as_me: error: conditional \"HAVE_BUILTINS\" was never defined. +-Usually this means the macro was only invoked conditionally." >&2;} +- { (exit 1); exit 1; }; } ++ as_fn_error $? "conditional \"HAVE_BUILTINS\" was never defined. ++Usually this means the macro was only invoked conditionally." "$LINENO" 5 + fi + if test -z "${BUILD_SHARED_TRUE}" && test -z "${BUILD_SHARED_FALSE}"; then +- { { echo "$as_me:$LINENO: error: conditional \"BUILD_SHARED\" was never defined. +-Usually this means the macro was only invoked conditionally." >&5 +-echo "$as_me: error: conditional \"BUILD_SHARED\" was never defined. +-Usually this means the macro was only invoked conditionally." >&2;} +- { (exit 1); exit 1; }; } ++ as_fn_error $? "conditional \"BUILD_SHARED\" was never defined. ++Usually this means the macro was only invoked conditionally." "$LINENO" 5 + fi + +-: ${CONFIG_STATUS=./config.status} ++: "${CONFIG_STATUS=./config.status}" ++ac_write_fail=0 + ac_clean_files_save=$ac_clean_files + ac_clean_files="$ac_clean_files $CONFIG_STATUS" +-{ echo "$as_me:$LINENO: creating $CONFIG_STATUS" >&5 +-echo "$as_me: creating $CONFIG_STATUS" >&6;} +-cat >$CONFIG_STATUS <<_ACEOF ++{ $as_echo "$as_me:${as_lineno-$LINENO}: creating $CONFIG_STATUS" >&5 ++$as_echo "$as_me: creating $CONFIG_STATUS" >&6;} ++as_write_fail=0 ++cat >$CONFIG_STATUS <<_ASEOF || as_write_fail=1 + #! $SHELL + # Generated by $as_me. + # Run this file to recreate the current configuration. +@@ -66366,59 +43506,79 @@ cat >$CONFIG_STATUS <<_ACEOF + debug=false + ac_cs_recheck=false + ac_cs_silent=false +-SHELL=\${CONFIG_SHELL-$SHELL} +-_ACEOF + +-cat >>$CONFIG_STATUS <<\_ACEOF +-## --------------------- ## +-## M4sh Initialization. ## +-## --------------------- ## ++SHELL=\${CONFIG_SHELL-$SHELL} ++export SHELL ++_ASEOF ++cat >>$CONFIG_STATUS <<\_ASEOF || as_write_fail=1 ++## -------------------- ## ++## M4sh Initialization. ## ++## -------------------- ## + + # Be more Bourne compatible + DUALCASE=1; export DUALCASE # for MKS sh +-if test -n "${ZSH_VERSION+set}" && (emulate sh) >/dev/null 2>&1; then ++if test -n "${ZSH_VERSION+set}" && (emulate sh) >/dev/null 2>&1; then : + emulate sh + NULLCMD=: +- # Zsh 3.x and 4.x performs word splitting on ${1+"$@"}, which ++ # Pre-4.2 versions of Zsh do word splitting on ${1+"$@"}, which + # is contrary to our usage. Disable this feature. + alias -g '${1+"$@"}'='"$@"' + setopt NO_GLOB_SUBST + else +- case `(set -o) 2>/dev/null` in +- *posix*) set -o posix ;; ++ case `(set -o) 2>/dev/null` in #( ++ *posix*) : ++ set -o posix ;; #( ++ *) : ++ ;; + esac +- + fi + + +- +- +-# PATH needs CR +-# Avoid depending upon Character Ranges. +-as_cr_letters='abcdefghijklmnopqrstuvwxyz' +-as_cr_LETTERS='ABCDEFGHIJKLMNOPQRSTUVWXYZ' +-as_cr_Letters=$as_cr_letters$as_cr_LETTERS +-as_cr_digits='0123456789' +-as_cr_alnum=$as_cr_Letters$as_cr_digits +- +-# The user is always right. +-if test "${PATH_SEPARATOR+set}" != set; then +- echo "#! /bin/sh" >conf$$.sh +- echo "exit 0" >>conf$$.sh +- chmod +x conf$$.sh +- if (PATH="/nonexistent;."; conf$$.sh) >/dev/null 2>&1; then +- PATH_SEPARATOR=';' ++as_nl=' ++' ++export as_nl ++# Printing a long string crashes Solaris 7 /usr/bin/printf. ++as_echo='\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\' ++as_echo=$as_echo$as_echo$as_echo$as_echo$as_echo ++as_echo=$as_echo$as_echo$as_echo$as_echo$as_echo$as_echo ++# Prefer a ksh shell builtin over an external printf program on Solaris, ++# but without wasting forks for bash or zsh. ++if test -z "$BASH_VERSION$ZSH_VERSION" \ ++ && (test "X`print -r -- $as_echo`" = "X$as_echo") 2>/dev/null; then ++ as_echo='print -r --' ++ as_echo_n='print -rn --' ++elif (test "X`printf %s $as_echo`" = "X$as_echo") 2>/dev/null; then ++ as_echo='printf %s\n' ++ as_echo_n='printf %s' ++else ++ if test "X`(/usr/ucb/echo -n -n $as_echo) 2>/dev/null`" = "X-n $as_echo"; then ++ as_echo_body='eval /usr/ucb/echo -n "$1$as_nl"' ++ as_echo_n='/usr/ucb/echo -n' + else +- PATH_SEPARATOR=: +- fi +- rm -f conf$$.sh ++ as_echo_body='eval expr "X$1" : "X\\(.*\\)"' ++ as_echo_n_body='eval ++ arg=$1; ++ case $arg in #( ++ *"$as_nl"*) ++ expr "X$arg" : "X\\(.*\\)$as_nl"; ++ arg=`expr "X$arg" : ".*$as_nl\\(.*\\)"`;; ++ esac; ++ expr "X$arg" : "X\\(.*\\)" | tr -d "$as_nl" ++ ' ++ export as_echo_n_body ++ as_echo_n='sh -c $as_echo_n_body as_echo' ++ fi ++ export as_echo_body ++ as_echo='sh -c $as_echo_body as_echo' + fi + +-# Support unset when possible. +-if ( (MAIL=60; unset MAIL) || exit) >/dev/null 2>&1; then +- as_unset=unset +-else +- as_unset=false ++# The user is always right. ++if test "${PATH_SEPARATOR+set}" != set; then ++ PATH_SEPARATOR=: ++ (PATH='/bin;/bin'; FPATH=$PATH; sh -c :) >/dev/null 2>&1 && { ++ (PATH='/bin:/bin'; FPATH=$PATH; sh -c :) >/dev/null 2>&1 || ++ PATH_SEPARATOR=';' ++ } + fi + + +@@ -66427,20 +43587,19 @@ fi + # there to prevent editors from complaining about space-tab. + # (If _AS_PATH_WALK were called with IFS unset, it would disable word + # splitting by setting IFS to empty value.) +-as_nl=' +-' + IFS=" "" $as_nl" + + # Find who we are. Look in the path if we contain no directory separator. +-case $0 in ++as_myself= ++case $0 in #(( + *[\\/]* ) as_myself=$0 ;; + *) as_save_IFS=$IFS; IFS=$PATH_SEPARATOR + for as_dir in $PATH + do + IFS=$as_save_IFS + test -z "$as_dir" && as_dir=. +- test -r "$as_dir/$0" && as_myself=$as_dir/$0 && break +-done ++ test -r "$as_dir/$0" && as_myself=$as_dir/$0 && break ++ done + IFS=$as_save_IFS + + ;; +@@ -66451,32 +43610,111 @@ if test "x$as_myself" = x; then + as_myself=$0 + fi + if test ! -f "$as_myself"; then +- echo "$as_myself: error: cannot find myself; rerun with an absolute file name" >&2 +- { (exit 1); exit 1; } ++ $as_echo "$as_myself: error: cannot find myself; rerun with an absolute file name" >&2 ++ exit 1 + fi + +-# Work around bugs in pre-3.0 UWIN ksh. +-for as_var in ENV MAIL MAILPATH +-do ($as_unset $as_var) >/dev/null 2>&1 && $as_unset $as_var ++# Unset variables that we do not need and which cause bugs (e.g. in ++# pre-3.0 UWIN ksh). But do not cause bugs in bash 2.01; the "|| exit 1" ++# suppresses any "Segmentation fault" message there. '((' could ++# trigger a bug in pdksh 5.2.14. ++for as_var in BASH_ENV ENV MAIL MAILPATH ++do eval test x\${$as_var+set} = xset \ ++ && ( (unset $as_var) || exit 1) >/dev/null 2>&1 && unset $as_var || : + done + PS1='$ ' + PS2='> ' + PS4='+ ' + + # NLS nuisances. +-for as_var in \ +- LANG LANGUAGE LC_ADDRESS LC_ALL LC_COLLATE LC_CTYPE LC_IDENTIFICATION \ +- LC_MEASUREMENT LC_MESSAGES LC_MONETARY LC_NAME LC_NUMERIC LC_PAPER \ +- LC_TELEPHONE LC_TIME +-do +- if (set +x; test -z "`(eval $as_var=C; export $as_var) 2>&1`"); then +- eval $as_var=C; export $as_var +- else +- ($as_unset $as_var) >/dev/null 2>&1 && $as_unset $as_var ++LC_ALL=C ++export LC_ALL ++LANGUAGE=C ++export LANGUAGE ++ ++# CDPATH. ++(unset CDPATH) >/dev/null 2>&1 && unset CDPATH ++ ++ ++# as_fn_error STATUS ERROR [LINENO LOG_FD] ++# ---------------------------------------- ++# Output "`basename $0`: error: ERROR" to stderr. If LINENO and LOG_FD are ++# provided, also output the error to LOG_FD, referencing LINENO. Then exit the ++# script with STATUS, using 1 if that was 0. ++as_fn_error () ++{ ++ as_status=$1; test $as_status -eq 0 && as_status=1 ++ if test "$4"; then ++ as_lineno=${as_lineno-"$3"} as_lineno_stack=as_lineno_stack=$as_lineno_stack ++ $as_echo "$as_me:${as_lineno-$LINENO}: error: $2" >&$4 + fi +-done ++ $as_echo "$as_me: error: $2" >&2 ++ as_fn_exit $as_status ++} # as_fn_error ++ ++ ++# as_fn_set_status STATUS ++# ----------------------- ++# Set $? to STATUS, without forking. ++as_fn_set_status () ++{ ++ return $1 ++} # as_fn_set_status ++ ++# as_fn_exit STATUS ++# ----------------- ++# Exit the shell with STATUS, even in a "trap 0" or "set -e" context. ++as_fn_exit () ++{ ++ set +e ++ as_fn_set_status $1 ++ exit $1 ++} # as_fn_exit ++ ++# as_fn_unset VAR ++# --------------- ++# Portably unset VAR. ++as_fn_unset () ++{ ++ { eval $1=; unset $1;} ++} ++as_unset=as_fn_unset ++# as_fn_append VAR VALUE ++# ---------------------- ++# Append the text in VALUE to the end of the definition contained in VAR. Take ++# advantage of any shell optimizations that allow amortized linear growth over ++# repeated appends, instead of the typical quadratic growth present in naive ++# implementations. ++if (eval "as_var=1; as_var+=2; test x\$as_var = x12") 2>/dev/null; then : ++ eval 'as_fn_append () ++ { ++ eval $1+=\$2 ++ }' ++else ++ as_fn_append () ++ { ++ eval $1=\$$1\$2 ++ } ++fi # as_fn_append ++ ++# as_fn_arith ARG... ++# ------------------ ++# Perform arithmetic evaluation on the ARGs, and store the result in the ++# global $as_val. Take advantage of shells that can avoid forks. The arguments ++# must be portable across $(()) and expr. ++if (eval "test \$(( 1 + 1 )) = 2") 2>/dev/null; then : ++ eval 'as_fn_arith () ++ { ++ as_val=$(( $* )) ++ }' ++else ++ as_fn_arith () ++ { ++ as_val=`expr "$@" || test $? -eq 1` ++ } ++fi # as_fn_arith ++ + +-# Required to use basename. + if expr a : '\(a\)' >/dev/null 2>&1 && + test "X`expr 00001 : '.*\(...\)'`" = X001; then + as_expr=expr +@@ -66490,13 +43728,17 @@ else + as_basename=false + fi + ++if (as_dir=`dirname -- /` && test "X$as_dir" = X/) >/dev/null 2>&1; then ++ as_dirname=dirname ++else ++ as_dirname=false ++fi + +-# Name of the executable. + as_me=`$as_basename -- "$0" || + $as_expr X/"$0" : '.*/\([^/][^/]*\)/*$' \| \ + X"$0" : 'X\(//\)$' \| \ + X"$0" : 'X\(/\)' \| . 2>/dev/null || +-echo X/"$0" | ++$as_echo X/"$0" | + sed '/^.*\/\([^/][^/]*\)\/*$/{ + s//\1/ + q +@@ -66511,131 +43753,118 @@ echo X/"$0" | + } + s/.*/./; q'` + +-# CDPATH. +-$as_unset CDPATH +- +- +- +- as_lineno_1=$LINENO +- as_lineno_2=$LINENO +- test "x$as_lineno_1" != "x$as_lineno_2" && +- test "x`expr $as_lineno_1 + 1`" = "x$as_lineno_2" || { +- +- # Create $as_me.lineno as a copy of $as_myself, but with $LINENO +- # uniformly replaced by the line number. The first 'sed' inserts a +- # line-number line after each line using $LINENO; the second 'sed' +- # does the real work. The second script uses 'N' to pair each +- # line-number line with the line containing $LINENO, and appends +- # trailing '-' during substitution so that $LINENO is not a special +- # case at line end. +- # (Raja R Harinath suggested sed '=', and Paul Eggert wrote the +- # scripts with optimization help from Paolo Bonzini. Blame Lee +- # E. McMahon (1931-1989) for sed's syntax. :-) +- sed -n ' +- p +- /[$]LINENO/= +- ' <$as_myself | +- sed ' +- s/[$]LINENO.*/&-/ +- t lineno +- b +- :lineno +- N +- :loop +- s/[$]LINENO\([^'$as_cr_alnum'_].*\n\)\(.*\)/\2\1\2/ +- t loop +- s/-\n.*// +- ' >$as_me.lineno && +- chmod +x "$as_me.lineno" || +- { echo "$as_me: error: cannot create $as_me.lineno; rerun with a POSIX shell" >&2 +- { (exit 1); exit 1; }; } +- +- # Don't try to exec as it changes $[0], causing all sort of problems +- # (the dirname of $[0] is not the place where we might find the +- # original and so on. Autoconf is especially sensitive to this). +- . "./$as_me.lineno" +- # Exit status is that of the last command. +- exit +-} +- +- +-if (as_dir=`dirname -- /` && test "X$as_dir" = X/) >/dev/null 2>&1; then +- as_dirname=dirname +-else +- as_dirname=false +-fi ++# Avoid depending upon Character Ranges. ++as_cr_letters='abcdefghijklmnopqrstuvwxyz' ++as_cr_LETTERS='ABCDEFGHIJKLMNOPQRSTUVWXYZ' ++as_cr_Letters=$as_cr_letters$as_cr_LETTERS ++as_cr_digits='0123456789' ++as_cr_alnum=$as_cr_Letters$as_cr_digits + + ECHO_C= ECHO_N= ECHO_T= +-case `echo -n x` in ++case `echo -n x` in #((((( + -n*) +- case `echo 'x\c'` in ++ case `echo 'xy\c'` in + *c*) ECHO_T=' ';; # ECHO_T is single tab character. +- *) ECHO_C='\c';; ++ xy) ECHO_C='\c';; ++ *) echo `echo ksh88 bug on AIX 6.1` > /dev/null ++ ECHO_T=' ';; + esac;; + *) + ECHO_N='-n';; + esac + +-if expr a : '\(a\)' >/dev/null 2>&1 && +- test "X`expr 00001 : '.*\(...\)'`" = X001; then +- as_expr=expr +-else +- as_expr=false +-fi +- + rm -f conf$$ conf$$.exe conf$$.file + if test -d conf$$.dir; then + rm -f conf$$.dir/conf$$.file + else + rm -f conf$$.dir +- mkdir conf$$.dir +-fi +-echo >conf$$.file +-if ln -s conf$$.file conf$$ 2>/dev/null; then +- as_ln_s='ln -s' +- # ... but there are two gotchas: +- # 1) On MSYS, both `ln -s file dir' and `ln file dir' fail. +- # 2) DJGPP < 2.04 has no symlinks; `ln -s' creates a wrapper executable. +- # In both cases, we have to default to `cp -p'. +- ln -s conf$$.file conf$$.dir 2>/dev/null && test ! -f conf$$.exe || +- as_ln_s='cp -p' +-elif ln conf$$.file conf$$ 2>/dev/null; then +- as_ln_s=ln +-else +- as_ln_s='cp -p' ++ mkdir conf$$.dir 2>/dev/null ++fi ++if (echo >conf$$.file) 2>/dev/null; then ++ if ln -s conf$$.file conf$$ 2>/dev/null; then ++ as_ln_s='ln -s' ++ # ... but there are two gotchas: ++ # 1) On MSYS, both `ln -s file dir' and `ln file dir' fail. ++ # 2) DJGPP < 2.04 has no symlinks; `ln -s' creates a wrapper executable. ++ # In both cases, we have to default to `cp -pR'. ++ ln -s conf$$.file conf$$.dir 2>/dev/null && test ! -f conf$$.exe || ++ as_ln_s='cp -pR' ++ elif ln conf$$.file conf$$ 2>/dev/null; then ++ as_ln_s=ln ++ else ++ as_ln_s='cp -pR' ++ fi ++else ++ as_ln_s='cp -pR' + fi + rm -f conf$$ conf$$.exe conf$$.dir/conf$$.file conf$$.file + rmdir conf$$.dir 2>/dev/null + ++ ++# as_fn_mkdir_p ++# ------------- ++# Create "$as_dir" as a directory, including parents if necessary. ++as_fn_mkdir_p () ++{ ++ ++ case $as_dir in #( ++ -*) as_dir=./$as_dir;; ++ esac ++ test -d "$as_dir" || eval $as_mkdir_p || { ++ as_dirs= ++ while :; do ++ case $as_dir in #( ++ *\'*) as_qdir=`$as_echo "$as_dir" | sed "s/'/'\\\\\\\\''/g"`;; #'( ++ *) as_qdir=$as_dir;; ++ esac ++ as_dirs="'$as_qdir' $as_dirs" ++ as_dir=`$as_dirname -- "$as_dir" || ++$as_expr X"$as_dir" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \ ++ X"$as_dir" : 'X\(//\)[^/]' \| \ ++ X"$as_dir" : 'X\(//\)$' \| \ ++ X"$as_dir" : 'X\(/\)' \| . 2>/dev/null || ++$as_echo X"$as_dir" | ++ sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{ ++ s//\1/ ++ q ++ } ++ /^X\(\/\/\)[^/].*/{ ++ s//\1/ ++ q ++ } ++ /^X\(\/\/\)$/{ ++ s//\1/ ++ q ++ } ++ /^X\(\/\).*/{ ++ s//\1/ ++ q ++ } ++ s/.*/./; q'` ++ test -d "$as_dir" && break ++ done ++ test -z "$as_dirs" || eval "mkdir $as_dirs" ++ } || test -d "$as_dir" || as_fn_error $? "cannot create directory $as_dir" ++ ++ ++} # as_fn_mkdir_p + if mkdir -p . 2>/dev/null; then +- as_mkdir_p=: ++ as_mkdir_p='mkdir -p "$as_dir"' + else + test -d ./-p && rmdir ./-p + as_mkdir_p=false + fi + +-if test -x / >/dev/null 2>&1; then +- as_test_x='test -x' +-else +- if ls -dL / >/dev/null 2>&1; then +- as_ls_L_option=L +- else +- as_ls_L_option= +- fi +- as_test_x=' +- eval sh -c '\'' +- if test -d "$1"; then +- test -d "$1/."; +- else +- case $1 in +- -*)set "./$1";; +- esac; +- case `ls -ld'$as_ls_L_option' "$1" 2>/dev/null` in +- ???[sx]*):;;*)false;;esac;fi +- '\'' sh +- ' +-fi +-as_executable_p=$as_test_x ++ ++# as_fn_executable_p FILE ++# ----------------------- ++# Test if FILE is an executable regular file. ++as_fn_executable_p () ++{ ++ test -f "$1" && test -x "$1" ++} # as_fn_executable_p ++as_test_x='test -x' ++as_executable_p=as_fn_executable_p + + # Sed expression to map a string onto a valid CPP name. + as_tr_cpp="eval sed 'y%*$as_cr_letters%P$as_cr_LETTERS%;s%[^_$as_cr_alnum]%_%g'" +@@ -66645,13 +43874,19 @@ as_tr_sh="eval sed 'y%*+%pp%;s%[^_$as_cr_alnum]%_%g'" + + + exec 6>&1 ++## ----------------------------------- ## ++## Main body of $CONFIG_STATUS script. ## ++## ----------------------------------- ## ++_ASEOF ++test $as_write_fail = 0 && chmod +x $CONFIG_STATUS || ac_write_fail=1 + +-# Save the log message, to keep $[0] and so on meaningful, and to ++cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1 ++# Save the log message, to keep $0 and so on meaningful, and to + # report actual input values of CONFIG_FILES etc. instead of their + # values after options handling. + ac_log=" + This file was extended by vlc $as_me 0.8.6i, which was +-generated by GNU Autoconf 2.61. Invocation command line was ++generated by GNU Autoconf 2.69. Invocation command line was + + CONFIG_FILES = $CONFIG_FILES + CONFIG_HEADERS = $CONFIG_HEADERS +@@ -66664,7 +43899,16 @@ on `(hostname || uname -n) 2>/dev/null | sed 1q` + + _ACEOF + +-cat >>$CONFIG_STATUS <<_ACEOF ++case $ac_config_files in *" ++"*) set x $ac_config_files; shift; ac_config_files=$*;; ++esac ++ ++case $ac_config_headers in *" ++"*) set x $ac_config_headers; shift; ac_config_headers=$*;; ++esac ++ ++ ++cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1 + # Files that config.status was made for. + config_files="$ac_config_files" + config_headers="$ac_config_headers" +@@ -66672,22 +43916,25 @@ config_commands="$ac_config_commands" + + _ACEOF + +-cat >>$CONFIG_STATUS <<\_ACEOF ++cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1 + ac_cs_usage="\ +-\`$as_me' instantiates files from templates according to the +-current configuration. ++\`$as_me' instantiates files and other configuration actions ++from templates according to the current configuration. Unless the files ++and actions are specified as TAGs, all are instantiated by default. + +-Usage: $0 [OPTIONS] [FILE]... ++Usage: $0 [OPTION]... [TAG]... + + -h, --help print this help, then exit + -V, --version print version number and configuration settings, then exit +- -q, --quiet do not print progress messages ++ --config print configuration, then exit ++ -q, --quiet, --silent ++ do not print progress messages + -d, --debug don't remove temporary files + --recheck update $as_me by reconfiguring in the same conditions +- --file=FILE[:TEMPLATE] +- instantiate the configuration file FILE +- --header=FILE[:TEMPLATE] +- instantiate the configuration header FILE ++ --file=FILE[:TEMPLATE] ++ instantiate the configuration file FILE ++ --header=FILE[:TEMPLATE] ++ instantiate the configuration header FILE + + Configuration files: + $config_files +@@ -66698,36 +43945,43 @@ $config_headers + Configuration commands: + $config_commands + +-Report bugs to ." ++Report bugs to the package provider." + + _ACEOF +-cat >>$CONFIG_STATUS <<_ACEOF ++cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1 ++ac_cs_config="`$as_echo "$ac_configure_args" | sed 's/^ //; s/[\\""\`\$]/\\\\&/g'`" + ac_cs_version="\\ + vlc config.status 0.8.6i +-configured by $0, generated by GNU Autoconf 2.61, +- with options \\"`echo "$ac_configure_args" | sed 's/^ //; s/[\\""\`\$]/\\\\&/g'`\\" ++configured by $0, generated by GNU Autoconf 2.69, ++ with options \\"\$ac_cs_config\\" + +-Copyright (C) 2006 Free Software Foundation, Inc. ++Copyright (C) 2012 Free Software Foundation, Inc. + This config.status script is free software; the Free Software Foundation + gives unlimited permission to copy, distribute and modify it." + + ac_pwd='$ac_pwd' + srcdir='$srcdir' + INSTALL='$INSTALL' ++AWK='$AWK' ++test -n "\$AWK" || AWK=awk + _ACEOF + +-cat >>$CONFIG_STATUS <<\_ACEOF +-# If no file are specified by the user, then we need to provide default +-# value. By we need to know if files were specified by the user. ++cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1 ++# The default lists apply if the user does not specify any file. + ac_need_defaults=: + while test $# != 0 + do + case $1 in +- --*=*) ++ --*=?*) + ac_option=`expr "X$1" : 'X\([^=]*\)='` + ac_optarg=`expr "X$1" : 'X[^=]*=\(.*\)'` + ac_shift=: + ;; ++ --*=) ++ ac_option=`expr "X$1" : 'X\([^=]*\)='` ++ ac_optarg= ++ ac_shift=: ++ ;; + *) + ac_option=$1 + ac_optarg=$2 +@@ -66740,34 +43994,41 @@ do + -recheck | --recheck | --rechec | --reche | --rech | --rec | --re | --r) + ac_cs_recheck=: ;; + --version | --versio | --versi | --vers | --ver | --ve | --v | -V ) +- echo "$ac_cs_version"; exit ;; ++ $as_echo "$ac_cs_version"; exit ;; ++ --config | --confi | --conf | --con | --co | --c ) ++ $as_echo "$ac_cs_config"; exit ;; + --debug | --debu | --deb | --de | --d | -d ) + debug=: ;; + --file | --fil | --fi | --f ) + $ac_shift +- CONFIG_FILES="$CONFIG_FILES $ac_optarg" ++ case $ac_optarg in ++ *\'*) ac_optarg=`$as_echo "$ac_optarg" | sed "s/'/'\\\\\\\\''/g"` ;; ++ '') as_fn_error $? "missing file argument" ;; ++ esac ++ as_fn_append CONFIG_FILES " '$ac_optarg'" + ac_need_defaults=false;; + --header | --heade | --head | --hea ) + $ac_shift +- CONFIG_HEADERS="$CONFIG_HEADERS $ac_optarg" ++ case $ac_optarg in ++ *\'*) ac_optarg=`$as_echo "$ac_optarg" | sed "s/'/'\\\\\\\\''/g"` ;; ++ esac ++ as_fn_append CONFIG_HEADERS " '$ac_optarg'" + ac_need_defaults=false;; + --he | --h) + # Conflict between --help and --header +- { echo "$as_me: error: ambiguous option: $1 +-Try \`$0 --help' for more information." >&2 +- { (exit 1); exit 1; }; };; ++ as_fn_error $? "ambiguous option: \`$1' ++Try \`$0 --help' for more information.";; + --help | --hel | -h ) +- echo "$ac_cs_usage"; exit ;; ++ $as_echo "$ac_cs_usage"; exit ;; + -q | -quiet | --quiet | --quie | --qui | --qu | --q \ + | -silent | --silent | --silen | --sile | --sil | --si | --s) + ac_cs_silent=: ;; + + # This is an error. +- -*) { echo "$as_me: error: unrecognized option: $1 +-Try \`$0 --help' for more information." >&2 +- { (exit 1); exit 1; }; } ;; ++ -*) as_fn_error $? "unrecognized option: \`$1' ++Try \`$0 --help' for more information." ;; + +- *) ac_config_targets="$ac_config_targets $1" ++ *) as_fn_append ac_config_targets " $1" + ac_need_defaults=false ;; + + esac +@@ -66782,27 +44043,29 @@ if $ac_cs_silent; then + fi + + _ACEOF +-cat >>$CONFIG_STATUS <<_ACEOF ++cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1 + if \$ac_cs_recheck; then +- echo "running CONFIG_SHELL=$SHELL $SHELL $0 "$ac_configure_args \$ac_configure_extra_args " --no-create --no-recursion" >&6 +- CONFIG_SHELL=$SHELL ++ set X $SHELL '$0' $ac_configure_args \$ac_configure_extra_args --no-create --no-recursion ++ shift ++ \$as_echo "running CONFIG_SHELL=$SHELL \$*" >&6 ++ CONFIG_SHELL='$SHELL' + export CONFIG_SHELL +- exec $SHELL "$0"$ac_configure_args \$ac_configure_extra_args --no-create --no-recursion ++ exec "\$@" + fi + + _ACEOF +-cat >>$CONFIG_STATUS <<\_ACEOF ++cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1 + exec 5>>config.log + { + echo + sed 'h;s/./-/g;s/^.../## /;s/...$/ ##/;p;x;p;x' <<_ASBOX + ## Running $as_me. ## + _ASBOX +- echo "$ac_log" ++ $as_echo "$ac_log" + } >&5 + + _ACEOF +-cat >>$CONFIG_STATUS <<_ACEOF ++cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1 + # + # INIT-COMMANDS + # +@@ -66817,7 +44080,7 @@ AMDEP_TRUE="$AMDEP_TRUE" ac_aux_dir="$ac_aux_dir" + + _ACEOF + +-cat >>$CONFIG_STATUS <<\_ACEOF ++cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1 + + # Handling of arguments. + for ac_config_target in $ac_config_targets +@@ -66909,9 +44172,7 @@ do + "modules/visualization/visual/Makefile") CONFIG_FILES="$CONFIG_FILES modules/visualization/visual/Makefile" ;; + "modules/visualization/galaktos/Makefile") CONFIG_FILES="$CONFIG_FILES modules/visualization/galaktos/Makefile" ;; + +- *) { { echo "$as_me:$LINENO: error: invalid argument: $ac_config_target" >&5 +-echo "$as_me: error: invalid argument: $ac_config_target" >&2;} +- { (exit 1); exit 1; }; };; ++ *) as_fn_error $? "invalid argument: \`$ac_config_target'" "$LINENO" 5;; + esac + done + +@@ -66934,465 +44195,302 @@ fi + # after its creation but before its name has been assigned to `$tmp'. + $debug || + { +- tmp= ++ tmp= ac_tmp= + trap 'exit_status=$? +- { test -z "$tmp" || test ! -d "$tmp" || rm -fr "$tmp"; } && exit $exit_status ++ : "${ac_tmp:=$tmp}" ++ { test ! -d "$ac_tmp" || rm -fr "$ac_tmp"; } && exit $exit_status + ' 0 +- trap '{ (exit 1); exit 1; }' 1 2 13 15 ++ trap 'as_fn_exit 1' 1 2 13 15 + } + # Create a (secure) tmp directory for tmp files. + + { + tmp=`(umask 077 && mktemp -d "./confXXXXXX") 2>/dev/null` && +- test -n "$tmp" && test -d "$tmp" ++ test -d "$tmp" + } || + { + tmp=./conf$$-$RANDOM + (umask 077 && mkdir "$tmp") +-} || +-{ +- echo "$me: cannot create a temporary directory in ." >&2 +- { (exit 1); exit 1; } +-} +- +-# +-# Set up the sed scripts for CONFIG_FILES section. +-# ++} || as_fn_error $? "cannot create a temporary directory in ." "$LINENO" 5 ++ac_tmp=$tmp + +-# No need to generate the scripts if there are no CONFIG_FILES. +-# This happens for instance when ./config.status config.h ++# Set up the scripts for CONFIG_FILES section. ++# No need to generate them if there are no CONFIG_FILES. ++# This happens for instance with `./config.status config.h'. + if test -n "$CONFIG_FILES"; then + +-_ACEOF +- +- +- +-ac_delim='%!_!# ' +-for ac_last_try in false false false false false :; do +- cat >conf$$subs.sed <<_ACEOF +-SHELL!$SHELL$ac_delim +-PATH_SEPARATOR!$PATH_SEPARATOR$ac_delim +-PACKAGE_NAME!$PACKAGE_NAME$ac_delim +-PACKAGE_TARNAME!$PACKAGE_TARNAME$ac_delim +-PACKAGE_VERSION!$PACKAGE_VERSION$ac_delim +-PACKAGE_STRING!$PACKAGE_STRING$ac_delim +-PACKAGE_BUGREPORT!$PACKAGE_BUGREPORT$ac_delim +-exec_prefix!$exec_prefix$ac_delim +-prefix!$prefix$ac_delim +-program_transform_name!$program_transform_name$ac_delim +-bindir!$bindir$ac_delim +-sbindir!$sbindir$ac_delim +-libexecdir!$libexecdir$ac_delim +-datarootdir!$datarootdir$ac_delim +-datadir!$datadir$ac_delim +-sysconfdir!$sysconfdir$ac_delim +-sharedstatedir!$sharedstatedir$ac_delim +-localstatedir!$localstatedir$ac_delim +-includedir!$includedir$ac_delim +-oldincludedir!$oldincludedir$ac_delim +-docdir!$docdir$ac_delim +-infodir!$infodir$ac_delim +-htmldir!$htmldir$ac_delim +-dvidir!$dvidir$ac_delim +-pdfdir!$pdfdir$ac_delim +-psdir!$psdir$ac_delim +-libdir!$libdir$ac_delim +-localedir!$localedir$ac_delim +-mandir!$mandir$ac_delim +-DEFS!$DEFS$ac_delim +-ECHO_C!$ECHO_C$ac_delim +-ECHO_N!$ECHO_N$ac_delim +-ECHO_T!$ECHO_T$ac_delim +-LIBS!$LIBS$ac_delim +-build_alias!$build_alias$ac_delim +-host_alias!$host_alias$ac_delim +-target_alias!$target_alias$ac_delim +-build!$build$ac_delim +-build_cpu!$build_cpu$ac_delim +-build_vendor!$build_vendor$ac_delim +-build_os!$build_os$ac_delim +-host!$host$ac_delim +-host_cpu!$host_cpu$ac_delim +-host_vendor!$host_vendor$ac_delim +-host_os!$host_os$ac_delim +-target!$target$ac_delim +-target_cpu!$target_cpu$ac_delim +-target_vendor!$target_vendor$ac_delim +-target_os!$target_os$ac_delim +-INSTALL_PROGRAM!$INSTALL_PROGRAM$ac_delim +-INSTALL_SCRIPT!$INSTALL_SCRIPT$ac_delim +-INSTALL_DATA!$INSTALL_DATA$ac_delim +-CYGPATH_W!$CYGPATH_W$ac_delim +-PACKAGE!$PACKAGE$ac_delim +-VERSION!$VERSION$ac_delim +-ACLOCAL!$ACLOCAL$ac_delim +-AUTOCONF!$AUTOCONF$ac_delim +-AUTOMAKE!$AUTOMAKE$ac_delim +-AUTOHEADER!$AUTOHEADER$ac_delim +-MAKEINFO!$MAKEINFO$ac_delim +-install_sh!$install_sh$ac_delim +-STRIP!$STRIP$ac_delim +-INSTALL_STRIP_PROGRAM!$INSTALL_STRIP_PROGRAM$ac_delim +-mkdir_p!$mkdir_p$ac_delim +-AWK!$AWK$ac_delim +-SET_MAKE!$SET_MAKE$ac_delim +-am__leading_dot!$am__leading_dot$ac_delim +-AMTAR!$AMTAR$ac_delim +-am__tar!$am__tar$ac_delim +-am__untar!$am__untar$ac_delim +-MAINTAINER_MODE_TRUE!$MAINTAINER_MODE_TRUE$ac_delim +-MAINTAINER_MODE_FALSE!$MAINTAINER_MODE_FALSE$ac_delim +-MAINT!$MAINT$ac_delim +-CC!$CC$ac_delim +-CFLAGS!$CFLAGS$ac_delim +-LDFLAGS!$LDFLAGS$ac_delim +-CPPFLAGS!$CPPFLAGS$ac_delim +-ac_ct_CC!$ac_ct_CC$ac_delim +-EXEEXT!$EXEEXT$ac_delim +-OBJEXT!$OBJEXT$ac_delim +-DEPDIR!$DEPDIR$ac_delim +-am__include!$am__include$ac_delim +-am__quote!$am__quote$ac_delim +-AMDEP_TRUE!$AMDEP_TRUE$ac_delim +-AMDEP_FALSE!$AMDEP_FALSE$ac_delim +-AMDEPBACKSLASH!$AMDEPBACKSLASH$ac_delim +-CCDEPMODE!$CCDEPMODE$ac_delim +-am__fastdepCC_TRUE!$am__fastdepCC_TRUE$ac_delim +-am__fastdepCC_FALSE!$am__fastdepCC_FALSE$ac_delim +-CPP!$CPP$ac_delim +-CXX!$CXX$ac_delim +-CXXFLAGS!$CXXFLAGS$ac_delim +-ac_ct_CXX!$ac_ct_CXX$ac_delim +-CXXDEPMODE!$CXXDEPMODE$ac_delim +-am__fastdepCXX_TRUE!$am__fastdepCXX_TRUE$ac_delim +-am__fastdepCXX_FALSE!$am__fastdepCXX_FALSE$ac_delim +-CXXCPP!$CXXCPP$ac_delim +-_ACEOF + +- if test `sed -n "s/.*$ac_delim\$/X/p" conf$$subs.sed | grep -c X` = 97; then +- break +- elif $ac_last_try; then +- { { echo "$as_me:$LINENO: error: could not make $CONFIG_STATUS" >&5 +-echo "$as_me: error: could not make $CONFIG_STATUS" >&2;} +- { (exit 1); exit 1; }; } +- else +- ac_delim="$ac_delim!$ac_delim _$ac_delim!! " +- fi +-done +- +-ac_eof=`sed -n '/^CEOF[0-9]*$/s/CEOF/0/p' conf$$subs.sed` +-if test -n "$ac_eof"; then +- ac_eof=`echo "$ac_eof" | sort -nru | sed 1q` +- ac_eof=`expr $ac_eof + 1` ++ac_cr=`echo X | tr X '\015'` ++# On cygwin, bash can eat \r inside `` if the user requested igncr. ++# But we know of no other shell where ac_cr would be empty at this ++# point, so we can use a bashism as a fallback. ++if test "x$ac_cr" = x; then ++ eval ac_cr=\$\'\\r\' ++fi ++ac_cs_awk_cr=`$AWK 'BEGIN { print "a\rb" }' /dev/null` ++if test "$ac_cs_awk_cr" = "a${ac_cr}b"; then ++ ac_cs_awk_cr='\\r' ++else ++ ac_cs_awk_cr=$ac_cr + fi + +-cat >>$CONFIG_STATUS <<_ACEOF +-cat >"\$tmp/subs-1.sed" <<\CEOF$ac_eof +-/@[a-zA-Z_][a-zA-Z_0-9]*@/!b +-_ACEOF +-sed ' +-s/[,\\&]/\\&/g; s/@/@|#_!!_#|/g +-s/^/s,@/; s/!/@,|#_!!_#|/ +-:n +-t n +-s/'"$ac_delim"'$/,g/; t +-s/$/\\/; p +-N; s/^.*\n//; s/[,\\&]/\\&/g; s/@/@|#_!!_#|/g; b n +-' >>$CONFIG_STATUS >$CONFIG_STATUS <<_ACEOF +-CEOF$ac_eof ++echo 'BEGIN {' >"$ac_tmp/subs1.awk" && + _ACEOF + + ++{ ++ echo "cat >conf$$subs.awk <<_ACEOF" && ++ echo "$ac_subst_vars" | sed 's/.*/&!$&$ac_delim/' && ++ echo "_ACEOF" ++} >conf$$subs.sh || ++ as_fn_error $? "could not make $CONFIG_STATUS" "$LINENO" 5 ++ac_delim_num=`echo "$ac_subst_vars" | grep -c '^'` + ac_delim='%!_!# ' + for ac_last_try in false false false false false :; do +- cat >conf$$subs.sed <<_ACEOF +-CCAS!$CCAS$ac_delim +-CCASFLAGS!$CCASFLAGS$ac_delim +-GREP!$GREP$ac_delim +-EGREP!$EGREP$ac_delim +-OBJC!$OBJC$ac_delim +-OBJCFLAGS!$OBJCFLAGS$ac_delim +-OBJCDEPMODE!$OBJCDEPMODE$ac_delim +-am__fastdepOBJC_TRUE!$am__fastdepOBJC_TRUE$ac_delim +-am__fastdepOBJC_FALSE!$am__fastdepOBJC_FALSE$ac_delim +-RANLIB!$RANLIB$ac_delim +-AR!$AR$ac_delim +-LD!$LD$ac_delim +-SED!$SED$ac_delim +-LN_S!$LN_S$ac_delim +-ECHO!$ECHO$ac_delim +-DSYMUTIL!$DSYMUTIL$ac_delim +-NMEDIT!$NMEDIT$ac_delim +-DLLTOOL!$DLLTOOL$ac_delim +-AS!$AS$ac_delim +-OBJDUMP!$OBJDUMP$ac_delim +-F77!$F77$ac_delim +-FFLAGS!$FFLAGS$ac_delim +-ac_ct_F77!$ac_ct_F77$ac_delim +-LIBTOOL!$LIBTOOL$ac_delim +-USE_LIBTOOL_TRUE!$USE_LIBTOOL_TRUE$ac_delim +-USE_LIBTOOL_FALSE!$USE_LIBTOOL_FALSE$ac_delim +-WINDRES!$WINDRES$ac_delim +-HAVE_BEOS_TRUE!$HAVE_BEOS_TRUE$ac_delim +-HAVE_BEOS_FALSE!$HAVE_BEOS_FALSE$ac_delim +-HAVE_DARWIN_TRUE!$HAVE_DARWIN_TRUE$ac_delim +-HAVE_DARWIN_FALSE!$HAVE_DARWIN_FALSE$ac_delim +-HAVE_WIN32_TRUE!$HAVE_WIN32_TRUE$ac_delim +-HAVE_WIN32_FALSE!$HAVE_WIN32_FALSE$ac_delim +-HAVE_WINCE_TRUE!$HAVE_WINCE_TRUE$ac_delim +-HAVE_WINCE_FALSE!$HAVE_WINCE_FALSE$ac_delim +-MKINSTALLDIRS!$MKINSTALLDIRS$ac_delim +-MSGFMT!$MSGFMT$ac_delim +-GMSGFMT!$GMSGFMT$ac_delim +-XGETTEXT!$XGETTEXT$ac_delim +-MSGMERGE!$MSGMERGE$ac_delim +-ALLOCA!$ALLOCA$ac_delim +-GLIBC21!$GLIBC21$ac_delim +-LIBICONV!$LIBICONV$ac_delim +-LTLIBICONV!$LTLIBICONV$ac_delim +-INTLBISON!$INTLBISON$ac_delim +-USE_NLS!$USE_NLS$ac_delim +-BUILD_INCLUDED_LIBINTL!$BUILD_INCLUDED_LIBINTL$ac_delim +-USE_INCLUDED_LIBINTL!$USE_INCLUDED_LIBINTL$ac_delim +-CATOBJEXT!$CATOBJEXT$ac_delim +-INTLOBJS!$INTLOBJS$ac_delim +-DATADIRNAME!$DATADIRNAME$ac_delim +-INSTOBJEXT!$INSTOBJEXT$ac_delim +-GENCAT!$GENCAT$ac_delim +-INTL_LIBTOOL_SUFFIX_PREFIX!$INTL_LIBTOOL_SUFFIX_PREFIX$ac_delim +-INTLLIBS!$INTLLIBS$ac_delim +-LIBINTL!$LIBINTL$ac_delim +-LTLIBINTL!$LTLIBINTL$ac_delim +-POSUB!$POSUB$ac_delim +-INCLUDED_LIBINTL!$INCLUDED_LIBINTL$ac_delim +-SYMPREF!$SYMPREF$ac_delim +-BUILD_GETOPT_TRUE!$BUILD_GETOPT_TRUE$ac_delim +-BUILD_GETOPT_FALSE!$BUILD_GETOPT_FALSE$ac_delim +-BUILD_DIRENT_TRUE!$BUILD_DIRENT_TRUE$ac_delim +-BUILD_DIRENT_FALSE!$BUILD_DIRENT_FALSE$ac_delim +-XMKMF!$XMKMF$ac_delim +-X_CFLAGS!$X_CFLAGS$ac_delim +-X_PRE_LIBS!$X_PRE_LIBS$ac_delim +-X_LIBS!$X_LIBS$ac_delim +-X_EXTRA_LIBS!$X_EXTRA_LIBS$ac_delim +-PKG_CONFIG!$PKG_CONFIG$ac_delim +-HAL_CFLAGS!$HAL_CFLAGS$ac_delim +-HAL_LIBS!$HAL_LIBS$ac_delim +-SHOUT_CFLAGS!$SHOUT_CFLAGS$ac_delim +-SHOUT_LIBS!$SHOUT_LIBS$ac_delim +-NOTIFY_CFLAGS!$NOTIFY_CFLAGS$ac_delim +-NOTIFY_LIBS!$NOTIFY_LIBS$ac_delim +-DVDNAV_CONFIG!$DVDNAV_CONFIG$ac_delim +-GNOMEVFS_CFLAGS!$GNOMEVFS_CFLAGS$ac_delim +-GNOMEVFS_LIBS!$GNOMEVFS_LIBS$ac_delim +-LIBCDIO_CFLAGS!$LIBCDIO_CFLAGS$ac_delim +-LIBCDIO_LIBS!$LIBCDIO_LIBS$ac_delim +-VCDINFO_CFLAGS!$VCDINFO_CFLAGS$ac_delim +-VCDINFO_LIBS!$VCDINFO_LIBS$ac_delim +-LIBCDIO_PARANOIA_CFLAGS!$LIBCDIO_PARANOIA_CFLAGS$ac_delim +-LIBCDIO_PARANOIA_LIBS!$LIBCDIO_PARANOIA_LIBS$ac_delim +-LIBCDDB_CFLAGS!$LIBCDDB_CFLAGS$ac_delim +-LIBCDDB_LIBS!$LIBCDDB_LIBS$ac_delim +-FFMPEG_CONFIG!$FFMPEG_CONFIG$ac_delim +-FFMPEG_CFLAGS!$FFMPEG_CFLAGS$ac_delim +-FFMPEG_LIBS!$FFMPEG_LIBS$ac_delim +-POSTPROC_CFLAGS!$POSTPROC_CFLAGS$ac_delim +-POSTPROC_LIBS!$POSTPROC_LIBS$ac_delim +-DIRAC_CFLAGS!$DIRAC_CFLAGS$ac_delim +-DIRAC_LIBS!$DIRAC_LIBS$ac_delim +-SDL12_CONFIG!$SDL12_CONFIG$ac_delim +-SDL11_CONFIG!$SDL11_CONFIG$ac_delim +-SDL_CONFIG!$SDL_CONFIG$ac_delim +-_ACEOF ++ . ./conf$$subs.sh || ++ as_fn_error $? "could not make $CONFIG_STATUS" "$LINENO" 5 + +- if test `sed -n "s/.*$ac_delim\$/X/p" conf$$subs.sed | grep -c X` = 97; then ++ ac_delim_n=`sed -n "s/.*$ac_delim\$/X/p" conf$$subs.awk | grep -c X` ++ if test $ac_delim_n = $ac_delim_num; then + break + elif $ac_last_try; then +- { { echo "$as_me:$LINENO: error: could not make $CONFIG_STATUS" >&5 +-echo "$as_me: error: could not make $CONFIG_STATUS" >&2;} +- { (exit 1); exit 1; }; } ++ as_fn_error $? "could not make $CONFIG_STATUS" "$LINENO" 5 + else + ac_delim="$ac_delim!$ac_delim _$ac_delim!! " + fi + done ++rm -f conf$$subs.sh ++ ++cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1 ++cat >>"\$ac_tmp/subs1.awk" <<\\_ACAWK && ++_ACEOF ++sed -n ' ++h ++s/^/S["/; s/!.*/"]=/ ++p ++g ++s/^[^!]*!// ++:repl ++t repl ++s/'"$ac_delim"'$// ++t delim ++:nl ++h ++s/\(.\{148\}\)..*/\1/ ++t more1 ++s/["\\]/\\&/g; s/^/"/; s/$/\\n"\\/ ++p ++n ++b repl ++:more1 ++s/["\\]/\\&/g; s/^/"/; s/$/"\\/ ++p ++g ++s/.\{148\}// ++t nl ++:delim ++h ++s/\(.\{148\}\)..*/\1/ ++t more2 ++s/["\\]/\\&/g; s/^/"/; s/$/"/ ++p ++b ++:more2 ++s/["\\]/\\&/g; s/^/"/; s/$/"\\/ ++p ++g ++s/.\{148\}// ++t delim ++' >$CONFIG_STATUS || ac_write_fail=1 ++rm -f conf$$subs.awk ++cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1 ++_ACAWK ++cat >>"\$ac_tmp/subs1.awk" <<_ACAWK && ++ for (key in S) S_is_set[key] = 1 ++ FS = "" + +-ac_eof=`sed -n '/^CEOF[0-9]*$/s/CEOF/0/p' conf$$subs.sed` +-if test -n "$ac_eof"; then +- ac_eof=`echo "$ac_eof" | sort -nru | sed 1q` +- ac_eof=`expr $ac_eof + 1` +-fi ++} ++{ ++ line = $ 0 ++ nfields = split(line, field, "@") ++ substed = 0 ++ len = length(field[1]) ++ for (i = 2; i < nfields; i++) { ++ key = field[i] ++ keylen = length(key) ++ if (S_is_set[key]) { ++ value = S[key] ++ line = substr(line, 1, len) "" value "" substr(line, len + keylen + 3) ++ len += length(value) + length(field[++i]) ++ substed = 1 ++ } else ++ len += 1 + keylen ++ } + +-cat >>$CONFIG_STATUS <<_ACEOF +-cat >"\$tmp/subs-2.sed" <<\CEOF$ac_eof +-/@[a-zA-Z_][a-zA-Z_0-9]*@/!b ++ print line ++} ++ ++_ACAWK + _ACEOF +-sed ' +-s/[,\\&]/\\&/g; s/@/@|#_!!_#|/g +-s/^/s,@/; s/!/@,|#_!!_#|/ +-:n +-t n +-s/'"$ac_delim"'$/,g/; t +-s/$/\\/; p +-N; s/^.*\n//; s/[,\\&]/\\&/g; s/@/@|#_!!_#|/g; b n +-' >>$CONFIG_STATUS >$CONFIG_STATUS <<_ACEOF +-CEOF$ac_eof ++cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1 ++if sed "s/$ac_cr//" < /dev/null > /dev/null 2>&1; then ++ sed "s/$ac_cr\$//; s/$ac_cr/$ac_cs_awk_cr/g" ++else ++ cat ++fi < "$ac_tmp/subs1.awk" > "$ac_tmp/subs.awk" \ ++ || as_fn_error $? "could not setup config files machinery" "$LINENO" 5 + _ACEOF + ++# VPATH may cause trouble with some makes, so we remove sole $(srcdir), ++# ${srcdir} and @srcdir@ entries from VPATH if srcdir is ".", strip leading and ++# trailing colons and then remove the whole line if VPATH becomes empty ++# (actually we leave an empty line to preserve line numbers). ++if test "x$srcdir" = x.; then ++ ac_vpsub='/^[ ]*VPATH[ ]*=[ ]*/{ ++h ++s/// ++s/^/:/ ++s/[ ]*$/:/ ++s/:\$(srcdir):/:/g ++s/:\${srcdir}:/:/g ++s/:@srcdir@:/:/g ++s/^:*// ++s/:*$// ++x ++s/\(=[ ]*\).*/\1/ ++G ++s/\n// ++s/^[^=]*=[ ]*$// ++}' ++fi + +-ac_delim='%!_!# ' +-for ac_last_try in false false false false false :; do +- cat >conf$$subs.sed <<_ACEOF +-FREETYPE_CONFIG!$FREETYPE_CONFIG$ac_delim +-FRIBIDI_CONFIG!$FRIBIDI_CONFIG$ac_delim +-XML2_CONFIG!$XML2_CONFIG$ac_delim +-SVG_CFLAGS!$SVG_CFLAGS$ac_delim +-SVG_LIBS!$SVG_LIBS$ac_delim +-DIRECTFB_CFLAGS!$DIRECTFB_CFLAGS$ac_delim +-DIRECTFB_LIBS!$DIRECTFB_LIBS$ac_delim +-CACA_CONFIG!$CACA_CONFIG$ac_delim +-ESD_CONFIG!$ESD_CONFIG$ac_delim +-ARTS_CONFIG!$ARTS_CONFIG$ac_delim +-GTK2_CFLAGS!$GTK2_CFLAGS$ac_delim +-GTK2_LIBS!$GTK2_LIBS$ac_delim +-WX_CONFIG!$WX_CONFIG$ac_delim +-DAAP_CFLAGS!$DAAP_CFLAGS$ac_delim +-DAAP_LIBS!$DAAP_LIBS$ac_delim +-BONJOUR_CFLAGS!$BONJOUR_CFLAGS$ac_delim +-BONJOUR_LIBS!$BONJOUR_LIBS$ac_delim +-GNUTLS_CFLAGS!$GNUTLS_CFLAGS$ac_delim +-GNUTLS_LIBS!$GNUTLS_LIBS$ac_delim +-LOADER_TRUE!$LOADER_TRUE$ac_delim +-LOADER_FALSE!$LOADER_FALSE$ac_delim +-MIDL!$MIDL$ac_delim +-WIDL!$WIDL$ac_delim +-HAS_MIDL_COMPILER_TRUE!$HAS_MIDL_COMPILER_TRUE$ac_delim +-HAS_MIDL_COMPILER_FALSE!$HAS_MIDL_COMPILER_FALSE$ac_delim +-HAS_WIDL_COMPILER_TRUE!$HAS_WIDL_COMPILER_TRUE$ac_delim +-HAS_WIDL_COMPILER_FALSE!$HAS_WIDL_COMPILER_FALSE$ac_delim +-BUILD_ACTIVEX_TRUE!$BUILD_ACTIVEX_TRUE$ac_delim +-BUILD_ACTIVEX_FALSE!$BUILD_ACTIVEX_FALSE$ac_delim +-FIREFOX_CFLAGS!$FIREFOX_CFLAGS$ac_delim +-FIREFOX_LIBS!$FIREFOX_LIBS$ac_delim +-MOZILLA_CONFIG!$MOZILLA_CONFIG$ac_delim +-SEAMONKEY_CONFIG!$SEAMONKEY_CONFIG$ac_delim +-XULRUNNER_CONFIG!$XULRUNNER_CONFIG$ac_delim +-FIREFOX_XPCOM_CFLAGS!$FIREFOX_XPCOM_CFLAGS$ac_delim +-FIREFOX_XPCOM_LIBS!$FIREFOX_XPCOM_LIBS$ac_delim +-MOZILLA_NSPR_CFLAGS!$MOZILLA_NSPR_CFLAGS$ac_delim +-MOZILLA_NSPR_LIBS!$MOZILLA_NSPR_LIBS$ac_delim +-NSPR_CFLAGS!$NSPR_CFLAGS$ac_delim +-NSPR_LIBS!$NSPR_LIBS$ac_delim +-CYGPATH!$CYGPATH$ac_delim +-BUILD_MOZILLA_TRUE!$BUILD_MOZILLA_TRUE$ac_delim +-BUILD_MOZILLA_FALSE!$BUILD_MOZILLA_FALSE$ac_delim +-BUILD_PYTHON_TRUE!$BUILD_PYTHON_TRUE$ac_delim +-BUILD_PYTHON_FALSE!$BUILD_PYTHON_FALSE$ac_delim +-JAVAC!$JAVAC$ac_delim +-JAVA!$JAVA$ac_delim +-uudecode!$uudecode$ac_delim +-BUILD_JAVA_TRUE!$BUILD_JAVA_TRUE$ac_delim +-BUILD_JAVA_FALSE!$BUILD_JAVA_FALSE$ac_delim +-HAVE_PLUGINS_TRUE!$HAVE_PLUGINS_TRUE$ac_delim +-HAVE_PLUGINS_FALSE!$HAVE_PLUGINS_FALSE$ac_delim +-HAVE_BUILTINS_TRUE!$HAVE_BUILTINS_TRUE$ac_delim +-HAVE_BUILTINS_FALSE!$HAVE_BUILTINS_FALSE$ac_delim +-BUILD_SHARED_TRUE!$BUILD_SHARED_TRUE$ac_delim +-BUILD_SHARED_FALSE!$BUILD_SHARED_FALSE$ac_delim +-pic!$pic$ac_delim +-VERSION_MAJOR!$VERSION_MAJOR$ac_delim +-VERSION_MINOR!$VERSION_MINOR$ac_delim +-VERSION_REVISION!$VERSION_REVISION$ac_delim +-VLC_ENTRY!$VLC_ENTRY$ac_delim +-VLC_CONFIG!$VLC_CONFIG$ac_delim +-SYS!$SYS$ac_delim +-ARCH!$ARCH$ac_delim +-ALIASES!$ALIASES$ac_delim +-ASM!$ASM$ac_delim +-MOC!$MOC$ac_delim +-MOZILLA_SDK_PATH!$MOZILLA_SDK_PATH$ac_delim +-WINE_SDK_PATH!$WINE_SDK_PATH$ac_delim +-XPIDL!$XPIDL$ac_delim +-XPIDL_INCL!$XPIDL_INCL$ac_delim +-LIBEXT!$LIBEXT$ac_delim +-AM_CPPFLAGS!$AM_CPPFLAGS$ac_delim +-ALL_LINGUAS!$ALL_LINGUAS$ac_delim +-MACOSX_DEPLOYMENT_TARGET!$MACOSX_DEPLOYMENT_TARGET$ac_delim +-FILE_LIBVLC_DLL!$FILE_LIBVLC_DLL$ac_delim +-LIBOBJS!$LIBOBJS$ac_delim +-LTLIBOBJS!$LTLIBOBJS$ac_delim ++cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1 ++fi # test -n "$CONFIG_FILES" ++ ++# Set up the scripts for CONFIG_HEADERS section. ++# No need to generate them if there are no CONFIG_HEADERS. ++# This happens for instance with `./config.status Makefile'. ++if test -n "$CONFIG_HEADERS"; then ++cat >"$ac_tmp/defines.awk" <<\_ACAWK || ++BEGIN { + _ACEOF + +- if test `sed -n "s/.*$ac_delim\$/X/p" conf$$subs.sed | grep -c X` = 78; then ++# Transform confdefs.h into an awk script `defines.awk', embedded as ++# here-document in config.status, that substitutes the proper values into ++# config.h.in to produce config.h. ++ ++# Create a delimiter string that does not exist in confdefs.h, to ease ++# handling of long lines. ++ac_delim='%!_!# ' ++for ac_last_try in false false :; do ++ ac_tt=`sed -n "/$ac_delim/p" confdefs.h` ++ if test -z "$ac_tt"; then + break + elif $ac_last_try; then +- { { echo "$as_me:$LINENO: error: could not make $CONFIG_STATUS" >&5 +-echo "$as_me: error: could not make $CONFIG_STATUS" >&2;} +- { (exit 1); exit 1; }; } ++ as_fn_error $? "could not make $CONFIG_HEADERS" "$LINENO" 5 + else + ac_delim="$ac_delim!$ac_delim _$ac_delim!! " + fi + done + +-ac_eof=`sed -n '/^CEOF[0-9]*$/s/CEOF/0/p' conf$$subs.sed` +-if test -n "$ac_eof"; then +- ac_eof=`echo "$ac_eof" | sort -nru | sed 1q` +- ac_eof=`expr $ac_eof + 1` +-fi ++# For the awk script, D is an array of macro values keyed by name, ++# likewise P contains macro parameters if any. Preserve backslash ++# newline sequences. + +-cat >>$CONFIG_STATUS <<_ACEOF +-cat >"\$tmp/subs-3.sed" <<\CEOF$ac_eof +-/@[a-zA-Z_][a-zA-Z_0-9]*@/!b end +-_ACEOF +-sed ' +-s/[,\\&]/\\&/g; s/@/@|#_!!_#|/g +-s/^/s,@/; s/!/@,|#_!!_#|/ +-:n +-t n +-s/'"$ac_delim"'$/,g/; t +-s/$/\\/; p +-N; s/^.*\n//; s/[,\\&]/\\&/g; s/@/@|#_!!_#|/g; b n +-' >>$CONFIG_STATUS >$CONFIG_STATUS <<_ACEOF +-:end +-s/|#_!!_#|//g +-CEOF$ac_eof ++ac_word_re=[_$as_cr_Letters][_$as_cr_alnum]* ++sed -n ' ++s/.\{148\}/&'"$ac_delim"'/g ++t rset ++:rset ++s/^[ ]*#[ ]*define[ ][ ]*/ / ++t def ++d ++:def ++s/\\$// ++t bsnl ++s/["\\]/\\&/g ++s/^ \('"$ac_word_re"'\)\(([^()]*)\)[ ]*\(.*\)/P["\1"]="\2"\ ++D["\1"]=" \3"/p ++s/^ \('"$ac_word_re"'\)[ ]*\(.*\)/D["\1"]=" \2"/p ++d ++:bsnl ++s/["\\]/\\&/g ++s/^ \('"$ac_word_re"'\)\(([^()]*)\)[ ]*\(.*\)/P["\1"]="\2"\ ++D["\1"]=" \3\\\\\\n"\\/p ++t cont ++s/^ \('"$ac_word_re"'\)[ ]*\(.*\)/D["\1"]=" \2\\\\\\n"\\/p ++t cont ++d ++:cont ++n ++s/.\{148\}/&'"$ac_delim"'/g ++t clear ++:clear ++s/\\$// ++t bsnlc ++s/["\\]/\\&/g; s/^/"/; s/$/"/p ++d ++:bsnlc ++s/["\\]/\\&/g; s/^/"/; s/$/\\\\\\n"\\/p ++b cont ++' >$CONFIG_STATUS || ac_write_fail=1 ++ ++cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1 ++ for (key in D) D_is_set[key] = 1 ++ FS = "" ++} ++/^[\t ]*#[\t ]*(define|undef)[\t ]+$ac_word_re([\t (]|\$)/ { ++ line = \$ 0 ++ split(line, arg, " ") ++ if (arg[1] == "#") { ++ defundef = arg[2] ++ mac1 = arg[3] ++ } else { ++ defundef = substr(arg[1], 2) ++ mac1 = arg[2] ++ } ++ split(mac1, mac2, "(") #) ++ macro = mac2[1] ++ prefix = substr(line, 1, index(line, defundef) - 1) ++ if (D_is_set[macro]) { ++ # Preserve the white space surrounding the "#". ++ print prefix "define", macro P[macro] D[macro] ++ next ++ } else { ++ # Replace #undef with comments. This is necessary, for example, ++ # in the case of _POSIX_SOURCE, which is predefined and required ++ # on some systems where configure will not decide to define it. ++ if (defundef == "undef") { ++ print "/*", prefix defundef, macro, "*/" ++ next ++ } ++ } ++} ++{ print } ++_ACAWK + _ACEOF ++cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1 ++ as_fn_error $? "could not setup config headers machinery" "$LINENO" 5 ++fi # test -n "$CONFIG_HEADERS" + + +-# VPATH may cause trouble with some makes, so we remove $(srcdir), +-# ${srcdir} and @srcdir@ from VPATH if srcdir is ".", strip leading and +-# trailing colons and then remove the whole line if VPATH becomes empty +-# (actually we leave an empty line to preserve line numbers). +-if test "x$srcdir" = x.; then +- ac_vpsub='/^[ ]*VPATH[ ]*=/{ +-s/:*\$(srcdir):*/:/ +-s/:*\${srcdir}:*/:/ +-s/:*@srcdir@:*/:/ +-s/^\([^=]*=[ ]*\):*/\1/ +-s/:*$// +-s/^[^=]*=[ ]*$// +-}' +-fi +- +-cat >>$CONFIG_STATUS <<\_ACEOF +-fi # test -n "$CONFIG_FILES" +- +- +-for ac_tag in :F $CONFIG_FILES :H $CONFIG_HEADERS :C $CONFIG_COMMANDS ++eval set X " :F $CONFIG_FILES :H $CONFIG_HEADERS :C $CONFIG_COMMANDS" ++shift ++for ac_tag + do + case $ac_tag in + :[FHLC]) ac_mode=$ac_tag; continue;; + esac + case $ac_mode$ac_tag in + :[FHL]*:*);; +- :L* | :C*:*) { { echo "$as_me:$LINENO: error: Invalid tag $ac_tag." >&5 +-echo "$as_me: error: Invalid tag $ac_tag." >&2;} +- { (exit 1); exit 1; }; };; ++ :L* | :C*:*) as_fn_error $? "invalid tag \`$ac_tag'" "$LINENO" 5;; + :[FH]-) ac_tag=-:-;; + :[FH]*) ac_tag=$ac_tag:$ac_tag.in;; + esac +@@ -67411,7 +44509,7 @@ echo "$as_me: error: Invalid tag $ac_tag." >&2;} + for ac_f + do + case $ac_f in +- -) ac_f="$tmp/stdin";; ++ -) ac_f="$ac_tmp/stdin";; + *) # Look for the file first in the build tree, then in the source tree + # (if the path is not absolute). The absolute path cannot be DOS-style, + # because $ac_f cannot contain `:'. +@@ -67420,26 +44518,34 @@ echo "$as_me: error: Invalid tag $ac_tag." >&2;} + [\\/$]*) false;; + *) test -f "$srcdir/$ac_f" && ac_f="$srcdir/$ac_f";; + esac || +- { { echo "$as_me:$LINENO: error: cannot find input file: $ac_f" >&5 +-echo "$as_me: error: cannot find input file: $ac_f" >&2;} +- { (exit 1); exit 1; }; };; ++ as_fn_error 1 "cannot find input file: \`$ac_f'" "$LINENO" 5;; + esac +- ac_file_inputs="$ac_file_inputs $ac_f" ++ case $ac_f in *\'*) ac_f=`$as_echo "$ac_f" | sed "s/'/'\\\\\\\\''/g"`;; esac ++ as_fn_append ac_file_inputs " '$ac_f'" + done + + # Let's still pretend it is `configure' which instantiates (i.e., don't + # use $as_me), people would be surprised to read: + # /* config.h. Generated by config.status. */ +- configure_input="Generated from "`IFS=: +- echo $* | sed 's|^[^:]*/||;s|:[^:]*/|, |g'`" by configure." ++ configure_input='Generated from '` ++ $as_echo "$*" | sed 's|^[^:]*/||;s|:[^:]*/|, |g' ++ `' by configure.' + if test x"$ac_file" != x-; then + configure_input="$ac_file. $configure_input" +- { echo "$as_me:$LINENO: creating $ac_file" >&5 +-echo "$as_me: creating $ac_file" >&6;} ++ { $as_echo "$as_me:${as_lineno-$LINENO}: creating $ac_file" >&5 ++$as_echo "$as_me: creating $ac_file" >&6;} + fi ++ # Neutralize special characters interpreted by sed in replacement strings. ++ case $configure_input in #( ++ *\&* | *\|* | *\\* ) ++ ac_sed_conf_input=`$as_echo "$configure_input" | ++ sed 's/[\\\\&|]/\\\\&/g'`;; #( ++ *) ac_sed_conf_input=$configure_input;; ++ esac + + case $ac_tag in +- *:-:* | *:-) cat >"$tmp/stdin";; ++ *:-:* | *:-) cat >"$ac_tmp/stdin" \ ++ || as_fn_error $? "could not create $ac_file" "$LINENO" 5 ;; + esac + ;; + esac +@@ -67449,42 +44555,7 @@ $as_expr X"$ac_file" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \ + X"$ac_file" : 'X\(//\)[^/]' \| \ + X"$ac_file" : 'X\(//\)$' \| \ + X"$ac_file" : 'X\(/\)' \| . 2>/dev/null || +-echo X"$ac_file" | +- sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{ +- s//\1/ +- q +- } +- /^X\(\/\/\)[^/].*/{ +- s//\1/ +- q +- } +- /^X\(\/\/\)$/{ +- s//\1/ +- q +- } +- /^X\(\/\).*/{ +- s//\1/ +- q +- } +- s/.*/./; q'` +- { as_dir="$ac_dir" +- case $as_dir in #( +- -*) as_dir=./$as_dir;; +- esac +- test -d "$as_dir" || { $as_mkdir_p && mkdir -p "$as_dir"; } || { +- as_dirs= +- while :; do +- case $as_dir in #( +- *\'*) as_qdir=`echo "$as_dir" | sed "s/'/'\\\\\\\\''/g"`;; #( +- *) as_qdir=$as_dir;; +- esac +- as_dirs="'$as_qdir' $as_dirs" +- as_dir=`$as_dirname -- "$as_dir" || +-$as_expr X"$as_dir" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \ +- X"$as_dir" : 'X\(//\)[^/]' \| \ +- X"$as_dir" : 'X\(//\)$' \| \ +- X"$as_dir" : 'X\(/\)' \| . 2>/dev/null || +-echo X"$as_dir" | ++$as_echo X"$ac_file" | + sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{ + s//\1/ + q +@@ -67502,20 +44573,15 @@ echo X"$as_dir" | + q + } + s/.*/./; q'` +- test -d "$as_dir" && break +- done +- test -z "$as_dirs" || eval "mkdir $as_dirs" +- } || test -d "$as_dir" || { { echo "$as_me:$LINENO: error: cannot create directory $as_dir" >&5 +-echo "$as_me: error: cannot create directory $as_dir" >&2;} +- { (exit 1); exit 1; }; }; } ++ as_dir="$ac_dir"; as_fn_mkdir_p + ac_builddir=. + + case "$ac_dir" in + .) ac_dir_suffix= ac_top_builddir_sub=. ac_top_build_prefix= ;; + *) +- ac_dir_suffix=/`echo "$ac_dir" | sed 's,^\.[\\/],,'` ++ ac_dir_suffix=/`$as_echo "$ac_dir" | sed 's|^\.[\\/]||'` + # A ".." for each directory in $ac_dir_suffix. +- ac_top_builddir_sub=`echo "$ac_dir_suffix" | sed 's,/[^\\/]*,/..,g;s,/,,'` ++ ac_top_builddir_sub=`$as_echo "$ac_dir_suffix" | sed 's|/[^\\/]*|/..|g;s|/||'` + case $ac_top_builddir_sub in + "") ac_top_builddir_sub=. ac_top_build_prefix= ;; + *) ac_top_build_prefix=$ac_top_builddir_sub/ ;; +@@ -67555,12 +44621,12 @@ ac_abs_srcdir=$ac_abs_top_srcdir$ac_dir_suffix + esac + _ACEOF + +-cat >>$CONFIG_STATUS <<\_ACEOF ++cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1 + # If the template does not know about datarootdir, expand it. + # FIXME: This hack should be removed a few years after 2.60. + ac_datarootdir_hack=; ac_datarootdir_seen= +- +-case `sed -n '/datarootdir/ { ++ac_sed_dataroot=' ++/datarootdir/ { + p + q + } +@@ -67568,36 +44634,37 @@ case `sed -n '/datarootdir/ { + /@docdir@/p + /@infodir@/p + /@localedir@/p +-/@mandir@/p +-' $ac_file_inputs` in ++/@mandir@/p' ++case `eval "sed -n \"\$ac_sed_dataroot\" $ac_file_inputs"` in + *datarootdir*) ac_datarootdir_seen=yes;; + *@datadir@*|*@docdir@*|*@infodir@*|*@localedir@*|*@mandir@*) +- { echo "$as_me:$LINENO: WARNING: $ac_file_inputs seems to ignore the --datarootdir setting" >&5 +-echo "$as_me: WARNING: $ac_file_inputs seems to ignore the --datarootdir setting" >&2;} ++ { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: $ac_file_inputs seems to ignore the --datarootdir setting" >&5 ++$as_echo "$as_me: WARNING: $ac_file_inputs seems to ignore the --datarootdir setting" >&2;} + _ACEOF +-cat >>$CONFIG_STATUS <<_ACEOF ++cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1 + ac_datarootdir_hack=' + s&@datadir@&$datadir&g + s&@docdir@&$docdir&g + s&@infodir@&$infodir&g + s&@localedir@&$localedir&g + s&@mandir@&$mandir&g +- s&\\\${datarootdir}&$datarootdir&g' ;; ++ s&\\\${datarootdir}&$datarootdir&g' ;; + esac + _ACEOF + + # Neutralize VPATH when `$srcdir' = `.'. + # Shell code in configure.ac might set extrasub. + # FIXME: do we really want to maintain this feature? +-cat >>$CONFIG_STATUS <<_ACEOF +- sed "$ac_vpsub ++cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1 ++ac_sed_extra="$ac_vpsub + $extrasub + _ACEOF +-cat >>$CONFIG_STATUS <<\_ACEOF ++cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1 + :t + /@[a-zA-Z_][a-zA-Z_0-9]*@/!b +-s&@configure_input@&$configure_input&;t t ++s|@configure_input@|$ac_sed_conf_input|;t t + s&@top_builddir@&$ac_top_builddir_sub&;t t ++s&@top_build_prefix@&$ac_top_build_prefix&;t t + s&@srcdir@&$ac_srcdir&;t t + s&@abs_srcdir@&$ac_abs_srcdir&;t t + s&@top_srcdir@&$ac_top_srcdir&;t t +@@ -67607,135 +44674,65 @@ s&@abs_builddir@&$ac_abs_builddir&;t t + s&@abs_top_builddir@&$ac_abs_top_builddir&;t t + s&@INSTALL@&$ac_INSTALL&;t t + $ac_datarootdir_hack +-" $ac_file_inputs | sed -f "$tmp/subs-1.sed" | sed -f "$tmp/subs-2.sed" | sed -f "$tmp/subs-3.sed" >$tmp/out ++" ++eval sed \"\$ac_sed_extra\" "$ac_file_inputs" | $AWK -f "$ac_tmp/subs.awk" \ ++ >$ac_tmp/out || as_fn_error $? "could not create $ac_file" "$LINENO" 5 + + test -z "$ac_datarootdir_hack$ac_datarootdir_seen" && +- { ac_out=`sed -n '/\${datarootdir}/p' "$tmp/out"`; test -n "$ac_out"; } && +- { ac_out=`sed -n '/^[ ]*datarootdir[ ]*:*=/p' "$tmp/out"`; test -z "$ac_out"; } && +- { echo "$as_me:$LINENO: WARNING: $ac_file contains a reference to the variable \`datarootdir' +-which seems to be undefined. Please make sure it is defined." >&5 +-echo "$as_me: WARNING: $ac_file contains a reference to the variable \`datarootdir' +-which seems to be undefined. Please make sure it is defined." >&2;} +- +- rm -f "$tmp/stdin" ++ { ac_out=`sed -n '/\${datarootdir}/p' "$ac_tmp/out"`; test -n "$ac_out"; } && ++ { ac_out=`sed -n '/^[ ]*datarootdir[ ]*:*=/p' \ ++ "$ac_tmp/out"`; test -z "$ac_out"; } && ++ { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: $ac_file contains a reference to the variable \`datarootdir' ++which seems to be undefined. Please make sure it is defined" >&5 ++$as_echo "$as_me: WARNING: $ac_file contains a reference to the variable \`datarootdir' ++which seems to be undefined. Please make sure it is defined" >&2;} ++ ++ rm -f "$ac_tmp/stdin" + case $ac_file in +- -) cat "$tmp/out"; rm -f "$tmp/out";; +- *) rm -f "$ac_file"; mv "$tmp/out" $ac_file;; +- esac ++ -) cat "$ac_tmp/out" && rm -f "$ac_tmp/out";; ++ *) rm -f "$ac_file" && mv "$ac_tmp/out" "$ac_file";; ++ esac \ ++ || as_fn_error $? "could not create $ac_file" "$LINENO" 5 + ;; + :H) + # + # CONFIG_HEADER + # +-_ACEOF +- +-# Transform confdefs.h into a sed script `conftest.defines', that +-# substitutes the proper values into config.h.in to produce config.h. +-rm -f conftest.defines conftest.tail +-# First, append a space to every undef/define line, to ease matching. +-echo 's/$/ /' >conftest.defines +-# Then, protect against being on the right side of a sed subst, or in +-# an unquoted here document, in config.status. If some macros were +-# called several times there might be several #defines for the same +-# symbol, which is useless. But do not sort them, since the last +-# AC_DEFINE must be honored. +-ac_word_re=[_$as_cr_Letters][_$as_cr_alnum]* +-# These sed commands are passed to sed as "A NAME B PARAMS C VALUE D", where +-# NAME is the cpp macro being defined, VALUE is the value it is being given. +-# PARAMS is the parameter list in the macro definition--in most cases, it's +-# just an empty string. +-ac_dA='s,^\\([ #]*\\)[^ ]*\\([ ]*' +-ac_dB='\\)[ (].*,\\1define\\2' +-ac_dC=' ' +-ac_dD=' ,' +- +-uniq confdefs.h | +- sed -n ' +- t rset +- :rset +- s/^[ ]*#[ ]*define[ ][ ]*// +- t ok +- d +- :ok +- s/[\\&,]/\\&/g +- s/^\('"$ac_word_re"'\)\(([^()]*)\)[ ]*\(.*\)/ '"$ac_dA"'\1'"$ac_dB"'\2'"${ac_dC}"'\3'"$ac_dD"'/p +- s/^\('"$ac_word_re"'\)[ ]*\(.*\)/'"$ac_dA"'\1'"$ac_dB$ac_dC"'\2'"$ac_dD"'/p +- ' >>conftest.defines +- +-# Remove the space that was appended to ease matching. +-# Then replace #undef with comments. This is necessary, for +-# example, in the case of _POSIX_SOURCE, which is predefined and required +-# on some systems where configure will not decide to define it. +-# (The regexp can be short, since the line contains either #define or #undef.) +-echo 's/ $// +-s,^[ #]*u.*,/* & */,' >>conftest.defines +- +-# Break up conftest.defines: +-ac_max_sed_lines=50 +- +-# First sed command is: sed -f defines.sed $ac_file_inputs >"$tmp/out1" +-# Second one is: sed -f defines.sed "$tmp/out1" >"$tmp/out2" +-# Third one will be: sed -f defines.sed "$tmp/out2" >"$tmp/out1" +-# et cetera. +-ac_in='$ac_file_inputs' +-ac_out='"$tmp/out1"' +-ac_nxt='"$tmp/out2"' +- +-while : +-do +- # Write a here document: +- cat >>$CONFIG_STATUS <<_ACEOF +- # First, check the format of the line: +- cat >"\$tmp/defines.sed" <<\\CEOF +-/^[ ]*#[ ]*undef[ ][ ]*$ac_word_re[ ]*\$/b def +-/^[ ]*#[ ]*define[ ][ ]*$ac_word_re[( ]/b def +-b +-:def +-_ACEOF +- sed ${ac_max_sed_lines}q conftest.defines >>$CONFIG_STATUS +- echo 'CEOF +- sed -f "$tmp/defines.sed"' "$ac_in >$ac_out" >>$CONFIG_STATUS +- ac_in=$ac_out; ac_out=$ac_nxt; ac_nxt=$ac_in +- sed 1,${ac_max_sed_lines}d conftest.defines >conftest.tail +- grep . conftest.tail >/dev/null || break +- rm -f conftest.defines +- mv conftest.tail conftest.defines +-done +-rm -f conftest.defines conftest.tail +- +-echo "ac_result=$ac_in" >>$CONFIG_STATUS +-cat >>$CONFIG_STATUS <<\_ACEOF + if test x"$ac_file" != x-; then +- echo "/* $configure_input */" >"$tmp/config.h" +- cat "$ac_result" >>"$tmp/config.h" +- if diff $ac_file "$tmp/config.h" >/dev/null 2>&1; then +- { echo "$as_me:$LINENO: $ac_file is unchanged" >&5 +-echo "$as_me: $ac_file is unchanged" >&6;} ++ { ++ $as_echo "/* $configure_input */" \ ++ && eval '$AWK -f "$ac_tmp/defines.awk"' "$ac_file_inputs" ++ } >"$ac_tmp/config.h" \ ++ || as_fn_error $? "could not create $ac_file" "$LINENO" 5 ++ if diff "$ac_file" "$ac_tmp/config.h" >/dev/null 2>&1; then ++ { $as_echo "$as_me:${as_lineno-$LINENO}: $ac_file is unchanged" >&5 ++$as_echo "$as_me: $ac_file is unchanged" >&6;} + else +- rm -f $ac_file +- mv "$tmp/config.h" $ac_file ++ rm -f "$ac_file" ++ mv "$ac_tmp/config.h" "$ac_file" \ ++ || as_fn_error $? "could not create $ac_file" "$LINENO" 5 + fi + else +- echo "/* $configure_input */" +- cat "$ac_result" ++ $as_echo "/* $configure_input */" \ ++ && eval '$AWK -f "$ac_tmp/defines.awk"' "$ac_file_inputs" \ ++ || as_fn_error $? "could not create -" "$LINENO" 5 + fi +- rm -f "$tmp/out12" +-# Compute $ac_file's index in $config_headers. ++# Compute "$ac_file"'s index in $config_headers. + _am_stamp_count=1 + for _am_header in $config_headers :; do + case $_am_header in +- $ac_file | $ac_file:* ) ++ "$ac_file" | "$ac_file":* ) + break ;; + * ) + _am_stamp_count=`expr $_am_stamp_count + 1` ;; + esac + done +-echo "timestamp for $ac_file" >`$as_dirname -- $ac_file || +-$as_expr X$ac_file : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \ +- X$ac_file : 'X\(//\)[^/]' \| \ +- X$ac_file : 'X\(//\)$' \| \ +- X$ac_file : 'X\(/\)' \| . 2>/dev/null || +-echo X$ac_file | ++echo "timestamp for "$ac_file"" >`$as_dirname -- "$ac_file" || ++$as_expr X"$ac_file" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \ ++ X"$ac_file" : 'X\(//\)[^/]' \| \ ++ X"$ac_file" : 'X\(//\)$' \| \ ++ X"$ac_file" : 'X\(/\)' \| . 2>/dev/null || ++$as_echo X"$ac_file" | + sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{ + s//\1/ + q +@@ -67755,8 +44752,8 @@ echo X$ac_file | + s/.*/./; q'`/stamp-h$_am_stamp_count + ;; + +- :C) { echo "$as_me:$LINENO: executing $ac_file commands" >&5 +-echo "$as_me: executing $ac_file commands" >&6;} ++ :C) { $as_echo "$as_me:${as_lineno-$LINENO}: executing $ac_file commands" >&5 ++$as_echo "$as_me: executing $ac_file commands" >&6;} + ;; + esac + +@@ -67777,7 +44774,7 @@ $as_expr X"$mf" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \ + X"$mf" : 'X\(//\)[^/]' \| \ + X"$mf" : 'X\(//\)$' \| \ + X"$mf" : 'X\(/\)' \| . 2>/dev/null || +-echo X"$mf" | ++$as_echo X"$mf" | + sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{ + s//\1/ + q +@@ -67821,42 +44818,7 @@ $as_expr X"$file" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \ + X"$file" : 'X\(//\)[^/]' \| \ + X"$file" : 'X\(//\)$' \| \ + X"$file" : 'X\(/\)' \| . 2>/dev/null || +-echo X"$file" | +- sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{ +- s//\1/ +- q +- } +- /^X\(\/\/\)[^/].*/{ +- s//\1/ +- q +- } +- /^X\(\/\/\)$/{ +- s//\1/ +- q +- } +- /^X\(\/\).*/{ +- s//\1/ +- q +- } +- s/.*/./; q'` +- { as_dir=$dirpart/$fdir +- case $as_dir in #( +- -*) as_dir=./$as_dir;; +- esac +- test -d "$as_dir" || { $as_mkdir_p && mkdir -p "$as_dir"; } || { +- as_dirs= +- while :; do +- case $as_dir in #( +- *\'*) as_qdir=`echo "$as_dir" | sed "s/'/'\\\\\\\\''/g"`;; #( +- *) as_qdir=$as_dir;; +- esac +- as_dirs="'$as_qdir' $as_dirs" +- as_dir=`$as_dirname -- "$as_dir" || +-$as_expr X"$as_dir" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \ +- X"$as_dir" : 'X\(//\)[^/]' \| \ +- X"$as_dir" : 'X\(//\)$' \| \ +- X"$as_dir" : 'X\(/\)' \| . 2>/dev/null || +-echo X"$as_dir" | ++$as_echo X"$file" | + sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{ + s//\1/ + q +@@ -67874,12 +44836,7 @@ echo X"$as_dir" | + q + } + s/.*/./; q'` +- test -d "$as_dir" && break +- done +- test -z "$as_dirs" || eval "mkdir $as_dirs" +- } || test -d "$as_dir" || { { echo "$as_me:$LINENO: error: cannot create directory $as_dir" >&5 +-echo "$as_me: error: cannot create directory $as_dir" >&2;} +- { (exit 1); exit 1; }; }; } ++ as_dir=$dirpart/$fdir; as_fn_mkdir_p + # echo "creating $dirpart/$file" + echo '# dummy' > "$dirpart/$file" + done +@@ -67986,11 +44943,13 @@ done + done # for ac_tag + + +-{ (exit 0); exit 0; } ++as_fn_exit 0 + _ACEOF +-chmod +x $CONFIG_STATUS + ac_clean_files=$ac_clean_files_save + ++test $ac_write_fail = 0 || ++ as_fn_error $? "write failure creating $CONFIG_STATUS" "$LINENO" 5 ++ + + # configure is writing to config.log, and then calls config.status. + # config.status does its own redirection, appending to config.log. +@@ -68010,7 +44969,11 @@ if test "$no_create" != yes; then + exec 5>>config.log + # Use ||, not &&, to avoid exiting from the if with $? = 1, which + # would make configure fail if this is the last instruction. +- $ac_cs_success || { (exit 1); exit 1; } ++ $ac_cs_success || as_fn_exit 1 ++fi ++if test -n "$ac_unrecognized_opts" && test "$enable_option_checking" != no; then ++ { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: unrecognized options: $ac_unrecognized_opts" >&5 ++$as_echo "$as_me: WARNING: unrecognized options: $ac_unrecognized_opts" >&2;} + fi + + +diff --git a/include/vlc_threads.h b/include/vlc_threads.h +index 95e23c3..ce10728 100644 +--- a/include/vlc_threads.h ++++ b/include/vlc_threads.h +@@ -47,7 +47,7 @@ + # include + # include + +-#elif defined( PTHREAD_COND_T_IN_PTHREAD_H ) /* pthreads (like Linux & BSD) */ ++#elif defined( PTHREAD_COND_T_IN_PTHREAD_H ) || defined(__HAIKU__) /* pthreads (like Linux & BSD) */ + # include + # ifdef DEBUG + /* Needed for pthread_cond_timedwait */ +diff --git a/modules/codec/ffmpeg/chroma.c b/modules/codec/ffmpeg/chroma.c +index a9869cc..c3cbe0c 100644 +--- a/modules/codec/ffmpeg/chroma.c ++++ b/modules/codec/ffmpeg/chroma.c +@@ -37,6 +37,7 @@ + #endif + + #include "ffmpeg.h" ++#include "resample.h" + + void E_(InitLibavcodec) ( vlc_object_t *p_object ); + static void ChromaConversion( vout_thread_t *, picture_t *, picture_t * ); +diff --git a/modules/codec/ffmpeg/encoder.c b/modules/codec/ffmpeg/encoder.c +index c273b32..cd4c266 100644 +--- a/modules/codec/ffmpeg/encoder.c ++++ b/modules/codec/ffmpeg/encoder.c +@@ -269,20 +269,20 @@ int E_(OpenEncoder)( vlc_object_t *p_this ) + p_context->dsp_mask = 0; + if( !(p_enc->p_libvlc->i_cpu & CPU_CAPABILITY_MMX) ) + { +- p_context->dsp_mask |= FF_MM_MMX; ++ p_context->dsp_mask |= AV_CPU_FLAG_MMX; + } + if( !(p_enc->p_libvlc->i_cpu & CPU_CAPABILITY_MMXEXT) ) + { +- p_context->dsp_mask |= FF_MM_MMXEXT; ++ p_context->dsp_mask |= AV_CPU_FLAG_MMX2; + } + if( !(p_enc->p_libvlc->i_cpu & CPU_CAPABILITY_3DNOW) ) + { +- p_context->dsp_mask |= FF_MM_3DNOW; ++ p_context->dsp_mask |= AV_CPU_FLAG_3DNOW; + } + if( !(p_enc->p_libvlc->i_cpu & CPU_CAPABILITY_SSE) ) + { +- p_context->dsp_mask |= FF_MM_SSE; +- p_context->dsp_mask |= FF_MM_SSE2; ++ p_context->dsp_mask |= AV_CPU_FLAG_SSE; ++ p_context->dsp_mask |= AV_CPU_FLAG_SSE2; + } + + sout_CfgParse( p_enc, ENC_CFG_PREFIX, ppsz_enc_options, p_enc->p_cfg ); +@@ -505,7 +505,7 @@ int E_(OpenEncoder)( vlc_object_t *p_this ) + } + + if ( p_sys->b_trellis ) +- p_context->flags |= CODEC_FLAG_TRELLIS_QUANT; ++ p_context->trellis |= 1; + + if ( p_sys->i_qmin > 0 && p_sys->i_qmin == p_sys->i_qmax ) + p_context->flags |= CODEC_FLAG_QSCALE; +@@ -519,9 +519,9 @@ int E_(OpenEncoder)( vlc_object_t *p_this ) + p_context->bit_rate_tolerance = p_sys->i_vtolerance; + + if( p_sys->i_qmin > 0 ) +- p_context->mb_qmin = p_context->qmin = p_sys->i_qmin; ++ p_context->qmin = p_sys->i_qmin; + if( p_sys->i_qmax > 0 ) +- p_context->mb_qmax = p_context->qmax = p_sys->i_qmax; ++ p_context->qmax = p_sys->i_qmax; + p_context->max_qdiff = 3; + + p_context->mb_decision = p_sys->i_hq; +@@ -809,7 +809,7 @@ static block_t *EncodeVideo( encoder_t *p_enc, picture_t *p_pict ) + if ( current_date + HURRY_UP_GUARD3 > frame.pts ) + { + p_sys->p_context->mb_decision = FF_MB_DECISION_SIMPLE; +- p_sys->p_context->flags &= ~CODEC_FLAG_TRELLIS_QUANT; ++ p_sys->p_context->trellis = 0; + msg_Dbg( p_enc, "hurry up mode 3" ); + } + else +@@ -818,7 +818,7 @@ static block_t *EncodeVideo( encoder_t *p_enc, picture_t *p_pict ) + + if ( current_date + HURRY_UP_GUARD2 > frame.pts ) + { +- p_sys->p_context->flags &= ~CODEC_FLAG_TRELLIS_QUANT; ++ p_sys->p_context->trellis = 0; + #if LIBAVCODEC_BUILD >= 4690 + p_sys->p_context->noise_reduction = p_sys->i_noise_reduction + + (HURRY_UP_GUARD2 + current_date - frame.pts) / 500; +@@ -828,7 +828,7 @@ static block_t *EncodeVideo( encoder_t *p_enc, picture_t *p_pict ) + else + { + if ( p_sys->b_trellis ) +- p_sys->p_context->flags |= CODEC_FLAG_TRELLIS_QUANT; ++ p_sys->p_context->trellis |= 1; + #if LIBAVCODEC_BUILD >= 4690 + p_sys->p_context->noise_reduction = + p_sys->i_noise_reduction; +diff --git a/modules/codec/ffmpeg/postprocess.c b/modules/codec/ffmpeg/postprocess.c +index be87e11..286902d 100644 +--- a/modules/codec/ffmpeg/postprocess.c ++++ b/modules/codec/ffmpeg/postprocess.c +@@ -54,8 +54,8 @@ + *****************************************************************************/ + typedef struct video_postproc_sys_t + { +- pp_context_t *pp_context; +- pp_mode_t *pp_mode; ++ pp_context *pp_context; ++ pp_mode *pp_mode; + + vlc_bool_t *pb_pp; + +@@ -231,7 +231,7 @@ static int PPQCallback( vlc_object_t *p_this, char const *psz_cmd, + { + int i_quality = newval.i_int; + char *psz_name = config_GetPsz( p_dec, "ffmpeg-pp-name" ); +- pp_mode_t *pp_mode; ++ pp_mode *pp_mode; + + if( !psz_name ) + { +diff --git a/modules/codec/ffmpeg/video_filter.c b/modules/codec/ffmpeg/video_filter.c +index fd9dc18..15e02b2 100644 +--- a/modules/codec/ffmpeg/video_filter.c ++++ b/modules/codec/ffmpeg/video_filter.c +@@ -39,7 +39,8 @@ + #endif + + #include "ffmpeg.h" +-#include "resampleWrapper.h" ++#include "resample.h" ++#include "resample.c" + + void E_(InitLibavcodec) ( vlc_object_t *p_object ); + static int CheckInit( filter_t *p_filter ); +diff --git a/modules/demux/a52.c b/modules/demux/a52.c +index fac71f7..ae419ec 100644 +--- a/modules/demux/a52.c ++++ b/modules/demux/a52.c +@@ -87,6 +87,7 @@ static int Open( vlc_object_t * p_this ) + if( stream_Peek( p_demux->s, &p_peek, 12+8 ) == 12+8 && + !memcmp( p_peek, "RIFF", 4 ) && !memcmp( &p_peek[8], "WAVE", 4 ) ) + { ++ int i_size; + /* Skip the wave header */ + i_peek = 12 + 8; + while( memcmp( p_peek + i_peek - 8, "data", 4 ) ) +@@ -104,7 +105,7 @@ static int Open( vlc_object_t * p_this ) + + /* Some A52 wav files don't begin with a sync code so we do a more + * extensive search */ +- int i_size = stream_Peek( p_demux->s, &p_peek, i_peek + A52_PACKET_SIZE * 2); ++ i_size = stream_Peek( p_demux->s, &p_peek, i_peek + A52_PACKET_SIZE * 2); + i_size -= (PCM_FRAME_SIZE + A52_MAX_HEADER_SIZE); + + while( i_peek < i_size ) +diff --git a/modules/demux/dts.c b/modules/demux/dts.c +index e33c1be..56de2ba 100644 +--- a/modules/demux/dts.c ++++ b/modules/demux/dts.c +@@ -80,6 +80,8 @@ static int Open( vlc_object_t * p_this ) + if( stream_Peek( p_demux->s, &p_peek, 20 ) == 20 && + !memcmp( p_peek, "RIFF", 4 ) && !memcmp( &p_peek[8], "WAVE", 4 ) ) + { ++ uint32_t i_len; ++ int i_size; + /* Find the wave format header */ + i_peek = 12 + 8; + while( memcmp( p_peek + i_peek - 8, "fmt ", 4 ) ) +@@ -94,7 +96,7 @@ static int Open( vlc_object_t * p_this ) + } + + /* Sanity check the wave format header */ +- uint32_t i_len = GetDWLE( p_peek + i_peek - 4 ); ++ i_len = GetDWLE( p_peek + i_peek - 4 ); + if( i_len > DTS_PROBE_SIZE ) + return VLC_EGENERIC; + +@@ -124,7 +126,7 @@ static int Open( vlc_object_t * p_this ) + + /* Some DTS wav files don't begin with a sync code so we do a more + * extensive search */ +- int i_size = stream_Peek( p_demux->s, &p_peek, DTS_PROBE_SIZE ); ++ i_size = stream_Peek( p_demux->s, &p_peek, DTS_PROBE_SIZE ); + i_size -= DTS_MAX_HEADER_SIZE; + + while( i_peek < i_size ) +diff --git a/modules/gui/beos/InterfaceWindow.cpp b/modules/gui/beos/InterfaceWindow.cpp +index f252085..ecc9aea 100644 +--- a/modules/gui/beos/InterfaceWindow.cpp ++++ b/modules/gui/beos/InterfaceWindow.cpp +@@ -33,7 +33,6 @@ + #include + #include + #include +-#include + #include + #include + +diff --git a/modules/packetizer/h264.c b/modules/packetizer/h264.c +index 95a695c..9baaa4f 100644 +--- a/modules/packetizer/h264.c ++++ b/modules/packetizer/h264.c +@@ -219,13 +219,14 @@ static int Open( vlc_object_t *p_this ) + i_sps = (*p++)&0x1f; + for( i = 0; i < i_sps; i++ ) + { ++ block_t *p_sps; + uint16_t i_length = GetWBE( p ); p += 2; + if( i_length > + (uint8_t*)p_dec->fmt_in.p_extra + p_dec->fmt_in.i_extra - p ) + { + return VLC_EGENERIC; + } +- block_t *p_sps = nal_get_annexeb( p_dec, p, i_length ); ++ p_sps = nal_get_annexeb( p_dec, p, i_length ); + if( !p_sps ) + return VLC_EGENERIC; + p_sys->p_sps = block_Duplicate( p_sps ); +@@ -237,13 +238,14 @@ static int Open( vlc_object_t *p_this ) + i_pps = *p++; + for( i = 0; i < i_pps; i++ ) + { ++ block_t *p_pps; + uint16_t i_length = GetWBE( p ); p += 2; + if( i_length > + (uint8_t*)p_dec->fmt_in.p_extra + p_dec->fmt_in.i_extra - p ) + { + return VLC_EGENERIC; + } +- block_t *p_pps = nal_get_annexeb( p_dec, p, i_length ); ++ p_pps = nal_get_annexeb( p_dec, p, i_length ); + if( !p_pps ) + return VLC_EGENERIC; + p_sys->p_pps = block_Duplicate( p_pps ); +@@ -449,6 +451,7 @@ static block_t *PacketizeAVC1( decoder_t *p_dec, block_t **pp_block ) + block_t *p_pic; + int i_size = 0; + int i; ++ block_t *p_part; + + for( i = 0; i < p_sys->i_avcC_length_size; i++ ) + { +@@ -462,7 +465,7 @@ static block_t *PacketizeAVC1( decoder_t *p_dec, block_t **pp_block ) + break; + } + +- block_t *p_part = nal_get_annexeb( p_dec, p, i_size ); ++ p_part = nal_get_annexeb( p_dec, p, i_size ); + if( !p_part ) + break; + p_part->i_dts = p_block->i_dts; +diff --git a/modules/packetizer/mpeg4audio.c b/modules/packetizer/mpeg4audio.c +index 41b57cc..1c83036 100644 +--- a/modules/packetizer/mpeg4audio.c ++++ b/modules/packetizer/mpeg4audio.c +@@ -332,6 +332,7 @@ static int ADTSSyncInfo( decoder_t * p_dec, const byte_t * p_buf, + { + int i_profile, i_sample_rate_idx, i_frame_size; + vlc_bool_t b_crc; ++ unsigned short i_raw_blocks_in_frame; + + /* Fixed header between frames */ + //int i_id = ( (p_buf[1] >> 3) & 0x01) ? 2 : 4; /* MPEG-2 or 4 */ +@@ -350,7 +351,7 @@ static int ADTSSyncInfo( decoder_t * p_dec, const byte_t * p_buf, + i_frame_size = ((p_buf[3] & 0x03) << 11) | (p_buf[4] << 3) | + ((p_buf[5] >> 5) /*& 0x7*/); + //uint16_t buffer_fullness = ((p_buf[5] & 0x1f) << 6) | (p_buf[6] >> 2); +- unsigned short i_raw_blocks_in_frame = p_buf[6] & 0x03; ++ i_raw_blocks_in_frame = p_buf[6] & 0x03; + + if( !*pi_sample_rate || !*pi_channels || !i_frame_size ) + { +@@ -436,15 +437,22 @@ static int Mpeg4GAProgramConfigElement( bs_t *s ) + { + /* TODO compute channels count ? */ + int i_tag = bs_read( s, 4 ); ++ int i_num_front; ++ int i_num_side; ++ int i_num_back; ++ int i_num_lfe; ++ int i_num_assoc_data; ++ int i_num_valid_cc; ++ int i_comment; + if( i_tag != 0x05 ) + return -1; + bs_skip( s, 2 + 4 ); // object type + sampling index +- int i_num_front = bs_read( s, 4 ); +- int i_num_side = bs_read( s, 4 ); +- int i_num_back = bs_read( s, 4 ); +- int i_num_lfe = bs_read( s, 2 ); +- int i_num_assoc_data = bs_read( s, 3 ); +- int i_num_valid_cc = bs_read( s, 4 ); ++ i_num_front = bs_read( s, 4 ); ++ i_num_side = bs_read( s, 4 ); ++ i_num_back = bs_read( s, 4 ); ++ i_num_lfe = bs_read( s, 2 ); ++ i_num_assoc_data = bs_read( s, 3 ); ++ i_num_valid_cc = bs_read( s, 4 ); + + if( bs_read1(s) ) + bs_skip( s, 4 ); // mono downmix +@@ -460,19 +468,20 @@ static int Mpeg4GAProgramConfigElement( bs_t *s ) + bs_skip( s, i_num_assoc_data * (4) ); + bs_skip( s, i_num_valid_cc * (5) ); + bs_align( s ); +- int i_comment = bs_read( s, 8 ); ++ i_comment = bs_read( s, 8 ); + bs_skip( s, i_comment * 8 ); + return 0; + } + + static int Mpeg4GASpecificConfig( mpeg4_cfg_t *p_cfg, bs_t *s ) + { ++ int i_extension_flag; + p_cfg->i_frame_length = bs_read1(s) ? 960 : 1024; + + if( bs_read1( s ) ) // depend on core coder + bs_skip( s, 14 ); // core coder delay + +- int i_extension_flag = bs_read1( s ); ++ i_extension_flag = bs_read1( s ); + if( p_cfg->i_channel == 0 ) + { + Mpeg4GAProgramConfigElement( s ); +diff --git a/modules/stream_out/mosaic_bridge.c b/modules/stream_out/mosaic_bridge.c +index 7c85ba4..301dbfc 100644 +--- a/modules/stream_out/mosaic_bridge.c ++++ b/modules/stream_out/mosaic_bridge.c +@@ -339,11 +339,12 @@ static int Del( sout_stream_t *p_stream, sout_stream_id_t *id ) + + if ( p_sys->p_decoder != NULL ) + { ++ void* p_owner; + picture_t **pp_ring = p_sys->p_decoder->p_owner->pp_pics; + + if( p_sys->p_decoder->p_module ) + module_Unneed( p_sys->p_decoder, p_sys->p_decoder->p_module ); +- void *p_owner = p_sys->p_decoder->p_owner; ++ p_owner = p_sys->p_decoder->p_owner; + vlc_object_detach( p_sys->p_decoder ); + vlc_object_destroy( p_sys->p_decoder ); + +diff --git a/modules/stream_out/switcher.c b/modules/stream_out/switcher.c +index f5c3a07..8d6cb19 100644 +--- a/modules/stream_out/switcher.c ++++ b/modules/stream_out/switcher.c +@@ -357,20 +357,20 @@ static sout_stream_id_t *Add( sout_stream_t *p_stream, es_format_t *p_fmt ) + id->ff_enc_c->dsp_mask = 0; + if( !(p_stream->p_libvlc->i_cpu & CPU_CAPABILITY_MMX) ) + { +- id->ff_enc_c->dsp_mask |= FF_MM_MMX; ++ id->ff_enc_c->dsp_mask |= AV_CPU_FLAG_MMX; + } + if( !(p_stream->p_libvlc->i_cpu & CPU_CAPABILITY_MMXEXT) ) + { +- id->ff_enc_c->dsp_mask |= FF_MM_MMXEXT; ++ id->ff_enc_c->dsp_mask |= AV_CPU_FLAG_MMX2; + } + if( !(p_stream->p_libvlc->i_cpu & CPU_CAPABILITY_3DNOW) ) + { +- id->ff_enc_c->dsp_mask |= FF_MM_3DNOW; ++ id->ff_enc_c->dsp_mask |= AV_CPU_FLAG_3DNOW; + } + if( !(p_stream->p_libvlc->i_cpu & CPU_CAPABILITY_SSE) ) + { +- id->ff_enc_c->dsp_mask |= FF_MM_SSE; +- id->ff_enc_c->dsp_mask |= FF_MM_SSE2; ++ id->ff_enc_c->dsp_mask |= AV_CPU_FLAG_SSE; ++ id->ff_enc_c->dsp_mask |= AV_CPU_FLAG_SSE2; + } + + id->ff_enc_c->sample_rate = p_fmt->audio.i_rate; +@@ -657,8 +657,9 @@ static void NetCommand( sout_stream_t *p_stream ) + + if ( i_len > 0 ) + { ++ int i_cmd; + psz_buffer[i_len] = '\0'; +- int i_cmd = strtol( psz_buffer, NULL, 0 ); ++ i_cmd = strtol( psz_buffer, NULL, 0 ); + if ( i_cmd < -1 || i_cmd > p_sys->i_nb_pictures ) + { + msg_Err( p_stream, "got a wrong command (%d)", i_cmd ); +@@ -731,20 +732,20 @@ static mtime_t VideoCommand( sout_stream_t *p_stream, sout_stream_id_t *id ) + id->ff_enc_c->dsp_mask = 0; + if( !(p_stream->p_libvlc->i_cpu & CPU_CAPABILITY_MMX) ) + { +- id->ff_enc_c->dsp_mask |= FF_MM_MMX; ++ id->ff_enc_c->dsp_mask |= AV_CPU_FLAG_MMX; + } + if( !(p_stream->p_libvlc->i_cpu & CPU_CAPABILITY_MMXEXT) ) + { +- id->ff_enc_c->dsp_mask |= FF_MM_MMXEXT; ++ id->ff_enc_c->dsp_mask |= AV_CPU_FLAG_MMX2; + } + if( !(p_stream->p_libvlc->i_cpu & CPU_CAPABILITY_3DNOW) ) + { +- id->ff_enc_c->dsp_mask |= FF_MM_3DNOW; ++ id->ff_enc_c->dsp_mask |= AV_CPU_FLAG_3DNOW; + } + if( !(p_stream->p_libvlc->i_cpu & CPU_CAPABILITY_SSE) ) + { +- id->ff_enc_c->dsp_mask |= FF_MM_SSE; +- id->ff_enc_c->dsp_mask |= FF_MM_SSE2; ++ id->ff_enc_c->dsp_mask |= AV_CPU_FLAG_SSE; ++ id->ff_enc_c->dsp_mask |= AV_CPU_FLAG_SSE2; + } + + id->ff_enc_c->width = p_sys->p_pictures[p_sys->i_cmd-1].format.i_width; +diff --git a/po/af.gmo b/po/af.gmo +index 9d103643e65521ad94814b8587473190d8d5ed8d..e6341f3a14e28ec9c9ba4c5dfbda064475ca981c 100644 +GIT binary patch +delta 105 +zcmey&+Q2p;$Jd#WfguQpSs54@rZF)v01?9+Ai)l#=L2aDAiW$&O9SZ*K$;gwp8?V! +n^|ydD50HKUq=kU=+l@O*8F_pX^U_Nb(^IV!64NH@G93c|68{n; + +delta 92 +zcmZo*`^-8a$JdOJfguQpSs54@I+++4fQX?VNU#IxNkEzdNY4V&(m;AKkmd!_`++n_ +Z{aGN*1EenlX(1r}VB^kG#>v)9M*%Fb4PF2M + +diff --git a/po/af.po b/po/af.po +index 91b82ad..7e30fca 100644 +--- a/po/af.po ++++ b/po/af.po +@@ -11,6 +11,7 @@ msgstr "" + "PO-Revision-Date: 2005-11-12 17:57+0000\n" + "Last-Translator: Jonathan Carter \n" + "Language-Team: Afrikaans \n" ++"Language: af\n" + "MIME-Version: 1.0\n" + "Content-Type: text/plain; charset=UTF-8\n" + "Content-Transfer-Encoding: 8bit\n" +@@ -6138,8 +6139,8 @@ msgstr "" + #: modules/audio_filter/equalizer.c:58 + msgid "" + "Don't use presets, but manually specified bands. You need to provide 10 " +-"values between -20dB and 20dB, separated by spaces, e.g. \"0 2 4 2 0 -2 -4 -" +-"2 0\"" ++"values between -20dB and 20dB, separated by spaces, e.g. \"0 2 4 2 0 -2 -4 " ++"-2 0\"" + msgstr "" + + #: modules/audio_filter/equalizer.c:62 +@@ -6828,8 +6829,8 @@ msgid "" + "16 no padding\n" + "32 ac vlc\n" + "64 Qpel chroma.\n" +-"This must be the sum of the values. For example, to fix \"ac vlc\" and \"ump4" +-"\", enter 40." ++"This must be the sum of the values. For example, to fix \"ac vlc\" and " ++"\"ump4\", enter 40." + msgstr "" + + #: modules/codec/ffmpeg/ffmpeg.h:115 modules/codec/ffmpeg/ffmpeg.h:248 +diff --git a/po/ar.gmo b/po/ar.gmo +index 232be6aad279fd1281e58343ddd3418b5bdcf760..a9690b4ac592a36f3b70554a5dce09f0a5fb3851 100644 +GIT binary patch +delta 23667 +zcmXZkcbrW}AII^t_paW14Oj1VEmmEu-if+ebkTbWj$RTqgajdoC<%!YBqVy2AbN?C +zMQ{N^`v?(WKSZBd$gi_(1aRlHv*!t)Z<33wSj&x@-Y +z@P=YMmdBG=7?ajBqcJ=6PM8$OIHx)1VM5xMqCUS0XW~_ygMI1;yaf0f6JxMJ!1sz$ +zNZue2HU=|L?~XZeH0Hs@SPFNc2JjFIV#>?}hr@$5;%vVP5>xnY2;BOHI85 +zCc@Z8e!$B@p$-knurnsXey%!1ydCY|m+=aAF170-sVwfAdU^<+F8o(md8h(w6z;-NzM^HKN +z1T~?TsK_K}7Vz?6PSg_AL?+~WEv?{nL(O;yDksLHLb(Ao((kYUp20|b<=P{f+kM$l +zGcJINR0&i+Ra|>-)Is;MyXKPyo6|oMegRK{q!f~hpZE_xJ$Nmq|aFqsy<_#9X +zH0|xi%2+tU^O~a$oUtA3`f999{WR)9X*$}2v!k|UV{Cx&cnQ~_A~&g1z^kY_hVT!c +zf;vd>j?FAJ>I5t1>J3o2(96{)pia7FsN6V?`uug&?z!iDiCX)_oo&}-MnyChjKU-6IwF|oTv?ZE?ir5ltjXO{i +zN#85r?Zj%R2>pkeP?C48UMej6uM!1ie{IZoj&xV{l7s4+=g1S-Ke!Z;k<%+>D)$bpXV6f=Y8#H&59a$ +z8H~kv%!W%)_ie{;e^`n771Y{i?Z^ICp$Y|MWoOiyF2z{<5658D{x-88P$4{o8qfpO +zga1RVX}$rLl#Nl>yW%(;gumfq%!#K5S|lD1WdCbF)*ECq>4eJmQK*w}9;&0&uKq1* +ztq-G))|>biCL3(IP{>);*}~ZywXMga-X-f%OM7UrZ&~{%4GK+Yh;`H+l}v-NJ|4xq +zn0ct36O~ajX^c8p`lBMS9Caf8j2h@eRI;WXW}h#Oy1y0b^V59_TBEh75AH#|E^nYB +z5HZ|lngMlRc~@_On#o|)z-FNip3SJW-sL=sdN*9eSWG#>t~W+4o!^dvMlunjaV6@= +zyod?$0V>4La1dq~X#<^x1E_C6Ek({zwr#7Uj`ESHfxM5}T??J-Fhuik(L4_~|6~flY2fR@j&I#1M{uVX!-KgDj6m|b))HePP)qjf70dE#&MJ?4@ +zOvdxQ(-d^WZ>R_Vjd~XZ#@Lyk9u?xs*c>~fmTD{N#Jh~zZkfi~HjYB=_e!V;_Hpfl +zoug6rPsS2F-&;LsO__^27rLgmIMsO`HRl`|(%k-39!q+_gy+?8*ZqkBFF^YY +z)NYuK32+@M>ArF9!{XG>p`Mpuk_|lRBtoPaWTinPE{uA6#kd>ZMMY>7DyyfU2C~q( +z77J3}ff~RcsHJ>^dYKiQZ2gu(?XpgJGS! +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 +z8I=QiB&O;bK%y>_jEi +zK~yeWb=Q*?vPO~72Zx}a|jhiOnq@1aH>C}cCqj#}Fas58AE +zY6i=(816=e_#P@^ISbq8%Aq3H0!v_T)Pome_;aWwz2{RnMImVsOQtKR?G{ng)+ik+ +zInD +zhX2*tUaU{OY6+`tQmk^&TZ-#3gbk|L^}fz; +zum)2KJa +zk?8+QLCN)Y9h*r<%t^gF>HwL7>Tn@yEjPRR0n~oK=6r)XKi;ZqGp~z!U3W#@Hykz5 +zk5I4Yl~(t??G*H&pD={yQK5d0r7%@JOSWpL?bZRcmP1e>o{8#s4Qk1@Vh9t~w*ePG +zC2I_7H?>49Nhd6-Z0kuu+5eGq2kMN!hKhvOz&Z+{9#k5&YhqCcPHWT&*8}wy9e_%{ +zdCt|S&+R}(TtGPdCP-fIfgv3WzA(E`*=H=;T^=)8nksNY8|MUqAq%52V(s3fe3 +zA#8yf;4mzPlW{C=Mn$l6V|JT5tWRMRc0(my<|dZq`A{J)gvx<9R46;4w%Hg|DA%DP +zwF$Lkr!at#O)WBsPyy>!>y>Szlj=o+Gf^q +z5!8&!p!$hJC09GtfCu6moQYbZnayn=3s48yn&#|(ZI1^uw8p}3+b)=h`oQ~G0_UMZ +zw-5FDt=_^0+6xt-F|PhG>V*3W3*$>vg!8vFV^PW87Paeo`xJUn7>1qjf4UIC?|57B +zeE=J@wi^euu^GOHiqt%;fNN0^`vbKk&rzYy*VevKl|w~vESAP^T>ZM!&k%1n)OL<^ +ze(Aj8Ox4crtA={uVAMdSqIS!tsG06W9aQJA3BE+#-=Musq!a4C-bf^UZ!(2~G<=2H +zhG(5Gu>kd49n8AUfzD5ydz`mW4^Gq323i(F)O(@^I33mB8mxgQFuC@B`cAgixll<{ +z7&YQrsQua&m0W#M`+G9x!8NEgJc>Q>Ja)y{cg$5-oO;sEmb@{}E~s5L6H{sbFQTBA +z$U4;8ZA3kAAL_>zqLyp~>VY#*6Zr&{ +zq-(G!{)pPvcToL3>FL`CQueZuXG483A1btEP;ajusO>h{)pxu4Ra8e=-nDZf3UwZ| +z#mP7nHK3QMB~9Ghelr?E4Xm9{K}X^s)Dlcbg?J(6!egib+(%`1iau5^jXL?7I6I*t +zFaVX5lTZ_xjXG+Vq9VHjL%0JKVgE9PiWHLfwHxc8wo3!lgL`9ToQ|5oL5#)UFcL%k +zETs8RIZ_-okyz9K8=C-p$4)TIjVhc3k5y!Flq)ju`#~FY1p8@{Qz>-*=&G? +z^cU2CE<2yN_T&R?Kv_`PpBuGZYogvEy-+zd5BqBWe@#JW^;?5%#C1>uYV913A?gd9 +z+fZ450sCX*V0-%wL9O+C)Gk<#ir|;1uW*M^OM4bI@MJ?!`#%qb53nLCI}c(`Jb_BC +z2dKy-9ctHeV2FAFY=m`CGh2w7=^j)L{E2$d15`369%eaI5!GKO4FCRb2nA*1`>2_J +zhDwfIsQ3MS)Y>K=Zb_K~HM3Z(jvY`PE=R5Px2PFka^64<LC#sI?YIsVnFFZz{w>#DY83ll +zKO8m~Wk1P`M{S$usDUJU&vr#x)PpjjuIE9WjHOXCtLd({M}0qd7Zs7YsDZ9R-M0s| +z9WP=cyy8>PTK|dqj+S7w{ahb~no$gDJJmovxG8ENom_igROH@6Jzy?sd#%NZxED3h +zT4OBaZBP#$jOyQikAiNPj9TN5Q8};<6}rQygXa&_0FsQg>zPq!c{x;)j={dT5H(}{ +zWkpMy3-y&uk=DRxV?|to^yhmQDCi}012xlos19GD29$A}C0juZQLlws%O0rfAE0LZ +zDe9}$R?LM5Q4zg`3oz4oyMF^titxPM82KqHHIamq?RpB-=ZZUfp!)j^wL8{ga_#?bDJU!VqSi9$6gw(Is7RDU +z4Xi0@sk&hW9D!Q%&8U$7?CLjM{f#r*RQrQNIh@OVlTo`U(=_&fK?*e}G{inw1;0n_ +ziWk@di%+*uPQu~TH{lR0{C+U}k4u+fcj}K&Yun}n`-=4uDgqZ#?P+INdn4zEGuZ!n +z;5iy(hMCsU+c=8)4jheTXW8p?Gftu&GuzhuM{G^~JSsvZ=UC+8P@#@TZR4(}gRDO) +zQZrCVy=IO}x??mb^p{W_J;cJ8V6MGHN}}4EV>tORK>Y)}g|krikND8OTCGH#14pp{ +zK6dqN^Q^tPvzPA*bDZ0pSDgvw+XsqbG#xd^2{;{_WAcxJ;lGA=!ur%-VLhy~z`lOZ +z!$#EqaP_E#yyVFKNvMhV^FOw~NNmTUG-Ue3_VrBsiTY_&2p27~gK8D(0S8bsPQBQE +zLsAhl((xG7ww%AjzBhb=)pHL^{8;r*s%Wap8Laq4;)NXi&8d!%F7QtbdnfiE4h>I{v`+qqFh4d`y +z0il%^kv6E;tdAU(-lwRg_zIihHdGEI{oLvuP(N~QM1?%C$_|>$sFO7>>cOS40mh)O +zGkyvMjdVHc2>lL2c*M2eLCrY$h5Z6DH-1FDEoxv7PzTc+)V52z+RWz6i(0~BsDYJ3 +zy*nDNX8$YX^JvhQ!}X|bwjb5;1yqMOFcm&P9l_oj`{_0X4x;)tHo}9blP%*~`$kk9 +zHLyOY=lG~x_yjeft!sT7(ODWoG~7W&B>6fET>(@!N4a`U)Bu~JlC2wRMzc^8_}tZZ +zphA8UHGtnx4}OH&zNx;nBm6_3LOB|ap-#XAUs?9Yp^~Tv?#AQzDb8MRNmOiuJ-8NX +zP1~U&)CCo>!Kfu2jT-2D)PDcLc@4GHeuA&<3qeLy2RTqjV{t5m%~3NPgT-+k>Vtbx +zAv}$m`6JW=lYC=KlnWK9;;5vpj!N!^sQ#u{yYDTbpfz2MdM$22eQ-CH#xqz06K%8) +z*2j0Kzk|`Z4|Nc|K+QDoCi{FtRAk;k?XI4v?YbE?fK;266YRfy6xz~I6{Bzw=ECEs +z8y}zsm~e|dFdb^EMD=$UwM4H_15Cf2{jZK< +zDaf|YA)%7I{VddO_{7y$qx#$Q9s9pA +zge%eo~;W7ep;xEC#S4>gCe} +z^%bw>4)(vYw>J&?#xnsGs%_4nP#v5_<;3r(5J&E`T*-=>StG1~?XU?hbnQ1$NBBRe +z0j2-Jwr5e)xf1PDP>5=yZfJ%r@LhMqZVXXBh05Z`sN|{gqb)@@)OMYQdW)`i?Wa-a +zz(1H1-=LNx=Ppaq(x}M#^(p9J=!UU49TkBixD_vAHJr0M82%53PN8O+X^+*LVMGKo +z#=iK;UcQK6qWw0o<_B!xBX9(t+lR4O>8J1)7vCF0VHgcr4%&CQIoN^vEv$`o4%y3M +zj`JLzqdoiKpmz-)V=SIMVoRCvXZzbxF|0=WQB-779<`+?gSn_T!wCNUsW*gzW;E=$ +z{V{1HMpJ)?W3j+5w!OZk +zPT&FB*POLqaP&LJw`lGEA1Q3XsPp!6xQWxL_rAb`>F_BkC-VOq4F4a8jCTHx+i9{eaY3JcM>n7?%(j6{erT`|JeUiXgEq?JT|{(Av=p&t4zOJ +z2Xk;7^%Gbbn_drk3vo6oas~ddh;_#Iseg=bW1c@PSw~<~>dSB-KE&hLu{$=9eprh7SJ)1(Voj|0x1E^du?qG5 +z*b;+xgI*_Wi^{DXcm1HZM;GqdzCD05sAs%yKPs(6brAi4P~i|9gHKSA8}!hAAbEku +zsE>VQ?~(?OgWfOHSK|a6{)7RsB>$o&T=^gSi%W9g$|4Q77eb)EZyJikOpMLuxJKQP)?Z-W?lIZ`JQnXZ>+kzm7VRpJ72Q +zYK92=U=`Fr>N;DYzUg#BMQ9jS$2q8ooJNK4HEQNr0+F5~)&w>1p_m(|qTU(nP!Zeh +zuK$8rlvLL!^v9Q|wdx(T2am-9)MsN1Zo^dg5cPnFNPBQP)aUA<*0w!rfTK|FiqCO5 +z{*0TjZvwkNlrYls3)2uqK_l&e`U*836{2<66c3>ylQofbSP(Un#;6E&z*X2EHINL6 +zZ3zmZ?kj@{u?8xs>!F^zC~>6k>Aih`2EAqvV{tr(3VDJgk>O;@i5g%5)C23edOYg$ +zV^JZV;OZY^B=sezrCE*|$OSBoH!u#fCiN|(9g{|ezku{dt>OEqFC1TEIlP1leY#|J +zUmnasy$Y(mJu3P7I!B-$I1v@e51rqj25=m;v=M%CTeCt~iH2I(A19*L@G)u)-%4Qv +zi^HPSd!gDFpk7u#pk6|cQMpneWn}obU+T(4YcMbE*YFAL2{YJ0UZNfpoiQ@}-xY4c +z%hXe6j?}*!^u4S^BKU6M!kCpKtHpB#3Bg1dA=GcMyJk-JS2(=VRvqgpv +zutKQN$2uFMa-;)li8`bD?;F0({u@O>Svwt-L`yIqZo=$%0ng)8ERV;sM}`lcgm2mB +zs-u#!1vbF$r~_&<*1{K<6=QSQK;ls+ZAT3M{(l$+CEG02zW(0ba1=9Bzm7_>SEvCd +z&lws1Vv!rQTQ;MX>~~Z@i9(U#lQaqyi9x7j8;><`EvnzU82{lK{awXIJ&@8o9x=b<4%9?SMZsF^f( +zjzFE^pQ7Fk8&PZi02R{2c_YK0&x4v#Z46;2)Pu%j8(fV0@F{9ZzsqM6J(th7?emBR +zJ-A?g>!2ZOTlI7G&r#P8pmO83tEVmy8UA`5jcRY<>hEEQ`eNr!)PSy_lJ%K0qhHW2 +zM5ETWv8#7Ot);Gq@JrWz6t$Lrq3%yv$d({4YU#?Ma-}(junQ_VC!vnuk5Ca@f;rLO +z;%+#D8sVR)2fso608yl{ZI?2r5LZJbX!_Gmhh3QCoEzE$b%ek +zzE_b#h#R`0LOcaEkS|f$dH}Uuk`%RU4&hMhC7i1;l6tmcW(ak1=0iQWF($(Z +zOX5-*7PZ@eu0E=usSp*L(_^Y3DjN)843v3_`8lIMfGcJLjR6Y9T7?H>2*`?yeui +z0QH|y13T`#=&t{PItOl|j%@!v1q~o;-N^9w@;s;y7DGL_JnDKS)Ed@w?Hy4A=z@u` +zC+grCfLf|?sB>W+s=u|UiETk8;a=n%;paaJMQHdR>O@Lj&mLS9_281I2gNw6xa&1s +zy|%Lf>VZvNy$9+&-v`ytNY_3AHGruY{-JIj1gPwPRtyr`^up{R}nR!nn?ch%OeU3QFGLYJD}F6H->N!>I3so_bqYP +zSED-KfEwr~=Qh{A6BUu&sDYew?e{S+^~YFK9b|4`9cM>ncL7v~4N)gpGgLMYKn?6u +y9FCu(zD#DH7_)6#%(jS?bCWlCr(chu@AT+aA@t6msh8>m_+N0_r8<#QBL5E<5@FT= + +delta 23654 +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 +zsE9|SuLmbm&dY_DCFm{0Mwkw-;tc#7HK4Iw +zZI?{PdeqmVBK>z)_P<`Y8N1nyol*O{KWf`eM%}m#HK3EIklw)%7VK`@EFQIFy-*MI +zQ4^VhO40=wi(jC&_3xF*W2pFP$yp< +zXA&v`olr?R1T~Q{sH1iUDzbAhgzHfe_K#A~h@PWvtk%c2OHI^+Q?Le(K+Rwq#^VW$ +z#B6U_NOPldq!4N%-djK`?XHxq==fGh2-++`tjeHxb +z!#$|vx`>L*Q+GYfARAC#OrX6QYG#vBGyM{k1E*0Bx`;~V$EX}CHQ4$~!tn3^x>3+J +z8Ht+tEL3uAM7{4Xpw{*|Dk-xJv6+>}+SC(K1DuUo>s6>3A90>R4de>8#%HLBy)l&i +zuh;I|Lu~+uQ6s;Aio{>e2dIPUIV$w2huIpILv61FRLI-7_AbuRsO`826`8H5_x`W0 +zz36cEe+3$94!56V2BNmjpQwTShuRgX-mwRzLtW2_IvI(oO0y)OodS+Y(}xD?NkZ%;JT<8C%N|asHJ-g^?-4x?X?ic +z;#a7FRvBp_Z-RPoS5(COwahxCnlAgWy_WO6 +zDeQke@E{E`?FZJ;t2mtcdK`fzrrPUt1&*U0JI&Vo3sjOFLPe;^bc@UKZ5G$62{;|)K{n?GpxNnhLaBiw7-kjaWv}wUNh~h)m+p$ +zuoH{p6<5zR%i1eC+xo6B*15)c-1*R1aJIcX>f;zX9Dzyr92a2H9Q$?MZEQrn+Fbkk +zJsuONpK|r64|&Ov{XfP`c>VV6(D7>3|FAoJ>h;lYTg?s>3#5t&w>Ic{U +z3+mqt1^>I2f0r);{ki_N&@BjHTWktLXhdhe9bDj-o#J4E5mL +zi!EytP}e7;viWP&33(UWV3sAeOZuSJd=F|j+(2#5#7`}PJuo-*ftVUU!1CJvvneQ~ +z2T%{lw$vih1oZ`C0CH4%(@{(D3AVsBs2q6e>WRy2&6lA8vb(_PfIOSRI>wQnOjKtqUz-%$~HjtX7gHI~g$sCs480PCWXtrcoUqfrz1 +z(AC$YUS{8;25c_)C{1bm3f{>br3fj#+0(6k2Z& +zu7XT$j9O~{Aq9OQNVmZ{$bvc=3tX0O#*3%{K0-Y(^_MpD>Zqh@gF52}q4xJ8R1$8+J$S*@SA1oWJ%LfQ|BHpR{|jt( +zBSxKUuc5Mk9BKfwur{v7c)W>v@XK4wSFsHB4ygNQqTX_=oZqARJBM1L+o%Di*~Sjg6hZHZrAgnmaaSoFdp^t +zse}58*Kj-gU)h^NgTC<$LWOFL^J`QG2T(cj3o69_qH-nU4x3pmtV+EZHpj`X{VeJT +zzm6Jkns01-7DT-zqkRerQB~9p^)MOVbT@3m5cR#NEWUzDp0eNCQnW&C*LP5F(Z#NP +zAL<;qjs@{9YDu#0v?MKtimd+%1sx2nFdj#sBJd4v#=}?($L`wiLy&5cPT(!M{KCx>3-K +zdK|GoCN0B?)Gy(?nD?k{ua9si^+VVgCm-WLVWuZhxlrx|Yfrr^4yV55r(pR1^{U*@ +z_Gh_0xR>??zt}H0I-KNNwD$iO6u!i$Q}%K=i<79QoaVuFcny^kdCmmG|HmPHoxk8# +z+N+(lA7JjGzLvlKYtZ|S&mG2^)TjL(81z2GF{sGpy<`zf#>v#*$Ja3DWlPpxm`Hsl_Qy+j1Y2HV +z|Eo~!YB2n-;P2se>btMmfYx5Oe--ocjbQknR(^!>To3(e1L=TesegiP@i^AQQaA0y +z9Eh(_--0di0k+4ce_3v=|H}`0yLEvE?c1%lg5DHNciVncnv3cn`VOJOZa5OJq9WJj +zZ~KAdCjLmh|6O~R)chyt9i=`W$6(KU42UK93pL>~59}{4&wUE&aO1xg`Z5nKAKST-_KEHLY^ZZ43iU;#Eb8R+6Da5) +z=!rRToV&09b+BwfeGm8*buOfSY8~c4)uT}dR~%NtW|#)Y<4TPWtU(OT5B5%$5dsJB#gXCu@%omQv_^}yOV78Q|ws1V*k%{)UO(o@9hpa$L@3*&Iq +zJ7WFc?=X*&>Sqdl@fPZgP6^tB`(ttHW3URY!OVCG^?-Y*2d9p-&(%P!ZFAHB +z`=H(xAL0`H7B^!1RCa&1)RCSaLqik=jWiMU6>1gn8s0bzE +za_oqjK-#pn1o=?+701+A36<0}P|y7!ZKUt%y}gwNW$g|ug$Gd~e~3z^tm$lkc~K9n +z;pz#f&-X`#c#x~VkCD`;p&~RJHIN^$9G=0tnDGVQLfYbm$nY13j;J*piTc9vDaPRu +zROnNuxBGHp0qSK@?afii*WTF+^}xZXNWSM>iW87eZJvPFi!*Dt`LwEv9vXn&O5268Kh +zJt#V7Wca@;T#mnTJ(xRE|8CIt&QVZDCGtduU#lHZxv&mv;5KZE53wfJ&l?&3elQ+& +z@LWbM#Z%0QFXgk)mv`1iE2Rwz>urls? +zDKdQUJVJf0Vtz}?2H1r98>j0_zuz@6?2HFC{zyI$+LCH26wXfH?8+KxD +z>L*c2b{jRo=Qtg66tvy40<~nnp!)d_b&^JfED~K%$u;J{}Ba+GFu@# +z(MqEB`>Uw-WY^xuImx*k6@lHT1JwXMH*{$7~6NWvQ!3MtweKQJYa!3{g))J!l}lfm3l0UPCSEXT@xy2aEZ( +zeJ<0W5ax@r4&qVUs)MV4h`PQNl^eggda!t8`0I5vs=a}$zl9;{Q=J=713HFE)*H@r +zezaYPMy+jaS8s({%K;d|k6rst)LQ-zb$>(&TY_Aumr)EVSL$O3TcS?PA*dsGA}WH@ +zups&?-3|LuBRq|I@Lkjo5CvjvyA($yO$AhvHg)xOsDTVcg?6fQt@8kC2`{_)Bh&zL +zmJBbs@0FquqM;Qk#KTYn`52Y0TT$EP3F=7A7Rv#Ig`M*-l6t0>&1|S#%8hz(ZA_0X +zQSX+HSO#a{ZxQVO?PKrUCTy>|GS^ln3wi($l(izC=lNcK6)+Ap@?l|>c&&h%qBaRp}tyui+b>7=M7Y7Z(};V +ziyFuicin3o>7}Bc%9$Q@VrD_z7lZm-Db#=}Bl*uC9w{h9^-&{EM6FQ@hOi6j1LINm +zO>@`hqdH!K8t8K88rQx76_HJ-fgE)07qBSxD_Bn*q;Fy!XGUdrUQ~zis1vLnDw{i@ +m1~wgs;D@L$lbOd>*|Md|mWZV@CR}e2;D5m_*BeB>7x{m&6kb9A + +diff --git a/po/ar.po b/po/ar.po +index e2bb975..0df9ad6 100644 +--- a/po/ar.po ++++ b/po/ar.po +@@ -12,6 +12,7 @@ msgstr "" + "PO-Revision-Date: 2007-06-06 15:24+0100\n" + "Last-Translator: bourai \n" + "Language-Team: Arabic \n" ++"Language: ar\n" + "MIME-Version: 1.0\n" + "Content-Type: text/plain; charset=UTF-8\n" + "Content-Transfer-Encoding: 8bit\n" +@@ -6218,8 +6219,8 @@ msgstr "" + #: modules/audio_filter/equalizer.c:58 + msgid "" + "Don't use presets, but manually specified bands. You need to provide 10 " +-"values between -20dB and 20dB, separated by spaces, e.g. \"0 2 4 2 0 -2 -4 -" +-"2 0\"" ++"values between -20dB and 20dB, separated by spaces, e.g. \"0 2 4 2 0 -2 -4 " ++"-2 0\"" + msgstr "" + + #: modules/audio_filter/equalizer.c:62 +@@ -6919,8 +6920,8 @@ msgid "" + "16 no padding\n" + "32 ac vlc\n" + "64 Qpel chroma.\n" +-"This must be the sum of the values. For example, to fix \"ac vlc\" and \"ump4" +-"\", enter 40." ++"This must be the sum of the values. For example, to fix \"ac vlc\" and " ++"\"ump4\", enter 40." + msgstr "" + + #: modules/codec/ffmpeg/ffmpeg.h:115 modules/codec/ffmpeg/ffmpeg.h:248 +@@ -11365,8 +11366,8 @@ msgid "" + "The standard MPEG audio (1/2) format (useable with MPEG PS, MPEG TS, MPEG1, " + "ASF, OGG and RAW)" + msgstr "" +-"معيار MPEG PS الصوتي (1 / 2) شكل ( استعماله مع MPEG ، MPEG TS ، MPEG1 ، ASF " +-"، OGG و RAW) " ++"معيار MPEG PS الصوتي (1 / 2) شكل ( استعماله مع MPEG ، MPEG TS ، MPEG1 ، " ++"ASF ، OGG و RAW) " + + #: modules/gui/macosx/wizard.m:185 modules/gui/wxwidgets/streamdata.cpp:88 + msgid "" +@@ -14700,8 +14701,8 @@ msgid "" + "enhances the efficiency of the shaping algorithm, since I frames are usually " + "the biggest frames in the stream." + msgstr "" +-"، اذا تمكن وتشكيل محدد TS موكير ستضع الحدود في نهاية أي صور.وفي تلك الحاله " +-"،تشكيل المده التي قدمها المستخدم اسوأ حالة استخدامها عندما لا توفر الاطار " ++"، اذا تمكن وتشكيل محدد TS موكير ستضع الحدود في نهاية أي صور.وفي تلك الحاله ،" ++"تشكيل المده التي قدمها المستخدم اسوأ حالة استخدامها عندما لا توفر الاطار " + "المرجعي. هذا يعزز الكفاءه في تشكيل الخوارزميه ، ولما كنت عادة اطر اطر أكبر " + "في التيار. " + +@@ -14735,9 +14736,9 @@ msgid "" + "the data in the stream, compared to the PCRs. This allows for some buffering " + "inside the client decoder." + msgstr "" +-"تأخير DTS (شفره الوقت الطوابع) PTS و (العرض الوقت طوابع) للبيانات في الجدول " +-"، بالمقارنة مع الهيءه العامة للاستشعار. وهذا يسمح لبعض العملاء داخل العازله " +-"للترميز. " ++"تأخير DTS (شفره الوقت الطوابع) PTS و (العرض الوقت طوابع) للبيانات في " ++"الجدول ، بالمقارنة مع الهيءه العامة للاستشعار. وهذا يسمح لبعض العملاء داخل " ++"العازله للترميز. " + + #: modules/mux/mpeg/ts.c:149 + msgid "Crypt audio" +@@ -16268,8 +16269,8 @@ msgid "" + "blending (blue by default)." + msgstr "" + "هذا الواقع المعروف ايضا باسم \"الشاشة الخضراء \" او \"مفتاح شروما \" تمزج " +-"\" اجزاء الازرق\" من مقدمة من صور الفسيفساء على خلفية ( مثل عروض توقع وهيثر )" +-"،يمكنك اختيار شينخوا \"مفتاح \" لمزج الألوان (الأزرق افتراضياً)" ++"\" اجزاء الازرق\" من مقدمة من صور الفسيفساء على خلفية ( مثل عروض توقع " ++"وهيثر )،يمكنك اختيار شينخوا \"مفتاح \" لمزج الألوان (الأزرق افتراضياً)" + + #: modules/video_filter/mosaic.c:149 + msgid "Bluescreen U value" +diff --git a/po/ca.gmo b/po/ca.gmo +index f8587b45c2d3e1ffe3863061aa24c897bcd9e755..295f125403582c07912e687f79c7963c8918c5e9 100644 +GIT binary patch +delta 19497 +zcmXZj3D{0W8^H1NK2K4yCn@5!d+qy@eaW86l9VhhilPuH@z6pGTIg#>l4!G3icq4> +zlC(#O7D^&flH&XSpPB3WuIo25=bSk+_uMn*d8_Y}R|^xD2b|*4X|J)}UVb_nf3WUW5*CGR9#{$*GY*I+5!hz{V# +zczs`N{~NRK`6DMO%JnK}|4lL!e6SxnqETpvlhBY(M<4hf8rtX38N7(zw;Wx9b+P_Y +zyuKaJrv0aQJvkJfKMfstQS`Y?848ZLD%x=!^ucDay*C!7-XF{0b(qGxqtmbm^#^bq +z&PDG#>u{K1V>E)7pc5H}4RAb`i +zW~@r+_TyCQC69;D&Biv=zsF8k@kCD27Oz9wU&5BSKepFQQb}v-BhVMVjLvu&n*H0* +zCEJ~3Qb~UbM`-AWy>n98HGCP(`VY}<`4#$t-IyOMr9uZa(V4cyf!Gnfe*v0wuc8rH +zk4AE1bXW99hJqayN~e<3@eDi{^Uy543hm&A=vee1nh@)EpwHinzThFWpM}v?=m0-P +z`}rD8>YZpLGAAgw)~B76%5JN&=>BaK>pjs(3`Ija4$b~I&=77wJKB!Ecn>=BWAXZF +zCx;i7LBAo*(d+$!nPeyhJGv!$Z}bVQOZ$uHfWAeu`yZ@_Me?PR^RO*e$EjEYm&N)H +zG?J(05A7YIH)4C*pTz2%KgrH)fe4%uZfuNs+;9cj@wDjcXcB#o4!FRnsiZrWMhAE; +zx{L0LK8@~@)#x{6H&(_|3xxaYU?tw4bf;j4BheS!j;_)3vHe3dblcDf{2kj1ot8?@ +zqFxqlZ;B4!{OC}0V0WQwKQFonU8*IRF+}Srcru+p*Y>1>VWcI|gQf+VjJ?qZ2ja~* +z8ZX0Nu{?Gvlu9ndq3F`BMECu#XcC@PI1HphG_P$fkQgmROGZZ|bzC=T`9ohq3@e~ZRTq6xJ2X-~(TNN}muxsXz;W^VBJ{b{=m0WXD7e4BMqltV +z+QIK=D39PFJh^x(IfzH`O8oWoFry1fq&PeIrG$Q#FF|K|13K_AXyhJ7&zS|$70AFd +z$)-?9zCmx?7wi9_9TYkv46qiu)-BLqK5fyN_dq|p1JJd-C0>6BoxmLQ8}kwx*-y|& +z@4zDN|2-5O`4RMi!X-n!47zU{U>m$R)*nHaY$dvuYtW;28~Xh3=nIack<5Q)D#^vd +zXoTya5o&_fcz@E8f-@R|b~GBV!+X$e_9yz&YIvzsaue>xNqE^=q5T`2K)uh|spJ;? +z6utla(y8oM^gXoRqfGGqXq$7`|6W)@VItNq8(fO_QLkGr?CVu%gm$1a_!ABNe`t~w +z$_)oiDKuh@(EBbyBQOY^*fnTmCSV(!lFR;g8@*41A^8;z;lbz$>_xp$`QTu*!`Gs# +zurl>^Xve>xYy1a#G9E{>y;OxTpz3Ij)kphjUm+8+vMUXCa5=8SA?S#!R}9zNM0?=^ +zuj2|VR4J9*hVMr^R1WpE=*iluN*K^B=)~^A#yAu0e?ul-*olU0KbrM_p*c~qYS^b0 +z(Gk}|L*Ec!8m=^|K5&c#)z;5pUJ`_AMpGLRSMzo_n +zSPu`PpW%wt!}q=ix>U2!qxh*O-*<&OzVv +z24+mE)fC(|>(Qk97#rZX=#mtx8`iEC=2CAN>jTh%k3jDm6|c`g2e>$1-;BBEnZ)MCgU=!=KlYgf>~Yc-0(m>GCJ +zEyLQMg?3mKO~!g?5;j3!+y-6ie&|GQ!b|WW%*9`0d%;#5XuLnEPQj4fh|cs5bVkph +z9lVSVXcM}2zoR*D0{uFcX&vsr5gpKYbZI7|5uA$-cvZaq9=iQDVa7GyLBXRmX%j+L +z3T>~CZl~Vpz^;wnjSg%fIkHbl{|(hD8Vuo= +z=nQwFBR+t6IebLWEUwr-Bw-D7rcKeAv_iMlg=pjkqicUXUW`-FUGXitl&KEkefc|N +zLMV&UV907kyGO4>2Y7GvSu~_?qsjOU+VLS=h^5X816qr=e~L}7Rk;ZLt>XztvJ?utjEtI-qi2lQMyqf6+o +zBRcQ_=zB9`;)R*f7ozLXnQq5fcmy}#w60+(`gTht1E>!~mu?NZMDL^L#1=G%zCoAb +zIJ#t|x`*5-iyTmyq#*@o+8jNCd!cK1CED=_^d!3(JzyrHxp6PLWV6s0zJl(Gx6z#V +z7PC2oxzvxM{hWP%IMB-DdG7z~DY#b4Fb}`PYM9d_{5f77Jvw`$p}Yni@S|wxm!Jb* +zhbG~t=>0#UNBdFq#YHX%6Do;*L&{-!_kS%4hVBA1`}?9D4#7G&7VT&O8i7@~9X~)j +zo_}HR1$4=lq0fJWMq~$?#K+JHmb@tBN*m1h!XXrV!5DO{?n4LkEc$|%&>6pq&TJDp +z^Ig~w52G*2>ly5bzVJ$PyG=yy89f%&S*WshM9tY#)y~7OOLSOh3=Hf|xLQ+;nC(x-6``>MHDGi=f({L;<#+g{< +z;_xTcN}Nr-Vc%5pEPjej@Rm!$0G47;>IM3RZF)JjrT!#t$YBZaom7%6x-886`T-$n +z@5oRvv=3knTo~)0VQ1?5&tiKnFA#-HxxIYxxcOqGM=e(pQ9tltSCfqx(J&jX(qRzBcHK +z`=BT6NX&EpKS{xT`yRR*zC>@_jSeVvWiS^VKr1x#m!pvw8od!cf^SA={#0}xI*{kk +z{$E9(TZhHn{~IW{rr$<)m~jo)Q_y4B8S4)Tjz=T29?g-@u{`cXlPPsgNZz7Yl6tjhYji0tMh7w= +zdLve)emgqQ=dWS^`vYS+4b5=_8v1qLsbjyupycgEutf^CiS^!l5Iv$zE9ET +zen1DX7aj1w=s*h$4LMPMXeO*lV;UUUd1yz&(HD+JlW9B}`n%AG%tr599NS;R?2#MY +zfwj24A1h&*Vd4I^*pTy}6FR`#GS`I}+=0GmNpvN;#_Q3De2DIfpOAATsc?Px1Eezg +zb9w@H!B@~E`wz|Xg2O|56SSYnXvCjF2b@_-!3Wl&XY|L|4)?|zYK;g3Yl(wt?}T?U +zgGJbudhHuSuH1+>P+x(aFmGh|g)@lH!Q}iS3!}V%ogA?&$>Yt(ey~fSqjBkT(<6dYkj6@@G2WJ2NpF_b2 +zyoQEmJ=)P%XhiCa3lDTbKN?q~`+OYQ@oe;5ScSe|JLchUxCPI=C6(Ncd$2qXyET{1MYr8I=yutIHSiFcoaH8j7gj}Q+zh8;4>U=?KtJny +z&;kC3<*>}eU<=In)#^{d6KXN~;3{+`o6(tmhpzR>>=p;o3Ed67(C_^9SP!Sh>noz~ +zq932F(UT^HTxx<&pzWmi{qI79p&fv3n~`W}=b*b{H7>yS(FaFN4l^5zo`BP$52L$g +zHu~H%=!9NEC%6WU@J4iLKbg$P>~J3qhUzfdVS(Gjji;lbI~!fQX6U}Z3=R2U^oPmV +z*gg||!DDEo=A!+*hz{(vcztDTUz>>+Hei|?wxIj+Q*>ZIpdJ2-WAG20h}Yf`uJ1uR +zK7h{naP&C(yW*5P!}Gc5z^kGIs)e42nZ^{HSqC)PhM+GTi4|}h=He6RfL5V1UXQN* +zF5HFxqR;KPD-7r-^o4sd7k|fLSZqr8rF0we3o4Urq2S4ue`@Hk1G)_dqG$DJG}QN^ +zNjV4Ycxk-;dTjp)&7qy>zz(5nU-<6OUpaKf4bVSY+u|_4|5sD6!;jI>e-Urkjm@YR +zxF?)s9nkGF8jaLUbUV(*%D4gT=XW#`f1ykBA9}u|?hXGAxfnXJ3$TFue+UJWY$Tck +z4@767S^6j%k!9!%-ovK&S!^$KUr65a=*iXu-9^370Zv8-{u270&FGTv!%QxP!qdXY +z>tI9bjnM5k46EYZ=$bD<2e=uX*;X{vU!WZyL?csldPu&~XwEc1BhwsB(zda^+jRE7 +zYubwjJG?sHI4s_9Bii9OG;8lb2Qm$P;UcVpAD|r{Ky&3N8mYoFLIlcSb?Tkb_l-uM +zziS5j{~8MOY4C?c!TZC5&Cn2b!rC|n4dr~aqmR)69YeR-Ne_e{FlErM=OyUCpNK9% +zBefKrz$Wwr{Ut-85{1-*VFp#v7uG}9Y!Di{N%8s=G)W&o2QW8YUxW^LG1}j^=u)K~ +z3X#o+M(8y3pgRMNK&A!-XVevM#4+ehcSnoQ4A)zsSv(ZYiE-E+=b}ma8@hz~XN6=f +zi1wR{CS^BtS6mYvf#g^w8AHJbXQKP{(dZ&{pRPnlyaV&_FuKNN9}b~xfOV-~h$h=) +zbmsS<+iW_XhV#*Hz>?@{EXRL;l5C*h4EFvnJb2P0AylWJ11pYpcqTgY(l{R5qX*Yp +zI2-@P+wh4;!%wnOkA8!7TZUnk+=n~%i%=Bebf&=ol1t_j(Oof+d1!!VY!BK5iG{p-;K=5zG^@6Z_^K$rG7`b{bN +zY`DKRlFXT;H3c8&9_^1V$@S5xXh-v~9xg>g{R0}Y6KI5rF9^ACHddvciypC^@qQeP +z&iEku+&_4--~U3-h3$1ZnoQ-<5LZPN +z9>Ez{a$)HAS#|%fqu?6u!v6Rhx+}Ua3Q5uj?XVw~!RxUy-h=W-Qd9Pz5`q=fMqFlw_KKUr?X%LMnM3uYNJ)$~iBE7gs=^uZ|9| +zJ(@EYqmdkePV6S^gp;rfetS@d(8yF?64tmK+D|vEffu14qX}qa7or1xWl1I+4DZoUlZJ26qqxA*aPpNyLw7#b +z$AQ=YABy$&qDP}Om&N;{4@KXN{vECHN_fwJ424_ha5TD&enWrj9Y;^B;;)8m&O;BR +zi(>uOSf3Z`8>5G!rC$rrwU1sGor!MSH_?MA^BslS6wX*4X50Y{(I|AgOh7|91wFB* +z#r6lHkD*`5d1y$V!+N+9?Pnj_&k@Wf;p^cqHu|yIivEG}7v|zwZ-neW7kzPWH2DT%UAzwM?@4q(i?Epce;Eb8a_iB9=nr(; +zq*jCui=m;ffj-z9?dWp!#2bbVoUpNR2?NGc8Z^NhYD7M8X-V6uKw`hd^MF&=BRVtZ_XQKVQfu0X*u{>_a +z?Ee3cf-@|+Ivl;N(UD$?*+0e5wI7WhEH}sct!U&XqW8UsKKC~I!gtX%{|Jr9PArG} +z(8v^A!~S<|%dZLF<2vYrL(vXLp);C-M(7cAAdAr)c_q3Z-JW@Gg|+XG?w)JVZ^=Y- +zV2{Q2+33;z+FO|r>WwrQnjg{79LLs}`*z5ML1;*CK$qec%)@DDvMomsthMNi526D; +zWo;_C8gtQsOhIS%y+emtXvlv-pF4q^JDH^H`tYLjF*k?51<_F6^ln(|`RI08h_i4>Y(MY4 +zFtaY`fO?}77!=!YM0e46bO5vPR-A_psSLB6CVK%qWfnBkY{ojhha2g!h +zi)a$PiO%>VG;6=dDwx_7>Umg+dKWZeBk&@;8++n5bm?ks4qv$ouo?BcusOaJJ+_(s +z->TB?7{0oO*|E*zQ +z>#!5`lAnaXo(E(oIPw?pLi{h<TEl +zK9BVR--Py7(NWO_(QWAcg})89kB-CI?*Er44CRJz&|K)aBmDFFDd+%B{Vv!5FXe!^ +z9C<8x|Ee?59o-HvX%DOduhVRn0>C*D%@{oA3w_b;HUhKX26Vuy(dXCgW&hjZ +z1{yrMKErAFHF`u2`8CXR1e#Q%url6@o)1gVnXO0f|311G?e`D#h5w=lPHJB`$O@r3 +zcJ@B@zb~#rgAdd|J8Fbeu_eBV@8Uq5{99OxUFZz|K?hQ7e^{!@=u$L9U)%-l{{nOX +zz0su`80%MNC^&-==m|It9mo^737F=n~Y7^@iw?dmeVdyU_@Ig4th8Xvj+( +z4g< +zl=IL~u0SKW9u4)6=z#X4+b#Wf*cJ8A=lVxSV-4P)+)Kd@mZJms0zL8eqc6yRG(1>5 +znui{tZP34ZFGXK?GrEnZp}S-uI^&Pf`@TmbeF7b5;eXiwu3;$(**~Ar(6>X^s4JSi +z7orDAA2brzp#zwXX7h8g{sQJve-{n;0Zicuw7=A`5b0CUC9HUi{coWr4IT)M&`7kv +zTt98`LwCdOSpOSM+7nn8&;B<|uv_$6Y(o28|FZvG>(w;)%jXC> +zEqMBVycI9N0y*jI_y1CC +zL496^LIVolq5J*xR66_MPIT?crqkJo)JK=7Cz^ye;O)FSsszZ;*x +zAF(S=%9qam9~(B}2cAqycn9lxtyJa|+ +z`_3tp&i>o+HR!kDjKb;ckJ54Y4E2xD$c!qI&i;N_h3lxFS~Q(JiJP$x4l9-p|NZ~l +z6bxy>;^BtwIF$kXg8rY=N0vxu|3ky&XQZ?Lr<5~FrjrGB*#R>W?ljYNh}Qm|nMUWKVLp@VDiQtFT4Y&?vUappPcFklc0uS;2q)x?j_CF4- +zSSg)+Nc}06W3fgf8ycN5l19~sEe}ul^b98s? +z!E$(V^{{IyqxE*^fUbz`W2$Gu3m>Avqw#rk04vauZbiRlyRatyfhJSA8tLpmKI?)G +zG=mlJF?67-&=;-4^Y9CFiOSTB1H!4)+hr(Bq_6?+$1b(f*^}vOw4-9RgQd`rmP3=Z +z7J43BgwA+GtWU%0)EA)>`V0;A4`{@GLBFO4F^!pqb<)}IcvJMo^RPa4Lpz>`-uNUM +z;<;#KmZ39x2VJ_2=nK9>zZHAX`~JgREL1o2Q#)E8iEJimOu?kT_=JNhzD21Q#UNpN$ +zH%e!JHt)wa)T=j6XaC5&4!cl)HF_NTQ}5g)oRH6=pYxNNh8Y(_m*`CN*KRJllr_=Z +zsEZjx*E-&C5n8_-uf!YBP<@IXKnKvDTq~QUvtP|a=vvo0H|&!3IE;F49D;A*D6G;v +zo&7WaF?0Z5p^^HgIs3mng=6u;IW5ArDUbf5X^0*`U1EI@x;@9B**_iKCC{Tvw-jBv +zE$FsAxn=05Bs#Gg(UxcgE@;XAH%kZ5V8-JEAkX +z1U)BiMkg>IeSQVn-xugW_hDBokZB#Vx=(Z*dT=~}Rq$oB!_UzdrP_oJOQ1H(B%2*wgHCV<+V6h!mr+jJFrZ8s3U*u{{kU|9^`Yo?9FIOY2Th`7=zd>=?)Oj7 +znQcS2>+jKH=!^5U3ll7fMx+_K9eV^bNpA|S#ieMr4vjaAitXdjwVaBcfRCabFF=1K +zFGq7^3);_aG{k>KPj4S0Ru3I`4|Kv;VD|U_O%yzU?u_1pzHkPbt#i +zfs4>&9E;xn6uML^(CzmQUV|Uv6IicHIKVdJTEe(Ff7UEk<)?8~WT1 +zJP8lS_M>Pn{1@Bn^a|#GW%Q#`3%&2$*xm|_Oh@!w=#IYV +z5;Ou=py$Ro^tt=ce(#UY3TBeW;tjLog?Z8E(3!p%udhT$z9wFO7k%-Dc>N3XfZ2x5 +z>;M{>e0{^`xFJ@dJ_sGi)U52kX%r0QgV+RTVO`vW&hS5U2I)(}gZZ&7^@8a29_WjE +zqxTI(mvT7zqA}51(FtUtQ`G%Goq`?BLOXaIeQqIf`~O0}5&y(` +z)qdecHPC+QV{>eRo(H4R&-enoW8eQ?-}k?qk{1{3K6u16V+LPy^|`rM4xXCxTh8k_ +JzooWb|9?cm-a7yQ + +delta 19484 +zcmXZj2iVTl|G@F@^V}p!GDF5=^VsvrCfUkLCCVn0pO(_PY0$roR3gbJiV%@XgqA`^ +zgGjWcGSVLZ_xnEQx_;O7I_Epi_?*u<-<$jnt}481RpAwPcTeYKB}uiTSxKoRNv`-Y +zE2)P!U@csLQ*axW$BTc;O3uaW@HBh~&%l{@I?lscGLxn;uv&Bx5fK+qR%hFGjS!B#y8Lbd=l>; +zjMsm_Og|^GlC!yA25mn#O~Ds?pd%WAHh4W6(n;tG|A&V5NpuEJqt7itmtak-zZvgu +z$Ff}iG~PdnzW*;e@YKohUb+YcM_d+dxH9@;op`-7o<+SUmcuJCg||l2ScLjrcr(sG +zpF8uHFvD7C1iPaXxdI#GIINf?>0~~IVqDmSCdWru5`RRKEp;k%SP|{03Yx5q(H!Z9 +zHheugu)ERs??pSFi@vu4&54a@#NNr6PLf>|s&e4~o`>1LW+m5SOEkHbqXXQI&*LGq +z;Rk*T*XN=GScyh%6DIuc02-xX->fhJD^F@9dmFn4#vsx +z{$X@xN6<(me})cAV->26(f2RKEAVQpj$6@49mmX4|CN>0pk5i%CRsNMhPp3W{~tQz +zo6!#Mk3NH*4{Ol|zlqn2{2g{jH8h86qwO?BL*52G2RfolbUixYoBn418~WK?$ia7y4u8tnADhK7(fc>*%(8AMIc-7Ql0|Ljx7jnKr;d*c^R+7MgU=p%GY% +zM)Hm5p6HP@1shCK*-3FY9a~^IG)pf<8yFfLjUGhfV|@bp{_SW7_n_^}jxI+BxEXEd +z12n03qmf9Tpx|2ni*Bo;`LZ+nwCJa6Q`4cC_Pt=*)kL_y0vZ +zERsJv^9`wo-tQ4iCj%+i(ACk~qYq&Nu0M?)C?BHP{UbKS?9;N7j@Sfq@fNI&i(-8z +z8p*%o^}GV%{xIyo^@lN+^C#JzDG-79K&{iWGar|JXv68~^Jo%%gbw&0?15($3;xDgH6Q}O!i=;wDE8i60;^`uaC +zQigg_^m=V{0PUg!(T;9L*M4Sn4!TqeFl~s|Qt)Itfv)Xu=tv8mnVmUk>Z8fn8GW%2 +z-h?A@0Dg{@utnkQq!$iEmu?xl?>|SA@XWKqKuSi-ot2%=92ix&;DdG117rX?;}K|w +zcSRpZXZQk|_3xkq-x1w|Zoj=)5x+&-D^Mg1peXvaEsG{$<09;Tw^Ii$7^1H6!Cq(w +z{c#8mL6>MVdi3r=Pq3rtOwT?$oEz=27WIK>2UE~?9z*+?i%wu6I!_fiKaS{D?MGxM-MRNpz{IpdB?uBh?X|NPl$62BQNU8}H9S-&=tWAiar#`}+g5 +zgU`?gzC=TL1W)4ccpQ%w%T9*j=f%T}&M%S8*~u>@^t|Yf&U7d`@T<_s-HV3=vvoDfB7^)XWkzD?Dj_2_Ud^59&`fJ(QnK=G_r4@ +zk=}_#-2eM1IPxRt3t6Q?y$HH*t7ALt8teC=OSTMM%a!QSyA6H+OSFUIXe9r{9Lzc= +zM7S~3rJ2dpi&?HN8 +z!a-9AjaW_ex$bBL`l1uN9F5F)Y=;wb*#B;$SGizFK1W0NRrCb*rJhs@UW_)lIJz9G +zQD1{LydPcTuhEn7IGXK+Du)4;M{}$i+D@~|>5!GJxnKjma5MHtM_j&2xZgP137_>o +zuEV5ic5)lM8qKQ~>Z{R{wPE!zpsUe|-Hgp}3flhqbiA<}4cQ?y>%T{HqF{}%PfMXA +z&Ot+81M6ZQdd81HBX}pe8}5zu1?bW(L3htaw4b-)_4GCh?*Ff_9iBu-)}&@=up3(M +zh3?;xSQ{sz4J|@DUWOhhtFRufN1s264&Xm@;H7GXoT`r9-Tz%Ecw|0`Zl^cUhW24Y +z{0jXHm&y&_`}XKkO+}C5M`C?3+VM*CYxqUHe+tcs!nMPI%AfzaP-&%GM3n&qLpDgMP+4VP=WY9Jn*qAHf3d|78?B +zP+mqmT8HEC4IjX|^}@iKqPfun?eJ=};rp;YJ{PZlf-cc1Gzlx!&rX`+KrD^Z(SBaQ +zv`Mvsf+1RqCf#Oij31&)lCMEnyBy4+-XPX{qXQp;J~txXpNtN0e!RaCo%xpNE_7Rd +z(SZG*L*WD$3{~-lAsHK?`?NhelRokK9cbtuL%2+j4fZkj>9WH=t|22V3EBbinoU!UQ^F +zRqB_bGrbL+;9cmhxF2nI9(Ka?athAuS9HeN=Vd1sV0koTL$Mp)jpoJ<^l06WF4?c> +z+Lvq|+G&XH`_|}o?1es`j`wGw$+!q>y8l0;U{>dA5niZ@CQo0q;cL|3`5VEYp^Rmj+eRr4`mAcdTkXNnt?Vv7mdUwG`R}2 +z4r_lV+F)5U8LOg6n2UDY7>#5PbRwhhGQ01mO +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 +zjm&@R+5fI>i8sRcxH9_UK(xUT=!_~wT +z;3;(XtcY$vJKBzhd_Vf$3FO@2&wpD&N9`~ti$4pZp&a#ASnJ2p?J^r5#Rc*Dd2ffA +zwL%Bf8I4HaczqbUi^ib?n2NXHOmrY;zvFgg|5vBr{_Tt=*BG?JacC|~KqK)4+ReHra|3)=9W=nOo@EF?uOIU>dlUFI2EL+jFJd7sC-{_jB-V3{- +zEcT;b5AEn~bYM@SIWrGkqUW(TE=LFYS-k!YI^ZABocj~gu0`psVP<(~y#xBdP;?-Z +z&?KCS&h$|-pqR$QaC_MKhwx+%Z +zJ7KYp!$kUHck0if*V88{)S=Mglkm%C6kbGqHuk_HXhV6QhW~7SBRb%X_$wCM8`i$y +zzOdFs&}2Rb-BtB*0`@__1@ECt_F1@}PEJwqq$>Scc%U)5%{rn-Y;SZQ--?a#QS`ui +zH`f1&HryZXkBH8SZbP5XIuL9Y9gFqc|MMt}=7Ak(E;Ro<{C)jIbO3)xs~^lxF6V&g +zg}j!$a5z}|%Mhs-(CfdW2hPo3g&&<$qAStR??;!i=GWZ!g`pHox(9I&zKgT)sc*ur +z$on=#pcA_92cZYmjp(+Uh$S$MneB-VU?KYaOXzlf7wh6T@p_5x7;sfCWLk2 +zEZ&66aVXaKK4k5ESdjWIJPr4w9e#-(I43a|D;^2wLN|1~4Z+N}0UhuP^!+tQ*#9=T +zo(rB_@8ARY0eW!s{~^qD2%1zQuo~Wuo(~JqnXN^i|0sF@ZTD-m!=KRu=M;L7B}YS! +z6+X)Tx8pKg@P!I!Lp5&{1}#E4|?+bhz=y*PhqJ_qf1c(?YI@%{`u$t +zI-^V1C)O`XQ*Z`D&=b(Q19=EPz$ehP9Px7q;q~YdItATM595va4A#VRj)f&_hrYJ} +zZEqzy;MdTB>_YoZAD~c?!e3|(oO?WUl!wizcSE=5Wc2^GD;j~f&=YSv8u9|a +zgaMU952#vrG2V&}>_c>^zQ8y5o$*WNI{R4^fy%6ni47x;VbeGIVXZ$Am+(&4nPoM+M`jh?d8Wy6E`QtO1{Y}v|YK>-Z +z2lOE6f__%7L5!c`u|At(76T6UH-(YL5*XQkr@fz%j|6pglFe{b$ +zi_Mv73XQq23*GOhWv4PP?nc+HXeyP7NHuhcI-*H96z`;?N$3ny`BRwzHo*bZZ^ha8 +z33kKlPfKO~j}33&IO=y6NM-(IW%@XU*STI1=Qa}BQv5%D)akcIc}!@H_pM0XNTvnD4GiY{(lt( +zL;4^3K-*%eWGVyLj~C$Z5~<8TG+a_LmH9uVoL(xGJj?Y*@my?KI+e+hOUtA(AFunc +zA?<9(#h8?3rmzIZ;BKsfZO%0kX+lZC3p;T*o0BrM@}m9UsMWLN@e~F=^g0ze{khg=Ez=(C+R<_TqTwH$DyUF +zrjqxl-;Ex<7gY;udk=1S`^nB@z +z=GGugx1?}A1<&Z^Xano925v$Ro+IeFkX194IgkpX4U|AuAgPIFcP{!}zXfe?GWy+r +z7~P)p(Q{!ndLC@4nF{-VD;I2VH#)*^(F5i`G~3J63JvGsE!5kf16miazlnD6F8cgF +ztcbs(yQXw*s5eCi)DOLWRc<6QX_~?v6xQRz*s5+Sb25E^Hk7Ykun-#3Vra7F +zpfk7to$-)ZPh&3iIp~DmK|}p98nON8*Yqn)VY){BROUNg8-4IRY=mvlhOb2*d>9S! +z3^X!}&>6jqF5Mew2fNU3#Xj`8W0-?UgV0W;Xf-6V>7*6~ldc6iv$p6!hT$1FI(h>d +z;&gO=y#5wCun)059!8g>Si|ss9kjhXY>chZujI8E*?$jG@H@Q(o$)8w6i=ZcuH7hX +zr!MH)--{#gCCtInjYG%H(Qn9T^w;pc=s;Fu4cv|<<*(QgOEuwr`cDQ@_zrJJvwLLI +zROV;%A#6vze6v*M51ChDSL)A2kK;hg@7e|+}BAOdj +zFm31>#Ro1x>%DLo4n;%tHhKUZMt^cGYo5w{HNQdEI;Tb0CCzXQ_0BjFU&8CKOv_Z} +zkNFRv19%^e)Q*wVGfc@?@elh9rA6uNW^(WTpj +zZrk6{b_%u*6RQwyfJWf_*6e??v^N)Qct~_2I=#09f +z=foJaxhYs{0cEf+t6wK-_ZG&UcgX1Brj?bVCzKbr+DYU@??LtyjMLX_+ +z)o?7DWYeN6(FyKE+dYK-GWrD_P`XI_&~P>MSn&K1kveE{whyM0&JUiygn8U^)2WLct6_kEc93M +z5;R9Pq3!HNL;PLzv<@L+RndXBM!w~pa=M4#y0==*EXb73Ez?*9LUf@|_myivMS=&%vGJNm`? +zO=#$zL~~#s+R%FRVEP1I!mQ3AcdBC}>KCF*Gzq=`7&^h%Fzx>SfI=>Q7cJf;bkqiY +z;Q}-nN2AX_f-cokbo;%GqwsZ{ja9pb18gJCqy9JEi%)e+W&V%N)w>6$cW3`E^5j1WR0)N*_)HZgfdr +ziq~I5+j#>`)=g;6e1Nv|JsN@ZF$z9d;F2(aLg>hg$9ie>qmqL@S2td7h(@M4dM>m@ +zJL--`pdWf}j78tO18w)t=+t03c_2P8E#8)U6&v6NbcV;!8T^XA_$Ri<|Kk1jmxYcy +zqt6XQmvS)r{8iCw&*!-^k3N=F>XNBNe#}~1\n" ++"Language: ca\n" + "MIME-Version: 1.0\n" + "Content-Type: text/plain; charset=utf-8\n" + "Content-Transfer-Encoding: 8bit\n" +@@ -6765,8 +6766,8 @@ msgstr "Guany de les bandes" + #: modules/audio_filter/equalizer.c:58 + msgid "" + "Don't use presets, but manually specified bands. You need to provide 10 " +-"values between -20dB and 20dB, separated by spaces, e.g. \"0 2 4 2 0 -2 -4 -" +-"2 0\"" ++"values between -20dB and 20dB, separated by spaces, e.g. \"0 2 4 2 0 -2 -4 " ++"-2 0\"" + msgstr "" + + #: modules/audio_filter/equalizer.c:62 +@@ -7490,8 +7491,8 @@ msgid "" + "16 no padding\n" + "32 ac vlc\n" + "64 Qpel chroma.\n" +-"This must be the sum of the values. For example, to fix \"ac vlc\" and \"ump4" +-"\", enter 40." ++"This must be the sum of the values. For example, to fix \"ac vlc\" and " ++"\"ump4\", enter 40." + msgstr "" + "Intenta arreglar alguns errors\n" + "1 autodetectar\n" +@@ -8326,8 +8327,8 @@ msgid "" + "encoding and decoding, but should save 10 to 15% bitrate." + msgstr "" + "Habilita la CABAC (Context-Adaptive Binary Arithmetic Coding). Redueix la " +-"codificació i la descodificació, però estalvia la velocitat de bits en un 10-" +-"15%." ++"codificació i la descodificació, però estalvia la velocitat de bits en un " ++"10-15%." + + #: modules/codec/x264.c:92 + msgid "Number of reference frames" +diff --git a/po/co.gmo b/po/co.gmo +index 15124d22cb42d1adc9f9dcdb0e1f933e68356650..4c93bb4e0b724e2d38d73067f635afb1c55700b3 100644 +GIT binary patch +delta 73 +zcmbQux`K6rk8Thn1H*R)1_o9j_F`gS03wC}Ai)8ogMqXqkd6V;fz}a9-qX# +S^wPxiR4aw#{K*d)cL4yItquSH + +delta 60 +zcmZ3%I-7NZkFF~t1H*R)1_o9jwq;^q03rrwAi)8o-GHVV*mgE + +diff --git a/po/co.po b/po/co.po +index 639f44d..e3f75ea 100644 +--- a/po/co.po ++++ b/po/co.po +@@ -11,6 +11,7 @@ msgstr "" + "PO-Revision-Date: 2006-04-06 07:27+0000\n" + "Last-Translator: ghjuvan pasquinu \n" + "Language-Team: Corsican \n" ++"Language: co\n" + "MIME-Version: 1.0\n" + "Content-Type: text/plain; charset=UTF-8\n" + "Content-Transfer-Encoding: 8bit\n" +@@ -6136,8 +6137,8 @@ msgstr "" + #: modules/audio_filter/equalizer.c:58 + msgid "" + "Don't use presets, but manually specified bands. You need to provide 10 " +-"values between -20dB and 20dB, separated by spaces, e.g. \"0 2 4 2 0 -2 -4 -" +-"2 0\"" ++"values between -20dB and 20dB, separated by spaces, e.g. \"0 2 4 2 0 -2 -4 " ++"-2 0\"" + msgstr "" + + #: modules/audio_filter/equalizer.c:62 +@@ -6826,8 +6827,8 @@ msgid "" + "16 no padding\n" + "32 ac vlc\n" + "64 Qpel chroma.\n" +-"This must be the sum of the values. For example, to fix \"ac vlc\" and \"ump4" +-"\", enter 40." ++"This must be the sum of the values. For example, to fix \"ac vlc\" and " ++"\"ump4\", enter 40." + msgstr "" + + #: modules/codec/ffmpeg/ffmpeg.h:115 modules/codec/ffmpeg/ffmpeg.h:248 +diff --git a/po/cs.gmo b/po/cs.gmo +index 67f7b1f8b2382d88bb36d4237d4f05c83de295ba..003b7d6491c2d226da3e157541bc041f64cdb4f0 100644 +GIT binary patch +delta 10908 +zcmXZidAyF*+Q9K=vyB^jv)P7>WwtYvp%T$isAzI3juH*FS48Plq+3$?XgG>WrKnUQ +z8c!l3I;1j$5-N&Bqok5j@9+2A*I(Z?uWMav-Ou)R-UBb?{_#@oOFdd9PvvAXgO_G9 +zLo%66?pv8mI~R1&GxG5TN8}uNj +zU^(m&o`VM7@9iWVczHAo$7*!kh)$e>rEz*V1M595K5WhqND7`Y1se_f! +zdNXvxwrF6dVp;5&L`PqA;{oVNMqn;Z#0Gd57T|N}xHqEyK31mwDZ0To=!UUvFmiL$0LZK=Rzo93p@W0d|^bU{1hS(Lovq9(;U5zd{4&C5(^wr;wzK!Rx +z2vl{}5Ug%{BPR$^n^ +zh~@AXtbs?-D=d6B%}@jM04*@_&bw03o@iv}VOjha8rTqY!E2*_V>k&t>HX;AoFDB= +z!?ox^K1KuBfsXqcy@JE_sMl&@Aoj5goJo@LM^WH!M +zT@m$-Sf2VP=#_qf2DT3?VDbY67d#vdWj;t#m5+I}*GDI|L<4Mx6|rOVcSqkqAFPB! +z(MLK4P4!LaS1|?6&{OEa7GWj!&-{;q3vNOq`wUCrZZ!3K(Tz*5O9Lv89jRB3`q}74 +z7e{?q)NepfeixdVsp$GMupK^uW&Qp)Qt**&MF;MU`VVMeN3k)MU!P{;cyxSwbo@WU +zv(XJNL^C%Kt6&LM#v8*s(2PvOJiq_>6#PyXp{ZVn-r*Lkf_u;fe#Xw2vmw2^F6ha7 +zqN(kVjvt8zHXgm>JFpV|2R+bCG|=ZTap9LJnBuq46s2Hm4`-jZWx`)o=j%*K0(yPeNbqR4l-` +z=*ElDjW=L(+=gbV)RuJJifDg6+Fl#oxDj%|B-4z7zie%>DxQO$;4(Dgo6(IYNBeAa +z+?(h^>(ESW#(exD>OY~G{Tp4U(nsmIW6*gmu$Vmq9PHE@0O??Ko34h{I{@M!dx+eZGKkiRWGc@uO(C-m`jjrOzAlU$0X +zegxLU$>{vq=)BjXeHnVNkI=XEO?VXj2TQ^BH1O651y9xmO>KJ?Kdu +zMN>H^d=dStxg`3Rp>JRfnxV~Tz+a*nJ%R?D{7u0K%kD@Qu8m&Bap;{FqZ8Vq3wA&s +zU3c^fdZG)Riyq)2G{7s-aU;>pjX?vMgl1+M^45~fTnc7j3A)hxXaJkS9nroAo%k)f +zapu$1^60z*^vY_Y>orCL?|{xbCF-WPvzyC|4VHldy>%#HjWc1|I(38x<+V~B0po@jq8+MmTD +z+80HAee~}{1NsL2;W-$V{XG3YVCtY((it7s9TQ(~Zwf{<2u;~F=wlik?PKt4>bHgK +z!rD8zf7-9YUbq0w%&+KMDA<)|tUh|6)@c7}XeRpaBLAN7%4oPA4d7NZ<+q~|{|6oS +zAiB_;sQ(x1Qhx^<;1_6r&KKzwR6`Hg3|nFs^h!$5^{@LPNej2q;N4C^BYzaV)4Awl +zS%OBq3Z1w<>f6zPzd{%O2Ay{Z4W#Us>3TKMdK2`qc0@DLC81#IFUD*pqJBLZ`2;)$ +zA3`U-f{t5^F8D4we;XRuUNq2yXy%ThftB8!&aaG)tBxKlX&4L+3qzyFgcIH4z&#tXuW(9{jU +zGI(XQ{~x-*NHoCf(G1*)-s$w{Ux>b`SJ4Bl3OAtRcPRU3_ET`9-_SsE_ND_Wp(n3{ +zZqyq6Vd)-Tgr<5pdh#*oMt7rE^e{Sp4*HfBV=df(O>rM4Zk+#hxW^btddoLxA}qL)YttX5ybwAB;KFN1}m`LiZcDkNg|i1RC1nU1-YRh=CuV +z3vERg-i_YffvEq5<*DcGPv=!f56~RF`;*aB_eSTBLNhoX{hhcypS%MmQ&Y +zG1`})cexV%3btZ1{4v^Vev|eWV=3CZqvLvDJsgM)a4hHU=%nxbGnxpMq(1m-U8}&mUQwchMB$|@4g#)q8{kg48nXIf(CdUy5X(SJ_%iKdbBSHU;UB% +z7t^tr1|!=W9Y3HO970c?e;~bzI_L&1&=Yq+13NuD2MefQgg&;R==fXEj7$#ahVLFA +z|90$)hVnn9_2yx(uq2#}E<6{#`(;>wo3RS+34cbfqSV23TppV8Mo~X0?3+a4%5ZEr +zHGDQ)8g4=#>%K7e=QMzZXeQdBsqc(lRd+OyGs3>;FW<%JxMUy&BOii(E~CSn(9|dB +zNvA}8HddxSAHAZ*SQWRRsoslb=pZ)6a);9X;;<`v)#o9BC7DYoWWP@|kl|>m#zy=7 +zXvB}9Cz*{d@I2<@%hCQeI{!VakK3>b9!7rw>;ICT_*C@moQ|da{?Dc0E50z>z~ezr +zH~>9S2^zo{G=Q7YjVGdkKY(UnX1EYd{R%XL@1XNHpzCcx1K5QX*gx|Ss3(>v;{UKYAUe&i~0A+tm1FnXN8#bn3q%F}m +z&;gD3RCGf3un&6j{^2k*kejgxC!<$03(eGXXuvO_8CeqjZ=w6H{*C;*!3Qz$lkiLQ +z2je?5Rb>vRkFXj#zIoK!hi9RgxEwveNHmZe(D~z|eM+?7kAAj~947zOD9oe5lPtrU +z_yKyNJ?I~cKcc_J?`i59haJ&zz0h?Ap(nl$4dfQAg}0*t%|tUZC;As86g<&u=oPF$ +zAJhA2K%b!}`wsn^a0LCqs&^#4+b-z*0q85g8tdRBJOO9niMR>dW7$8rUhIq=F&Rz4 +zj=9nC8Jh2e-~S{E +zzQzZ_8R+Nq1RCip=$lxBO>ifA$7OPIvX3hty`sA48)%7c*achQz-Ye{>rsCMYvUr! +ze*Yg@pkW7kmtSEW{0R-LQmM4P8v1zZqvM-}?aSTy__JyC+5SS27~5jSN;%m-P;dC@}Gq5Q>UWM=9le|NN6Fx*2+=<8FzG%to6+6|eeD;c +zS27rVGo#VJ_s^pzT#2r~4h?uaI&UwU;R8uDR4zz6YN8Vxg~jLzI-v`6MmOw<*#OYH +z9gJSxsHoqD9%w2${t5JVWFh*Kz6$+`Pd<-^!{{$mVbz@Me>Q7}-ufgXp|Wwd^`crfOQqG(;C_gHG&>KB7M8pVNNm0@tG% +zx(ywF4?1o})Muf8{pOqtcMQlh^DMJ`dIphm!S(^5%qEC +z1{2T#rl4= +z=-apf4dCW*0#2lU7aCy28fhTau_5)^Xhu)Lq$P#^6kKQ$8u8@t-tYnREj)~F^f(&8 +z94y8c(D~b<|1)&sJ<-31ig}5i}?QC=sp@;_<``@a3U+EJ)gGyOq03!OMLyawH1bkxV78{HiB@#ufq +zoQP&_QuI$jPktYokw?*WpN#smVX`0!ub~US87@aBtP0;nQ@##;q#vPozZ;Lof?DbP +uu4o{qqw{-3dmr>MpO4wE2nqbvYx})fQvRI5BZuBFc<5EHHe1&FU;hsyfr(iF + +delta 10879 +zcmXZidAv_`{=o5bx!jBES}wA4vy^=cDI}FLwo%&gD-9bFzn)SP55Q16&_|jz>@~`%;pWVm)k#J+Lbd +z#TGdCr6f&`=3#X-?8Rd#H+nfqTH`rr$7$$9OT)LYi1H6;Ajz5}sR8BDfa{?FH$^wn +z4hyhbcp@5j-!*C0@yw{W0ISn*DLOF4vN$uGh4m@V#yYqJi*W-s#`nB%+ +zM;B~{2G#+~WA`)~PC^$RgzjVn=HoG~FG`e6{%*WnX4^KsRFcNLQ0`u{DbmFPut>HYh|3hft +zPoW!Jjz_Y7vXO^sRD6T(=+CgytJxXW#>UilLeFdndPL`=6OKn0xE8(j)6u)}AlAZ_ +zQQi{eeQ4mxYiyMDlS(|ea9u2iM`1p;LC>%wo}9%hxWS;{qW2P9}Cx^ +z<3B~m{esR@_0=b?ctjPeq6!Byyd +zThaNxMl<()wEu>_9mQ{C^Bk4(;6%ru3-&?>oPwU|fbe`YQ)AHpriFJ!`$Oosr_ex` +zNBLDOr2Hm&r0=1D?ZOI}?%}}+_eaI=XsYrzWr3BT0~?_MHphzCD%!iCcc3>G;ZXFF +zjz!<9%h0zXMKg2{y0OJr-TC!sW~QO@&q9CX=3sf>|5tf%$D7cOJEOb@4eTH`#lvVOj@+E}Z-MqdHtdBi +zcp4h$U@XRASQ#%3C!-meft7s!ALhaLbTPWXTJ#JzVlnPOC-@SN$Dh%&>$oM`d3Q9m +z1JV8?(ZD94{U&1({uABMY&6gZFm>X8@nDLdMN_mA9k3d0e*@d#4)m-Gwr2fG(e|Uz +z_qj8=a9?zR!RUhLp&1#426zR!;TyJ+e;2x&imJE>-N|$4fQ{%x??!odw0{-#f1#h) +z!nd-1jnD;;Mt9yR%019|PebP&hNU?6E%I-~w^HFw=AapP1fAe|hGK>m(w=XKEmtv_dXvVKaZ_Phb9_)Av +zI??qh2q)T}) +z;+5#YSE9THjrap};*ZdQ`_MoRp%WH;nw9IK*SZy&iH>OM`(rK>Q67UH&DB`X_u^I_ +z9QZieaS6J>i|7QK(ZF`1f$l|9cMuKiS9E-tJz2jB=+0`Q^$pQ+&Cqe}F?UCD^(mJm +zI`qZdWkDCb5Z&Qr=)mjHiKn7(!!5`Tk_F-OXyETg`HQg3XIXtibl!I8_~WsJ^^<`- +z_{|!DO>r_B;X~+zkE3tJN^~b%uoZrQb+P>C*-lF_pYqXYCflI>yJJ~AHSC9GZV;yB +zcsMs2{tumCBpTruGy~V6XF4<57onHx-{_83hU?J&Tf^PxLf@c){2cXpUu3Uwl`lAd +z7ivOUXOk`pF;bsLFY*~ +z@!-VU(X;zJ%0FNs(ZGH} +z*UA5e4f*~T@?eT8p(!gt1F9SKP0-8N3O$0JXum;dKxak!1?X#fCFTM`KTr$Nz*eIH +zZ9@b39#hXM*`G~Z9g8S7K?k%)7w&^*;#{nRm!ab(p&y`I(ZC)uqtlAV%!mai5|r-XusrOmhxI?xlMRdcy2f@oEF}nnI=z1 +z#d`F%?h1cH1E~2!mWk$Q>f577)ddaYxbP(Oz3z|p8;k~iHu|=V4lhGfe-+mB{ZFG} +z9#*E|Vf2iaU^U!`rg|rup}p7?|A_X|AG3a)(6c@T4Qv4BUQaZT3((6sF6yUaKIJ*tn<01lx67yObfSO*QX5qbw&q5*e6 +z`*-<;{QJ6 +zX6pBphnhST{F)7DfR}Ws2_{5+8uioBx8`=Njt`+5c?OTbHRy(R +zpuZLAchRBZZ&~W3()$v +z@i;8}Bm39olkk|_`_F?7&xHrVmWQ){4IYKU+l*!9oo)UCm{jfRudbLO2+hfpxyP*>dMgu)Nya>I7S48_{ +z^m5*SUcMPoCf-7Y1Gk|Q?urgyh2_d-8EA~Y6`j!6^lxY?F9@$jQ-2E@ +z@V!x9fCl^|`Zhd`2J}M8gCCyF(P1}wc|Jo^{sT6~^7&bSN1>@~kM`@1PS_7!_^j|E +zblwT*>w06<&qOzR4>~S=mhX7A$s<8!memw +zXQG$wB6R$<=(t-cUJAFNug|{l_o%N_K1+FHbi&SPMtX#O(H)+N +z9_8>T{{!97Rp>@;&9$d|AaV~$@}F=88u>c(@@+>m^db6l`USf1K6K&l(bOMCFIT04 +z>~1te+mA;xduo&iMEki|p7oP)JQ&e6(P0L9dFG-K&yV(HXe!r6`Car3_hL^xh`q2w +zVP5Y4T`~dvKs||F@Bntj<`wdCAFSb+9#6$>Jha6PI01h_KgpL=%uB}OENqT{;%IDE +zDeHF|wx|3THo^8q*-nR`J3kLS+R^BSu0}IE8O_M;MZEu>)m$pPtqY>#Q_ajRg9K9rt#1Po!~e$b*G^V3_$}N +zh6XYU?KcsfU|Kj6P4O&jj(4FOc^>Wm8am%LtcSazKK+dcQ&LbRFZZ9_P0`!lA3c(@ +z&`UEK{k?w>-Qfy!fwgGBThMVk(fK})a+#`GeGxjYR#=K`AWd5H-~{c_1-oM|0Q79n +zLcar}qI?ayqiJaWIp`;N5&BJEiN1#KM0r2@fhw$)m-|<<=IGgLU+6r?f(Lrk>!}rztwFJ$i?FWA69AFAq*I22Ig5 +z=zytc$5~OHi~jmOjAm#h=Dr8vyWyAUcjFKmVD*x$Un?|YJ<+=|5OaV3pTUC@pA!w^ +z(FLwX14z-!GaZk@JJ1PMpcB4;rhXHe`n_RZjV#sm&<&QN8El7UqI(VAf6roIbQpr( +z_7Ujqz61^6^6+ZBk@EFufPbNZRH&K#N*1GkptQr5I1rs@654M{cw=~TP2PV4xQz-I +zx(f|pKDNe3&p-NIhz9XS;Z=nV7^l40nPT!}7p6FTqB;cemUXix8siu=Nc&{h;S=b*%fjc-{ws5y!T->}gDGE&-qP36v)_(wuw3nI +if=*~4UC{}8M161cHuu5YTlDPMA#27w+xf*l=l>698GBU# + +diff --git a/po/cs.po b/po/cs.po +index 83af7ad..7bd385b 100644 +--- a/po/cs.po ++++ b/po/cs.po +@@ -12,6 +12,7 @@ msgstr "" + "PO-Revision-Date: 2006-05-18 19:31+0100\n" + "Last-Translator: Miroslav Oujeský \n" + "Language-Team: \n" ++"Language: \n" + "MIME-Version: 1.0\n" + "Content-Type: text/plain; charset=UTF-8\n" + "Content-Transfer-Encoding: 8bit\n" +@@ -6451,8 +6452,8 @@ msgstr "Vstupní-zisk" + #: modules/audio_filter/equalizer.c:58 + msgid "" + "Don't use presets, but manually specified bands. You need to provide 10 " +-"values between -20dB and 20dB, separated by spaces, e.g. \"0 2 4 2 0 -2 -4 -" +-"2 0\"" ++"values between -20dB and 20dB, separated by spaces, e.g. \"0 2 4 2 0 -2 -4 " ++"-2 0\"" + msgstr "" + + #: modules/audio_filter/equalizer.c:62 +@@ -7209,8 +7210,8 @@ msgid "" + "16 no padding\n" + "32 ac vlc\n" + "64 Qpel chroma.\n" +-"This must be the sum of the values. For example, to fix \"ac vlc\" and \"ump4" +-"\", enter 40." ++"This must be the sum of the values. For example, to fix \"ac vlc\" and " ++"\"ump4\", enter 40." + msgstr "" + + #: modules/codec/ffmpeg/ffmpeg.h:115 modules/codec/ffmpeg/ffmpeg.h:248 +diff --git a/po/da.gmo b/po/da.gmo +index a3c1ce9357342f1a237e776a3c4d9950a73600a3..89e84c028a9ef8158c7d98b55c7eca11ddfcb05d 100644 +GIT binary patch +delta 12164 +zcmXZhd7zI~{=o6)mMglJE4nViwIn+?OE=MC&lWL4$P${V5Q$$g50jb_rKl-WerZ}q +zjV4K=MJ0+!snO6vi~N*IMT5}q{l3rVuh(TMz0irr;i>qCC{GJ-#In?E#pWB0HZ+Myqsq2XwtlhKUKL?^xz3-PaL|L4&Kyoj#& +zbu^$4;{9jnIA0*`(&T#{PNL#4y0TyKbj0+?>sory6}B$K>2I*5T1G<>(Cq>s4d#Q6S}fXu?CL7GjKXK +z$HnMG>(Pb1jRv?CZT}&j$^6OpJa}!Y{g@rPRyde)cPz$-&;hq%8$5c92k+?NeD03(qpaPoeYG|rzqXV52_CQy5 +z85+Rl=zzaR&&p(UA+ykN=A&D6Z}>3Ue)%Et?_qh43IkaezKN!43p&An&=r1-RqzNp +zLEbOf`Tl{aDHSzl?|JR6L7D-1unrL28Mn +zv>07kU#yEG(3Q_ZCt8T^=_6=nR-)}+kN4Zq0KSU%N6-b7`<1if{jcZ));?Ol(Fc_z=y=PIRKL(S8T8EuKKzw>gou>xdrio+rq^E1f`v9cG~o +z??6+yILh~^onlMPr2O>s?h +zD_Wsj&qJA=ZTdqg9U=EtG`RMh#4_*1=*a}xgc@Mfp2TM(p>UCd?vWM@?DMkm@I +zW>xX^^2BTZK0Bhk2bgMRpyU;*>#?*&OWwMnvLHDXH +zx)nXp35Un~G3Z`ji>7)CI`K@j-P~{21q&J~kun?X28Fa<3pj-78I>FW`e}-moFB;HM^ej|5C7ZA&HlW-F&Cq2j +z4-RxW+TqG*FasM>elW`G!#!A+`ts#+k|Jz^4%iDlWE0Vq-GsGqF&f}=XhzoKS@;Q- +z-v2V?v%RT~HfVwd)D;b=FS_E<;qTGCzYaYMH=%nu8{MKi(G}l|wp)f~ZaLa+9eSPL +zL2gf)e9nW{>__yp9*c6}so9DepaZo=2ksDdM^|p-Yomv%0owmubj7`+JRHr`#HgQ& +zE_5zd^8P=}gA=TX2Ct$Sc@K^FB!9!>m^#t2N?A&tMpy7cxCve9PBfLDqpAA_J-r9f)E|!e6KKHYD(95`2TN`A +zQ1(JId>K0aSTrNkDs%sx;6^Hpd``Srhz@)&x)py#1Na+yNS{Wp46LZFf7`ZVA@G^f4Zs;7xSmkI;bjMfpg)&#Ri%*FgtpiSG5e +z=m)4@yq|)ekw2j;ogXej+b=;^z5;2NCTn>xH5<^q-i&U+2jS=F7X1)bu9mfL6}Ce& +zaUPnnuIRrfT#RO{54v@u&*`s%sc0rwqbuKt-iA-mGqev+^ZqA=SxT#-x1bK%p#{1nozYW2 +zDC#GLbJ0{jfD`dCya}t-h#xI9v(KPgwlaJL?e{jOM)GeS%)ov$MF-KJ)!dpn$!x5R +zZpl(Ku&2@MwjK>^7rL^eX#Z1cWq}u>^-a-~pM#Fm3*D+AwYdKtmJw7Kz=U`)39Y{# +zJw$&*C%y%}j!U9`B|7j+Sb7`Kakht_p&9rZop3*zi67(rv0B`J2QG6)*0DxdFKmJa +zP>c>x67`+X%ymOEH5?7#`glJJZGQ_Iz&y15Lc9u}z~5nhT07f|@n~dI&=t%=_x=_% +zWq*nCV>pTOYBaF3>SP&diQeZPX#er(mu?~&z-?&zJJG=IMbBEgga=pf6dJ&KG{sxc +zZ~UHcADZg#(14PJZ-cj~aDW}? +zA>0!lKr`|yy7K&n+2N@X7NhMiMl&@CZ8sbZbR0V2HRx&oAN26u7WEG|OtXg1P+>&R +zqo;TSdVM}dPx~P>kdx2MNycFznvp+-bJ3O0Lnpoq&CGrA{z-J9|3EYP3Oe7Wl!s_ +z`kwn&wn-Lw1vIkeXaFVXz+KQS7=T`%QBj_So{{-@1wM{utZdV43-Zv6RYvu51Px$Q*Pp7odmdZgj=V&=qV#C;S*~zZ>npAMJMt&A<_KD}F=I +zK>23bAVc+oY?Nn*4~8#>ABG3Q3N5q#jl-@j +zx&I!HQB*kK_2{SaZgh{HL{s=|_yU^Rb!e(z3*Sb!VjJ52BQ)Son +z`+6x4rnXVo7H!ZO4QOE0Peud!BYGBYMX%j`@qR_Te;K_s8>0LXx@Ei2On!p~b}-(j +zN$V_T;JLFho^(9BIje+_R&w{R)?1^p*_rZ%Dhyo+XT2YT2) +z&B|%An+GHQ3QgfJ=!CzbD=kx;Sq&YiA$mw#h3AKT(Fum50ggg{<^F)4vH9ruE6{~J +zkCpxX-%$F%U%}{#_Mj6TK@Ve@v$Kv>(5)&!SJn{CP%|`h-Ozr$(G(Ak@)&d>*GBy; +zbn9-%(!c*7i5IKT)U8Jc`Uw5C`U0KcD4Ln1O_qW3Xn=)iKxc-{(UrDA11Ukr?TYpv +z7WHE>HT9Et&^c&o7NNJ`Q9Lz=|Dk|Il;3Kb9m2inKtG@hJL)0hjv-cIyi3-s(&=?K;95fRbqx}Y>w`D@S +zpA_|T&`H=!Mm;dxkm +zUe@ngbez|*1r~J7{xIo^?I=&h3-Bp){C(Kn-~ZxHS%fptfmfpq_M<6kdw#a^j_9H3 +zj(%`Ppzmj(nVOAm&3rUt52GKX73kKyjty`tHpHJx%iRCM3$hm-!%^Yf@X2sXcp$8H +zVNNoZflAN-9z+k{ljy{2&@J79ZrwKYll}>MwvJ#v^Cu@=l)b1Lwnhi)i>_!SI=~e4 +zw9iD(z@6v>OR*Y0ik^ivXh3g<@1ckI6Ev{h=y*S4Y9z;butV9-*?^~^r?wECurB(( +zIO;p019V0E_rq~`8T!F`8J+0gXrTWW<-_QBd0nzwP`eBF-#x5Pg%dVKS5O>wL?`Zn +zetHL@D;|xupMVZH5zW+WG@!-dLujCnNBLPSqPzw@OFO%yS?YeI!br<@%_b~B1F4Tr +z)B=6q7QMe+(ZDZ`_XE(0hM+4SgC4qRXkdSe_xGU-c^Lge<{v2!?%g|Rhh5QNKYCh^ +zqCYZqx@Diz5-g%TAj(tF3GYDrFGWxPax^n9p)1{jj`JnDMaR(vrKfk#4%?Y%>e{0X +zFF;o~6wSbBw8K^C05i}PFGLU55_GGUqQCEdN4M%3bb%|;aW|m>e}VicrO6>4imAx! +zkxkSo?24|SH#*P=bY)}F0j8i|v|G^c#wPSjcO2_u$DTP!KfD4<@E=j$iz6tvzt|5N +z_ir%|{i)c522!I}_Rna&u_fh=crE@CVW>dc0&Uii(aokpevn@PIxQY +z?=EzL#pp^OMKiPtZT~KM`aebgCFH;8Stv*^%^EaCugSUS&u%|7yx`kB+Wecf}-l9fmphM8W$Du2pj0QS4GfnQ~!4%z(4*Uc<@v11VM+ex7 +zrgmr4e~Yf*2%6Ho-(_3S6rH#O7GV!`;;YbcW};j5=hAxa|6h10y^rXh$?MPnwxPe* +zpP>W(8ujG{XA@ULx26%=zXh79^U(=9qvKtQX6h;|J?!ZCH)Cag|L@|#l>9H6fv3XN +z=)@bMybV1QyQBUvx@EbSWh*R12X2mzSArhS&S4KU&^~BDBQUkW6doqvbhNw+UD;RY +zsr?pBVeXJDfEwugVzj;lU1=Y*{TTH0&y4cD=)^0~EqD$60Bs(^{dW)dQsDqc(8E`G +zXcl1$G^L&KM(mD*a6LB1f??UGwhKDpcys|NI?>!H--Vu$#prk|qki=;?!WhV9ThEc +zL%cW`9zj=nBFw!!8=yj%k4{t#9j7j~#>VIeXeb)cXmsz#qZzse9rxBW8Z1Bux(AK$ +zp{QRLK8_B!9PPLgZTC{tzY_Itp=aP<=o#37X7)?;Y#l-SoiaQ!l@|~B;pu3Dno+J3 +zHb4h#jIQKtG?0>be*xOBD;hx0a1b`3JPKRkJaq40LNb#k+p~w{WAqP)-PjSoM7N}9 +zL>B2K=mdkJJOnSGJOT~qA@nT$4Q;my4R8&*1+PVUL%0QV{R94kXs`qA_*s;{2=}6? +z-;b{BAlAcVWY)euo=LG$l>49o^+zWjyt2v2tM91LXY|Ag(?(Ai*P-aj(JL42TYLTg +E10F%7aR2}S + +delta 12151 +zcmXZid7zI~{=o6)Cd9R8NtayijdXFT>^sGXELlQ}B1`;=iAg0rN>S68@=Mb?Dov7< +z7L_O_rP9zsi;U7Tg>i+{Pz>{a-{zwnP=bX>^oO7P<9nC*qFZ;pkWuGrBPK$Dq +zfslGCv5o+M39r!b5LAKZj3a49y#FR(ElK?iPBlGz!ZcsN$XOQSv^yc)~Ver?om +z!1B~@M*GjfN;tnHO_Gx-ETkb9U&NZY25aLMtd9RiCp?Pw&)J)0pceXG9#+LB=)`T& +z{#~#N_QYy(G?Fs1092AWHLJOEqDt48GZjLbOFzx +zD}EUb=$&}}F*?qtNWV1shQbLn>_J!dBi6#7(TOVV%OSk+gL#T3-l2F7k#0@{%oKoX#bYz%Fe^OI1uaM +zL~Mq0(f3xM3ws?6a2?wJT|AxnlW!<^y2~HP4qYQ0M!h|@!h6sG*WuZ?51V7bPnmO7gSd3fHm6Z88%Rnx6 +zpjcjL*p2t6dPpnnDd`D8Tko6(fdN4IDpI?i+GsedWzuSItCXaK*UE6Mpa +zi?kA!28yMDq7$Eu_V0#{(+^GkK(zm8tcerRekr=3yReG)e*uN*G(3SuocCMyL28Jm +zv=CicH*A0d(Ung@Cz_4!>3wKs7Nh-Nj_2#q06vfBCFlZe|sP{x)9D%O%a`cc+j`ka(eHJ#Q{cd#J*U)}z(Ev8!Nc`j|`FFtL|7H`n3A>;j +zd!g5F5H`nA=ofAtnu#^&1n;65*@RB?1^V81cn%&w`!_z8^(#gXcgJJo-)l0G249$h +zcDxx);oPX-h3?@3bnl*y=g*;mz8LLqpaHEzQ~zE(--d3@_tAa~&0w|kc((Ee=)_IX +z7h9q$>4Co358axv*b%Qr`#+8Le=+KBqYK)E_Wur@XiwCCL&rTK$tgX=X(b9y&;b3l +zYlpr#66@h;bfPrc??6+15BkA+1kK3v;mhHwa4mXU-p0E4IXd0}Wb4!9Hwq4zlao`L +z;>ze&G(xwaCDz7sunzW(_A%&f8INwkG<0Ptdj0N1SNw{ +z(UlxUQJO`bqGn%Oj(Cau6UC<14Yv!VXK8UB{;&}chmSz5AQ#5Qr +zC)yG9UFg6+N4#psrGN52Do(5;+>dAJDOsx{$eG>{)KwUBdSw$gg& +zUNu2adj~XC1LFBmG((r8sUC|?JQ?jbJ)DVd-E4Hr=AwZC!^nqHfV}FhyBqBMxiU59`(D>g*}0eyC&K;{B +z)~i`AOI17clny~7y$0Qa+33WNp(}m?-Ky8n3D!mZV>E-?(17-0>ESM)O;{NVXm5;W +z==_v|1NBE=xF|YI!b0kIM}0-O6&uig6!Wp(N!fs%(L;6xy0UAqKF&o0d=kyb3T%QO +zqJgG|D7ZHjD`Xw&p#il;1L}sZcu05&y7yP2XW<%jFQ=kgbPKxTJJ5a$(9A7F`z=SW +z^Bc(RNs~_~cz^$ep4NR)&#joPs5UxK0XlH=usyo6^U$+01noBxo#;w*A=gHI2D+tp +zqWu%HQU0@ +zXok;6#~+4fWI|Q$zY|P>Q&1Q +zStE3!_UJra(Cd93=HsYp+<&jrEE?Q`$I!#`Jo@4q^g6wT?(uf?^!|jds6zE@;96ll +z^t}RfrDvemtOFX@1!y3H(f3ED6r6ZmJh%>haV9#@-RJ-d(CheAw68`p@^|#GZ9unj +z8@9&p(JjcUkyHA=8GncNy9w<#4?QF40~DO#RdnL_(SWu`y(FF=i}va#X9F}u_qrMS +zMeB~fHx@l3e?V87hI7#V^U#$qLi(l2a}-R?N_4N+pj+@x_zAj2--ajD%=$M9&p!T?@6W!X*=vMX3vBjdqnw0%5! +zh<=Ywd_8&{=SBNsbl_*P^fsX5YzRL_Gw=mE;SMwt|BC1P^0@yFd?*?!)yoE`8P-Ds +zC`1P+iuRUh=Gvi|8h{2cKAulO`(KX+Fca-R8zhzCQx}(p`ZDFazy>3mVuR=odGgN5K_5f(EbxP4Qav +z8^1N&j;8u+G@yfFPJ`^4RYk8^0eUvtqi5kF^t}mare~n@-GiK+G+9Ey2;V|ev?2T& +z4d4(O@ey=@BtPp{3q2#v!Zv8ex}h1k5Dj1?x}ZtuU&Xhfza5J)*Zcn#1t<6ro!}Gn +zRPRPRp4c#(s9{)yK5vb_HxS+Xq3DE{g_F^R&B8*QgKohy=zA|>E${!U6#P(ZLId~` +zy`Mj!D>;T{rd*?JqWWmPF*;CZbmcw5A?QTo(9~az_Me3==zcU4D=>AhKBHiSKcf@Y +zEy!$$rno7(lC#l)+lSrIiF=~~k3a(&8%{(QHW^EQY|!t-LNrs)6mb9T@H!0+un|3k +zTf^_rjQohExJ+Socq)a3X#Y-V;Jwj)1JFQ+qZ5uoPy7F&hi^u--&>ew9Ur5?h@L`E +z@k;die1M+zU1%Wx!LgWodX|yjhttuO&qOD_70t|@@%&+Qp^u{(eF2?sbxNU#!bZ%; +z!{{E>ZJb5k293NY8pwrFzdW8##ul{Sgl6y=^wzwJ{tB*+`WiH_b!fj0Xn^Ub6q-@k +ziLS6_lk7oLbVVJ}iMyfC`=coxgZ{iuL9f?s*Z}{E_J0Fi=|9l^pQ2myEgHZcB!DzI +zM8Q;4I3w$LD!Qjl&nf4Y~#AqFXaK>Qm4&lHw?Q5Y5=H=oTD9Gj_t6*?V=+{^y_p +z_Q&eXpA4hmUQIw(HVF-68amJ{^zhtk#%bGv +z`|sfxOoIcCM?aOfp?mZ&n!+c-r_t0dM^pV$_&T~3>(T!2qXB;u&$pvr+V9cKmMPBq +z*Gwsx+PYyAv_oq&pkC2F1`X)<=vlY{y>@rT^F{IedGyw-jQacNmTg8e`6U|I&Ul_4 +zq+sMn(8&4sw$ez;p{KPFU1=9Iu-@oE!_mx*Mt=>jL$`1~dbs|Eo~c!60B@q1+lU_a +zkFt82Y@uMppQC~7Mko9cUFo5)e5-7rI_M#76t)Vxp%V;1100P0%3X?{u@oJD5xS74 +zu&TfRD@zOf6^yQED;jYLdKeF(FP?Z-wpA6-mDNErbQ+qucIbOu&=mKH`cQNsmq+^) +zbn9-y(!c-jiw8^4)U7}VdLR9@`V^gDFPfQyXa&I +z3!;4(rlx*01)YYbW)6A_?#GHb{09Zhr~cYG*&*D94)iUW@;&GZ_o43}k9xJ%*-G=# +z=k0M4_Cd#gxi$B{^ia@Xq#vOx-Hs0QZL}W@kD~+Sw#hP(hX#Honu$*6dwtN`GBTcz +zj`nHjC;4`CzK7ay|4sGcXm|nhslS1)@GCUHo#=pj&@*xnJ?-V&X6>h<0W?AvP#m^K +z&q_yh%X*+&GYB1TSW3audKvoS1T>&)&)`Xlx^7U3am +zg$3<$O8-;sQ0zf{0d}w-o`Y$P_BqL53cYa%K8(F_KX%7<9deRxcq5*TtI-$tVMi?N +zn7wy7I?l`394mCn{xE5at*MX0uJ{N#{&wu;?|)(EEW%0Xz)R5%JJ1w0>5{Fy7(F!Y +z(GSi*^!X$-Q&Z8cNzshmi*C^(bZcJ50$hiM_(N%(`=8r2dr%w>4yT6?hik*{!t&j6 +zk}(Waga&XodiWkjCtikb=~{H_)}x>F57Dz#g4LKm`6V8d>z;KeKnLoEu4oWCz*zLO +zPe#wcE$9UEu_oS+o`q#-K(B^xp@;ZGG_Wn`ct2ojB>O4&!msFnWqV|&HW!_+2Ku}( +z+FPOnv_;?Vj$`qB^n>+0I?;P*p#O~e9(258=q;$$ll$);*6Nu}SRY+MVOWe#+yVWS +z?1ct61ie-x(E+bOGc^?rXl{598t8*je**KVFGJ7Lrk-h*x_{ANq`#sQRya2cq!v0+ +zKKi@~8hKkZ@J{jkTy&zo=*owphi(EI*dOBgo#;aDMgNd_Jf+~?y@9^4IXdh>PwQUv +zN2dCD*{8G!^QoU3^|9!LH>2;*M^FDkG&9elD_x6@^BKBD`_ToZC-uq>+bL-3nxY-g +zLRZ)i&A<@!g^SSvCZQ{yjUKLfXy)dlzwduVx9Tx;fs4^`SEB)ciu@?0$u0`5XgG#W +z)UtPGTXY3o(18Y`D;tImFc$ryU5|b@R$~|3kBzYScR5Layb#;r<5Ay+mr`%q#}69! +zZ!U#_G^|DgsdRq!&uCq+1@%>UHSUi3MSXLU>#5JdkMKC&jvw`7{#k}@ +zLNhc6Jqv$CulGVM{rz7~!PKrpSGpP9immA0eS;2g7)|-nsFxd%WvU{Y`s(QIsgJ&Y +z2D*iAYYw1W +zmJG~(gleGUbwO8r9vaxNsE-=R{ddJvXmH@`urvTPpm}Hj_o3JB2{aQ+qJ0^<@>S@- +z@1OyEh`#?#)OVxfA3@*G9h6yhP~88MX>fuw&=oaDe_q?60S!a1*QMx6C!!PHfWCJt +zI>B6YrT3#5T7vd}6FvPOq5l%{Z}cowNH5Gf)JLyLGxTS-JDT#@XaEnRfh|GZrKJjBU{kS?LhZ@FBV`jIQ#E^g=nVIeiRy0xD4%hJG$}*(1Bh-Ct8R8?7o8z +z{0$oLK6DFD9Fi@hB6^GJqJj2B10RmAcnlio^vpE5g@P%%3my0&bmApZUx5y=4o&T* +zX#WabK?$1DW9SytADT_v9P_DnKqtN!9cMDy@5a)0?*AVtl-@`5&*bH30PE4;>yOcu +z{21*=(22_r%eJO2`hGr|saEI&t7O;%*EM6<6$9QEp9 +zZFImqbS0;wffU8_v(We2q5*Uadt+1TgRvNAqI>@=5NZu^}Er``5ZGr}Y2CUKg!*MFZ-IPTc3Erk72+>!rtcubTEhQd*#O + +diff --git a/po/da.po b/po/da.po +index dad04c6..69d2544 100644 +--- a/po/da.po ++++ b/po/da.po +@@ -21,6 +21,7 @@ msgstr "" + "PO-Revision-Date: 2005-06-23 21:55+0100\n" + "Last-Translator: Jonas A. Larsen \n" + "Language-Team: Danish \n" ++"Language: da\n" + "MIME-Version: 1.0\n" + "Content-Type: text/plain; charset=UTF-8\n" + "Content-Transfer-Encoding: 8bit\n" +@@ -6685,8 +6686,8 @@ msgstr "" + #: modules/audio_filter/equalizer.c:58 + msgid "" + "Don't use presets, but manually specified bands. You need to provide 10 " +-"values between -20dB and 20dB, separated by spaces, e.g. \"0 2 4 2 0 -2 -4 -" +-"2 0\"" ++"values between -20dB and 20dB, separated by spaces, e.g. \"0 2 4 2 0 -2 -4 " ++"-2 0\"" + msgstr "" + + #: modules/audio_filter/equalizer.c:62 +@@ -7415,8 +7416,8 @@ msgid "" + "16 no padding\n" + "32 ac vlc\n" + "64 Qpel chroma.\n" +-"This must be the sum of the values. For example, to fix \"ac vlc\" and \"ump4" +-"\", enter 40." ++"This must be the sum of the values. For example, to fix \"ac vlc\" and " ++"\"ump4\", enter 40." + msgstr "" + "Forsøg at fix nogle bugs\n" + "1 automatisk indstilling\n" +diff --git a/po/de.gmo b/po/de.gmo +index 01865baceac20fb54b49be06a43f28e6b93e3bd4..68c0c9255b0c61f7c3d437c4f42d682c40f9dcd4 100644 +GIT binary patch +delta 27725 +zcmXZlb$nDu+s5$|b{9)=D;@|02?PScEx|${xE6PJ_k%kWC|aNtcWZGeQlz+RgHyEd +z07Z%vp5L`If4raX%gIF3^)qsOU* +zwJ|p?#X@)zf5tDE78hqS*Kfyfsh`3m_!kD^KbRQ5Vj@hO+2fSK)Yt>-V0S!}+2cAs +z3gKDI4aG1U_3{{jZEbx%YJht%6P~xeKn*l7tH;TT5ts|>q1uOH9$bMr@T_frgPEyk +z4suPQRFKC>MZzEAhVHSLi +zdT@&D<~eQ}3JP5=48~~u2D@N#9BAtkQP<7EbhsTg!!xLv#i1Vf81=wcsOtlQJ&qT% +zp&}T9>c1dzpX-z{1t$j8L4C}K%~3NMjOt({YNq3?GcW=5g{T26N8PvCwx2>p=n`tc +z_fa$dWc`Xsc)sJw;c=?-K?*F2EwCKU!4`N0D`3%_9;XWq#-8{PZ(_p`v&Kbod7OOI +ztD=^00BT?pQIVaEip(xdiO2C9p6|rj51ycI{D2BoU~ZEeX;32%L$w#eFf5H)qAsYU +z8j6b8C{(UYL`7^B>i%C)_islH>;SrII7LAhUO{zq7qt|RQ2YI*ttZIiaY|E9j+3xD +z&c*G+5>)#&lXh_3B6qwIEI9q;?6T*#oQEOit +zHP8mumZ)vj88vVhwbqkRIWQmF<2KBSnZnG{lt#_G6Kc2h3uFIl+f1iH`+WmyZGJ~3 +z%@tdJf$AurfLW4k=wZMmQMpmJpxIudPzTKtjKZU+BuyCZan56M%#HUjKL)ym%#2H5 +zBn{OU_40uZBdU? +z2X_?nIK#F76BqY5U1^wzvG@+_VuccB8_q?A_$t=Mj3v#>q#Npi>#zjA!m1cr%HveQ +z{-~_qkBZ>$sEOW2?V4v;Rr~+5zre{?+T*0>gPEvgT94X}dr--C8q454)Qp45c$^tn +z0oCDURA?WfBKZX)F=1JA;>BP)>J3nl*^Ak=|1VHblDtK&-GA29JS!)C^Ce`nigV&fInbxDW*8x-{PFioG +zlJtLA3zJ5fC2N72*{`VUkD~_kCllpR>34= +zU)0e#7&Y=qsF44F8t8J=19zg9?gYl*byS3dE1HQcLmglnQ7@rq6}4hG>C)BrD_?t6fF@s&$KGtN}mSQ$%F +z?}>`cIxL7+Z9QSMxiJFuc?(;gjD@Ig$9(w2exA09nQ?j416|C8Ypw1D3OQ-`XfFtg +zF&9=t9l`xkGh2j_xCV6&JVh-@a8+}*7e*~f6l%NGLG6a_s7Q=MMR*A+5?hh$UFRqT +zW%X6m1K*=Unx&fQFc0d+lBgxAjtXHz)EAJpsHE#{oq)>zpD;ddLm%!%4fqf$5*M(9 +zvg1Drnqje6vvw6w4{C`TP-j%O&p=(b8MP#PQRl^T9Dxa{dz{`l0b}tKYM@nWc${8X +zA6w!v)H@(|P2LsC&e{~zaevfG8 +zD&(WlzfDp1{eTg;z}C;9270YF`(Gn`L_;WkKpnL?>zELiM6FpDR7XQF8;(W|bOmbQ +zn^6PUX506ma^fhe|2SKJVe8(yCL(F;+Wj9+gI*S8P!EbiJvasx;_px+ZfEO#Q5}y! +zooF*rOSjFo??(;rJSq}#r~&?EeP%y@LmODwe42f`hL`P7g7D(LaqIC+wOj}1z&x0L2`V}1zFJvaGaD4%(vcD4b2Q( +zjK}9=Q8_Zfwl7CTY%S^myHNu>hT6UlP!W5Nx-L;8e{Q)>dJ1aDg^EBi)C}vJ3!KiV +zH6DnX!7%F-)PokF)_OH+roW*gdK`1&W!wGvt@+%xS8i&)0Zl>Och#DunW?wKdbF>{N*K_b{jWka +zg=n0LW$`kqgVZgIO|T~QrKp4CHEMuKTAG<=My+uUR3wU_&W9+>fsIiScJ1erQOP>H +zCHr67V+{=v_zUL2M>rW%v@)SugbMjG>t@tU_F;WY+1iA*BPxQuFe?tS_4%mWSb|!j +z^{C|C)7mv_ewBvCG(1MltU?>}vtV5;Mtu@$#D`Ehas}1lBh=CS8uj3B+IpPBm>PBc +zb<_#^92JRAwjR{Z<7}rM=2Eyt;V%552X;UWpf@VXMx(yb +zOhV207-~R|Ff|5rGWVrL)w7}QFN*#piKd_>sEZ0sQ~N;|%u9U$YHgRI9=HwF!Cq7Z +zPTS9~p_lqIRCd3#?e9?6CF*R>gVd~5j +z(qB*m{)oNM)79flz<#JC{(>54v +z#VNa+4nk1_EP^?)0+z>47=r6jGrNd7FCO8q_yu*}FFnl9dwwM11>YdQ!uplPvW?p&m5I)+b;| +z>a%S9ENVOciF$CraI;iNQEQ$J)lVMOQWddQ$AsGd?I}05hPLDi3NYE2GYZT9}I6F#vl~pFGn1LgO=5(f*GdWzP7C*oOKA +zEQLi!o00d%2OTI{gs+vLR|$Fv6iR@u0&1X0OrQ$ +z6WIUSpJ^wWP-a9eMJQ^`BT;Kz6T@&4PR3oRGrrO!leDp@4jZEGAAuU!Yz)UmsB`8l +z>I8j`8c3qatfBUG(aFXb)CEnE>~sdA9y}2>gPqn3sNM26>bm!+2Pd53an@pHRQ(TB +z#BQQ?#}ll9>86^ayS+;xl7@w-(A`A+u=y0rV4`VerqQURs$p$}KI*Me1L=sGaUWFj +z4nZAkyHOK*iW*S-@69=o5o4*lg(xVAT#UxqsI&Pd>PU?@-7HOZ)Z4BQYR3JrDUL%O +zEca0Z`G^{TZ-)8yT+uoPwL1=DDBd-7*GV$d{6-=#YR&7QI&6gta3Ge#)IXRGYM}gb$_)o=sq +zJ^ld|u>`Zt`H&e^4@b=~+Sc2m`W=iqM`oh>TZuY14q|-m|ML{I=GRaczPAR>F-eyd +zb%d5cjl4W|#oDNjenb8C{0!>42XoDJ&ry;2Y|S;#ybbH1mZ~ATnrUkax^NI`TP;V0 +zY#r*t9jNR-ggX1PhE&oKg4_HoSq}$2{)ncKZ)A*4}N6-E2K|o +z(1YHiLKbg<*)AC{8}%xf9Xn$#oQm4d+id$qTYraIg47E=&Uy?-<;pG8_5VX{_auu< +zd(a~Gzb*);p#+x4emE3c<7-rh^?x!E=#Ba&GzB%#&8Q{#12xcVsEB^V(wJhg`I1@# +z$5B6k%BAR^&B648OQARoM^GdDf_nXCT4Dy)9@RbowFI*<1UFf)pw5N=unHzvYOICI +zmHDWgT5a8nO4f6zrEwop&`e%i6E8EnAUjT`Jp%v11Go≧mWmXodOdwiWiG{deq+ +zMOK=9zZ}*60KX+U8?53v*kd&l!trZ7&V9ZASFH6o7rAiaIx~}I>&;2l0X4H8r~wW_ +zjeG_wNmrp}w$auP+4^x*PTfS^{|vP&-lCT33u@*`Hz?=We;Fv~#LJ1=|5Z^PG{u70 +z85Q~ksI}dOI!aHW26Pv7bicRl-i_wL=~34QqaIii3u9%}NjexaX#ek{plxvtv*Ih% +zd5~h0S;K;;2b4o4Uo0w%d)oHV7)5u=T{7+5c)tM?oFt +zMn#|$>c;A*kTpbI*8vORK-A3Ep{_fGy6zNeN#anEd5L#0{uVQlN2nwE9cnUpJb>CamfD`>{aw!AqXUXhXj`o6E +zJx(X;J-4#|)!~h8#=EFwd5l`)SE!lA-)?4{7WIJqsBIaAI*?k}_VK6)F0gJu^|K%K +zoJ*+t|3oeE|6B^XA?XftVGt@JMKA$YK_z1?R7jhn_H|!W&Wy&IxX^z7H^xwpx6@n~ +zYi)uBY441yZ~@jqx56%Spv*yK`99RU;3|er)Cts@CfjeUggaQXA$U0+ +z{}6f5EJ>onW{HAOxlj-l!IIbjtK0VFsI}i{KY!tuAqE^VGf$1m$}m(CmO|x1w5`{& +z^`^Go&enTb2V*$bk4Aq|qLywyYFnO0E!}z4bM9a|h3GkjTj)D#UP2F07i2kR1`vu$ +z!U)uBvmz>)Vz2<#LJfEXDygQRa%CNAAO}(XokVTFYt~!n|M$NK6ttiJwjX%@FgGSb +zWqB$rhT*8!a3|DSPQeh|j=Jt9>H(in0}eQD`bmLG=8U!;j7r}8$Jzhd9+hcOXqsR) +z?2I~+r=T9N1=Zm-R7fAAw$VFOL=vAcGf#%vO<|}Uh(txEE-GRztnE<)>UM(tua5fB +z&=e=4I(&$F={&P~PMVozM0J!6)p2gr10ztOuZ)^VJ8NH5=traOn{M0Zq6VQzjKO?2%omvcSe^Qs8|?p@6yDRImqqlS +z9_KFpgpoKR&UA1Pmr@VA>2ZeQd8~^yZh4%AxD>}>x!WFR3LeFlSoec%>c08B +z4l1HeQAzFgq@X1jj(Wgs)Do;kt?gb^)*r!GJcqe4^8@oQ7?tsR>i?l4IQ1`cWIsSn +zDDa{Avz>-Gp86WhiQ$jxMqH%*e}RG?(DRuI%}~@&tJ6{2Z@sPW!W`5u<9GPc +zeqQfyvlOjRq3w&hZUXke4Oj>>KQ~KI3-wK_F(%Xg?@K{9j=>>k%wW{XFWZ +z^}R41l}GLCSX3_5Lv7Cvm=6b_PQvA=-Lnt%5{ko#cpu#b6uSM-JTTEqv-W9F$&?E< +zkZ{!bP{y{G$7t%Ys0htMofk_`$#?^`1kY^!BdWi^S0=J)Py-Kt#s1d_OVFS-s)K<6 +z%s^7_^V*EqMSZ~-hgzEDs3baoItd?QH4OO2{JO3>DrtwJa$r0v!n08WS%Zqium7F-yZ_R)LQ8%PR%^)-C3rQ$yL;N@pUu9`j~Z}GR0Leq +zlFmgX^#)V~524P5Q>cl)LjTYIN&ho5%!7^jpa5!(C!s<)1O1`@Vj_|dwcXO89#jhz +z!S<-#)C-k#ldRKF=fg}?F0DWf=vQ>ru#ZA4p2U3k?N>AMN~i}kMs2^Is2NT}t?f$G +z(Yq5hvm00$zoNEdWrnT#OjP|k*20_trrtlm>-ryXhz70AHPj6LMrE@vp4Y#&Sy4Gq +z0F?tptc_3u9D+IrX4v|AR0Iy8B6k!u;FG9G+(bR^WjxpGKTy0L^Fa`5?F*wGR1W<~ +zh54!XKqciOR7dMkyJSBqq<>g1pq3;Kl>?7Z1Nn@aNPySt-<}Cv3hFSKZOCHlA*kdl +zf;#akqaM^6wG>@Y$v6?U1V5v4<`8OT$FV5hMD32$KGR8mqB?kiA@~JLV9xknCkR`h1~>wh)eBLP+l3lP9OlHAsQc3iXNL2)(d=MMWlgLbDWMsEHLvT~{3=u(@sj0eyP^ucn|~ +zu+h2~wZBiG*7OCcgMV#3Q6jU3sW6Q8^r#tEvF%+@YuyWV1ouZR&2Usi#-buRA2aLy +zzlMU= +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 +zkzQvx#$rxG!z)e&`q +z&cceg3zhv}Cb0kWP$)LhG_=BP)PKY^SZk75(~qca6*$?fbp=dMy)NpA?Pl$RIyncS +z-uK_5mTVbn0DDl$eg_j_nkj@vYngS5xgj5_gGlrr80b$bR2C0Fy@s!1c6^8WqLF^8 +z`Jz!28&PkJ`hxK*>S#WT8t^^TZuyKMSj?Sf)~GpZq_a^6%my5SZ?GQr{N7x51eIK$ +zQ8UOe-IxP4kuZ#prBF*)-r5nB%+pZk$ud;(y0l8yKS?an;2_Oq;;QOS4;m0NdE6MUz3?f<~}=0wVh +zy09oJ7pkI?ur+$IH|i}p05!8wwmuQn@hnubu0>5`4_?D#s0aT1qnX$?)Csu<{r~=d +zn1T+H3#jjMWfquyy&lU^e~vn{^Di{n-vXOcAC8OhCeFuUi_CjH-A^WRc~B23iW)#U +z)P(Axwqx6$*#BCKi8RQCsF`fS6nF%+mRC_7-Nq1nj5@=UEjEz~!JgF1qLykCYMbst +zMdBLj`Uloer~#$?*)^fe^|ReRsI@PJ#W4!i;b7DN#-Kt!)wa(<4g4q68NUVd;dRtf +z#b08QE(PifNlny1dZE6oPH-uxgSn_1)?x|VhGp@8sO$|}Y9dk^r|_1nfjXN1T;_Ey +zWB%o4zk61g_A!DtEG>lB^gi)X}K>o1=DDPt*X$_;opQDd@(P*1f2c>;fuu&rltF +zwDoV+ng?V=oe!a?+$fIvS{{X3!ltPE=b(~!1uC~Tpa%XcrsVm~Zxl4+^Qa_xg<7lh +z>&yd!QAcP&)W{=H1FVF)t~tiTj;IH8L1lL@)EbXN4PYti`n9O*wxX+<@1~%&Jcq^b +zsl6ckdh@L~Hx{J50fypuR0qGJLb?mJ=BH5)xNg0V+AYsf5qyKSG5!WKkwzQX|GJ

ss5s1CUCal +zT_4on5wzZBUbpkNn?LEej7s*>JIp`pb#W=Iqv00nNS(CP>;F^gC)kL3wOz*LsG0v~ +zEwtO~{~wdJ)jps1_9`n=mRa8V0>@^e0fO`A2KrPuKtGk7QLURQ5-{r-j{?n+B +z`^?(6-EU?v6Kita861gO4w&x)KjUHQ|Kb4LcaQ;bf0098|9=VH{dfQOd?)>3zWLBz +z>4?`E%ylD<>gzY}-%k|A(a_?U`3HlCSeJV6A6{n(4!{^pf86{gvkg|D{u#9tktaAO +zu>MIRg8fgKfybR@TT)Ma#!Mj9S+8@F`)Xoe%y>=%VgF61u#<+s^Im5^9>$G0=7QHb +zf`u=7{r@|EAFu`W$(OwTKht}LZK+qj?DhWz^g3ilPN^&A0gEvK14w<<`~;Qhn%Dnd +z$F{?UTz63Nd?)>NuQL^UVRih9ia_-nCMT9)E9%alUgtBk##7iL&g+ce0r_s4?}i(0 +z*?+{sX0+G4?R7SB-7j~%&RpGh*Yx`l`%tfOkNvMTJ4B%|mb`C%pEnyvQ4e{*TGP=Q +zR479qn(qY>kIeP`um;zi!>X9|v3a?4MlI0{9Eq1vN!sv<`MF^_YC9)>%Kq2POFuOY +zCr~$h#=@=jPk;Z+L@x$rol@r}>}x=ek9x-Bscx +zGsbzSx9hjBTvKTH$~Rlu3{I=_1?>$N%Ak5*b}?`>vi7aEz}ZS`C!&K{G<6d +z;w4y#_UKRM!BcS{^+KOnDwb>=exUyMf93#s_{E$X)xVl;=>AG!I2VL*qU(UzfZOny +ztuG1i`Db<;|D-)>JfA<5Pf@!e#^dvUFIa=!sb9hdSi$S_|K0D8sAPSKS8<=u=Rcxn +z$M@-7;W|qx==HfCy|@jv#=9{U1|;zLUruSTHT43hx8zLJdww_Sq&s2TZ=&9IzJ%sM +zNl-7P45*h~4ort7(f{{h5UStmSRd=6BC`fHur28S{=bugLVXmK-8b-C4EV;hXF#=wVK%IfNpS$` +zbvh0exdpa;9qRkQZdAyRVoQv(^)gA!^>vf@%>VvR8ybSRU?k?orKp$ENnDEePy-yB +z)XaQ7YUV3ZOSBagnTx0a#o=vyg*owjGN1o7{~mi&ca!`42hi)}t_eks6lP6AQ6VdW +znqetSfmLn2DJt2zU?Cii{!n68>N`pP+^&x7_15=yNQ=$6FiP{BjVG7Fb +zYSxbFt35ESb3zg1&VukppG+=&Zi|7*KE +zp+Q;s52_xJ&#Y}ADml~IdIoDw)O7_>2Tw_BRa7JzV@l7HGr|0 +z9%oqBp(c6+Nn+QzLqQ?`fWa6TVQwsdYA=OKmg=^>v2AZ}>jN>8&&Qx1bOfj2ZPe0r +zFJcBX9QFA`)H`As`v3QTc2dwx|3GcC>!=yMMa?K-Q8SQCsO!Q|+pnCp5vt=}s0d9) +z-M0)Ci5;kc973HR7f}5_!9dO*=QD)@n6Q|MKyg%uO;I82j|$l+TVG^dgNo2L)X{tl +zHNZ2dwZ4ry5ue-kx2Ts?{Nm>G5cL22A3;G6tcvQWt-YWNYNUfu9Zf+EXcp?apHY!m +zW$Op5$4~=4gX;H*ZTFNg15S*JP^J>>e-#SSpwLuAJ+KMtwb>o@z-6dx-GtG&%NkJ9 +z=l@5h80&27UDP`ue<@=jRAh>w`l*82HFZj{{}rl6G${Gnqt5P0_QFj#fs=0+>ep`N +z%lQ01te!3FbH;LAgL3A;iNh7tn?(BjKNkc<`S`D%sN*?&fxU2ld7uBk69}(h25`)! +zpirL1{CEj9ka!h+{vV-2tesH@%SP1pJB-TWht^N1B}!h&g!Wt1=lM`e5QSQ*Ca5Iu +zYwPZG3PWjFg9=GVWwYP&p|Z9V7Q|{8ghNr=aS`eOT8o|VqOF&SHX&}0VYK%|CHG>~ +zIdT>|;4SQ}{a?9?S({y`?Q#M&!po?oc!jz#ZH$>wPSocmtqo9->5Y1OPC(6kC2B%@ +zP!l+a8u)9}z`tTAz5jDpH4QUS$*~9hClo3e`xp( +zo6tU@wlNOXVevYA!@(=ov2}g^|86Lvp3nbZJ}kf!e4ePjNybaqgL;PsKL0<{T}5{? +z4PzUcpV?A0GTGh{6O-+)zB4ob+}P*;BeH@`%uDGws-rATeg5D5Ov91X>o)WG|GnTc +zmY|-dxyhNDn2UN(JdE>D5o^|h{jWmX7G~dfL4|lYhTv$__xrV|EIy8*cpvrpOxDsI +zD5+5Q<+SF-^3)5U&X3-7#Q1g*>fQljophk9^E)H@*;j>2-NZF&eb;1ezdZL_ne8*keW?%VofTmKt%<15t2 +zKiJRXwKnbXQQ4jpmHnwv1IUA#NDZ6|LwxOVrbg*`{_OciBxAnnR7uDey +zTc2j@KcGUp$hI#>MP?1^L0eHTtDUF`pTIoY|2HV)qruz8taUhQK((y(Q6X=PQP>O> +z`o*Z3oIpL`8tT3{tcZ7QJ*2IPOekvqhoi19i~hg=FYhn#_Cs}0$JQI7X4JyAw@1yW +z3u+1aqeAYYIvi`Ai0Wsmb*62fi(0}3s0b{>5bgh8?FBb5H}zY#o}it1Kp?8a6sR*i +zt+fCuGF4D-w`!=jXj5#3eXs&v#z;)x-q_f>05j`@I11%4a|d%lOY4%+Yp#r6b0uKM +knk(^ARZJY)s(Xiitva+T88m)R1`q$|-LWTwFH`mZ10nP}uK)l5 + +delta 27714 +zcmXZlb(~ej|HttI_bx5nxv;QwcXxxNbSw?hCCwqeG$JC>9V#Fx4HANMxHOW2fP{n~ +z(tKa<`vW2Xr&Da`*xj!X!}Fe`33w?y&nu8F;MK=! +zm;+~HA>4;c@HwW$nd$BNHJF@n62I^%Bc$pw4X2+VS_P&@C=V4Yn=-TgN2I@(} +zeJd0Q4|vIF_!MJdd(;EFp=RQvW-=Ky!ER +z)UiVN3e#ee%mFV6=0QcG9LB*Y)QG#e`UFf!eL8A@i&2qTjT+El)P1Kg5njZMcn|g9 +zSXt~jemn{aU3!ebGME6PFfsOY^^vISreG>ugPP$1)Xbt$54?tY;9b=9FENNIBP@dH +zQ2l2^?(@AuR`AN9I;e%|un}q|y-^)}ftu+s=Xi`w{cF?!=A!Of>Du?BB6Jir;7h2P +zKXtyqPk6rfib7pJh?O +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 +zJoqDK(Ghi-LUkJ6Ijcn5$u|{s!*{ +zGOE8$sEKyRxZ3~yDX7B{s2jdQt=(c&@~lAJu+g~#^@GHI)Y@M~4d5Tt17e@G34DU3 +zIWbG3?jLy04!RMj$j!#kzyB?zpa-r-odfGpYkvqiX}yoA8)BZf0VcqP)YGGqt2eg8 +z!I&F=$4@cV1^fInRHWLVc1cgv=Tk4R|MkEtG=ye=ibU*-_MkMV?U@sGV_DbU3YAnn +zuon)-TFmqwYL^tcY`m9Gc91vneWW04yHZz}G>D6DbQ{z+z)^M$kgANDURlYLi+ +z#@gJF`j*YOBPwKrofA+InuVJA8r1IChT2ZYP)l^heSQb4P=Dq=FLv8Lua1gn15{G` +zohWDt`lB8&8MOq9QER&qmGwKZ4*rTcFzKK6FBqlqE9(ECA~@!b9od&r6Y}obpY7Da +z2~-zhHjKQ--;~B+|J9+Oto{2hTf66|85X>64=#(U*Kjt*aOzQ*2}fgQT#D-F04j1v +zQ8T=Rn%G_ETii-L@q>W3Q2YNd1wEkCLkmq`)K9D9P}^^*tFObX)Q@3veBwT@`N)={ +z2`aSRP}hyX-na}4VbZ^C396#LZ`8v?+W*}s=*A%!j$fh%w9dH`3sXOYI%?mb*1Gs( +z+t(FQxlj{zezd|o*aLME&PDB>O{kYpG)}@x=+CFn{)s*C18VK#J+%j9Y&_I~6#0z(uMy^>L2FbUb|3>=UwnA=nTJs +zdf>mP0eS!04GB;)NQ(MG5{?>q31@j{HB?g7MZI>rpa%9o)b^f=n)!0n?~2x9PwM`G +zm-fSB!T)Rx`#XO`jqncY#>c40yh6?7y)*F2LK_z~zzoZs5*MI~WJ)PXe6)lZ;u +z;F_yH!_dF~#e8e~H9ZdEf{Lgm*n#TkSLX#(DDPneen9Q(EbnZJ8U})`gpdM5NLrH~ssdq#z +z!3Kmc+ENf?hZ_Mh$QvDyzRnMQ$BxAkml&@1X9FAKRW+2#JvIRi~gCH$*+K9jc?@ +zsHB>U3gsT>QPlP4P!YQAe1VEgSR7l52-L*#qOPliMX-@;pNL_4|1YGVU9jA_5w*Yf +zqSo{_s)N5>{R3(Z)2b#e7xs18S?a^Wjfa;`y5=oi<15!KIg%!IK%VgD;6 +zk)H%ZXMQPEN6k?ebU}460hQ$oa5?TlElK-?LH!ZA*B=$?f1Gbn_r**U41IG-h1sds +zMlET7RAfdZV*hIII$fh7g5(;L3MBo6`@DYXZS7km$(3@Cb1>U +znKbCNpIBJCDQ4g+)3SAv%TU6xwp-#5(sHK{N +z8sKu*z7`eHz0Q*ung}W){w)f6+r>*^2TV%T5u6Eiw3a|6=clL#bVfb6FDm5YP?7o) +zby6-w9aO7POZF3LK<81{-9QcaiPe2CMoRl2i8C{Xk`FcGVyI-QiCHlUwYKA&^W5j_ +zQ3E`L8elZ`#5>MLsjPiJs-N>XNc;bd`=DQH3;B3da!p0eWFabq-=PM!*|`IYQs0AG +zsu!rxzCq12Mw+0v4U?eyJBk|M@2COZ!Q?#Od+jbrnARSY33WqWtcm5YEKWr2-$SS+ +zd4dHob~=kxNmNqR!Fsp~i{NY20hKSk_1gdy+4krcr!bI0Ib4ek@DcXGavAJBy&ii} +ze~UVhKF=5o{R_r8tVsQctH;Y^^}49n_gAQcX%%YCFJNE%%hg+iv;UjW&?7t;`ctU` +zsF4lI9Q3N-WYo4fjh|wiEWyz4h?}C4b|LCLzsl9uVod5gP)WBNf51bi6R>xL-8T{= +zsZWmZt%Hp;)Tdz!PR3YSZ7IG+eHmShTH8IS9QYOWpkt_+okY#}1`g-^c#UtUe-UX9 +z>YLq?aSk@5Jys4&;^saDZJS;gg~PBEUPa9yRnB1O*X)_GKlPcYna9ax+b=ol!Rb*0 +zDTdmo^}@pst&q*CIC;HSp!A?YYId%YD8dV{88(r=X+vENW!W-32l7S%~AKLY@qD5M{!; +zSPV6w|GCdMqVE6MdE9x~c@MSJ|DqxlGe1kJ{hxw@W;6+Pq%OpjxDvINwF}q)I-=@* +zuq{q<_51Ggm<27F6QUxM6qOq}P$y<3R1P#nJ*OY~dhk#RTGMH$87@X;_f}L$cc3Eh +z3u?QaLS26bwPd$ZGkcD?&?{u-#t5oSP)j)!v$8wJ;a%#h3$y<>Quw-vZL7*fZDci2 +zGp&yrP&d?f!clky7oyg5NHH6rkEN+kM7`AxqRxv)SO!ZMx11P^+P-73I8G?e{#S_h +z($E_(qjo{f5h*u +zd(`#odMxw>%ewb}6<6rtoax-{{L`7BoDHA|PN2gYsHOQ0l>_%sYy2N-pfSr^=u@I{r4cHJ +zI-;)cgPg3sH;RI`-(qX<_ByXS-#gP+u%o!NvxRera}FwJwxN>oH&nJ?!>srUbxH0tvQsN{W(nn0$i_IYm9 +z1FE3bz9DK?b#RWxaO#Vzvj4U1_R*jdsz9}%Hw3GqI^2tT3m(UOcpi&lu)1|z3hPs^ +zjSX-CDhVH>Li`#vfCM$n49ZLQ#h%9M1{CSEgMKh)aSKP +z=SCCM!PEye;4fYKT-1YqLM_QbR4yGwMKT(d8<%_vn)!cN029sJ$N|wqW&e$!FN~@zpZOaeG#=A{KphDqgbEXiI)WR!I!8kUWpp{ +zCe(v>q9SzxHNe-XnIx}gYhD<2e?`=N%~6qQhf3O>7!&&6&0D&*b)Ci4YY1!n{gLZmiIsn)JG-VSEvCjK^?{GP`l2N= +z_tpN4{jU+Wp`ZtLN7VN}^RH0Xt#$54W&L?n +zZd}E3_@W8>UrANCsm-(=R;At*HK28GTfvZ13E$v&Mf*zc_h0Qb*YHjj4E23uB7_}swQAsxrl?$gZKmLUp +zaO#$vA2IlAchrelua*5QI1;rxPNAN65l5hZi-OiJsUcYpm~7$qSCyL9WcF72hMm`KZ1JB4b-`C8;OALJ*1!+1l!sSia1N5LRbMcpz5fR +zH%H}0M^v)*LM_cORIW_L@i^aoo+ZjAk{|WpO3qps`uqQe6tsO>qSmTA>S!H=df-%4 +z(#^&axZAb=i*=}b?d-a`Sc_^iS6_}=l69zoZg%baQTzXd>e~O0DQIM`Q8SIv-a?rS +zl}tHN$xoI@%AP +zH&Go_>}2ofhNuYi$HF+$)iL?QF@}1|z8tM(vWtsEHm%P4skU +z_P?_74;u8K2UrdNMLnQQ7qc!Z0&P%VR0g^FGz_Qyz4HiWqJAG0;<#O{o*T8qwXrm| +z#F99>s~_}cQHZ7?FLv!_Khw>^g47RSXh2w=dYR9yJ{&9Qb1aUry1R1$RUhHpg6ijQ +zR0K2iuy0I_P`Nb3cMY4Im#`)ue85k!Mo$~@Y}AO)Vmy;QcN +z?t6?Hc+UPd;Qm;f`g&}OZ=Ed%SVVSVZvFfJ-xM^nG+(erWMw0~OTELOpw|>@4K|nI +zYwB-M`~Srd+kPJ~w6;SnS6ZTSss}3B2BJP6;rtSnLkqEk-v65^=)%;)EStko=Ri5s +zIZz9=4cnr&RZrA@9*0WG8Lqwtmr>u2+7&H_+vh`2**^nw;7(V+EqT5de}r97*xAxK +z*15)c*7+9ma9_ko+jjL)2hlFnlEfjY$6+}vh6ho(@fItneU#~=ujJTAK^J_$6v69sPofX%9>YdTVhxDuN9r+D}xiQ77mmtb*%M +z+5dbZ`#&dzJd>=U32veO6|TanlWk3(pthAa#n!R}rlDE`b;P!Jc168}dZFI;|3fX= +z9Mk|dppyMODu?1tB_vwQ3VqLCY$ +zQLl&kg7E|DXg-J<@I};ad4@U}^Z3(jjT)gwIvI7~EW=@V9~)z*uk5;=sN{Nvnn9xJ +zW*XE)A}|&fz-(CD*&3D1V^JsI98~i9=O`$If1_@Ej_T+QYFEVm+Gdmpn^N!U>ib+h +z&5WQollH!-4r6^|+b@$d2kO0F5S3#^Q4tx8ERpX`p`ZaQb|0)njdVLIWGAsA-oxK8 +z=S+K7ym5woYY|9{>L)E~;NhqVgX3#B#xj$ +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 +z^h# +z%!@}+1NjdtW4bD4Thvl5M{U0ys4TwXe2QA4u&Nf?Pf(v{MlC@x)Kb+)C3!bj_s3Bf +zPQxNpNYYia{hk?>wFR&MR={xVi`tGePzTUr?1o2Ny-;-vaZAicdnZ(K&qSRg2eAvD +z#eUlVrEA#QtV3;=y{Hi$LoLN!)Q$0L+KkeoKF{y0jfzYc)Z23eYUcA%6WV~9z*f}2 +z@1X|%0=wz`pP`mDOh6^a1`M50sN_74h4DTrsWQ|K^I~EajDy)wOPCLbVNslk8?g#j +zs}sh5Xv`N7oQFB8eu`G$kXokJUih5oytoQ=am|K-DUJjUlAP|0}ov#`)#+qG&E7W!wp6X;LjgP~3B +zXSP_)EZbXSJhJ_6bDR0I7Ga@3BFom&UP^ngH}@rL6&Cv4&sZEyy+-S>(7zWP!;;kF +zwXvM3g4wBe!h`rFDq;=Wvj0_R-q!Yg6e`61F%k!(zTYoKW$_-&jh8Th!6-XW;-KzJ +z>&%3esAol;A6;B~f7J5^qn6H(@~xwZH0Xg-Q62w;%7tz2!u_uO7;5cLVJ?hDCG9)Z +z0AjbZ`xBrZoEY^^NRMN%2x^;dLtVeur=V?i5cS}5?t@FNe$CbYK;3v3HS)*q^Z#7? +zTU53O+FSO=MGYV$Y9hH%yQB!}z^jFNp5KguM$*dJ&e_>r(B0L0I|raT9OCL@U40@d +zv@=}$TvTKhp&qmfb@s1CO?WTn)c!wBArB3&QEMI9!3I>-Sql~NdRP$~qC!6tHIu!l +z2b@GrBpR#W1y@hk(IOL$+W(QL>kDJ(@BfR33cUSL9aMMqI;a^ncI_=uGm1hjL3dQh +z2cS9}>KuvcXN+@#YoCf*!s)08%)vg`qm^#!8=w!^Mi8INHFOxW41=bVli^g%R*N|>~ZUGSN6*4R}SCak&;W810=F_Tr9 +Sa5!y%{|jzAoHi_7-TwnhX*@0f + +diff --git a/po/de.po b/po/de.po +index 5befeb2..d792bf1 100644 +--- a/po/de.po ++++ b/po/de.po +@@ -17,6 +17,7 @@ msgstr "" + "PO-Revision-Date: 2006-11-25 13:07+0100\n" + "Last-Translator: Felix Kühne \n" + "Language-Team: German\n" ++"Language: \n" + "MIME-Version: 1.0\n" + "Content-Type: text/plain; charset=UTF-8\n" + "Content-Transfer-Encoding: 8bit\n" +@@ -1623,8 +1624,8 @@ msgid "" + msgstr "" + "Sie können die Ausrichtung des Videos in dessen Fenster festlegen. " + "Standardmäßig (0) wird es zentriert. (0=zentriert, 1=links, 2=rechts, " +-"4=oben, 8=unten; Sie können auch Kombinationen dieser Werte benutzen, wie 6=4" +-"+2 oben-rechts bedeutet)." ++"4=oben, 8=unten; Sie können auch Kombinationen dieser Werte benutzen, wie " ++"6=4+2 oben-rechts bedeutet)." + + #: src/libvlc.h:268 modules/codec/dvbsub.c:64 modules/codec/subsdec.c:129 + #: modules/video_filter/logo.c:95 modules/video_filter/marq.c:107 +@@ -5124,8 +5125,8 @@ msgid "" + msgstr "" + "Wähle den Videoeingang, wie z.B. Composite, S-Video oder Tuner. Da diese " + "Einstellungen abhängig von der Hardware sind, solltest Du diese Nummern in " +-"\"Geräte Einstellungen\" nachschlagen, und die Zahlen dann hier eintragen. -" +-"1 bedeutet, dass der Videoeingang nicht initialisiert oder geändert wird." ++"\"Geräte Einstellungen\" nachschlagen, und die Zahlen dann hier eintragen. " ++"-1 bedeutet, dass der Videoeingang nicht initialisiert oder geändert wird." + + #: modules/access/dshow/dshow.cpp:132 + msgid "Audio input pin" +@@ -6777,8 +6778,8 @@ msgstr "Bänderverstärkung" + #, fuzzy + msgid "" + "Don't use presets, but manually specified bands. You need to provide 10 " +-"values between -20dB and 20dB, separated by spaces, e.g. \"0 2 4 2 0 -2 -4 -" +-"2 0\"" ++"values between -20dB and 20dB, separated by spaces, e.g. \"0 2 4 2 0 -2 -4 " ++"-2 0\"" + msgstr "" + "Benutzt keine Vorlagen, sondern die per Hand eingestellten Werte. Man muss " + "10 Werte zwischen -20dB und 20dB angeben, getrennt durch Leerzeichen, z.B. " +@@ -7509,8 +7510,8 @@ msgid "" + "16 no padding\n" + "32 ac vlc\n" + "64 Qpel chroma.\n" +-"This must be the sum of the values. For example, to fix \"ac vlc\" and \"ump4" +-"\", enter 40." ++"This must be the sum of the values. For example, to fix \"ac vlc\" and " ++"\"ump4\", enter 40." + msgstr "" + "Versuchen, einige Fehler zu beheben\n" + "1 autodetect\n" +@@ -17981,8 +17982,8 @@ msgstr "Chroma" + msgid "" + "Output chroma for the snapshot image (a 4 character string, like \"RV32\")." + msgstr "" +-"Ausgabe-Chroma für das Schnappschussbild (ein 4-Zeichen-String, wie \"RV32" +-"\")." ++"Ausgabe-Chroma für das Schnappschussbild (ein 4-Zeichen-String, wie " ++"\"RV32\")." + + #: modules/video_output/snapshot.c:70 + msgid "Cache size (number of images)" +diff --git a/po/en_GB.gmo b/po/en_GB.gmo +index 020443b40e20b2ac6eaa94c26d049686260e41dc..cfc762990c0408ee493f4f93418a7c1010ae0da9 100644 +GIT binary patch +delta 2477 +zcmXZeeN5F=9LMnkC=Uh#LExo;t063(DkP1}SSG6#>f*uiR75Et2^wNWAr~n{q2|1ZX1)^LsmJ+MZWmRMbR-QFM0`GdXA_x#T9obUObbARJ4e{ioq +zxckKjpEt;u(0pSi8)GsGjM+!|Sjf)$hldID}~!z;sM2 +zGUi&m$GHL{iMJLRpNXUK3LUX{02P0P(RkAJpLhO?;q;GRY)!ikqEYXs +zp(-^MQ!ooPPXX@1GE_pokTN@AJZ973MNM3aiMRxnSTky&EvTdN<2dX>C3evHA?p2M +zR7FNm8yr(^=keeK;_Gn?>zli1Xu<`kj4Mz(tU)Ev=zIn>ZZ~Qt@1RQ9hdFo*N6+*= +zW7>$lsD)m|)p!^iG4p=gzXwBE-@Hd7l?Q{U%zr>FbOE(MNQGT60Trh>Z$wpQKI(Fn +zqK>Q{AHt(}6J|ZYAJ(EO_A+V%U6|mbv7d%Y`!P}y^BE@KanvRI8MW|V&PZ0#WlY7( +zI1QD^TTFe{3fcDQNz +zBgw^3EJnRpftsk+*@%;fTTm13M2$a$s$f5A{1@)|Y1BM_;&=>NIeO`RCWb~BB~HK) +z9;7^CcRC4`*bLN{Y95Zo0-TN|xCq;EA%2NRFulPTu7|mVe+2VIU1ckqPuVi)FU3@B +z8Ku!25ZpM_yYy#alK>Pt}T>InpNVcMmDu7BfyvbhDYfzP#iK@UYu75sG +zBrZc;&NUdv`er+gSlovm>__eR6zV8`!DtL%6h=Q`pC_Xhn1O!08H1_hG1R3z{-nJN +zKVcSe5WnpmI17^*H;le?8W-0X!?BnovRRBB$Z41}s2B5Fjd>p1aVMs(<#UbwIF3~c}1FGrQW +z4s}~wQD?u&#oKWLaTlu8?_(l@5Jdmw*ECWK>Y +zPhz>KmZ8?5#=^Cg*C5qu*X`JmaJBJOhciAJzW=6Y!K9Kj-`lqZyyH+!}{|`hJYZ9ONvf5T{}% +zPQ#Z_>%N7zaNr@-{HPTkKQ#O+?1^WgHlB-`kn3E8int78uoAUFt$W^tI`LLFzTbHe +z^BF&a3gi-|Vtj=$(=pqlkwoKq)Jc}20;nmofrL<{`VX~E#GUs2 +z04h_L;T+6Ht+NDsunZNDH%>zf#;i1^0R5vdzYN27;^Qu`s267vZr<1y4F`yLg@@6IrG(Pd1+ +zaZE=Al3Hy{2`)tLnem)womUZ6kns-ZIrPdI$Xjhw-GR;YUqhub?OvOaD^Ml5&UrJc +zG-argtwjaifI8VmRO&b5Ox%TI*pJ%p#Wlvu;zd|El$9oiR7!7^**?@RWgk +ztO#R49HIZp{Wh@12kgSzQ33CE{a)7}L>=IBoP!rI4x`su{W$TR@!UWzPG&+8Mq@E5 +zfHGuHQ-vzQaomVsU?!H-+e_7in%{!j_-PDa59(5Xgj4W1sx)U%rSbltq1zk#piNyG +zsw9ONg}0+#45AjQa@OHo`i-asUqH?8LuGIPHUCrhd<3=5FBp#(F_QgFXtkf% +zg-`G;VEhf#`w3h53u6oRWA>BA{EFY=AP#R+{b{td*+@H4ACkSOyKn%NnO@Y%hurvQ +z*hhZ^m6_Id7RP5$>kXp*Zii7BI)!@wOE>xbGoVLlJSpRzS7M5TTyD)rT<+uDSx +z{Z`lCfiviLqf-4Irr=2o;!haB!Vdd>5I57WLAEqM;%!(xZ9AV$8hxmU)B6LyeMS8z +ImaQxJA7lGcIRF3v + +diff --git a/po/en_GB.po b/po/en_GB.po +index c2b2533..1fe7ccf 100644 +--- a/po/en_GB.po ++++ b/po/en_GB.po +@@ -24,6 +24,7 @@ msgstr "" + "PO-Revision-Date: 2002-04-22 09:56+0200\n" + "Last-Translator: Sam Hocevar \n" + "Language-Team: \n" ++"Language: \n" + "MIME-Version: 1.0\n" + "Content-Type: text/plain; charset=utf-8\n" + "Content-Transfer-Encoding: 8bit\n" +@@ -6880,8 +6881,8 @@ msgstr "" + #, fuzzy + msgid "" + "Don't use presets, but manually specified bands. You need to provide 10 " +-"values between -20dB and 20dB, separated by spaces, e.g. \"0 2 4 2 0 -2 -4 -" +-"2 0\"" ++"values between -20dB and 20dB, separated by spaces, e.g. \"0 2 4 2 0 -2 -4 " ++"-2 0\"" + msgstr "" + "Don’t use presets, but manually specified bands. You need to provide 10 " + "values between -20dB and 20dB, separated by spaces, e.g. “0 2 4 2 0 -2 -4 -2 " +@@ -7632,8 +7633,8 @@ msgid "" + "16 no padding\n" + "32 ac vlc\n" + "64 Qpel chroma.\n" +-"This must be the sum of the values. For example, to fix \"ac vlc\" and \"ump4" +-"\", enter 40." ++"This must be the sum of the values. For example, to fix \"ac vlc\" and " ++"\"ump4\", enter 40." + msgstr "" + + #: modules/codec/ffmpeg/ffmpeg.h:115 modules/codec/ffmpeg/ffmpeg.h:248 +diff --git a/po/es.gmo b/po/es.gmo +index 5f3fd381ee81af5b76816a38c4eec82c0b5fb558..28f7d7eb14511b6de95e1b826af482d9a99f1e45 100644 +GIT binary patch +delta 27596 +zcmXZldA!v_AHeZb_ugpJu2tRkec$&*3+;s@(I(PLTBPNqqL4&Mlq3-%3N1vNNJ+Mo +zt*1~bC2MJ+=kqx;e>|`E%$(nEely?s&iu~pmgmCULNgyN^!iUjlYO%!5;gLqB?=@G +ziHGv0B?jR$SQXRqr6nq2Ocm?%(=slcu{QMhSjK_ +z!cthGP+FoAHp9|5xKJ__X3~&{hLt0D292_ +z>#Jfq)FOkWvKT>`%R()T7eGy734X|#M;=f4NacivA!Q&^B>S9Ig56XC>kP=fnJ{vopA}Y +z<8tVIHDY@^yo`DmG@^acCAd3fGLe`>!H`cylkQP$j5}gIYq7M%Kn~z`>Tls)_zOOP{Yr%ppFw9{ATurTCYHzi_)YXAI^aZU_P=YAuXM=%>gZZ_!%Vy$ +zUGuxq0Zxw2M7PzW==IN|9lnb0^Y_rDIe;c@hcao28aNES{wXxl%gV6-t5VoNgB=`3 +zXM8$dkXAO-i(w}174axug|)GEx$wY2ScUp@Y=*1QkpF_4@H9G*wdKQ-e1k?lYqCN} +zy35cLtsR!fL0AMIK)2O0bla_rZi((gLwhpT6BR@Kao*c#7b3v5~=Eztz;LEGPop20Ng +zjcbMjs5u(y{^$}9$38e2d-43lehMaG&01k!c0zNY4;tFr&>7u>rEx9Zi~G?K_Ng7R +z{T4L2#-Rh6g6{Lp*c11lyP`~;`0~PR?*EqoVhr9WFu#_#E27CUoC_hR!Ub +zZn!QVcA#Dq-30^CWV{!z#`n-Ay|i9f^4ys8z$i$;2NjE!LAO^GbcQX^?Q&JLADRo} +zuouolBXk@+s4CPC5p0bnZ&!48T#tTln1)`rxIX*8B87D{T!;U|YFNKP_<}GH9pESE +z+v`ho#wXAL{(}xISHoc0XcO#Adk-9kOVFh#)F|XyIW!mgHe&x<7(s&%m=Zr&fabso +z^u{;Qk#9qn>U;FQKhd*2y>X})L8so&h$}qTP{PB>IfRKvMoYVHbrON1)cFN===YH=qqRh_Mivbapd}BBCTb3 +zP%-p|7HCKZpcmeWX8nWcQY=P8xDwr-o6+mOh@L=qOGc}Z<)zUas)Y7a1Kq~0u(|tx +zAO(|ZDf-}7VtpeTfgR{to`~&PTZiPk3_SE*OsH#Qo^I;|cWsCFlcIpgHmyI*}9T +zc0G&spSykdd7yH8_P-;%hKBMu1nqbZI>KjS`}1hWyU+oD5kKFLe)&9rM&JY*fgBw| +z{R*_+6y3gE(SC+t8s5<%85+jWU~)`CXEF!Pi6_t#@HsRGUPY618#>S<=mgH7_vgAQ +zM5H7-f%4I+Xl~U;2izL%uUnFWBN~i`as;|oV`BYb^emr`KJZQSf!ooUeS>y<5*_fr +zv7Y_vFp;8Y|7FnKQw9IT#&{Bw)jOsoZlzGXQyB3y%u0P0x?dlP?JwXr)L%gdFtc-* +z@nUo)tI+-bK02^((KY`S9bncj!Te}@8RQ+3Of-leT!XIdAT())#P+f1%<-| +z3L44{n28_8_M_;M{f$2OA{v=IUBmUo(Fj+@D(?R_6wKBU=)v$Znj9aaC)}s#gO8#e +z{f9mvN4KzK1+gFX;+TmO(U31jb6`1oBEB5mgD&-7SkV1{ouPr +zqDNX{09=K(zl_)7xmfSkGqgX0eQ7@x>z%I&?Te!)qRp-i{m#Z@Pj2{1Y#G~cM`t)1y?;V%pNkEtKZ%v_vtI1~`zf5G +z!BE|MeOR-Z(I>DM?JLlu^*^-ZUcJMBZo&%G2ct_e8_k^sXp%mMCh>Z7AYb4$cpRNT +ziyPSg^(b_>A-p~(p%=b|Cf&#Az`jTK_m8puH?E|99=&cwpO9SZ(evShSU-kOQa^)R +z@X;I75|i+nzG;bx_-T@Y4V`Zaq4@|MS(ckahdIyz6hS*KiJ90ME8;+OrVpY^^bC4l +ztU!0ihiHF$(a0S@BXk&@Q1TB7+y8Xd?!bQhgLCz7Xsm_Q-q9AN)ba3mcuR~EjLp|8o?2ZSH7W}!2C8%N;QXsv)zHuTp^>>0^Sb|&6splM7ai%l=sw?z9w3MCR{TBM +z`GEbsoGNTEJHi)QgYbfkx3 +z{ZDl5|3wFwd0RM;8ewDVUC{y0!htv+Jz~$GOPO;>sOLxfuYewCwJ_<-+f#6accE)G +z1zoEp*btYaOY$8$^7H6`(ryobE?5D}uyh}y_a7e`c2$mHArdXof%HL>aR3^zp~KRW +zsT&@lp#}}Fp#wUARWaxAkOK`dl@n<8&ccfLIJ!jdq9NanCgD-^i^f?rSqqH_7DFdi +z3cbJlh-5g4y3jC^hH+?e97ad{C+@^^=u2b!$S{xtXb1nIyQKW6Fyl7Zg!*_ajca22 +zmspc}_B%p9jnPQ-Oj2+}H=;{00A0)BSPSn)zq!1GuIV;3^!w25cn+Ou_B+E%t2{cO +z%IJ5+_Lzx7(Fi_-zT93$Bbi)9!3VyBX7h)!UTAc9kC#R}s)s(fHyZMZ=l~ubzL%1l!Dn_3U9^QXb2ag1N#Df@c*zfW*rkcs)psM +z*GIGZMl`DjV`_lWhtS+u6kUt<`xzE-|9?-xG|MO7DF)6H7vB_zP +ze`zm`c2H_c2z3oK#0{|pwnmd@D!R50V|#o79oR`U+w-uyj7&>(0K?FwxC=9JPLlm^ +z_P$0#J=}$LFflbPF$LYdS?Tau*Un(szKdg*;(goV(gsf})@G3dc`54seyV*6ug1Qtf0Mf-ah +zU4p~tj0@c#23Q+CPp-!9m>fjG(7cI#@N=|->N7(KhoDI{9h>7qG%3HroOm2t;pu3@ +zS)qP6dK7O!BfJx<;c;}Lg&#=mwq&9lg-2;$p526uRgtkA6&hTY4LL1Nr9zd7iFdFjHXfC8Z5-f#Dv%D#V$=DUI#gF3!rRRo$ +zG{;QZJD?p5K_4&!-Ifob1AZFK`W0wSZH^v@UOfdi@1-U|ko4Be@^?`F&{Czla`0d(rbC?TK*T +zWl0J>Y3PqG#T#fuK8PMdLv{h(|CcWeGbk5r9_@wZ(kMKLr*I{H`ea&SK2CZnoTT{{ +zg?B(v>`Z%dFokXu)?j7Kx;Pv>)$kAMqwrrG_;gxgEB0TKmROBtp9#sg7gNcGo(G4~ +zwf`L*c%G#pSu3MURuetaTOhk2nP^YJwYdpRq7m_e@zEqY^O@1du?qF)V*L{|yT8La +zcnp1TiDyGjH9)s-XSAOI(NU>(Vm6tAXZmC40NzBG;5~GtU!zNO2t6O_EemTq9ZjYe +z(AV&$=wWoGIiCv_L(hxKXs-1{2Rsz7bj`+7NW*u~dXk?DY +zdfE#iX$zyDS3$Q`3#^AXq6gI6*#0EuqrMhv;f@#B|K4zx29xIU72$?@c$Ru|Y>EwE +z3Fz^AIvX9pa?FqG(Fg592mC#{9sfZOu;MR;9BKGcGF;Gu217d>?Qk@D +zB5ndrpo;C0vy?eBRsNjIZQ{AV&2E@CGda;}Vj +z)dG7{{|Eiz(c_gc^08<~kH-2d=)iVh1^fmbNS0UA5@WD5K8Oo&to2oCiJABWK8MLt +zuZ6YRhNEcs2dm+b*TWh;j+3Z=fF1G5)oF>Va1J)Xeb@~1uSrX+;$_thS7+sqYTgKu +ze0^<*)DCo@d(fpi6za*u-xS)?aLKyxTI?JhgqgJ8gC@};G-S(T{qaXz|h +zopaWch +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 +z&C$=%1Lr4n$4}9{q+(c`)#wP< +zqBD389l*X=KZ+heSt^B@A4J#sXRL`Qu@qiWIh=sa(U;In^tv@@4y>=t{;y5pT^jsG +zatd$3+*Lxdjm8nwAH=5k5BA1-Rnt>{Z}?%f!-CbqE-Ho&yaKv}HPFa(M|0p-G{WQ1 +z$j+^n3>`d4gCTnc9qBIIfv3@sZ>k +zU@iPT*2~lk?LCvRFfF?M{}Th?XVl#pu6c>bm<171DS|k +z_ip_Bb95Ug4^l8W&R}^gQ76>fL~o1Ej;@Y=6+Iu#tQ+oYhc4w%H2G$sS-%>Mz+Uu# +z%2qG69g~UD6uhAY*2BK&8a^6*5}nbrXm-Db?)$CLFVU0nNUZ;fo{$;!L%#*lwXcIl +zt_|8x?^HYcZ&oh92DwcV|3=j(OoeHO}-b<*X(LEbnl=u{t8XTAJGoa$Ir7i3iT_{$dyC; +ztAoC4Zb9$61Cw?%i-I9~9DQp&kD0gw-N(mp24-&@l4cIxO8t3sfVrB4jtgT&>SfVg +z)CpaRao7Ow!#21P9q`2_?0?rHThnl3QFQyXMhDgtP0D^~Hs6O8a0z_nx*RC4cekD548_|J}LkBbyjllX?{{S7}8T5O^)$M#avHxD6(4L0h&~4VR +zeRyzdw1ci_dtY=$w_;@+ie~wIG=iJ(F+7ZJv%5Qlb7BUzqrMc~O-IlPXS<34yZ>`i +zFf=95HL8ZrygmB8;2La;qwqR>6J3HFSBHTWjh034tBww+37Xvfu^QfnuK9d)*S(5K +zlW#KxM^v?Acwj9wl%3HFZ$dk|13jw8V{3dIozXsY3C`e^n7>oFz85;6o6rFaMZZfv +z5!=^xV*k5Ox6xq8K8YWEgJ$v1XfFJV&Nxr!u=XXf8TI<;eWTHir(gy?jb8s88qqaq +z1V2V|CSRBEuBqH58D@Ah4X*K>=r){)Mr3+)7W$xv(It5jjmTSQq&7x(M-QM&dI}xD +zMQnjZyN3PW8*5M>o21}~mt(dp`~f2ReSLMe^we)U52FKV**)xzw%Ct)7c?1PMF+MT +z4fVUxo#;8S4~@hLbl~S>y>O3kz9cJ9@I;!2j`VeGi968~FGtVtplaw+)k2TdrdShi +zMkg>QIv~Jg^j+^|jCo +z+o0R4KN_Kl=)ewRGjirM`rx{~(^J1>Zi0S(9~yxL=u*6fMrXz_XuaUg;VV-obURK)BefbU;y$c}7twuOt6zvnKP*dq3UuJjz;QMtc;Ju`iAHa(VQd0b@ie*MemQk7Tu4jfB%4$MyIbI^YLKhh6gq)@2FK;t1NSk757cO<@s*Mp$rc +z_@j|7SeyDjG!ogzr6&g9>*!IMe|-4nQw&{-cGw;Vqq*}6x(iO>l~~~J^u!^&9_L}> +z2_Xk|PhkK168V}2Ppa(q1k0dry{4Fft4Y>!@#aV54Z`~85iJm{1M$vwm7S?&!py%#T~ +z{#bMorcqyx9q>i;E%+O{-7cWp__AqXVujH58hAOjLI#jbTuJ1VaC9l&L|;yyqM<*94lLJ<5RoEiza{Y!r&yW7R2pjIPq+qe +z#3$|xA^j5_alQLP(se>-G6+q^v1rI2M04Wl`1vYyfSb|lzC;hEV`y^!W8Dz{OTiiC +zni;aQAUcE6=!06t_MZ3|^?tEldsdiH3p8?V(FbiQ5AowQoIXfP$(dE%M(B#^R?wXIIKch>M_2Ceil4wrU +zM6Yk~F#EqDg;q3p;oa!=nvafr4I0uab3)cPMRVX5bXSZ<*LGTLpMyqXajZX&?t(Ya +zB;SB8#c6aPIUix082bE=grq2ju4Q?2A2-6LI4FMpOsv0*o^VIdZJT3m$c?hmrf5Ic +zphxzt=m4HZm-HJnq9>9Rrez^SkA`nF_dOPVNAn$Ka>4w0Va9KvYq||hqGt2Mz&l|j +z>erwL*d+A9OVA0dMkDndR>TwdFcy3~e4boJ!5QpEJ2--wc|ipnoPq<`h_2;cbd3(7H=agAm49J) +zP$e|UTB7^APi!9_orC7k^U-bSJK_-9?LBB;K +zQDjMYU_*4Rn`7#%j}FIDv``qxusYVJ{SdaKUf_lF)L*H(2K`F567Ryp +zI3I6V5x!siik__9Ukn3Ui5;o`k)%+cLi3lx_xii=R_ZIzFCv${oSs;YO|c0cM3b}l +z%J99RI<}=g360zqG_(iNUGOg!X28W?;pYXc`)cTS!K(1JKDmv;Ra}_$we-|~siYJ7 +zP315;<2tXWr~b$s@iOgG*0A5HSAK&D;I(gtzmoCbTj38DE?pb`;BqXs +z;`(gsLIgVC1nSH1I^X{#)`$21XmlnS8`2YJup|C}ZQdp~ctH7g!cq*}$gZG14bAF@ +z-c3(zz>jb=PJb^w^>4>d<15t1Zc0z=#WI`I6Hnnk=#tOdlAf65`@j9x@LTCU=$e$- +z7QTj$z=x=B!W*&E`{54`SKuk?>DxmN{Dp0(*ZUwuay(v5eKYzJ%kg3Od>Y#ScASiP +zccdr&$MX|&D9pr>AMrqDb{ZQ|pSCOfw)!3HPkY6WL$b}<%{zn7527<3^hwB>uW&l` +z=6li;@8K4l#C=mgO;7y|%YQ#(yHcOniKZ*@Q>w9r1X4w~ha2byF_Y~H|_plZIx{v+8h(gW%=_z;N +zT@_FM5=IP(Ym9$s2QqIY6CpWlNmFo`bJ +zdsy22{}Y8lG-UfDB+pRv`@jOc9A86UG9O?e+=nL9NwlMUe}>m_L(DvTRn^^a7C;7IEG(RVnF{r!7^{cmy<`!~$E1$see +zbS;OY0~?JEaU%Nl`3+3N*8hbs9_`Sa8G>f}7;KLd(Ec`~*B?Ze_$PD;PA4gtwb?F) +zj`E?Qs)w#+$LJ_@?dQkO7o#1lK_9RceZUXVBk}X&=zz|l6TOHoL0P8fcgAED3XZ%U +zdL*{OdU!jUy-TnP?uwtEM$hn4S;BqY&;i_tnK%*4;9{(Wo6!D$!~A#w?LSY}48Ncx +z6KyGY!9X+;Bhi^nKu7)ny6xt~_Vv*nXpZd1qIfY{G%Y-+E|#XfJ$At%=((^Ki{Va8 +z{r>MT1xAvnnVyjfc^9-k8lCxEtb^~M9sG)hGHXUgYN;wt}Jt`Yqnvpn&W6^EeD|>kGSp0+flehzC=LiG8 +zE@wvSZ^zt&M`-^7{R;PXu8c&>EJQYUM(RuIs>{OlM=|x^|H_>wBb8iD(2%x4zkuA1 +zhJG1dhaY1DER#1Q{Dg!i(=hbB7>(|hspwKZfF|X9bcq*6mq%aE%fEj#q#J2)TYQQm +z@CO`%-ScIn&W8=?8Xv+fcpmHGyZJLx+wynpO}%n~jMTw04aZTRhxVVNU`FbkD2a`! +z_eI|U3kvezKW<6kM;aVy*+OAWE225j91Z=A=nU?O-j81Y7@E}!(4>6{UF!|#l75Ds +zpv^DONS%n+qH8|_jqC$S3Wo5Fc){CPpZXVQM6wqS7DtcF>gWSopds&pKDZxxZj6fF +zhdy{wbPal*e1vY_U(usGS+Yn*>L_fB&UgU&pd>ngx$*O5@$*gS48D);XVL2}FB+Dr +z5?b$$UN;aO*c7zi`LX?ZH3x#%k@C7=6qQx>&Up5<}XY^*Y!|%~|#i?lF;vu9h +z(UA8>XLJYp;05UYYtY=;gI;$m*0YrGe)eDSRDlx^Js7&6C)yBn#Iw+lKZ$nuO00hr +z{SMpEehOW>I#+~UGz7ix5%j!R7V96NN%^(9|4&lzY|m0Mj4(U8eM+NARt;U_TIh+^ +z3Vpi`MAvu}X5#(mnZ5#jd96nKS%>z&HM$ecozF4pNDjt^zoJ=7g^=Y%LskX7p-r?q +zx>Pr#p`L_BW+A#%Z(&3H5ZyHwqd7A(Qg6k=(VH{b|LwWp`PgtGTDNpK`|pV+(KVcb +z4tPmyUxP+s9lG}KqX*b=bXVmolac7b$yWq>;n1=fsqYP2%4MX!N7O2x427lTGZHUy +zL*5D*sUO8Q;A-lvD`upA!T2ZIVTVc~lwHwn)C+w}-j5CN4fNzZjz*+x{S3X~6dK}ORYFo$LQlx6&^2C*hI}LXmFpAq2b!PJBra1m +zEI}JIGF`C)jz!OdK)`=0;z1 +zphMA)?~ksG?VqA=#}nu-%TpsYfn=fz1xH*9O_pKkNXMfiU4nLa1bslxn&I_Y5q;V8 +zMR&bJ=U+6k^1ZNzv3Y3FVqj_XpoWm32G#+qrFPQ;16hjPc;f=ZJd$%^Ms+;kM`3z +zndc{ZH3>8N67MBTvp3C1{r%jBnq{PZ0XegIMq(=0y@egIL5qyk&vy6X3)D~J{rGgt +z@OCTLD(r@v(cGGWhI}y^nRS?s?_ts(AhuC3nLbC~O8e0pv$hU57DL_ThJS}qaEx-XYzUc +z{Oj2MJsQEoXheTOlldGvz-(8Bw_slMolpVozj2a+4`?236YUT$=p5_aqt~I^tq&TB +zA?Uz{p#!@M?eCu0ZvQ@LCi*ga2t8*OqbFwa4GLu`e2t~?U$lc#ZG+{|2UW&qSPiS- +z?dXi>qYrory>AJ+&7O<(AJFT5Mvv~3==E9Jr3TFZ{}Tl-$c1*0A6>h`(M)t^m1DgY +zI^)LZ^{vqk+sAsxXt&sYExHuF(FojvPGD^6bN1g-3KeNso@(G*F8aVv(d5~OKIm`E +z#B;H|c>D0+#^@2;9NjhDZ~)$hP4Odah#4KiJEA$(r9MVI<6orUh2NnU7P%^1*nRp- +sduP71H_N)0_GZ1gNsi6~M&34dz-@z@WX{Z%H;wd*5Goy_kQCWcdQyr|iina(n?#!* +z6(Q0}wiHqPKA$u5$Mbs6%(Cxz5e4XY$NK|IR4%#-Smp&e;-)8hJ7j1rmwG +z_`Dg30XQ40;u)-n}D7UFeyIsSpg@Z$U#i6U4Ib72#_7~A1R*g4u8D^nkU!*Dtd +z#k2V{Qi)6ow-*RE4#RTPM`L|l5bHazF!eL&gYy*3NR-6N=s??}0~>)3ct&hrht;Sb +z!qS+pP)4E>*1|H_yHF|=9;6`;4gbR&xB{Ko8gypcF(-Z#-5>o0FQNSydfhp^6f+A4 +z^P`b19qV;4gL;c-n-qmC8m>l1G#K;ZG%SG&&gXSCmu=ztcW1AhT|PAaiHHmpOFXLGD?N7wutbV-h)9sGqx;4FH5j$&cP`OuDw +zq4!-8+Z*9!)LWqu?TjwL@U*E!;vNcyd=#2=k77gI5bLM0KlK{LGZGzeCJw{Bcn4lv +zA|vq?zKJfuBbSFrEkr~7A(~seup0i14yZs$l9uNu%2F`o&C!uxhXru}I>Rw&#}md*5j%~B{yf@Gg;L@ET4)68Vah^F3U=5r+B4b@9oSHGTaJnK +z=dd32WjF$Vz9rzn_o +z85P2b)(Fc}?}bJ2A#_{KL$}?+=v&ckXlM_{`d_hrNyX4lDXh-tZP1*$7mes-G@_}; +zDVQvCqtBsh{StcNr`Q-jM~~QxD`h15VnuXDQ?MPridpz4dVRslJUCk-aRaWR{!o>$ +zdumn9NIXG(9FBMYUs^3A(SU~O*cU&-)>xr>2;~s;0ZXtY9>r!@vqnau5#EKiFN+?* +z4C*zm3S2Xc4->z +zhUUUh?159z2<=A?suJ}=1nZ;8+Zx>+*P*ZP(dczE>#_eUQh1ey?)ZOL4Xe}-Ul4kt +z1N;Dedwq(|_y9Vnd=>lOLVp^3z=-(4 +zG&Bbmpf@f>N4^eSs;|-eenrpre_}mX!!VHI=ykQw-P9hP@i257PR5$JAVuLy3frUq +zVH@hz8-;y)FV?2MFxGdV5z5v$d|m^s-;7t`)Y!f`dK_JvQcc2jy|F6w$+4b#lY&d| +zLu|OHX}GW+y1)CQGkp}@mh;f0+Ji={XtR)%HPNMLh0gd!^!@)(^aV5mAEF1_e&qU8 +z;tT~Jl&5*Pp$;0-9_WR)qgkIqmtrOw!iDJeT!UV>C3*neEoadzFWe&JP)W3(E6{CR +z51YFGdr~l|=AaLLA=X!-1KWVE<$>6K8cn{8mf;*Ig1&6#V^7T9DkD(=d*cwCfZgy2 +zmco{;L%)5oh5LUJ1-HpZ=r;TuO}<^xAJG{eM+cOvO_*7Aba&K6zYRA+Bho866phqF +z=>4R&QF6h@bW#OZ6CHSKw4Xkhfw#3!g@(a2m>l<@Gnt6y#N+4*_%xaWFQQq!4jt$obOJ}v +z`?FmgB2oaIK=Ei6np+jn0oOJf~(QB?S&>ypV&SGo%#Lf +zgQmsLUqC~-0<-Yl*uEECvft5uPoa@XULUT{i$=Hfn= +zAG{as=uh+k7tkfk)hQ!!E9S*4yc=E8nP?8oM^D7(qaUL8{e}hI|HmoZfSEUBB(BFE +z*a=_8_V^d}!={}>`}5e1`mtDV(Oim$(6fD*mi}nGWEJ>`z`1U2ch@h8QUMh2GpOxO89XP +z_Wz?4j?rMK?&}%W?7`^c*n{>3=+XKo+Hr?oVL)B50`=bLl1xBzXBwKMPoqiv8aj|I +z*cJDq1Fdr-`@b%QCO3xH=RN3!%h05IA061&=>GmT)_=$4)Q_XrE$AJR>oxRzSRd>A +za6a`T_&z>*Q%2%Jy!z&h!~^(Iih>O-`-ITEhmP!TG`laL1IT?#=(qr8QLm2`u_rpy +z6uLyS(eq*fdjGpUDIlID16HolXgugP2bg&(oTp)-3O +zhvV94`TpT+_AK=CooGLM(U;dTG&jy-Z7ee&eBKR>%c(fwWFw(yeafF|8-xD>~u1FCX+7)U*Iz;|GI_y64#>fu~8 +zi?^XO*%j-*qDgfU9blnB;Xta64XL+A2Rsh@<5cwMJ%X-z;*L6}2bcN|v4$IvBOg+6FAnuL4NFB(VDWW9KJ +zFb_Jhg6RFlho{0x)QW~XX&8zo$8I!qzv5OrhVG7c?hFIjfp%~b-6h5E3Nvniji?X9 +zGPoqRe~MR9KaciP1M45;x>Vw_5h2?PqT8$j8p7%5z_y?d{y(gYr_qke +zj0^`&6*Q}FK(o3xrUw`ukLJdV=yJ5*kFlux|7!{+-(gIz<*1CrP1GAiXQ3lLhAu(! +zzOeR1(T-Z65x5SI;usu?gGPtlvjbaEzhq2CqAgyJLvS`$a{phTVA53@8)jY~Yf--k +zec&Q=->*ey_yw9=KVf;yd4Cu{b#$ONqDylpx^&~vZTkXtz@?ar?fMs{@=&<&Kv=6h +z<1!NeaY13UgMtr*P+x(DxEeOY`e^cuLf7_TY=_UH13QRjdy?H{Wa^>==!-7J9hij^ +zQ|y1U_az$Y;wJR0{tF+%O5?+gOVAVXb@bqPAC1V*XfB*b@5?zM%(xNypj)syjzxby +zSb{$9BXl<$n81TPu@Vo5hAcD*n`3@ljCTAs8pG6phRg +zbX#Xm3fnm^cBbAE&AC}A3TFFeG^GEbBfR*LkTez0?KBw8k-N~P7#G_oqY;=Mos0JO +zJh}wCG2P#zVSp9T^Q0NxfT>;-49!yPjh~<$l${(x*auCjG1wHRqe=N0UV{6v1s;x8 +zn-c27(W7_;8sUvt4fmrHy>x1Nx1|!rD9ogxJ{syRXeiI2GcNF0NTM?6+IK`Faxc1u +zW6*6o4~@*~`1yP2Iq)Hx%>RcD#!`Nh-24F%D9Ic(4Ntbwla +zeNTjtrqBq?K-=e{GkhM6&hrjKkL04c|vEEIcC& +zq&8+zZ-Tb>K_4&{-In9g0Y8Oi{Q@+n)ABl5u +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 +z^f?<&vHuWV(iwr?Hy&N%=h2Q|LnpKjoxl!s +z0>7gJJdZ80K +z`(kt;U!W8F9o?pXqWz?D{1ZB=iuGvdjD~bFI+K~`4GYkbzm7)iLv#S&V|vNXh8gBY +z&yg}%8*8IEa~o#j1hl`&$beIcXDB$5)#wPnLzClRte-+}{11KIW}FMx*FxKSplf|I +zI`Dp&ULtfLBhdaPp^=!2F3CzP;LrbCC|pm&_vnnO{u_RD>WqeR9vaGx=z;QU^b|Vq +z#DC$}Zpx!GeHb0k|IjsGgl_M(=-cmSbb!h8B&YlTQVQ@FM8v> +z=nU?U?KANT>Wk15@e_2r{Sxc{p#vy+A>_z)=s<4A^!NWs6rAZC^u`V7zTScJ@HiUE +zDGYBm&PNAQBU>^(;QHu!(HNab2lO2=8jaZh(4|_2ZpSy!``2bm^7sGQ2rUgJ#s2Kc +z^g(hGjlkb%2Z@aEpi9vX^5Hlvij#0ImcbIqWcttlo1)1#8%N?N=n>x}Gnt;q9CUz- +zGx_~TN4A{?JKllr +zJ_mi?67*-t)LIIL{v9-lwxhe?1lmE7i<0S_sEQ7tCAuU%(EIvh4;+Oz;kMXbDOc#H +zF^;9ZAA0>Bbb?2b{!@ul6b#Kp7l#k>q6bl7G=$ehyP^^4jZ1Mbeu@Py2}`yY?dLE$ +z!#|@Lmxjm`KqpiZU9wu(!u{WhLJb-wqS?C&-N*Z|A)ZA;S~qtx{Rfrp(6f6Q8maB* +zIq)ZXUD3_oD$uLjj8{QW8D9>^CS~}aXI=rzBF$#{d0bKG!lKV4$g}0 +zpWr^~7tn3GFJChK5;}*@ta$!p;(n}(F4)OY94>aip +zpx2E;-*Qi){VYRsXB|3$Be6YKsZdW9ph!jhkOKqI +zna_+aimr)%f*v^Ep-XlIjljP+6^oTg@)l(OEuvtOy^qh~r|8RMP}y+fRCECIu@kOA +zJI=f!nf@!4qUgY%KzGR;G+F1Pk$f%IKSpz5H~PHunEw6W9Oc3TN}y}l0Nq}l(a?57 +z_iG>Y?7tIz&{#Co(CFL{S5*DACB +zYf)H5gWpIF;Xuq@B_!J*98Nujjqwlcg_Wx&)4w^pEQ`&`1qH +z-w`9xh`fb0@#k1Ca%E_5pNfUi(IwGuqB(1Z3mZfSp%0vgBk?sf2g=q8yP*NPo325Z +zt|vN>yV2`b#m_%Mw{dDG1(V|ly5IBF4)q4no1+t=i=&@Kk4FpD3HLQZm-1FL`NpAH +zzZi|cR`h^6hiu1GqHx`CLmjNk2c6M1d^Gw5I-|L0cE5z~`?b+e(UWmctpAFhkY~|> +z4 +zHhTx3%tj>85Z}}^L~0;9ushKSjm0v!0PXiZbRwTMW&b;pgEV*|{T4qsiguXUEPQ?$ +z+Cd>SbPcc`cET)t1Wm5R=tSO)^+U0KHrC5F4=K4#Pij +z2KH?cPQVlBKCa#}gtiqr(9Spld!qyS9NjgC;^!yP2cE+$EYvDQG*zF1A?}3cz$kP8 +zkD$pm7tQ9CXz13WYx*JjlG=eaaTj*RoUOwEZbY;HE_Az&K>L3rem)0zF8}_Yf}#Hk +zoyjirhW+RRPoN<`kFIIqHev0`pzT+o1HAzq_)v5}526uxE!Nkg13ZF$k7(A`mlON% +zSqklF_zB%+)!Kyz*GD^Ojkb42XLJ)*##_-WpNd9sH9m#A(QP)oeK;q^Vq5BS(A~5L +zo$xu#>;6w%9YT{2U86GS%p0R$Jg&wzI1szzQgjI}paZ+?nqX1%zOv|mu0)f&J66M+ +z(OonZ-E}Ww%H&%^!4YL$8y;954P{I8!Y*h>x1mSsFl>pBp)=ZsF2NCOjX67n>pP$W +z>Vgj7R`k2%WzOpcD>T~n%KD$KAe4Tkb|bQ|7{Mr2HM9QvS#(It5TjmR=IQY)jI +zqdU-SKZFk86gI=lt`GaaBi5ikBt^jy&&M3u_ya`r`}*Qe$@JfJ?nVbv_lB@L8se?g +zTcOGLB08|eXsB03H=^gnHZ&3k(19P1^-DX4^CeY+f?tcLpd)=5o8v|-gBQ>TmFW_; +zUwQOMt%+A+S9Agsqf^nyJc$lyE;_(P(bv&PuSb?RmG~%rum=b8!7u2DJ9iCh)fb(~ +z7&KR=qf7KOdR{Cg+ezP`llP{06S6t +z1nsa$_b|gs=m2WOdPA&0y*WC=+tHcdi?01xbRbjF2|bS{-wJdWeT-Q=KXE8tkl7Id=yk==0klUS)GInHwvUg_ +z?9Ki+`Cg%!&PW#{|_Bd_WsHAFCNv$zSQTV +z+wv?rpppZ^33pv|0=A(2E%YEd9otj&2ZrzIL(vD!##Xo)voQ0va6<*Wf%m4>8uSt?PNg4<&fn)S2LBzzf7 +zu2-=Dz7^ey=EgpBH=IZJ_Z>sS0d_aq-(%=@n~(Op65T}~#QHugtWCT7xJ5B(z27=0I9kFMVZ_4*)=qjpA!q>4ISyf=nM)mFtfTe`ZB4A +zMxp__rvBh!65fu!WM*IsT#QEQ7xenG=x$1k5B=su`^|?gajF;vPofUk2&Z6e`~cY; +ziNDdA-Zvqf{gb0JFoX8_*dCul--17(+wBDU;EadE#4bkLufW1s4;erzaUF%HXm|*H +zx#XJ|ERJr=D`LF{=BC~Nok3glTzPX9D04#>Foao6zb97g~QS9H5DEC67PlT+miRQqK=&l%quI=d9J`s(? +z%vgU0-370pNxlMIio=-R6;HA~41LZgLsH~H*RnXekE>&2>=i$s9qZ4dC)^%%+g?Bq +zq@pu|HPL>qMvv^9&;dM!F6kF&L=U7WJe-XXVGkPae=7VP%~zO3ed??*<7McYu0xZk +z*6c9w7U+3!HF|*EgFbi`I)TM#q`tz6cmStkt~ufJ)I18#U^Cjm9?Zi3(5x>tHzZ{} +zEK9u=cEH=vZL|`-?p^eOJFo(tN4H=3d0}Z=q4(c{MruMZm6%V#0jxyVax1z7TT8yWUrH45fH6ErK^plftJ +z8j-$el0J+k<2&f}pP|XMBl=zZd_THeD2+YRp +zxDd_eMd-+1ji0}dhH^Wa#mCWspGF6i?b+~6C?}evWze@{TlDjZXi`tbl!cEdw7_f& +zLPxF8&|Zfo&tUY%vFP?o#rkwKBD1g)zJy+X3LRMTxv;dCU=8Z!(1CYF`@iow_J0!! +zvuMyS(MaU}UwB|ObggP*`mB%k!_u^m!tyu=?RY(UwC=-6_#?K%JDyLb|Iy0p=yp7V +zE%3^P?Eh61?q0~uvhlKcA^c5dtrrO)^T2{W +z*+LwFyKy#Nza)IW_z`H{+lL_E8tHZBkq}GH#SojZTaNUr% +zLa5K75ooeD{64@u?C$$N-@5SrAB4{2ES|>ZZzmH6vB5j!1`jB{J}gDgci9!xN26Ii +zenT?xHok}V;+Xf6>3=(Z7+WA(F%J8rs+3XuN=}aP%jk|95a4 +z^~^2F#D1Qim`GtV4)~M@GPA>Yl{b7A{`VLQ+d{I9+s-?K&v&9T?)7=dna^+{ +z_1a$~6Yt?$_#pR<`ZAgR4a<{Xv0bU(`E~s6w}buPg$q|waD>VK3nOoj9vm~#vwjUu +z!E8H2l0Jr`sK19*vF@($qgY?Gz7>by-&h^{eG~e760fBGCbqyIzhVDBOQGDi$+Vl$ +zq`CRKWcojs^9SBX{q@~pDJtv<16qYf?mU*mhrSQzz#`0|{wa3G-_f;ivNwEN&c83b +zq?({_%|ZLv|8A=pGbuba)IJb)O;5a$ +z`b)SO&*K1m|6nq)2h0B$l04g?@FQ5e6omzRuo}(&&Oas7zXLuO4PmvPlZov(FM8WA +zpcfwO{h#}fuoS6A6xQ>>5HuGm +z91VY@G8QXP-;RCp6n4Yz$HEVj%WygM8y9WJA)*F3G4n_xd +z7kY%xK_j_2e*PQ!T0e&A-~T^D!I5YGJDlyg(X+fXI)G+qvb9COcsv)|Uq&DNDwe?Y +zXfl3-S@NldV>9LsdK~pId!B^r3o6z_Cm*^7g!=d;W`ts>_CVU|o +zfzEVFbOk!o|3kmhox>Ga@SiY{56}sHhc4+4|FHinQaC|_At`n?yzk4R9W_O_%|P_6 +z*5X_;{f|`p;GNXBqwjzw|Avn5k4`|>ehM0yIhchj(FlBv_IL7M_P@!I=f5!HI_L#0 +z(Y5S{4r~xMz`JoezJeK8|9tr3(Fo0%K4`WN#&&oo+TR-V`kiP5zeAVcaEgL!e-6uH +zjte1FmC?0q9vz6T{nYsROtga~=mXZG5BMg!Cw{&k9ndj!qNmU$D9ZHw&X_7q!I4)+ +zkHmUd7jHqccNSK`P4V-?=owxxTez7@mq=mJuFQ3Cqyl7&~Gg^juhu#c?C1 +z|Nd_`1xAu6m&{CuycJp>gwFgCtc`D=9sG!f@-(`=N@QlH-)6PYncs`fa1Qpst?2G5 +zlOtT$5KYSaae0cuTna<6RnE-xKeb+g9+g!u%1r!#L(py7Ay;_t5Ijl!3EYAcE)D~~ +z_L9u>Z^zt)KhwSi{R;Q`rJ0H5*@$fJ%=DMkMVE!^_hS0L|CK#YW;(g9L_^vD{Q`0e +z8v1$I9p6Xajz#ijrnC5Z%t5^`dR`1dcgrYrDIY?Uaw@vS)1&jFFX!doKN`}NG`KB3 +z!r}N0-hplNWv0)E73do8!uRnw*1=WzGt=AhXY572RDsO&!7>`}qdo=g{{nhW6et)X +z&>4LPOe@HL|F}7YZ)tF(MGJ*By&TPf+Gyx+Kxc4Q^a1qx$!JzjLzDJ@=vuEpm-J)w +z1g%{-GkqdngRXslG_nt+C>X+5;svi`J?dM~h@6k+EfQu{7JXnHH015j2X{l0abWa* +z^uaTtOVIP=J#_p2h#uXk0!1^^M`1&B#y!xpc_cc3N8;!6;^(W;8GIevkD}LIQYiSFvQ+MSalwCZXrWyjWk4Cgtbq{y#{;v;A*$gy+%iQ@B(}vNGrzmq$;u +zdg$A&C%VQ1F$*6+&-4Z8%WE;(&#P$vYoi;{-1!7kj$~(S_$_)G4OwRCFrd=t4Gp4g +z(WUB&hWZ{fGSkteT80hqU3Ax+iYBr$({IH~qg}Ju|LwTonb>e3TB%Gp`|pa5LluzGyS933S3FOe#Ol6UoifPcG#p+2xV(@8+Ab6k`G{gd<8u@_oERhS~Y?>s +z=tM@LOY&rjf@?kxUCYMB; +z4NK4fjZAB7k3-P&Ahn7@4GQ0&q0CV&GyMw&1#lqs5m*qvMU&|dwBs}AOp8_zxzQON +z=&fkS4@4Kn_K(oF;{kM+C2OQ7z`y^X;E2nk$nNB^pP+B0?dXlC(Hrx$4DD6WP{PWoUH5$R) +zXheTN2Yw74;5qaynAtkK6H1`{*GN(D0kxwIqD|rjEn~fH^jh>N?u1674?3{E=)mqk +z`@1W)k3=8zAo?;JkDfC#(GxTE3WX~ue2!)CB-%m2Ho;=(gGyl&EQ3|>7Iel_(FZ(< +z-Zu-~W>3fZH|TZWqeu5a^!mS%0jCmY;|1B;h7NL~YjtOYae~y9|euZ9``|5CE+lfnePF}h*+uEf& +Wv)|Haa{jy-{4cpSf8NYdSN%WSLq=Hu + +diff --git a/po/es.po b/po/es.po +index 3615c1a..c8b400b 100644 +--- a/po/es.po ++++ b/po/es.po +@@ -11,6 +11,7 @@ msgstr "" + "PO-Revision-Date: 2007-02-08 23:15+0100\n" + "Last-Translator: Christophe Mutricy \n" + "Language-Team: Spanish-English\n" ++"Language: \n" + "MIME-Version: 1.0\n" + "Content-Type: text/plain; charset=utf-8\n" + "Content-Transfer-Encoding: 8bit\n" +@@ -6762,8 +6763,8 @@ msgstr "Ganancia de bandas" + #, fuzzy + msgid "" + "Don't use presets, but manually specified bands. You need to provide 10 " +-"values between -20dB and 20dB, separated by spaces, e.g. \"0 2 4 2 0 -2 -4 -" +-"2 0\"" ++"values between -20dB and 20dB, separated by spaces, e.g. \"0 2 4 2 0 -2 -4 " ++"-2 0\"" + msgstr "" + "No utilizar bandas predefinidas, sino manuales. Necesitas indicar 10 valores " + "entre -20dB y 20dB, separados por espacios, ej. \"0 2 4 2 0 -2 -4 -2 0\"" +@@ -7498,8 +7499,8 @@ msgid "" + "16 no padding\n" + "32 ac vlc\n" + "64 Qpel chroma.\n" +-"This must be the sum of the values. For example, to fix \"ac vlc\" and \"ump4" +-"\", enter 40." ++"This must be the sum of the values. For example, to fix \"ac vlc\" and " ++"\"ump4\", enter 40." + msgstr "" + "Intenta arreglar algunos errores:\n" + "1 autodetectar\n" +@@ -7509,8 +7510,8 @@ msgstr "" + "16 sin relleno\n" + "32 ac vlc\n" + "64 Qpel croma.\n" +-"Esto debe ser la suma de los valores. P. ej., para fijar \"ac vlc\" y \"ump4" +-"\", pon 40." ++"Esto debe ser la suma de los valores. P. ej., para fijar \"ac vlc\" y " ++"\"ump4\", pon 40." + + #: modules/codec/ffmpeg/ffmpeg.h:115 modules/codec/ffmpeg/ffmpeg.h:248 + #: modules/demux/rawdv.c:36 modules/stream_out/transcode.c:172 +diff --git a/po/eu.gmo b/po/eu.gmo +index cfb69a7f6567ed581ea811c37ab4089606de9cab..9defc5d8222263664ed05fbc52f8e283451eee04 100644 +GIT binary patch +delta 2731 +zcmXZedrX&A9LMpmC<#CDR-mb%(og0EQ>a`6Z+QuaW>z%StS7#Q+wmB7!R#Efc$|aLxB|Q3Donz6FbzM)M7)A2*y8(B +za?R3-r(rLw!2bA2t_AlWXrMz6HsXUAH_faQ_QLjFYp7Vn@o5;Y@mH^$6x116v*Ovb)A7`2e;I06@6ss_Jqafcr59&ti8xk7MvAK8#P!b(x!lJ(%C-($E8IP&+S2Rp;BNiFTnDQ0e0u +z)B;ap9bQ5`S2@p(Q;j`{PoPqN9+j!9s3N_M8ZR-A{3~^XY3Rn0n267!78F5Ev>XRw +z1!{*!u^;~IugB)QBTPosMt|=RR0c+&GC2!X)JuH)RzCUH%J$NsRMucJ{)Rg1(0q4x +zeNgueMV;wn-#;JM60b(>=wII-DsX3=jJiM7$HP$@%|>l-NdRGxs)6^hH6FkytU~SVASzR}s2aF{8t)nwV>2e<;)QOUP52M-PSo2FY+2+|yc6#a +zh^mQNREo}GES^U#%TSryi#1q}dK)$`am9E5m7%XO +zPVavM4W02%*bbYq9@{K+@sG$#?Fz|=3&7) +zcl{K8Mx4Iho$+P7NZg)nDaF^ZEp{w(ne2)xx-jY}`eF#veLSp;3Bq(_`Hmt~>PoN; +zR{H)bY)yOwb>=mg#E!m0rM9Wu)yPvD+|f)#EodIFD>IoN@C8R~mciXCwW>iPZt`Y}|oovSB~5&wl_aM>olZdi@^*m|>b0kU~JgOq_yc+>1}tiwTgVhjI*@DJ2N +q(zm*!7=h6`jd8AF6RKkqZV!(epSLu!GA~k?*}HIMb*rgang0WiJc23! + +delta 2718 +zcmXZedrX&A9LMpmpm9;e3*wcZH<)HjF?AMZCS+89m`aGEkfMl{T9}E3_&{FpKHI#Y +zMbm7ES=z8QG}j*v($qPvbfuQXSeqG5G0Rd`?~mvF^*ZM~zvn#XdwCxCZg<$p-C>_@ +ziw=_8n59fHOE$CIOtTPfz^!-y<1zI`vpAfL?QkCU#08juYcT~s#6EZtld#3F_sB9E +z&ipy-izWClzMEyigBu!H(2b4Q1^>fN*k!6&3=YKGI2=1;Qnp!p9F1Ku9S34I_Qw+J +zfK@mYKSKTP2aLdGR3LY<1NXywENH{XY3_k>IEeWG)IpxdCvgTU;@zkR)nPZhj05l{ +zCSup=X0iAf>cG#U0?R=iWFbC;9%*78TL39QVUaR75%05exl%De8c$ +zQ2T82>$|+w7{~e%?CgR*dBNHYwMoZaUHimWSHlbJT|CP_?^;8Q6k~Fg1_z +zUdCF=ohVrP?orEUNN{qRxjgJV$#%0WG74klv> +zD#98ZjNkg}_faK`%Xhue$2%C6fsv?8zJO}#S$@7cpZx1&+gVU54`P43f~s{Zs&?Jy +zxCn-#YWg&4eJZZNg{X*r^XsjsTF1?GzYn42DX2hGQ2|bv8@LM-S$LI&X{glKdrzZk +zb{_SB>!?WXdt(Y*L?O&#Jq`O|CF=J_F{zE&S=57D=DGb_QP;zRLbqW&_GMuZDkB-F +zFIO(A2R30i?!qvvLSmt88?^Y7m>n~&p4%uZnqmT7<9RUTn2rIZ&7SCW6eigswF8Es%Ol!HF9WvCxE;%v+= +zbJvgJ$IKJUU5zi`73K;{DZYv-Mc68r$!Jv5#iL5m3!^d7&xftz0Rvfh+%M#!Qdfv= +zvC^+sVL0>ssG1+d1S0whmD;A&u17|!aivK^9VioZ-*Qxsm0~;Gf$FvQ0tQ_f)Oe4h +zYI+`Huo3k(+{AGhvDO_R13NO$M}04fFcvFN_wV%A51^X04rvc-!1r-TABpPr&)6fenG;g~2U%x*zW@LL + +diff --git a/po/eu.po b/po/eu.po +index f0a579c..948edfd 100644 +--- a/po/eu.po ++++ b/po/eu.po +@@ -11,6 +11,7 @@ msgstr "" + "PO-Revision-Date: 2006-09-28 13:13+0000\n" + "Last-Translator: julen \n" + "Language-Team: Basque \n" ++"Language: eu\n" + "MIME-Version: 1.0\n" + "Content-Type: text/plain; charset=UTF-8\n" + "Content-Transfer-Encoding: 8bit\n" +@@ -6320,8 +6321,8 @@ msgstr "" + #: modules/audio_filter/equalizer.c:58 + msgid "" + "Don't use presets, but manually specified bands. You need to provide 10 " +-"values between -20dB and 20dB, separated by spaces, e.g. \"0 2 4 2 0 -2 -4 -" +-"2 0\"" ++"values between -20dB and 20dB, separated by spaces, e.g. \"0 2 4 2 0 -2 -4 " ++"-2 0\"" + msgstr "" + + #: modules/audio_filter/equalizer.c:62 +@@ -7012,8 +7013,8 @@ msgid "" + "16 no padding\n" + "32 ac vlc\n" + "64 Qpel chroma.\n" +-"This must be the sum of the values. For example, to fix \"ac vlc\" and \"ump4" +-"\", enter 40." ++"This must be the sum of the values. For example, to fix \"ac vlc\" and " ++"\"ump4\", enter 40." + msgstr "" + + #: modules/codec/ffmpeg/ffmpeg.h:115 modules/codec/ffmpeg/ffmpeg.h:248 +diff --git a/po/fa.gmo b/po/fa.gmo +index ad4058216e9690dfd574816e87bde831c174361c..4006606003e7f5a54ea7e98c24d42bd343c5f611 100644 +GIT binary patch +delta 14951 +zcmYk?2Xq!i+s5&ImL`NEAfXCRD3U-3B?%>=1VjkEL+FGSP=a(JLKdV*2~q+A(wj7q +zs-gmdh!hcnqJ;K>NRc8%5dv7g|Mkpx&gXmH^P8F7ot>Sz@7Ybl-po8lGV^S|U)ziI +zInJEUK4+HWINx;fIWJSPQ_tSj^iv%xP;Y~3 +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 +z$MBh*$J^NG39YZwSJjHLYlZor4A +z^Oo)LIV12}9EowCDsAa`HwC@bZlIpb`OG}g3#cb4hno5Z*aw@VKCQOc_D^si^)FG^ +zhkb6=x*jSY&V5KexjfHQEZJjQBzfWuj!~eD!3-2J}h>jI?S~G +zj9TMc_V{DefJ*H%8(B4LPgIP|L{Cq?l7e2Rdr$+pf?BiRP{$vl);QmOvjnA3OVtQ< +zUQbl;^+(0hD0@5&b^Qj^^#@P`{07xt6?y6_ndGUy9)K}l3hM4_Ib32G_2VJ;kl +zx=|`BR^CPJBOjppxrEvm?qMKn4w#uLh8jQ!Mq`A2z|fxGpN3xe<$os}G{F~v8hLxv +z6DOjke!Q)(Mh#>yhTv(`fF5BZ%=@LeaU0ZwB%qdb2r5|Tcod%c`28GeD!=^7jQkjC +z5JEJ3dSGtIcfMU&O)!-QJ?b> +zh3j|zoRPaV@ +z@;TQq&-do%hWn`KFaCpOj{J)V6nKB5zUf+`ralEV#ZyshzsA=0p$2viHGnMC!1A9q +zYh4MoWRa)`X^C3<{-_&|MJ?HEEUEloMj;0G*aLrHGIjSyvvCYVbvPL{uw|$y-++pl +zPf#82M-BJ~TfdKbiRJjo%up~Y`a@CuM5E`Y5Jy2R=se20lV{kb!!F +zi>PT&1IfOeuTJcU|{pHX}IQ`7_GyI^+4GN@R1#hQqE-A=$zT!33~A8H9+^DdeT$DpEr +z8S1^f7vu3V>PBJzGv9u7Q8O_JHB-r`HBZAzxCu3Lr%`XopHV?t;gVUxSk!wiX{ZrJEB}MWY7T2{of5P#>{Z +zk)`sS=YKXoy@sM*LaA6CH)1%RLv6Xau9zndN8PXmDh<1#&L3;*o2^GtOLZM}!+)_R +zR{q7rOkXUl{2xp~BbdWR<&~FR&4Gum?tA2nVKP8g9mE +zSnHliul=YFZ=we93^mZ~_ss*8Ld|GJ)Dkqb?LAO4l7tHK6x4O=JPP9|?8O0C^MQH4 +zFT>i@PoO%=@w?CIhJNggZ=yOnj~#UU5AzdKSJZjiQSCtw&Go%eL7sxWa1mx>iM>bm +zgr|R+cR-OxJ|~eAnxK|sqjeY7puQg!R1Z)y@DFN$xgMLDD~k%Q#;7MuL7g|>x)ilk +z>yWQw&)H2uBfEg1_yqk}Hp`^Z%c!&*hB3GjBk>$o!~9Ro^$k$h_do^VRMb|y!XEz& +z%TPaq`YeAOI8OeR;rmNL6N|dAH!A4H+V(}L0e+4xFcYg_`DbQL+oOVb0P4Cis2Evj +zk8iN`&rmO`6Q~*a0YjDl7bs{7bNpqZ+mD+1aMT7=3l+7kP*a+S3bJvwJsthjH=rKm +zD1ME1P#e&$zs-P7p?1<=Py>1HAM!sNg#r}(SlAkcx=|<8NRv@(J_bW@vaPR2?TkCI +zB_2d&Oa6b&SM@^F@jp=gxcpCF#X+b6w02xCurqa{LFv&C^`v9ak26s-u?4l}AEPe3 +zg*yKMYJ{5=iS>Z>hBbdS +zHxMh)r~$M_-Dm)6fFn^ckb>H1(oh55Y1l0Kz#dElUeIXVVQv)y@Ct_9HYTGZOmd4AXpft&q(+xy#IaJUzLQPd4RItsk?Q5+E +zQNei$^?Lo&)`Ah$U`64hT*)XxuHv8dkv<0)uF3s4=eMs@U&b-(op +z>WMN?H#m=N@ir<3>gI6+FQ*Qu8S9PecN}VlrlEGmov4}p6$3y27Ys7dUII1sv8c4{ +zin>ux)CQD{n(~>b^ju}#gL+qFpl+C(e;lCW!Km{iY`rmRDSDtDv>$qU8N5M3(fN}- +z;U+3r?xP0a&u3<&8mi+usE*sAI!wY89Ez>+rfsjC-(*DtY)pGAY>x9$*I&#}{%cMC +zph4y+V4k!n>Vzn)iOun4oP>SwFlrz#J?{p-{pzEZW*BPf-$cdILex_3Mh$cy>Wk_t +z)B~S=p8VIIe}@K{qo7&K()bGXXjGoQiQ40r;_LVUs^e0HOotWl8|pErrOR2^WI-Nl +zant}qQ3H=eJzxuug3>P$HR1`VU|NQHl3l2^{}z?6w@@?n#MXmeFas-rda}wGjd7>} +zjzQhnL+uAMQ8Bh2)xUR$f}-&vY5+Nln2n?Y>V&4K0VJZLIMvoSqdGobiI&SUsl$h2b>xK}F^FsDWI^a+ss28+c!bp@OmY;KVSIV>#M7_^_2Zb1!4=%VAE`IvyVUEw +z#C7v1oTg9%2Uav4EI|$6435Uip>E)#ay7Q3{uhqGW?^Q@_M(<7!+H<3*7+-$U@eM@ +zp)gx-g1TQqCGvkcg;_LcqY0~Qtb>)PH^XooW$UZ0C#;XHWy8(+t*m3MYpo}-J^egE +zePy?-Vm7LsRmguG@I|%5J_aUniIJ>i^ct`mogF%r*W +zXUtdK?0EgrPkj?M$K&`f7OCMnJ|B9Kc8a3R9v+5DqrRv#8H;&wGAeK9T0cZ>SSL_v +zc@4EM6pS`IW;rZOy&Eb^hN2#587{?}_P95-rpeDG*oFh2V>AZUGCN&ERQnFpmyEBr +z8Bj&kl0~6j&y7(78jPBmw@@3_EbM~sVFLb+%AOW=T>ZJub2d^?aJVt%Wl;t-@+znf +z8lrZ#wx}l@fZEI7K+RC9tPMpIC0HyhQ#b<~t*S+l)t&d-nfzAumQn1r=(J66PB +zQ8V;>W0Q528f6-Djg9Wfjiqn`9I&cl37%$B_p{nT%w +zVkb{ilQqRrPh1N%kYrTWENn{tYYh+5pqaRXTBGdoW*`+&?e(mktjVa?_Ec0_uC{)G +z+6gbB((W(R^_7~L*lC2?!jn(~T0qt6*bZ<)If5zG*6r# +zmA2v5W~e6~h&q1(>Pgq)D|iX(V}(}ct=J#ql>fIVOyWT0)^6Z07F)3&^_SYXfq!5y +z6SV}sc8}<9R5dYVnoscvi)xmW>=J!v| +z!H(Jp*lIhwfj>l)>f$=fs87ZDST@0R-olSi9~iZ}y3V(_316V2H@dmbdg^K2&E8(4 +zhwI#@UZbaZ7nJMe2L1_03htzR8+OCKy?Gfa|MyYQS8lmJ=E=LErffe>#O#T#lZ8`J +zd7RqU4gAq6w4ce2X{Z@IgdgK8{mqmAg{`Si8(^07N6COk4|D^+A1E@2{EwyK0)*T*iG=>KGHtNE~s5DuNdV&+EXupQaZ+Dpa*)IfxsE3?Xx3L2* +zK;7_HRCYW?Wl`vG^K(K~kAl)A5;dibPy?BZfsF+H$;uRFY3uhp{95q>PbJs&>RFQ +zwxfPyocRK(lVVJ^uEy#d{}J0_t~brcY68;kIhhpdaUjol*J*(9*aD|x3Z6!F&}M=g +z_*R^RwW*g$HDARE$glF8`PiKHw25xupK_i-J>kGfX6BBemgY3-ZTT~n)cgM-g)%fe +z|CX8ZYN#1$jhe!~cmQYPcC}A7pX>jk2HtUs*$?Jp2=zWwjc=i*dL1TX&S`GoPqU*? +z8(OKii2>#R5DE&aVW=sdgNlh=s2KRtdKr}k|Db|1c)GCx>bgOweIyMPD~C{Nb`o{n +zFQ^B5hPq#Y87zewA}Hu*y++m^sP-|a_w`Ivey>MecnXyj_fhBNo@rv_MO2i>pkA|s +zP}j}1?nOWKUonu*v&esS7&6N=#GyJ&z_K_56?}7W7=D22@WnLJjx}$F>ZsFfGXu%! +zr#=t$ZrEw-XHXB4g}PticZ@aOA^(+L?P&005^5%mS=N&C%na2>ZRwrSk6Td>?wzEd9qB6Sd;T^mzn|epn0>w*_}lGg_#9K- +zG2M0c)82D|Ij_`0bA1J@N_#kV!5)}^yU~yN-Zc*xftrCj$iVse-yRr&nyLvHiD{^{ +zK49DLpz{71YUhhuWcKj3sCUI2R2sjJn!&G8{r!OI?+U8F;KioB5!P4!x1*pLm}^~R +zU4dGo^>_|H#=mji64&_y=e%crjGnyISYny${6zZ>%)sf(`5I=%x~_1Y8`PJrH2q9j +z#d);%Ud{fX{I9u|9gc>@IF=r0ZP%L(B>(%a`3s13CF%)Jq6U5*6)RV4`$NMjP7`5g(HoDHI +z7>$aZd)6#eI{P-6_9CeMN~2~rViWnV3mVX%HH}B*bAMF(c+`_kwe>})4p-Us-PW&B +z1It8R{|g3!*tTciY>pQ|%|Hp%@rs+PngiAB39+cDYJy6SR;ZcjXOAcC+B&@COTH25 +z#};+>M$xF={^h@klylqi412QL(|NVEvj)5b6Iig9>fB#)G +zBt2wF;jnoeQA+8*|Bh^;ExTz7Y%sdRcj-Nsl=PL~HEzkBeR*0Y4ow=Jm^2{9|91Z_ +MzEAphaWgyqAE;gcRsaA1 + +delta 14940 +zcmYk?2YgT0|HtwBy$M>e_l$2EBT11Mv18YW+M7_~XH_EzYLwfky^7eIBDB>SrK(1? +zMYVRRS*0~<1g)Y}`M=)ZbNYDve~-uS@jU0;d(S=N^Evm69z2_M*V(L_?pO0-e2(*e +z2cI*|ah$I@`kdnUdMBS#6yL-gIMF%}^HN`f*>DFI#{Je`uq^c_sD4U!_Bo}nA*%gN +zEQbrwkNZ3OJf}2;>ok|KoI@D=LKF$)gDFdTu|aWUq>_4qP=iMnsUy?(@c!Fm(( +zbNw-@pX^=DbJ1NrpOcA(>NJF49n^@Mp>7zOyqo9!=M2+wmhT=7hz~FACy&UGE-T*bgcK8yGLT%A|s4bae +zU4a_V$EYpag}VPZ=EHNS_jz}1A-KD_Py{n`AsTC86&!{sxD{_=U0n8t>G%>BqW-5f +zq=y+uNoxhn&Gp)-0ky)C*aMlU=S-mB_YqX6pxfWmEbSF6Mm;#u=Un7^7}lfyyq9@# +z-T#^E?Jz6tgVB%gU?p5;ub;po)bCnf?rr)niEVkm)0l!fSb|k?9k#+tsHKhWW1_h> +z`l%<_`WRFUEJ1C_9@~Bu8&h}tnttO^Th|^HOMPtnNQ~tD&Ugx1@=q`cw_zC!@8=6- +zM>8BseF#S44b0{`PVW9@sY3^trF|7UbG;^NBJ)rydIUAWo7TUuH}x0jDJXisWo{UV +z3ZjwLi5Nva4Rzlh>p@h9$8G%r>KwRgeU25W7fSLuW3U9)&{yQpY +z{~kpC>qWT-`f9V)%OH!0}ANk`py0M+4-_$xlb!FX=C$%bZcn`rKWI^zeR_Hqhp +z0<-W{T#Z`Uqo^#pi`x5tQ7ih=h(NpN6r-RQzlu6KtJ!)Z)B|l%9dt*nL=q~$$6y`Y +zjPdvfYOiaJG%L^+wZsXie&(PCy3Af*gSnOe8!4#cy{H?H1ui(wdGu4ig9S1BC^N%S +zsC=%9TIwdK=USukI{`J2WK`5owCyWV_ie>6+@tHf-?>ad!SochWO+xMk47cb%G5y( +z@OAta6HqS>d&lRv7=<;k9BKglusV*$2;7Ec@e->4kTGTeucD_5%_+!H_Ch)aQ$K{t +zf}^Oty=m+Jpk`2Dtlcuyo;E_gxC?5)b5RppgG%$=w*4gP{$IzE{|dfGG$^X`la6m= +z9BPTT+4MYsn%Q;KiafFHncp=lQ5qZ49*v6bp;!~AVj3R6$=D^;{LuLg7f??gM@JJV +zWO>i$%)}X}8;gziIa6>gPQ~a6K4%v0M71}YXgrPYQGa8S&zXb2q52y>*}V7}Y9O90Y)JuY1g6kl14rQ}s2?7Y +z)6IRcsQwzGVy6Yhpx2Rt@_4enunx7?pP~k~54EI6QPF%A`{HxdeSKz_jz^&K-ov8! +z5$gGasJ%XA>%XI(dx*q_=VX~_M&w7`7-{Qq)<&pcYH57~71hb8;9Q8B*;dpExf3;^ +zGpLz9#6|cVzruy@n-%OlOA{jh{zpMeIu`5V6jYjgkJ^e`*ctyp&8YospVJ5vQ7f?l +z^?dF*=A0;oIC?P+O91o_S$4RE)JkZP5hus!>=)K}&Vs`WsfDeg`#>(D^=R +z6?RAEv$Mb~d12H_`LQb2MFrIe)W>N9_Qqq_4`UaakIr&zLjA%*^1mj9l8ek|vIlAf +z-bd}}a@1FCEo#IYF$fQ#ehD2x4dAi0;9_%5R7HKn;!)R=@Ex3C>sgnW0Y@z%|Ft)X +zH0Xg;RCKOE4PZMe26m(N_$X>1=dc_;L>*k=OU=NWS-YTuu)lQ@Du~yjR%jdQ_r`UP +z!fFaxmzgNth+4YF%T07Aq4sPt>Z7t76?CVtDb`wH_I4ursV~RUxEHl`*Rej9UTG%S +zA2pHbs0n%tC}@Vu@lE{HUMRB4bR33Cv+C%_cBnKPhRtyfDo8J*(l-PB=v!^-uV6g& +zDp(#a2dA43#ggItT9JxO;nn`jk^B? +zYRS)|vgQ`*erK&&i4bg~{4Y;IF_4Pga3yM_&#^3)TW9Qoit>?vkJ`#Ts25+g*YBZz=;T<>SCscV#VF{8+NkJnih4mO)Y1+_9T=lg`J9HD;a=3% +ze24lv{)T$)5$YR|ZG-vwJ_*(T7Szh_Mg{wM4E+B8mx4OV{GsVM4C_*l!p1lN^?BWD +z{o7uT`^elk7VB|+FGi#9W0Rg0FpPRv)XI%Pt@Jk3)|~p7{MXW5r9n$paHAPvYwSRM +zAZiKsqt1!jsF|1f#N>4hD$QD12V!CB(=o-z?|;;a7TIL-KN7VP>rnk{-sG9+-${eg +z;Rk!eNmN$+j9S{esPyw~HXRhgK;C05+MA(fHW{@7>9&5x`UrJk<=W&FJn+k+7|U(FVtR-K&`+$)ctEv6WNS9 +zfV}T0=mmFdL-1!NjUrG{Iu2XnEcD}LRG#~`nHT0qy`U6o1uCOX$hN2fB%>xc9sQVw +z8t`YP-E+=R(2;uy6@>RuQ5>?}j4%w9C9h#17O(;J+o+>7`g8N59vBERtVH`ZOvjt3 +z`)2R(IYaPkOu^VMl(zJ|fr7qj7f~~Nh?>#MJIzcAp_aZf_P{!*pH?ev`^VUa`sb+U +zL%%e8T@e){38)wvj|#d4)|FB-+dv_ZpXjH)8(ZKd)KZn(Wjbnw3a$~T9~SFT9Uig% +zgxcd@?DadS0p;Fp4zN@^SMLd8TRY6dk?LDdqo-~iN% +zQc$rn4RwyJLiKYBbuL`RK-PR^Rw_Gc00l4>!@u&(ncta)?lgS<-wpdr@P(sB-WWCG +z4ydIcZ0qw;1KEsWcnCG1+gKlcUz-;=ii!UsTk8fg`Zz0iTnI=W#s79rQWV@oSuhUd!)%&Nd1c +z@C432yQ2FF0a;0rfg+W<1-Pj#~QNs4cvJTA2*=W6opd +zh>k&4#B<^)^y5NzEP)46OL_y<(FP1tr5-!D6cpNp;At!v! +zHGF{)cNj0I)Y2!TmUt9u?-$tm7SzCwp$3qF3eKQYX0J=2 +zwk!fQk$R}T?~F>jB-ECT!=lRn*%WHvMtk9ROrri6b#U}PZ8{u*8rW=9lrKfa%*UvX +zx1t98ovmL(eZ-!kRw(2r6aB?e{Y0VXrw~g)M`Q=ofilTD3)R6Q)CzovN}v6x8Jt9Y +zBd(yHyJy?~w)HG$%%6gD;UccDK|NplthvA0S@K^aYe$1-)CYAi3`gBK4>f?*7>rv{ +zFWP}x(tW5EIE@<6Mbwht#;F)|&aBK#)N>!8-t#f~ao0KWzdVJXX*i16&YQ2_1sqI0 +z_JSEuI_kj#sJ;COwKexp6L2q@lQADE7HU{Kpgy-lFaoFGM%;qhf*#(_=D`7|=%0=H +zE^o#rcpCMh&`ajGUj@`kbVIFFB5Kc5F$$NXR_+k$EBO;DNQ?YpwlD@Ypk}C*^%5y) +z=~7T58i!h{8K@V}x9uBHEAW~1TU1P(LOp*EwI$C{Taf3nnNSpJfbpmm?Th*mdk(qJ +zb242qe|jyB`Us_91zd(@@fhmJeTJHG*stb=bx~>95_Nx)t*@}|Ms3vv)C>Q@D(L^s +z#7sxbtNiayK_eW3iiP)4d%6d;bjMLMypCF#hu9FGqy7li;HvpOFatHfMW})AKn?I3 +zuE3ycW`ZA}w&;jd{-381hd1yOEOp)7cnX!*&rw^G_l7y)LQw;0gZj1G)jG`jK5A<= +zpkDMXDosyVf5BMl8R)5l@ZZgn#9<~M|6YfAG5)5{SB$W>Q6pbwU5^#1Z$$;wb<_$xKn?I2YUK((Ho;XLHN#}oeUq%SP+PSK`E~3$ +z8z^XGColrz`r?>W5K3 +z%kKoPlYja6{iUFZK|R8Q9;}V_1pkdj7+uHm)iQL +zsE^e?)QWtE5z7A)6assUithZ+%+iOU4xqBAD6fxN(hjJ!9cbGpqo4Xx)I@gU0lb1b +zfY$$O26O;*lAc8kmFSKq)1?MT$=k=DY +z7sz5dE{oc_ny3|NWZRpgVkrTM8PDl&FKkB*V85+jMJ?e2RMcjA$!t*+Dn?pcd*fj0 +zBT+$i8+E|^h02EDm(BeVsQzl9{`}Aa3+nqnn1V($1=aCP2l(2T&qv +z$vsqh&a-YreJl2(UijR$hwvW>=>Blj{nb%h(Hb?;PUv-~@D>F{=MVOVOQ>MEh8jTr +z>}Ewup*kv$>bMcA!vq|Ky|4vdvhC$^n5?Lb`o&Zq<8cz|`I9-wf9=WdG{~o@nP$sr +zZivJx)azga9F9G3Cu$%?bGd=vew9#L(;Kz)gHW+F6}6QcPy^k9`bG5xYQjfzk^egL +zuh1Z$qV_UxZr6DYqfmJ|2zAEK!em^9>Ns~E(_s<(fqFD*>;6Hd*9&Woyk>yKQ3H=a +ztw3Fmg3_-8YQ#fO1DK7P$$Hd^e2wbx7t~7KwRI<-8CXu#%={ROv8VwKK&{MB)Op~c +zVr((0e{Tl`MdL}-0RBN8Bt`O@8)~5j&;b?2DYm`>)$uOWiw>e@bR7M7-Coa9!1R{~ +zbzf!Fb8$$pdQKAxgK21wipqnifn30Fe2V&BhZZzJ*$C@VACCGA@4!lU9S32NLT=z+ +zNT%U#>JLz{v$?Pv_{;2v*0>@HR`P!W1^tdcWeqKA>iw`C?OUu_ikXfRFoE`O@l6aX +z?mBPbbZm=Htj$B+z`q5rvX&{~I-|M15&L7L-*u+)ekYBBUKAQ;I!-}#bllcUzTyV{ +zc03jJmHQGK<6|6yb;8MG+>LPJ>Pjdd1Q_H=DvC3Kg+y +z8PmZ`)Bq0SF!V>bfghjq@pbBd;1H}GX|`-LYRmRpucG!kD9QwDHdG9S+ImgY`-lO)WBBd|D5uzr9#u=b(S@;vHX$Q)}<%tDx# +zdP`K6^g>N&HZH+S_PRH!ipkHJ*pdsIFczJv=A^5FYF~%?CG!Y1pkmd`Rz;#d&(%=_ +z>W*5Ow^0YyyVw!m$4+WJ-Z>q9XM^@XVCSE7D+Y)1|39EK`y?@+jfA$82&JwkO< +zuCAF$6V!}5pxV2kmUx6U71iNX)VZ(>HNb1AEz42Qbv9sS)CyceZSj5d^ffA7-+Yy7 +zqxQA~YQ()zFB*y3yK$%vE})h)!}>Ss{-6e~qu=+1u?Z$%Ra}c@@MqKnGBq?==Wj^< +ztK$?Jw0DP59bL9Q!dld`y=G3drdXEx4Ae|_;%syqnIn5H`l(;Sz~>j0H8~oa8J9&3 +zBoUQ0QyY{2+QaQMXeF+o_UH*}AjO)P_KMbcYa;5iJqq=L`PR=+C*es{+Wmp*w?tDD +zJ5^CfcmisG3q1;2@^sXaeui3!y{HF&MD6`;)YAWn`XLe=Z}vPt>iGyPfw35d?Xd^G +zZLgojEYz=|Vk5)0dj*=A4#H7;9fK>dI%**2P$SJi4dfYW#zC)}v<i#LH +znJz^Ak~)R8u}E|CRqTv)mH)p`NacdRg&X)6i`CeRdeN3{;6E_%PzTTvtbxT_nXT!B +zO2>iLG}LE&2P&rA)^6ZG)#{2F)UV+@{ILxuA!**ft?O*(@1LCQ?Q{@u)OK(K{}7S8 +zqw6fCJ__ex!A`C-4nIWwz$n+*b&lY2%tuFWb#a}w)Kj~fv%O4$>)fYarknW|6zc8< +z{u7R5+(P>r?1CNN;A5ox-$J1Z7V2SU-V(KBTk&0df`8+vo+gh|65YUms8GC@$&S&e +z72JW_vBv+*%>Td^)JOL=Tl&3Zz;E_(1Ajk|wIBIklZF!%+H+&}H(iH+!gqS1zG6Aw +zGBMEybp$8d`gm+keFg^315`R?pn|w?lF5#eScrOERBUxd1#cp%zmz2MUk^;SH>9D` +zZYdVPEm#>3p|asQDqRZMk*Ma2i3 +zKPQy*C@5VbP)k}BHINAyI9O04{|q&-@2#g%2he3~h|f^{)Ei=+Z-rW^o~Ue^j@|G+ +z_QVz`u9Jw~CJM^)yhBX~WzbK(3TosXQ8Vw4TH=YQnSO{7nFvyBP5t6X^9!i_C}W~^ +zK33rR_ox+nh6?)TqXX@pbA&=14KJ_`#=T>HwT{72)DNLLXgJ0V{8k)})u`tiYkn0s +zNB%0$nS}AQr@re3{!`Aws2O%mH7mCVwKa!OU(27csD^TrLJ1l&jWbJL3bi5)P)pbm +zzru02N$u~MpX-022HteMIS(db81?oOjBlfsdJ!h!KbVgFCz=B-_atIKOVN{pf~q%a +ziN~Y%ay=>rKDVAmWx)efaE44aRz^M74RwyBqGDwSD$Tw@J$Dv0vHPg^1y5ls)DTWV +ze;BN4ZH;Olfcjp0sQg}xdhh@$E3TpLdya~cJX1}SN25No-B8a>ux>^_^`9}2&Qr;M +zby#4UX^2I2*c@NMo~Vw;;~-px>M+lA(vCf^jp`_VhFO6`^i!XR`ZlE7`eD>WGEnb( +zX{NEvO!8mp)rbZ^CZJYgjCBFlrM?-pw11+OI`Vz1y-?XQ4nuIRZC{Dn%Dt#9 +zIg0B494gHpc(x&UmboDm6{V4=4y&N{unB6(yV?41)E`Wyp$4$cUO$CexeRNr*=B_* +zp^o%s=*QKliF@Br(1~;o^+&MFsQkW<+wci4!cXVW&XPAxbDcfZ+srlh<(_ArFM`pu +zhhax-jh%1<`q7vOHb-FbTwMUEbJbr}#;>1O+^8m*$ +zHh+vBvBa2jsq6ei`#L<1W0vu2m=$ZW+;whHpS{BLGjb*O(cW$q=Y#V9)ekt~XqbT$ +zsPA24{^sJfwdMc`TIZU70kO_S&F~x4z>lM1<&15=iCW@EsF=x>ZtjajJr`r^aTxgT +z{~A&V;zDy&bhpOrI1CjN@1Z_UX{ac^Vz1vp?fFyu0;ATOn7C@qK&A5|ThF?|^p_X4 +zvf&%Ze+64*8nmZzsC@2>Y9EZ6*(h6|j_PopZQo%15;d?RsOQgOAc$@I6Kn8?W(9Jh +zt{3|-+B{f_26YgFTGE=R^r(+onNIe4!q$z0i+8=H;nSjwmjC} +ztoF&2)uGBW|KB|eDC?k5`)bO{ah11I*3zr|4Q1`4$`>i?L{r)MC@{FpflB_g6ASa^ +z52s1v*Z*ApuiK&nSK_!rYz6-J-wT@tu5{#z7D4~}@0p%yVT$a$\n" + "Language-Team: Persian\n" ++"Language: \n" + "MIME-Version: 1.0\n" + "Content-Type: text/plain; charset=UTF-8\n" + "Content-Transfer-Encoding: 8bit\n" +@@ -1193,8 +1194,8 @@ msgid "" + msgstr "" + "می‌توانید «واسط‌های اضافی» وی‌ال‌سی را انتخاب کنید. این واسط‌ها در کنار واسط اصلی " + "در پس‌زمینه راه‌اندازی خواهند شد. فهرستی از پیمانه‌های واسط ایجاد کنید که با " +-"ویرگول از یکدیگر جدا شده‌اند. (مقادیر معمول «rc» (کنترل از راه دور)" +-"، ‏«http»، ‏‏«gedtures» و ... هستند)" ++"ویرگول از یکدیگر جدا شده‌اند. (مقادیر معمول «rc» (کنترل از راه دور)، ‏«http»،" ++" ‏‏«gedtures» و ... هستند)" + + #: src/libvlc.h:82 + msgid "You can select control interfaces for VLC." +@@ -6409,8 +6410,8 @@ msgstr "" + #: modules/audio_filter/equalizer.c:58 + msgid "" + "Don't use presets, but manually specified bands. You need to provide 10 " +-"values between -20dB and 20dB, separated by spaces, e.g. \"0 2 4 2 0 -2 -4 -" +-"2 0\"" ++"values between -20dB and 20dB, separated by spaces, e.g. \"0 2 4 2 0 -2 -4 " ++"-2 0\"" + msgstr "" + + #: modules/audio_filter/equalizer.c:62 +@@ -7108,8 +7109,8 @@ msgid "" + "16 no padding\n" + "32 ac vlc\n" + "64 Qpel chroma.\n" +-"This must be the sum of the values. For example, to fix \"ac vlc\" and \"ump4" +-"\", enter 40." ++"This must be the sum of the values. For example, to fix \"ac vlc\" and " ++"\"ump4\", enter 40." + msgstr "" + + #: modules/codec/ffmpeg/ffmpeg.h:115 modules/codec/ffmpeg/ffmpeg.h:248 +@@ -13024,8 +13025,8 @@ msgid "" + "Select the desired modules. For more advanced control, the resulting \"chain" + "\" can be modified." + msgstr "" +-"پیمانه‌های مورد نظرتان را انتخاب کنید. برای کنترل پیشرفته‌تر، می‌توانید «زنجیرهٔ» " +-"حاصل را تغییر دهید." ++"پیمانه‌های مورد نظرتان را انتخاب کنید. برای کنترل پیشرفته‌تر، می‌توانید " ++"«زنجیرهٔ» حاصل را تغییر دهید." + + #: modules/gui/wxwidgets/dialogs/streamout.cpp:167 + msgid "Stream output MRL" +diff --git a/po/fr.gmo b/po/fr.gmo +index 3828540157572374f0847cbd04df27c1358a1b55..21ae84dbab6b88bb690e4be324d5dc107eaaca9f 100644 +GIT binary patch +delta 27284 +zcmXZlcbrW}AII^--W9|utM|n&t1VVveObLk4N-$=(R-8}z1I*SghUBJwCGQWAW@=s +z(YqiLB%*sh-}{?Cp4WTklsPlM`OTbrcUPWm3)BC)F#WpKUH$k(o;NE+h?mauyfa}T +zULU-VvDi9gh?gH{;1=ADS+H-a5HABx#Z0&q-^Cr63=cR@Vi@&HSPbvuaLk@M#2be5 +zQ-}CoD1}UE?7|!vMZFN_z($xC`=B~F7qj8_sE!=OGI$GhUykq)uP|0a9q;R0h0)Y+ +zVgU?G8{*}`GHHD)wBkS-4vfGg_?fHE!=%(#;XAm|o&OOv(mn3{Vbnm*psu@!Dexwy +z#Ydrq4ycAcLG^eXs-czc_-0H_eGlsXBd8Ai +zfqKv*RL7oT1io^|v!@U7Qd9SHQ^-Z3I4aalQFAs7Q{g032foB2xEwX-XHnPvjq1=F +zRHTw;2=T%(EkXQEcalq@y{OHh&9iHh72RPtRwO=%#jC36r-X3cG9AfFFWe~VyKA4yYsctS5KQz&|Gyy^>`xI +z#5p(#uiz@|mfeyyLk@djEUxEx0?x+&Py?Bg(_H9Whw8v?e2XVhQ+qOk^&dsyVuWRB +z;#}7Aq|R_ukFz-=Q6nmZ+7BvYb8L!A;x(uwJ%+l^%N^ongruk`ia#^2bi9LKpr*!;3h|2L64cb5 +z#Zq_;b7CexuZ6x0s;8|{4Glo`csOdLvr!@Y4i(}J?)Y9;KaWK@ejiI>wtP0yMyS=( +z1=WEbsCEXS_62{0D~v;3I0Y-A>JsQgaa_FP>5F+M`@QN0;5p=>59AAK?@i;1U$zm+aE2CCP +zHPn947M0B1ur&_Bx_Ay1*{CA6A5=iCmUdW0>%Sibt@}+l9xtLo)Ul{t*aH>15m*Z+ +zp*EaT*b=X!B2}@N&1oal6!yjJIK(;Ex!IjRh2dKN7gfN&P|1=w*0$7As0YVmO{|N0 +z(C63$zr%s}2DR=76t_A31T~dD>i#jP4o!2;K@D&r`bwtd6y!Ek_Wy?U@E$6Q%apJO +zx56aUdt)$(umJTDsMWFxWAPWvkI%3p<}PXNj7R0rDpc|vE6MuT%is(L)Zi^tM;@X^ +z>XkCnq0UERQ!Ivaa6IbelcRKqR~ZYSHn5LTQ#2TL-#FANnvROdQq+BGO0)iTVmk+P +z<5A~DcflX7{x7OyiObkjrNe^M^PyhfjZp*Xg-Xg#Q4yJkio_47B);U%r!Q-fF6vXz +z4GmB?baVAFuD%GBMBCi)v(Cp@mE&P?c3(qOmVbRD)$uk*JT#=I*Fu?C%_knvzji0oR~b!2?ue9-#)3 +ztfDRV?3i8azZwN~pgoqro~V&7!S`@G_QZE9g?RBe1QpsH_yL~BN?4+@&1rv(pgs$g +zY#UJ>-Rb-Vm6V4tyVn0{3R-qg+y&uPY;H26Mw|~7+5~5NR7ibyejaL>Zb3!n0_uS` +zP|NHdDx!a*k~C4g4LCLWx*;2dE*ObQ#;K?qR-hW#hHCI9RHS}IjqC*Wz>DsD?W)%C +zhNuX(#cDVZ)!zTGI37YxsaK8luQ|$4%_5K$^}smP@yf2AfJ&Y^sHAL$dO!zPAL8oc +zQ4w2+y8lPi&iFHGpueE*JB%98&1$}lnpNe}tE?KVHQ~HSAqcyrx~Z5)*UWUr#{~+K3AMan#G`EGh!`Pz@%lWe?1R +z>QDh^Mbt*p2=)4H=j@G|^AYa+OjINmp$4!Nx!(8IQ_zJ!qattu71DdC3;#uZ&`4a{ +zjz^-Bun6jbVm_HB71X|A2x*`4ZJ|SRI?=%+B1{ +zk>dqXk(z-D`S+-hZ^8)t5w#32p(2u~u4Q>DEI~aAmHi)JJ)DLyTK^X*l*4!H*@ZQ* +zEcIbn5;wc!53maLT=ng`4$isG!NhZk`hC>(SsI3TpJPc>ZvBRuqT|lX4O#!g +zIB=f>vP&cD$SqW8|HLT#2es_7G`1iRrQ +zY|1M(Vf}05?{Pp4Hb>Qa;3*t{ib(CIHkTbSFZCg)Rqzddjhk>kHfv_dn)7{o4Oek~ +zfVDW^50!j7P&u;Sr=XFZL1p}<5`;94Y@G*Ef%#L6Hr;-1l8d-s1bKUC2>D2 +zgg$BtS7UGrPy;xQdanPBg68loYJG;cunRMyB9h(JV=;ny8B_;bpdQ>G)!;DHjO;H`%xV^;rs)&5qWJba+y#AERG|!{wqL&hn_aZH5|ID=df;Q61lek+=hI;dSiE)a?I|^{>}u=??bVY>IktKU7C1 +zJ3m7;Fb@^dofw5jo&TaDkhP0r;!_|kQa_x(b?)|@j0~*0M*a4TL +zZg}@2>qu5SMm;yG!6&G#IINS^3!pxXR>L^#jAd{!mcBT +z4rtCdpyp-=Y7P%z1YSjDaiT8Pv5csW9MwQVS3BPv)j&s7gCkKP{@S?~BdG6m^(&}|K15CBKd1q`M6I?o +z-E6A;EEF^svCh({5SB-EY!Ir)qfyIq5o#;l=+56n<;LHrWtskCi%=d^M2n*ySP_+5 +zHJojc_I+;<1%-Mvw!|;7IzC11con+a+pC##vU3-zWB;O(GEEQbNN&_fYoPXv)|i=W +z?}Oc_Pwr{o6`x|f)_>_0=cwc?G}v;W4l0*gVt$;1>c}ovzdV@ruMj5v#2U(pC8?K0Z73gOF&vD_ +z{*|bX?L#Hk4b&=mhzfC{A(o_Ba2@p`s19C54fH8i#>7KIyc$?_DC<9l!ekDV#_gyJ +zAEP4i21{Y?VYZA~pq5=b)N<{GT4tZP^S(Pi4wW-Aumqk!MfjcJHifxS8(evxLNy9? +zQK6ZMO>iyd#K5O^JQDRGH6CkX6V%ARLS^+jRAjO;AVo$$*eHkb&QG1&F@obyUER+( +z!XDHZ3v!|#YJ`hWAzg!gaUZI|xRG}KK-7AlgUa@$SO8C +z%C!j?+{l7;*55`78tHGS25zE4`vi4kk})>-8Bw{B12shjP)X`zSvHs{sGaWDu{O6y +zF^c*X%!{Gp?0g|-NldNvUy*{AM*|EdlTJ|gQ4g4b+AzLCt%6;s5nRHB_!t-A%<f71<^pF`mahM`(*ne@rT%v`c2dYwWe71x4_^WqL$GF +zEP+c>zv+Md`F6zstu?(71IKTn*H1~8{9wkuA +zu_@}peyAz<92Kdps5#w*nz}ovj-{Dl7IM}=ZQ1QnxiJitYh#@YeG1y4wxH(nFuum_ +zGef)^*zGf0&-G{7FC1Fn`y3zXJdd%|i_Nx;sw3)S_k8EF&zU0XYv+V`hq&(a7xt^1 +z#dEDge*JkiqW4i7M_bgg>4r+OiKq_{3sG~t3>ASNQMs}gwQA0x?!SW?>0{?h)T#-5 +zX~~!xl?z#r>wGVcg66O)YEB!X*6%n}=oX?Lv=x;+hfob(amVjF-=d}@?R@J%9BMU<0;x#KVs&-ZFm&^qmaibN08NQa`bdK#(&d)@i-sF2@r^{39j!VvE- +zj)$YBDDfgQIcntLsCJ5=23QUKXbR0KC;}s~63#_+=p5$5>!=4N|JrgRGwS*>sH|^* +zn)7aW4f~;%Thnj&{UOOW9o3;MOYFMbsCvOAtbfgMaSkYi^-!y!IVyBLQ9U1rT4qa7 +z4?K(-$z9Y)UZXmcW~uFL(Wv_iqmnrR)ow@BG9QAvf67wdvilnjXiiq38rq7=`lG0Q +z;0(6Ge_XxsGW(@fA5=1}aUQ`!)F0v!%=)cuXg^^d>XFN>y_%?wb@E+dEUJe~QCsSE +z)P{2v2V=;J5N|0CL)CMAXM6saxSo34N=wQISeSa@RTi<9xRCl-tc#JWZ8h|9`kN_K +z<-|*D&RkXcp5JaKCI{Bo@_Vz+<}A~C3tcW$M2cf0Z0L?J#VXV{qmuWT^W6>BP7YK~ +zl|fBGJTe8o*Tfy@Y6rZbu0F%n7o&1x3u-;@M!gjuqNeC2(qAv}50+G+sN-R%2c^T+ +zm={aoNmTMB->7z2f8i7~qMR7O3aAF+F$Qa)mgQiKz;URlT8_&49nN1-_a8;Q#!sOh +z^gC+LzmB^8B`OkuO(eJ0e@Y6mSP=7J8`K<*LoLsZs19C2HT=?Vp9B=ofmmQYXwTTu`A85O#Hs1cnK4UgTyOmrY-is5~zq( +zLbX%f*#Pz6=2#QEqT1Vl5x8Xw>tAzu&Yif0YUmy+%TsQ-5gN%rrBnzp)qQtU!WrN1Lng0s14^H +zs)0AC5r=HIEKh-|=S6j}h_gIaqh1TO+NPm)+7mv7$`r!?XFY3-C8g%HF64 +z3_&fQ@u;0_Co1IEQ4Rm$e1zH&pQGLZnRl9vQ6rv;iritO!@hTdf*QJw8rh$y4tYP> +zGE0Fx_6trw!VCFfNN1xuG7t3)>Ic+@^%n*||39Xn +z5r^!yUnr(RHPj8eU_aD@FQRfI#U48!kIL#gm>WBw&W}U2_akbf+K(FXWztE|SEd{;bi=jeS8AoAlT%U-!!g|#GU+srehjBFZ%=;`!zrxDYuVGuvy+6e3j-yZm +z_zQo=<_GLYJXsFfkNXE6Wc?51#1jtm!*0KYciAWR#XnKY+>bbG>op#=eA=T%)Xg~* +zl|)le8_HswiQAlY&e`(1gxWv;MkQm|d5cg{RE|}`2yBf_@KdBizIT#>LVnfx7!`rQ +z@Ak9cBB*6K3zeK(Q6HUlqvrM+D%4L=8&mQN7J(RN9G2#Ib<`^Q6xGfed`IhlD+M*M +z3$;<4!f3pMdIzMwXb~!ey0I=!!)AB@Z=oW$_L2=`3u^fuaGt>66rk?Eidv@kFcr`D +zA}-sv)S{>xKSo8QzpIZ!Z79=Gb2ta}z$K_TT!osV!*~~OpxQZf#qK+e+JG*irs63o +zQt7U;{uRnH6e{5Rs1F{WqaL^i^>O4b5(Dp>l;b2q@{*&`K>Nz)19e(hb +z^&deY*%Rwo0aQcvP$OxA3T{m9U2BZNp{OKV>5l)7iqtbyGI~#Kic+FRnjf_R +zRd+T-UFWxQ2fCr&`vXu98t0BLMJ4B2REJJtLA;B~k#zsrvMP+aKNhu`s-ivzypIa` +z5LDzwqaOSj5^3N2nnGy~EJyY9ikr$VI +z3jJkN#9p8xmjAg;af_g=zjhRYbBwLHU<&HSKTsVAePItyj-{w)M|Li+2`c3MQ8_aV +z)v?j2`@TVq{9ET*=T_&>m|5%pAO&UnP1J}UqDB<<(w18!YR4+?>TO(oAZk_2MRjR7%vHkTEh +z^-$Nh!YYY)8=^Y2`mOCB`%w`(gi6Abs0dwt%lg*_bAtmD@D5JJ-kdIkZ?F#*OcV%y +zZ~qEEqkaN=<41`D!6`X|si=pA1cFJI9W|iJs0Y_XE#C&HB>vDjFvJf8lWH;t)U$=C +z8@@x`u+F&~m3*h%`8$}G`a{&zr4QHxbE0<0e5epta`ncj_CH3oGZ59miM~596SaJn +zqLOBlyI?0Ow7w}>b*bxoj`Ca{tgw|wWyKpbslo(PdR@_CFfN;?|Z3} +zTF5h@Mv@bir7@^?!(mkDen*Awma9KQMJ6PfU6%&6A?3gdSQ-oC0F1^Zr~w|rVt5l% +z>;0c0xg}9PEYFEHsFBXcqPPb&HUFSG5c+N)xEeBHEcJ%i7{_2AJcoKM*G>`edg0fo +zw`J-u8+k$0eJ!Qd|1=7E(9fv#{}?rQX;RvQqj4zpvZ$omgmHKPcVZxw&G{ZwJEyTY +zCP^I#{v|~mmY_Zob^m76sym3j4jiG77_Xy}?-nk_hp3RwN@H`n8nvfyL^W_0o8blg +z3}eGB2Yx|?{CCt8hNQI|NsYQM18S$tk~ZK6A5ew^`b9xQ{Dl)2)7g|PP9F&VBJn)d +zTD*ZmRXGotS$ +z$!-mWqefT|wcIMWdVN%c+M(WdgYYYy>gok^SjVd1*Bq~f>exM01VVD!fKuQ`)FV(k +z;W!M_`d>^zS-B21@{OoD+VARjT>T|#q*)^D0nw;At%B-cGfa#Hem4QfBPvE;J|rQ(gkwa22>EWd>Ug~R!2L$OTB;YfcGV~&J*zT8hwTu>1)); +zlSEp_a-tqs0xx5I)TidcQPys841WHvOhK>PfvBx>32NC~L(OH5yf!saSdw~a)cWm# +z18_2` +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 +zQc%*(2p-@I1ZwUVp&qyawZ3Br(wJQ3eMm`jE +z{dClIvrxIP4mH4o==Y{@$(^X5)v~t>>INT`R0~kqz8|$pj$$#qf?5@6vRO7qpc*da +ztc6PER+s`iqaxJbIVD@D9}MYI4rp0z#$31;^?=)`kY~zn4Hs}$KsERt>b};fj(m)| +zeu#65b0I3i>o5;)MJ>OJ*?k-7V-9F!sd89@IZ-_=jA}Rmm1Ip&t7Ix_>Q-YWER@rx +zC;`=>4^R>8f_h1fb>|nL+FkEF;8Rco*HByR3)BsnBJ9CMP$Q~{>fn2*WNe3;<36Y) +z9gDheCTfFOftrfFsO!$6o^u~_Vj!0d#E+z)3#+2G#Ac{u8-Z&0b5sN0ppt8oJHHb( +zw!@UWgo;GQ+&1DU)bR?)hUs-M`TY-tWE|*)dcY^BWE+JV`9xQrkLt)` +zcYHG{l>1S0dDWeNih6MJJT8)`^F>e*NI=wP@(-1YvN&NhDfWob*^we +zLcJy9qRdLD4pl=XXDfHSE2=|1F&c-VBE1aXQ4$@c(2Je#tg}YG(BOBtEzzM~JI)u# +z9~%5g=VW}3dgcP5!7miua0B%_I0nBg7#jR7Sk6Kg;(4g7Uxb?T6pQ0rR6B=a +zSpQ0*yByGsPp}?lE@Ji0sAQaqddn@w!gv&woUgGHCMy~m{HD|!l{0ryN&N!Vfv{qs +z!H;HnP)XVhm2)2z^DQ*JIG_+s#|T`Dio`Kj{|hyu)Uoy!%Yf>59aP7gp*lXy)eoXN +z@VBdn6b}u4!pe_|zH25QwY!yR;f1a}nCvd!ErO@EF*qvB~di}~IBS}01UsJCdZ#hw=YN$7tdI!{7 +z@)b_T($zw}wLIV3Ltz{T`XyL)zCg`&iRzY=AEH7$3H#sRRZ$YvP(@V3@vh$6 +zo$rrI(&6s-L`+P5Di*{U7+n89x(oI?_oHq+gnEgb!_oLJsso?YvJQK^H0HsYby)v;V0RAa0sT-n4#MDicJ+g(4jx5~{50zNKT!Ao +ziMsC}=X2Clyg^M-lDbw;g__!osN;Ej3Tn6zs)1Nk!=+uloU^h!o`7n&7N)?4sFz6_ +zcYXpEp+3dce?)a~7i#4DP|vx8`gq^|0R`=Jsp{E-V^BL+ENbo(urap7lDH8|;604N +zob_$l)^|=o?FYM^fd-@FPL7W|nP^Mg$;2h%Qq=vhXXgPQcK#?XqEp}TJ;FlxUtmj* +Ju+T$Q{tve<6A}Ob + +delta 27271 +zcmXZlcbrW}AII^--mCZCt+IM&S>3XFCy3q&qDL=B3lTzy7ByP*CrXeg(Yxqf5K%(( +z9ue_;zV|nOJg@heIp@ro`ORN<=Rr(N`4kq#>o@|FB@6S0>4o<>M_#LVvJ246`q3%nbBFrm@rBL;qoeMD!<%^gP +zy_8{I4#=Ox^eL*xLr@JZaP_M&0p%^I`}d$a@Ehtu +zw^1FtkKy>l)hA0G<|U)-r{*9V2f0w8u7R4f-k20epgQms7RI@#IX{ZJ?iQ*;&rp$i +zk0~%tnlLXXrbl(80xDuvFbUR0BH(+i?7(a1F6e~Wxu6%S!D*-l=AwGM2sPsMsF7|* +zbz~pvzSFM$r7Qo7>TuSy7V;=(IZV#;y-FNZ<$^}22+YBgxnHMz`sxf@w1xKoJ&z1*o+_WAZlt4hO_=7I5-(@S^5eU +zfp^YeHtTUxXIj*VvZ6v*96!bys3cyDO45C(k-osR_zpEiDYM%Y%V +zMQuEzFg-59B9mSG( +z4zprHKbM6*KdPqTw^`NGG5|HXjw@<*t6KD<8)q)L+L)Oq$z9S{1c=TB178 +z4%JR~)V|>NcLzgI7y4Kp$Du;B7aQXRRF34!W4Tcu74kXGZ8(ES{f4`#@0%~otA)k# +zhk0Xg1P(y2K$uq=1|l8xz4aWFqvEbrcsUB%2%2LF>Zf8U+>Z*~zo;xPUdUESDb#+@ +z2$jsOu{HL@I(Q5f*>r_%e<*@lEsZf+>%R*JTK6k)0-i*Ls96!aupKIN{jnyFKy5gO +zuqB>HMXG2~o71YODeR1yv8QvAbCo-P2vcbNpVR^Vfl8KFs4X>bF?(<%)}UMw^`I~C +zBb<)|@fj*2pA@$_{S-Bo{ZJhrgzC^}=S0*1r=hQ8n#+M)i^~3Aur6LhWpVxz_Tc&$ +zhjK>@B@yPM+#j`C7Gg2{3G?Cu?1ZT!t(~E$99oDKyI +zJn1g@&6V$=I`#@RRdJ)jy!@B}_4=-c8b}A!*4-Bsk;$k?e2+@vQ|^4c(iZ6)J_ov? +zGU|rbt~|(B`whv%;wR>!7yw4yb{Bfm)_ZP&u#; +ziKy?L;Xre78#NVAQ7?;Nc`K(uHJBe2iD*;1f)XO2$#B8|I-JSc__KBkIPVQ6oEmJ@KSFU%rZU +zJO&lPMi_(LQ0@H>i{mcTl)k9K`qv!AkFf|OK|Qb_s=l}@N1>9Z0xBtMq8`xHm3zAK +zP*lXGq3-_ywKM*R8t6}``*x!SbTNkYuaR7L7u>^85~8LgSk;myC+fN=)ZA4@HC!9j +zvHH#ysQWvk9xxQukd1FK2WogLDogjE8n}#_^T(*HO<2tyloi!bKGcR( +z3N^Bts0TJg&GE;04ZGs+Shc#nD{|Ga>lR>a>iuOL=s_z`q2G_%;f|sra1GVqzo-W$ +ztZ5y}>@14fNUEYZLRWHK5I?_RnDwt^XSwXk?F3+3nS~IZotE +zjh(2@f{N5wRLH+Wg?uH3;}581cnTGfm#8d{UB~v7bg1mFi*<1{7Sj4Z$$_@u|F8s> +zscRpRdSfKzRjB$K7>%jwS-Giml5;m!<@_rwjAiRvJ3UbMFGuZ+S1=sYHDLX#how2t +zi0Y#@mS(Qp7ZtK0sC{9MtKa0@j>?sNu6zLtQNE74K5@e^ZzkqJ<<>8#DcbKm-H`P^ +zoQmsI$d-+)BbQL2{T(ClPt>wY+}Nfl4Qh_FqaIWWb-oc+!Ir28EyB{c78Q}ZsO!^w +zWK&-BBi6r0UWE!ZSQ}Mthv)DUR7A=*vAJx9xhVHUEz24B9j?T~ShJ}mYl>#}8ZP0i +zi#0jl1(kg3Q8}{R=RhMpg39t!s2)Cd^@%^W8&YBDTP$ihMxnC4I;z7BQ6p}SO5!e9 +z0Q;e)a1n;405yR9sOS0*IM5tEN3G9bbGtABDk8~TIRe8e=SOw04(h>OQ4RJ+?P#-5 +zky(fFW3i#3a_m?OOTL?^smj_i^!>p1@^GMv{-_5IM~z?_7QqGX{0UUU7g3>mfZ8|S +zqLMB_E9*dMRD>F!&bLKHpbs|2si?@@!gN~y$y!@z^Wp+dR7TCw?^qHaphlX#jV;G~ +zs3dELnu2Ah(Erbsx1%C)!1)_$BYJ^~T*9_Cz+5<5>%SNW+R1)I&B=b$4aZOqxaE9= +z8tEHU#B#N>Wfh3*mlTk+06qG`(o@%H8wsYk^s9gK9lY9S9r9vZ^fgN!! +z>W2SN9ZAwT%sYjtQ4QWjZN**}D`!T17%hcmumwipOw{^6f%@ncud7XAZPZkZ?&@18 +z=To6MUye$?^{6@Af#G--mBlYn9ZT?uJvamE`Vy!PRKhUqh+0)$QOP$H)!}bZAIrC( +zt~=v%paw3W=K2q;jSo=`M0Kyv0z++VI +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 +z)zA}EN8TUbLWGqK{ +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 +zs(~4(f6snzu7^z9@>?-D=Li+>O +zz}?RHIj!8tInQ|;^_DCcVHQJms1zzW>%00^s1CKqJlGo*={XozNwk-P-t2rwon>+d +zL*L<6=Lvf4IG;IhF!Ynok=TH8qI|*77mC)nk@6KBhhOCnhJFi{qJV{XGAiq*qvm`r +zmd0()ml*o@KMNJKEind_6m4C3Bx*{&MQt2QP|3B!oxkMjU!az4;zBmZg;8_d1T{4+ +zQTO-7;y4M_&aOhNecHWE_Qh%gw}sxEGb2Pq7RBi-WLZ5zCpY +zsO*1)>VQ`?82V_I29=~WQ91WtFuDlb~fm^Qp8go(3RNNv^1=Zdlp93wQ5vaKujmrLs*aN@DdH63j#W^MTz=2Qj +zf7mlJ=-t6gCG9mGyOfnL;xX!XMp?%umNqZqPt-@033?~czs|vN4%U?ohQ4$TEf);^ +z3ib+~r@nOgVCcJA(h9-QpXV&ZFR0H`F&O$5y8)vqM^_>lN#e2io^r{`mJ=na1id+w +zo1)&5PjC|EiwSx^@O*Cz2ji*eQq{8a5o)e;SF@!22o>VqH~?p&B9ySYExQ!Xw5a+_ +zsQYuEmSY2q!cS1SvltcelNkE{|2WHm*6|(ZUznTn6IV`K!_H?yJs=xuRpdc6R20>4 +zq$_uH=ewekw2!MFjrj7GM+T!h +zG8&abpJQVD%GJ+94RDb=zYNvRS`2;u-{ekgbtiVALU$1LQRzBrxx7U!r?6VKg{DV6 +zxFG5QMV%#`W!?Eot{mg6iE6K2E!Mvp_?QYUhgPVbb#NDUbM?JY*L{ZCq6a%CVjjwK +zQFFcz^%i}K>QIu}W=d4()1j7mM$Ca_YqS3Kz_wKA0bNixcE`|qcIBO@4(>(0JPxC- +z{|$Bj@2LC!bUs8)#WU0ty>;c-b!=)Apz7239H`-}s0JcX4d-*^LeAo@J_^-vIZT8x +zsFz7YcYYWarmS|=&JU;#ZbFTG8|pb%P#^C*+~7bvUF^DcLpIdT6@i-jC~S<4F%nl` +z3A~1dFhxCEw$aXEsQqBG^G&_6WzJ40b2ir2GG}9#C^KPL;xPUf*g7n6@L2T!0g&|v +AssI20 + +diff --git a/po/fr.po b/po/fr.po +index 569d6b6..90eb417 100644 +--- a/po/fr.po ++++ b/po/fr.po +@@ -15,6 +15,7 @@ msgstr "" + "PO-Revision-Date: 2006-11-29 19:46+0100\n" + "Last-Translator: Christophe Mutricy \n" + "Language-Team: French \n" ++"Language: fr\n" + "MIME-Version: 1.0\n" + "Content-Type: text/plain; charset=UTF-8\n" + "Content-Transfer-Encoding: 8bit\n" +@@ -266,9 +267,9 @@ msgid "" + msgstr "" + "Le mécanisme de flux de sortie permet à VLC d'agir comme serveur de " + "diffusion ou de sauvegarder des flux entrants.\n" +-"Les flux sont multiplexés et envoyés dans un « module de sortie », permettant " +-"soit de sauvegarder le flux dans un fichier, soit de le diffuser (par UDP, " +-"HTTP, RTP/RTSP…).\n" ++"Les flux sont multiplexés et envoyés dans un « module de sortie », " ++"permettant soit de sauvegarder le flux dans un fichier, soit de le diffuser " ++"(par UDP, HTTP, RTP/RTSP…).\n" + "Les modules du flux de sortie permettent de réaliser du traitement sur le " + "flux (transcodage, duplication…)." + +@@ -1405,8 +1406,8 @@ msgid "" + "You can force the audio output frequency here. Common values are -1 " + "(default), 48000, 44100, 32000, 22050, 16000, 11025, 8000." + msgstr "" +-"Vous pouvez forcer la fréquence de sortie audio. Les valeurs courantes sont -" +-"1 (par défaut), 48000, 44100, 32000, 22050, 16000, 11025, 8000." ++"Vous pouvez forcer la fréquence de sortie audio. Les valeurs courantes sont " ++"-1 (par défaut), 48000, 44100, 32000, 22050, 16000, 11025, 8000." + + #: src/libvlc.h:171 + msgid "High quality audio resampling" +@@ -6776,8 +6777,8 @@ msgstr "Gain des différentes bandes" + #, fuzzy + msgid "" + "Don't use presets, but manually specified bands. You need to provide 10 " +-"values between -20dB and 20dB, separated by spaces, e.g. \"0 2 4 2 0 -2 -4 -" +-"2 0\"" ++"values between -20dB and 20dB, separated by spaces, e.g. \"0 2 4 2 0 -2 -4 " ++"-2 0\"" + msgstr "" + "Ne pas utiliser de préréglages, mais régler manuellement les bandes. Vous " + "devez donner 10 valeurs entre -20 et 20, séparées par des espaces, comme \"0 " +@@ -7126,8 +7127,8 @@ msgid "" + "One of \"u8\", \"s8\", \"u16\", \"s16\", \"u16_le\", \"s16_le\", \"u16_be\", " + "\"s16_be\", \"fixed32\", \"float32\" or \"spdif\"" + msgstr "" +-"Un parmi « u8 », « s8 », « u16 », « s16 », « u16_le », « s16_le », « u16_be», « " +-"s16_be », « fixed32 », « float32 » ou « spdif »" ++"Un parmi « u8 », « s8 », « u16 », « s16 », « u16_le », « s16_le », « " ++"u16_be», « s16_be », « fixed32 », « float32 » ou « spdif »" + + #: modules/audio_output/file.c:85 + msgid "Number of output channels" +@@ -7509,8 +7510,8 @@ msgid "" + "16 no padding\n" + "32 ac vlc\n" + "64 Qpel chroma.\n" +-"This must be the sum of the values. For example, to fix \"ac vlc\" and \"ump4" +-"\", enter 40." ++"This must be the sum of the values. For example, to fix \"ac vlc\" and " ++"\"ump4\", enter 40." + msgstr "" + "Essayer de corriger certains problèmes\n" + "1 autodetect\n" +@@ -9189,8 +9190,8 @@ msgid "" + "annoying when you want to stop VLC and no video window is open." + msgstr "" + "Par défaut, l’interface rc lancera une interface de commande DOS. En " +-"activant le mode « quiet », ce ne sera pas fait, mais cela peut être ennuyeux " +-"si vous voulez arrêter VLC alors qu’aucune vidéo n’est affichée." ++"activant le mode « quiet », ce ne sera pas fait, mais cela peut être " ++"ennuyeux si vous voulez arrêter VLC alors qu’aucune vidéo n’est affichée." + + #: modules/control/rc.c:186 + msgid "RC" +@@ -9299,7 +9300,8 @@ msgstr "| chapter_p . . . . . . . . chapitre précédant" + #: modules/control/rc.c:926 + #, fuzzy + msgid "| seek X . seek in seconds, for instance `seek 12'" +-msgstr "| seek X . . . . . . . . . . .se déplacer, en secondes, ex. « seek 12 »" ++msgstr "" ++"| seek X . . . . . . . . . . .se déplacer, en secondes, ex. « seek 12 »" + + #: modules/control/rc.c:927 + #, fuzzy +@@ -15125,8 +15127,8 @@ msgid "" + "Specify the log format. Available choices are \"text\" (default), \"html\", " + "and \"syslog\" (special mode to send to syslog instead of file." + msgstr "" +-"Sélectionner le format d’enregistrement, « text » (défaut),« html » ou « syslog " +-"» (pour envoyer dans le syslog au lieu d'un fichier)." ++"Sélectionner le format d’enregistrement, « text » (défaut),« html » ou « " ++"syslog » (pour envoyer dans le syslog au lieu d'un fichier)." + + #: modules/misc/logger.c:124 + msgid "" +@@ -15397,8 +15399,8 @@ msgid "" + "downloads and allow the user to start previewing the file while it is " + "downloading." + msgstr "" +-"Lorsque cette option est activée, des fichiers « Fast start » sont créés. Ces " +-"fichiers sont optimisés pour le téléchargement, ils permettent à " ++"Lorsque cette option est activée, des fichiers « Fast start » sont créés. " ++"Ces fichiers sont optimisés pour le téléchargement, ils permettent à " + "l’utilisateur de commencer à lire le fichier pendant son téléchargement." + + #: modules/mux/mp4.c:57 +@@ -16780,8 +16782,8 @@ msgid "" + "Distort mode, one of \"wave\", \"ripple\", \"gradient\", \"edge\", \"hough\" " + "and \"psychedelic\"." + msgstr "" +-"Mode de distorsion, « wave », « ripple », « gradient », « edge », « ough » ou « " +-"psychedelic »." ++"Mode de distorsion, « wave », « ripple », « gradient », « edge », « ough » " ++"ou « psychedelic »." + + #: modules/video_filter/distort.c:67 + msgid "Gradient image type" +@@ -17490,8 +17492,8 @@ msgid "" + "Time format string (%Y = year, %m = month, %d = day, %H = hour, %M = minute, " + "%S = second)." + msgstr "" +-"Format de l’heure (%Y = an, %m = mois, %d = jour, %H = heure, %M = minute,%" +-"S = seconde)." ++"Format de l’heure (%Y = an, %m = mois, %d = jour, %H = heure, %M = minute," ++"%S = seconde)." + + #: modules/video_filter/time.c:74 + msgid "X offset, from the left screen edge" +@@ -20116,8 +20118,8 @@ msgstr "Interface XOSD" + #, fuzzy + #~ msgid "Distort mode, one of \"gradient\", \"edge\" and \"hough\"." + #~ msgstr "" +-#~ "Mode de distorsion, « wave », « ripple », « gradient », « edge », « ough » ou « " +-#~ "psychedelic »." ++#~ "Mode de distorsion, « wave », « ripple », « gradient », « edge », « ough " ++#~ "» ou « psychedelic »." + + #, fuzzy + #~ msgid "Gradient video filter" +@@ -21790,8 +21792,8 @@ msgstr "Interface XOSD" + #~ "the other ones." + #~ msgstr "" + #~ "Ceci vous permet de sélectionner une liste de décodeurs prioritaires. Par " +-#~ "exemple, si vous mettez « dummy,a52 », VLC essaiera les décodeurs dummy et " +-#~ "a52 avant d’essayer les autres." ++#~ "exemple, si vous mettez « dummy,a52 », VLC essaiera les décodeurs dummy " ++#~ "et a52 avant d’essayer les autres." + + #~ msgid "This is a legacy entry to let you configure access filter modules." + #~ msgstr "" +@@ -22020,8 +22022,8 @@ msgstr "Interface XOSD" + #~ "'fullscreen'." + #~ msgstr "" + #~ "Indiquez un numéro correspondant à un écran dans le menu de sélection " +-#~ "Vidéo et cet écran sera utilisé a priori comme écran pour le « plein écran " +-#~ "»." ++#~ "Vidéo et cet écran sera utilisé a priori comme écran pour le « plein " ++#~ "écran »." + + #~ msgid "" + #~ "Instead of keeping the aspect ratio of the movie when resizing the video, " +diff --git a/po/fur.gmo b/po/fur.gmo +index 752f85c51636957f0eeb822f685663d7d6c08270..3bb2278b8136bcab2ac4b86028cab33108fffa5b 100644 +GIT binary patch +delta 8917 +zcmXZgdA!eM+Q9K|oWnT|2Zv(|S+dK%WSOFDgFKbBDK%1AQnXMFQh7vEqJ>BcEm}^SXg;6wz5aUN`+eQleSd$Jg;TSZOwC$5t5N2>Gm@nG +z@+29XB+1YfNpcQ8kFD?vtc!&!lcY9wz+4=R6>tQW!!cMM|B4N80%qfVn1}ac6I_B_ +zac9)eSe0Z-7jCvHN$Swi8{PN{Y>G3Yz6RaseLM>fV|^_1bdprThG=^SY>by;KHiFz +zaeCAjhD*@^*FBv{k{k+~V&E(20(&tFe?(7w5?wHRb$asZSdsc!Xke|;@g1Z8Tr?vW +zqVoqueK?k-J{k>dOol=S3KOvnE{y?iV>{~mqMlQnE>sbnSOd?&rs&4QqW`k+8qBBt +zM)ahAN3UQi*2CrK)n>L+Fat+oz?bO41#8j`dxZnB2JOSb>%*y7mG%d*II1BfU!xf*yOI1mp~A*=U`;fj=IDS9=!V_U4D?3>y9hnW +zCDDI9`iSqqYPbl!ik0DJG=SH!7Jh)PTauyRiOW8lo+t;+M0GT<##o5$qQ77CUy8o= +zF=%F{qZycsX66BOou%mfb=U)Uq6f%+E)6u38-;r4$=l;7?12Wh0DVLcVk2CS-t9hg +z!$WAMK9Bxy(2WZ=rGYg>$F)YsbwcO&KmyGqeJGf!i_sMS8BNu-=!DzRlxCtnAARi) +zp&PBnbMb}fFF`Z+Thwzmr}Zl6f$E{_H^OYc|4tMPpnGXUk_<#2&Bf>)jX^(`o3JL% +zK^J%mJK`qvgkPZnmtYP2E$Y>tPv_S`*Xxew-~g<_{>iP;F&j&NvCunv8f)Pz=+(TB +z&G0CC$CX}47p#q@v>AGkc4#Jhq4WA-Tf7*}z+KTl9W$P2CIwHhBnGSs*M=Ly&1h=3 +zMEya4Gri_1zf?p5RM#q3_WMD{W2N +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 +zN|J(wNpfA1BmPIv^XW7X%9Bp>Ubfi*|Rw?X?) +zK{Ik1`u*uqKNl-gAA$xpETzzu!bt3dkHmmCu?zJLQ7=a)`W5}K+Vj~_6`~8DgZ5t# +zUV=5LUxn`Uujmonip_8idbH^Z3T9w?4EO{~sOS76o3Lxx2OH3SPIyIlE7qa?J}kf| +zqJ0^5qP_tQ@F*JKadf@h7b@;ln$)IXB&Xm_cy82JpsCu9HE<`^#xJoU9>#iDb14@R +zTcJmH4VwDN==l55BlUP +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 +H#h3mERFVq{ + +diff --git a/po/fur.po b/po/fur.po +index 06635e9..651b3fb 100644 +--- a/po/fur.po ++++ b/po/fur.po +@@ -11,6 +11,7 @@ msgstr "" + "PO-Revision-Date: 2006-10-22 20:42+0000\n" + "Last-Translator: A. Decorte \n" + "Language-Team: Friulian \n" ++"Language: fur\n" + "MIME-Version: 1.0\n" + "Content-Type: text/plain; charset=UTF-8\n" + "Content-Transfer-Encoding: 8bit\n" +@@ -6185,8 +6186,8 @@ msgstr "" + #: modules/audio_filter/equalizer.c:58 + msgid "" + "Don't use presets, but manually specified bands. You need to provide 10 " +-"values between -20dB and 20dB, separated by spaces, e.g. \"0 2 4 2 0 -2 -4 -" +-"2 0\"" ++"values between -20dB and 20dB, separated by spaces, e.g. \"0 2 4 2 0 -2 -4 " ++"-2 0\"" + msgstr "" + + #: modules/audio_filter/equalizer.c:62 +@@ -6875,8 +6876,8 @@ msgid "" + "16 no padding\n" + "32 ac vlc\n" + "64 Qpel chroma.\n" +-"This must be the sum of the values. For example, to fix \"ac vlc\" and \"ump4" +-"\", enter 40." ++"This must be the sum of the values. For example, to fix \"ac vlc\" and " ++"\"ump4\", enter 40." + msgstr "" + + #: modules/codec/ffmpeg/ffmpeg.h:115 modules/codec/ffmpeg/ffmpeg.h:248 +@@ -18212,9 +18213,9 @@ msgstr "Interface XOSD" + #~ "For more information, have a look at the web site." + #~ msgstr "" + #~ "VLC al è un riprodutôr multimediâl a risultive vierte e adat a plui " +-#~ "plateformis, che al supuarte diviers formâts audio e video (MPEG-1, MPEG-" +-#~ "2, MPEG-4, DivX, MP3, Ogg, etc.) come ancje DVD, VCD, CD audio e variis " +-#~ "protocoi di streaming.\n" ++#~ "plateformis, che al supuarte diviers formâts audio e video (MPEG-1, " ++#~ "MPEG-2, MPEG-4, DivX, MP3, Ogg, etc.) come ancje DVD, VCD, CD audio e " ++#~ "variis protocoi di streaming.\n" + #~ "\n" + #~ "VLC al è ancje un servidôr pal streaming cun pussibilitâts di " + #~ "trascodifiche (UDP unicast e multicast, HTTP, e v.i.), pensât soredut par " +diff --git a/po/gl.gmo b/po/gl.gmo +index 1e01afd590c7735c6715e1654e3371bec955474d..0f1733bead0e7e0cd9281cda2df8bd7f5cc214eb 100644 +GIT binary patch +delta 26799 +zcmXZkdAv@=AHea4=edzRYZR`1-^rFOOJv`-h^!HbD3piPPeLR~oAyO%K?@NrN=d1d +zq(wW4iY!U=`+T06KYp+GnK|donfcCl=A7%^e&0S<^w;N#zPNQvxy?d588pNu`s45aZsLvxoGH~M0@@r=EuF!18C?@pphx_XXt1{^t$%w +zhma>PK@Xy5Jo+4!^>Wu)|*= +z$Tv8~PWGNacS+wqJ?mD38a?#)W42T6E4gVNKkNPF=1u;l6TcE>ur* +z-~(I7ioR$l$H($4wCBsv2Rwuh*%9&{NNMI&1py{{sAT_?N*yP-Q~ +z`c4j}aPT}jlJfuMOmx6@n2ih2p036&Imljom2$xx$wW`whBL8b&SauB-i>{6H+IIF +z$z-Ah-hl1!6>N>CgXzS@sbr!J6*r+LwxFR;WF<3M+zK6WTQoeVEh_Q +zwkGE!GwZ%jbOhRg$>;!I#JTt>p6mMWmn)eG@i27mCSz;75#2yuN7w%jbSg^bPG;t| +z1{&f{XoPx1M@Mf&lW{4U3-_V-ug8mUJLYx$=QuZ9m>=Dvi(yx+g&lDwI(J*q2fmN4 +z|BulJ?2dkm=F%@{cAt(G&Xdd}aWx!7eOI*or!nnI;{*qW_Po5I!P3}_awYWqu;@&5 +zDwbn!+=NZBP`=Qi%g_h+K-(LGCh3$|KM!qhWh`&VmrN%vqvB&KOu`HDhmbGE#$Jf7 +z``zfA|AI#7Bs$W91(KQNTM?bAdgwB1jZVoR^!`cF*=RdU;`v7kq{D@;QsFZB5M35W +zG4p_e$wVE>6|pw)Zb1Xj}%U_`b%XMD3u2ni7T#eH> +zaW8sfp~At7(Fcsh%6NCI-xNK7<*6@PB#f*vx_UaISw9aQ&^u`I{eZ5LW9Wd>g^Gq{ +z(Fkp*KRQPxv6@1x23Ihus0@m?%g +zBAJ+nt8k#}zux)D%*$f|Ud@ShXoJ}$Lj>BPTk0ruxlKeLFb(tJ&FIJ$qmg+U9nc5p +zfIdZET6@qA|BZGiZz&?=`Y+3Y8$?4agT2rPU5hp_J(@<}+qa@~x+IpLLp!)0ufR9a +z4wbtgOhq%aola=G-O=m&W9I!oj02NqEIOj6&>p^o&i#An+wUiIP77R^%zSWEK$lk+ +z^Z}Qn4PS|FSmR^;B=j3`8amKh&<;L&A?x3Yjj`fOG|P{o4=PzYyaQ^ZJ+F@@Su^xO +zozbc2gGOc;x&e(xr{ZRGAWxuEvH|VL8)$nUm1g~W!EP#?n}cW)orxC|DHBF^0h-n2 +z&<5(FBWQ_6tUvm|k!T0zp#xZnw!04P;JavtKS3k+O_~Eoav1H=3G_i{F_D8Gk;*0$ +zXDAoQP9{cRzH*^MlQ1XcY3OR09_yE(1G*1g@6V&T@67;`%ShfuX66-p~jQ +zVOuoBgRmJ+K|}mJ5}U*)=)2%^^udSG&?YN}*LXp6&P!r{%trT<8_-DKhgq)wN8^d7 +zu@Wb?qc{GE&f!TMfcYvV6a8=$+TbQ^heazV6GL$zcEF&jZ|rU9oJnWMT$Rz;1W|J7MGM$wV)lgW32Qx`!V}M^vgtn7Z<4h#R4+t0g+H +z%VYh`=l~aB+E6czCsv{F^R;Nhhwv6WuVzTP<>(YW5Pb%FQeKaCEKjY_@Q~<8tW5oQ +z^vh}~nmZ4mkzG}b^>6lWrowFe5)I{HbOc>$Co?~a^+jK=x1;a(O=!~XMn}FMz5fsN +zzGR(b;w8+7=Ej@o^ISv2XDh{T!Kb$4cgHyX%3u=_t4PnM0@%*+S9}6h>J7~ +z*VRI|`8S-a&=D=e8}R|0g(Vw@Z^9L5gbtzi{f$PbaFdV=rLjKccE~`}iR(FV +zE^Z4Ii4|Cj@+vfxU!als6TR*XW@G-QVR_X?2QU+T;6rFmZ9pIV88*XxSQSe(OC}m& +zTg-g_Pv^i8&COJhrRZEffQE2W^iy7K;Espi~ +zV;1F&SjP4LCI^P}J2W&0a64XbaWc_|Dfk7Q^X4s+iMrSyUADKO9e4;$rYF(m_5x<( +zZgj*au{vhA3a|0bXl_l#v>U|z9N5DR=(>Lg4f#QIi#>@ZS;5v}N=l>2c2TrBI-=HS +z2Roq4^?JM#SE2XkYZE$L3LQYXHmrX`)r5*FH~`Jk+1Lsn#4h*^*2LG}<*#flTyU~qkH9B{% +zV>W&eJ%m0u|D_>0OJWbojj$vBFV^ow-=4prZ_RcclZoN@0J6N(iL)Ho(-NIRNUEU? +zcf;B^2*1Sn=txFf7Cu(*#!D%GhGzYRokK_4qPfu%UFY-B<+=q;=3VF%{D$Rx|7Udx +z$yWudaiTjK%IWBaa|arsm1yYS#9TSpvZEh&4WZoAjSYwT@6qLYsC&3ScaJdl=VM#y +zYoG(X2G4i>&x|LQp`S{7&}=`6cBo>{us?J|ceZ|54zEQYbQhYeFJKM)5#5>#_6iSL +zh(=%qnp3OMcD}&0*?N=%L;D}vaJ}B)g5Ky>JQ3~K1Ly-cqWi`dXh@HvAY%EpK +zh;_w0I0@ZJXQJ2NiI3x|KCFND_-=i}g=5eSWHP$`A44PYBVK}q`h^koMmu^1w!=B- +z>UbAT)*Wav?~V08q1k>g`WH5#{BJ+jzawnaKkRHH&>r51u7YJa5T8Xym^C1o`3H-# +z*p%`(G$N0qA$|kx&}Xq+a$quX73ErJhwnk>egn40chVeqL*7B5q6Zq<M(QPWLrcHLK_(f{kR6Q|{EKFP +z&LP3Vm`%An8kx4})D1!#o`U`GZglk=!febjG~_~gbYSh#JN`J@;pg!l+#Kus4NE4v=U{6_bKu3{VPo5X)m;DE +zIWR=W&u=%$cpKh=kKz|tWkNFZ8`1yJ +zDO)o!>=PSsDCHv8gty#ev}2#4dw

a)4y)gcsoG^tB`t2RBbnCN^`y;wj-Lmu}aE +zWK2#C56FjZ97WL%W}_Wzi76a_uJ_-#}j? +zAECMM51Q@gP7BMhIQrm@=yJUh-T7`n+gTXBFV;UD%bPHp^V`u5{Dw?zI`J0=y{YJY +zeVFry&=J0cX8m{QT%W=cSpJ64!DeWAG}@6_*aw%PpJKnF9Y2hjfuPIt-02}Q7h>k; +z{{|cwnx^Oo+F}{(iS~37+Q1FyDw&7Aj8>o>{0hDA70p+#W06#=Gs2nrHcR?QX0S&PswnI0V>F9mS(d*Zs|CaO` +zwxGQ6M$S_{g_(c^Im@IrL?R7B^v4w^)r&>jzq_1B>fxC33LtI+FqpdI)Ty+6U~ +z^14!JQZ_;d+B~kho@v&<4UeP3m&Pp2e9@pcynv4I<#_%bbPD#O5Bd#BqD1c5A!ml6 +z-wU(Q)$(lgRqR6fZG039%?bO$x;Zr9-kbZqO;K?Pv66VN%9K%8NLP0 +z;!k4vyI4LN%Q@}{=Zm1ZQXbvmYM~(?ie~#bq`!&Du{;%>(wopJpNnt1{_o+ykI%u2 +zLj#M@j@*lt@L6<+`vh%xH+IKw(T>($60U23Har5)!Rw>5(ED#iJ8(PN&Jrx<`+r3| +z@qF|pbYpo9O{P!Lr2H?IFSs*&@pMGj|2VY4xo8qEK=+e}WBoH|ht{GS+Xgg=zfjlz +z0S-*MQ&<6uE)B2QCg=!fKJ5$^ufo_4xUCkmb@!G +zFF&ToQc;xy8@v-M;&OD^ZA3%%LG%-Jr~3jO!O!SwIDs}?d|8;fY_#L`(GIkU^&Qb% +z8-!jzVj1h-9#5dcWpX>(ku5kHw_;nYad+5quR$NU77g{MXcq5Br|g{N;r=pc1S()= +zBa7uu=)n3$M=fXlx1(Yz6+Y-SY>j8J4Ys-`tlK$g2Vcexcn~kedMiRCrlYIjcFe}R +z(MY|5c64j>OLQ6j9?Mzjdqa;)p;=!Ro#T3F1MSd}^g=^66x~9{Vtt&2Mqmwk-N$Ii +zzeXeZBi6sYouQ6AL-0%89$thBik(!fKSiMOR1e2SURY&<oKgEG_RP^Bx^0sKtd*PLMISyx} +zTd)=7a*u|j9gb5dKZ%!NsmH=jItqQ;-Ge>xC$yc59#1Ad#Cy?P81n?{-;v$J!6-b2 +z198xk;TH}s;dIJpaVFmIR5CHd>##TWdOEyDpN#&8eW)L>D)=1srJVDb5P<<`1g=JN +z=*DMQ|Au@K6(-v%bW2?yFZd+-L-a4~&iT}{VHNa28yttWGXo9va&(_~2AzWK=-mH| +zUjHB3fr6{k;U}H!)#0OZFmB_-Je-W(p9^0&Z=oUm8GB*<=fm#}ZpCcM#a~D!Rx?G7 +z(X9XJ#gIdX(5bAwCM0PSbSrNg?UCldEFXdma30$8jc7w(q090|bcZ{Rjv)Wq5P{P8 +z6y*kZGk%4RZ0Ndh{WVyQ@;tPD6&k76qUqfn^rzw|+Ox}E3K#ZAA3PSz;|%lz<3V&p +zyU?ln2Hgivpdrrta@Yqdp{wUI^tyiNvbzTB;8RHZ>BJWtIMQFyhK^uiJm-~gVM+8Y +z*9m>V7_}UhWo3dyc6AlMs63{@vma}J2V0Z(4F!KCh;UXC8yE*a=pg-x50uOOv2(g +z4du +zu@b(CF2nt3@}|qa9X=Y{p$!km%z8&d{~$KPRcO!m#q+tg#@8_Rr@k&a;@dDY$7rrB +z!;A1SbRc`t2pvT>rgY*A2WDs4cY+nrDXD_?ygj{_AsK1iGW4>y3tL0NUUrycp-BN%Jlm +zneWlaoJ1p#)^_Sg<>_;&QZ7tuN2j1BNBv?B#S3O`}hLbJc;N9oYBX;e6Zd(kXk +zi&b$iy6loW!-z_w9jc5r&?Y(>9npg5a&!tGLGRyyw!aHqwujKj7fF8{Mp7DGul2Db +zc0iM5F`7)zqVI$?Xe73xA>E74=^6C>e$FSM;S%V5<44WdnOGUXOH4PQj3q{^4! +z--LSLMU>a#T>KT&BRH6_H~jnlCupc@eii1n1)5wV&?&eYU3OE@5!{BEEJvqs1G+DK +zh?(V!MqocWz*FcqX6~;;d&RzH{W~WYQeo&?qa*5wHry4B$f#JJie~j9v}1Rn4L^V` +zr)Q%t$Majz0lkM#?U(4zcqrDF_=fdw1698XA#RL5usQnW(isimcr*u=p>w|m&5fPt +zh<`>Sa0IWwtZzd^N1@lhftB%FobUO4Au@~892nY1&<37HJG3eK0UDXT=*WLSSIGhN +zz6-t!mPhZahEHM>bPD#N_a8O0LrRcy0Vl$k8ZSZNNy>#Lr2UmH+PvM8og?J_9-DvhV +z{W)}~FWQ0mXcoVTM&fUDs%rca-XWdQshNN?aW2|{|F9kw*&jyU9_#x4@5g~7o`;Qa +zWAq4`?Ntth+_)Gmw?;$S7fre$_$rP;H=MG+hUB~m?N}@H`YUjt*P$JI6N~ZuM2mwV +zbiL6zn}yExLNv>lqRZ`mG#OvQ>Ff{R;0en84}~wGZikbJv6Sbc8`>c(f#?4o+O3O5 +zwk0}ck6`Bg{~ZVJ0|#*=cKaiYY#rK>*D)L4Mw93#bfm}7WtI2OkV9qAcSaK|hrO{1 +zPDMNNAR57!(W%}3C+pwk^9vPb@6l+EBO!STp%<1%Bhxb41-)+&y1|S_llTVoK}*s0 +zo8kTdhqv;Uh`c$}_nxmn<1S{iUw85Lv5#NV%a1A;&4gLxZUW|^c +z0~)cx(cx%>#-Q!bK--^#cJRJ52R5`SUa%IuVFTLZ9oP#GU`=d(ER1+8n&mTMc}et9 +z^!}I7j&DQT*@sK;G`f*3JRXuVy@~_pY7KhfE*y@3#B$FQVN0HXN$Mw~5159Ad_EeP +z$IuUw*U;~YZ_tq*Kp&XnWXuuFNx2EKHK!BJIWTlx&<6}hZybf*I17E?{a6j3M>m)~ +z(KBc$%m1BB{EhYSZLEHZ-w_}mfwi(jvk8U%o(mfKUzE5E;=Y@DxGO) +z5*3SSa9%u7BALpp>sn|}TcNMfUTDZCp^qN|}Nx_(Eab2|%ti>*LkDyz}R>_De*A37y}qdQ{3+^Nh~ +zT@G!x9{QYaXpW4;ZkV1B4>m>fo}0>i9uJC6kFG#>uvgLK+KevOt!RVqML&t>_o6%K +zcj$e&@}x4Wr~sOTmmphln*SOtjIckh=ESw=oR-NO>T944v`06nF6aoyVq=_vhITC) +zvCZiHyQ4p%Q}idA6X)j(5p02zeg6;Pz|eh+V{kv(!|wS*!-LSBZ8SQU^U;sW4cG*? +z<0Y6Z5F*h5otp0Gs=5-rei6D{SH}A1F!T3+dpNLXN6?WKFBlrCioUJtp&e?Dj-&&c +zloQdBE<@+`5zI^xx)E(gr{?WgzXM%0yU<7-$F$j;zfj2L=4eCXqO+sR(dD-qO~&mw +z8Gk|_(Eq&9@nJZM@??Az_n_Z=GYf}^yn;UXeRN>o7iRs>;@~$bG7m12%Dm@iqs!zD +z^n+qK+VeGN2X>*!br}61DOxmyxFULeBQ!~Spb_eahJFO*#L4LMrWR%W+oJ_kw86*F +zto|9DieJ$OoJQAs-eO@HHbcwZ&`{rmM&f4lz6I!g5277@4qd+6(C2-H=G0$l4(xI9 +z;$hv_LzAil`o)vRMz{zE`^8c; +zLeHbmIgaMUzZqHo=Ux~_UL0L!<x#?9Z@fIE1irc(_-|&E74G{Ml4{NV#(1ftB%U +z%5~7>dH@~i!)W%ufJSl)+Myls{CDUS|51+h?+v-jr!qg8lt7be23Eoq=rY-iKHz(_ +z;h)j{;5gRB5*0$nJ4U;qbKM8MelYr+@zEJ*MCMmWhrRy+Dom<%I0oN|7uKp6=JH}R +zH+rGjJOmB-C^X~~(FW7#$d;nlJ&Sg99hxJbqwks`l|l|wPjg_!T)Z6bi{+E(R1~Nj +z9$XYHm&M9h3C)2n=tu{kBfSDmzH87C--@=s3|+R*qRG5Ho=+d-z!986Bao*`$np!( +z3!CBu9Ee`G4SSFqd(a10tCq_AlDRIr8g52M`~W)lo3ROgfJQ7;Jwz%$GR5gcHV30P +z(E)96HTvLnSOa%qP5cjSpk|Gb^^MR~(i4ruVDx1(2JPshXtu9Ir{n`P5Zm&*K2*jVgE`BChR$MGWUR6mS-HV&h_ +zF?wNxROZ+5H(?v2=iiicyx*J!y^qwv6f=mVCZ*}Dy|z^seHgGOOf +z%I~7rB^rn88e?aQQ?Wa~i9YzeCaKIHDqMlxC_mGL_1}PlQ&e=oT1~@8;&tc`98cqL +z+>cjcr)FV~UyVNCS3HJ|nzJ#Hl+`Z|J6oL=p}nbS5^h2x_CC5QO1BKjUb7|Z-=u3v +zg~`<(UB}&`!_j4P9Ztr(&~<%ItMJ+`fF@HlERHSE>-(TdHwDd|g_si`z}ol_nkyfr +zIq)O#2%7B|whrZv(J9fD(f6arqGj8J>o1E=#VWM(FwVvI&}8j$Nl40NIGyq~^m*wv +zZNr>TK-cN2=nt{}f_5Rf`eQ}TFU3~)Dz;`%K8aUTZqhN8`HRRWFq1=_Qkj1h>xV|T +zz-6JM#jq^p*2t8n6T>(#JD;D-J+(>@Ma`-o9W2tUoqiK$LDfdS=mJ#Ur>(IHp +z8-2i5bSl5aYw+CeA!5_f`&ObIcma*jdsu_#CsIAag>}(}`eIwW25-Z4*cUJE8M1mQ +z+R&Hi^+(a<&DSd=TQM{Om9Q$-K!?M +zYoQ};h3*pra5*kSM_i#_uqHZ1jnEFaL6==8ba@U$k}WX-FTj`3W%_Zyba>nSL4~2r +z*FSWmGTOtMXoHRM4s3;o@gp3Hn+Albx?o^f|5uX7fe+AS^(#8J1Fr}jyb2BVQndbIbmT8$ +zX75Kk_&$2wr)aKyhwWVdzi{A)?O;#J4~$4<{@ak>(X4%L +zWSGMpIGyr7bhQi|6-GQBYf-)dox&&4op2}G!To5*&Ku48ugO6b4!ocbx&vN~KIjhg +z!spPDzKtf`hiHfoqjP==ZKu$f@HyTB{YhzJbOBbU{4~0pccITaG=}wWMQUtlurwN~ +zYG{(QL_07jItl%0`G4pG9zi>>8Ex=$G*=Fz1IT+-n6m04O>g6&=7Y(SIZQ%!!u&}7Id{Nh(3WWC~rYKdInvV$*V(z3ZO}y +zuE~KHv_N~>HkNzF3;LrE9E(Qa8Z>)vLr1t7?cn$5=l5A`j!h?o2u?-YUxwa)AG!gp +zL#8C1c$Whk`U)%K*;uYLG4!}2wx_-~`XzHOx<7o6t?~S8Qi<1aAij)6Cy_I(p6ytN +z@^{yU50OHX=@|9zp^-^l=f=kRyM%)VR6L9~;AglLyG~7I{$k-f>`(d9Y2kDHA+$q3 +zp%18jeOPXTa5UxH(5d@Dlg-@~XusHYkofRT;HOX#d%FkvX*klgt +z|7LEu>E=}C|Jg7xH@xM>V{7XF!2#I(mQ-RkE<+(A6w4j +zGo1%izAb!=j+h^EVgYXF{5HH1m)_3$zm|i73sQ-vaSm?9>I*}U|G>eNpI8(|oa2tL +zBlgAR)IWv&u;t?Lg>*OO<-xz9Tk^>z;la)C3_mYik6oyL8-1M@T1rS-bMVm8@T1jt +zID>M7yHbg7@p+tsi9&ya02xm?nxyUaotNR!u6Nj8%DYnZ|D5t +z`$%pq^+5QNYV%jKOD8_(;BqR? +zT@~hdG_Iul8eW3~p9ycR_i-TQziA+v;KJo8!smyP~+dZGk +z{3lw^p~>3pg;eIhn4XOjT>qtCOeOYlVnKBLno#b%HkJ5^`Wov}nLno~^inGEBISAL +zh?=|{MmQ4Rp}Y()!9lNtxpefUXd51vE$(G6km +zUlm=8S=4Vt=k87PZFUyRVv*OvkK+xn8s%l^J7qH#!QEI155{t#jp5x<5i{TawK?$R +z(H3*z5cFj+3VqNdbkDvOE8q(BEw%|e;~O{)^KA;w#bT8ILE9Ctj(m>3uD?Zdrr5jTTd*W@eLB&OgA^xvp|8{aXej5QH#~`k>KQcDo6s+x9q5R6 +zqgj3$&6$GRf{oBQ9*j=i2sFp0qa9v|`Cb1na$rw4qZe*NAMg!&;eK>PdEX1yoriwO +zltPzV18j&x&>eCqHo&duPWd;wBi497tcF4807og$Pu#+RA$<&;^S9B^A3;ZU7Mo(> +z?cw{N3+APK6}r5pqLG=6c615$W-gbbId$;kF!Caw1S?||>YHNPq!=D6W}=~f3=Qqe +zXhim+9sCo!VxdpN2!>*1$~U1&`ZzlBx6r9PfexVZt}w7>XnSMPePh-x*1rvJr^01( +z5ZhtS&qC5&if>RJfmdS1&r^x(aUTAH|6zIjWq0u0FH(thb>`yF?$Iu?<{W0V~ +zHFR}!!lKw4y?!kEfU7Z+jOhJKa2h^^?jvP>3hgz+3tj&MIH=Bvsc6U^MswjQY=m3T +z2pmU~C)dwm$19CStTwWdB-)@4?v6hAis&@-zD2S87@FL#VI9~1J`P;R1%C-!WK(pD +z?Tv1&6VVQ&WBr}c)#&Qk7R%qG*Zqqwy8`>egBzm}>>A7C(RSzH1w22olml;k9$VuZ +z=nXjzg!Nt)z2RbX-FA&mMX!4h31wmZm-;n)12#sl8;Iu4G|c?{&teV? +z`P1>l8)(B{q9HwrHkj*Rct8cT!=0joF`M#)SiS?@IUkPYt>`M)jpoP?=&Cw#koE7} +zoTb8@tmtncnaZLMu7KIt0NoM$pmRGs*582cc=w{Y^ALL7ljsB1#rlnCj=Y8D%*W_; +zKmL{uC;p_ukeo#yP~uRypmwx5x@UJpBQXXI`{_VtwLp_!uo59Ta^u +zdN3Ui>i-_zf-|CNGzo7(L-tUtUx$?`uSauXA3E|}fAGtw93&l%!fAh|_zsp$D%_#I9j +z`ZOzou({?5=X2-H%KQfOKAcJYVSECw +z%9oY-$LWIkvoayR3*F=2M>n?Lu^gULAS>}JRz;_zaKUs|COOV8n3Y+_RnZg8(7A1m +zuKRJ(`B;nc)971oH<~MZF@=9bkD>RULU+Cjg~Itd=oB?Xr?7dN0~>0KzJ4!_)H$`kT&yA)SSOX3s%C +zNH(G)`vrZ#A@s&Su{|D-<>p1gb*<5@x&wOsAhg3n}zH=rS%iN5U?;&5Dr-7#;mtjtzA7~Pnb#PZfyK7}S}t>Rgkuj#9>1?6XvcT{3w +w-o)G~JLgT=nd8+dJ9FNDex5GFCytpqe9Wk3+4J%r$jSebujW6H`lR;%0h#qx3;+NC + +delta 26788 +zcmXZkdAv@=AHea)eV&`0vdebu`;vW$?E4mxH6n>DMWm94A`z7q?b^{oM2nK8R7%pX +zeIZeiC5cig_4|CDnLmE7_nA58%$fPlcjlby-hPKx75jEou{GPqrd#DoB2GEQO^G2hYRYl)Gad?1yLJ(C8?vMR^=f#Cvc8 +zW*x~&C$c%1d?YJT0HxUK{` +zpo&-&>&0?=Oj7QHMyh|B1A8_Mb8se}jgO$AUX4EZy?FkAn4j_qv}6B9^ZXL7FM?iQ +z7gN{-3t>wviQUi+T#7|7J%)oy9LzvN_Ym6iH?bh@ita%}cLa@0(c__`HPP!@q9f{x +z=ir5CyQ9&L+=6!aHnjbFLphyzf&)YLe7xWlbgs9?@|S1>`_bzTMo*w4J%cu!{cE_d +zFj`*?9eF)0gRRk#4~`DUvlD4T!9g2NOu^>378~PX9E}xDWF>my%{U%E!Vj_4$q@2< +zzl9vCijKS+7RI4y@?DAL@BuV(ub``EC${1Fi31!svZ}v_o;E;x+7oTCFP@L1(CmK{ +zT{RofWZjG|(|6Eh`vtu}c`D>eZZx@zqV3f{pVt!8hN@Gn=!N!d5E`VmHIPS8%^RiXghtdDErKn==0Klg^11ni}mjao}NIAH~yRTZ#MRzA_oVd +zp}G#uiQBOK~JnlL;pLP#f`I*nGrWfbL0{zLg#J+`oK-- +z`hOd}Z%6bKG?%_Xv-@~7cfMpMiOb^<>f593KZ0prGDkQtv}ffH4Hm(cl+Q)a4~Slc +zCf{w?AJ<|F%q|c*bOHL{PH20>&?LPg*3U%SyE~Rw7f7ZP-Klt+3X|~cf+6H{v6&a5 +z>wX71=ii`jv7_inQ-zY5l0)c#)7izs +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 +z8TRp)3 +z&GvKJhH~rZ716t+o1%xJ#oC4IFNluE>a=q&-i&Xc$=a@cNXi9x9p#Pa^U_T_ggGCD +zuG3}FFJk@K9Yb>U#44Phj~C$c*p@x{C{CbUw`(f%7m*KQCWpGEGXE;p1C4O9d+2CB +ztU$R5GUe&S01nK~hcO4g#rF6gzK895q!JHdfu3O}T!|*zI&^&>Mnj#|E9?Vh(4De6 +zdcH2YF?B+(8-dku26k}$Kgxj{$@f?hf5sdv+&gSE4bTmyC%Ul=LeGyw=W-$XfDPzW +zeu9(nUo>Kq`h@%LMmz8n8lg9^HqTG|#eo-A?Hd~EjvXjphPUEM9DwIt7_xdk+R%sS +zgAby~o2y?)wtQ#=&czy-gU)p~^xZHGJK=4Z_J_^?ao`OH(78H_M&u-#?PstVX7>-a +zMyFs}EI*G6DgS^*X!1p&L$jj`kW@+Bg+6#G`ZnEt5$oTV&Os{dz+dRH_z$hGG$4$$ +zF}hFm!lgI|9dW6F!HVb<)j~Vm6kT?0uqgIMk}WX`%iuHUGJShsI=tg>T`{a=KJ_)08@bI=Iifkx&j^f@n~`^>I12ljA3 +zdf_Q_B>9JgPpy*Z4pugnYsPXtbQ!fm?;nbGcrxz5>(O>P4-He=51rD%=z~Y&^_ZT{ +zL1PYn#fDgISjg(ZX!6{O!*MOTp%fk-I(j#{m99jm;uUlU+=6!G3p5h@u^j%1?wBPm +z2~%($5|MPG7Y8QYC1?-Fpvg5E4b^hAfi38=`WBtr-XlT>FF`{+AFaO^9r@Fk+56EB +zZbGkn7tOWLu%qk$8xFiNXJnY`2IvLN(Hq;KbJqo{;vlSzv(OGdi!RsoSQGz5ldICD +zAp-5tsl6EOzyxf9*JCT!{~8YLz)^HA|H0Y0_}$K^@M*PVbSm@ThJ24U{KREp4!7cU +zls`pROYbpZ#3QjT<%#GNK7{Us+t3c~MyKYi%US<*I4H}37j#2+z)R5w-HcxN1Uk}J +z(WHA54e@?-&X1w(WRDG>;|?2J`_-(GILb8+;$lmHp@d663;@RY0ep6MFv;G~(07r9<+~qrwp`iYJz$ +z4J^n0_%_ZxRkR&C1zpgsd@#C^%|hq=adbd0pgZA?Sl*T9z@8sLms9e} +z@S#uyO}^sjNXw%kZiTLvE6@&4j^*pn)iOK!AhxEw9_{D}bXoq1MkqNUBz3wX2VT$+ +z?P>E^?i?@Zi9T>R8iC8u?7a~k;X1T~pJPiriN4+HO$-qnkG8)6z5fn$16qkpNjmX5 +z2R8H(R>PCAeD0*s3h&`D>~h8|$yxHR0uQFV5h^dw3VNpO(t}#lmNJG3E28htKhQ&<=ftKA^(2 +zVY&6e%PHT8PSp?iE}kBet^!=A-tX*=e|B{ +zI5*u8dcGP>%A>dh+s+I>n0$<{QZ9RA_!RpLOK^YpSs^l)lI%vNEQF&xXIFZ@G~-htU3lgD5wcn@Y^a1!yGl%?qDoqtHnFi^s6zEvdvoY&4(GbRJOV +z*6=YpXhFz{+4w%^H{wj3zmWBRH3zBNQi+u~9k*eHMWM$(;84mBE)F9;g%?upetY;1 +zco+v#ZgfZZLRyIVdGL4WmVETi@ZbhZ!p{p6uqXAeq65voi;%SC;GVm}k5-@I^^|Me +zol1O*PvRWB=^nOP8cy9CK2~Qf4cBeKiPX2cFO^u#bl-FWg&*S-6?1>QJ^o1NeNk#4_Q~dsie}uwYaLQ95WPjm&%AKALzX92a +zekc5gF4u<3!_S0+F~tZsU_I(Ltq7~*XY_4ZZe{qnp&PcPyZ{@y{@>?d7#07bSv~Zb +zRAL#vfRnNJv*E3^2?taD3CCdj=faoHN}Njhn&;Uu>A+9uKJn|SROYwgEmo&8|B2QU +zXtLISA(ir;s}lxLzNs{2wH +z;b455@&as+eO?a9cNcoy=Xe=ry%K(y9gE#4zlR%K|3zO7Kk4kmvnb!UA?*FjqAM_) +z`Zeg>y^OxiPNMrpp4Y;U<2A4*Dt9CKqo +z^kp#web5+m&%Pcj<6`tJwibKfOE?{KZ4A!9;*@_u+sS?-4D4)lASKZclX7pc{ypeS +zg%6mF=ip6fkMBXV`ZYA!enJ~4yeYmN(NDAT(fa6hZDV;X`Wl~snaJWu%FED!{Z@Zx%FWOScS4hO +z1Uk@9(j54}AJIshM(42d)-dv3=)2$sd$E2t%9-d5522xY6b?F3p-0z3)gLaso +z@+Ii<8jnV18rso$*q^z)4b7>&ABBoMWj+Z5tB*U?xU%{Tmc3kj1nnYFigb~%nW|W7cQ*|%e@LSjoOMM%rViYn1 +zi7Dt*U5Dn_JTy|bqsjeznu9_dtU)zJov +zVOR9};phV{#Y{4y_s>J$4G*JJTJ(p|UVSX<`tQX-El!L_Lv}Bk3lC!xT#rWJFq%C7 +zpgUfXA49|{BO6JgDf-}!=z}kcUWwj!Q!L+)Cie?i-}V0~2d?APfv`o^L$}zj=z~V1 +z9k?de-x7TsT|FCP`E&HTU(sckJQyBa2aRC+SRRSCI~~jL{KR|?yzxnFi!Y%!oI*mB +zDE3ph;XHKRwvUcSue%GqZVkEv?nFaW_0JgHd0Z%zjJev3U{)+ +zM?x|cLmylUbFc=wBX&dQc3`ZZi0*i|qq%brdfh|l16IcRHE52!g08Z+(d)iEk`5<+ +zq{5J#L?2M#Xt5VMDL64O~-@k +z$HH51a`YNB39my#c2BHdiPb2tLUZ9$bmafwST?fcFMJ*2mB&+wN!0)E*RcHBo?xyi +zzk<(Wvy)*fPyfKd`&2aiE&OP81{YB7^LuFcD>TI4VSPM+4Y0(iU>CHbGtjO0ZZtwK +z$NG=a4*rZr_P1D{|Bp-r(}`*vctZztWFydb!Y$~H%h6m|g-+2M=)Ukdnv4bh3{%w* +zEnk3LaSR%v)#&}7V-hT%B;6rIC1r$gxbqa7NHZq@VA5idpe +zjkRdDe}fL>KeQud{tnl*LnAm0?f57(`R>Q6&dJjp*y9~&kBj{idVD_SQ0|FFW+FO* +zdoVX{$1MCPmOnuw_6=Tv`*A7uI1_%GwjY;JuJ~{GnQ|SbU!|h+f8lpH|KUW+6X@@Y +z_%*(Qi*scswqd8N?99s}UotovJ--pX{+d*6&aa@dpa%X4$ +z_548Y>~!Wws!n;bGd(+nE~8uXW+(o`t=LNQh4W{yALTppXJ`I|dOto*`H}+JnSY#4 +z70k|r_*Qg}--K>#-(yAm8xLW*LfM%q$z3>|ok@;@g|jp3xEwlH_0hR)g0A}!(OFoR +z@+0V5ZwHzyyD)`6L=U0&A47M(QfG(rRnRG_iB4gIGzT`+9DV(sAIn!@9?BEY2ByXO +zIq00vLnCu5=EZIC{D;wx(fdC~xAMK{1J9rx%|0ibPv_&n4it?QCD8}wpcmFbZ#*yB +z0=>RnEO$a9)(gF_Kf1+^K(CvEwlh6?Lv(gHpH9q+6$_%bqkHw;;ey2DXa}A~L$?ZT +za6S6Y*nmE08~R$^j=odALN}~musT*K5^|smdjGhLtiMSd7}BZeXZCdTgJcalvTx7_ +z>_cz-5j)}GSZ+`>T-OBMs#~Gg_dz?{Kb{|g-air@&=}0)`kxptm~I8-nel>o=nad} +z2JedHrO}6C{bOk8pF&?oYtR9_8PETWbtwND%jJuOj#Wb5e`F&E6|f$f?Y+^6OhiL^ +z75cWDgO}nm?1PEo*_o}hFS;?!i{%Zmd<;#}N+q&0U(=UhYs!xy@2JG0{E3^V?wUV! +bSFTs4?#g\n" + "Language-Team: Galician\n" ++"Language: \n" + "MIME-Version: 1.0\n" + "Content-Type: text/plain; charset=UTF-8\n" + "Content-Transfer-Encoding: 8bit\n" +@@ -5252,7 +5253,8 @@ msgstr "Modo económico" + #: modules/access/dvb/access.c:93 + msgid "This allows you to stream an entire transponder with a \"budget\" card." + msgstr "" +-"Isto permíteche transmitir un transpondedor enteiro cunha tarxeta «económica»." ++"Isto permíteche transmitir un transpondedor enteiro cunha tarxeta " ++"«económica»." + + #: modules/access/dvb/access.c:96 + msgid "Satellite number in the Diseqc system" +@@ -6786,12 +6788,12 @@ msgstr "Gañancia de bandas" + #, fuzzy + msgid "" + "Don't use presets, but manually specified bands. You need to provide 10 " +-"values between -20dB and 20dB, separated by spaces, e.g. \"0 2 4 2 0 -2 -4 -" +-"2 0\"" ++"values between -20dB and 20dB, separated by spaces, e.g. \"0 2 4 2 0 -2 -4 " ++"-2 0\"" + msgstr "" + "Non usa os preaxustes, senón bandas especificadas manualmente. Necesitas dar " +-"10 valores entre -20dB e 20dB, separados por espazos, por exemplo «0 2 4 2 0 -" +-"2 -4 -2 0»." ++"10 valores entre -20dB e 20dB, separados por espazos, por exemplo «0 2 4 2 0 " ++"-2 -4 -2 0»." + + #: modules/audio_filter/equalizer.c:62 + msgid "Two pass" +@@ -7525,8 +7527,8 @@ msgid "" + "16 no padding\n" + "32 ac vlc\n" + "64 Qpel chroma.\n" +-"This must be the sum of the values. For example, to fix \"ac vlc\" and \"ump4" +-"\", enter 40." ++"This must be the sum of the values. For example, to fix \"ac vlc\" and " ++"\"ump4\", enter 40." + msgstr "" + "Tenta arranxar algúns erros\n" + "1 autodetectar\n" +@@ -7854,8 +7856,8 @@ msgstr "Compatibilidade estándar estrita" + msgid "" + "Force a strict standard compliance when encoding (accepted values: -1, 0, 1)." + msgstr "" +-"Forza unha compatibilidade estándar estrita ó codificar (valores aceptados: -" +-"1, 0, 1)." ++"Forza unha compatibilidade estándar estrita ó codificar (valores aceptados: " ++"-1, 0, 1)." + + #: modules/codec/ffmpeg/ffmpeg.h:275 + msgid "Luminance masking" +diff --git a/po/he.gmo b/po/he.gmo +index ccb7f9d1aaf262a77d08de5d590691a81d4263a5..cd9f4311e5bed37d0080ca2862df45df44dc545b 100644 +GIT binary patch +delta 8763 +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 +zQLo)ISPoya_LZnx|0bs5`dXSr%d# +z9o*oP(Q;GD8qpuFWRje@&nAgm@SKNc$FoFIPFbtnF +zU&boLZ=ftSnHs3)V$6nD$-g?LQK6sF?x?rnPU|opHSr^;%lE7~ +z-`W?VHn7yVXWbhPPrQ_C-yY +zZE=p7i~2Avvv>=t-#%2v%21iPf_h!c{p!Z|<0qFlOojfhp{q#jmp@0%)yJOw`llpuKr03)%*W61wA+yHPMS$3s<66ycsp|9;}U} +z*8V*z)qk1c*IjB8QRAee#_ewQL-ikm`c0UK^_kyWXcg~Thl8lpoeFmFyq{4=5&pZ& +zNHpq5;!zVcNB!~I&f16LP~y?3e!EZ;A3$y38;gI%;6HIz{KNe$Hpgys$i`do4eWzw +zFay(WxPD`BIPoiZH(tkEu(Pd$vFE_M|isz2)@n(F@ZSO3;5nZ3TvtO7yga9 +zj2!|2uQLuu*5Kvg54fycAb2#ne;Ac=@ss*SAUP2AL0wZxV4&zsBFDjLdD!Lt|qZX8fs?SDkWU`rS +z?XRKUs(e(x-KdTG2d!`n>rinDqwzW(V8R-e+*zHh>>m6FH9=UFK=6HTi1mnjpcXO; +zb*FO71?HQm=XP0q4EYlJ-W3W;aY$7+K{)EYkF&TrYULeJAC!Km{#mHs{o$yy9En=^ +zWYo^)VjM0)?Kt1+x1$zP9E^R=h=MNNS=7W8!vevd%V?ZN+y!UhR@8v)syXk$j>He+ +ztyqAg@h4o31F8pt-+}8$GQF(u0RN)Tx1mNL`2QE%a3Aw~H6sGS_w^*MBTlX9;xF-S +z;)GfO?|s~hc{neUb_PtT9q>LR&Z!gddSmOTfY$+^K<#)7DpSR%J9Q9s*S@m))9AOS +z;ztTfaZ0qM8ueg5RBDG<{W#Pec>-JDi>OrY#uPk(n%IkRRzr;wYjHBFe`^fBbuqmE +zdSCz*O8rRGd!K_^>3gU%FG9T?J5iUc#Og~?J3EH@Sv`Z9_#5gq>>BGfa2M)sjKFw& +z9QEANSbP89ph7FnN8RQk^C&hZzJ`skUfn?O-|uciee<(X&*h>fT#Q=aO4Py&E#8FM +zXfdk)A=K+#=2Q5L!WB%z9dUu+xBen3BZ>9g&RU~>8*W1lJP(`V^QZxfuqzg$jxw~q +zTWAbwq71VSCJ<+%j?AA;A(g`0s0T|?sXC8((2Eav_d^}jTQURHKM&Ra6KsiPSRca@ +z+!;4TwRblMp;A5(bySbJ*!P~JkVM52YuJw3(E+TB$5E-fX7zzYH*lDlV5XbBQJEWt +z+Q=j`7Y7ipFt1{ke*b$lP{H$FH7}vQ-CdHLx1ko0i67x0)a8tA=x%W$>WkOJ;vT45 +zeuu?lP#c$#X +zo``xr+1gu}ZLGbW#U0JAW>3_2rBAB8|3j={EGktKQ4>r<{pmCVbs3*WEo7Cs7S-=v +ziwluID!t8Czr*Txp^mV`{KD!_rnYqho}ofNvlmbU{)Jjdpo#4q^<9XtIBnzi-RDjS +Y>zh4!+|=xGV>%>^AG7hH{Gyrv2R_(xn*aa+ + +delta 8760 +zcmXxpd3;vIy~pwMB!Psikc2EkcCxS)$__#h6)FKs3_;nXAn6q>xCFrlkVCI{@1^uY +zL_k1MNGb|pQ9x2uc8Ri>D-uDW1w;f*MQ}mTqV)59=6C<->pj0Yb7uL?%y}Z+))4ke +zL)dF!+5W(Q=e@AO^AbGIJGasE`r!}Q0lRJTynQ$U+hUu|{11PN$v6!oZ~;c+5{uVZ +zydIlUUyFKw7v70qSlsb7&-e1ExbHPD=p5`s{4(~&k5Ched)@Qe}N#pa6`PrM$r(w&%!b*L4c#W0NA +z>IRI%SmIQS!~(M`wjwS>wI6Nuzw;?*<`1D#SdMD=|MkxkhZ0wtub?JSgWd1|Dq}yP +zwxr!QH{sjO5vcbkVKz>&coAwm|5*x}>1tF4YA_RbU;>`ROZYXm#J|7cc`fi;e3-Kn +zw%uiBTCH38Y*eZjpeFhPs{ienf_qUDK8f`2dy#*0GfPJ`9Dv$_p%#zC4C0BX6+DH? +z&|2(^`%nYkM6Ia#4%bf_YHJHn?-gM?oQn70atvjBuaQDL6<=d22Hy0%By5H1unTHp +z{mmlOsUCsK&{(T~6xDu~J^vr8Uu5x0R0h{z4%T8W<9nwlWMbeg&ufj@I2!xo`?wO7 +z@=0%d-Yqy2<8Ude{$*^9wH7y^Zq)@;s$+I~ULy8GwJ$Nt&>us^3<|~gA!_A0yWC#& +z!F1x`cn6lFCa@i~@}sB@KS!K0U?4)a#jR@I><^eJi~-=W%t?sx6{L<(w} +z!Ye@ybic(jPy_x6)o~?i!Yfb{s4;h-zWwi_20V&76Q`~IbF06M>hA_d>i$O^aHlZ| +zH9%+7%6p?ycDH#yjwGInnm`@4!H+Que@3k^qs~3=hnmPR)I`Qw{Y2C_(-kwmH-~~6 +zR-#h23bS!5Y68cxDPBMga0%5u>RosEQcxY{pxSr9TTFe_uNOB^ +z=z(vb;;&GL&J@Ow; +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 +TrP*7*yyL$oZ+&uO?d*R8XL)EB + +diff --git a/po/he.po b/po/he.po +index c5a51af..6b932bf 100644 +--- a/po/he.po ++++ b/po/he.po +@@ -12,6 +12,7 @@ msgstr "" + "PO-Revision-Date: 2005-11-09 16:45+0000\n" + "Last-Translator: Yaniv Abir \n" + "Language-Team: Hebrew \n" ++"Language: he\n" + "MIME-Version: 1.0\n" + "Content-Type: text/plain; charset=UTF-8\n" + "Content-Transfer-Encoding: 8bit\n" +@@ -6243,8 +6244,8 @@ msgstr "" + #: modules/audio_filter/equalizer.c:58 + msgid "" + "Don't use presets, but manually specified bands. You need to provide 10 " +-"values between -20dB and 20dB, separated by spaces, e.g. \"0 2 4 2 0 -2 -4 -" +-"2 0\"" ++"values between -20dB and 20dB, separated by spaces, e.g. \"0 2 4 2 0 -2 -4 " ++"-2 0\"" + msgstr "" + + #: modules/audio_filter/equalizer.c:62 +@@ -6936,8 +6937,8 @@ msgid "" + "16 no padding\n" + "32 ac vlc\n" + "64 Qpel chroma.\n" +-"This must be the sum of the values. For example, to fix \"ac vlc\" and \"ump4" +-"\", enter 40." ++"This must be the sum of the values. For example, to fix \"ac vlc\" and " ++"\"ump4\", enter 40." + msgstr "" + + #: modules/codec/ffmpeg/ffmpeg.h:115 modules/codec/ffmpeg/ffmpeg.h:248 +@@ -12698,8 +12699,8 @@ msgid "" + "Audio CDs can have up to 100 tracks, the first track is usually 1. If 0 is " + "given, then all tracks are played." + msgstr "" +-"בתקליטורי שמע יכולות להיות עד 100 רצועות, כאשר הרצועה הראשונה לרוב ממוספרת כ-" +-"1. אם ייצוין המספר 0, כל הרצועות ינוגנו." ++"בתקליטורי שמע יכולות להיות עד 100 רצועות, כאשר הרצועה הראשונה לרוב ממוספרת " ++"כ-1. אם ייצוין המספר 0, כל הרצועות ינוגנו." + + #: modules/gui/wxwidgets/dialogs/open.cpp:1732 + msgid "Audio CDs can have up to 100 tracks, the first track is usually 1." +diff --git a/po/hi.gmo b/po/hi.gmo +index 227ed6469de1103d6e963e20d08e2aa78de0c086..264f66e2755936310232bb2dcdb6f98c90d610a8 100644 +GIT binary patch +delta 727 +zcmXZYPbkA-7{KudS=syJkmSi_8%7rp_Rx8O# +zIbj!Zl3ZNK#X-xB@6(=I`#jI{zQ6ZfJdZBL{_Uyrf`+~2z#-z +zMx+5l7{GDt!9`???3ssV7Tc&_m<4o^e_{~7aR~jj;z%FCY;9>_%REJ`7ch)JIEuY> +zA|n_>KOUGl93(HGHuj6!aEDjKhhfxw67}2#WQ%Nj9g%i|eG1)pZVOMSAG}*$M7_{e +zU%DWG&E!+4lf_ZjSFjUPs4tpDJ?9GbMILYhKX4d>4y$2;xS7Ey`7P=Jf5=ao7(?wx +ztw&Lxehzh#nAO*?g?z{IW7K_lWCpph{LysY2*z0WLhZc2(I!K^Fphe`2I_<<^Tg`c +z=DpQlP%kW6y@GDFVIO~b-T-QYW5~G?nJ1{Cu#By^Zl+N`I5RKJI~=C|non0Qx!f~} +Qwd7_Zxg6=re|h}wf56K~>;M1& + +delta 716 +zcmXZYPbkA-7{Kv|ve=mU|7T_qQ|w@x)ch$a2j#St;-o1Du38TKPF7P6D04?CiCW4D +zyU0!A;6g4AT5gKC_&)8a-|zQ%pXYgh@B6&(b~qhAe=2pxN<=z6A`K!kUs*JT%fwq4 +z!e6Y#jwIO|UB8@nTda?v+eGY?|LcP%}>N=;WH*$mH_<~UkI#eSJ5@s5Qi7!zX_(C3Wa||_r +zn(s%w`bpH2#4Vr1X5v+gcTndYBfZOo#kZ#O$Y6xR8*1l)dOI2Fh6&US7Ew=_GIuS1 +zW?ozV9(BWl<$q8cF6X1`wWBr|LDr4Q6oU#9v)F\n" + "Language-Team: Hindi\n" ++"Language: \n" + "MIME-Version: 1.0\n" + "Content-Type: text/plain; charset=UTF-8\n" + "Content-Transfer-Encoding: 8bit\n" +@@ -6176,8 +6177,8 @@ msgstr "" + #: modules/audio_filter/equalizer.c:58 + msgid "" + "Don't use presets, but manually specified bands. You need to provide 10 " +-"values between -20dB and 20dB, separated by spaces, e.g. \"0 2 4 2 0 -2 -4 -" +-"2 0\"" ++"values between -20dB and 20dB, separated by spaces, e.g. \"0 2 4 2 0 -2 -4 " ++"-2 0\"" + msgstr "" + + #: modules/audio_filter/equalizer.c:62 +@@ -6866,8 +6867,8 @@ msgid "" + "16 no padding\n" + "32 ac vlc\n" + "64 Qpel chroma.\n" +-"This must be the sum of the values. For example, to fix \"ac vlc\" and \"ump4" +-"\", enter 40." ++"This must be the sum of the values. For example, to fix \"ac vlc\" and " ++"\"ump4\", enter 40." + msgstr "" + + #: modules/codec/ffmpeg/ffmpeg.h:115 modules/codec/ffmpeg/ffmpeg.h:248 +diff --git a/po/hu.gmo b/po/hu.gmo +index 06520e5c3f729cf2aa9f212d93e6b9b40f5dfa4d..857ec9df0a3cec085d88330945164516197e4f19 100644 +GIT binary patch +delta 21556 +zcmXZkWndM@8i(=aoP)bJ6i7mXBtXz02@TIwjL*k<2Wzdd7Pe@ +zp}of`gd;E<*WzA0kGXJO2agkqTQECb!c_PKQ{p>YPa13L889jBIWRc};pbQ&*5mpg +zP}Mf{!7Ln@f`RxQ=D~d!i8nC}13G$~;#dXMJ_t+TI@Iw*EQ+Z*d7Qi$ZH-0Ue*&sQ +zOFFq8CxF5V8dBgc)Chh@jp(GUU&dtAZ((Y@Z`)sCTIxwUn;WOcG}J@UhsDr~rBDNk +zLPfe2X2O9k1&webssle_PTY#R(P>PNSMf7^gt;+!7t^79sE`&$O+_ST#k!~wcESw! +zC8`6%Fa#H&p6l+RpbM^}9{371a$i@|q4cPpeunCKLDa~qqasxs6_KW>0mP!N?}6&r +zK-BdkY<(u``fo5Z&v(A1pbIwH6Lw)b>IYF5p0(|_QK5WfeTIt6e^?Qdbu(7SZq&zP +zFP)DUu}yb#zmi{ioFM97;AcGF=}ti*8jXcsc#zb6-CF4BK +zHav@3PLq0?99W4vsqe-~IH;Eyh|}A2G^@1`x=OYx6e_R}bU>}^Wqs@vV1DXnQFHbV +z)pO@7V=7d~vY_^bAZ(8nY<;Ocz6;gCBUk`$p`M$zFY8}f8{XF}!^)_78`Q`LpptGr +zdgf|XbXe?;B)7ApIb4PgCiIfM-`*;*I1 +z%$lP1h2FM45jDrlZTn7JKZC_-zlY^9=RkA6R;Y-LM9uve)D%xgb!Z-H)h%}IflXM7 +zhMlM$KE_U%agZ6&K&(!EsjdGH6~c6bJx(+h#3n?j8zxfUHN;HCw?jS78tNY~5?2lL +zI1TY1tcGrp;mkdSfv6E|we@FMj(V}L%>#O44E43B<#r#H?FC1e94Lay`e^Kob+8U@ +zvh5#HJ7xNjW-4+a`-AH=qo8bWhYC?Itce4#4emjO{&S{^3!LJpdX%-HwL9toE(YN= +z+rAz(kl#_s>KSEBhi$a}b5Ll-fx)ObJA+z=7p;k?jp!a~F5g>|kM=knsAod8_eWhf +z5_O*msOzSpI=&1Qp;gGv=j_DvTK~sXz$;iEAK+vx7jHJ6!&sX7IaH+5j4>nq9ChO` +z)X0jVI#AvouZ~)-O;8(HJ5=Q2P^&B+-TV|5QBcqJV?jKNYX5|VF#lMOQwf_`=cAJG +z64u7RaUQ1@#-TQ-?brxYjrTb9ur1cWb*P+pi9N9L1lGT9@Y4kIpf}ch6V0+}jEcy3 +z)QvA-5e%PXM$`&psCPr<%xcuu{R|Zm-(-^u88DQ3G1QbaL!I~KWRgPbd^inytwkw!L7_g5 +zf%p=2V%Di1Ck}(L3r<7rXwNY(7M^B4)f%JriG5fAL#La4p)OXY-UHR4pHQo78>*wb +zPy=-LQ_zOm})CtY7B(_I|d@d@~%TZhNb}WV`QB#p*mPy*IsJX3#A=m`9EQg>v +zI0kk9NvMr$Hm1?~pHD$O{vNe~Y(c%0cbsm9=Pzlt1s#u$# +zBH0DC411zpW`j_-7g<%Rh35#s5$DsoiGdsq9U?vKI>m|vc{gU*&aA(>nBh*OvF6+3bmK#SYTF5 +zbJSc8MorOh)QxANu3LnPhp63t0c!7~a#M9Vz%5lbuts6ZQMp4C^m6 +z#}hD?dd5W_rz`fyE_fN$9<$ivbi@^?deSAvZrGXnAE@II-N2pcs8kJPu6{bT$s5viy%88PweV{68b#%nW*dG~y +z>l~(_x6w&^!X4CHy+-x?6Y4>kzc*Q(8+HC!R7CEhM*abn1NnaNIHxfh-(uR89_L3) +zk>GJw<5paYZC5E0tiKei&4`<#dfW-MBlbsqwa&Bcn@}D54Yd&+vF+DU9ej$4;CtJi +zbd71xib~!fR0pe|BG>{mX#IDjpykvbwSI@7Ix-S<;&cqcZ%_~Z8Fk(n)JAm)71~#* +zTu8CjOhq7uQ_qjOt`RDC;!yV=imvwbNfb2Vov69HjQY^HZQEaB73$f4G+S+J)D%oW +zZ8XbJxzc2vNv>E_q}F3;+=jLBAu3X3e=={ssz0&*HNsXjDAb)X2uGpjemNGzZK(6E +z<0!mu>pj<-2M2{yiFX!YtGc +z7h+!g9`oZLs407D{SWI?e~0RL?TzNT_NY1k67_XG62ov8>b%=7g_;!J;ulzTlldH< +zie;$(iN(;j*>s>3>cMSL9gDT?ai}eO7HWh)pyv1>YCz{uJLO}0{5fjM-OO7|(nO+q +zS_gGvEGh@OpdK^;TjNMn5?w~^@pn;4=hPAI9qV7b-b}wwbvtg#HJhlBy*t**c@nTY|cNwXOeRJ%rk@&iG~h +zJ*J@LlV-aKT`p`%y*%o{3s57yioNhP_QS3_SU&g{DtTM(Gy@rk8u2vLl>CeZ@EC?9 +z;S&$_5)1f+sn!jeQP5n>LnYY`EQ$YMMa=Z8`8sZd+DKf~6s$l+Y$Iml#y_J*erlIV +z-Ycl7yM@ZJN2v45>^1|ggs!r-5rv|-0>khu>H!}x22=0xI4iIYYE?W&t@l@01butW +zoR`Gn)N7;eGZG8oYJ2=VD#sq!_9XjQ|AlFY*k{&s%Apl-YX1Mx8GC2|Kf*GYdf +zq0NBGfe_q;rBTQ4p_bbVtcu0=o3H1=7)^Z>Y9J5yyJic0NrNJg<$%e~YN$}wMun`o +zZSP>)yP~F|A1d4DVMAPpLHH3hb%6&>F0@BY?G)5<+=O-Um`g!D&hfjsL0)V^eX#Wy +zDgwcWJWf8WWbKaXzzo!~+Kh_aZ@2{iM*X}$UkWhL*ua)CZJZ&Q}pixf0*+EP+M?GTd#|{Uw71UAAvl_b>>mf +ziHmUrZbi*a@uPewkkwJBDVYAJ8NmWn@~uI2XuGYS#^Kbj;zVq9%uK;e45A)#+)Qaz +z)N*Zr{@?%gq@WRxvnNbJg>(UGqe#FAJYaoh4L)IBuMMojQR_Yd6`?bzDSL+NG2o<$ +zz!A(({U6NfQb>BrWN9AkLA@LH#51Tlu6WvHe@E0Dk3v0Y5h`+ra6DeaHQ4ox$BDrV +zXU&e-5X(}Zgj$vdurWSFS94qGoH@`OweClw+Gn8VbfvBDLOt*dro{WGDR^nkaNdlt +zAkLvZ20cvSIaGu%UNGMg|DXmMe3A9vi^9~4=D=GF5|qq3>voN4+gqpa!-Ili@bh*1YQ<*1tB8lQd|(-$eEFF)Ha^ +z+V+pA5vRIprXmaKfyGfdQUf*DT~PO%idt^pSvTAEgQ#V933b2sE(L`!*)`L{VAQfI +zg4(%;p|W)^YGi+7Fuuc*m@CmFYa`UEh{e3v8`Y7ywtY2fgW86Ay(hnJI^d?Jppj>_ +z2BYS@Fe(yNQ6CbuP$6uE{&kEBzfyKOo& +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 +zX5#ryVG0^S4CqoAqqgST +zs7T$%qWB#3t_iKf`fp329)$|H4z;fDqgKUh)D4r=H604W(bQ|<7kCU~F-twKa~%hv +z9@L_~xlaewRQ1A8{2DbC%WeDa`mBG=@i7{d-DmBIZ&0Di-N4LMIBG;Sur$V^a%Lgc +z#-C6Te1p-Ls-f5a8`SDpg8EQf|H+zY&D_YfCpIz;wXU;Xvu0{+zKp8jIBwV$HODtm +z9eIQ5aM~tjgaN3RS|n;!^hX_^h}sF~qLTRsmqHMQgSO#+)}&3%33*Y+tJ!*2>v(H| +z^$_aQ?KW!X{D?~C;AUo7N25B@2(`a-!@}r}rJy<5j9S;fp+_vP8>o(%V`|8z~iW8l&_5m +zX#{G{DxhxE8nv}{M}=|_=EupXDcFo_lknYu8gZ|7CNcw1`^iYu4mb(@|Neg!1@-hG +zDl}(N7d}9R{yA#hzD9*SOM5ftIZ*G6vZ&BEK!v;&#$p^U$K%)t`*bi#xgV7yS30o% +z)uX30%*XerkPG*eI+nVJi9`(QhCNV8 +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 +zya%;`9Kmle%?I{x +zvrs)>h??6UQ6c{oy?Dub1@&4^MCHt5)Bs+fawOL$)1eU5RD`2`D6NI+h&z#j=43vq +zr@K*KL=UklzD9+e>?HS5m=P^^`t)kb(xYG!%*!psEGB& +z!dm}xDHNk&KX%3!s5xz!+~@!Ke>Cc4a}|T}6^3F!3ZH++tALuqK^TI|QIYx`b=?j8 +z8QZNS0^5Aq;!tn58K^8@kJ@^VqNe5)YUDTU@mHwxGZ)}It^eW_bV3=_1$9x$)Ed2)cN;N=Y2#yFgVQA^P{e-g^JVwR78eaM`0ZG3FuCy@SFmBu`@E<=l>6e +z)}cC9rl8ON*Q=e@?1g;J@3ap>Z9wG;`}}{1*n;<{7mD!t|LteCB0m2=NLq{sXir_# +z=ZwLVxR|MET#Vep$HiIydg&x9X)Y{<)v5oA%g__)^M6#XK)pP2m-6|4#Hx=+s1HPq +zyh3Rcp{l4{s*f6ZN6d@eP{}+E^(FL!ZQoPcH9OWV8k9tLQ5U|ke#C0jy=6=e)I>e7 +zDJrC`QOmF+da(x<#NM{P2(=8CqV|vVsORiL4<2_Z=z>$I?0t{AQR=ehg7m13CKpb@ +zC`^rqP|NBJ>ipZN4*iRI;8WBVEz0@e!!!j7CLl0&+jsnL$A(&P6?FDQXT^phmI{gYb7$ +zlHSHp%o1%nRMuJn71AnL3#(%}oQ2xhPN4385jBv%v5L|>(H;mbXL?uw_23B91r<;o +ztc;3C9n=k)qi);=HMd>RKVo})1S;h5sQXN^?bEEYF}ar60t#C9%TOcSgu37whT~0J +zPgmaO|Aj*)R0oP$BT=~!h1!7XVR7t%daZwp`sTZUB``|`pZ`}iH88DCbSad?&13E* +h?6{YZr0tFcIoo+s_@aWk51de~oo7e2cHVi3{|DAVX3GEo + +delta 21546 +zcmXZkb%0jI8prX&`z|RB(y_oU>;k)VcQ*)2BTIKki_`(>7Nk)TrBMk51Vl;@L_|Wk +zgh+RH2;T4SedeG0nVC~F&pb2d>@MExZ&IImlY0HQINwj;dEMIvyeyvQ-G~o(y)oD> +z;1$Gvm>)mKop=DVUFd#?V%)q@=ZUP9VaU}8*%SutyefFF85 +zDc8^u({o@H=EP4iH-3*L@FYfK@{R$oD3(OE_rPMf1a{^9m?FrLK=>miYR;+E2Bo(98=@_ +zs1EeOJUAWoTz>-vU2p>Rz+0%1KSy;a(A9eS4yxxlP$MgYid02ZL~5hXZ;HCUEo!d2 +zqej}#)yJZ)pNi>tzV`_QU9ilZuntpF--5buziU5@3gt!TRa9hdVkLa(EYmIEb))_f +z_R;xx3LAB|`{nBq@WQE=#Y{ZkYePXH8iX-89@F6Ws5#w-ip&|;ejRoGOH>4s^$d6! +zFg>b+1yIKeVK`Ps4X}ed-WzpYKYWMhd&4MbE+?QuI2{#%d6)~AqeA>E#^G`N0`v6> +zc$;uPYB`PQZ8@+2f26)1Cu5I3Hju}tjwb1A=0sn~R+2(R_JKImx}N=kn*z*7eLrf> +z?xA}A*!c$4vBdpsUr2}Ts26edS*YXdP#xTkQFsdVT(3XtUs;>Izb(TOsCpyR$h)DE +zZZZbx;4&;jeboT#*d^5ZPBzdwSQzzy5~%ayQLA79mc}no_dSKm{+9z;|5^^&23fXN +zMlG}2sC}V>s}DzoZjNhT>+1VZ8__wefT;%C{TiSm)*m(ZLr_yZ2GyZSs8u(^cL$bX +zNgCFodUy#tVb~BGQFp9KeU_{L4;8`$9|pW~m;;*QGR&H%5i1J=Vc)_&#nxg+3)y#RXm@svhI4?rej4zyJ)# +z(XM?dY9K$NlJTiC!D!u|^_PM|YYy~8&DlQGGW^YX9JLXhL(S!V=PPVaJ>eK@?~1yv +zKk7ciP}ljWj?YF#Xc4mWd22D1*8ffw@CY`-e{c#G`q(y}ZCHx>uc%118MZG}#;VlYqB`^?YIUtbZ9wZ# +z1N1jh$VK62=LOV>ftfbKq^RV~fw35i8bMpsjYptvIL_6lpmJ$8>Ra(^)PQ!Q9(Wkz +z@gx#a-z)KnJ+Lb3ggRIpo1j8I5f$n=sI7T57QsEJsd$0~Fv%>N+v1pqdM(s)?S<;# +z5Y+ugpf;}Ym|W|BG6nT`9%|XFM2&D0>P9C}9e9DdL5kUS;|!>Eo(mPByr}z>bk;&e +zvL$L6wnM$ldZ2P+946EHpGQFtUWy9UI#g)4qi(Plm9@X&9sCrtj?T(7ogq< +zHPR;d1GYpxD8*d6e@@gpBL)?@y6A^C1b1LC>Vny*2QEXMxCPboL#UBnLyi0ys^hO+ +zd(wHfS~8Z0!39HX&2Dk8JzvHlg(&)f;i-GMExz8lrSgTaJR$XYv +z7h(tMVT%G@SL}*i@Gz>q*y4cK5$B@nFPyDEv$x_;sN=alxBHIsDd<6Gu_ade!cJU( +zQPkgH4CY;8A#92Yc~{iP2BAhe0(JhUsEGcAio`zDNRPPo%UGZK9V~`^nJ?{QvJdLQ +zD0F?uomj%3|7>lpaTORP%!fRZG +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 +z6)b`+F*iE=Hq=PM +zQ4uMET8^bqt7RVQycejs{uec6iL==GIZ^kEM4gu(bzUs$yfUZ`HqOHOS14Q3ppbM# +zjbt<`RG*9CLTA*-m!Lwl9rb|Ys0iIeW%*;wg*n4*q*bsV^;)Qq{)ppnCu$0+=duUZK}|(R +zXICV*e6J@3g?0?K!P!_6@1Z&pncF&60VAllLbZ=Vefi9D?Q1a)^*^x{K0$pyG|Xf5 +zudq4wf3XwBMFjcBDy+XP6ttmajI +zhQ4~EP|4XC^>y6d>0>eKU!bl(hDyrIs1DwXV*RU-FxncjVHEXZsFA;q8gW8aKKwVfG)sYIQ4#r{VC4;)(Fx2@oT>E-g--VirOQ`$%k12#gn;Yc@4~r9bA1l>W1@CH~JcN;U-i^cA%E)@2K4P3w8c$REQH7x2ed4;nWMF +z+8dzm7muO$e?JP!-a+n!QK%cvL~S6OFemx=)OjV!+Vbp-$w^Kh +zwUJFLXWw>fP*ZUVHPXwjejNkUAEP?-tQ_lKbC{^Sg(em1ghqbzbi9tX`N4C%E=is44v!m2}5l{VFO){8to|WEra3`Ywc; +zo0_N_w?K8Uk2^jcb)#ii8aJbEbRYGgcdFU_!cn{>aw1qg6e-_JOF^N{ +zjR~=&vpg!bh*0 +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 +zemv>w2`Yqze&LW1)qy\n" + "Language-Team: Hungarian \n" ++"Language: hu\n" + "MIME-Version: 1.0\n" + "Content-Type: text/plain; charset=UTF-8\n" + "Content-Transfer-Encoding: 8bit\n" +@@ -6813,8 +6814,8 @@ msgstr "Sáverősítés" + #, fuzzy + msgid "" + "Don't use presets, but manually specified bands. You need to provide 10 " +-"values between -20dB and 20dB, separated by spaces, e.g. \"0 2 4 2 0 -2 -4 -" +-"2 0\"" ++"values between -20dB and 20dB, separated by spaces, e.g. \"0 2 4 2 0 -2 -4 " ++"-2 0\"" + msgstr "" + "Ne előre beállított értékeket, hanem saját kezűleg beállított sávokat " + "használjon. Tíz, -20dB és 20dB közötti, vesszőkkel elválasztott értéket kell " +@@ -7544,8 +7545,8 @@ msgid "" + "16 no padding\n" + "32 ac vlc\n" + "64 Qpel chroma.\n" +-"This must be the sum of the values. For example, to fix \"ac vlc\" and \"ump4" +-"\", enter 40." ++"This must be the sum of the values. For example, to fix \"ac vlc\" and " ++"\"ump4\", enter 40." + msgstr "" + "Próbáljon kijavítani néhány hibát\n" + "1 automatikus felismerés\n" +@@ -8974,8 +8975,8 @@ msgstr "Karakterkészlet" + #: modules/control/http/http.c:44 + msgid "Charset declared in Content-Type header (default UTF-8)." + msgstr "" +-"A Content-Type fejlécben meghatározott karakterkészlet (alapértelmezett: UTF-" +-"8)" ++"A Content-Type fejlécben meghatározott karakterkészlet (alapértelmezett: " ++"UTF-8)" + + #: modules/control/http/http.c:45 + msgid "Handlers" +@@ -22956,8 +22957,8 @@ msgstr "Kezelőfelület" + #~ "Controls how aggressively to insert extra I-frames. With small values of " + #~ "scenecut, the codec often has to force an I-frame when it would exceed " + #~ "keyint. Good values of scenecut may find a better location for the I-" +-#~ "frame. Large values use more I-frames than necessary, thus wasting bits. -" +-#~ "1 disables scene-cut detection, so I-frames are be inserted only every " ++#~ "frame. Large values use more I-frames than necessary, thus wasting bits. " ++#~ "-1 disables scene-cut detection, so I-frames are be inserted only every " + #~ "other keyint frames, which probably leads to ugly encoding artifacts." + #~ msgstr "" + #~ "Meghatározza, milyen agresszíven kell beilleszteni extra I-képkockákat. A " +diff --git a/po/it.gmo b/po/it.gmo +index 8f9bcdfa4cf61fe71d0c8eee9dd748357b5c39fc..42a7ed43796e7133171014f2aa409816372832d0 100644 +GIT binary patch +delta 24358 +zcmXZkci@fHAHebJd%q$wA|s@)z4zXPD3TPFj0lN{%1G%-W=gxLNLC~oWMqV-C`nVH +zAJQPwLRtOZ?|aT)uXE0Qp7WgZIiGW$d%ukt%kwW-p8w4|d!+_tOC+AWGb2$rkw}~! +zl99Lx3l7alRK`1_&*LKMo3S_!zAGb96er`QI0rApccWXPpJFcBcViX&0kdPiVHt_s +zSZG*ADp8C=DH^I`Q?z~uI-m*Y17F0;a249oS6C9W4bMna!Ys7?YP6q`SPJK%6Zrry +z$KRv*@6Jf%r(W~!R7Tf}gpDu{wuzs2L9f3B9mq&Dq+{_C +zoQh6pHfG`qbjEA2EN;h&m^x0u0TjJATu=e?QE!M|*dATuA?N@mqceRLjnrIpfJ@Np +zR-zC542{fJ=!5@<-v4`SKabp(O5_|7W>64Ks$%F3b1b-`zz?g7Gn`yjZW+{bV>H7O(hbCC>Xk5(2)F%jqtLO8HwI_BRaEH=;yo8j!&Z< +zUN|ZvQ3fwX+nb@u+Yyb_ZRmBw(6t|jPT(ml%<~hoC^(`OXvkJ$bKHzZBHQSYbOq40 +zE{f&wa45z{RVVGz0v*#M@OIoNuiN_98=C{Zfy7%TT=fXC*$S!g&SVQx2Uf| +zXL!e$Fq6?}l0AY2IY;K8IkDpYur1f4OZPK6kfYI)=s*$=u>YM={s%%s5wyb!cq2AL +zJA5{_&qnw03N*{VM04UWmcUc7e#zLd1f|gkHo|&%HM&&e(Bz&!mi_O@w$bo2et|}0 +z?Smn-hp-{_W4mHD0<+GLQlf6u|5;)Q-2w=@N2vQPsMu2hcXhisSm+QI0qf*_Sn838?a=l +zg5xt1xA8%Thcgl#@D1#XXYgw5H6i50V(du$NUS%Q7}`gp$+`xwz<;n6HklNXax5CL +zhtQ;)jYj4*yv6;$mVzTMGC4%zPBh6Tph@yHI`Vng2G^iVaULJSl2gJtFbB)~BP%{xo{s3wR07Pt1)UtU}*v8_-bg!z?_EMk3d=&|VB3PMf*F0_LFydNb1YcC8~s;kPW7@|83|*gCXpJ=>rDsU^KeVr=bIzgXM80 +z+VMX0`roiRp2KQb_3=>ej#pBjidFG5tmSpFUgHV&VHFyBJP|IKg4W+bXLcaAXFVA{ +zzXtt$4BF8`tckm^B3}4Z_`G(s7do*=(Byp{8{=LyvPDu)he9QEMorKIqa$YFt!Pp{ +z6x(N^k$DTvl`U8re?W8Qf@eaA3!v9!#d;mI|5oUOyPy$G^`qcgj6q+MPoi16IQk|! +zpjB8FKSsCJ?`W1+e>R+ab4+wo!d_z|GN6w~g&x(1~?NU*E&gWS@p!{|pvz +z|G!AV5iLWLX)}6a?LtTV8@gW$%naM77&`MTbY|tyFQ+wQy%T!<%{T=6paa;6?vBIg +z0RF`b-T#Rf!VS5i1<-*MLkCs~&E95chzDT>yg%0Gp#xfh9yn_-iSNbw`{>ecL;E`r +z>nAW}L!KAI2uqoI`ALy +zfA|;f#V>qM-%a7o*&&2wUd~8lqh1kxP-S$)ZPAW9ph?yPP0~Bi&`w1M_zF6(Rp|BG +z(FpB{9*^zGIpOn5QWRXfa_E{@jvq8aLw_~;pzi1l#-Ndzf@SfU*uEyVe;DgupbDwVmTawM)GNNATyEeok}dB;QK$@ys+Q9VJGUZV-Gxo{qUyw8Hw(=9(!TY1>yQp +z*p2#*STDOU)W@Lb$1b#=3a^H@;RL*v`aT@s{;#$u?DuET8NY?D@fI`^yU=9%5k1+C +zp))GHI7Fr?8j-eWGIosZeXu(9L0AE2qStLgm-Zvf&GQqxDLA7;*c)5F79Kbcy~d +zaTOY|)b+7p5}K_~U=w@~9pM>F4`4;O@e=ewCDGS#Gc>8Xq1O*ZuOEf3_2gK841Mq{ +zEQPNk14t#dQ7|-T(T+3U2{)F(I@BwnYuFRLZZsO|aX15C!n&N<^;U-D9JDG7Xd1d? +z^U#64hFQ2A?e9yh=KeoUp(YKNtqu|Bgte%TMbGp%(DUE}^fmlBI>Z0a2;^H6>J`yQ +zG(?lDbF^!;J38~;=+Zre7r6f)r(lvjhmLFsI^wNpM>}KvOLQRn(BwOU74R%Nkh1TF +zTxf>wf==i=WgzvT4jt$o^txZrWITmNuJpRF#I@J4|6QYoG&tiH=*-%qGw&Yjz0v(X93AM`*ghk+ +zzlQ$eS&2S)KN`_v=m0X-hlyN_POt>JRQ1-g|Lypi*l;tpr9K>+<0|x>a1uS5FWiuk +z=!19QVEh>EsKI;Tx@)l_^}gsprlCjo3_OJ!(6wK=G5j#ulA_RphTNONnsq?4yFVJ* +zhtP9jHde>&==tz3Irwv>xj&W2zcmb? +zD%R(NhG@v{Lf86PG1odwc~wxQ?KaN_-L` +zd?~i1S`PhF%>YcN+>GYNPq97QXW{-V +z^nhuKZrhINeZA4pKZqvpMD)CQ>a!Hvi*52^Z1`|jxZpGNf_-T6{DdC0r_nVn{dpK* +zWpwwnKnLCd9YBA)4M(7n_!fQpok0hd{fqcoPEjyKHPBGkLm$v4UeFOe2X2dwi_SvV +z_TA_g=m3tQk-Ol_@RO`KzCyh@dhqN=bLO{LPZj(s%(xVKL3K2no8lcf5)Ji!^u{yj +zK(oFMYhDA(Q*VWym;-STzKT<@z&By-U&L;(z!$p8U>8v;XGp34iHag3kOT?!cOR +zL&xW%IrfE-=f^BQFNqGU1)5wpp}EpK*6)e+G3bn^qZ4{5e!fuM|4S*DL@Ur-*oa1C +zE1InbqsP%1o<)Cd7x+HB@9UvUbS1jI`k;}z6Mf(W^!n*&Qon^Y@Lf!Gq;Q0S`?JCS +z!i;XjO4Ns;YyAQ`ki}RFSE4ihCAOc%o2g&8KYVYv4V}>K=zaG@$DzC9F?67__Ot)Z +z_C+)pqBqfRvm3Ah?nGyj<3Q-}aY}^jDm1dU +zVKq!0OofmyrNQJ|j)v?z +zRYWJ$6ph4{(Ob~|Q^P3SO5qVSG{0g?%<*%WdHZNrtV(-doQsd6Ia2$VaK!dNlkk3Y +zrq7|DFGkOeFK{IOgD>J;htuB=QivH{CcKZo8}=4eKu9ln5V +z@gTYc6^{k`;fE~69Ndt>L3BJsq{5#eV$IQ{ZHq?qX1v7xKb%4*8YZEk`zrb?mZF~R +zudr>(pjllt)*Hrpt60A#*1N@eUo`ZC(PSQhX8qFm`D!HpNe&9G=@v9=KSl@gExO%~ +z$M#ZxhwWGcUGwH>GWJ04?}L?bAi8azM)&<(bV)uy2ecba&V!h;gCi6?c#g*pPGA=G +zbFsbTi4cLZXpU4vXLJ>o$A{3RT7(YZQ}nuj(Sa2@8A4wI9Y9TV0F6&Fe;cl#!2_rx +zy8rJ)zfg>g?T@3``Ubjo+t3*vK)2`b=-Qq`Cv@?tkd%edNY+E|>wsQ=8#=IIr`Z1% +zM$zCv9*iGMLBBXWjxNbEG(zj*=bO=kXdC+AZ_xoBi|sl72?H#GKCnFcoI2<>ZHz|X +zx)cS^9nvO&F_0wp`7oh{%g5JLy(_ds_`%kfc +z8hu_Wc{&s>j$V#tX*H~f4biOcgFavg8q%p~1YSm$>@DY%wRu?BWP*Xn*WWKW}^e*t~K9IT3qusVK)jWF|UusPPDJ{rC6b#x$a +zqy2q=KJOE}$o;>Ef+PF|z3?0w!u;pLg=Nt%opsO-Z$t;u6U~|aXaw#;Lp~0Dz{Kb? +z(Rt{0d>hTJuQ0p&|8EM;{50BO<@4c!x@i4+bPao=4;X+h#b9iRlaT{2u@Rlf`{?z% +zu`3=xBhui%@bi5z`uS>1|NVaxg|ak!g&puTroT||R{*oM4;q=#=-N(0XFLll;WBi_ +zyU_vvjDGw511EAMcg>bew4%NzBbol|*k#FN`t^HDGMP&MbN;C`wC92YcmOMBCesJW +zMcI?-zuh*#iL^h1eX!UC$@I)0z~R*2L1$VaM>268j*ae&mdcq-TtoXk(M{NidcF%& +z$@E(Hx-gjz-QDOuo{UD|74$W`F8UQ3k>AkmlRa06L_xfkdRcUL+#A~;L9c%i?dNT@ +z-;bj|r6?H6Y`H^-3!q=4%b`bUKU{*3;{l` +z>GPoQ#bJi!(VS_8_Im>w*}Jg^K8l}H^t$Hg1Fyup@ERP3>(T407YU!&MkCdz2>ag$H>bgw +zUL7y!gLXI&eef{!fVmI-H9Q54&;s9zp=eo(eRwo=n^$5%KkT0 +zt!c2Map(i5pfi0Eoze4X^36u~@d_M+JJ8U!zciUXIeTC|>Wi>3eveM@(qdul%SG#> +zIoB>l!DQ-=KIl$#E$@jJJQZDlUbh<%j0+)j*HR$iF5`bxoD`DqRF#0x*ZMOr)csWK-cm(nj``^ugDl*L8`X-xR$Sec(WJ +zro*FC(U;OI=-R)JChvAM0(;TxkCtWsJEF{T;e+DXntB!V8_r#^eHxl0FQWVY3pBg` +zKxbC8d@}u4^6Kb!!|rJAOhyMj2Yt>$OeZxu;qS_)Lb4sA!5faF9p8i~YtRli +zqXYO54e2iQfxFR=9z&Dt96Es#l|u5?MssUC`h8*+R>6w;@)d +zJ`r8BH_+=o!J4=qo$19@Lr5#218RsSWlQutxC-6YH=#@U5T*x=+1>xkDHzf<=?1nV +z*2uXGum-J^e`!BB%CQ=IxeJ4!6|8JmR +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 +zKYl(e3yf`mQ*I&N%z@Wa1vY2;Xx5kE3t{ +z4YeN+Gn|Z$a61~}1Ly-zqBF|zL`cG7=mRUG?aiatq4)JeAABD=^U3H09z_T89OmWu +ziCGlP%Gc2uZAE9W8~5TNbO4*43~To}I8uO +z1-;RTj=+>5A5X#U^9VY^x#)Iz9n-(p(QULZ)=#2uwTqt#1Ij`NR31&j8tA#u6}^81 +z8i^-j`)qWA8=hhR8>;OzIHLcdYkw3C(J6H1=VN=mXTw{r7&`C{=!36EAJ7BsZxGhR +z6#C8RO|;)5*b+}*d942&``_)?^SQ8w51?!RI2zi8vAzo(L*aD|v9sC#_@PFv}QS7B~Uww3fH=@a#8cM;Dj7K|sA%3tBUGsONU&QvK +zXowTD!UGDS1E`61*b04M*ZBGH*#0Q`;5leyRw22TN_-d!iCyRn_n^sl2wUN4^Z`w0 +zhc&+jJ;A!h`Yq`8yA4gck?2}Khwi3V(1U3?I?+|=lJCUyzo_>cg$x?bpdFt_XPEhN +zh{&Z_mU=lf>8?h1Nf-3`9_WMmq7S$itKg&Y^VMi_Za^dYN%TiQcmJQK-~o|2CuIGF +zXovZ+Dwf6@@LF`H^U>Y03hi(MR>yD92wd<=Sc>v!y>YZVI`c8;z-MC0pWiQ2aP8Jb +zKSPu65IXaWxgiNFpaZ=c+vBx(HO@e{+Yi_RFPWE2ti&78w_xu1$;5kD4coGNj$s4p +zbr!P!7f~3zF#PK$m%N%x|F1=cV`tj8<8@ekk!Lkup|CMtzBnXNcl7f?Xz16Wx$`BO +zghy}%54_;D5TUh8!tOYN?fAUp>#1bo1quUR4-MItCKGF^UxfoP`!c=}(ZNuBllts8 +z_@_M7uYHpx!L@HC6A#dye|a+f-&#M0&rm;#t?;20AtLYNHPn;uB-8)Z$aUD3`jHfc +zzbMpPnN0ted}UXWJak-Qb=a@%*Mv~rfp>D`VO=I)Lu$ +z!ruX2ivEHwQQh_7^`5$y!k;v(#R<4<18d3v>bw`e3qH6pEX6YP^Z#%uPT0ghNZ`8K +zo0ExA)Q`TOOq|AkTf)ny_XpuYGq5i0yRjbT*&3F(HF8p>5-(9Odnj7U=he>(PPt-NXJT +zhZ2)%=!8?_g}c!kk76dCL{Gdk=zuczhIc|C^hhort&X1k_0b2lLSHtW(Ifp{}qDzzKf8haz@dWiM +z=m1OYPbS7;OMDnNVJ%FxJrF`MD*7NglZoiddL#m=#LpC5=g=j{_Cp9+J~S7KqXQ|2CRtl7hqp#2 +zp^x^Asl<1qYD-P*{ROXmVVEc6b%KcGqDR_C#~$LG&dv +z4NKswXau%k4g3kcukepyK&8>QUR^Y@cj84nKQWPlp?V6P`HSd)7Ng0x41M6P==bQ` +z?pMsh&j&|@0dLphyBk(yoqa*0`iBlmL +z@}UE39PNPV37|_j7z_G-9UU7UMU!eK`hf4z(EfuCu;4#of0sg&tu;EZq3DAiLU+ki +z(S^}>(d#}%CvX5=qJOZ6`#5lH{VY15OW#X)Z5o=5wijn#1x*2Hg86q-=TnJw4`UE^`+**_cI6`P{p +zp&|bZ4dq!hS&L)@YoXV7KqJ==-QMHSrF$8j*a9>eQ}0mlhELEX_z`^v{E2O`STZx6 +z{kLKz>O;}c&p>B5AI<(^nVIS2s)9bSK9zEF +z1~dt~$M)OM+_*i~pG1@FS#)U@#QN)K?yN)m`>0@MD*dOIPiSy^?L^o1B>LdYOTvX0 +zqHCH5O`bw%$2HNcZh#&<&CrfJq66$4>o=qQ^+fyWi{3xz68=MFZx|jMMxY%&fF|L1 +zOlLb@NPT{6Uxt1|+JfHyE&70c(Sy;S&BLQBy|zJtzuQ}{fU_?Ut>evWqhO|0*U?vL$1 +zq8%MZBk>28!Hgo|zVcX+dgWNZ9v%3NX#YLYnfHyRF#UJ&mngUk=Abit8~fl^Y=9Mu +zW~Tqq?5$Xb`poDK^vh(nOEc4dWNwaCsgHhm&AL@<)@9rH=0zR*4846spWFL4&bs5? +Q$)ks4tQtKenf3br0W_-}&;S4c + +delta 24360 +zcmXZkd7zC&AHebBo=cW&Axp`XeP6R@SCT!VM2Qw#DT$DiqE#V#B-*T5LQ<5ZRiro4 +zLbeu5p@>rH{eI8PU!R#d&oj@=Z+f8eNw%%B@$BxXCy98BoZfv +zWF&fGj=M4vmGS22lemcbTD%1N+?|mqhNG}JPQ_gKT6A6XJ?DH}g!U`Zeg|0p1wBHMS2#XD|%C?*Vk?58;LQBo@M%vAz_O +z)ZdJ5z=G5_q1XK{MIj%BpU|2AfexU+u#Ch-SR4&uRm_X^(a+nU*LOq*G5`(fP%MmN +z&_IHVIWiT^iG`!Xwp@uW-M8pK_C=4N135LC{qNc*$ApI5Xon@R2i8P8 +zd_1;KLHF@OG|N9ib7Bu(ibrGpf(OGA6hR|c6|cZ6(WM%OCilz-+5e7g0}VgphiF8W +zj}4*SjSZ+DL?3(!*ZZKx=)iiS1MZ6^--uYBj6V2Pbf2$_?OU+|^#fQFbEO^%+1UsU +zRabOCJmYpI|pU8tcu*Wh81-zXdDdRCJ&lWBZp_pCwD> +zcsL``j}MwYl99L;U&LGSIJUzs<3mo&#rD+q#(L!mp?wgVtjn+^9>W$`{n3z=L(z!c +zhbH9|G&0X)FZcg)3XVMYV<8eZqe(UbO_E2^kf9u|5t>_D9j{p2osFKQTRiumpXptwKY!1G8`s8i{{nd)}wQfQn;X+Al{V +z(gU+_1iI$4uqSSg^-Cs(0kuIRaxJEu*^LxD5c;8^z8{_8MD)aZ9$ott_&EN9&UnJp +zVeOwq>tCP){T}V_INDFPXF^h6gf7vg=m}Z*8TP*oEoiWVPMAJm&<+Nn`+O`qu&G!c +z7o#2TK(9Z5)$t@&!%~w%y#roFeGFE`_pz4O#roy$(<(G{nj9_|jn)^TS-ms17n%}2 +zZ;pOG1np=x*2Jw?5&wywmwPr`*9D!}gJ|+TiH-1cG_tuCjP8~P(3jLS^yqy7?eBej(*3`i!T=g>osp5~ +zil3p`Txw=UqB}N24vNHdbjH7-M{R*wVH;IK2V4scb%WU62Ax<3^!42zP4=51{)s`|PlN@}e^@gwCuO`sK7tthYd~Z;wN;8#;i^=)|Es5Uy{M(9l2p~=)e*88FN--RaO!)S8765H3IA>SI^i4JgY +z{QS@y_P;lrrNMokYi@Y(WoR~+$1JRkX6tomQVl?N!Fcq(ndktQp%Ge#PT=F{4s_sO +z<39We_uz-mv;Xg<@Y1{x!i!(XNMxga3HqRt=!hGj9XCajtP`4~H=&^&gAQ;SIrHk{ue!nQbiVo1Ew>&_Jh$855;td(KVcjb~qo+-lcd4zK%w!#ET*1SD?vw +zCAuqGVmZ78jpU=~KqeyFJC&G6p&JdSLqp=4mogF^slR|X;c@Jb*S?&QxDi)kAI$Sg +zI3EV$_0%`TdeK)yeF%DfY(e`eu`s+1M_?!FJMeb*f7YU~-ycI~{4%=6>(EGSL6hlg +z^kmzQ&M4R75SbciL>i#U*etepLtje0u>wv+uUmsI?c11#=O?yOa7MfFW~{d)Ja7hj +z!#wnXuV8vRp*gSaW{~7P0eiq$D176EWjKn?Y1G_H|IWq}O-sjL9ScK-r^5yJ*3!l;8 +z0FI)eK98R9IaY)lOQAEbhJIcT9Z*wrChf2`_Ch1_44SNq(Bxc=PHa0G`dw&}{8$+BzB=8JA#h*ESgLgydK_a_0Z2dpb_YWz8wdnyXh&cjQi2IV4l?> +zGMA%2Uo=4@mbxl7Jb*sn5p0aFqa!?y=>ecOUa%%Ss35vTHPNKH2ED#7di_9jtw+WB +zL+JgJu{1u13?P-*K*7+QKxc3kz479;8HqZ0DY}N8(d!1Gp&o{_a1z$#%&z!GNY38t +z!hpu2OEv=?*z=f$ucG~Zgw@>t2PxE~p}?CV0xhr>^`YpQ{vvuFyotVsKR{>rI~swE +z^`U+V8i^`sa<);~fAvI9-Ny;uQH +zpaUuTR>*~#=q_l1`LGxI;DP87KM{@eWK4PC3JN~>6SSir&P69x +z`=j5KhGDwH=n8b8+tKU3LzD3+8o44H!V;I;!2WlQs?gw!Yojx3jLy76tanBCdw+DG +zLu30>vHf|hMEhd&!C#^g-H#674|F1#8^Z+iqf1qBBm3Wuo5zOs*oJz4Y>G?pB0Pc~ +z&HrFuyy=~c#2|bJ?Wpp*;kuSsk$QJ@AY-u{K80s-6}t9|H-#Te)}<&kqv1Td6iwd? +z+1(Qj?S1IEFa@jQM)Z961)W)9b2yOlqr0O)sDNay#1z0vCiViQc=OTh@N +zK-d0lbU-_?EEe7pwqe8Q5VXSu=r&xACfBF2{tLQobAFJK7==yH(65Vb#w)0AL+(!{ +zk{^Zvl)`#^Pz4Ryt>{`mjwa7bvA!K0=n*tmGCm5CDU7~LTA>5$i$3^4G-8jVOEnkG +zjWsyi{r^d9==X6*!jb3$$6+g6hK~3o*2VIlgpPZm9o~)&aV&apy%|4$2MzTnvHc4) +z*>}hG@39@vPy9r|wXOAOn87XR%*LWiFd4hyS}cXRw}ykLGWvNBbRc7}ElxuZuDxia +zPN7SD;b$3%=2#5zY2?aW9lz*^|R^Cg-y2Vy;yV^^4QVf2F1Xg1ft0XP5+ +z^_S?4$I*cn`YNpX-%H{-kTo6dRY +z%#YwUEVCzc{9E)KI`ZV+@I|5^IQTiyTjDVRhH +z(e1JtjmUa5TX#hdqWk&;y0+QB5AXYm=n^$Vw^uhbQa7Uy9D!ax4vo~ySOZ_fRC@}0 +zDY!o??+Y_(hn1-JL)ZFgbRcuF7A{6-`dw^4fj3b92mRh~{r)ha8`1l2j}Ak3$3y5q +zC+}zfo9%OGFhnn*-)2`~ecX)BtIdJkGs(U%>N;L +zz7U<*GIYt-p!@#Q=-%kb6a|mgmpc`%m?wa0`V8(a?O4&G8&M^Tt01+hSGf-SI_y7|oG#hrG&G+Y9~?W?U4_kt}pZO|U%Phc49|bO7(6*ZqPHEa#aJ`uyks%AfK+Vwoe>3`pVrXoC7|qrf(Y4!v&TuE1q=(S8J&8^z^K3}UTxcXKqW3jLufHB0 +zSiiIEe+vU?a3J@@4@RS393DoOWC0qX74h@6=t;H#eeh@K0QblCbLaqb{}~=w9DPoC +zbemQ~BhWfU!DMQWKBzlhf&I{#%*Meu4_jlNzrvb!M%Q#0y00HaLp}!`&^q+~t!V!{ +zV*59-{ww;t)R|bwJQo@+LbEgrD`FM&=0k`ss{R2YKpGaU1-Q2MMM8I`hcnEK{N-ec8I*?b;{@z5F=3Ttd{lA@pBm54%@FW_-N7rCS +z>KVCG$@E%x$(2lp?lyEEk3u6b4Smh7h<=PlEev_i$g{RRFXU~&Ne~m7N9;H2SDL#zjvHFF{^ir+Hnbg0=(l|74GEpxZ +z+Y!z3Px2+x+jd8E4|?()j{borV=5zmGJW)xLtiRw(B$ZcZo|Ro0LP;3gmo$Z(E2+dD3LYef(FgsBjx5(jVFp#v4jQ1L +zy&fINV03_wU^$$F9#ro|w_z>n-=II30MY6$DtiBLHFrq +zG^-DwkvWF$g45_pnWJ!MFNki>66p1%(2!R`A6O5aVAELdgz4}9Jt!EOKJkN*=!_pi +zXF3mk@LF_j-$D2J2bhK5q67UKZ^RNslIh>=3`ehj9X-(2qxWq?53+-p{{8=93Wn|k +zI?}(9q$D!M5IvVQvX!5L&ZbU=(9-4eR(X~8?=EyJT +zS^qay!)r=~en+4ac?!$o0xahK|1f^A4=eJ)A6N-5%L-?D+vu$5;b?=>$@EXXk4F!p +zA#HMbunT&Q+>S)OQ6uZ>=Z +zcGL@h+6Rr5*GV~kHt>_J7(HwaO +z-S;1&+5H1LvpnUK>EDuNhRiOE<6-$tLC`Z*SUMc3>U +z8mc0d!-K1$+p-qc#x`h&Bhg%$if-3A=+eB34tNXN&nMCS(X;4%`KqKN&iYgE0X5K$ +zTVeWbh?S_1MAz&^^tyMkCVq*|G_z_5X$iFBDri#HLC=FGSP`#9bLKuw4;Zt%|6iqG +zNSCD>*p65u8wU>hz$4YdHvAX8E?f1`K~8k0g`&mK2bILBcon*&-=f)nQH?N>vS{dA +zVEX-kH3gHUBRZqL=z~X~H$H{#lsN0VtYngd^=13ZLf@hBRJ{58XU#n2=# +zi9V+urfg_W!5eSG^lKIk0R|`?u&oe?$j<7G1JDwL*JEbb^i0 +zA5=QT_Rh7~|5-HLN`nW&Bj}BD&=J0g&TxDDd>;;=eir*--`e4v_yEoR1F@c{6GD6` +zx=SucCsaSSH^W-g+tgwIJM$6og0bjGA4Oj-v(at05S`(w==*3ScA=sF9v$d$?2P}R +z$=kVZ*af4|-7^Kfehaq6ohb^fDU`e-o_JV>`dIYB7tsg5j!ke2UW?i4g{A3$4XEFV +zjd1}s#Jyl7V^_B#{r#neIyj=V&J@H1K!v_1q4(O9(Ol~@yhL6fm$!>}tV +zq4jF$+BQTZ(*%uVn^^COS=9TY5q}ul`2GJ03WoY~G}-o|Bm5KHCOI308}gw)7ZgDc +zmIinW+q4s&r@pdr$bl72l8L*hZ^t@#<&`0q?m?6LF&u<5FsJ)JqiIO0Ja{`F3`b|M +z2iYk?;5^=LBQg&w(2qXT{uUCPhVU3UO;^Zdj)3U-ve +zc}TWG=noDh(UY)pthbJKiS|L4Y7qK>G3W!PqDlJ-R>u`+|KFqi{(|nVzcA&t$loG_ +zx+uB?CDBkfz%1;A?&~q=jg!&)UPU9d9DVRQbjd!6evaO^E7p&o13iJ}Mvj*3f0Lnj +z%W%MCp=)0SJ7QxrR8OK0ehFQI_0f;f>vy9w`x(9dG(LfOTZIYDM4$6IIS +zLKYvP!BGB+e(^Yujip8ANZLQ>YcIt-{Dnj=loQ1?WaU@$t6d$BH# +zMw4+R8rkpAb0Sr_ZRn^!dc$D!{Cp3ZT>oKd%zI7vyhgME +zIEHiPrQiS-p>Mf&(6##n4eeKGcAt#x8STRi^P>YThTdN-)>}n;Mu$Wn +zj?RoOQ}_RSvEi%eG4udQbO>u&3Qe{;=zeaGK5#TTz$xefwG_?r&(UQ43f*Skqu2iy +zy`W=gFNx{*e@zN@bPf8TerSltpxHeSJr~xZNx1{<@GzPa=h5r(bqWzFhYp|-UX3lI +zPe%WTrD!kFnf-5}QRmQbBYNW~H0d5jx6R{d(oKv`kDt%OdbGccp7r0M5y;;q{4jel +zx}@#Vr0aoBurIo#qq?yF{lYPk25(#(KUf(r+>CCM@6e8lbPY4lLhJR=>~DcCK_@hF +z!_Zwc9gW;u=sB-Omr81AH32ZV9@k8?XX?j$U^b +z%VC~wVWzdBjnN0UK_lHIdJmf9sVNlFYmA0|E&A5mh~BUnU5bNfgbt(M^G~2BW!~=L +zdqX8OX$PVAJ&Ep)C1}#V8|%koJ$Ze4;HgAy3a-gjXj0vb6L2`X=6^>sdnEaL9Uh3T +z`9kyo-=oQU3SHy8J(KBw7gQ8Y*4gO9R-qGJk4|7m`tuau*(kVXIc^9cu84-X5jw*T +zXha5}p}Y%C%2DWyIf)8ko&iER1 +zTXjWmycJ#Jq0#ZNeHNNbuc8rLhjzRJ&6Q(V8~;W7so5+1`n@R{kujM5{r`9hb~Fop +zy)H&a{w8MO2CRX5(HZ2uDI{faG;;OO3G_shsyBMwKr}MTFkMj8y!2Ur=u#4J3I&ZyMQ!K&zt8pe8ibYM524;~iVC&c=*m_DG;hh}xncc76Rf_-r~nnSzM2!4m@ +zfuWH&6WUXWjQ(M*@}nP=#{pOyU8}ihWY(Yu%%^C_N6-iUiiY$Lbby6!3l>KsR0@4? +zd9?q!=zyB1C5t*xaJ$`zhIk;3#0SzBa7LpM`VSpQ!P~=wD@1FcNm?J%9izLc1G;Vd +zpa<2x=zt$Xmu3<+G>aEeaD)e=C$T;C^XP!Cy(7%%Ms)3OiS>b4f%;H%X0yL^aR`!KR<;jXO?ki7(n6Z<eE53QF*BT*R}V_kF! +zhejVlXF3_3;6ii)>#+=O!*clBpj2omIyf{mMla}#&U^y4!D;9L@-3Q#|6xPCY)Cjr +zdg2w-r^Nb4v7Wdqd|nUz{BCr2y@C$>hZKdH6teCP+o=myr9LjY9LrPx4m}YwhKAo4 +zl#LERx8ZU$7rw`~nB$&gq8WBVA2=!2x8s%6^W7WnOSPxq$i`qJd>z~2uV_aNhJ`g8 +zhc3x#^cNAw&?K#RUvM~j-{xrE;bDz?VqMxFL1+9XI^ffImEZr%-XH!$!Jz27*qjRr +zjR?OB?uO^7&%$0fb7b%odXjZ|AesK_*jv$LT!*gt7BsiMLbu%>GzWf&{)r`hi(EJ= +zBvobfEU$xh+yPC>ThM(!96gYpLOXg1-N)P4~Exj4|MHkN56^f#m9!vd!Yk*9#dCv +zmTsglkcLy^(rc3F^Kkej@hfOZzd-l#_vp4M@JL9)dePBXiS|v{3XkFjtUf-OSdPcg +z?fKk<@G@J1F3~p=*#Cy~7!9sf^3h-}G_?8A&{ss4rYRcYp6LEhp#yvZU8))AzF!*K +zH=|4WIXb|DXfj^-SXjyykFo!&&~O6{x8ekJn;k}P%>8%>RY~+@yAqASAoLuVg6@)) +zcs>3V>z$tnZ`0XmZmdNIya^rXr)W~{OHr`HpQCx7j7f;@+YV^5O++I!A9LWVXos(% +z4_JqWelxPI5;>j*uxG-)FE=U7a1=VgjcAB>q7yiRPUsw(gn1{2=at0tzyGb3F7Wjmy|D-S +z;KAt3N1-!Fp#ymWeK$--lkx?0M(fcDY{fme8y&!!DPie8Kqs~p9mr0+&;9=c1=sF| +zXT!_ldGsv*3a`WS=q~6wHH7p|G~~n4-SZ$i!0G69FQ7jMtVMUxj#xi}4m@*O7*HWh +z|NH;q6imX)(SxBa+QFS@Bp!+FQ_vZ%LL;>iUE}|uYrhYT&{1^ezs2^9>ER`p7ae$0 +zG!j=$XaD42WY;?_Ei+&i}_n{F!h4!EG`7nS~847k-7kyw`^n(7eJ%v7aDjJz3XtKQ(-GZ*= +zb~O2RV+;Hhonei6Va=PP2Uy!!?}#j2DsepplWqXI)=!|@X&QPky^79s33}viMw9LU +zX5ewOa;S1p{Sqx3OE75_sL9g$G>A(N!PQeG +zpd+7%{!Zvw^!gRi_tE6rjb-r7~s!8E13MSzNFC`Oi;MM3` +z@I1bYSugV~nC-J4>r*fPYBK%rgZto3)Gt_=O#hEY`eSG68?g)KTNIA!Td)!Jix!6* +z>VSUUdolap(66Au;5ddrn82`*oiOpKvDxjL0h|I_P-RwonFXxN7>@V+%6B5z;^ +z>Su5kwq6^49@vYgsF!&onf`ZuMc0u#be#Xquw5Ik50SbF2XoytT!`7;3Ikt^UF|RR +zb|}omTWL6o4xqz^@Oyws(eKbDs<1J<-|xWRsV~RzxZoYulmV1~H+&boXH!^;1?cC$ +z<7+tLJ^nia*Ol9xOpKtO+V_4kagIWdE#c+U^@H%Br?4*VTk#4^d>Gca9(qzvLYJoG +zN8xY1+M_4r2D}4*iuH~khwqjn@haL6p+|V-Ptt#^mP&M?a5oLha06cYX)^H)euIzW +zom;~X4!>a&>eW6AUq%OFAL?___P_CVY_Kg%-~}|I`_KWm+#dd$@eXuCbw4+GQ~bP7 +z;d2^3!htw*M>6pnW_%I8f}O^`)a(2&{LR;N+(o^>m%*Q+8+IlW|Iq&IF18g;`YM_J +zr&sxRhvZ#_@6-Mxx;+mCQg|9~ +z!@}Q&{XYslaAu+Ve<|AEcFc>r(Ub5;OnJ7Spx~LGq +z=c6x^73e_TMrW`C9nb-+irKyozc;8J?TUUcxF3!1WOSkn(MYU7mvVE8f@_o57aouc +z|DbvqI>N&HlZl704nBfwuogBr5F#-!dJj6_k?70iF?4|Qu?%iP-wi)t9n3fwBAlv6 +zp)?Iwp-FZpI-tAI{XYVI4KG9Y_ewMZ-=b@LEPj3xU4qkS#4-+rT*!wGq!^lG4X_+u +z7fdA{pkQcTz=F6CeZYG3#!t}!9E~22pZ|^yAo)XBf}Ch>T!Hr21RY3g%)-uS&fJ5( +zW5(j8Zq(-}7=d+I1HVCU%=Kd!P!aU4R{;&}&1gp>(MU}|XZ{R2pt)%BEkLi^68!>w +z*?o^$cn0(G{6x{8!Wxys9@MWvlVkxJvNhNZKSw(#`*XOy2|ANoumX-jlk{aY>(`^n +zd=OjV88oLF9S;9p;08=}r(q%mA9N7?V(@RQw>^?fJV?DCdc+>U-|@1eVTJ{dg|oaa +znzX&}W9;%vh-8Uhlj;BET04A`_C?ql`yLNV`|9yzD*ZM3LmFJW-_TJ1i8Zn2iSR|C +zFFJtL=yfNfXVK7~N6(K7PljA6iZ02P5g^nhxLgRvXBmhYiCupiwm|6oSvy-g)Q*HlR!P +z3FdSE|46|bPow)caV}(e5j0ybMRTNjv?02Ntrtf1v}({tx@VErtC5gr7`$Mi)enM(g|=j@B{Jap(XZMLU`m+h0T#zpA$@1jfa +zHTn+t5!+ziWM(@1ufs~z`=X(L3Z39gOz;1^nVIS2x(t0_B`k|=(F=y4+h{C0@`=%f +zXjX5I?nl@DJUZaQ*~7p}paZLb_R|S{PH!Z_sl*rxzTY1~*XXhEL1GfRJ7(a^cyW%* +z^behH<5=qbFUU;)9`F#}MtyqD;NQ5Mdf!~Z0=YBOKkL1VkI>#EPiFex8*jn^KB3En +znTf@G@HRe;x8==D{|I&p3uohG%a@t{Ce$u}X84myyq)WQ$N6|ef$)HHXikhM7;HR>aJULQYk~OzL&9kTYx;8#mIpi7!49C9Zo+HV$%eka=D +z-DnaH$8@%%+jnMcUx1#l>(J+YR+xYP>;rbtpu3{q#tZhv`l0Ayw8LM~2%L?cLkIXT +z+E4Z(;Q_hPU6c=Wcqtx>pXaCH46DZihQ}KhzXozQ{Gn$WvauGW7HSzOz(EC0>JN`7* +zw@1H>?O&t)>_H>(1D3%*!sn?(@uDH?OQIcJg^s)(`hd>p%)3YLMX#HL?t-c43}3;% +zxE|}{CB-t+f8%i-)}cNzx(WR*c^Vr!wOYk9)9>p+kF4LYZvBRAn^r#d=#Y$cj}A$e +GTK0d=`x0sZ + +diff --git a/po/it.po b/po/it.po +index 6b1a688..33835fb 100644 +--- a/po/it.po ++++ b/po/it.po +@@ -15,6 +15,7 @@ msgstr "" + "PO-Revision-Date: 2007-04-15 08:54+0100\n" + "Last-Translator: Vincenzo Reale \n" + "Language-Team: Italian \n" ++"Language: it\n" + "MIME-Version: 1.0\n" + "Content-Type: text/plain; charset=UTF-8\n" + "Content-Transfer-Encoding: 8bit\n" +@@ -6752,8 +6753,8 @@ msgstr "Guadagno bande" + #: modules/audio_filter/equalizer.c:58 + msgid "" + "Don't use presets, but manually specified bands. You need to provide 10 " +-"values between -20dB and 20dB, separated by spaces, e.g. \"0 2 4 2 0 -2 -4 -" +-"2 0\"" ++"values between -20dB and 20dB, separated by spaces, e.g. \"0 2 4 2 0 -2 -4 " ++"-2 0\"" + msgstr "" + + #: modules/audio_filter/equalizer.c:62 +@@ -7488,8 +7489,8 @@ msgid "" + "16 no padding\n" + "32 ac vlc\n" + "64 Qpel chroma.\n" +-"This must be the sum of the values. For example, to fix \"ac vlc\" and \"ump4" +-"\", enter 40." ++"This must be the sum of the values. For example, to fix \"ac vlc\" and " ++"\"ump4\", enter 40." + msgstr "" + "Prova a risolvere alcuni bug:\n" + "1 autodetect\n" +@@ -8903,8 +8904,8 @@ msgstr "Set di caratteri" + #: modules/control/http/http.c:44 + msgid "Charset declared in Content-Type header (default UTF-8)." + msgstr "" +-"Set di caratteri dichiarato nell'intestazione Content-Type (predefinito UTF-" +-"8)." ++"Set di caratteri dichiarato nell'intestazione Content-Type (predefinito " ++"UTF-8)." + + #: modules/control/http/http.c:45 + msgid "Handlers" +@@ -17705,8 +17706,8 @@ msgstr "Croma" + msgid "" + "Output chroma for the snapshot image (a 4 character string, like \"RV32\")." + msgstr "" +-"Croma di uscita della schermata (una stringa di 4 caratteri, del tipo \"RV32" +-"\")." ++"Croma di uscita della schermata (una stringa di 4 caratteri, del tipo " ++"\"RV32\")." + + #: modules/video_output/snapshot.c:70 + msgid "Cache size (number of images)" +diff --git a/po/ja.gmo b/po/ja.gmo +index 238c127e105008cb8118a2a5c736468f928cbd06..44f2d9a8ca085a5786184f10758b0d5553e7d7d9 100644 +GIT binary patch +delta 10375 +zcmXZgd7RJH{=o6?7(>>UWr>om%KX~g7W%2Au0kqlQQf|z{KBtN((QVb +z7IiDF(!Q#QWJ`;rvP7j&krd&+UUS}mJMlF4K)d?%CXfs?T@z7c+kEvfIo!?5ncOr|y#Vht=q+q+>N_QlpX03A0P3-C@X +z!MRum7cIs*FW-?8%Wq1r0Qa>9VHx3;)5u4%ks6P=dK>NKN +z_2uZiYq37=c{iITto~kVXoYQf&bIy@U7E=hQ*VSW+yf18 +z02oZQ)<&+2((k`t?L7Di8k`TT&kr&u5@- +z&0I9qZ-rl>0q#dL+h`dZwV@pa7aka1iVmC}&WrXBqy7_`vFabCg-Wn3^5UW}&x +zHZ&8@p!0u#j{5;!_uxk)+7uQpPXl_PxA%OkhF72yT#u%5Cc5+4=!Em4eR;Hhf(G(! +z)N8Lu{fp2AJD^8;GCJRo73ALs7tr8BH=;)|D|`ZLQhx&-ur%6Np@D1;cSU=pm1({P +z=!dK`df84y=P8f+kf;yKQgFdhXlni$^_l2S{(~;`F*?yEG?1;~_ISPQE52Lcj4n&|7^5y7OzW4qlJdaXNa-??p59JR0!&@Bq5w +z;x#F=W$2Fkp&2Z%Xy^O~Q^=>`(r^OSqdqmfA6@u4wBN#Tbv)k~_1#g={Uj~iFf2g> +zYl~*49Q)uUnD6`l7zHDJ361a_G}X(|v-=6X8SPH>2V3*>*6B5j5Bs1HOZ7>XXr$f)0p1E}AL_3=~mthZq&%=tV8 +zdK5OGJ`_#)6iiLW?72ViC?pmwYYi>!ZF8y(P^yq);zFbAKb6`)TOb?!h8_6y4JM +zQQv?@axmHlZshv9(1?vGnYW@L&kMgmU&Jb#(uAGS{-;HK9J+zK@P?dBW)6B=3cpPo +zYL8y`F6fraqkbXgQorHbZ0eY$p#u$5!k4f+^(|-sO}8ZfhV7_diGH*nz!ta=d*Wtv +z$IZ6#j^WYR21lXoccZuIS#;dyECna5{9Ov96M9X1pb?)O?H8as9T|>C`%S_l@E-IC +zUc+YiKKg!ajP~Eq{s++`s{4JKKih&r#e!%=C!;AFgHCuWcEdZ-fEJ_IZ#`DQnm?q4 +z3eXq6P1KJH{}$~-(SMvjk^`+>zZ57U}-Mvc1JCOTh8de9}@VGU$#Z%BLH6ffH?GK=Ld?|Xe +z-{bq3`xF1n!zFk=zO+5rfJVc+8V&D8be+3*kOLcDr@?)!#%j1R>OZ0j?L!Z$$<7pi +zd-UXcM*TeW`Di>IZ^Bym9@=j;I{zMY{=A=)`9H@y(1ZqeQi2B52Tjx&(SAPWQ@>TwI@i6NDg9eg4i$VW&xcrLcYYtV^iV_kd>P5rx=kE^gAZa}Z(uBg}FUGY4dX+yy?>4EO(I5ZPO(X$^J +z^(o;@Jd*Z@(1}-~<2Iq0*oQ7$=eJZZLHl(_*EtEjjDxW+_b)S)f&>4JrusQ_f=|(b +zThIme;>}oR55JCZCO(Mme&_3tAK}08ti5RizhDXV17Xo0Y2JS5yr)`c{mg|F8sj+h +zwU~|uv;Yn0Lv+ASY>YX7rX3W9EztH-G;_zHm-!TQo>5qa6Qg||I`0RVweS-KJJ#8k +z9<)X?FbLb@x#;uTqJ0jU%4fq@(M$GTJYRMlmeGfWc-e1Xlw0{#U#T}Udyo{!NdAJpw_#hfU?E~rZw#AD1u@3En(LZ??VJn<*357fg +zFGq(ru`l%%SQ~2|On+LMqC0FIwnbmR4(RwZumhfhZsh;a49!LZethPyz0(h#wb5e> +z8uDIji&YP$(2qj5b_#l^Be4_Sgy#M^bmouI@!v#!XVmwjTdtAG;Rl+l=Tv-&PRrz^ +zA3SH$V2-Xu7n+F%@H9GbEqY5fp$qQE6R>$sPQ?dd1iHnW(GS5aG@$px)##SLM(5of +z^`c7IoQh9a*Gg%Ei^6NMfR5A9TQ~ICrj6Cd +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 +zpf}L|TXQ@#&xw)a9)JRr)aNBLZ| +z-`I*W`#+NhQ}G0v^2On&Xdrvh0J49j)7um)Ccrw>4?zFworZ02GFHJSqWwAaP%gn* +zco5A{t-o0y^Jg0QfKAcs*8&}&KX%3w(3SiznxW}v!1qP@`EXIV3hloEUBE8vfWM;) +zX>%|w^f=79$0K;?idUjr@i02kTj&5EMtN(L_n;a08+&5aOt#{S*cW|&AUe?{Xhx@? +z0nA3PIRo?Xo=Uk?F)KRGMI&5*POuc6cmtY=Z_t7Fp({J2a<<}2*&MAe +z!)7=Teg8sqYsW|X#Hha$UD%VkX!tbz4x7;MH@dRoyllk>WB_`PYKUJ2RZ$&frYqaO(r-jr&xB74-pj>7g4-RlYdW{}NGq4uD4c|q%_93a<5xY@843EM| +z*c}(5so#VCm@TN9t@uKAMFSdvZrQ)0JguUf<5cqCH~LjHm0Qq({zOw$TrH)tGa67I +zwEY}(;ECbgX#Z!>3@*V#a20yX)}dSSEtqp&GcSNbeyu9-2dZwIGze8xEUSjesqARqWogG +z41IAO`oY?ao`pIEseF8RbvQR%ALiFe{d$BK)#Cm;(7jYR@hbE~@i{ut9yE1-M7c`s +zv=v3+Vd#7P&|gZYpts@zY>d~V-~5@_03SvBEehYy@nFZTXvaUp8g){t8lwSpLeD@C +z^e_!WC%zCpBiEu^G6~JxT~U4jegCTf{fHTlTdsme2K{NFLdJE>G-~9K`U(4(8Q0C8k!Gl|{7ag!>-L&#XVMnyS +z9F2T18o+S$doeQV$D!A6GPcD>(M+vD-`|D?`V+cU`>~q$zgoTYt*?s?+y`B8e>7#M +zqAy&E9-awNe><9?dFTWyqJAA3*iJOyyhBqUwa{`Y+P@p-jId8soQ6ht9@_CDG=Qtn +zl}$whc@jE_dUqr=M;Q=%=wHl_5 +zrD1RM&+^G=iYK50-xuY_qP!g4!VjXn1>M@+;XX8gKXOq~*eG>qh^Dv%9k@FhaXGrz +zXNNapE6TI6JuZ*(Zgk?p#@WmX*a8jsGCUgZLAPcdmSQeboXrg7p&dHmwdephp?h>E +znu*8J0G6TwZb84CKck=E)=g4*cz8?rYWQu~xM}KlLNb@RAu681MqJQMXsQmhNQdws +znyP9oQ-CFC03FeQ%F&gK3a6l3^DMgZRp^3#K@WG8R;gSKt9kz$@!%)46*_Te^si!B +zMF)O3pcyz1op^lI-yYr<^>fjF3(#x&L9~Ar?cbvrK8PeEQ?oVmc>mkCNfQo5J6w%U +zbYpl2dL8GXD|#NiMqi*4ev4+JQrooh7U+t5qnR6m?)kasxHHiA=3>qjFXBPpLQ}UI +z9bg9<(67;+SDO0OK--JZ0b8PHr3{^L5PEG#NBa$E|J%^a&c=%QO1b||u$l^A{1m;f +zd!j>ryEH)oy29pBE)P#a2Ra{}U<`T|ZV2Z_{TlRxwGrLw{pjC{YT^f(-~fHm +zflm%Ehz{ezDQLet!bh+d<@xB={fHi_{Lb0T94tZq@wycKfc=R64k+r9{`|H=0?lPQ +z^5DHZ65XSo=-=&A&{KXXmf^T)e-4{cei!}4v;*7Xesr9sT~p>-pnvbn(2VrN?${5_ +z#I;!D{hv_rK#HSbE*i*F;R^KBZbnaaUbl3}TA(Q(gtniL{%iO@QNIGs$W|PLzejz) +z?kRI;VY&Bz77y;xmuQN2p)2_v&BWhm>JB|To!+)sLb+R%PegCcnP~rO(A3|Go}t&# +z@z$dAtV6eKGv-XqFFd%igXpPjazx6&5VYfkXkg>f6-`ICW?r}wEa4?|2%Zy*U&HJ +zdNlA%kJMfVt#1|Op*^_&b~u{~|I75sXc&)vC~ijwydOO@3!?o^bR{363)qFGw&Hp9A-19825g6ap&4jzjffy_fQms`ez8Tb+HnCY3$LQAw`Id;S|(8#Bvf!u|r@(DB(AESqIHyS{} +zG1<)PScs?N8k~r2d!^I=I3DT!-^N298k+P@_w)>OFV9D>;dSVM|Bd#U=!zeT@?+@l +z`4^)6I=Yaz(D$}S{VsH&`>-7I`Zx~vuV2Lj|ILPWI0=369P|TnL9|~Q^;boCEP7_f +zqqk@pddlxWGx7vF&N4J}Z=>UV6n<(u^Jl({iml;xbfE9hfwSdl#Wm0YiqL@@px3n+ +z568jihv-JM-=pD^=wG|%&`\n" + "Language-Team: Japanese \n" ++"Language: ja\n" + "MIME-Version: 1.0\n" + "Content-Type: text/plain; charset=UTF-8\n" + "Content-Transfer-Encoding: 8bit\n" +@@ -6693,8 +6694,8 @@ msgstr "バンドゲイン" + #: modules/audio_filter/equalizer.c:58 + msgid "" + "Don't use presets, but manually specified bands. You need to provide 10 " +-"values between -20dB and 20dB, separated by spaces, e.g. \"0 2 4 2 0 -2 -4 -" +-"2 0\"" ++"values between -20dB and 20dB, separated by spaces, e.g. \"0 2 4 2 0 -2 -4 " ++"-2 0\"" + msgstr "" + + #: modules/audio_filter/equalizer.c:62 +@@ -7445,8 +7446,8 @@ msgid "" + "16 no padding\n" + "32 ac vlc\n" + "64 Qpel chroma.\n" +-"This must be the sum of the values. For example, to fix \"ac vlc\" and \"ump4" +-"\", enter 40." ++"This must be the sum of the values. For example, to fix \"ac vlc\" and " ++"\"ump4\", enter 40." + msgstr "" + + #: modules/codec/ffmpeg/ffmpeg.h:115 modules/codec/ffmpeg/ffmpeg.h:248 +diff --git a/po/ka.gmo b/po/ka.gmo +index 5ee72dee21500173634cebeb06e7491bdc30bd90..a23a0ef900079bfa507023596d75c958388c77f0 100644 +GIT binary patch +delta 9248 +zcmXZhd0oElPViWup)$UiT&q~K> +zP8^J}n1~&41gid3^u^69T~p&p20}Gg6%Nq +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 +zTIeqOe4m~(zH@+rQhgYesVwu + +delta 9235 +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 +z2-RVYuz)uJTVvVTz#QTOsOMFy1C(8 +zrbf7Uin+_IR@2oFHdmX!n>ms0`Aet?eUHQN66Rs=sIs%=dkZP(p8kQ_!>C&Blt!ac +z)d+Qp`=b8%%)p26C~AdiwOwjQVm;#3sQ!wuHJ(SE`lR~;Wq(DRqcWb0Y5M!$kAh}6 +z&0J;;HlsTF7M1#|sKXOq$JrV+v3{tG&BQ8rz@8sRP4GIZpOm_8i~67@HcGMX{|X8k +z;B)gV>NZ402g?3yb}Q8VUW%Ie7S!JDM@{I4Jr9d<&r?xnAs2h$08}Pdo8O_v`xAXV +zXb|gG(i`>Si>R3|L``Hr>eG4Ep4Y4AI?O~J*2hqpc*W|spav*G?RCvK*Zxsd{Y=y~ +z-56*0|2rx)@F~=X<4@FQmSWucKCyo#?jW1-zelIqH_2LuD$nexU3J%^>q- +z)Pz1azejzt&s%)mr=XdJCb@=*s8qK>H5_gAe?xsA=AusX64cfeng{LqUDU)w8n^|; +zqW+q8MrC#kYC#34{`}u4=!NU3R8~xOdzyl(AB1W+1~uTbsMEU&HSv?E!+8TWv6>Ct +zmc?TPaS}GiR#*|oVjSippL*YW!xg-@F_;HSQCqMAHKDDj0e(eID5#N3btE<=&PGk- +zNz{AKqy88zLQQB3s@)#cC-^pM%d#75OSykDC=8^c73bn!pkqi^cd1wo2v8tNUL_fuBO&AykK#F%GX{4o0N8 +zfqSD)`AAf|m#`YXf<18&CgNGtbqs0hwz4g1>qeutWIigRYtU~&p@@RKje0S)nM?8G +zs28W9>er%f!OvEol#Ez+``?< +zZm1Q$g1WEop$0x?^&uGn?`7g9s8nu5{VI;nbOTR7{rh0C#pf`DIJ~9X(pc1Q!%nEJ +z>fe(4uT)H>LWkvTYq$nAk$tGWykK#qEEhLKt)PoJ5q1Ap;~LzJdjFYhcQ#%{9qvN& +zLsX_V_!M+ne?sl$J=7@=YvoRLJSqcOsKYoKGx1-j`+Nk|zG`cCX6m6nt+|+jgHa2d +zg*qE+FctS=C-iSoh@;RZ#|=0Hm5INhI(`9l`d`N;_`W?qirVuM)M1Qm<5rk}T1c|R +zSy+L%4XRxyGY|Qc`(6(U`j+>y2mQ@KsFXd5`fv<0N89u97EeS?@Hx~M^G($Epa6A- +zK1B^&f?C))RKGXN^!ZPz*1&7)9t4|}Q5}X^TpQI<4C?U2qrMk;_I$p%5Y=vp#RaI} +z1*=gDU1!ff)pN%8Hd9clx1myX5VeA1s2N{Dby$j;x!2BF9(Bm7pq@82(@\n" + "Language-Team: Georgian \n" ++"Language: ka\n" + "MIME-Version: 1.0\n" + "Content-Type: text/plain; charset=UTF-8\n" + "Content-Transfer-Encoding: 8bit\n" +@@ -6255,8 +6256,8 @@ msgstr "" + #: modules/audio_filter/equalizer.c:58 + msgid "" + "Don't use presets, but manually specified bands. You need to provide 10 " +-"values between -20dB and 20dB, separated by spaces, e.g. \"0 2 4 2 0 -2 -4 -" +-"2 0\"" ++"values between -20dB and 20dB, separated by spaces, e.g. \"0 2 4 2 0 -2 -4 " ++"-2 0\"" + msgstr "" + + #: modules/audio_filter/equalizer.c:62 +@@ -6970,8 +6971,8 @@ msgid "" + "16 no padding\n" + "32 ac vlc\n" + "64 Qpel chroma.\n" +-"This must be the sum of the values. For example, to fix \"ac vlc\" and \"ump4" +-"\", enter 40." ++"This must be the sum of the values. For example, to fix \"ac vlc\" and " ++"\"ump4\", enter 40." + msgstr "" + + #: modules/codec/ffmpeg/ffmpeg.h:115 modules/codec/ffmpeg/ffmpeg.h:248 +diff --git a/po/ko.gmo b/po/ko.gmo +index 5536428e4c56c571a1dae0a8c246e44e1c18480d..4a21996b31fbbacec6b17b09233a86965b41678f 100644 +GIT binary patch +delta 6971 +zcmXZedz6pW8o=>4gwYs{J7b27;vAPEhiFQXbW^K~bfFMg)KPAyr236eE+HAo6qUkB +zuAwkOr$aZjS|MdslhQq>bkjQH3=M4;?OiGa8S@rZ^LQU>VxK0Zq6Y9p69iNM75FJ%5>$B-OApo{ZhF23`_g +zg&yGsY=F0*^CzIs-;d6pj?SBl&MS@nwOEySQ@9m`c*a38d!*PtaH8vXa83rAx +zTN77%IPGtT#@(?R4nY$SN1q>so_GwJXBPVXcmiAEW^~@i;b(Xf@u3V2Py7@5;0d$R +z#C5`kXzB7X8#|*VKOa5OHRwie!rC}2`p2Sq??Wpx8-2Hyq4PI|ne8-8yem5PpbH*| +z{v&8<|3u%3oZ0DkTdYOg6a7{64R1jgn1F7u7~RN>h@S|TA{ELcYiP7!!aHaQ|AYQL +z&6>ma9*eLxj>jCFjLv%$yWpyb4~56kcd6+k{N2DJY=MK&N=!okCM?9Jte)MDx#=I5Cg>OPT=axjp_LebJ~te#$f$4%HYP5`TwEXS#Jc|e_tR*F +z-=Q0+^Jw~(=Hto4ozR!57dk#T#_vEEoD%&r(G4vOpN;WV=v%)b`rpJ{;ysu#;g>XA +z;FlQ4otKud5Zyp;^n}+&JQ#g$O!OB=JQLl}LUh5W(G6|Hdbk}O--E7qU>@~%;14=X +zm|c=iXo@~~3i>j(#roJ2z1#i~Pr$2)XNL!|8*%6P>AN!uU2r+p#ntG`{wkXP-TBnt +z2_MElIr?(_fcDpTEHx)=5H`aGj2EJbx}hcQg;uOz^xul+xf6Z)?uvL0df>-0G<><9 +z!|u2N{lNT)ejt8D-}+=h`V!Sa<2Go5uIL7OhgV=j;_K0$>z(L^W?^$&jBaRK^k;U` +z@Nd8eXlXu06Mm0Q{0%MLF>H%<9#0dW9bShf9*>Q2ez+R_w7-sC@j-M$zhQl>yD)zL +zt!Xr(qc^(nKy<<3=mzdVf3K6G|7rAu>%+Iu3LcF32)aPc(zHJx&D$Q$*A=bYxs@^Z +ze;EzG%~zv$+P`vuf6Kyg=mQhcw{|+3aCwZcLo2rlJ;=@&{{+3luhA>`1xex)0IPm!o(3JDRxGqVyeVg>Il7IxKa$y%H~-x!^D8v5LsXz9D76}%Ml +zabWaMTul94_+dKyu#{pO+=_1O%b55hnlO1PwFa6v2i;I}bpGjRzHaFJKG+E_M}K9L +z(1T4!=apn)!V>f!g?;Fq{()8S7FSC +z2RwpaNxf&%E6B8^aT*<$V0#>mKJXNJ$6L_5d>38d%jo|dEoH4G>3ADFg}4VgZ*VvU +z3y3G93onWOElB=M@-_`iSB{qGTlB<7(34buHtnw+Hb6_5k0xw`mh!yt@^AopkdbKq +zspy91pc`6+g{+_Krs0A=VHG^_x%3KZqKUK7m#S&l8r@juh|fmffs4?Eu8Z*@=u0;u +z`X{3KrbawZSwC4s!%{Ct7b?T%_y&4{Z^Eie(*y-rmHu|<2j&d4B1JLY2d!j3bfW`f +zd}zdXpd0xIW}GmEhC81b6Xv6L_$0c}D)c1l&=S6eZulU&;os1NRhFfn?vv5Hg=qg@ +z(G8sy{pUr0pJmkF1^UsU*JCvt7!!xY#1ZHT?~48h(D~CNo`t>(CFns`qF4G7`XPH8 +z-SDCC4|HDka_V25M#JUlPV>=;Z6of1{xRws@gOwusE8+{m70q_w**c6Qp7tV-Wz_3 +z{+hl)D|b8-1KIyfPt*`i&=j4}3O#v8yb+7gt9Tq;cm?KR8Crq;=sWWxTA^Ccr}J~r +z`7O``cZ@i577cfPF}kyXF)%Lrr(!Gm7h)D}3*U(T_i-%!N72N$tw{5YLE{I}g=a;) +z7%w1Ric~U_d`H8V${ +z^OVQjw#UyCmM3YzC#bpBUZ8xMyS +zXx^;V>3AMi{{P>ShNV0MeV|WF=!Y$c2cRdq58coL^u*7hU(7Y=Nnb=awhNo#dl4TF +zkK$SMpRgv~X!kYT|KI4iijGTh8Xm>H=u5JDE&s1!?z;4^-o@z2?nZxxnTSi!g`Ys* +z`laFXF}^C?5SE4iTF3qS;G5C02aOM)3m-yD+w8^kAC30dnYajR;AnJ16VQc=(GSiP +z%)v#`zY?v`TJ!_=Z)}ZkW@z{?(-E}vHP)vI8=xm_7Is8mo(s{p`gZhF{1AHQOT$;N +z3-LbmAlVz@yMkU>Q}jTmMx5zF!-VHY#{ld=JRJSqKZbp=4BcSX#`J`Z(378mChUr5 +z;6>=kC!q7E#rR`bk9aw{k+O6=lkB451AEhs^lccTBO{D8Us{m*$h?P!4}=o$7$H*h<8lHzc7_#}3xe+7D%U!sX? +zZ%XH%9-f0I(SIq{#s28KGZGuJelmuJrJRo5*&`8`Vol;_unw+>{w?UnUPU*yFXAu4 +zqv1)L(|4nJ*cB@)hrWb^Fk@pFjg~kP-M}pLBn!|5He)Wn9)5(4h`+}MSal2kJ75#+ +zh)eN&+>ib$nv|uL%}3)-=z+VG#qa-|=olN`gPwd6x}h29gC!9^9xlO7^sht{mWN-V +zCq0Zl_a}PLDqGWeHPHT?t<>K}T{^s@hUkJV(UY}9OWhNlcWsQ{fF>Loj)?J55swM) +zLN{_RR#q0>=zEtrRI$N1N1!tc>}KS%%3_1(IZ +ZTvY3_!J~$cA3S_m_ZI7S-`}do{{b(&BR~KE + +delta 6960 +zcmXZed329g9>?(~i;zS_7Q~V^kqC}8)-XY<4oWc6qLxDq6^yMd22*(m)y5VT8cRy; +zON(ewwUs(O4W&-oR8iV8s;%V=gR0VW-k;p>U$6W9-uv9;``q7?JbDy(`%z#~_z9>PUqy}2Mva??8kcAJO&CPH!`zK}ZZ9U`(b=9~zVKBNs?B|@jsZEI +z7mIPIEjK|;)ZNTL9sTd9qmIO6dHvoBXpUOArop?9+#L-C;b +zDYhg&gQ*y_z)jQ|wQxGBq|c&CJkatlqZZ6Y&G$NL<9XN$H={RtRG+!pn%?`*z+T3`ZdgHuo&@hx6ru0mC4BPQtg{|OD1@IR=(r)8Li +zsd?^XW3dYHG}O2^unn%a_`G=!b(bQSxIZqbm_XbQRf(ynzX^*`^X$L~{r*d6sI+HM +zC-}9zgAWcy5|?2zR(Z>PAzPwO*bP;QzNqJhpei!LoQ`qCc^HLT%>$_QPGPcs|3A=( +zz~H6smPTV$;`*pkrJ?%!TmMMZg3~QO3$>xe<_haykGl2SEPn)}h)YoOT|i$8{9+v; +z`L2XMevrrpaj9PFxYD3#G2KS))OHk{bvHY!k>aPg{mbn3u +zs0XW~E@J}5Vq4U^&9Ha^W)jaa&tf~`hRfaE8G%}`5TkJe>bCDg&41kbPcNtb>L?|l +zOL5sc9-BdLyNSZgD6Gb~IMhT+<7`1`+W*4kZ+#B_CeF?Rp9DEYx4%X1` +zzda2toQYa+2xod=0h0pO%ka<>sx6ny)dcaxE=>8iVxv +z?@mMSG{ZXnVU9sPFbQ>Qvr!u@wEoSg%I!c-;vKO5uTZb>BI*_Vf|}ITnozJqweAGL93ss5rsFQ3)m2f|nf74MLzK)vk0qWCTVY6E}4wZir +zwV@`KZ*BQ>)cid*Q-3vjlL*F48#urQ4n>`CoaO(88lP=(4(cxCq7JeSb%)+VeaMcY +zHhkW^g&G&I#cecv3-#Adqe*CB0xE8WI#Fkf`=KTtVevFnrRJfYD?m;Bp2d4DK4E^1 +z`ZZlbRqmeU1N^P-MB%6jB2fcsqE4QIgE1BLDi)y@UW>J{2vvbos5^5NRiVF77sEzv_X=rDe)-lF9W?(Y;#Tbgk=3&c!hOd&piJJJu?QX&>RQzw$MsqCA +z$1cRHP?h`vskHCiqY+9X@IBX285Jj@CTe7H3+qouZMZKc;b>F^7NVZph^oX+48s$s +zc}lJSJBxq9^8f#DTE`!#iGtsEC#i!vL34|rMorWYbw`Gv78r{fHwE=qaUQC)?_y=# +zgZ1#3#XqCwxra6M`+r13rHclHiU(AiDlWsw6>>$>`Pc6P; +z-o!NWzo9nTY!{zx?6!;d-;>5n5)beM>XIBQ;-3f%+3o)7bwq7!JnHgHwm28H@DkLm +zUuCYb{`KZIv&j4q_1ux&)L#>qSmF$7;q$1{Mt$J^(Wr~9h*Pm5jzT>*0k!ZH)CXre +zR>7r~Ux%vDCJe@pus$9^{mXXEr=fTC7&T#7u{&XunS#1Je?#5s;iymXYp7DLGC#mJ +z#3xZF3)tf}7LIylk*EXJvbYgyKEI76`eIWOLr|A-0rtWo)CS8?C#<~JZL}V0!p7Jf +zJD^TJ0X2T6^)J8};zHC$imd-2GT!%2SmK;{4fVi1Y=V{cxe42#7VKj7v-~KGB|q8X +zT#E}VejiilKY)pN8KW@hL&d!RYBV%KTQdW-f#Il=Oflz}Z()1#YfQ_&Dz1+@U?XgeEe=wDB}QAvMAXTrqBi8C9?Z3Pky(H($ge{^Uuu4bI_VYE +zb9YfEeqjBNEgy8q^;bMZ{q>H*Noc_usFNk4O5N55_O$*!s0jy}L#=;=#aZS!)J9&$ +z^2(w%y3qRbQ5#(0(`Zbi5OtYOpf2Mb)IuSLo#CiYZdKI8F&K}@sEInG#&@-RPpm*Z +z#`-6sHt;IyQ$7PVPv1AJV}-dEHQ{E|gxgUAcVTTjYW){c6aI)A_p{}17Po7&tb6gf +I?4(Zr2M6#SVgLXD + +diff --git a/po/ko.po b/po/ko.po +index 24943f2..9842d8c 100644 +--- a/po/ko.po ++++ b/po/ko.po +@@ -11,6 +11,7 @@ msgstr "" + "PO-Revision-Date: 2006-11-11 18:47+0900\n" + "Last-Translator: Kang Jeong-Hee \n" + "Language-Team: Korean Linux User Group\n" ++"Language: \n" + "MIME-Version: 1.0\n" + "Content-Type: text/plain; charset=UTF-8\n" + "Content-Transfer-Encoding: 8bit\n" +@@ -6741,8 +6742,8 @@ msgstr "" + #: modules/audio_filter/equalizer.c:58 + msgid "" + "Don't use presets, but manually specified bands. You need to provide 10 " +-"values between -20dB and 20dB, separated by spaces, e.g. \"0 2 4 2 0 -2 -4 -" +-"2 0\"" ++"values between -20dB and 20dB, separated by spaces, e.g. \"0 2 4 2 0 -2 -4 " ++"-2 0\"" + msgstr "" + + #: modules/audio_filter/equalizer.c:62 +@@ -7501,8 +7502,8 @@ msgid "" + "16 no padding\n" + "32 ac vlc\n" + "64 Qpel chroma.\n" +-"This must be the sum of the values. For example, to fix \"ac vlc\" and \"ump4" +-"\", enter 40." ++"This must be the sum of the values. For example, to fix \"ac vlc\" and " ++"\"ump4\", enter 40." + msgstr "" + + #: modules/codec/ffmpeg/ffmpeg.h:115 modules/codec/ffmpeg/ffmpeg.h:248 +diff --git a/po/lt.gmo b/po/lt.gmo +index b96675d46d19fdf55e5c92088272782317354f11..6bb071b5a49ecef9d07ce405360a46e16c759e79 100644 +GIT binary patch +delta 204 +zcmWm7JrBWP6vgq=YP}>6DF$L8J^&G$Sxkl+`T;sf7cr4Ane0|JiCv_VO=4v7F&IrY +z|7ZH$d+trn$z06txfwcAl##NM4xUuRBL;Xz7jKxuJKDbo*6@X0d}AFOzEr_J7I1`| +z6k;1AG`PYlZhdt$Vb~Mc;t!Vahqf?Jo81E}V>4YlSJ#Z=d9sX?>7X@Rq&@HJ`~f9Q +B82RDbYwg8WkK@8fyHM&$I!989H4d@C03G(RL;rWf3EpvzPs}lmr3?#9aEY9> +p#wl*l;vUC%h&9ue;l#ohzi@zW^o8Gl4rv{cGgq2x;8xMc`~a>$6oUW& + +diff --git a/po/lt.po b/po/lt.po +index 63a0def..42b6f59 100644 +--- a/po/lt.po ++++ b/po/lt.po +@@ -11,6 +11,7 @@ msgstr "" + "PO-Revision-Date: 2006-04-07 11:52+0000\n" + "Last-Translator: Jonas Slivka \n" + "Language-Team: Lithuanian \n" ++"Language: lt\n" + "MIME-Version: 1.0\n" + "Content-Type: text/plain; charset=UTF-8\n" + "Content-Transfer-Encoding: 8bit\n" +@@ -6145,8 +6146,8 @@ msgstr "" + #: modules/audio_filter/equalizer.c:58 + msgid "" + "Don't use presets, but manually specified bands. You need to provide 10 " +-"values between -20dB and 20dB, separated by spaces, e.g. \"0 2 4 2 0 -2 -4 -" +-"2 0\"" ++"values between -20dB and 20dB, separated by spaces, e.g. \"0 2 4 2 0 -2 -4 " ++"-2 0\"" + msgstr "" + + #: modules/audio_filter/equalizer.c:62 +@@ -6835,8 +6836,8 @@ msgid "" + "16 no padding\n" + "32 ac vlc\n" + "64 Qpel chroma.\n" +-"This must be the sum of the values. For example, to fix \"ac vlc\" and \"ump4" +-"\", enter 40." ++"This must be the sum of the values. For example, to fix \"ac vlc\" and " ++"\"ump4\", enter 40." + msgstr "" + + #: modules/codec/ffmpeg/ffmpeg.h:115 modules/codec/ffmpeg/ffmpeg.h:248 +diff --git a/po/lv.gmo b/po/lv.gmo +index 032b5ef58e127be8f41fe7deb9667847d91202b1..aea82a507448e2981ce60e96d349cae11a481345 100644 +GIT binary patch +delta 1011 +zcmXZbO-Phc6vpw#uO=HaXS5IVYZ`MJjVSscnpxGRgsc{+AhZw)i3xYrLgg(f2oi#V +zf}lmV6e=2mq!OYCp@Jf6)v`szxXOi6Qvav9tKU6$?m73|``)=d_+apHsVd4e2E-N^Vo;qL%f^gxUpmCM*H#q2I#^Q;rA(Y{w?%Ik1&U`=z}bV`IU%) +zJC1SRF1!)5*p3`phr|47^vMgj1Fwd-h`!PfA^wc?ss(i2c&gk$3%b#+;C_q~N4*Su +zh5hISXVD#wp}*l3^v%rR0p3axow%^2-0(6s5GyV5jFdpfJ;>RV5AhJXp#u7#W5_;{ +zCK+sC;ySwUH2T{;L?^sJH}oEz_$ADLLqDPtcHuJm$~!ux6PU+5P9Z&NKEyxq6>(;( +z*GJM12Hv=uDn3C2-mQ?j(Hp$s8oKcl?#17D8Fy`ydhrR);U7Fm-t%nv%2!Boeym4I +zVH4KiK6GPwtUk%$B7-U%M}LA#=#$?>KeB0b;xlx?IrP8g9s1S(MXyh8Cl}Mj*;swD +X?&$F7$ob)sGr82c3&pq19~1uoiqB~9 + +delta 998 +zcmXZbPe_zO7{~EPSKTz*+N~8=T{TVJjNMChNIhsLJ1lev_96>jJGg>~LEx)`9Xz`p +zgaQjiFv<{$5c~rXdh!xdaQ~0XE?uXSCj|ocJz=u^XRb8Y6gsK|IH6Skd6;tH(y-`*;ZlQF(G$jiU|b +z*=+_>OeoQNjN&d<;J#b<11}ICV+{XdDb~czu3`+eKZ%#I7j@u6RKZ!S!eI>IQ>?_9 +zxaTLBWkMY+yM?PrGq#Rt{OaO1+EHPBs6zYk{{g7P!|rzvwf`CFpqJQ%uThQsbn}N= +zsEW@}iL1Ex1cs3&tqV1uL3N(RBtCKR66#8~T>KfS)e5M*=cocg&3>V^&Q83@yw}4( +zSJ;p0WB^s+5VqqO>SkWxJ-(GC)W*Vfzpx@+AwEVvBP(n1<2cfjrCgjw6_iCaG=!Yv +z*(ie=CdN^T^QgC5Ky7%7Drgh6amUT?p+2I0Y{Mez$|J43JEpK3J)|~Ucky@JCXU_E +zde7_|108&d>L5V2`4X-lb-)L%;U<2DD`z2W_I<%ew2{xfXG +zV5k372~=SzEPKS@F@pf+P){&|>Uycuyn;&j4)w3uKz;Q`sP*Ny%qB3p_AwZW +KtbK{?h5rE{iDy;- + +diff --git a/po/lv.po b/po/lv.po +index d775b82..51ffb39 100644 +--- a/po/lv.po ++++ b/po/lv.po +@@ -11,6 +11,7 @@ msgstr "" + "PO-Revision-Date: 2006-08-26 15:56+0000\n" + "Last-Translator: jogijs \n" + "Language-Team: Latvian \n" ++"Language: lv\n" + "MIME-Version: 1.0\n" + "Content-Type: text/plain; charset=UTF-8\n" + "Content-Transfer-Encoding: 8bit\n" +@@ -6207,8 +6208,8 @@ msgstr "" + #: modules/audio_filter/equalizer.c:58 + msgid "" + "Don't use presets, but manually specified bands. You need to provide 10 " +-"values between -20dB and 20dB, separated by spaces, e.g. \"0 2 4 2 0 -2 -4 -" +-"2 0\"" ++"values between -20dB and 20dB, separated by spaces, e.g. \"0 2 4 2 0 -2 -4 " ++"-2 0\"" + msgstr "" + + #: modules/audio_filter/equalizer.c:62 +@@ -6899,8 +6900,8 @@ msgid "" + "16 no padding\n" + "32 ac vlc\n" + "64 Qpel chroma.\n" +-"This must be the sum of the values. For example, to fix \"ac vlc\" and \"ump4" +-"\", enter 40." ++"This must be the sum of the values. For example, to fix \"ac vlc\" and " ++"\"ump4\", enter 40." + msgstr "" + + #: modules/codec/ffmpeg/ffmpeg.h:115 modules/codec/ffmpeg/ffmpeg.h:248 +diff --git a/po/ms.gmo b/po/ms.gmo +index 67e8061b7a875ac1242646a875c5e4b58cadaa4d..f38d2cb4ae6dce9d0e0f03fab197839ea13d3d7d 100644 +GIT binary patch +delta 28340 +zcmXZldAv_WAHeY+_g-7Fgizv=ec$)xCS>2TWfzi=iY(FdLrSGmR8lBgn;B{{g1gA-^d|Hiyn_?pn;(r9FwqUT$o4G%ycI0EhPEog)$#PV$P +zL64vhegX^PGW5ag&;chma8Qzi_tDUOix*>_w!vcPgUiQq3v`M)p&h>|)=$TaD9=GV +z_7wWS<#;*1j@5B5ren5tsev&69C$+kbmYZjxjZ_88fdcBM`}ux$6VL~U%3u97>k +zGakThp1(FNF&ro0Iy{2r(A*v&0?(tlupRBl0W8h)6DK(E!8v+{ek}g*Kht6T1UZKHD(Hk?- +z&{sfjtbul*F*@3wU +z*aRJMZ}fo!@k$(rhIBp}f#=bYy%x(m(N(b@O}caVIi~kdOH{!xusG%!5G;%JC^t`X +z-~-3wTQ~*nP~(AViL%%W4gC}}`R+nH_Bz_J573VMgpM?0P{^5l=vJK>%XQHKw2Ae- +zV>vmB1G9T7nmkL<(CtD)dmQcHw`fPsph@*Rx^Mgw%a;#MOVpuU8tq_DG{iTd?Z1z$ +z@eG=Tb%&&$lT38ypph5iwY-d$;|r9}U!Rs}k4uM!m(P!Q3+1W9(h_a(N9=)hhll&` +z!v>VMVH5lt>tll(f;VGb$}3{|5H@!G7aS3mQAc#-UC~u=BO0>t*c0!@ws;tQnUuXT +zBx{RkXY~33*cfj{NBRQJ#P`q$b{rY5>w!64|HC=(hB0UsKaZ{ORdf#jKpVQ~rqDno +zbnC4ZZ5thgPR#^#AXCw-e-w?xax_N{qt~6lWJeB8abVUq7?qZ2f$h<`x*yGfPof9V +z5gdvhM;khYF59!Q{2#i3WsDA9f@XgyY>ADqI!+zU`Zr`NM6%UvyOz +z8xxYLE_R^Y7hMI<;t<@0-e2|RunKCUBW{I8q7ypM0qApYxj7knKAnm#R6LCT!(-^i +zG-zyy$QZP|3LV)-w4wK7{b6+KzDM_mU(g3!Kp&j{mT-S5G`Ffn8znh#xwJ;-x-S~4 +zo6!f{i#G5S8j+RJ&#@BaoVTVWnqw_=qqzlZ;=)+|2rE(2 +z+?Gf8=9aPC4~@XY=>2F&7sd0d(Mat=Lw*9y`k&AaTCV$vQ}jTKqw+;m1G(huF^Z$p#l5%htZ&4~& +z*WZm^{{Y&~WAXfQwBu_rmE=1)a4z)hnpb^@kmgx0u +z@eAyO=di)Fw8T)XG(AN6LCj8hE|z1FB_89z1~%fOxD{=v*Nor|=>9MP?cm(#GBkv1 +z(Gb6j-nT#2pFpSX_jo?{U2)FQh?T&Leg9YFz^t#2-f%TK(q8C=L(t_jCf3hFBQQ6X +z7sm2)Xgh1rj=hEE&?o3t`wbfUQZqxY)WwTk{|z~Cj@qCh?TJ2MAUc;fVhbFLHt;f< +zWZTimeTYukUUd0=6VGS6J47ruwx|9wY>UIO9j?Zt8_#(Tx?bgIUq$$W2; +z12>=r@x)?uthQw0W)AGYbabS%;sx_#{X(<@OVI{jK^xqN1My%iH<%Y5&;xC6IQrE* +z3T^j3G-3-d8$V~PzyhxS=N=6|xvWR$_B8gxUvL<9c`QU`EqeY(w83A|2cFH>p!JW%^0Qc(@&@$A +z6W9}fjOVX@GDM;mdS8F^x-n=+C!iz07wzB%G>5i6$@=%g�(|$M8zb_f)vBHX5qN +z=)0jiW-@o*qF*+-7KQstqt|soA21?17BeYNM6Z7WE8rR|kDo7M{acY(94acJS>FXs +zmSI>9Z$Y#Aadbae5zE_Sc^{h9KS%$F{(~lAwx>hVmcq`Io1*Q_PI6%ApTsS=1P$T! +z&x8xcp)a2q=v*(v8u$vr56$KhOT*S$8Ql?EqY-I`cJxN{{u$Bv=yfk)YWbr3#71oI`rpBU +z9VoCYyyr`xbJ;N36jJ807FLPvfCz3wDB@}JT6{=`A9 +z|J=*N);JRF$O^Q9HE0C3VI|xj&tE`8oM%O7xEk8A#^}h}MXyC8F(7&y+R<5P2Oh*M +z*Z(38TpnMb56=H=NRranh4L-vhO`A!Q}A5qXl3-vs6N_ocXaji!LM*Cj=+J>huG!98dM{>7@8`^Av`_0b3SM?-lNI+qjC4~`jVL>6HtZi(l= +zLOXUEozkDtDaf-j{0gVwO4k32RP>=j(_RWUtj4^o^R;M)wyp|u`%&}&HlqG$EEioJ +zrm7VBmaBHl+{DeUxVgK7j(pv(T(R3v?DK~9orlIE*TFlpkF$L*MxOj1-nshjwaE=SRGfO +zbG|=%7M+T`uZ9Q|MIT%dy)O&z!k)4GIU0d8SPqltIWS};Ukf4Xi!~@uM?=2`9l>U- +zjh~`(n0sxAL;-Z^;=z5`Z +zbu+rIA4fa10w>`nY=HIFhwI0ntK)7oXXarkd<%`p7qNT-Z6|$0*qAQI9IpSe92n{< +z=*G|hT~^ni$#p$C;_>KI+>5Po37U-G#`C|T*XMdOTz?t5byr6p+#z~BdfjA9+Td&s +ze86%v#Ou);K1P%1WIX>DI`{cDhK?4&QIyM}Iq(QpVc9M~x85C_LS#P1(v**&`@{wG +z`qG(PeQK>tfp0w8UU+h-U2q^nstF5BLS`SnhX10QD?~>PWIHqk&OEksgNDj>QXVES4V|31cLzh>c?V;zL(4O~?PC~Q%(db%q +ziuPk?{4!d7M;O?hXwp55zEzhZ$(~HS#(~+t4UNEVwCBgs8-B;hnCsoN#9o|%sU7XT +zw8R|BpQBSY^8GNP+t3cYj9u{p*1#@1(-O@viIQUgrdlWrWC +z1J_{|PDiu(9dwx;Md$uk^u_{vLdPnj8&D&(V{Opf86E4VqdD{trr{oRAP3Mb``8}V +zKS_`{MTH~y3*8U$?hO|fL?crI&54R=hnvRwR_Og*u^J9WuX_m1iKS>nR>txM^uh1o +zm-yk{WO(39`+{rG5xtIfXd5~O2V(t+=(%|Q0vfpj`$G;iL?hN5?Lbeghy&3nnH7Bk +z9q0>54o-5g8tdbu2ly5w89zWr`p>7K;q=c!IS)GLmtZO)Xh@r)p}z*5>;CA2??A6x +zh9=`1(Oqae$)gLB71ePLUW?b@*XT&9910D#Lq|9m?fLC!NM~aiTo~)$#zB-1 +zp!-I>!)b{d@MU})FFlf$Sb(cA_2+-r98F7YwKK3ZC%(qfnDIqu_%<9*`7vyVdA>|b +zbi^L$m(vpTd*CQ;$0Enl5*zUl8uG`#igS%dYBjoiH)HDe|DVPam5zsBn>9p3HWeM= +zL+A}pqe-CZ)3fjS0XgklK?XJKY_!8RjBj`SIGM>+NlJ)P2TqnZ?1Be-M|*3_iaG0+k;o)akTv$-z3AF+mXlRDFxeWT +z7j{HD&^Oi(L8o9G+Tav)&S#?Q{9$xmKZlO+5cbC}(GQHK-v=k7tKoGtr*-xs}(dhk2w4)E89h;91U?Vz} +zJFq0rPkhROBmE7%A>+p|1qGr-(H@sXBh?cf;mGJBG#U4x9r_7v?+$gdkRgu +zoIizjFa3%2?*mFu;aryS1aH5NXoKC)hMx998ybOLKNiiE+tKBD2R6jH=)Uj)+R=~E +zksie6_&u7$70-oV_t!ed`maF6R4VG>a`b{j=*YgtOgtCQU-EOv-nM822B29z77h7~ +zSe}dSbSuyiZ$$_230{u}F^hpVN&XUEB2#~jzl27Y&uMIl?S2bCR6c;MD8GRn@E>f0 +zZGTTotj9T6-SQvd=LOg{Z5Nx(sgzryG8LhM5MN9>Kw +z{!UBu!N>4gJcB*3YUOK;`BfKIlJ@w!UXmZv@bEyHk{nu`doq +zuYU_|@E!Dl???Be9Xl4!|BANr7uu0*`9g$qAOlM#3UlCy>!1yGMlbAv-gq6F-Gk9B +zbuv1#$IvWagm!!_{)cblD9xXq`b|oe0_mw=%MFgsMwjdBDOrD8IPihH&<^a5`V<=Km(iqt56zK-*wXj^DGrWPQLSWXs6eT(?5d-4-UQv62cc8-06GQF +zp&QcnSU!e^{9p84a!F>mzaCnD9U7UN(Tt1}hVDmn3jRjtHoZ)G +z>f%SWZUs7R6Yh4+>R63&{ +z3X9N@zKurac=U9v{~g;=U%YIH%usYSOhF@&L_7Qt+L2e$j=vlIsBAKXem@nCpU0>Y!8C5}lfX@%#idd1s;_e-hmZpGBu?2YUUdNe+C_8FZu< +z&`6XnAIi<~KFUMT8-Kvj_z$|QMpg(NzZLD+1gwBFu{^$n4rm`bl}FJCd>zZlQyf&! +z#>mm^E>$UnurYdJbF_ihXoR{%d*F1+*Wolgj1HiG<@CfbOkx#0fzz-+mGBaJ1nW~i +zj|@DSs8KaMxCPq7zUYGoqi??vXb8v0^0Zif5KYnrXvdbK+5Q|lHE*I3+ljV!2%Unj +z(B~woIWX2=4i3!L0?{&Pw$??nx&zvgUTDaNq8%EAc3@(38fH?y5AD#4=#;#SUcVXL +zsCLHsZ!xdy|2Gb@WA^HyBN=E1ilVEaIy$nh=teR$o}Yv^JO@)d9rmaEax`y^P(Kn& +zQGX|n!bPz@cTLv6p}2wrA8;i)!urwX==nBi2s>g8yf)U~73=RqJMu6tz=gOK>(>eq +zJdfU=RyzzZ4?0C9YP0?gVU<`>7oD@Ku{rj@dN>a&;ZAf}{esmocb(8sL%fFaHP{5_ +zU|IYCU7lyrsmNP5Tz?t1p%SHUw@~4hxfJW-F&vCV>V=L>z(xUYHE{-i5!@G +ztD;-58|8iIRFumK8&F^DL3tQnhZ|yjp{v4jy8@k>GH8e!#_~1j00y9|XB67eX;{kj +zzkmam*#`8&!)WNgM=$&v&F;c2L&KTqj#vZT7aE}rw?Xgg7wgBM9k~N-_daybpN~$# +z%b45s|27BZa3{Kse?o6ayE;UsAUcO-(U4a|x9U3RhSC{*XN*SgzYp!uBAkY=qH|rR +zRcNOP+VNJHTL0ZRu;Je5g#%)FI2zJXXpg7I^N*k%T7d45OVJ0e!mIHetcW>Uhvcq- +zMj{K1WEXUR{aUmB?a4?gbOPGYU1*X#fsQC|n~-#wIFE7#^tz2`hd)6>e-L}(saVds +zCO!4*w(jV4>(C_Mj9$O>nq&y&J}O*>XV6cs|IizXw+&NJ8oi+|I)`o0tRIL*VhB3I +zo6r$XMjv!Hdf$D~r_hM4!V0)P$w7Gzj-knxvt76#6Mv^%1;4;D?Ze2kbqLx17}~)n +z(bcmwx(>~W_wguxgHG-Cj-lOM=st4*t70-&r|=U?J@mai4ZYzFbkE+5SK@YbEBy|A +z$)tA<4;q4#C?~Noo{!}^UBWM`UP9Yz+%-fd3yoAqWIstJ`f=bKPeGGnPAo4%L%RlT +z;7zn6ThNG|KwmZ&bxTjYf-BGt_v#*|asb-y&1lDGpgFb}y?-U9{{H`74q8xg41H;2 +zUK^HUYqUHn`fzkz^icG_XxSd&`gYNq(bY2#C*uofE?n6&M4}$1{{H_}9C)G&+L0k> +zb}vDb>2)+@@1S$L2mO-yDVFo~3iVZ^?V~qF?};vtz7su$NqcyK1Cy_C?_f1_LurF{ +zWGI?6lVW)#`hl_qtK(;A=yUW5NqI3kpd#q1st|364x}AA6@B`!{=IN`JTVbne)q%+ +zoc|5oJb8%9tXO}2{Y +z`mK&8VeM!WOsCum%V9gLg=5kCmZ0nUIrP5WXk-qeBmNR+;c0Y79iQwMHk6s@g$vOU +zE{o-L=twuA4evr+_ejz%Qn~`;&*b~kt6X!UX +z!G}U(P?)>B1_x)OBb|qiXc0P+*U?q67j5thbO1l2Q}Z_(!Niad(MzJm(FbRu_hn&y +z-~T;0C_}|;bmXhi2ku3)`-fP*?E3KaTL*1mD0Hm7~{PF&!EY30d4rA;b9I7p{u2QEN8{?wdhM`3>v9P +z=v2%^b8KEb|0MF~Uu>Nm_%?e1tKdu62M?khsC7el&{b#>_CxQx3!VE}=z|`M=a-<% +zbtf9ZL+I4x9uWqZ4?SOW1nb`iRHQ;1M%%^<`k>i568++tibiTa`ry^*^4k>4XRs#a +zf3PD~yD@wZ+=1=~pG5PI49m6iNY=j(?m>ki8WvBCLq|9n{WiQ4&5@_kBzy-S#V^n) +z8Fy0{(G=`J`2lq2Jcy3`$9Vo{^m%EcLXs9ra^T#SLzAgC*2fO$2xg#jxf@*#hoUFY +z`_7;_@He^v6&W2md^!4{X6V2=;b`oSUbhn+SaLT9z5~vo4dxsZlB6)Yj4sD|SPfI} +z0(9eeJ6ze7iG79H`w(R{arhD)K>*FZbm7JY3`#=1Bkecp%IB+1UVmxGE_-GvkJel#hwj|&mVfsQOc8j0d)h%3f&eRQL0jgI&_9El^*soaOD-~WBb +zfqVNu=-f6MA0E^V9dS?edtd-o$2-stz7TyG?dUqRLz~c~eK(f(pdC1jPW2Dbf5)@_ +z$5E00_R#aY&>la6CglpW0~@2;(7FEr9r1p2#9yORaSk0>_6eawMbY+3q8+b|c3=p$ +z!f_K=|5mK0;u_qAZa9}r3?nRuKClWpvbyL#&^*=;K}UWQdf%5D4d@Q{C1zr_X<_}Bi4MR7m>Z9m%a&1D`{e>1Sw%5;MXV +z(q(8zI-_%YH~O+#jGb`?m*rEjd=Smz +z^t(d?b+8}h;dmWx#R_=&Jz>hO#%h#rM&Eu5(JlLMEEk`}`nRGF2WIu-=z}+)AwG#d +zu++UF5}mOJ<(bjXu@dF#_mLAMWgj#WgYFN1qVhPNqC9za_+}jTK=4`g`tKfyKmY&q +zV3@mq&^f;Lp|HgcLX&NDbR3#QcSP?;bLL6(>-H5i2``!xrl=sgY^$KFqaNCRD|BDz +zI)~(Nry53uNjElLFbi#P9?r%yn2C2h92$NK%Tr#5hWtn@r#}+vt3HLGTqcseZ#j*zL(Mr)zK?IxNJC+|pBlc)?BRat2Xs-N@MyTqutbZG5!9fme +z9qovQ_FAlseb60ib}Vm><+FG%^<|z5Q?n9nZv%S&+vo?&c66V4A6>3Fo(~-=@jUC_ +z8){NvkLsiE@pkA`^hHO0D?Wvb(2h2GA&fXH+74}}J34iJ(Cdc9^P|ul8;|Y-OVO9o +znirDc;B6}Wruzu(`5`pKU!o0tk0bCbuERbrhMdT^GJH4Oh$ihT=-jt_DU5Ug`k--W +zE=)%UI1e50@+1fDXm7*|-isG}j`s8v+Mz$ujp_p0q1>xNxd1x1m!l2Wi1k^xfpQ15 +z0~xDBgbJa#QXFkRS%w4Gc`dvZA3^u*w3ow6O=gRGrYN8IRZCY`hEip~>8P +zP3XvHXhgq5ANU*kX?7u&3%#0}s$`-B2PQ?uX!B@~a6#fGbZ#f04NXPY^WEskpGWWC +zgl=4W(W$HcT9}H4X!%++LIco<+>EL9Ka~SRdLJ6%htUT}v18{j|K80)SJp&W~j +zU@A`H_4y#SqMYN6^u$i=fIgte`tX3d=sTkwIu#qx4!w&e=_i=_{{Mjkm(71@0~c)w +z*;yG4Z8MyM*J4Hd8XZC2H^ceTXf`)MJJ=q5P(O6X9FBe$+=)hPEjr-MZ?gV=2xd-j=9CRyx9&P_SG7B85KhJFFo#5L%Kb3E4niM1#f+!DMReed6nK4=aap-0h? +zuRwEQ4cfsiXi^`*OWm@5;J_QRZw-HvkrS_?JPohLchKz3@lJS)HN%%FPr+;~!z$at +zA3#*wo}T!Z`Y+H8>d21t#H;up`nCJ&yJ1;xcrSb>oWm+^nN8mh>-0u^l=4CJgJaCj +z@N2mDus!9>UE!BYqtFfI4XlHw(CbTn5XzJAZOSj9Q#Ja-kVEsaE#>9d2!F(+A*t|D +z2zk?J5A?6$kH!Ib+s9!?`($^R^WV_yF84|J3kAcm4dp$!3XAOtzrcJKb8&yx-t@$L +z>f7xj4^{V*wJKq>OT;)>WlCPjwQbgU$t{_ +zF&8vAmY!IFpW-t(^{e#6-FU_E@U^=PyHWlddtj%p!%xvm@ixlEPNXMp#@YBA{)O%E +z?8)$V%^N4b2^CYKJ8&cy +zhw#C&3VTyu>4`URGLEL9 +zTIbSJ{~B)b&ta+x{SubpJTwwJ&|E0`YxqH9AXcQj68qwQ9FH}AOLa7vSk6J}0|F~? +zqWACViJNdbT0V{c!%P1N-*Ati?}%+!7mr~U7CE1ucmjK&BmD`V#0UNi%d^5?>4~+J +z58{pZ;NMOa+4egJov9f8Pl&`ubc3n;Z}0{zP5B9Ijc?-Dn79!3g%i=s{|n#u-7$;P +zcSJX$8`(cN6RWYGI+d?tYW?TTmXZ3`>vho3Jc2zjNA`?V==!6fyBi1LG2DPzX&I?M +z!}$xhP#%z;k^1Fx$&8HDm(Wc(oBDUL6?V^&k$4#AqpPT5&J6yB9CMoFU=tO~b7dqp +zV@^Yf3d*PewlQZJe7(F-SI9-N21 +zzZb{yYAj57173n3V+MYOcHmp|Wpft&Zuk$c#EXk$q+ZXpup{NVI0C09>zc1*V9zzB54 +z64)=6C!rr0ccUFyjAs8bw1Mx@DL99Y{5(4HY{fzZ3!tyr%4mI7tnY#jWF#_xWMU=< +z1*mu^`gAyvcqRHK+Q4=+7xtmoUs^m&O$9W>4X_mU!^$`Xoyup?eP9b->iNq;$8W=n +zT>q0fFl2Y5BY7UZa82}mJV5zN^y_%ttP4%i7xjgNe&F#|58YVOD}@mijn+ngKInvHaU|NnLumFd +zjpcW-Ipss>loYQVa;6rxqTCN{{~64}W9!r@i^t( +z=mTG^7CQ1N{y_O}+=<^-&q)2MWlfEY)Sn@LiN&(hN2tSIP}4fqwOt^=ii9+?=@xp`@jRS;(K&s_yY}njb<5%8Q2B>o_&W4Cqhom*dfmJv2R>*y`hYiMd3P+IjOD-3&=zPB +zZoC}rKvi^vtqEk5#?ZCZg`^(TsZb0wb5zEOh;=w6&Bl;cPl5=H+p65rGQ5iHh +zDx(e6L`U8fo%>$s{e#g5+=gC1JNgLP!TD%=OG7>X{WlJ5@D+3Dc_Fn3y-6bSdSgD@k3}dPwR}tXxD$QHW{g3qi@5ZlsjG% +zzF1zt-jqAE%}7kcW%vS?ZI_YyZ$NyE<0;o{A0DtGx)SSAzXnaZZ?QK19j)FWL~IBq +z{i2z`fg^eheQT{mNAwPwy&s|teTmNbFX$X!+%c5PN3-xo>ieQ2-iF@46P>~%SOI@T +zpHrk0>)$!4+9|yE8=`Nio@nTvMBfFQ(AVb<%*2!EeK|UZE&7t^4D>-iqdAn;CES+} +zt5L3w?hpMjwH&)7!v{<_xB4s=wH~1Y_HuvBlYJA69;6ZehR*RVE7?)9`^M8 +zUv^M<&>gsl29Dqqykl^9@BbbxHzXuo4>ZJM@ClrQsfb-4B3T1X-a6>AZHB%JTB1`h +z9G#NsSladf6bHUOH={e)R`kYw=$s!!=j@AEUvOx+{!;Y8m!VTvI@VXhvXraEa(8qi +z>V>v9G&<7ruK%$dWXEw>87H90vjn~2MYMyjpbuJ$Cg~>Zhx^eE*BlnEuNQ5C-gi|j +zw?>zFhgd%ZlioO-0~@|6dRx5Uj#&O*^d591524xr6dLO1(1zEbTljnEgAbtXe;)lJ +z`gJ`2-7wa_7o3hK&Y=zdj*dJrJeUIwbzb!PLa|&7eNZWME50&X8(qFvVObo6F5{W# +z{R^UthqL|-{W2=5;IrsPvo~JwGx~r(V)<{ZNjY&t=vb|219W3)hF;$()^|gvvN!tR +z!Dyt1qXQa~j2DbYM}B84&q5>caP)Ds;e}{J&qPPxQgJpj+#Bbnm_!hu}i2j~B2O*1IumR3p&(MOXv( +z$NKbo~qy+xFwD9T#VYAabv +zQb`ipgtRC{J)h4t^T+S?J~QW>IWyn+&Ya_-=eKl!p}G4Dt=T#{d2g0PB1hA-M4?0? +zF{4>pq9-oFn)nx1#7fQ65|3dQEPzKbKmLJ5Fh`5DLg~`oUNg +zXJS#@jJA6)`cJE5s3_SwEpaI)TA(B8f<~klI)X9ih$h5xGCDo_DCXe&-00Kj^)KLM +zxCV3LyJ&kKVH)nYq02cqh=%es=Em%8LXQigk*R^6uZK3=34LI1w8J-}5gH!L_n;5D +zAARt{m=EWp4_<)|IJt_05*)mVhVDzugBPQ@t_u&o0^IsSD+&(jV4lPyLB$^8w(T?oIQanF#kOLol9$jA9yN5^=Lqk{*t-l5x +zaR+n+H==X-KTIVjR-l|jAG93JjZJ7I-@@X!4Q=NblK&)KtoRk3!;5Hxm-GlX7C=K^ +z6uq%D+JS25RJB6)iw-y%llU;6LL+cT&$L8doQbdFGdKZn?8W+bLC2pmR3a}v$w +zzwsRAy)l%t^$rg#hOX43CE9m)mK4qk_bxG&oNo7f7E +zqDfd`VCp%^L@N#&cp-M>WwZcaq@xu+Ujq5*sSXf3)(2=)5SHVqa$cABeoP^im9`t2W_?D2Y +zwWH0@>pS5!I1nA_Q+PkVfkv>&@Niul%CgK>;5OSp?}c^t{f4z +z-m=k#(JtuJ3`Ykt7R~wx&`2ymb7T*C-9b!V&%t31%-YH$(-KYaT6C`NMswi(=uWf) +zyQ2rth7P04_E;?cioV4Die`)o*`FVqQ(qOUM}M&WB^)Tf_C&3w4pa+{T_7czC!nh@6ZRFMIW5?)^LA*G`BLNRg)aJT8yBuDH^FQXvhzuS^q8CfxlyYj@v`I0Ggzw&>gX6O4eU< +z4*ZhohVFDD(Yd@0?Z91F0cWDibR)VdenqG3PxSg+6T<)sp%1E#)?bT$S+zm0AA!U0 +z9_-@!|BeGg-e6K_;BM?qc|LZ7;A-@N8_`I-g+BOwbh++9ulq527H_0{ +z9;aZ}J45@Q-pTqmR41vhXMdv&C+-UCHaptTWmpS~pdoFC=0Z1g07I}W-Vy5;V@1lV +z(e^(_+y5SYO`k$Lp7UfPvYm)t{|Khx0<^ +zy?zpUeG+Zw!FYZF+VSORB$JytaIUwbAw7(S^fcOF))=Au=mQI*HUoIi-RTkfIonjVfVDX+(l_&54N({2Xq-{iYxMi^-l4dHZj +zWOLB-i_ky!uR%xt2^yI%(WyF$M($^gM^dgkE4UQ>D$X-I +z46rTQ@njbceBb~yONXL8d;*p$$HVHuwtm!(Fjlc}{ph8??P%Xp;3q +z+r0~o*dv&QKW8k&%Uu6Y%ng5XS&7c=5xfb%!@<~mUWm+c^!ztygWsbM`V-6GMXZRW +z=7)~7Lpy#`EDy(;lqaJfDl0LU>;HWYY;Z4{JV&CH7K9Ou!=}{Fj^$6#4dxegsL)@Z+M@S$M6Vlwc62y8@;lKEu0nHY-4m>TFZ_^-YPcT_WtJzyh2_vtRYTtm +ztuT|h`x5=K`RA!{U%{utbmSAnxD3nVM^Cflc6L!`bXnXf0IWY8(;yXAO4Po~s +z;ew&)%Vz>Q*E6vOK8JO1Ke|k_FAY<4C8j<$(WxAPM)++W!`50H-4W}f5ov^W^d|KF3DFtobvJh=x85)5NSP6H;^JmczUqli5NR&R4=z +zkJx!KhaR9 +zuL)CD5j}qmnk&uG5syMQp8L^`JdJj2Tl7#e9-KwLbh5u1)@=#wOt}`CL{rf{eIYvM +zJEF(XsrU~~)|{_}2Ny%{tAkVVx>)`QjlfZKYLh29Fl71Gh7jF=H7JiqL%$3i!5XZM +zAE0x10gXi3x-jy~(5WjDEfMR>q7ki%?hnJzjp<&b!^yUx;~7! +z4H~+e(Vg%PY>tnjBie_(@ymF=?uO8@w%CmN&e#O!U{ltXA5?@6l@^LI5MBDij-Iy+Yok+U=3v*zoOQ0J= +zWpr6xgYF02(Gd?rr{Yd*g>%s<_%fdV9=-mbSkCiC*t$!h4{jXoj$StklQwt{2R>i{ +z8se4c4ez2!^m#mg3Z45bZ-$QMz>$=TpxJ*vR$_CFT4W1pfvjat{?3Y9gjBrcytvyW!usFj>h^w@gd6j-U%Ij +z5?#J8#q#zf2afOnx-5?2Rd@~uV3l`6);@wh@FVmA-=Q75faXlm_d+|BF_UtAG*UNW +zeH@LxOJ2Yscn%w3vd{Y=+ZUl*_q?X?sGp +zJ`$aaM&v0pnO367`aU|c4`TUCbU@#r*Z+oYR9W|i_Htut{TJlG2oysvsDRFGE%e5Y +zXlVOkIUJ5I+nH!CtUx367Me@@(2jf^>(8L=W!V?nDT(G%WlXvbTXNuzcRe=6@n|-$ +zN0-??G;6;{Z%q3*bgVeK0aZmi)&R|&{;_^MnnU+u8g4}gvJ)NX{*PJzBthaZ6^`H( +zx*z-(FHHX=L?$nq6UERD*NFA?(ED3pHSCIBcQ2X~^U#Paj^$P8gV*B`eEXARc;GYp +zgUiqny@+;b13CpeWBtMC@p%3$8o9JjLk?6yBUTITz;##=JEK!FIr=a<(5I3doZw(7 +zUX2eN;9HPnd4!=$vO9j1fUYS_2LJHRxP-L?1jFjmUg78DENSLEB00 +ztc{a1{Q9Haz6(@D2DNwxxU#ug5k=!k5!r^m||* +zZp9qmq$S?O-Dt=kIvVF1jnq`GZ(K5X)c3@=xg0{D$V(MRW?TI>!2Uhik%tbJ`kBvi9f&UD1&D!?$o8R>#`M +z!zvkwc4Q3N!O3VlbI^7dVhwx-?f71FANf3<|NS`Y-xL4D3(`-72J)a=YJRjsMbND_ +zGuGF~tdtw05o(5Jdlxh}?nF1R+30<%(CfBh89actfBppP-#Ph@3OjP?ccJHn(F;nT +z4U|PUl1AwD?a<`BF*-3i58Xf3qSw6>-HS%%YqW#M&}Df($$?3d=lc-yOf+;=qP5Yv +zYk-cR1rEe+@%)B(eha#Mcc2|Vhz{s5+VStu4*iZsChdn%PL|-nWUGc=*aYps4Y9r( +zIt4?~2FIXtJ`r8#Q_*$(1Ukaq*atsBKQL_{1qp|uU~D@Rd6@v_4|Jv2aaef +z`b)`$h1PQyCK&1NAJH4?PwD1*bH<4ub@-82}|(�MNW +zcR!#v{Dn?I+Noepw8#0-NL`1HuupUrnv7e~4tztMKHoemwyhjySCChd9E +zSkXAz5zA9Q08OR`(1ssHM=%e)?-?{_Ud1$g8-39G=m7Sh_Z>hZdl*f^ztMItIm7z* +zAn%zlmxVBcw_g*q!B)S7p0-6B>WyAM2+fsS(B(NA>*F+ZUw8}c=)34hcVT1v3eBZr +zXT#6^WzVwyD^M|(in_P}yh(@3jnj3@AkWYx^Y3NS35FPP4 +zbO7(;Al!vb8EEz7Z{Z~}_V@TBG`f6_U~_ErNBBc!5?fM!3ESftY>f@ir6o4ueOTS{ +zpW)>+0;f~nh__(lzd{6-<4Vfk;a!+~{5(m(LEgW^=kiSKNckJ=i8cR8OZ37Au`3?M +zZdmt1a0VLUBWTEf!PFe1>->_7p}quKu81b(wV^(lXd5fKVlz(kM?6) +z&@J=oEa{2In6u7kc7KyKJ@wN09v%5*Y3Zp47e$k^9GXj&(e+;kOJPqei+5m#p-VUqlXPDQbt;lY*AZ0>}1sDCVvL~~#=x&hsb4qy?QD@)Nx +zY{tE~FP>kLE8MpNjpXVi2lj9)R>jXS^?uHsp8B<_1p4!OKlA~2qf;>reZVX<63fsI +zy@Yo3RrLBT=!mzW*L{d4<-T}6`2`1VwMWs0Ps9_ypbh?oJ@7y5jXm;&>t971T#r8R +z&FBuaWBcRz@6mQnp&j`hjqrJ7V97-GOT&oEqYXAgFKmO}cs-ikUC}Ld6gsj8(VUot +zc6>Shhp*vC&6}S3C8fk=>8YRPx<>Com+OluS$}Ie@PS*<4!jr3JJBrPjgIJR?1#Ui +z%d~U8^wiIA1JTv89L@4w=m;;M9m|f3%XvccsP@IfL^eEQBA22zXgDVS$5#1Y|jXr28 +z8v56;7Vg55coBVY@j}6x=mT4z$#o<8;6Z5ePDg(?cpi=L+t>-W6=MC{qsuQ(PyMu7 +z9G!~!Xe6G*diWAL*WaQcJ&$%Qy>Ljz;?Yv*YAT0@x*j^$tzx+&cA?xCE908Ntba#x +zhzi&7Y4lSnTaoa`whwboCT18rJ*&&`3>3 +zpZ8Rf1LtlXnpAty5FNoxJb`5~Td~lgD(I(F^H}bWX_RkABR3iCa1z~M9!DRz9G!wK +zXfhu}Ba=MIfua2aox9vurl)?(DTGcz!)QB9%`G}*gU|+sqa7ZH4&V;7BM-&;$Ixt_ +zi{AHCEI)@NcQUb(1LtZJ8v5<%gN~y;KZSNMt$28O6h#|qgm$n6dS4f`1Gl2>O+iQc +z7#iwl(WHI@&5>Q$-1q-s4!)%#vqWeptz=ksrO-LAj&99e(5XtIQ}6`3A#IH1{b51SD{(H0iCmVF_om4N>cOz*-C}$E1@H+ +zgErg}uf?wDeY4RAFGKf{7tu(q$JD?7+s1(*{Q?c$H|P|cM(6fVtd1Aah*T{duJ434 +z+!O6^pIAQ(4e=Os3Z|e_I5)Zy?ZA7bS^u3m_=E~WTDDC1QfY>MD9l1f`WhOU1JNU~ +z{zq&}eeSX$GCk1MFb0jpZD@z@MLY65I?&gn@03l3(C?taksL!G^aI+%U!z&eg-GN_ +zBUA)^KzVfP>Y`KAIi4SmChtTv%YX@uKyo6 +z$clfU9r+9GK+fu66_i3p)&ku~dZ6b=q7C1Nshtk{P<}T0U##y_BfPe6#gUw!g*X;Z?XF2Vjo6p(DfbCdw<&4y0clI#3j=QEnT{ +z6Jz-W{EPZe(GQi~^}@3L4(&i%{q)5DFn^K*M|?ll#(DSz?nFa%bA#|Yo)CQ!>rnqL +zR>nWj&}Uu~mTgtETocWyMreea;B$B#y5IbaPIdAE2QG{BhM|En*phMuyc0*Eq5A<# +z;yH9KFK-lbqd5AYGU!OlN1NdP*jIYtztn$tZFq}*&^SFYj`BHVYLkf(O+xZ5iLS-Y +zT(BLTiXu(J26O{lL5Tmajnv&r@& +z#VYi|J!t5^LN7dxhBSNg&~O2CM=Xu*3supE8=&`fi1h=|j*Ldzy$jv*XP{H?EMDUJ +ze~p83xEWoS-=a61L)U$Ji!g_U(dC$lZq?<{4W$|S&ghTce;3-JSvUosN9VeH%g|1B +zwBz+KwfSfFEph6&>oME=kLeV){E|t^Uwz_!4|k4E8=-Hxl6YSk*I@4 +zvN<}y4y{=K_M{ILIvj22b~H&IMo07?nsfzPrzhrMQS`c3&ZKE?nL{M4}?5{{8<|9C)HR+L3N( +zcF#qV=|wbT>(P*JMYrs4V>wHYP+u~7ZS$jn~axk7h5zn7TJCO6n@Y>EF?Hrwjc6@L2yBk^mR$QdQ5ftnllC2oJ +zeoLWAST0%}U4Hej95%vQI0#MBx#+rn0=@4&wB23kh(Eyx@Cdr24olt?Hk66zg)`9+ +z&X464=tx(i4R1kTJ}1zP=u9kU?-L%751q;q(Ryh1cf#H{3f(Vu;2=zX$$>q+wr^;- +zHM-0?VI3Tg_H+d{!cEu=|3EuZuV3h3Gt8vi5xxFabgrkw`kCldu0hs)Vrw{`OdRLn +zK0XwFL+9@H0l|CF2TVstGz%Tci|DG@hBo*yI)D@C)SN~m_!}D0jDf-2=z|NO_tn9x +zegC)NpfnZtpd(+3K5!eF-CxIYo;WF5A?bb(W&@9%1@yKx%B1`nai;Y<+AA9 +zPsDooALixxiF$)W61G7{(huD*hM}Q6iYCulwBdizIm|XBtd=X#a-CRijlN_CpphDh +zPQ^qtBGcpfN0Gn(V(a9mN_oG>dhvnLAIP2dBx1qui^^7Nmq9YuIejDD3=E&n{60XO&_%S*q +zLq~)WjluSmljzR53my44@%#z&dFRk1&6XS)=C%l$Oy%%uY>bXz0y>xPp{rqc^dOoO +zN6{VgG`a!h7!^8vDf*zA=)judDC~${w;3H+@;wfG2OLKm{2NV@?4v^uFU7i)Gcolp +zKsTO|cr8vv8+;d?^Bq_fKSu|YF(%|j33SRTqtB@y>iO^gIWQER(UII7P9*M*K7@{B +z9y+(rqe=7`I85<(k7X3i!injL{W^?^7=D-G?kFG@L>{T?Y +zH=rYV51s2n=m?IXBmO0t<<`(}e)Rg%Xonl3ukBHI70y7P_ck_6vh!`@pduAnZVP{* +zP#L}8R&+$S<3zk0P0Bye2%JZABI~#iiQMSOi^Xy!bfc<|j`(^Uj(yOn+>WW={|<5B +z-hKw1+p6QkgIb~^z7G8!=!CB4(P#&siav{WbOqX>)o9Yb9?M(N4(vgv`s?T~<5~aX +zsK`1Y^!#?T$M>U2xe)EZE71+;$lpTeeg`_@&(Ntjj*jdPv_m;>5AEecJ6;a$KsRiO +zLvLsOTd|UgHn;`da55%_5f(uoSOOhc1#};%73;g959*8FH#j;G&7B!&MCYRedIimm +zt?~TfBnOV<$LL?^h1n+si(?PUb0dy=~C@#-JTcj_1I+oq`kaY4nBycZcOz1S?anja9HOI^u`WIh_^DOVEawV_ke1 +zeZVnviq4?dUqo{w&poO0$wUzj>_Ay`P#-zmJw+DveZk +zEQhPm9qtp%#NW~NUua6O6E<-DKg>aWPHaPWu76{>%DrJEgRutnPoT^6L$pJ`VI9nK +zU+73PbZ#f1FRR(u0asy1{0HrL`>EljH4Pj3{@=)f4gH4pu)_Tz)PvAv`B*IPLbLc! +ztcB&Lg&(DQ;f<8nVFkQ&dYH1Su^Q!p=-Y25x@GT)<=hXj{;g=wfm!_!I>)Qfo_>x# +zF#m%g63wt1<%!XcuoC4`50MijWqWi=y37cFqw)~`M0wQ1;hVANBf&-J^@kpbfBygW +z(J*&s&^d1XSlD8_pvl%hIuuQ!(b2onoOu*`<8x>d{)kds1Q24T={`MjM=t593kH#L=@t!;fKk$}7;2?~Ua@qa|jC^R1$zqI05eM2{xp +zL5{~ma@D{tG}sGU;YxH$&f-`sJ||4cqiE7@MwiA-iOg-{u^Co^`1#>RLR6(4$RW2xB_3r+1PtYn3|u_Q2&W;Bqf%{ +zmlV2DwM6HVr180sRKt6U#rLt03!h;g^)E==z_C-v2me;xaT>wxJO@g{55oIhTbFRK+Hgo8nNM +zf(`L|GzZE&A2yhd=m>5>M}8anlA09D_o5MdAo>cL?FZ0Y`4Np!$ro7vHc*>`Y*;_q +z1PyI#tc~r_4dBYOCcw+tPI}`H=#-U96I-PSA~&wLLW2~&4uyk +z0H>oh(shXlwGYs3{JvbG&qsiRv)zFa- +z(TE;Glk*4k)9h?4XL~I*Rs8vn1Cydyv{tlDxFFFN?fG!Dp|R+Co`fdRlj!}c(T!^x +zI(4PihN-B6mRq9{>V!sQAg0#;SPl&7U1;d0q7Qrwo8#PAe-N`%{x+Wf3GL7?Xh+Ut +zDa^Aj?0hxQ2X{kPQ9tz4Y&IH+HJJMI|27Vsivwr}j-z|`8N3E7tPi0agpOb=PU7`B +z1zS=+zac&G0XE(k9*|>Gct8d8ozV!LidATbUPqJkeN27-f6al*=2x_b|DxGh{Phsp +znmChkYpjT$p(FS&o-g=DxV|#l!E4b6bwGE_Ug&qht!TuSqXS;^2J7Fq(%V$nqr>Rd +z_!k<9LT`p0FB4rQ4bTU)MVC`=w82s6oKA@6r=ky-i(dB}I-vDv$9JOFAAXbdZ^I|4 +za1Q@LZ^*kj^t=>$VFUERZO~BmLPt0xIu`B79q2dUedt#HB-;KVGt-Qu;lvZ@1D-}l`W!m7o6rbvMLTi? +z?QrsY4!q$PGy><)8*{!Dw%(HH`Sw@|JEQx;omc~3KpXlDz3&Lxq2JN_{zW&i^tZ!^ +zFF_-G8Fu3N{3n*7VqCmn8k#hZU`G{m)p7a{4>LtI_xVE$D;pLnHJ6I`V~R +zE-XVkxE9?ncH-r3SzmMDjep=I{2QC$xOd~DRQ>W6M9FJT=#j9#B_S16Cfw<$k^PF4SpLJrNq>nJb42KWso4N1}6A>=ip +zZP0&)-yi$pkUe2Xdw*}3^B>UcF0wEDgMwbzn(|hB8FPIce!zSkb8vs1Ptp?$sBg5N +zkW>B?%izgRS^pC_k@vGOf@x?(j-X$+{SSs7FT@#?k75rT^?7*RzK_i)cmE>1v=-nm +zl<)hJ_09vv9SRYc{#AP7IQ6fhAEEOPrzbwb{fCq3ssB;QC0~cXaLjikeAQ0F#avMN +zoAku<_yI1#u}9Mr)9|uy!`JS7>`eJIcEhH}!k?n&;cb+29Zye;!F%uzJcVuX*op9O +z&8sE93l(Fcn{YT6Wc@zO^(ef7@+R~F*?tJ;Z^ADrZ^MUh$&X9{Bd+{Y`18U4PKFPb +zCD@bt96zTgp5nRzr^1iW7tvfuPCFg4eh&_yqRpA`Z!=e*BRG#6anvvTfJj4S&!(sT +z7ZGOv8m21SZ($iuMBP1Wh7?d40IJ0%bt-)mSs+F<6tut3vy&6wqUnQ +zg86f1r1pV**opeja%H6c8;}aQGg3R{o#@p3j@xitp3tENmu94L<|#Bn-STFnrs`q* +zg7Q1)PWr@U{Pz!yIQaasjMQJf6v`Ju(*QeC{}?vMukkJ{l|Li(cfO0!*Ju3#8L78f +z6U;%m4Z4+g!WP&aeW@+NEAVCX8*vAg#WDr?^N+9B>k4M1UNYU$3rAs2oQ}S~XUFnV +zEJ%43=Erw213yJO@Fn`PIfi~W{EB5TQ79wzdM=CCQ>=i)aC|Zze1-P3<>g^yz0i^L +zkLAJW`+H<`I$lC~DcaGMXh$}nFQ3g=9*>~Oo2_tYuOj;XuZF%IlXW>T0?qJB>=4T% +z(GQGCXh&wF**_m`;45?rj-w+#iH`htG=gbGGE%SE;%I#xw7xkykUq!&l8K2NTt>yc +z(Z|Dy#BPzTTG$QH6gSn#lF(36;M5{!v +z#mjhpq9X^@aR3_HndnFspmVx0)^9;~#BJ!ZJA-LBrbI^SoAEX@CuX7dJ%P5nB%a@k +zUVjRm^0SyUdH&_VkzZ0WgWZYW`_K^AK_k;LIt=aL40J?~qglQT{bYL$eZYs&J?Miz +zL38K`np4NoNL?(+`cH){Gc=qFO~L}`7F-jn;2?BPAB*MJqbJY@hF+0!6I4sVX|gM>OVYeSt}z^pYktAGA9$2 +z>SQF!abs7khKZxeQduZ10MU(OXnykm-`IBgJ +z{)Hy}1x&5~>~+JO7eGT(9Nlng;#h2g*W+rmqZiQCQTpnP#0IQ`=EP6v)a0(0k@~2u +zg?3~)x=*Z+SaTs|f8tPi;gRe)Q(?6ESp%I#%&i88cV#|!gDA#}6))}dv(Kq1Dl$*2( +zUo6jIPs)w2%ScSY`S>ChZkv(%-+*`*$5SrTE<9jibTQVYei@o{Ut(=M9WB*9M64So +z{h}Gpfg^eleQPa7N3hw)iT94-j}6g +zcqx@amuW{#Eys?@u%(Wp!sRj(O`ey~_xXG1vit@e(I05T|DYYn)+uy6KicscXvfE+ +z9iNXz>=|_HejS~P1L!Ktk?b7y?!4%-D1e?QhK8~!;R^^LXyqF0o4D2 +zYq7_T;kzJb@9>A#X}E~`W9U@eeN)&$Phm^4yc%cIM-Ci*U@i%vl= +zbV|l!DcApF9QgWNgYIDK&>Od-bG{3mvyWqa`px0`OV9`BL8q=@tiKY=QqGL!R_I35 +z7HzLbw2$Xq|ARQlibJt74o8z`E_%b$Xa}D|AG91z($#nq?m#T=4fPXf!^_Yu{0;QMJJI$(ihdmZ +zES^6!nDy@kN8*X&XoEkZBmXUW9u4(>==Ir#gmNzQLHW_G`0{8ubopL|Ww8soj3=V^ +zKN6iig!OOe=TlJy7oi)*ws^q_^Z`G`@@cF|`8TwKWrqeUqZ><2^!lc;z9l-9?a&8z +zMI+q{9ngSeykHnQ@>^qhGWvk2(TC86XQBk~4&N@s_Yr^+xMwVGZ07 +v>;FVoQ?=n4{&=00|5^RvhaMPyD9gs-hq6u_^1!L4Y5ZUM##2o*)>ZsJfcLWU + +diff --git a/po/ms.po b/po/ms.po +index ae7a790..fbf6ec6 100644 +--- a/po/ms.po ++++ b/po/ms.po +@@ -12,6 +12,7 @@ msgstr "" + "PO-Revision-Date: 2006-10-29 00:05+0800\n" + "Last-Translator: Mahrazi Mohd Kamal \n" + "Language-Team: Malay \n" ++"Language: ms\n" + "MIME-Version: 1.0\n" + "Content-Type: text/plain; charset=UTF-8\n" + "Content-Transfer-Encoding: 8bit\n" +@@ -6699,12 +6700,12 @@ msgstr "Tambah jalur" + #, fuzzy + msgid "" + "Don't use presets, but manually specified bands. You need to provide 10 " +-"values between -20dB and 20dB, separated by spaces, e.g. \"0 2 4 2 0 -2 -4 -" +-"2 0\"" ++"values between -20dB and 20dB, separated by spaces, e.g. \"0 2 4 2 0 -2 -4 " ++"-2 0\"" + msgstr "" + "Jangan guna praset, tetapi manual tentukan jalur. Anda perlu sediakan 10 " +-"nilai antara -20dB dan 20dB, dipisahkan dengan ruang, cth \"0 2 4 2 0 -2 -4 -" +-"2 0\"" ++"nilai antara -20dB dan 20dB, dipisahkan dengan ruang, cth \"0 2 4 2 0 -2 -4 " ++"-2 0\"" + + #: modules/audio_filter/equalizer.c:62 + msgid "Two pass" +@@ -7426,8 +7427,8 @@ msgid "" + "16 no padding\n" + "32 ac vlc\n" + "64 Qpel chroma.\n" +-"This must be the sum of the values. For example, to fix \"ac vlc\" and \"ump4" +-"\", enter 40." ++"This must be the sum of the values. For example, to fix \"ac vlc\" and " ++"\"ump4\", enter 40." + msgstr "" + "Untuk betulkan pepijat:\n" + "1 autokesan\n" +@@ -10235,9 +10236,9 @@ msgid "" + "\"ssa1\", \"ssa2-4\", \"ass\", \"vplayer\" \"sami\", \"dvdsubtitle\" and " + "\"auto\" (meaning autodetection, this should always work)." + msgstr "" +-"Paksa format sarikata. Nilai sah adalah : \"microdvd\", \"subrip\", \"ssa1" +-"\", \"ssa2-4\", \"ass\", \"vplayer\" \"sami\", \"dvdsubtitle\" dan \"auto" +-"\" (bermakna autokesan, ini sepatutnya sentiasa berfungsi)." ++"Paksa format sarikata. Nilai sah adalah : \"microdvd\", \"subrip\", " ++"\"ssa1\", \"ssa2-4\", \"ass\", \"vplayer\" \"sami\", \"dvdsubtitle\" dan " ++"\"auto\" (bermakna autokesan, ini sepatutnya sentiasa berfungsi)." + + #: modules/demux/subtitle.c:64 + msgid "Text subtitles parser" +@@ -20110,8 +20111,8 @@ msgstr "Antaramuka XOSD" + #~ "language, $P = position (in %), $R = rate, $S = audio sample rate (in " + #~ "kHz), $T = time, $U = publisher, $V = volume, $_ = new line) " + #~ msgstr "" +-#~ "Ukiran teks untuk dipaparkan. (Format rentetan yang ada: Berkaitan masa: %" +-#~ "Y = tahun, %m = bulan, %d = hari, %H = jam, %M = minit, %S = saat, ... " ++#~ "Ukiran teks untuk dipaparkan. (Format rentetan yang ada: Berkaitan masa: " ++#~ "%Y = tahun, %m = bulan, %d = hari, %H = jam, %M = minit, %S = saat, ... " + #~ "Berkaitan data meta: $a = artis, $b = album, $c = hakcipta, $d = huraian, " + #~ "$e = dikod oleh, $g = genre, $l = bahasa, $n = nom trek, $p = kini " + #~ "menayangkan, $r = rating, $s = bahasa sarikata, $t = judul, $u = url, $A " +@@ -20594,8 +20595,8 @@ msgstr "Antaramuka XOSD" + #~ "lokasi yang lebihbaik untuk bingkai-I. Nilai lebih besar mengunakan lebih " + #~ "bingkai-I daripada yang sepatutnya, maka merugikan bit. -1 melumpuhkan " + #~ "mengesan potong-adegan, maka bingkai-I diselitkan hanya setiap bingkai " +-#~ "ketint lain, yang mungkin menghasilkan artifak mengkod yang buruk. (1-" +-#~ "100)." ++#~ "ketint lain, yang mungkin menghasilkan artifak mengkod yang buruk. " ++#~ "(1-100)." + + #~ msgid "Number of consecutive B-frames between I and P-frames. (1 to 16)" + #~ msgstr "Nombor bingkai-B berturutan antara I dan bingkai-P. (1 hingga 16)." +diff --git a/po/nb.gmo b/po/nb.gmo +index bd6f34f39c58bc60df3245919ed6841afd3b4c02..f461970e679abe54c7daaa6669c3e0bf6b35aace 100644 +GIT binary patch +delta 622 +zcmXZazb`{k6u|LQze=^JR@KjnAA?p6t@=^jI*6u=c9DpoLP|n0Xe_+h&_NoLq%lh) +zl3I)gn@uqA2Vh~45M6waHo3W +zz&7SrXv14<#Cz<-7xd#7HsGL>y*P@^=*J11K|MEvTp@?pgvU-Xq=vyM3zJwtnmo|y +zhIb6(Z*@J?A!248Lk%Q>-MEAy%%TU2ID~iDgP*ATtS%9nIO+6!pUbF3I?IA)I#+$L +zh`M1Nhj9m!c!FAqHw;j@Z`44%ZV{RU>FP0#y_i6Ke;c(T2dEV~!XV}h2Fna?(2Jff +z%7`(H;1>Gu95s+f3}6|HI8ORjd`8Xa74_gBoWe2EpT||q;sr)=gy_s9u&}{Ezuj(M +zr2_l-A0cWcIkaFNr?G(g?Vpg}Mm|t4HuYBmv6rsvqBcuBl}YcV(re*?QrYgd{sH3Y +BK&k)$ + +delta 611 +zcmXZayDvjg9Ki8ki{6&jqpn`+QPdz6BK3^iq>&C~kPw4(sKIN&LSl524k9MW-92KG +z7$i+3Y&OBbAAp5HLYTzp`_m>T=X1`v_niCt{mwnGUHg2^>r8k=s_R6KL}V^3QiH#! +zbAP=^EuLZsuh5S-XyGIF;ye1#GDXU;4Xdyd2eA+J+(qPQ*~9?unBs_+!9EMa=ps#S +z>2$*jj^S5nJ<%XyFi)WdlEElW;}EW5439C6*Vv42sQWw-5t;<(^!)aSQ;f8q1ki#xq##!7$t;91XsoV!@AhAXfnsn1u;5fEm2KD_V)QW7NR%jasFz+zPF}T14 +znoX1qQ)uG?_TV9EAa|I=Z#=^|=?C!vHKQlggFkTuJ4k;Lv$%yPn8qm486+?>&p_{P +srL|arb^MPIHIqD6;x3M&i+cC>$ZsRBs2~184a8TtEKi3DM%W7e0lB(5{r~^~ + +diff --git a/po/nb.po b/po/nb.po +index c7d7a24..06210a5 100644 +--- a/po/nb.po ++++ b/po/nb.po +@@ -12,6 +12,7 @@ msgstr "" + "PO-Revision-Date: 2006-06-12 22:01+0000\n" + "Last-Translator: Jonas Riise Hamre \n" + "Language-Team: Norwegian Bokmål \n" ++"Language: \n" + "MIME-Version: 1.0\n" + "Content-Type: text/plain; charset=UTF-8\n" + "Content-Transfer-Encoding: 8bit\n" +@@ -6176,8 +6177,8 @@ msgstr "" + #: modules/audio_filter/equalizer.c:58 + msgid "" + "Don't use presets, but manually specified bands. You need to provide 10 " +-"values between -20dB and 20dB, separated by spaces, e.g. \"0 2 4 2 0 -2 -4 -" +-"2 0\"" ++"values between -20dB and 20dB, separated by spaces, e.g. \"0 2 4 2 0 -2 -4 " ++"-2 0\"" + msgstr "" + + #: modules/audio_filter/equalizer.c:62 +@@ -6866,8 +6867,8 @@ msgid "" + "16 no padding\n" + "32 ac vlc\n" + "64 Qpel chroma.\n" +-"This must be the sum of the values. For example, to fix \"ac vlc\" and \"ump4" +-"\", enter 40." ++"This must be the sum of the values. For example, to fix \"ac vlc\" and " ++"\"ump4\", enter 40." + msgstr "" + + #: modules/codec/ffmpeg/ffmpeg.h:115 modules/codec/ffmpeg/ffmpeg.h:248 +diff --git a/po/ne.gmo b/po/ne.gmo +index e0897f39918d41c6c0fa3c39d0d2898f153baa43..3050a8d35f95f32fe41b1f6e57c3054d98dcd811 100644 +GIT binary patch +delta 28303 +zcmXZlb-Yy78piPrlStzM>23)@x)0smNOyM&Lmx_zZbVu_K)M?d5CH*2xG0EpH-d0~ +z&wlqG_w!xv+O>M^nK^iu|Ce#oe;GH<>>fE9%W>Y8^f{Rv$2nNq=iI=5um+we<8!)W +z@@Sv)4d;!+M#NdmnZq$J@kPvu!SZH4&o3|=`7u}=H(-GK+{4)Tq=GNv1UT@#qR&Z! +z|6&o0U&-gx!-}YQKIX<>u_(r>Y!51q4Tw8nA>4y)@tK$3sEWnwQP(A|YH>9zK)j)9 +z#1c2i$Vf(tYCb0+mcZ;--Lt>vV$UBjEyo{YJWN>Ku1k%&aV|`XtuZwY#N;>=b^dyc +zkGmoyqDdUb9QaWUpOXO#U>9tNS@0lM##y%C +z-sr32b3VfUs0xh0^gQ30NFp&AYw;7@i;3_8YVh1dHC2MTc7xQYczg9k{4Zibi+1ls)OneBx$FJMi +zXfEB>=e#7Y(2nD=7(4B4Fn-k0=aeKr8g>5&s(^E`DsILUJl}awA`d3-3*{++6npNMU`g#khD|TZle1WV}O`C-y`=c#?N~F_tCXjq3aNI0d7+GFzzmGAxa!x>-Tv^{`o00mqZy33c9+o;Ijc +z_GbR80A+gHi5*ZioPe8RQ&TKR+^?VY`5LT6yc<=pxc%+Aw5U-YjrFlLYLIS2P2=0B +zf+rr}bGBoBRM*5C$o$s@RR>y)zd;??jaup6pk_s#K~~~%n45T=7yp6L#Li$lUKW$7 +zrr4G2$Pk~C3-6&SmVBsANgn412GTJbIq^Es_C?{M;Q8g|DOm>)l;zzwjX +zSMY_X1?vf_C1Z`S7RiQ+t9o%SFP?#Fsh#K+@DhnWWK^!WY`Tv9jt?ZN@=X0LXblWHR +zoXuRYb`m8eZaLZKe1Va#e9l4guT1edk8$x-pYsb&{o3cO$ClH4&PI$s-QsKoj-V%W&!gr+iaiHoQzLV^K=5L>6T(b9(){!6aPNP7M4bHeNF=6p_l?E +zqMCF$&c-8H0h`UE%eekqR9~N;Z`1r1>N&|4Fe`Yzlb3`tcHjX#i(0{^FSKoV8>%b( +zi)=8Z^sI#1Gy0*{`o<_o7CB?8R2o0;uVH9W@)?;~C8M4fR*wy(aMoR$bzAmSL7} +zZ4CT`y6_^Z08hO*ywqxx89ybzFscA;Q7tjbbE$Xy5UwEqA&$nG%dCRQm-`~_1tpf- +z;Q9i`aY8rLY=Tb~hDg1ggouMb&r<=EVP@ +zx;FfsEqHmpW7-@hqZ%3NtAuN8`jlPkbLNoW9y8*9m>$!w^Est38kIi+HBFa!@pjY$ +z|3I~bZ@rzD2^ClL?10h4<04+-IBHY)=zHtq2B?ybLe2lx*bS3y@Hy>qG_Jxs*a@d? +zWESDSsJPE2YoW`ixZDpGufu7?QJXD4veHW=++qg?p_=xitv;uRZiM~t8fu+rxXq6L +zguRLLZTC4naT%&bKHlMT)?gv*g4a-kx%y6P@?Myg_$w@}`M<>y&U4h#TVR(hm3^=v +z@mkapdJP+3g59>3w?j4QD%1^s^x}u8f+W~uEtn5=yb%`0;i#o}8y466e?&qr6rb+3 +zQC|Yp^i_}&Iz6!#Zov5X0YAg|`)ofih2@Bwp!$9hYC0c7&8|N&ALiT7d5p2PsC8x4 +z0iQFM=R4aEvch5QLq6v&uE&o!VeVn8@vT6p +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 +zi?haNTWWOYe`yjLM4eEB;(OEucQFRzt@XP) +zp746xJF=iE*d4XxPsfM`)h!aGvBmecP%K8>=sapciMPQX)EKqo4#IXg9o^}PX^1m# +zw6ReZeZ;3Q5uQQ4DP2Qd{|NJ9oK4JsEhI%Z`Q0Cf%b+f(hMMnRpqgwdswPXl{QcOL +z_$g+>hCkRsH3Tyf$6x|ngCFBgOhljmj9SpHZZYp|VVsl3k?mM*9+*?(59j>u*YM?j +z^*c+6^PIPr&9gY1c;E%|CBCBT`d{=rj6e-Wbt}HI#%-Sb@25j}FixcTulaU2a(4|B0!HKVUSb`p3pbbJR5Lf_mi|hMLAV +zu_V4i6}aF{D?oiz0lVL1{;MRT$4S3HHfe~~*jiz=Wh()CWnZX82~9xxwyD|ObR`Ye3c)`tS9mZ^){_eY@4 +zJBivGvfeWrqt=m$sDkf8weS%y{~>A}NqgVcnK}^?YKk7Hc{v8vR5MXE+l)u>5vm4T +z9$3>KMC}E>hj!hksN=;^U0E43VoTHmN1;~At*CY65~jn*2NEhkx<}R|1yOMw&yJ`Y +z4@12&O~ht+6dCkRhR61Dniabc-^Tt}?}@DgKjG)Z|6*3m^VIf?2FUdhXB3Gr2Vzh) +z`r3?I_Vbk?8rX+6q(z>)imeVMj +zK|&Au4S6GR?xP0bC$DV5DT-Rr24e`Wn*2A^pn8by@T1q3-xJm3cPHu +z)^#~hUC<8I(vvWvQNEdkZulqa2F3of`C9|E#<#%iILM2?MGe;7s0W|K)3cR2SC3B{&E*wo>>4&O^+IZ7{Jv;Qp@I&mXZ9k^}T*wV)CknVP8lNW#I7gL_-N_&Iae$xFXqhOh +z@sp$h_pfUHN)~Y1l7BvV!2M8LBxS(;laI(ZsRGVhZZITuzZOnzSGX>l+k{2~g>Y|Q!#wnWrqe*CG +zN|M=5D1;iNHBcw^^WrI(pLi?kLAO!wgvqnmc?EGMaV@NdH*gU({wymkKzuq|z_zU}Xz?UEtXnBf4M&iJN!<8{nQI0r&g= +zBt--6yzYX<$RCYbSoUEwKEQ&Qw^+a_kL^({wZ`)l#t=WmMmV5&!2N#kG-`U6EfI*g +z^R`6^D_L(;ON>X=U@2<5eU25dbV;kpSUf{K3p3F&9ZCh96*#eUz}>t)i?%MRh+5Ek +zpfDpY|=qK?-?EzPYw2Ybh-BV*f%tR|rvuJcYfhPv=i<nmb3wn7zPDeA#HP)&XoHEXV6E{s#d9WxQ95D5*2q3HGv>cUm1 +zK0knJ>R?UFZ-8on9;l^uHIAgI593wh3UvbRU&&;y%SuN)$MZdEEVQp@OZXs+r};mJ +zgg(nH$1L~*YBc|j)iF(dYEBDu!FN0na=g1MV-K3vn>#MRl@*O+hW``%q)z32Gh47U>*t +z(v#?bYN8m_I`Ea}pQx9`d|d+WpVxLqEya6KE$|Bc_!iaoPFHL4+@38^51fjs&{52c +z&rrK$BzZSRA&GXl3Fn~}nrhv>(TVz4IC*xAwfbn88|LXR!6I=GP!8RAGbHWZBhk^dqgp*N&@(}95;Q>~_ +zI;aQEL+$scJaZ1T>&BxNo_(l-p7ruyVG+&$+=FbCc0e`ZFjQa8^E`$c-Oo@3%QV=| +z?}b`7Vm#O46yjg7Jhm8OUA7E0%{QXfi=R=0?-fQ=vO+`cges^$>VWF&2oA@|sP}}p +zUs@NmLLKjgnx4Z@_gRD*3mZ|}_MfPIKj$#((ovX|cpqNCe}*ytwGHkb9&rCw`xUAQ +z*D@_-oDufGj-CTiD_acyh-cAl`jIx@PoW0aMI3_RQFeSZrX}8nYT*m0E_^bI2dO5- +zMq5oPd3N-SLDg&(YTE5W4WbvQ8zdhSaKDsljcSQ+Q3X1P+7+LB#}kaTxF)K?olxg5 +zkC0H)9ziX=DaP3e<#9JF;|SFBEHOUdY$5KA>Y}U@t;VHM52}JSuq|rI-Gmx!*HIM+ +zPYSr-gr-8pdGR^BW~3|$HCf>)wxD!ItLw1#z6hWwqA_I7v!Hqwb1czti_+AyZ^^t +zVxut~YF{sns&QA;7#NFR;4IWW{}k1fzHjZiWH^aFE`$g1&{E4Ev)rcJa?}_*fSN^5 +zQP0V}g884FM3WWP)T3|)@g{7K6;=k^FN@b=L1O=^fcvXeG1LwA;T^n-oACT<+bhO> +zXD#>~H4DnEu`cP1>xrl1A}phYMoZ?^wYG0}UuO%;Ke(0r_3H!fFP?3`w`o~_gPr#^ +zj^=oHW55}KlW`!%-^42x(`qbgp1#M;5G`~7Rq^AIt@e5U34Y6gPTQ=+ +zAMFS@tvKN`WSThBus5DYt!!m>+F;y`KH{sWHU2ur#}BBkioc73ao@C$**- +zr8#nhgjT@Rdjjqsh2%hefp8Xe!MVM5;saElSJ-D`qA}{aPN)T{KStvkd`Ao1$Le_J +zpcTB(k$^LbnDMyfhkvp) +zJtu1VRY481nW**S7-}>6fEqh_PS|$c4mG>hq5J#)TM{Z!jgtYV3{F73c$`4pAjv7a +zaWrbs^+n}>gL?33R12i|+0LtpIz9pm;|A2b<1JJR4hCM{}+ +z6ZgXmxD(Yvm$4kaMct_M8GG~v^WrbK9Y3JDZu@x~-AOOlU@nEKKs(HcV^E`i +z)dl9i=I0qQ^5aWPLdkPnv_32Gn?0}({z(2d%F8hNIo1Fg~ +zRl(F(Y?kCgb@gYc`*gd){Le&UDH+-}k6{R3p=$QQGw=VbMOq?*+L?@Qi(mrc6{wcl +zf|`zJ(cO$ZKcH%!5!4A~F1q4Yo(9CQE$R +znlb~bW%}R=T!wm3k9&NepkRA3hWOrn1{rbR2R2<}9$JmNJ+iKyirP~Sq3(CZ@*__C +z$2OSCpr%VB)F7LRsc~vHGYknO&wp@ +z_k-(D$D>~c_&WjSUw0C%$?(6j&+{En@k!6zuPvVH`NXr{8_VD7`N_W)4@N!UGIpha +zp|{ooecxFDSE4F*8w+dx`~R~qg-f8O$#K*h&TTJ_^*-SKIZXzvKz=(fUgP<|^Ro|j +zUSH2`o^L!$@M2e%>-C$v-ZKtiq%?^)B%-lsEIVN+YV_|zZ4wW$F;iJ%L9W_Y9{-AxBMa7-{L3{t7PKIu98r5{qQEPenK+s)E>!R{U +zVoqF-D&X&^mI?=h?ms%qfOCjXdA17$-H-L}Jd1@b9)ud?+rkm6$uTnY)_VyP;a~VM +zKJiWr#0k3J6DGyJ{eaOQb>o?+^M2805t~w +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 +za}ZC$y0{g!ONMXSUX$e}(PDT~z9B#rZ +z_zb7qHb>nFxxaW0xNE!K_o$cKeV7hUMo8$j_?~CZdsf2Ep5ss#EJM{`qo?n_ZCVXc +z1zm@F(b$hF;04duSe7`|1IurL?uT8}b&)+JG_8K|GR8f$8_h%Q?;BA2_-Sm0|DpE( +zCXYhyN2|ryg7^%okMlmZn#EvY;#H{Y|3r0Rf+u$0oS0Ahe-#q(7)(P^pV`JgwWi*L +z)rtRyZ7}CEn{HpBZk+Uah<_i(cRE;xc-IT7(OXm>CwOV=$ETQ#cqkUf>8NRX8q>sP +z{(b(+9#H3vEty-;$BjSyYYUI>ot1nlCg;MnsHQuDD)4WZAD#c~W%YAZ0or0;9D(|b +z`5ZNd!td?+0+^QPJC#WE#16=For|bJ^*h$Z>!=$P{9qSWLA{cFfvxZyvSRa#S=jCS +z!l=R36m{JYEQeE2v*8@7CEj5~i6XJWP6+#9R{RnZ<1(a=oUNz_-15AKs^KH_W4zd5 +z_xFOtsFtaT8au5~Ei?ja;diK&^bL;2PQGx&{i)=>FYG$lA9g>A1p{GsuzZagRO_%l +z`h#KjOX?=5ru_l+z^tLL`(9rZwRE>cb;<9j*$_7zcE?N})FAADdK(@Uj)a{LwDoi{ +z29Pm5N!VRL;(TmY!9L_qKz%3l4jW^osIWV&mS9)nzfoVW)k+$6zl2JbEbP99x57Q- +z|A4AM&ribc;5&kPUXDoeusf}m;7BswVLcq4BJ6(kat>P&mrfaW-xHRg9#|(;*jbEw +z@o)Shb=dttQ6^2;eN$S1dSLmqJcvOx58n|dN*{LLe&c5dI|qm(tult4*|GV~Hk0+u +zjx1sKbvs+uuv4D=h4_pcT+1GIce@KY!|s1}yZNVKM|(%^Tw!Me$Is?r&@o6xein9L +zI=}tg?o+-%*nJz`i5Ylcfr4T8^F>1(qxpZHga$>ELe^BraR%|&!eMv1q$py2Tmd!x +z8lyf5_4bS)&vm{+jrM7%`M$zCz6Y}rpFkDhDQ2X=QANY{-~TFH%=#>Gaho2^FoqMx +zVrMRhUoz}Y&w*Hw{9C9&m8LWWAufaZ6kW57)wmn>BEE)`v2JwOeL4LTRnW?1?K#yk +zujc;%5@m5Es^oW2)5|Gm7o@>Vgc(rz6+GMEQ{o7gz&_=}?hlw7Ja1w{^3znX7VL+* +zPYjm9wdnr$f9{jWLPnyB*5rjyaT`>D#(VKMsHQyX`2e+adH9E4hER-^LI +zq87GSUi^8ru=~NK2^J*(J@%mM3RGwQYe`&I!b&u&uKEG> +zfES+mYFQ1tqYAVVwQ^oWRUlm3EQi{>hNB9yEkZ&qa38g1C#+*DS6)jm;UJQB5qK<(aIhHm?XjD!B

i>k>VsG2=SHR-V`mQ{X_$8{TQ*^fnWyRjag-|WB8d*Y}8=jqe +zSXVv7X!1YlX)VFzw*5`yEhitW7)-bK>Q} +z%zwQ=1cz7+QeYJEKvc;mqe^}URr1wCt>m%4w0RzdYJu{o&yaml_q&Qge1aNFuf6;P +z!)$D1z#&wuRAhMA{qcAw1sO)h=n+gmj5R9k?8G*s8KszdEU##oVO-cbiaBD!&j0Yy +z_^>k-f1Vh2uJNGelg-j!g`HF6XP6Rp*5kveVdpzsI4$gcS6p$16(rJXX4w4_Y1k~= +z&Bo8M7mC?)X;Lm2GLM?$-1)pG@PMZaC^@5i!osk#GB#bXB<%hWxppZr=T%-7cK>?< +zkCum>*2MQ#g!#{G@tVGhcR+5ZW +zdxV;vNx!%Jnpl>&87hA<>U+T7P-EZ;QcnIK6Kr8iiGJd;sA*jZ7i#|3A)yzFhu(pA +zsJ;tsw7!gwx>0(}gqgj#GHPkAjv9>JP=jhYx+@~mK+Yx9*tvolD}^@MecPjt=R1Q) +zXq0}5`SE+KLoJcYFq_rpqvdt5Jh+BkHxYjDH0}U}1`Atz>GXOi{LhrbLmyPl;>PERy56Xw-u{`R& +z6HtS53YNiRsFn@wwuP=v0utH`GT|w#jzclU9$Wiop;p4PSRM21HHTt-;^SBq)9ed7 +zm9f+4IG1DMT#mIp&gIxw+QzHix<|+Utvj|amcB>(m>Z>h{Ljz-0{kz?|3ceulnNh+ +F{2%TzNofE8 + +delta 28290 +zcmXZlb-WeT8piQ~od^gbC>@9HJaiqpySuyL(6DKwL8Mbsq!9$91w=wn;wsWDAxMKL +z-rqCt{Bb|udDqm6cdePd&&Ip;->6mpMs4|`XJl6#$9Y%E=VWvoXL}i+a~prdnz*m5 +z&*_QrV|>msjvIoFiBps}`(j?=`A{r@D=@%yu3}ugUC|eD0_?a~ +z$>$`&Kd~q}m3>ZqD29rsVQ%~Zi{T5@4f9m-ISsKX7RJrk9`AbP)v8*&9Ce<*n#HBD +z5b=s?5!?8cf+z|SRQEZFFfV4qGM-&LXL){yY1w}Z6JXpLc3vXXh0|d&Y=Eh;8z#qz +zsNvJc44Ad1&*_F$F*9z*D)>9b!;H1;hPhD}EQJNI8mcEppei^M +z)8S^%GZ-X(f|)S#ijDGYq^fN-Z;h(J7pMci^}K`{L#K|<$qyw_E$oGA**Fa260dv> +zs>}CcUwnlhV3)eqfc}`C`#U4p_=p`#@l)J_iSb8N@?1o9Rh)WufkdeNDZMx+hKLJe +zN-T{^=B8fx2rNQ89*g5Xul$W`gp&H!f-qL(P8o0_#hu&uoObxcvtC=D^Aqt7+=OG> +zSvD7F?{i)e7wy3QIOI-8OU8dY`J7Ue7wT-+?}w`36s(48Foo{_l#M(Xzl+aFgT+xp +z&;;G-gBsHnsM)XsefStZ!DkqY@w(c15!9^u5;fLqQA4o_Q{f+|^Zng?PDIHSWfr~})fZamW4KMTtdZ$gdzQ=E>W?#vciJ{Qa2fgV=T|9aZ2D%#8Ed`5Y5)N!|a +zTT&CAtYvv2Y(U%qm89!X +z)A$mq;{Jg?XD3!h4b6W8ng2SW)F5l|=cpZx=c3(9@e7{9^{ +zm|%?EC=WIxE{$4<7GPamiS_U$s=`&q`kcx5Endc$aaNvoy!Gr6+pR*C`&GI>0(D~fr +zt*Gm?p6zp1;m2QCybE=Fk2#tJ%)gX#eNIaX(xO(f;i#^hgNeBD9vn%0a-JreQcpk^WRbTiMNPZq4^)hh6>i>K|F$5!NxDP +z$M8DTP`pMZQ^F-?anv)TGit4$g%xlMD*IoeTAFpKCHDo?Yjo-1< +za-XvjlYePBuotxs97k2)ju*c}wdm6oJ|`#UKvkd-swZMS=Xm>f;A+Zm;8>iv(i#|l +z74u&w$jd7JtR?}GQNxTSqV7$#fry~x; +zwRjo3;J7W!BK#8-cid_{bQ%>G-e&PKoJAb^#>yiLyp6cqZAW)h*ZzyWbfFzSX8@kZ +zepvNe+rJn45@*`!b9&=kRF4FA`JAsYJ9fkKsAMj)+q%3xW+5JhWi34>mhWqmHYEC9oStRO2;ls4LH)vik{YDDoV$m8=JV7nC=sSE)p&?D3rgHJ>9m3>Tw%Ao))=q~%ZztBo0Ox>vsCC+2?w3ieT;3!Ff; +z=$>cd(-s%=Y=;HdKLypo{ivQe@5NV9$@c=aB7Sja +zTthuPQl7OMwnklWIx2ftp>F&?)aQafz5PkfSp%}kxGY@wH)G!A0yo6=zghzp{KjWK +z&Rc`J&pHff{y%1;7ze&UwK&i3R^ytex7N<6p83-A2&%{Kp;{KYWN`-65XN|ME6ddoTS82SQCq&P8^Rqaf#<<)NzMA|A*?Chp1_n +z_=?Y2h%s0YFQZT8SFI1Ja&T!I?Q +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 +zIN&ChXUDU%e)ntm!sq3B)8?XeagwX{qR|Z9 +zo&gbG7EVSTcpcN?D@>*1ZdjZj71#0N9$q{J +zb>3Rk^xlW6NTHjya#qK9#2qlA6{{B;I$%EL#?9J6k6b~$TD81wV}BNP!)F+SAKtOt +zsDqlOEm5yreNfZ*B9_7js0L)aYZa)Bs$iSD%zxEnAO)J2qc8(b!xFd|wf`aN1}{<5 +zFno^+VhPl7dr(RI+OzB*){~R4JLLyZ*Ux$1W>Ha8Lt5RB*oB8upc_m>-b$V2s4;to +zS|74Lu%4-i)rk9}j@yrVHl%oHR!6NPBTyCJi0a{;Uil4F13r3W>r90R8|sR-sChXE +z)m0NwEn9;}@FuDSYyY&a-;SDAuTbZueQf*lpoX#pMqxeF4P#L&f3J%~h!6%ks{~el%*V +zXQ8gM9rNHZ)L6el4PEMgYzP{odU_;Al;vyK&;`$;E|B|Qo4;jIYkXbIhTXmR3sll= +zLfv>jCdV6|e`6iukKfyQ9Z<7j8tQRB4~yZ__soAi4u7LSEsu&5aHmgRR9Ch}-FO%( +z*;b)WT!)qL7IM0iBW}PdjvB(UxE#Bqaw~x^;5^1;*be>vfctmF&i;rU5C{a^Y4;)4 +z=78L|1V^B{Dpk-bR30@wTYHW~Rd5NaVn3jg%n1dYOpprod!VwI*vAlu1Mc?=UE&Aa +zFCz_(Sbh`5*wPD&hbUo^5L2{=bp +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 +z6ISB2o@9l%O1h@F!KJoO%bR2jZwU9hU +z7C5KiVH@*esHa^e&pxPU!a}Ty$56B2qa$|RuTV?+9?XNkqjD+UQN1rP|EjQ2oPq)P +zGj7IeIO+#`|38VUNd99%_oo^I@i6gqtdFaHwDaGfUeO93xAkEhYGHbhZLr}9yUw>b +zoA@18*UxNcoU}2%bjm(Vj{Yg=e%<~Am8CUKTgzinSv>}o&5Kb<`3?5MbZ6|TI34x2 +zycadQs{L#|I1rN%4@dRL42)-F&R^{1auxO<{^TqR3>6)VnwE*q+w(pe +zb$)rzI;b_iCAw=q>gDt334%Q^T +zirSwma?4hzkr9z&SbK=m)=Kd#E +zk+@Iovs`}E5Hv-NZ7ixmU!#(CJ8IgU#uAwDnfp0`-+!{9v6+Rc@jlepoI`cpbu55I +zpIaAp$G61WQL|vv3tOm;Vshf#FKs=jgt~Em&uOUrYf(LV5YuY@-(q7D1#w?l7fwZ0 +zWF0Ce4tVid)QNv!D~$izZrlx3k+ZlS?_+tK^TuAYFQU%-_^nwOHB?P;5%+fnvat%2 +z{B2{k6SEUv!ScMHhu+znPxbdK91MZ;pC#EByfdrko}hlJl`2liop#Z2LvF=;VJ-HL +zMs@kmsGLdQ3ptfB7e@42J%9~m<>%O(3th({#3ciE!EaF)c!F99a|T21kn};dY$aC5 +zA8-sN35DFQo`YI1Heo|Nk9tPr2#4Giwr@BTaX0o-5W|j8JUgK(s%5=VS-%K1b|<~^ +z+gO%3@dqJyp4UYkKNPjbukpNqs(?Sf9hUkNwa=eA=iE#<7qH9s-9Yh^}4%Kt_Q7dDf4@2%c(K*6KMhd=1Rp2f% +zbxQM1!W|5C$60@sVlS#^-k^pse>C&ICKnjUMsKq2NRg2H;!&ssJ2+q#?!b>qGJUA= +zFnY{koy^MNJH!5s76$T8;)uc +za=ypR%|q^I!9QA(Y{Ye2h1}l*ylWG3st|8%8*+d9{i=P)o*f-RPB*T*sU!1$8yhJ) +zhn%%|stdCL2Xx~`__}+@{cpZD>}g$@u~*2sNritv{X5@vy-8Z!-zVghMyFrMd4gs7 +zhn%y7d1FKFw`Xw&hTMNsb^!mR{Ods>_dR2NWN^s+-GAnxA@{c%|HBWtz=mN=Biu7Q +zyNV*9mn{TA08ia=5gMc&sbuy^W>2GDSF!!rYCWy +zsUas5&YTu<|9x;|$8;7B3bxD$IS25knIUI17n=5Y$o-&@Xl}@9NBLzON6pL354m5h +z9>KlDGZ%#1PtP?MhTON`=cuf&u!xxRUf>+!ic73#FQH!bS}k+$8*whMp@L`2ZA`j; +zNlS^(uL!v>lXX^x+|TRF@mtDst+JfBg?d$MuqNbwYj$I;4Pm-|Sg`S180aiQHIry>=4f@?L+qW6T{H=QeZK=EFi +zCND7=+56#si!&Vzx&Ml_)S;0338&WKko!+G?%-rD_{))y^CjoE_#xzUC4P@_vCEIv +zknYFLHz&;TrsIqWZrH=6-Yt84_Qg~jHxadluf(~y5%qMeaNFj4KP*F>>5e@UI$(CU*zX$YZA#xQGZ#>hGG%og{bq-qJ}WeQ@d^&%&+HvNj4IYOubN_*@iu{u3m*Th=0a* +znC7`nw^67IhhK!89-LPe%Mx#VX)St;8sj*xZ2d@!pAh%L5;z_;O%Gw3xXiySuk8jE +z-rAD67JXd!+26MCyn1IfAM=mBN-afo-A+`6PhbIjj(S5(5%wqUkNS*x50yjj +zQ0HfTPfu`vr#KtEu_$72P(O0 +zqR#7y<#9A>HXKFu#1o8YBWIkj6T;4z1$*O1I2Rcser6GNZ}7Y4Ra6(>L_hwACD9)@ +z?6xchl{*bkJ=7m-<6_iG`UuBjb6+^({;A}eFYMaGA9g>Ay+tL<*g)7#s%6-K_%$}c +z8o{vJwX0EGnIaT+-|KUsmhO6}AvuZak@u*a$q=^dHpN85vEfMA`H#LHPr*P6#wQ88 +z3&=m7B|i?k|CnSr>N}w)s0tKM8g{4EZ0t__Kh)Q2<&uTnFQMXn5_Vt1>*HR^SECxx +z?$fZFd^=J1OC3obcBj>B98JL!tdD(Dgx#-Rj$#|)0x84pd%|qg4J)JyJ4aD4U44ZMkLi#{D;_=KJ32z(iP4@;z<3duroI<-`Qrgv00xv?7nWN +z%o27gP(A~nbAj{O!tT@V#~fkzzX@3_;e`w*YUsaP>4?7p0yMOCy!IlE68%&Ym|m5p+^ +z09EtLsOj|_bwc9uVfQm)QdD_S&xZJnxF43pjupc0A23&VUc^Q^zoPYEXUs@E6wBgL +zbpQK5*VxERfv=Kvd3IFX5LKaJUi>+#D|dNbM?Fl!m90n0V=m%OsPfrZ9ZzFXOj*Si +zp8BXBoKc1OuZ?XK6v7Lr@8>_LYF0sAXaZ{KJcN44{E4by#cFgRc1JBVi%{i9Pz&1w +zFV0du?0#^mfzgyd#a;|u)*8%zEs1k$+LCz?%Mf43f|$ORt%wa!#|=Xb)oRoY{_xCH +z+gjKLRiOo_mGd~N0q;Bu*Rh4DFRCKzB5bG!uA$cKxOHviib9n)M3oQ59ylNCVxV5w +zeQ#)tYVllDh4!M(dxP;YRsFF0UXT?vJ4&I3s4i+YMMkorrEnfETGQ!sN+w0-b4-Q8&m^wH?+8>=NL2M>|{eP2#>rSsT$cDT?b23 +z-UHRL^;jA2p>iQ_t{0zo3%!F^DoQ`q0;d<1o +z*v5f&!>xlXH!h)`=dZCn<{fNH@NCRPycIR={)d`|9}Nk+-vO0J{fTA-=D^cKnE!f# +zcuRp=kYK3Qyc??K5me1DqiVirnAQ9xYMzINTMraLeTM9Wy527s#M`J`dgztM8DY7R +z6o=BV{E?Ai_m9ULsK^Kk299F-;fv8>XE!z+OO|4y@w}p8(g|VbD5jnmcCO&f&%(|O +zJUBV*+~7uarkVw&g`HEBC!HR4HsXyLVg9QLB>Akc`(1Id*;bKA{V&4qmq>l)*wbv- +zJbR&-G@mZzgq{m%IZj!~djdDOvxu6L<--?;oi%Y8f@NX%50Oh(5OZ9Km0|b4CvbCB +z*lA0Ab#<8k%oeZdYk3F66zjt7Khy8}wfhPeao)3`uI;zpvilV3FPWt`Sh8K%Xe-=J +z)btE*vho-#M_db4J_}Re2~-Z;M(WA`V}dPg3DHj+jhfcQak1uq1vd0Tal_m31T}VV +zQDfgLFmFa==sQI7z8=L>xJ&U1QRu#3sCTc}&=Ix(=YUx}I;UZKLu0)-;+biFP?!W&# +z%7z{yzo8x)@4fhg?e_f6hq}RV)CImm-FO4)M!P-td;1T2@iEU+n3m&yL7n#(YN-C* +z&iq%+KHXs#%8go53!sLe9IA_}dUi!kvq?ArUtk05`mLS6-}5l4>wm;~coOyA(0->4 +z%^p-kj_zdIsRhR=7>%b<6{@q#o^G8`50xIM6UL%)Vj`*~3q9AOTDTpx#GXT4=Mn1o +zxVz0{p4m{>D-mHs6)59b!P`+4Q&C\n" + "Language-Team: Nepali \n" ++"Language: ne\n" + "MIME-Version: 1.0\n" + "Content-Type: text/plain; charset=UTF-8\n" + "Content-Transfer-Encoding: 8bit\n" +@@ -2128,8 +2129,8 @@ msgid "" + "filters here and configure them in the \"subpictures filters\" modules " + "section. You can also set many miscellaneous subpictures options." + msgstr "" +-"ति विकल्पले तपाईँलाई सहायक तस्विर उपप्रणालीको व्यवहार परिमार्जन गर्न अनुमति दिन्छ " +-"।तपाईँले उदाहरणका लागि सहायक तस्विर फिल्टर (लोगो, इत्यादि) सक्षम पार्न सक्नुहुन्छ । ति " ++"ति विकल्पले तपाईँलाई सहायक तस्विर उपप्रणालीको व्यवहार परिमार्जन गर्न अनुमति दिन्छ ।" ++"तपाईँले उदाहरणका लागि सहायक तस्विर फिल्टर (लोगो, इत्यादि) सक्षम पार्न सक्नुहुन्छ । ति " + "फिल्टरलाई यहाँ सक्षम पार्नुहोस् र \"सहायक तस्विर फिल्टर\" मोड्युल भागमा तिनिहरूलाई " + "कन्फिगर गर्नुहोस् । तपाईँले विविध सहायक तस्विर विकल्प सेट पनि गर्न सक्नुहुन्छ ।" + +@@ -6628,8 +6629,8 @@ msgstr "ब्यान्ड लाभ" + #, fuzzy + msgid "" + "Don't use presets, but manually specified bands. You need to provide 10 " +-"values between -20dB and 20dB, separated by spaces, e.g. \"0 2 4 2 0 -2 -4 -" +-"2 0\"" ++"values between -20dB and 20dB, separated by spaces, e.g. \"0 2 4 2 0 -2 -4 " ++"-2 0\"" + msgstr "" + "प्रिसेटको प्रयोग नगर्नुहोस् तर म्यानुअलि निर्दिष्ट गरिएको ब्यान्ड । तपाईँले रिक्तस्थानले " + "विभाजन गरेर -20dB र 20dB को विचमा मानहरू प्रदान गर्नु पर्दछ । उदाहरणका लागि \"0 2 " +@@ -7350,8 +7351,8 @@ msgid "" + "16 no padding\n" + "32 ac vlc\n" + "64 Qpel chroma.\n" +-"This must be the sum of the values. For example, to fix \"ac vlc\" and \"ump4" +-"\", enter 40." ++"This must be the sum of the values. For example, to fix \"ac vlc\" and " ++"\"ump4\", enter 40." + msgstr "" + "केहि बगहरू समाधन गर्न प्रयास गर्नुहोस्:\n" + "1 स्वत: पत्ता\n" +diff --git a/po/nl.gmo b/po/nl.gmo +index 29e9723ccf6a7f76a9ef82a38ffbafe68c30e6ee..e5a31fa540bc4346e2b17755c5dfc7e3cc8ad794 100644 +GIT binary patch +delta 13471 +zcmXZid!UX*9>DSE4W|o5N=R}l4h{~&=5i83D(jxeEk{vq*+@uUIWBD%lzSa1HqnJuZAqJoE!%#-XJ-HT%*->-%x``(^Sr0pgNx2Sw&?8DwHv0pr;=n( +zRw`+lBuQ3{R8kH5t(W2Np(`>SYR +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 +zQ0AiFiRZh8TltV +z@lkXo-^KbLX#b31;dx1Pyt1)gDS9QEnVRT#p*5EG{^wEfg>mRW`RK$CqdykY@orp= +zUb9Pwhd^tgTW}4UvDRn?yF>?~w_{v4>n`Ip_t!X~&EU1`aYp?_U;q9*7>&9NnRMYm)Qx}cZPjJ<~T--~WVdOw9a6pqG* +zi$;aWu0%W5Lies-v_*X03EjG$v3(f&0ecWVLj}>-(1|`k13DbrPa*x&N!k0t3-!@R +zZ$`JIE1If)Xa)wO*Kb7he)Jwsi1nFh!1JO7Xv&|%rnnhh$Z2$(b4Od}{*|HN9%rJF +z=EVB7=$71!zHke=XT8xt??h8R3_UB8(EbbJ^XJk2E23-B@i(D?@5Tz=|3mS?ukk^~ +z{b9fg=pP<+(TudgqQit{WFQ*&P;}+v&;Zit#D7HteG*;yQ|Nok(f3wk+QMcEzPKCx +z!0gAmcnqsz`7vSQT(o~@tdITB>-GeC`q#zhpQ00fgWjss=*lz32Fqa`>Q%>b|Gk%8 +zXyA|6q&pfwPqck7x`)Hjv+yXog1K1qw;;CTuiv%!3+-pdrIL|&@`3PQJnkAF4(S3k +zpq0^0XvW?f&;9qben^8W`wmUa<%twDzoUlZMh26z1JgVhbwrfLWUQ#mp^7EN^;%|L$ivG{xrdZ?a8Pw`@OoWG%GWG%YK@1kd9KRW&i +zbmhOG<7Q0Z{=3Jer-UuI6f>#Uh~9`!Fc=+h6gu%lbf9VIO6H-NdkJgf8|ZsqqvQW4 +z*3Y0BJ$q`%MCR0Z8gpqdqIOtx*wBc(V-@U;u4Ftq;av2vt;A)x8J%d*w9xNf%%uJp +zI^jz6JFpWC>XXq^==b1vG?3B{hmIGcE3S-wC+eVqT!*HwC3PwD!sDXd+fOdQWeetR23Ut7Y=$`JzT6h$X;)Rcf +zzm9)J->>~xuo1eY&CvyPM#sGqEBX6BI(B#x+fiSFc07*m@mY_DJ*OheIIG6B5}^Uy%EHxuc +zSOu$7&%r-o_vqu;g!*=DjQ_)Gc+Jf4he{vpOnowT#Qih5|G5;ho(TU1a{%5zeJ(b_ +zL+F4PKbcBy#1421&c|EvINGo6tk7>f+V8bkPiBYz?$;CzXf$4ftFR#+OH*)w%jU4+ +z6sHv3lHPN}^|=#G-AFX0aVyT|%knMGr=Bhdhp)oIa7(J8XQL5%23n&(YB!+^$qUcZ +z$uJ5PXc!+Fk~y*d0=A-k6ZXR7nUK2P=-HT!o|R|N3>9J)u8i(O&&+RF4lh^~`d7uG +z>sciCuMq`5kB-VdasYf_S0yfsprC3IUfzE5}J`K&;``MOl*SP +z@HTWot1#{1Sr;4LMKkbG^cZ^2e?tcqh9frO?6%F_)G$TvUfL_L; +zLy9hR$71fk58kE0RP9Cg>Qgi$KcWF9&xd+hGy_+lKQ4blKRB&py)XJb7>ZT#dGyEW +zo#?;NFK6)=!Z_7mNQV{V(%^u%#0LY=K*pdiOpo<7=!)Nt?VqCo6157}A+k5om46id8jbV}cIV4jZh0!Xmio{YsiYGw#|8Ks +z?!h^K3*NahmHdTzqnE<>VkwTHei;4K_gEGFKW1~Vqrd-OQ!sUnS0fYMgAJ({u1O`m +z@l$ld#xI9|D*h`zOnp6OW2;wE$s;%nt)IetylQPK*@sKf583!v`OYx@7QB)Aw%5ok +z=Px<`_3(+!UYAN{@n8sgCjLOr#AWNlo@Zfu>N)7%KY(7(8R#`DL_aLApj)*QJ&e22 +zE&CY#&>ca~*4J3{-~WH2;9)t9-p^!17_byNP(^g0DzUu=da4_t?{&bU(;e%5(7^9N +z58ZGyu!*rg3k_h&2JXKPR>uz8(CfB8)=#5f!cuR9dwdx>VN>+FwnPK#h-Rb*PQan~ +z0R9{O4h-5D#(50A)&*$)mp79C911&WaNwWO75|QYq0ZVAQg${vVM#PY710$|Ll;mN +z%|I)3#W$fT?~NYfA!zFJqtnnWdo)eKiRPm#S%?l$h@OFUvHfE-6Nk_}KOWmlYz~23 +zfWB8DnvGuP+*t2{ZrNbG0`t-F(n~1V@l|wyy|Mlk`obUB4l8U4FZM@MoR5Ad&e|G& +z3v$qm+=8yWADWTj=)y*$8AziU%ttbiPG(T>#R7C?h3Kbo6MB8#$1HsQ&G655@1hg@ +zivFvZjJHCd)zAr=qwTHGe*Mw$Mxa~!P;8%u^}PRcDYzGJ#|Qh+J^cy|>=!J$7286F +zN}*@rax_D=(dTW@aXMpl?28646+LWo(Dz=9_1CfJ-~aETV1!?x1Dr&+B(*)9*2?JC +zG(f+QZKAiK1K)$bpN|GI8x8DP^t7)>7qkZr;7c^qC$Q+>|DU}h{03ZvcE~{o%0*vn +zhu)4}=tOzw{T+!O-U+ci9}RGJtiOn!{tf8+AEIaB0J_jGcf{ZSA80UDzn}w`*ck#T +zgSKCeuB1-%`uMyjI^m$$J|3O$Ni<{2(S>Y8xAGk{;18pp?BxEtqJuOz!S`sS#okUO +z9q>H7AA6#QYcG1LKSmGPXR-b}8ffu%!Z;V9zp6E{=ns@=-`G9|&Fri+1^+@RL?hlF +z>-*6GPojYp`+MkD5#76M(3NyRQ`!};#@_fi&cGM2^1G>|IlhJYnA#P7_otxar(cPM +zx6o6&7pvfD^bl6u9sc!MBQyhj(a7`A0Pc&9!@AVdvA!z07R~5-G;>?gao)i!@Bi-D +z@DsX6zeZE$bmiUAmGnag9v<88Mf*K~PCOAE=V7$ptfF@A|2ztQ +z7#5+2WeFO{8Z`B9pr6XU=!;*V10Rik8~q_ZKN;(%qG!er%bwfM$iuOle7=-p45*>lAR3n=!obX{9s?x9tE8-VXFIqF3sYbna*aJ_XJ{ApV92(HHXrB}H1$ZLu&!B;= +z#bUStUC>rM1K+NhO9OmKLuncgV;RiW%4SO9S?G&Z@hq&1PTU4dU>7u?zo8Qi!cur6 +z8o*dIQxmWV&P3mT1W(02n;qf>i%nhR8fJ4xgkH9>fg0AG*c>XeaHg@9a_-{0o$Ja?`r4*XMikOFu +z(207YE4~ID?>ammM<5HxWgenn#|3C0PogiZLRY*2UCBSt0Jo!uXMfa-)=euc7uG~m +z+Z4~l_UQZl(eVbONWGTnL5<_qwUkt_g}{P_#M{6au=kGcfed_8ah)j;@i;-+=DG~Cc2{C=pp(Z-SeZ^ +z0E;z9scnu<+zK6M7~1cycs?1;z^rgtxTOL2-xYsEgZJ@Y*bRR{Pj|b9X@c(P-t|HI +z_mB1=;V^X1N23!z5cNmUOfE$;{A#rCM910Nko)hK?h6{+tDn&foY*L>xGZ`-tD^%q +zj`mjQ9(F@l+!yUPIJ_g;$D{AfKr{JxxDNf$y_KWj#6O|~6=|FXDuo7iKAM^O=t^3n +z{R`0Rb_aS`A3)zPOKGo_uloVpc()H%Bwv9v!a}=8U{gG~9p=I1*jS +z{oyQhC6A*Sc?u0=Et>jmcmeK32QGd|%4k{iHl2sQR~KDSGjt1kT*Cc#kNVQ!o)w@I +zjYbC^haR>^qy7SVYTrNyeh*FU7ihrWqwoKUPMEngZC!Eny#{D|v#`yjx%8#$MuQPO +z6wb#=)EA=zzK*W!ee^bb7VW>I?;Y17o$8ZuIrZ{rV7t)w_F!}T9PNKz%d~(hISS=z +zXpFwl6aAIzhi=V?XdjOTGA-(lVjlH{=waK6W^xZY-oB_GMfW~)S=#%OXus3Z_i|+^ +zn7Z0n6PutD7oYEpd5#kkA+EM!hi_U>kHRu0lURx1fPd#5|mdzPAR8WHXtKXa+a8 +zP7B$I<-Py!Q}FN|K~r^7o3sUIq1UAjnz9R`eqneq8t`R!9`-^f7=Z?oL-&3%R>nus +z{x6{mehhsX|SD+br0X>wjwa=x!|B41za13i<(JRtlyZKmydN1_LcrW^Cof$rh2D}5E_p%aZk +zui?Y!maK^9ub>ltijI32JsU+j6=oopDMP`OoP#yFr&Z8YcIliBTLD@hf@WY0dM2i$ +zdpHl>l10Y08m6KHJ{P`=dDMSIUp%dA3Zy#v +zw_7vpgV#p;1~kRH&_lKlUFo;zb^HSj^vrH4Bl*hwnU)kxZC5maL1+pmpx13KdPe>p +zE)UnC{WhbAX%Cv}z0rOUJyU<8XXb?NX`Iq%fahY)y{k#VlwFSQVJ|erL(vz@0GoZ`)}$i(BNJ*LI-GrPTU)PJ_sFf +zG&XW-{J1aIq=&D??e +zaW!`Do&L#H^y+M;74@cg8Qz5~DzgPk@ke8sK51oDuT25hMbAi6G-I961@#VdH&HN> +zd(aQU6KDn&hcBQje;qvwyU~81p?@_WK)2u^x&=R>hxS)=OaB*^_*;5@9{Ri@@&U_b +zYEW?CtI!Y70Cd1R(TVOu@9!iu)ia~M4E+GDLGSb1Q9pvdSF&F^tY@GruY|VOLC;nL +zEd2fNNTC`HH=`?m7`+}(Vd3dU56wpOjJ%8X`y37YKj@173Qy>tCMtnu_H=Z-{Aj;4 +zY>lP7{~aheKwmUv1JQ|xqlax2x`$JueIXja5;TAp(f3|Ow`w<<$xqR}{teCCDFafy +z5*knw%$b_j6r89tI$#0XehV7dC^VoPdjH3x6V68aKZ#~$6&mOk^h5Rmn(|-JEj@;A +z0i0MaE#BfC*}{zX1e1f +zyaxA&P5v*{XQBNLg_mES>hp3GjPwZlGhB3V`mj_++gpY`&{KXr`Xe$WT#A*cZ;krb +z=o!ckNq=w@$5qsuU^Dy%Ct$@J(tEk5DVXZF(A4in2lxz4{ded!`*+k&xiO`>6q?FB +zG|)O|zZPhKebGZU65WCcXun6%Eqn$!Gr7$36kNeJ^bCB5zW674?TX)&0;!0;SPeat +z`RJj#FrK%F=dI&;XY>~IL=WXqbfM$XfF@&U|Nfs(!Naf$&A@te<*%VH>_jv24m$BZ +zbS0lh{b#iQv8ZQmPU96r`XLM;6gEH*SnUI7iLI(qNx +zpaWinPBaY7%mnoP8R&1qvTy~OsnzK9d<`9E57xpjhjRZN=+s-&UROe2Xo{8bN;KkO +z;Y9RHHV<9FS~OE{qqk!ZR>j}Z??Cxs$;N149nl4KMSs3~4&(ltf#Ecm${c#ArlJEp +zgr;_Rv~P&|R&;=O(13nG|0XPQTgqTHbfT8%0@|Sc`=A*cg>Lz{90doMik|Mp@nB{6 +zBD%sY*c7*;E6of~{VSsr)kP<2fGx2dx+Rm*1wDyoY&qJ0JGvFQT@>n2*cS~a-ku^m +z3+9zQ9N&rZe6EnFF-$Fx1ncfX1E-kXd4>Po@hUW^v`9AjYuz4MI&v2Zb>^d +zRXxxQ^h2-HpztR29uJTD1T^5O;Y>8;k6<%gi!S6aI?kVkb?#r$JJKGPK_jgc^$XA~ +zX@S0Q1-fTl(Lk?3Q(l0cm62%w>G6CH+J9lV3>|+B8u(T`+xx#e9{dmwj-dmV7@2NG +zWi%tru<$UU8R>%_&H?DkhoS-8j!t|x8tDD#${$4ETY$c|1alVFQt-vC=m%yO*2Dc+ +z8H5xuG16mZWK{NKs +zSnj{4bq5Wu>~l25|3(8Ta#xzDOjrj!<*m{F*P)ra4PEKj@BwtfN6>4xH0oR9`FrSl +zpXMm|#rqaL6vxnCy%Kk)04iYv>J8BW2cr{>Lict8nvrSfkIHOx0juNrcJ%PRjs84; +zfNsT4=$Xo8$bbVEM_)WQ>iJV=wW+2>Py2dXn_0Bt^ES+cL1IE +zFtWwD%uxzv;7|0+cG^8@MUBusZ;tL&8}v+cz>e4%UHRkaik?KbYz;c`tLTKgusZI+ +zTKGToy&Cs=Hn@NFD7eB_XsWxSDV~51Fbnf=9{O|qQq(^U{|fW&%NF))85V@&!o}e> +zG~-`m;otwiQZNI>#-)kRK~Hxz^pkmM)O&}whLggD;rj61@Y^smK5gyU=ozSkeqY*S +z&Q$fMU`hsux1g!M9nHX~@ZNYn89h`p&{O;C+LR`I0T(|1Uk@IbR|>KEqfAc<8$bHpP=J^6ZIo#M*oXu +zqRhlNjrkK(L>FV>VM8PCfaS3(x{_h&gj3MNwg{ibwdh2B?@#@%$2{uyq7yDczXO}l +zz&=DX@UI*NQ++Tzgr0?;&_IezN*zx^S6mwXPE-~StX({s3=+EsrXupfm0lT7^DL_Bv +zL(!FvN4Ib)n&Cy^O3WGQMhbq}UX2F_&=-F~x8@J@SMS8>X~Jq~V9n9z-O$4{0KFx{ +z(c3T$-HJKr8F&KC#1b^)>!)-7o#OHpUL& +zeb|)x2D}jegH^EhjP!>}H|$D%GaGr0d3Q7AVv{TIyM*p~VfY=pbf0Z*Eh&9ui> +zcoj~=Uic;2ulelMZy4HddDMTw=G5ywlmfaDn^0ej4RL>tf&-lPFe}b-O3^Lp`bfGy +z*Py8zjHYxby61Ps^XX{n=c9YO68&Ip#5~*=^VXjXU#)R|2P2oSW1p^(! +zQFzgu^j}2Q;X|Ct&u|Xyx6e<9uf*f&mYjp0jhg5gXo~)*U5YNGS9+ey6i{&Qhoy$h +zbgFW&c*}iS(%MyXdYI@Md42L%>0OD@c0F(e_1TNo`rJ%YEtle +zH9%9_1WjcJ^zijUUl<$?Ll5Vj=*q^UflNlP->hg~fc9GwuEK59H=u##7LqCN|11io +zY7u%ZR{H>7KnLEArtEF>Uhj?e!)TztqMzF1{+nE#U&Swn|3tr>f1sH> +zcX2MQAb)Wh@Cx)nZ#0mb(HF)=eJQ%)m!kaxwEypDpe2^1)Rqscqy6*It-JzVa5prg +zSLZ1BFPt0D4BU?nI1^3bQalb+ +zpNjMGP-@R*CNE2oy@0O#_3#rk(j(ZDFXPG2WHT32AFw=|>4FRJG5itV!O71iuUV1J +z45MCiW%^#s$5GVxpr87VtJ43E*<|eO@Bb$hOkJJlkcqCthScY+&Sv`JyXb^<)}((G +z-;I-~uf&?zWNkJx84J+*AsmNiKcCI)!TIQiY}h)!GmQT{wx_=S1v1O|%N+M&`oxxB +zpUuqXL4Wj2{EVK7(>A0%FNarBuY~UXt>|8lN3YpD^uzKrx>cLdd%hLjvNzBV-Cp!; +zeS(Gm{r_7Ep31}M{rm+TFuO4gR1zKN47B|`^i-o58XgCun|$8 +zga$BoBlq72OQOSi^t$be`eF1-nBA1_@oDIU_0ap@7!B-lG$S4HZXAGP@L%Y6pzlj* +zoO{u0JrnK!)Jx>QE`?1rIPiC9>V87MP`{xm`!70S=H-;3lIRN0K^IUN%|H`$#h0Qf +z?}{Gc{^&TP!m(&3@5xbcqG{+#W}ySjL(jm9XnzCE#BOxYzl`>yXduV`BfVE5ERSC2 +z{HS+Cx2zvlz)|RUxw#bV_zXJn_Naf1zVI`)!xEd*i#^d4k3zo_zhPCZv?T>{1-kMc +zXhsI23%e1`!0qT68--*bml;pN70g6eHV^$Yu0gNQtLOxCwx)mEZAK^f0sW)&7#ip~ +zucQeYpzTf2em&9g2BBMfN3@T{`riL36x@rK;=xXIPd`Qj`yLB#1)8DktLZG9j!s+w +zeclWmrwvxa?q~pG(8D$vJws1K{aGyh-~YEzFv5?~0S=;D@+*2;OTU&Tu8w{on}wax +zfv-c~AB6_;02_{6FOnvXdi}7ct5&T3($qEMz`{1G~gZKo7;0~Meotz1Ye+${*ImSFC2-TcBI3# +z9X-`=poi@JsQ-j6;16`16JJjmJs%7IKnc4?`^{)(C*>&k7s@;|;tf&Xg${TS9q{*P +zFS#@AU2SwFt)@Tc()hWjqwpenYPVx~Jd7T~ +zl5eK}`K%^-f4ifR_d)}>AsmYJsNWv-#o;nEqbt$OtwYCo8LN8#w?@Oa=pOwL{)!Hm +zc`KcX`eAc);x_2YJD{2Bfet({+OJ3Z-HJ{;0zF%Iq5UQmwsZfdQt-p@5PDeVqJb<$ +zQ~wW9K3=y<H_rJz84+mSUmp=Yf&%qPFiSv^m$_}{O|wGC^+Ed=w7u) +zGtwpOiN4Sm?bkmXgr@cetc|y!{T5&id@|~9q2s-WzW)*OcaQ(Kw$\n" + "Language-Team: Nederlands \n" ++"Language: \n" + "MIME-Version: 1.0\n" + "Content-Type: text/plain; charset=UTF-8\n" + "Content-Transfer-Encoding: 8bit\n" +@@ -1430,8 +1431,8 @@ msgid "" + "You can force the audio output frequency here. Common values are -1 " + "(default), 48000, 44100, 32000, 22050, 16000, 11025, 8000." + msgstr "" +-"Forceer de frequentie van de audio output hier. Gebruikelijke waarden zijn: -" +-"1 (automatisch), 48000, 44100, 32000, 22050, 16000, 11025, 8000." ++"Forceer de frequentie van de audio output hier. Gebruikelijke waarden zijn: " ++"-1 (automatisch), 48000, 44100, 32000, 22050, 16000, 11025, 8000." + + #: src/libvlc.h:171 + msgid "High quality audio resampling" +@@ -6930,8 +6931,8 @@ msgstr "" + #: modules/audio_filter/equalizer.c:58 + msgid "" + "Don't use presets, but manually specified bands. You need to provide 10 " +-"values between -20dB and 20dB, separated by spaces, e.g. \"0 2 4 2 0 -2 -4 -" +-"2 0\"" ++"values between -20dB and 20dB, separated by spaces, e.g. \"0 2 4 2 0 -2 -4 " ++"-2 0\"" + msgstr "" + + #: modules/audio_filter/equalizer.c:62 +@@ -7701,8 +7702,8 @@ msgid "" + "16 no padding\n" + "32 ac vlc\n" + "64 Qpel chroma.\n" +-"This must be the sum of the values. For example, to fix \"ac vlc\" and \"ump4" +-"\", enter 40." ++"This must be the sum of the values. For example, to fix \"ac vlc\" and " ++"\"ump4\", enter 40." + msgstr "" + "1 autodetectie\n" + "2 msmpeg4 oude stijl\n" +diff --git a/po/nn.gmo b/po/nn.gmo +index 7f7a901ce94a22d531770c0be715667d5a435b9a..00fcb87667cae3e57ed3cd9f7e90f8b96f013217 100644 +GIT binary patch +delta 1189 +zcmXZbPe@cz6vy#XPMMC`SlKw5&NPHr!DFNdG8cglT})I6nX72PKV>js5rIUH80gO? +zlUWH;k_k};k%34=EnT!Q5O+dEs}{DfHr2xKuX{K1x&Pk1=bU@zWw;Q&nTkbyTg=+` +zna!HngQVFu3>wTT@fg-(CqBVE?!q6q1OFhOSVhW>H{o9TM{qly!V2ucYRr54u!?>m +zWsx1Han%nz!vy^~+>IY_4=(%p?---MjtX!C706$VW3185C$NToJ!(9Q3M{}n?82>h +zzA!=M%s0|*Y4w^y*G>gh`5f#WMKfi=p{{>ZdD1+{TQ##JPZx~fB{^#SUtPNFK%gY9@0weBt|kb9^^$5H2% +zF>0eRLqijvQIBpJwc#qN65p@`H&CxSIN;{HQGe53-ycK;G>SUl4(jzk!rM553NVv( +gwq?mnndRnFRh6|hrwhg5n}y-Qj!dyQpH9Z(n`9zt8~^|S + +delta 1176 +zcmXZbOGwmF6vy#XGv+vBqt5tfeAVBHYEha94$fkrRPeD11q&Ywu@-@gAO=$5j~25E +z1Vsx9T}coX;w)OYXkj4kgpgJ(Y@uzcovwnuKmT_#pZogXd(OFcKKH!u*?b%J`_GxR +z*P3mZ*=(Iz33`{zO7S|zu?^QShZXn(BlsKn#7^9JJY`l*zZoxJ2Zk_Gw6TdVKSRqg>Q!^duX2CvdzKqc@F_5Bu7 +zA>X!XD5GzvlK({Bll?^<93foYRRZ;xYET)Z_|cVRoV}<3hfoKNq5^s3=JRg;1uF2D +zXMOH}nT9rggST-VmB~J~;vrtc%H|-G41T0Ph6*%#Ik>VkYU2zlksK=1LFcfWA9wvJ +z>9b&(h9b?QJ}h7dE@Lz<+ld4@`K0d-yh +z{Tnn^X=vgL>e20>Hrzv1;sCRFgnHGU7tD8|{-(XIe;*al6zYH{sMkM_bGV8MFxe8= +T&_Z6yEL}{MmBx#=>Y}m#Z7N}K + +diff --git a/po/nn.po b/po/nn.po +index 898f829..fcacce6 100644 +--- a/po/nn.po ++++ b/po/nn.po +@@ -12,6 +12,7 @@ msgstr "" + "PO-Revision-Date: 2006-08-29 14:42+0000\n" + "Last-Translator: Tor Egil Hoftun Kvæstad \n" + "Language-Team: Norwegian Nynorsk \n" ++"Language: nn\n" + "MIME-Version: 1.0\n" + "Content-Type: text/plain; charset=UTF-8\n" + "Content-Transfer-Encoding: 8bit\n" +@@ -6177,8 +6178,8 @@ msgstr "" + #: modules/audio_filter/equalizer.c:58 + msgid "" + "Don't use presets, but manually specified bands. You need to provide 10 " +-"values between -20dB and 20dB, separated by spaces, e.g. \"0 2 4 2 0 -2 -4 -" +-"2 0\"" ++"values between -20dB and 20dB, separated by spaces, e.g. \"0 2 4 2 0 -2 -4 " ++"-2 0\"" + msgstr "" + + #: modules/audio_filter/equalizer.c:62 +@@ -6867,8 +6868,8 @@ msgid "" + "16 no padding\n" + "32 ac vlc\n" + "64 Qpel chroma.\n" +-"This must be the sum of the values. For example, to fix \"ac vlc\" and \"ump4" +-"\", enter 40." ++"This must be the sum of the values. For example, to fix \"ac vlc\" and " ++"\"ump4\", enter 40." + msgstr "" + + #: modules/codec/ffmpeg/ffmpeg.h:115 modules/codec/ffmpeg/ffmpeg.h:248 +diff --git a/po/oc.gmo b/po/oc.gmo +index de6b16200117f2d19ee7654bb0fa375990f7be9d..e132736f0c650a61c92869183ff09bc35355a1dd 100644 +GIT binary patch +delta 5150 +zcmXZed2mx3jJB_4*o@$LypnslbIjteem3G)(0M!1@Asqg4n}+uUGRTs!NpUv +z!rG%7?SlENpWH^n2~*HS6^#Q)a$oc>ig+1%=c^-rBF1YXelGkCI`6mW3GImfUFa3; +zK~MNSY{B};VH)n_E3}ZN(~_hW7NChbqIcF4y^1T*leq?+e|Up#^QZlk>N+Ee75|6YN13_yB#)pQA_lC7Ph=jO@ya(MQ({+u?W7@mtZnlh6&# +zMDxx;H&Pwr52i6;Rk#lGn6N(F5dANpSF#CBREJHmKH@*4N4p2T($CR_8qflAXJ&CB +z`p7Rr^Q7IQqYVAvYV;_FqB|ZR{gq)gy3+^ID|;F(>~-|5yoJqhKjz^9w17|0lR1XX +zumM>oP0rKss7flb2_4bD;eF8l8_|DEMnyaeEp#5bz!Eg!a`cW@qYFNc{;F!wE7}tM +z^_WlmS8VC;|2-Oh_$iv`1e)L!y3n`i4x8VV71kD=-yiewd+2w=BEA_tiLvO8r-fDM +zl`X|wT&}F2tfXOrhtY-Bp^2ZxCintc$gk0p*@`Z(7n|cJ==@{oKgTE0t7&<6l61qq +z=n0HQPi!jsT?M8tTt&mXUVz^H8uayVKof64KiG!Oe-lmgHkx=(^dCZZd=xGC3_7pL +ztn9>^qw5q$+WSd7=8N4W`G;8wKYKcKJs-SFe^ +zXm}dUlT(>(te}$fx5AR>Xpio+TUdtei3h~^$mk!Bp2Q^d`xy~eVgd0y^yHSJg|5KH +zD@OCLi}Cd-4HNtdeH1T6{7OuyMJwKp9_?GvzYkjwA3zfyLEp{^G~c-xPwvTnt_A4A +zm!jj}LGz~lXjthW^ay`|Ry+=!SRUh((F7IfBdkIbtcmfbum|z8(f?Ms8@<{OBR-C9 +z^fZz`P0rGA2j|fpHJhEi?xL_OI(|iXHJV^B`bLJL8yJHvu{`=K&6WFT@|Ah0Z{KHPvX|)z}g@qVsC8 +z6~2L~JKjsfiHFfYndh+;wy8>zi?I~_a4`A?Zb6THJUV}3#Pec&A^LWfhpW(a9*KAZ +zx`7v}xPL3Fr^AGM!+)TEC=Q_uHlRnAGdFu97o(4~d)OQOzAw7)z;IAFG{$d=cr>Bj_Bj+fgXK7bb;aM&c~t!m80{fqi +zE;xvWJ06AZY!dodW@6*xLkn1f?qnsJ@JV!j4LWZldR4DRe=T~2+hcqewk3WSeRKb+ +z=KM{3mJSQZU655)f-Y2wjt@W=8jSAvhKO%QkA7^#lhHyd(0Ns1b+{NUd>LBkss)_C +z3$3N&Dy)fty%B$aU(jFpKz6rh(Ly@^BwMH_y3iHjz~~=@Ug5ClACB&PRK$0p8=jTY +za0d&~%2%LA^9Wk$hVaE0e+`}gI+kEPTEO4Y!u}Z^K@0d2-RVj6B+o>D&cbXw&7g76q1cCbCSHb*q8q3~-_~yIfQQh6zK#BzMU8pV +zqzw&s)B$}gJ<*@r0BncD(Z@I${bzPI`j5xY@Dh9p{eCC9@VzoaJea +zZm=^p^Y`B;2ChVR_IXr#BI^Um!SE&p(oNiyf*r8LFbLd +d+IM<2^lx#?)O#!DPpz17ZP(g2Z(nuk{{hOZiC+K! + +delta 5139 +zcmXZed6bXW8Nl&(EHh&mGmL%0q?Szl5a7a^g(Y +zX+$)YSn51U(|6LCNWaqG@W&Gi#5Yog_)gm?UX|H(@S*7xVD$h|4gCcoH_m>DUhEgq7HdcoP=m0qlzB +zqQ7Nnl5{5SgWd3f(j=2~ps|<^U5Cwa7iQy!*a(kDd>Sp_Gt9>;Xu;WIlcX^g<2Bed +z927o?Ze#&A!KGM)E5>Hhgd6E_p{f|zjtz+SqaPfK@sr_MG~p$5Ue*KY_t{vVxG>@t +zVTZ6Any)7|#r~OS3`ch~7TsY5w#1oerAyH(c^NHqUBp|^tE&zVpm|PXAzsECFn3&9 +z=q>2?{n31xp)@?g5qL9BL@Rp*O|Tg)=nvr@^lJ8_2@Xg9iHJW%-^RZqzKrHc%F>NA +z!)AnCkaaT2O*Fi_!RXP9Knog&?qnAF!NQ1_N4y4|w-x<JaCJO{n=OvKN`cxA*dhQC1P{SrN)t&eJi`r +z6MhHtSU)*J!<~GB7V-raU@|^UREXYLF?tnU(3AN(I=?U0!vW|~-+}J@9`p@OM)N&^ +z{<@Y$|ErjBpgJb(MJqglUd1uA(tk!=i$1oThtk4I!tQ8cz0igG;f;6~*2f>CO$Y=G4f{~kTsUFem5j4pHzE#OMTSr4a= +zya}2o(Pcm|CkJncpO^jM09}}Xu`SZ9cR!5m!elxiT+(!AN|#s +zL;NSq_xJw}4L|%4O>`1Xa2j3cb99GS(Zcc`N#}RP9O4_$@A^c18+sB$&>i0!mZMiT +z6YJw#W&LD64HGd;yd3M{DzuQFqXle47ub!t_yIcqIQq|V4SF^8Ch?2Fj_3&t +zLQm`-^t)2bxNtcQ?|KS)_Y2Y2zXDCX9{pf5I{!^H(OYQZUD1CS-SIKB;Irtw%h(97 +zqU+>LPUH5IIe%YmS2|48AN}3lg}&kmXhE~k1WRJP5tDf`5bl34c307#<7H +zpm{E#8%ruUe=E$bNIROMJ8cz~U|ZsDF+L#rhoL7i68(O3#AVo+cp|#MOtjE>Sa-!} +z{>3rAEJMQtKSLkI>WJ6GgbirLThOE37X5oLk9a?t_$c~zPNMn#72_AtpKCHDUAQ$m +zel40ea~%yU?SUTQ&1l6#(TT%jd=%C_8uSsCqX`zq_;c8WczN`13wNSd`(DH+(2br! +z@@JCsG~B@jbVvV1Uw8JSsV&j*&f)cFf}ZFb>5Xn+Fy`a%=r2V#G$r~UNAo_57QV8s +zpZk9;I;zl0w} +z42@+;p?&v>+UR~xm +z4L`UL1KBgvg$mKf)eb%S>(B-Ip*tUf7Bn24cOUvjCZHRb8U2f*{{^)0)#!%SB6%{& +zuW7i0t>Jd`_q`K6%01{Gq(f+ekI(}CjwY%>3;8U@YtaI-W~EoqEbNYcHxSJ;6t89d +z`dGmyWp+pM#iHj^DtV#V`$!a +z*wWws(=_NjF4@7r15`8RV&<`e|12J{NI#P|+uN&GhY=KeOD +z^EdH%IxOG{T3PO#bfLEBcsF#Rp6HHmiTF13@ePT16k13rIN*b4ihk8u?G&+K^gACD)oJ+4MiWIMX>o`^rf*2Mq7x(%Xv8qQBQScKXB +z{yWfcpbNUQZ=r?sL63AWdJ@CKdt\n" + "Language-Team: Occitan\n" ++"Language: \n" + "MIME-Version: 1.0\n" + "Content-Type: text/plain; charset=UTF-8\n" + "Content-Transfer-Encoding: 8bit\n" +@@ -6258,8 +6259,8 @@ msgstr "" + #: modules/audio_filter/equalizer.c:58 + msgid "" + "Don't use presets, but manually specified bands. You need to provide 10 " +-"values between -20dB and 20dB, separated by spaces, e.g. \"0 2 4 2 0 -2 -4 -" +-"2 0\"" ++"values between -20dB and 20dB, separated by spaces, e.g. \"0 2 4 2 0 -2 -4 " ++"-2 0\"" + msgstr "" + + #: modules/audio_filter/equalizer.c:62 +@@ -6959,8 +6960,8 @@ msgid "" + "16 no padding\n" + "32 ac vlc\n" + "64 Qpel chroma.\n" +-"This must be the sum of the values. For example, to fix \"ac vlc\" and \"ump4" +-"\", enter 40." ++"This must be the sum of the values. For example, to fix \"ac vlc\" and " ++"\"ump4\", enter 40." + msgstr "" + + #: modules/codec/ffmpeg/ffmpeg.h:115 modules/codec/ffmpeg/ffmpeg.h:248 +diff --git a/po/pa.gmo b/po/pa.gmo +index 7801b088378c45b566479efafcc99adbc9c508fe..6fc293c1d4b14a280143407eb43f66137aa54edb 100644 +GIT binary patch +delta 334 +zcmXZYziI+O5XbSke_n(mr=F1%fdreR2v`cX78ZAppv6IgU?5zI6sb;MAS93%xFUsJ +z;3^v{n{;;R6R{K@Acfz-tv>u_XLo1!FWN_6iIw*)5#JNJ6p^?h(#8jD;H$}n$tw(~ +z|KJ5~OtyRxn|z8jtm6%~@f>5+eRmk*lX2!tF1HlkDRgj&XSg#B?#XeWChEp6>iPit +zIKpczPzU-p>s!N%NlTIE)4c%z_`f1u`1(=f*td4c*v>+;2(I6;y= +Qj-S)\n" + "Language-Team: Punjabi \n" ++"Language: pa\n" + "MIME-Version: 1.0\n" + "Content-Type: text/plain; charset=UTF-8\n" + "Content-Transfer-Encoding: 8bit\n" +@@ -6148,8 +6149,8 @@ msgstr "" + #: modules/audio_filter/equalizer.c:58 + msgid "" + "Don't use presets, but manually specified bands. You need to provide 10 " +-"values between -20dB and 20dB, separated by spaces, e.g. \"0 2 4 2 0 -2 -4 -" +-"2 0\"" ++"values between -20dB and 20dB, separated by spaces, e.g. \"0 2 4 2 0 -2 -4 " ++"-2 0\"" + msgstr "" + + #: modules/audio_filter/equalizer.c:62 +@@ -6838,8 +6839,8 @@ msgid "" + "16 no padding\n" + "32 ac vlc\n" + "64 Qpel chroma.\n" +-"This must be the sum of the values. For example, to fix \"ac vlc\" and \"ump4" +-"\", enter 40." ++"This must be the sum of the values. For example, to fix \"ac vlc\" and " ++"\"ump4\", enter 40." + msgstr "" + + #: modules/codec/ffmpeg/ffmpeg.h:115 modules/codec/ffmpeg/ffmpeg.h:248 +diff --git a/po/pl.gmo b/po/pl.gmo +index 70228d2c8083521877e2b511f46fa83fb878595e..69e64d7af3c1e1fc239139520358d3bb7ceaab2b 100644 +GIT binary patch +delta 23106 +zcmXZkci>Oe|G@FL&pSzlj7Y-A-ZOh-kC0?ncA~N)WxkOV6|y2Kl@t=P$u}t#MJfrU +zXi0ubMN8`Ue7?{5>v7My_nz@OuXFC3#_N-Ey*nw_+IhF8?#_}(G-;5L$d^bYRyE8> +z^ue824U657k*I{7a1&0(f>@_fM&cUm7#)O{Q=W>K;VirY7sm2397TCGj>O`PGZI;G +zLF0^6A{!S=sIY-$n2Bq!1|EpztW7c!`6-vi>#!jf#oMqtj>S^A8jIm4vHm<>Pq}Q< +zj6@miftffJuf-RerozQeD)LhCIcCS7(TMzo4lrl4Fu?q1xfouG<00_`?b-5 +zb&lSSw$~5y;JxSo9>S|IH6vCmMnk$3OW;nt62Cx)jG_{rPCJWoR%r8ruArUK+HW +za_Ed}$NDztQglSu{w}^hG_YAbcBOqc?v#7c}^@>Y7++35S?** +zG^Bmd4#uHtJ{4W_W#~j!MAxHBx}y#I-y0uO;fTIKXLt&o@z3afPP7dJD~_&hb#yHo +z$8uLJO}RfhkVml*E=LFQJ-W*-ZI_X#i>1(hdbeZ$JM%lKaBUw%L%SM1ST>+9p2Sjk +z=}qCBsE7`@F}k)lp&j2D%ahRLTZj&HRjhv#%TPXoCTo^d`>;mY(MVj4j;ts;@>1x7 +zEwCZpghu31?2W6j66Ux$BheA-qZ65lhIk9M$U;)$V9I%K$w;)sNq7gQ-sPe#7Zo~Y +zB3U@M%3gU|?EK$9}rH6+=!Xh$W`qq_>abj{EX+C=+AN2AI47@D;6 +zF}wT!rFdf<`gPlet??i>!NT2wz0uwA96F$NXbx;em+qbD0dzn|(WU$ejl{WFpS63) +zse;&!{u6b$Fo_;QAAB0^;8k?Qo6w{8jadF1o#D6Wdw-*$&2wv*SsCm=xh~Ge8EAwH +z-4>RxGCIIPn6kqZ7d|i>ZSVzjX4}z@-a|wGB^sggXal)!4-qMWwsSoe#pcoeXfjSk +zC-5p7!M(Bm=di2NWHNC>X +zTB1qa4LxBOquYKb_TE>^(h=<^?=-;C3k +zUJ^_%NuLnGGU(^LA>N7oup7RY;=&g)`-TwLLCZHs2clV>LX&A48p6lWZMXzI5x>IH +zcm^F{zJ3{r@>m9)aYyvIVOSO?pi7!s&cz@ucAz0DcSks(hTz?l=c6P45B

    >rY{ +z3cBWXV);f)cZ3dj7<%@PMmrjZ4tx&!-t$OAQ;GFlIO7j76HlTYU3O>KR(a8VUKp(} +zhaSl_Vtprc`}M|K@NRTTwxdgO5RKe7=x#cNw(~1ybN^rD!jWYi5MH<%UF(u)k~BtV +z&?KKDp0&qv>X77gwH&=c-MbYLgY0smk0H?+OKF}?pUzblNa5c8mW8GiA}#J6|!^@6^`_o +z=xX%E*U^SQL__`!I+L^L!2XHlf`dYGl|my^8GWt}I>F{>4s=B)G7L?|sVOczfF6$( +zYtRO^pi8g|J%ab3k@*Tuu9Ij7XV4}23)^D8!5N7gu@APvmDm!`F3& +z!-X$492#y+N6QCeIdfR39~9k$Hkf62_`%T{n^Rtlc6b~;Nh^#9OVJ*k$en0J2gh;> +zIagANXec5I*=aN0-r-8b~5@i`f>UL +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 +z+FQv#6K~GW`DexO +zcw=^SZS+9&Z1k$j!}C?69nhs19(_F4uSB=&UaW>+qXW)&MR>kEnuM)V@#1Fm>(mV$ +z>78f;_oLfp7CO^sWBq#c;CVlm52L%{EZR|)E0gJirT|(ljYg;enhUMbc2fhmFxy9C +zrWMhp(KpfD_!>>dQ|NB^8GY}!=s#$-XU!3wyBup$z6$NQB|77d=zwm+m)!ruxp3sy +zK-42A+5e7c7ZoPY59kcfpfmhEdTGAUKz{Va;%MmWp}Els-8J`M6&#Ot +z{0dgZZRkW!qY?cTeLm~e?0;_*xH^ou2)eC`V{fd24r~^>_VdsNUPQBa3p%s?=tt%# +znoH-<$kfOmmZUYBq#e2C9c?Fdhzmn{3LSBlYr+VxMw6}#dcQe3fF9^`L(sLJ +zj4ss*Gzqt&9q&i8{2&^sFVN?HMVBt4V0r?nL?JGGp*Xq=%Az5!j)t~2rn5KR?}v_j +zFxp`%Iu9M#3N*AkunrzU+s|`ti1amRyT$NP_kSfW%+{@FsCJ+u{UDaVh@OuAjf1$K +zy-*myedzl$&>7D}XSe|EcujO8nrqw9_IF|WAMkz5g-LhJ3j7hx>hrPw%IlKpzu+&3 +zJ~s>PUy +z!CG1PYM~vaGDH0|^tlCS{aSROo8$c*m`QnGy#Ev0@p&|Id5WdNNUtpxW>y8gQ3u_} +zjnS;1gof}5bf7PwGkq=Azk#JFe}qNx5458K#Y4FUTJDTaXapMZ$tf-xa`6@p#w;bm +zb{QI-ish+)3M=7m^qlxDTC!v^{fEph=>6&F{mobdf56&UxKuLzv%Cvdq&yL8VQLi@ +z6}b2sGcjlBU=?gexdS%Gc~}jPpdDRNCUjgE?O+Jn;fv_DJBoh)^OjAf|0H!ITK@q0 +z{5tGT|A|xKBGI&5cyKZLz}{#^`DFS}vGvd&m!o5O9X6nR2Axs)3Ss8m(DxrfBexSh +z`A%ata_H)cp`F5&lKf|I?Emgu+{6Pb&~5hzy2d#xhqW(^=0xRaEi@Nyh;~4?V?VT= +zacC0mLEHNf-6h|nyXGvK^cOHU{U@?j2^9sgH04rQ2HVB*sOaM8uIQ=gRaL`#wWGbF +z51~o<3XZ~$u`IT#79u?yQ;$&bEEle6+3F!QU9m3ZC$K)gAIsUU5BHm(+ipB|#s%oi +zPGd>@J>D-=BP4fCGm!pt+VC-wEv881Yi-+@MMKf1jxs~ZN=2t8@<#xB_!q9<8- +zGzqJr$=4VSVQVyWW6>mBfi|=q^Wix(LfPwwc5KA+mnh1qx%J=?!W +zzh*z9q5BQ(sCt7CiRS14`=XJ%3(f9{XgiOf1D=NtWC_~t^U+o45^O-0ER}eZ3mZC$ +zCe>NAq01YFhVr8w6hUWF7CYkg*bb+mf9doIx>UcTzXS5#5WaS0(3v(uI!tuN^beSH +znf*7J3zO?9bSXBWKS1`O9e#`s;21j4ljv@_h$c~mMq#OLz~hu}!W>w+afmt{(=gEH +z=)`VAlY2Bev1w?#k7B9{7f*8G0NzDIbP`RzM6+Q!dgu0-~I{+QPi)j1D(FpyHefSpSY{~xLNX4*L;m>NNS_fO+ +zjuyKyiB6gtz2XhZeTncji^`kfnn +z4NFk|2p!mYG_+aUhJoZm+pB;kXLU6DTcFR~hDPGk|UW2~)2D;`4 +z(e3#?`h22YILq^*+ph+?l-qP&6Xv6LesM&}}pdJuk+f9nOyTpGLEMIl2_<&;f6W?nNW=1-5km|H*|}+vw)- +zLI-rj-OvttqH8w_9oU2D&-4XoLmSZN4xk;L#HRQYHpglm_(qWJqw#mjYiH;pNT()!gE7-U37RtlAB-8)vgE!Hy+~r+^&C#Tti0-DB(Cyo^ +zTbS6RXwoe~m+Cb%m)_~d{x8DFj#DuV|LY!3v|+b}-*AhuH4lD*Bk{W1lj(oZFdH{e +zK92sTo8KcO*V8?d>Hj9`@XYdIFH@%$V35dMNr;Qk@u +z&xp^V*H-0<*V!4b*yzl72mAL0Io +zSPQ$~8-D-K!ZMWK!sB=vtKtVE!}}NUWy*C%h58dXfpVVvl8GVi|Jhtrrs7|`7b}fU +zCLX}0X!aJoKbgp4M9}+v9!Msp;wN|lyN?NHeZ8^auieLBed-5|OQ!#wl9#X(+wqp~8{h@lfy{G-M;t +zk=`GD1nqbcdZMjGPr7%|_s?NAynudFlGDO2$c28a+MtnXAIrC<;zdu)!HvG?i^I@0 +z9*1@~6-~Ou(Vb{V-=XiFK?iyP?dZyfgIA&V^PwFV$8uN+Z9mm5-spp_)gZLP6c)n; +zSQfXSFP=b`?21Q1!&T6bHbfijj)uH%tRId}=utGco{TO-c3CR1j*D8{*o4mDO!Qy$ +zBav%*NWOCD+O|Wpy$6~jQ{w$6(S5!Roj}eR;ki=i0NbMV1JFoLzydD*^ISBcVjKDc +z;vaOz1s@H62h0=>zkD>4Xg}X8T)?Fsfcw!2 +z6`dCb*ba?Y2Xvd>jrKcv9{b;!y+DOYvMxTj16`v-XbxOJlk@8N;h*J{Lqok7U79Uu +zQXa;t_z${$D=i2|_w`tv@-1j&rlKd~6ARe?&S)7G4qyWs+MQ@b_M#*HJo+0tlPjJK +z$y5@ZNqux6J<7s<7j)ohH@%#`Qoqy*P%&Q5uJHwwBZNP7w2Po +zfM`T^p$&hE=}@9a@bBoi%fH_+>Xw82%0=o(UWWj +zntY4U?YJ6kXd~L;E_6-zpdEe{%Ri#;C7uou%ZEN!8J$3Lye7p(H!kdWI6A|J(d2s` +zo#A>kDc`{6xF?$PnNaQ&T^K!v9Ic7s&j!n&9alsL+%(qTh$)k%Jr^D#!T;?ysc(`aO|a%f*XSWM3VAr?0`qKJaSzxqL3#WKA;tFPqK8W!$f` +zHh2tsQJ%6c{1ej?cnLYw-+s5w~HoiG)~(^se1p+lvjW}MZ=*|b42{qQG?E$H +zf(6jrs)%L${#WC|U$?iS$v7Sj@k%tgUPWJc58eO!unK;Po&#C8hx>WZ4hx|5MbLIC +zplewk{*=VJL^bXO#Igy*hAJH85?Krt+Z +z*JEwG6+7V*=n{UngZVe*;_Cl}gQYt<()*%g(IrS>37mqZaXC7`edqu`L*M%xJ^7Bu +za{f2MzAuF4L^1UF%IFeQPsIo7q75{PH=3g}XdBBtqy5na21SRV?~RN;5bGzPOF0?s +zcsiEB1@Zp>&}6T>D^{FEPpETfgMXt(?0@lop`BqsMbWjd_F(q)o3pRal6}VI?fMQK +XcwgUvch<{%ICsO0&AA&UD?IrBGd2HK + +delta 23110 +zcmXZkdEiY&|G@FzxE6hbIcNl_|o +zlE;%m%2N4xwEf=iJM-6TX3jZtWx25?5oJXkW}peH>=T$(Rdg#`-)QO?@$r!otlm +z5|`nOW*MnOHVU(8u!DJ+iA%5!?uqqFScv*H%`+0kur`*&o3SWGjSXi#TRZ!g~CP}^3(7M=D;7&i2RBUFxesuFc(@cgqLFpbSC9uy$W7I +zy*B2-W>^q!MkhD`v*K_};{7QKB`AzTXZAc^i5syj?m=I83X9|USkK!sg!pRodRg@O +zs_4LOjNXFw*8}t6-RJ-w#JreF#fDjENatV~+=#jHYqWzO@fy5<&M;rAuq2siy*_$> +zD>Mf>$9gZc-$Ce$r=by^iR4Hs@f-z1^$Ob2hUnYqO!lKo@kMMu6}^adczNr%G?-o* +zw4V~_jH|}>rsz_%LD#-F=H&f}2Pn7}lcH160nNaQ_yShP-B=0F<3KFdCUi6jjo1Rb +z3U{H||2bC0qgWWPXd5C_4o&9TScLZ{Zj2Z1Lf3FOI-r?osAi*UH6Km3)o5fkU}@Zf +zCf8x~xu0VFXLKMJ(0(#*3`>(6U8;hZa&1dfFu7`@^;^&p_Ko$i_yYB*v0l1e7*K6= +z#x2m0c0<>GIJ)NJ&?TCO4q!oaIl819+Ohw=@IDQW=u>otN6;DnfbQo%(18_hAJ(=4 +zx|Vfgy*-wv-V+_jBiIz@qXYRC-DQ7bLoC`Myr*ji_P;Z~jfP7202_6GFDx5fJXX!6ZO2f8S>Z^8=H_oK;rAw|J8`Uj0f&YQx>3ZNq| +zir#n~Ho+Uvh&+OK;9{(X88>GnI%7?AB9qV%ufbMXNJ<<+J$t8&L~Fbs@50nu6xvhB +z?3|HkghQ|eE=NOnI$E_$MxwFT@djLh>Fa3HRqYy*u_ij9F6a{8f%ZQf9nf27L_Q7I +zQ;DA_7^;g{6LWP7+o>@=MZGT?fwO2*UPP1Z%I@JsSEEZ(7G1gq=nI-gyF~}1&pnDJ +z?R3oH{(muEScZPx)?r)Ri_I}#k6>3c3Fo2%T81X=T6F2QMfacsI)Engf6+*sjO~}u +zoXT@+Mxq1nPgJ8|5;GuD7AxK!j@sMNtez3;TVnl0tQYDX?rVi6`mq1qPWx!^DE$TfWs~=gaQ0V1XWSW`!4Nc3)36H8NAG_h +z{bn4+^paqDN&1Ee7Q?b!uZ;t+2ll}2DGEMNuwMvqHMHI`dOMocqtRpeJDY|BilS +ziu4ajSr%RMYO#JjreA~(xIcRK4@O@!93A*n^ttDdh^7+DDLCVIF%u7?FZvtZR@n!H +zeVz|(FM)2KO0m5ydS6%UgniH@S&uHsUNmxFp}Xk_+Rsmz&HaC#f+M?xK9F-@SnDEa +zlGH_K&;F7Y7MML{KdcwVn4(t#*;QvHVp#7b}^#1>sf+Nd2C_GRR +zec)R3#_OW(F#VN72XcR`r{eV&&~srW`r;j!UIO%+@KtR8A$n#I``?jXqG2TFz9-B$ +zg?zLUQ_-Y)9NkXK&@A4DZpXdoz>lLZ{u^DYtL_bvsE96E!)OOIQg@&en{aO`Wa*PM +zIMQdLi_r&PLpy#K4f$8-Opc=iI~VJD28ZM-ibkdkdS5kkf(_9eXpc^$Kbnl=QWQLZ +zCdP&(Xa{T1CD@D}!8_1g_#92H!{`f+p-b{Bw#OVpG7>jpH*ALsu{EB;0a$BjXnziG +zrk*-R!3S&K7cNXd>w9Cp;IPo%H@XV#@B((mCc`rlEpZn5!Y|O1G;>5)iWcZZZbKv5 +zFV;sR=SnIuo`N%3geJ{ubZs`Hk$4~L%bnOY13ikfjSUfLkIu9^8p{4?&J0GAYbKf_ +z3(nQjSlnzrm9l7?19ihZFC9RqT8wqIvMhCJK9q=}EK&d?xT(eKm +z2hPWOo=3wEg_>B2_MYf{lhA=KMI-T6Z2tgF##3n4|Akqxq2Gh< +z^AFLb`WjuzRI&Me;(;SZ_hurBp} +zXy~6qL%JGG&OMlkhtYxj9nC*8ELkNq!mVerO$=oh8ho%PI`iS^T0Ml$>$z78GGR`flo{jqQo=h2XLb~yVNpxba0 +znl#(dj(PvZ^f?)U;dP<}!Ol>50bvr1@)YoNaq+M^K~hCcTIn!M976JJ7; +zbqA*Z{_jf)K6nltX~E~iK~x@H(`IOddSH1Rh91Rp(HXvp4(JeO;%{j36_^*6pfcJ| +zZFHbFqDwIV)BArU1(R(u-kOEqa_9_Bz7Pg<9{p$}=Z7`E0-ad_bO7biHExN9wjKI| +zr6)SDyU|@T86C)y*uHH(``;ITMT5V~e?U7*z8FTB15Ktv=mAnHdP_8gm1$oa{TkgJ +zSzihfsENL~H5%E0SPsXc1AOTv_P;Y(MS~&Rj&8Tl(2-_Y5OU#aG;157_ur2mSX1#f +zd=tlG{)J)2PoXbZjpou;G&#S+ig+F!$Tg`&VU3!j58Q}mb&u%asQ0-9&!EZl67IwG +zI0qkkIb6@TI3v-MdNJ&PW1_p!uV~&^G7=dqaWmXPJ=J1K2>IXW371?NUXUGKl55a| +z;yQGHcSHB}?N|i+qXVCS4)BTST=WE8gf8*=*!~te^Y@S?NhMBG@W#Kx}k$A6~)x6XPg& +z<5YBi&x<#_jV{SP^o5_G9Unm>axt2HML1Bd#=5lELU+;KXy}JxRUC&7co`ajEtvAg +zk0}_s&#*AbQFvuo>l&-VjOw9l-W1K^HfRU8qXQp~hI}GAz(tseThaT!MI(4N*0Ze+ +z11`3j{cp#0X>f*3&}3^L>jTjdkB;qA(GV|251Liz8gE4hbP&ynAF(4Q*Mxc}tWW(u +zG$PBQ8`h-4NO!~=zem^TFLdNruMPXP8hU1T$6+`OAHwf(9^Sq#Be4Q6pxM1>eR%#o +zG>N}Om+TzcPnOrhN2_Rxf)@tj%{T@P;d{}e=zuPv$ysPam~kdLzy|2Iqho9z5!)Y+ +z?F(Z2uGs!fY(ImZh^hRqhwLniu4Om$MR#KcjzIVQXmlyYqal70Kf_gM=u>Zm?ez?L +zZY)BRcPIM%yI2GFq1*6Jq`y=m`^K;xu8EdMw_`0dIqRZ1(g;1vTg3LeV*5SlfJUH4 +z@{?#X?nFP=-=VuIV^fH1CA7a5cvbrQPr?1z8=d(e^u;65jvhcmJr|A8D)bEBj#cnS +zG`sU{4w0yY-rod`KxcGGd!YA?K$CVF=5+rrqF{(tMK_>Xz6I@Q7xu<4F&&XN!}q@t +znoPaX8I3`&Pe8MLG8*bx=x%u_)>lWjV9FQ2N5PqWjCS-r8j+vS4$h-9`4<~w)-7Q> +zHAmNe96Ga^(Ix2p+t7);9o>s2`$2TOAKMbY|7U4%0DqyM%RF1d3~HgFYJ$$R8~URA +z(1A`tpPPv$=R!2AH=s+oJJvtO3e=CF{an5+Ot9oO_P;k)jtzCN4)vz!Kt^M0d@gzf +z4RN`*LS(9-5p00YtSQ>x&9UASP0o9;GCqb5@HKQmyHXVF@Dw_uvuFnw(V1mz4>K!( +zhO`2@G*x4J{b)P%jPH$}2h-7|S&R0+EBXN%!To4IspAw}i?iqp{y{$?$sJ+;H$+dc +z#^``LvD%D+YX|356~ +z{?GGX*q>$54z9)K*c!LtG`t^Mz8~(}igvUY@6N)X=g}nWxHtV*Dv7S>ww;Nt@e9$V +z(e-GqY{QhHKS9B@%>H2*`Bms=xD5KD>!Y{fW7Nl>2g={*$(DOxSi16P(zQXK?}cq} +z40`_#G=d+a5jwJu{qGu|rNNL~iWjc>D1^97v<9~4dL#7yspxK*jdnN>o#{$+KpW8| +zJ%HYS9Ph+4xCT3a9G*|?PlW>}`~GlaCK`##=x(?+wl_f6`Udn!z6G7p05tTY(HDxd!&>NC +zUx(gz6Z(Rl=m73Q2Q~=Jh5OOxX2t9CkO8C;3n=)RU4|YU?}iJBAJL=p*I3VWkPwsY +z`Oz0v`z&;C_Tf;ZOrJS0;)bZvT}zhuUu +zGn*UR7okb_R=oZ(nhU4V8UGpU*}n+?#G)`dfbr;io{jaDSj_#un?fZ#iVtGWL*a!} +z(1YWt=t6X0>(Kl6p=bRcSRIRe8Gh-sMPD>5It2~=d@PGg&~3jLQ-=5?1w(iFS0NX2 +zqidKS?dWQ(i`CJY_eYcRespG2(WF`wU4m}s<>;>2iAM0_SpO2+Q9u3_`@aT-nqP-y`lHTB7{zAx6V`ZoNkz7@N0eK|VdztD*l +zJk0*jq)_E>NVX1W$nQZTG7cS33Vm=sI@34M2)&8!`|arV{1V+Ir(*jBGy-|Q3lS`V +zCSO-Hl7mtdT$^#xiD;;1pjkc#ebJ(LeJPsVYvc7zvHlJ^qrK<^zDEas2JJuBk#Nuz +zK-;ULxsYm0!3T$;YdQ%H^_+Oa>e&7%`pf9Q=ytvO`;ct)&?V`Om2nE1Q|r+ee2nGr +zJf@#J8U|Dkc~2_Ql!6a*N3(hq8k(2TP_9LP18zkRl7ndW{(^qRuJ})g*mY=VTcXe3 +zir#+@8o|lv_Iw=eZ!Q*b|F5NBs6RmW@n>krj-fg5Gn%C5&>59F7M7qj+VM^3{aw%j +z+>S}_3>eX=w_CS~9UG#iF8tCq* +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 +zVIFhnzVIp=6?5o +zD+-Rd1Nwr_=-SX%!Z(6!AB-2MFXA!;Af}N=M@0LveKOt;FzjFUZ8+H##I||)SFJd+9 +z+#}5F5j5#$qf7NFnoHZT1Oxj5hvDzHvj08N`rj6Q!_C6B)IY#ccvY`t`ad*G!8fRX +zf&QkOetSr+r+X*U{}YV^*qQ5h_6hZkIEi}OJHii|kMMWu+53j2{TrQ7g?{Y+Pbl>3 +zmrN|f+IJ??|DN}2Gy@t9)WnkF`h999-?hZ$E +zcXSC}#V2vWpk!hkR=X#e{@;SWnxgPD4|cgX{DAmzaCmX?Az>|tVJ#kb1E=7RXmSo2 +z8vcwp7tQY6_l1v4EwnxlhvN?PM659^ocZ^nC+l>42~!7SVfgTHW1bPo^glwm5vOs( +zyI2o9jtsy5Cu0TbZ{krriZ$__QQ`UXxSV>m(V_hiK1@B^{mH~ooPyQyHyr8rzx0@7 +z;sF}wpxK*eY%-C>h#)s4x;>CgOvVrJKiF|xIO}UX82;M*K5RsL-|@-xKPq_>f;ZIIo&;dPyDNnNL6r9;}(O1!*Sewxk@tasb +zgFcvVVi-^{bU@|M6R;{8!TM-q+M^${k!VC_qeuH<^dNh0BKzMCkI~?ZPDis$iXlX2 +zRslWn8lp*b3;JE(fe!o-Hp3s$&{min23QaMz0ed*!rRb@e}xYG)+vPA!W~mW$OfV# +z9TI&Qeesj%iMA9y>9(QIokTw>XVH(!MRdDmeJp&enxc_u5$iWaJL46!cTZ99!T#tP +z4@X}(4o$jQ(T(VfzCj;6h7R;B`c=#_HFz0%JqP;Y!dMAQqy2Y??cLC&O7*4S3rAxq +zoPiZ_4f^0Abj=deLdRv%kk&>!?1+ZEdu$(oPUsOdx1Na3LwDIStcR2UVdoMJSBhj3B4x8gTEM_*G +zqu`A5%m}~F>tjjkW3inNpxf~n9>PD->^=BI_yO`O?xCJ*W;m)p#o-)a$tS}}Ir^!v +z4PQi;3Qv&_1Hw#^wHE2?P +zj5YBbdg7Iy8;M;@*axypQBk)&xf@yjLxVMI?|44$9*w9gXm*u +zN6(-ySdI;G6PopB3~Lh02X!sKSaUgdk&r9 +zax^L5z?Qfpnp_a-ZKE@z2hpRo@WNm*bbzJM0oRZ1*P}Vp0zFqcVak7xa~p+mG<>}% +z{0D?CFNfdthwug3pI97z2~~I{nRtZyOtj-XOTvH)VqNN`(538wZE$>aH#(qPOT*W* +z6dHk>m$Ls&j)62dg9+#eC!wL7jpoEsbd7hRp*?~w*+sPDf6!kz1(tf8rdx{f+R`>pV81K71pQ;QrNE#qa<2P07Se +zE}X=kICgU~{cklt#n-5}eKVQ*MbEEC~(S9<~H7^_M +zUC_1ff#$>@^aQ*QbGZK}Q1HQNn1N4VWqb-v!ma4c_MrEDgbwTzGy-46>*t~u(TV(v +z-e2Uc@O*K!UKX8TMNI$u-)a;*66?kr+Mq9JAMJu>buTpAN1)j|IkrEE&Tt9(f{o}4 +zwnTSCcgO1=#QH~XvH!jCQyT2>P`u%2yy1t~elpg7LwChR^hH^=hZkRlPM{FFzbj&W +zya~JDW9SlogEwH#9pPN*xP$%g0PdwhhoMU_8q45VERXZi0q#Oy{1JNpCs-H1i1l1M +z!y4yBbD|J>e;ITME5z&7(dX-=;)RCj44TDy=V(u~gTB%J=!1izLu30$bjik`FP?xE +za7MiTI##2;Io6M($yn(m1v@;09sfM4pIW?0#%BIj +IzVf912U}$H_W%F@ + +diff --git a/po/pl.po b/po/pl.po +index c1aff51..8eb571d 100644 +--- a/po/pl.po ++++ b/po/pl.po +@@ -13,6 +13,7 @@ msgstr "" + "PO-Revision-Date: 2008-06-09 05:02+0100\n" + "Last-Translator: \n" + "Language-Team: Michał Trzebiatowski \n" ++"Language: \n" + "MIME-Version: 1.0\n" + "Content-Type: text/plain; charset=UTF-8\n" + "Content-Transfer-Encoding: 8bit\n" +@@ -6498,8 +6499,8 @@ msgstr "Wzmocnienie pasm" + #: modules/audio_filter/equalizer.c:58 + msgid "" + "Don't use presets, but manually specified bands. You need to provide 10 " +-"values between -20dB and 20dB, separated by spaces, e.g. \"0 2 4 2 0 -2 -4 -" +-"2 0\"" ++"values between -20dB and 20dB, separated by spaces, e.g. \"0 2 4 2 0 -2 -4 " ++"-2 0\"" + msgstr "" + "Nie używaj wzorów, lecz ręcznie ustaw pasma. Musisz podać 10 wartości " + "pomiędzy -20dB i 20dB, oddzielone spacją, n.p. \"0 2 4 2 0 -2 -4 -2 0\"" +@@ -7224,8 +7225,8 @@ msgid "" + "16 no padding\n" + "32 ac vlc\n" + "64 Qpel chroma.\n" +-"This must be the sum of the values. For example, to fix \"ac vlc\" and \"ump4" +-"\", enter 40." ++"This must be the sum of the values. For example, to fix \"ac vlc\" and " ++"\"ump4\", enter 40." + msgstr "" + + #: modules/codec/ffmpeg/ffmpeg.h:115 modules/codec/ffmpeg/ffmpeg.h:248 +@@ -17655,8 +17656,9 @@ msgstr "Interfejs XOSD" + #~ "VLC probably does not support the \"%4.4s\" audio or video format. " + #~ "Unfortunately there is no way for you to fix this." + #~ msgstr "" +-#~ "Program VLC prawdopodobnie nie obsługuje formatu dźwięku lub obrazu \"%" +-#~ "4.4s\". Niestety nie jest możliwa usunięcie tej usterki przez użytkownika." ++#~ "Program VLC prawdopodobnie nie obsługuje formatu dźwięku lub obrazu " ++#~ "\"%4.4s\". Niestety nie jest możliwa usunięcie tej usterki przez " ++#~ "użytkownika." + + #, fuzzy + #~ msgid "%u Hz" +diff --git a/po/pt_BR.gmo b/po/pt_BR.gmo +index b4cfb52bfff7512067f63f3188428cba331e0f77..0d4423764466a50c550857b8861645243e3d9127 100644 +GIT binary patch +delta 8832 +zcmXZgdA!e6{=o6iw|g({wO_7%x!1n$V+l2=L+bObBniD+hR=;xvV)mZSRbs0qt>S3!-)(uX5d=%gHo)4kDv=Ji7rJKSd9j<7PE0f>~DHtQ#UpwWhb$=C$vV-~K!B3zATUL5pa_`$yZ~QD-^>0W6nQPQHo7b8Cqv^v37Yzwu_E3XEk!?=hdKCc>@PzD`vB|WW^{+& +zqXCsgt8*Tnc~dly9??OVx}y;^ESd>u(L8{TKacL{4Qzp@(Ucag4?F3H-uH2sk2l8t +z|6&FDPhfe#*o*!$%*Orb(H&k-{wa1`y(K)R#F+6O)25g(HON;F0>V2Z}06HP}0n2YZ4e$2yvIG#z8 +zm3TeW5zeawRlauIzuWStW_G29A +zbF7TbH-!&7qi5I;o8ow^hAFzheQ1D>qJce*?eKZ@h_;94X>u&Sa2nl7-X|e|8t8{D +z(Ie@O?tCzsiQ(7^FT-J&qD8t9J*uD40L#!KZuV&i?Dx@Yu#WeCIt_PLiq&xe8u=2e +zi7%i#T8r*<1Gd3~XdtyV69_fY5dCi8mXOgQ=xv#R7VoXmJJF5I#fq$-JV>J>E=2F~ +z2k0-}E_5eZpYi7dRzr)XH(I@;FdxUn@oUiqOVOiv8qMfS=z?p|K;A_+ydG1F;4>QT +z{2O#fN6`;Xq7!9p4M&oX_FJO?_C$9)25Vpmnz8HgT)YciXajb`t+AiGEgWgVHuB$@ +z2W=Vf-WOv5-hl3`6zk$+==E8J7STp@;*;nOD{K$7QUyJ#2IzPTbVKd14tB$OI0P-i +zE4Pz>iz{Wovz>=saRs{5eQ0KWMkmbP5sE4g4Y(s(bVK6!RP+cQ#6o-y4frGUz2oS$ +zZv1(uk$x$SmJEzS7n+F%bWeO?F}kByqwiu*itS@G^*K93>Z_m`X^ai9EgJAS==Vd> +z4gM}VJ(|v^;Z9aYH(?|ChtPm>zYJ$xAMN)?uhm89nNLG^c01O`r_tJ3i>7`(T6CYF +z8{3K=#li4AO)_7F$aB$13($a?#__&!d~obv68o29ZQh#{`!msiW~0Tn04?qfXdv6r +z%4^Qz>!#ePm)}W +z6VansiFNUHbYq{z@dH?X|Buq}r?w3J!Ku18RB1i*?0TWa)(^cMgW~uN=nii|Q+!+O +z&&5Le_hENjiXCuI9Ivr2yx(;n`S-&<44AqB=(QVxE?5#@{3BX)(=Z3;q0bkhKRAmq +z8<$5{qbYt3-O&2z7A&H_3(ZL8Tk`J@PW^AgM4izh9Dq4^K^(sXt^NsUfPco;cn7+H +zXVE~GN8iPk^tVP&qw_WUE(FvDJ(})mZ1h8Sa4z=5q3D9Q;{<#VFT!JZCJx%qj}G1% +zU5Dq=&p*J=Fp4HvHT?{F;|VN3cw +z&`8IiI~k9j@f>uA51~i(709yX=l1RXyM-QghgNUlUvouWng5A?kk(STQ>NBuVDX`d;ID-1A!EzvvC@9x1`xCmYEg_MR9 +zZ$&5CA740(?lf~OoP80xKrgI~{n4F_K))-F&##E%SD`gD89lOF(A3|JuJ;HI!}J*% +z?P(m34_f>ZcH9$vaR?gmSnPq<;TiZOy2B;d4ws<;eSv218~kI2zf0mI`eToWb>6`O +z`bUtONt2utVQ1B`3J(g`z2fIvw5F9cVGni{sBlUq!!Lht9JF +zy&Zcn-}_%i!-?`wh9WFPUl@k&aB_4yy2DxM`*)#%J`{Ztt(8^S0N0~Ovlr{*0kk-? +zPK6A1#7eB6bfIB{eJ~5pMbCN&T1>;xg-4?cUxB_q1^pek8J+kk^t+8{AfLtY{b+{r +zPlpUQN8j&)sb@EahTa_?EQ@{~&HhjLpi}g+=pE7L&;_@mM|c1|x?iw4R{1sj4s=2L +zBcn5ZCI1fmH4eNL-51R*3m!vjPun^r*du)mq$MLCX5zW9tycHYahEU@fY-WVL=>Uj`dhSd6$MM`!f0ix^Nj9Q00nY!F)88MQDc3L~CVq +ze0~$U&}{SvXC7L#&!h9KK{xg`mfsdkZET`pG3`Ll=2)~0d(+RY6f!Un-O&i_fLCEJ +zd=UHMdTft5xta3cldd?1{gv5WD#Y2I|EZ0XjC(#suT_A +zA#8>3;cz^J2G&16>~IdAPk%W+hNsZtT2w1j{tt}j(VBP^E3~om=elU%V3bixI +zPzIWzwQw!A!CTQCFF}iR8+v5B(CfD!t@cCc0!cx5uPVB50q($tXwe=+Ya+W&SSQV= +zVNo^)V_ds9lgBICfG_XnNLN}ue+>HiQip_C8UV<;j@w~d>TGm2~wh4L*`XWV| +zCZlMWl4?3O&7%Otz;;pUn0|6sVOMcC;-(fM9P|IqpoJ@cHFp$My@8L5Y6xJgUyzbS6XfJe|P +zzHmNT3m3;1N23#65&M5YuhX^Y(ac2uj97sFDYpczh4--oeuXYrxmElrN9Qj}Y1E<7 +z4rk#2Y=Lj0MY9*Zo=4I9{{Ltor_jK&T8D)T(C00qZPD*KqQ%<{Exz;6TQUOOKsqiq +zCZpAT3mU*YbSE#PXTJ^4$Dh#m`nAacnS@qZQHP5N3^E;#Que7;Flp8 +zPm^nCcvk;|F7yBz*>h-S)}X2T6iw+4{0;saJ+jvAyvO{-1YPK2^e9T=_@82b4*LFr +zIQ|Sa_Wr*?!z$m2{qY2vfnM#y2jj36{cF(x=c9kTE<<;+0nNb9*iSlyl;@*I)hhNo +zp&J>91~>$By#K{Ea6I}qn2G3%)6h)ZghoCa%Zn_IFNytC=zV`54R9}7lu5^sk%s8m +zcS398%;?#eI&cn+aX18v@M$!Fb!cWbqJbPjkK`13Wci)Kcx!awp4b{kpc%Ra@4@-_ +zFcx*rl>aBxYP^+xwJzNM?lkW05+-^JEuKy20$b1k4@7@J1N#ZRJ}1%lv$}>C5EbmB#5@jZza->c}v +zAEEPp65Sg8B0m2*_V=c-aR8n02Xu$W<9Hc5VRpB$P$g_bzX^I&gVBYqj!wmX^#6>0 +zw=9mY#IxzYf^OtQd|px(U&!hnQd9{IpeCA;dgw%j=t3>f3EIZzov|JLUf3M3MBkr{ +gzW>k^+?FXO!|ylc_e+sB +zNmQ!Qj;1IQB@*U`ERE9Ga(P&a-|KbH`RjSk`FuX-ywCf*&)2P4`?DU|pS84m)3i?} +zNrr!vB+Zf}d1-l)u! +zqet5k>tWiRh7%7(CmMxDIvEXMDmw9l=zD)d&-{PUOw2-YvUSphu@44t%tFb!X9{YdB +zvh<(Al7O)b{RNnXJJ6%svzGi@G-bX>l54RxS|qol6Fi3QXeRpM3z&lo(d+saTHRlx +z@9jW0a1`A@<#pjG8l!;}pvBr2J>uT$$bUH+eHk!CgVBk`q5(`rclZeA;Iocrl4KE1 +zroZ&dFmbc>A@Ek{!o9E(4ndFZ7Ifh$*bSdVH}G{zBb&w{tc54g04i<>#h8Z%))Rei +zFdFa(G{7 +zeS4^p4k?X%2Ku54O+o{DFupJwExtFR?_+0*?Nc=Mr~egFpZUL#k?L5F@kVIC7oy+y +zL^pUO@{Z8&i0<@K^vuVgJG%$#;xlONEJIVj0xi1F +z(2cD_k78GNo+c+~c$R0;NON|EfNG-S?a}e>v42JEUxOCqh}fTm1~dgNwi#$~uS5g+ +z63xu!IDQywdjEfoFI3wVc2F0Mv=f?{-f?_1)}cQ&`akjc8|aSKp#kiP{bT46q!(Ed!>mGkWcMqYDm+Fa91ax-nP=r=ibhqCYsZ +zF$)()m!K(r6W!2?=vr(-e>0kq6F-oDe{d@QJ51CZEw;{B27edFuRw3ZFf_p1uqED$ +zZeTtd$inFRm`{IQ^e8%C?foI3hUn20q_NQf-N8lJ8GE7&-h-p@QS6Tg@FMK`BXxs! +zMweqR`q@8m?$|&2O0@I=vdQ?3(PcQ4ep>P8P`$UH_jgL{&qj-J3FhHi^fny8$FS^w +zLMmrsHvOe&s^3F5@+o%1HR#c19SlcO3+*>WGL|NtXq0E57kZxuVne(IP0>Tq$I*$O +zMBkr-W${HcwXdQZSQ?*y5ub04&;Ny9-`(iEr%UAgOCJgoRYZ%U1~$SA&MEsn%N +zI17#Vd-TK8Xn^OiG1fR1#yg=q?1~=AP&Czdp+)&D`u)pjz>CqEc^9kWieu#87dA5B +z4!2+xJc}Md<>K&SL##%>J$eL}q7x26zaN3_d=$Fyt?0%kM(;zvdk|~jEOfmWQyNaZ +z4xMO6d|?l|(-Y{~=N=CW6k<*K9nqciM!y>npI;lthoc)9i5}TRtcv%e>phMGF`Y-F +zHI0MuLERH!$F0#9d!P{y!t?PKEQNE>9nQt`Z~+?7*JuX6!`m|aEs3|%A9OOT^B&fs +zzYnRIG&xPf)McFtKM*|c+jbS%2Fd$A5qi{sBn-$1`xj?S|d +zy&YSzI_oFJG@K~=bST1F=nI#lI~*Aui|%kT`u?BLKp%_FL5pfJ*25L((QL!IxDzeT +zlV}E;o?(90Px5IPVOuPX7oi#Hffm!{=)(Qbg|9{5ABFx7+<{K~H2U2tG>|Xi_zpBf +z*}sMi*FoRU$JDbMNJHbSP^%kNB1)}!_3+6JCKj| +z`$Q+4CI1fmJr2AR-5xy~ZF(+zcm=lL{c-5u1OJU?=pX1&eS~IUHJZtFar~?3*7$rk +zn$i8|((uc5hyizS5*uTMBvbN2YqV%OqN%?GP31t$!;#n!A4IR&d^7{Eq5-{&&igTX +z-#4M(pNY>arkU_zEp$hDXaJYR@zH1zO~5?76C2=@SRdcS7jZorz@$>)`2*28*o5(S +z(0R6^wX*}wQ2JAB97KOuj-oG?Egg1J0UfV{R(qQ`-V>dmA3EV6^t%!04o9KC1C!Bf +z`4Be3XOMfJe1K#sO;*ux;*IE;>_vBY06p96tPn_*Xah8*t)j(-0XmiPWIrr|=%&;XXBJ6VM;uohk5+vpGIM8~lMW|iS=`K9ZOE_5UR +zgUGYL1>M*kXicP84`;;jg;Mi|&u+R>~ypnWtB!G?P3{8Q;Ue1O}>A3#lqX19}Ww +z;0HJeccX!ItR8mw0A5LdAwG*o(Bhg^BUAF1)C*`$e1IO!$7oHgM>D=Fjg2$dhk@EP +zLoM8l1@!MkcRUv@(l5~?+l*en9cZ=hMi)4azE`SNSU3l_(XWaY?E$nVPN6lIX6J^Y +zsDl<=!`N?yzStHmvhL^yBhZEJKzDXO8c-27!|8Z6z81&Nq1Uop?NGEe&|AB@&?RVK!_h!)LN_uQ&2SNx +z!Wmf8`#+0@k-mi9>t*PUzCi=oh6eI8w#TydLca@IMAx9>6VO_jkN%_d6&lDv^x7Rm +zGu*j;CbFoQj>X +zIsOAJnr-NB_I~uf{|61^2pafFbm5$q;d#AiBlNqbXz{j0i?18{6W<#RB)vK|Mxxa{ +z5e;A(x|7$?v;PvW#2?Z3IuvA*2eA)&@4v)0cmxf!QLC_EQ?#bq#{MN};Qf(|r^!t; +zJgYyV3;hL+?0GaZOVQMQj;3@2UV#5bkF3FY-edkSK^M9V&B%~A{)gCq0DXT(9G`~` +zz5j31u*x^$#drwKKw<0f!PVG;{>^BB)6suk7oa;?iDqD9>>o!{o?RG@sy^CphHj(_ +z8ek7BtE7SC#QfwgFWJEMEizie96K(TQiF#Wx2{^&9BKpP=)8 +z7F`$pIzIn4_P3?6u@jweFS^5nal9Cv@D#exZ&-jeI)Q%d{l9K;Ut=(-_QWcb_yA(gicfoU8pWPL8JJ*Ii5$q5S!sp^!+L5`{~=m +PFF$hM+k=;PyXXG_F>xj5 + +diff --git a/po/pt_BR.po b/po/pt_BR.po +index 2fd24a4..1958a60 100644 +--- a/po/pt_BR.po ++++ b/po/pt_BR.po +@@ -12,6 +12,7 @@ msgstr "" + "PO-Revision-Date: 2004-04-06 11:41-0300\n" + "Last-Translator: André de Barros Martins Ribeiro \n" + "Language-Team: Brazilian Portuguese\n" ++"Language: \n" + "MIME-Version: 1.0\n" + "Content-Type: text/plain; charset=UTF-8\n" + "Content-Transfer-Encoding: 8bit\n" +@@ -7076,8 +7077,8 @@ msgstr "" + #: modules/audio_filter/equalizer.c:58 + msgid "" + "Don't use presets, but manually specified bands. You need to provide 10 " +-"values between -20dB and 20dB, separated by spaces, e.g. \"0 2 4 2 0 -2 -4 -" +-"2 0\"" ++"values between -20dB and 20dB, separated by spaces, e.g. \"0 2 4 2 0 -2 -4 " ++"-2 0\"" + msgstr "" + + #: modules/audio_filter/equalizer.c:62 +@@ -7871,8 +7872,8 @@ msgid "" + "16 no padding\n" + "32 ac vlc\n" + "64 Qpel chroma.\n" +-"This must be the sum of the values. For example, to fix \"ac vlc\" and \"ump4" +-"\", enter 40." ++"This must be the sum of the values. For example, to fix \"ac vlc\" and " ++"\"ump4\", enter 40." + msgstr "" + "Tenta consertar alguns bugs\n" + "1 autodetectar\n" +diff --git a/po/ro.gmo b/po/ro.gmo +index d5c9fbf3a654c9988919ebbddea8f28fd85b0bd6..a7c64f2277b97f932773c99d3e77e15eee71ae3c 100644 +GIT binary patch +delta 24445 +zcmXZkcYIIRAII@4->=w2>>VSC3@eE}V#N$%)gCcx*QinBB2}XlHOkMb5W8lI)~Xh@ +zca<7dZBc49W);8J`+LqGeLT-O-+RwJ=W{;i+;4)O{weUvPk~!gySmBg9B0T%KPRu_ +zIDxDDoZc9QQ8*jR;PRYiC9=6^?4K&AEKc_g>#Bl6}YM+5+ +zaX0F|I~ajk*SUU9NeWfg89QSR>J!l)=U@T+0yVR3sG07?OnBJV&sZ;`Ch{9MhPKr3v03u;aG+xlJ9j9;JzS!G5!fB`hes1flP@((^)!_lmhKEoQI*(d{ +z>!^PIMBV?yw)<@|&&!PYdA?J?HbkL9QpXyH%JRlo0lQ!woQ=Kk91g}xUzyORpa!-F +zHK0=%idRuf;Mr{Y3qU1tDGcQKPE`tea6Br+2^fRjQM+RSYAu(bu1iKmW)13rTT%CY +zZ`;qKuD@pMzhge?4{SaC7C&bV^&IFbyLVDh2WN3V-ozQWVykHn-)5|a3S|@2eVwpT +zI>-4Cl`H$Vn+M;-2MrVm +z`!EO(V^zG38gS4qKc@KZ088)2M;|ZtE{lOPAH%Z7wK^3T-rM +zX7y2_>yKLNA*ctBLFL3`)J&$Ka$-4Z;K``-<0kgO|F9hP{Kn6T!+EH4<_app?kftK +zS>U&R&H_RbkL{`7+Cv?y?=?4`!yeT0?elY5;z!sFPuhCH{eDhU>H|^jyKUY7fS=Qx +zdMk{_m8bzfL?Y%o|4`7{75UDreHeD2UKMpN%tM7R88zcw7>lP++bi2aKW7P6M1}ku +zD%4kO{Q)LWe}B)_$SwFxSzdZK1B5_QlVM%{N76_LxR +zTnInp=d{8`s2MLoMdmJQNn;M1T~Zaj+W)mFXl>){2hCBr&=&QeKDIs->rkJJipU|` +zeg$>^J&eXQ)IdUy7~`-s^`6)QXJRB?Lw7obOh1~WnuiMUVpNA)Py^YG3h6QX`E}c# +zhFUuBQ8Tar%u2l#s=XU3asyEPOh6^`Y}9p&kFx(YlQp(s59-FFsI|X{n#u2|ZI$kr +zpHl)0qXrs_y1p%H`z2z1oQYw04$I2=+jo +z+0(Hwu0-9qAA|4$Y5-4B_XV9cFP$2w2R1>Sr0q~^-WRn5yHHDV)aqWPptJZP`eXVt +zCKs}zItau{SOS&p9Z;c9M7`xkp=LS-^-kD|y6!k?BIi*9e}(ff`&sj@NXG8k|A#2F +z<%8gJW^Kn}aq7#lHhzcdFx`1Gz)Yw$4?wjSM&(E;EQ)n)dm?H={cQUOsF}}3MLZdE +zYyYQG(2R~@5dMnl*tuXj$cWmvIWRNkwiZKO7mgh<3U#E;LM87S)BwIl?WVn`>kr${ +zPhlSI|7#SK-T$DHEZaph(n_e%HAZD|SKB@d^$z$Fm3(V#{Q~MiS8V+jYQT3<14~2o +zm-Q!8FOIGns!>n~TcGy&Ak-N>2{qy=sN|W2TJz<$z6mwceW(bYL`~ops-G;E%tVTz +z?vFzCR}VF?rkB|ND!fO7)-=&N2$lU~P$8U)n(-nG$K|LjKZY9kCDcToS~LA@22d1r +z;6$OWuVL$rt*w7%|7%2D>;=7XH1%Pq_WPI)(@+C=hD-4^YT%15n_aRBm0UY){RnD8 +zmrxPAg-W`|sHOJ1V%m$i6qH;Ms2j?oLRteg;-;t@+oRUDKkB;SSPXT)2C@P*;0>tz +zx1+8Lc-eKEH*%u<37p&LG^1y|L&mGmww5toDBzg_3+w;&(Hn2B?rXN6ol9 +zD%AaLeFiEi=cBTI2`bdvupWMkq4*XRnUFus5=B}oV{_W;qQCb4TorH;DpV^_p*@Jo +zfn%toxrAE7C)fb}{xsJ$#%k1CVl2)??TVAA>+hlZdyQH;&uufXLg*f#p*RK2_&3xI +zX?PO7cbFmRe-4wV-?{7OOu_+w86RME>O=0C2y8@Udn#(+-=mJ?GpKjNL;HEg`({9S +z@3a3E!lE?jh8R>N>eve!p^`8GmBrmrOEnNR;5n%4lTkBUkG`x&CGm08?z)azid(4u +z?xJ?h%lqtqt*z&8^A;?L3RN}Kfl?QBlC{GKA~66pfG-}HpBwg|uKyQxZumX)b0*?g +z)Dr!NdQiPbCMTL>IQ5aJC0*%K(9HLu_U$oy!DUorJdaHW1yCa|g?%x`x)inTyid%R +z&2ZHA8-;qUFGWRW2kylas3n^AkBOAKkU|IzD^SUE1eNvvY36|esE`Jst_wr0WrDRo +zYK9-9i?dPJ=Xh%R$&ZR)2~?yip$1e7xz2UovmbQBnuNG7YDOu~%vZ7#s1Cf(O~?6B +z4=j#lF%pBY6IRA?SOZh7Pi%YH7bfI=P?4O3AsX^r3QCgQ=)rxqeh?$6A3;4R4f|n< +zmu8pDMBTRxwU)`KwcUrh?=A*mo>%6(UnQ(deH@m@16WBRdrTn)L;p3e&(5e2PC;eu +zXSO~cm6Xd+IkO#u@BnJyH&Fxm1GVkmp_Z!XYZLM+sOu6?InV}Ot#uCyO1^V6A7{JE9`k6XS98TlRlV +z3Wx0no_BuE25Bi +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 +z$@lpJ_P?@w0}blyBW1~ +zyHHE97ZrhrI0LgSG3Ux698LWi?!dP0QnR+1mYE0ypw_xDD*H>KlCLo;bOTWD@A2q+ +zSD-?ijM`osFa%HI27HDZ*q6)A%O?euPKHfUoy4rdc_2B1)218z!Lk +z?NnTcD^N?;Xsu~)hkD=;)IdjKS)7HMz+T&a)YgAp%l=mf_i51A;(t*GNd9#u>tk>@ +z_4iN*({a>*{zPT(W7Lo71=pKUx50YUdtozNhkEdHRK)x?nD3Z*Q4y}S!8L2vf`$kh +z5>eZ0mc4K-YK_mJBJeZn48Mu$_#Ud`=e9lbMia^0sI@MDiby$YCDanvMCDj3mx4MT +zg4*As@qL_u-(VWn!ml=&kp7JtfafbSuxzNvieGkC$w0Fi9I19Vtb!>_?wwkq`hFYpisQYf9a_eu@ +z#9pJ8;vH&R`ft;ph_e6kQqY==K#h1hY9ODXI#_|4(PmV#9YVbW-l96{wB0Pp0Ms`A +z5QA_UY9Q-T_w7P0)f3b%%CUpLU!?sXNR!dccNx=3U%F0`}rem +zKt1D5lUyxO_jN=~WH_q7F{s>`idwp4R1W-u_0fM9`(Gh!y32Ib3AKiOP)jiwHR9o@ +zZRw(BxEM9_WYj=^wBA51)iW%HS$2DzIv9Z(;2^AopP&Z1Z#VnDK3^1mpdo^WjNh6M +zVo(pNhSRYgDv3^^w$nM(z^^Gv<|Y4u}(pSd@gDrDfl7oK;?iNw$F^H5^5mv +zr~&k|4n;*`4C+CXQA_q2`euR}NGfVZdu;m^Y(xE#t=HdgBGM5R`k_d_t}}{)PPB;_ +ziZf6l-fr9Xp|<0XsBLo@by7Y?t*PGulN*Il6R3!qaVyle?qfe6iyH6(T*;DeM1Sr7 +zW(Updvkhtu*P@bbC)VL8Jc}Ao;34zft_W%dEl?qCi(0ClI0`>OMdU3i`_msbxfO&; +zzIarGld!1v|EClb;ti+=?Lh7G{ism;9WkK`M9m<~8jE4n+oHZ~x~K>&M`iyW)RJ69 +zZR1zi9JBst{>DTnbQ5UUM4>mnL2av^N6mpT4Wslq*1%t}CKf(s?1*|fEwc5WZ9UI% +zv%lM59G@@7in!uJ@};glTH^^{{_`y%qjEp +z`$wn&9l~npciIf7ChE)VIE=yFSQ#Int`9zA{+>Y3Gp;Edra=P;J!@|0fa>rwY>3A& +z9&?^Ec15*sM6G=qMq}Rd=45Pwx_>Ul;z?A5vtBR`!>ZITyAje!@!||=Hhy7yOTU*Cl*ILh6Ut5E(n(JGjB0L5a$&EbQos0{`HM&8ZkZ+8j0*L0{0__i +z&NlSpHH^OfU;4J0VL8;c>4qM?J6s +zw!`+QCESWSa4w@BnB%^A4Tqzi_Yu0faS;W5?cRXeCPz>myhY_e$lvDk1Z+ipAZj}v +zKt-y+19M__LJjystBX2Or=yZ{5r*JO>(K}7f4#pS(V!#K|Dow18)|0xa3GezRGf`L +zSpSiE8TCe%-WiI@nGaFB;v3Wij$sCTf_izqLhX+9kIg|;G_unOv}*Ax|jZm4fiLr@bLfqI~8>z|<2GQgOlZzIpK0)buKK0npt=22vh{7VF0c`&1@@b33s91Dc_+6^vat1 +zUwbZ~UfY|osNVm3DJVo&Q61h!b@&1miMOawW`1qnVmVMVh(qn`R;cUSqaxJ})lWYx +zjUOQ=owEw{oS(51-ojAr|62c<_jVuD`#lNO!D7?^HegHKiFGmK8?)b=qL!`;o@41o +zVmfT}&YT}j7F%RO9OUQqodbu +z@D`TGFFan~0FI)T=r`01pP{~xI9{)BNs6H+R2s`*RSd(vUjF|FK@{fFpc833>c+FE +zWP5})(-i%(~kLv-b2joJ{xB%+Fia*yhi%i*yUMC5c;B_qKR`NQZa^oAUs}8D|5S^@Q +zMx3RZnQ<@d%nd)FawVv`S=;6~llm&u?kHcw>-!^{4^W{`U(@S+g0)fgA8|JN)$%&^ +z(fyo)_W#eQwe^oB2e1Vm#O0_p>t5R==L-CjdY?L`-#4HOIF~?c^T1SWOZ^s}#VSoWz=&|Bre0?`^}u-D&;Hv+p$`pNnwex8hW}ANj+)Vr&CLT^ +zwD9_V8GQ|}(4LTB_HlSiUP5%-6GLeq)5`06zpumr)ZgHF?AO}s`-ew0+L)ucbXx|b +z{a>Df7ptQ7Z!OeGH4}^CTI_*GFcQPw^ZLGkyoWm3dZLzaJnF>TggT=4qK@Em7=*V_ +z{dwA%BfA9p{{3%h3c4{0vteD-8J>Xg*bc|xYHRWK=C!*V^}bKF9zfl99E;;QYZ~fh +zm8XNTIC`j;>A?Qi$ScrL6}w{u{twmB5zL6EFe_fd?D#usCjZ!a&W>h=L71NQI;j2L +z5HsMHsQ%WW2C@b9Qrgpz{jUd}p+T?J*Y<+~olJWfEJ=F@)Pu*Pj^LT74pyTEw%dMw +z*tTE9jjcw18Xtrq%)J)@0*Y`tRHwak@*BMJeGn|Tfa1QE0Yfx{&&8QH5 +zhYH>uUcGrO=RuRO^4f4|vV? +zwBKkjh|lMuX0jcX^_NiF>o?R(>>n(Q6?>T^YlV7XS5%G+L=A8Z-eWB$V3hWMzy9Vs +z*;4BcjH3NGYInRrC0*nI^PR9h=B3^jHIoV062C+Z@E=rC=N)JwRu@C5_du=r3|mh@ +zR~?_Cpr1(oM9rYiAhR92qS_asa^xxMhz=ZVwqF+Tw;!QGzZrF2e1kPH +z4VAPNMw!?5``DQJc~tHc9&NHe5|#Z?s2r;^+BM14m)HGo)aYt(&xQ3u*+48mEcB;Jh5q3f6*Un9@u|Nl0@JUAS+ +zHkHs90rW+{I?A?xj(X5~>$j*0oIp+BH`D+hpa%G_t!HPcnI@SD6h%#-qBX&`4?r#1Wc2;{{~X(} +z4mGo#SP_532z-NuFl@4!VI1m#Em090Y}?19W;`8r@-0K<&T9Ml7F1;RU@<(3t{U!A +zPzax)k|IlzF(+!x^P#p&aoZk-nn5{Kj?}a^LrtIyDp?1k`kjax=t9&IrJy3UEs6af +zNZ|+#3h5QpjZZKJJs+ET71Yt$#M%NCfi|cC4@C`Rl&w$2nVciDa3bvmKk@qhM&uG) +zK)vWxuX7qxr?U2)DI`tvI+O4w4!|DM&G-J(sO?sNhIvUf!V1(|qC%L2I{Q~yZ=<$d +z*rz7To1!Mx3$+yEY<;Tze1%IvNwORDUG4(v41a){Va}Q62Z*w$nJz=^<5kw9sQVtE +zPQVPa%o^814X`OH>jz*EZbL2Uc~ow>*C>>sknuCKHkB}udR^2~tVUl_VtML6+WJe> +z+Gd(<9#jl9;8@f^JEI2F1C?WoQ3G0o8qg68(*Dmn$Bd{9YG#$Kov{k_NvLf87X9!b +zDj5&i_LDf8`UU(1(xqwO3Gk$Jh??(p4&zfy +z#cvmwAF+lkG#i(rB +z8PDP_HywYMa~azKv#c=574)U~vAPu|aKmdHj`1tK&OZDOXW)cn^HRyQ%Dj#nqYke3 +zQ4w2!+BHj2$+yzhH=(ZEhQ9az4GQ`?{T!9;c~+Z{6+m?miE6KaTGNWQeIRPBhoY8b +zl+{IDKNa<$Pi=iS>fG3iy8ifT_P-8>^EBu?;BWTAd#JU3h)TLAs2P+7&BV4p*|0EZ9`sbAykJ!s0W6lW>mq}E2BEBg&J5rR7dfs +zZJJiPqyiTz-7`8!>v!*i$^U9uPaYTIw4*8aZz{5h)Qcc>22 +zuQz5wO(2^!(6;A8z;85A9rQt +z7HiPbLW>o8{`a0aAI|TZnI$vx%rmn#(D(dwHS>k5nYZq2@6Jo%IDJ?6IoTY?30URl +ze1^eT3ddnl+>KlD0qVZFtNolTxCL|JQA~xmFbzJi^%u7O79(l*uJLmQVlf$eJ}Q(eQ7_zy>2WVALZ?wna2fTU +zpHa_0wC%4^{r!hI=-&z4Y#PE*At`5#M$I4wOJWnOisLW=PhlS{yv2leA!=Y-Q3E=L +z;dl|X1aDC9^Z&*qaZb!k|4uOq>bNQ@#Bo>#o1=EeWYk*DK;1VF6`4h-4%eWb+ilxV +zqwc?C>o+hv^}DwI4%brme(UGB%I-}R^n#Ok2(RK~oW0ew=i6p1jtXTg>bXW(JB8zX +zj>?rC+fBz;u`u;ps3l6Z!wfjRH9P7Y3Ejc|SF%)~p(a*E4P+wb!1>q(x1rWFXr~EX +zUMxht6e^^xP;1=_Gh?EyPeCo+Jk&vT7PSlRqnCld+sXcqq2a&p%s~^g%g?DyeGsa{ +z?HGdlup-_>4LE4GpHl&YQM;ujM&V#oN6S&q??)Y2$58{lVe3y(OP9jkV{XWT3T*^x +zW))GP>wsG81XRa;P&qLaHIosjoJc|qd>-ojxQbozPb`kD_WC(-I1zQuTtG$GeNI6$ +z3)tu9%poLIu@&{}`>A7z1Lna~*qM5|gMLn9?2GmBsI6x>o^R@e|nV-dWB?j#ByDJZEXo;D$#j(Xv0)IheNLVCzvziiu+ +zQA_t0H8B4(=A^5IYHx;$Tu0P<2BMOA9HztRXW0Lm$s*gZ74_gj)Y_j#&Ey7ZTm6Ii +zG1FNy&@!m|>!7w@3#@^oF%nN6U3*#@SP^S6bTrY3!h`MhQYNk6;+wUl9!U5+^dmfj94uVM3zO95|*b;SS +zkHkDU7xmx{48b#~0X#xI7j(gVbV{N+j76QK^-ycx4z&cEQA={r>RzOvv-lpS#CND% +zNb!StK>(Jco*k9#4N%*#1?nr;3pLYWsBgj=)P09h6FH3<_;XA`&qedCn1>y;|Mya8 +z&V^i;%-Z(DQ0hro1;0bR@E_CwKcd#$|FUV%gvybe7>wm@dkfV4?QQ#KsF{yLMSLD+ +z)&Ac=K{GmpA^0Pz!@p54_<-8C-YaH1rnY89-IovBU^wbX9fL~VMX2XDqIT0Z)cyPH +z^`P@IB7SOc}sJEP9%A*c}#LnY4`)S4&R`U=!cx1%C>6g7eCsP{P6%tW%H +zo)1U8uL5ddRj#rBRj5mY*0hDSGb;Q0ph7qvHREZhWJ^M2`61N6&!Hyr$odgAfGpR| +zffJ6pzof0lSZiNr|7%1|>&V+lTibBjEnIFYT(mum|Zd-m0as>eLreK +z=TH&5j!L=*sHJ{w+cUdAndAyVJx~Z0(vqkVS3x~kAGNj}Q1^Amd^iX-klCmKFGD@Q +z4t4)7)cuE1OK=W#Ufe<*Z0;KhN{$jgn>CL|&7?l+0O^ROupjE|UWHnkEvODpq9Su1 +z3*i+kh;LB?558%(a|!H2y$ODfN3o~&f00|}=k$CWz=aRU1*hL_Kc^qw!d_Va7t_8E +zRS&yk>PgoBtUZ7AbGmc=IwoM1-~623xCTGNEO*U7zQAJI|H%{za3T9WGownVkyl5} +zxH&4+9coQ692W}`y8 +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 +z?DcL +zV(UKU{*kDqoQz?(7YV)dE4m7ux35XIGN=eNK)rYnY9>=q5t)fvigl=McM=teKdtXk +z1NZM|-WQDe+p-E6iOo>=k3=0@6Z^6Ml`IQsSdJSo4(s$cFPMQEz(&-4TTuf!j2g&Q +zR7hWLauSl~e9+3hMYY>P3H|vO3ieGlPt% +zj%ZMIstC!A7WD>4vGa{}U-_ +zEk>h~Y>IUuD%2ZLNA6bCeK&3U15`+#qMmbxn|cORP8C2Mm{13x);mefU^E8}f_3hD=nJBxzWWFwAX-yX%g)MKZZ5$B)EU&B#vf!cQwcvEqJ`S}TrlUSO^H3Apk9;d!=R5_y@FD7B@g8+>WdGV^ +zeL2+jYlqs$6HwptC8*@vhuRHitUsZW^f4+zA8mW48D@#{qpp`i-{1e$q@a#FpreLjb1Xr-GuLdllBn~bBkE%`3PVZeX?TPB +zxAQ#C6`VNVM7Z4oGq6qz*#8Pu4;s{wi&~r6_J)O6hWbh@ir29n`Y$xwwlivNSD}_} +zGioWep(1b(C!^mYbFNIoMCzAt2i9>Ho3;Ijih%zTQ_qBjsOLZ>UkoaA9Z}!!0jSVV +zMTK}CYI`liFg%VM@iA&(bC#Nq&q7p^Z@@@&_fb&C_fh-%g{>D^W`5&Uz#_CK*!oQC +zLF*%H&~kHsRcmkS0_#as$A6-Bm){ECQn^lU3JPHa>ho9kjKrKG}c&QBc+vT4jFQRYhfcS5%gdMO|Nrio`Bd=YEUOO3DhTT#K{ywwPV}zdHqOk5Q;3OhV0cJ?h1KQA>0hHJ~e~ +zgXuA9ARn;_re0%gXZ;oxIlr|gsZ*nNRR&bVv!L(K|9L1VNeZE|KMKoZ2~-E&Q4b76 +z?c3qF9%rMLtnxb3UJun_0&1W=u^5g)O<pRx@N6v&`_8Q +zEl}HQ4C=`DO8Ttaw+J= +z38>`hjonf0dodYfaOGwb(%(=6c!L_4-xd?OG+2;&1nR~0ZTsh_h)qNdI0==6%WS** +z9R(%Z5ma(qLLJFhQEPYu75YC=Ct;dz%zd$_y}kk!sV%78 +za1@Dz>s+9q1K}QOApc@nO#iLz083DBjQTA%2HWFhtcxYLnzbH*ipV+Cz^o?TI +zUZ9rZ6>3|)$4~Y9KkYWNCOuFi9*G*rSkwz7d6^$mZT$U8-I== +zI07}0rKsmNqmuj~Y8QET@ZT3{|L38gZMP8>iLKVNs1e^qt?46FcBkBF&iXp2HSdFM +zF$tARf1pDA21}v;cjo>IsHJL$y51dK&2TUUjdUDp0JBhQzX>&?W2pPC+UxhRCiM@f +zBlSOeehV*e|IRd$;fHA1anThvl?L5;XOYFiFM +z&2Tzu=JQYkJz%|pTB^sG51l<8rz(V?Ce|6t;g_g^Zr{WHufY$6Jv0=i;lo~YA#$JT +zs5nldy#gwUj-h6J3N^4xsF~hIMd*pW{th)T|NZ8A9@MsuLJcqpl?xkO3R>IKs1EL< +zB9M&v@dXygEC8Pq_9v<_;iTH#Rq5*3k`sO*1-%B`T2Ci$wO +zBAkf9+W(^{D8$Q99j!<0^Bt&AzeXifz$r6>U~3tSq`eO6$L1i^5+fO=u%dGqJ@ +zzNi81#b|tu8c?YV=ErP*)JJOzmdCrO`*ZzZ{yTwIKe(o_j|L4O&qeb<1Jn!0Vl6y` +z^)TfnV^dW7a@5)rXH>^ngyi1`f*% +z4Vkbf7s_Hdu0SQ%S&YJ$wjTVmX|HV^U|noIWqo1Ib<^Bm0~O&us7NkHBIY{JC`_Os +z^p?3{11kG(VinAH+k~*Abvdg2S1f^{zwj3k9{x)RY(xF*Z{|NdDtOl{(JEA^pWqQJ +zbdPQ5$7dLQ`#DAehfSz=LT$&L +zs7M7qGbd&v)PO&?4nm!%BT>mY4a0D*_24u1zfQLMH0a2Dk9vXMb2GDa*o%60+==5b +z1S|ewK1OYjrFXiba^`c?iTMp`0*5dFAEG{9&r!SM9qJ&;{DS?jwXF8SjPRp1;7>Dv +zjHnKBqh6E`HNbGx3rnI-(8{P6Pe&cKYf&Gcy{P*xpq~2~6_NYs`$o7Fl4y8`6L9)p +z=77ld(i|kiQA=|iwT5?45qoFbGrck$7Davas-Pm!4D|~t0rgGkf$DIOt$&GnpF5s{ +zl4=Dy960+>Bi{eFnel1V$bUe+_$Ta-k8m2c{l}bik5Dfx_}cs!jl~Vr7vTtudt(N8 +z9F@%1k%+p^eS6`lY2a^_%n6qYD{*5^)XbV&d!QmP0(BD3M$K#uD#GT7)E^v>b@nY +zZFn6^;8c&-mpcbhOLPr2!^fx}B!8opB&*l!n^0aXO1&6HVmmMY{|`bajHf{-(mK?G +zCsE0EA2rigsK})BHyz|bZLe@t`zNS~H9>8|E~o*0iF*EP)V5rKdTuAGpR@k1xsXgl +z2o3M;4S7HwOGweceAxtsxB-?O%{1G*=vYEZU1F9D$X#cOFply*Ri`O}Y +z6;NyVA1c(DvYKQGL(Q-v>NjI!)KVn{d3`@N&tiS*-fUiH6gI(Tcm;pNi0ocx9DYFk +zwj7g#{r?>et8;pt7#iB-@;VK0L2j?_qm-P->-%T3;d#Bz4DNf1%I*=tUZ)G5!u1%H +z&vbkRcTf)v@%sLwwW}CSeLyJ5%zL+B4E2loS#s(b3b6mH(U7g6*Lj1j@eDR8-#z0vk3eDGcH`BVLO&D>h=9^JRf5R>dlIIeSciui6^K>756&#c;O#dn);QJ +zUf;ih1(f1wrF|rRO8eH*US|ykmht-jv!0!(A2J2XdY!R218-wix186R!h?TdHNBvM +z3DMDtX2edknQ?1u#{+v%xe`>#tZj9iN_{?RcNF@>>-#60&rqR%hvTtqWm7+ZUsHdL +zHPD?9WA^{|sI`5M4X{S6*Exzws5NU|#U$r!d_cWzRrBJi)x5r6Kxa@tU~*PB9j&n5 +zLJc^34X^L-fa35i^*I=){r`2Gui#uoZI|3Nja^Y4Z^J$K0{h~IS|;mr*7o{-gf>J) +zU;_@oa`C3a4cMIeb-aj0>u`V(;g7hKdO$rr&;DCWp(_neeUnVx@L#HjQ8PNwz;sZf +zq1X49(Ur=4Rr*c!VtWU +zdfyxL$LuZH|2nhtQqY6pm>$cc&hR*_hxKqcF0f{6Wj?z}sPFv->rT{jhcOgSS(8y8 +zt2C{R+0a8he{1%?Mjl2(MQo0R@oUtJ_G2nMhUxGe2I39WOn$fZlx@rmgHSUohuZI- +zU;xfRy>AI>AgfUyrLAq)|LX7r4f?FUuonW`n)duyfc6Hcjt8KQ;L)fTEI&TTAxQn;2o+%&!^@ilpV8@bd@oQ +z_9pGUzMtCwbs#E~!%#oV +z$Dr2m5EjQ{sNDI>wmY57Hua)r8jZTYJ?g&B$WpjYKMI=Ra16q)P#rBoeFaycLiimj +zbSF_SdSHEodf_wFE_#mz(dld^PzaUeMNs#ZLnUVotfu|nl|n5VHdz1kUEnj@#r~qf +z5U!6$&14-a>(8OK*EQ5f?03wAQ3)o=YN0x8ipr5rr~&rD$E?LbET#S5{&Vx2Y^HTR +zmZJSIYIppFO1jXV<~LzQ%tpN(Y9<4*G0s5^@OM;Fr|o4TRvyEtw?yBX+xkLu_2Od` +z^e2*^Q8Osl+ib_CsP<{79C?H~q67Mv?bif*QSXn-@E5FyBl|KylJgukqJFoZv2=g) +z!(|-i;QFZn?0;qJoq=B89}=?;;*96QER3ezZ;1I5OJyugy)P>Ct5D~~H&_{yQAry% +z)O@}_#dzwcQMr>T(PV!pD*MAxIaV&wHOUl1gI-+C-cTQPP_#oOVRzJvhT#mHjQZh` +z`wR0Yq=BehSctuG6YBn)!%TZ5#!`<)O?VjA#cy2-n(2E~R+szItZg)Ets0{S)(bU| +zp{V;Nq0WP8s3co~8o;;M4UeF5BVxG8nL4Ol(HoUpvry-Ody;~--8s~Ze?z_K8EOU} +zQ6UQ)VRl1aR5pjB22jRY8}(c})PdF;LvRc#iC3X==rZQO7f8RZlX|4-I3KE`!l>+y +zMqdQ1y=?mgR7Xp#-=ZdP1T}$cr~%$Z4e$?J_psD))H9+6*a8=8|M#SzU65*&32_J( +zpB4^+n>RBdu +zoeQ{O0&CxnLgGZPGa9dAPi#5K{O&)F+HMsmn~zjwEJ?j4DujusvwyzzCTiOSPcd0u +z1vRnOsHNy{>%;B!*)9cT`4-e~xihFU{4Q#SDW{r0KomgDbQWqK&$k{#J$Dy%0{)9y +z($dq+0IQ&~z9WXW&SAV{ojKq98L;sJ^XG#z_ygBJS!jNmrCVga3CnSpo?mQ|@g(kc +zQ}Ew%E@3;Mv&RQ-{<`*~+tFG`m2k|?cj00DikIF~Xui=j5qW-H_Ir5%t0#REPOcGYYfyBB=XIqXt$1)lpT{HjT5k +zKz--CVO3m+`V-MDEQV#*nLm!Z2^7L<*ok`aE$eTnC3uMC@exK~=z4Qs9aP5+ZM`YR +zQg3DJ^HBp|f*RN=)creA6We2S`ER<+3s0eDbk5%Jqiw&5TKiw^^(Uwoze2t6o%JJX +z0)88e0jTTgP&tqhm1{Y$IEMSKH|2!#75Ezs)C)SGj@|@R1V*D~Fb;K8&q0NBD|W)a +lP`jepM)NJ0GB*C;?)ZZ#Uf!QjYo#Cm=h\n" + "Language-Team: \n" ++"Language: \n" + "MIME-Version: 1.0\n" + "Content-Type: text/plain; charset=UTF-8\n" + "Content-Transfer-Encoding: 8bit\n" +@@ -6832,12 +6833,12 @@ msgstr "Câștig pe benzi" + #: modules/audio_filter/equalizer.c:58 + msgid "" + "Don't use presets, but manually specified bands. You need to provide 10 " +-"values between -20dB and 20dB, separated by spaces, e.g. \"0 2 4 2 0 -2 -4 -" +-"2 0\"" ++"values between -20dB and 20dB, separated by spaces, e.g. \"0 2 4 2 0 -2 -4 " ++"-2 0\"" + msgstr "" + "Nu folosiți presetări, ci specificați manual benzile. Trebuie să furnizați " +-"10 valori între -20dB și 20dB, separate de spații, de exemplu „0 2 4 2 0 -2 -" +-"4 -2 0”" ++"10 valori între -20dB și 20dB, separate de spații, de exemplu „0 2 4 2 0 -2 " ++"-4 -2 0”" + + #: modules/audio_filter/equalizer.c:62 + msgid "Two pass" +@@ -7562,8 +7563,8 @@ msgid "" + "16 no padding\n" + "32 ac vlc\n" + "64 Qpel chroma.\n" +-"This must be the sum of the values. For example, to fix \"ac vlc\" and \"ump4" +-"\", enter 40." ++"This must be the sum of the values. For example, to fix \"ac vlc\" and " ++"\"ump4\", enter 40." + msgstr "" + "Încearcă să rezolve câteva bug-uri:\n" + "1 detectare automată\n" +diff --git a/po/ru.gmo b/po/ru.gmo +index 8a6ccf51d16f506eb5cbcb1c710f6df9eb436593..78e8a12f9bc73eb60377c29d06be9173b4e70c14 100644 +GIT binary patch +delta 26955 +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 +zIyXW?cd`Q2|EusLx*)CCTrruGV|y0U#? +z=Pif2P8ZbEH8O;T=4zJnFlvE_`=x#0J^Y-w0&1%Mz&u!XnUz_09H#B~F*g3n-u*72 +zswUBLdtJ|uI&VKLf|GE49O`ce4SlfZ%7E7zpJHchxXQkee2uPwWO#`eVL +zQAt;Nwaw`eRMjj%jpSaei#JgnEw;w0XC0)af@iG*P&M0}J6UJmZ|Z*5<6~ +zx`6jP+1~}V(#34BGVFm-#Gm45+>9FPLf_hoR|%UE_dregZY;_5y@xckaOB=-W!D?u +zB_4)aV5YnH8>~gV7aL;YO#$ydwnJ4%-OW}7olrwO1~n3!Q2Woj?GI4r&H5enuLCR6 +zkV8-l!)nyf9Y)Rd1GoLX?=8zqqsp!e>ZNlcCd759GTer_@HD1jq+YxD-K{o)<*+FG +z>u#m~C(!ta4Vt6)+iXsop;odjs5(82?eHF|D(d`T+20i75yzrB&<|BsBe5|~K@Isu +zOoc_Z+l^I6m3yD<5&P9@f!mR4hm~0=tjGa}Q6rORrwv(oR7cvPPPh}-;7QDjqkgm% +z^lNNRyulf7m&NT-BeWH@P@Rg<&;pTixBWg>2XzOtQFF8m&)^;$h4c5=TK~>oJ5epH +z%Jy!kGG2=sq3dq@ebi7F{mII&2Wmn45H+%q88kH4n@~@&v#7aC__JN02r90RlW;g{ +z?!A3x7S!jepptDU>Viv951&)0^N07_7mvKC^EE`OC*qBCJHAG(Xva`Pc^OqEi4WL{ +zRu-d(o8dMbhI+~sJjjnrBw2OT5}Wm~z()KSd{Op(%p-*}oAV;uX}I|G$&g@jIv+%k)2+^D@|r +zxC2Jk)A)tPR2=oIy>i7nWhbnHD$7Br6YfQ=;eTKQe2nTymD2&Q1NOm_c-*=4H~V7K +z|94C7YpCkUea7C5CZD1HN3dZx8#E-P&RV%OMGe^$)DpWHwf0}d4I7rhdZaDPPoMF-;5fegQ%zCS=7{}x^0i+e5m!Jfr}$^X{dgG +zz=C)OHS`(&wikqIsHE(OQ8*p7a;-;|(>*MKudoFcy<_K_j+(OFsQnL|IqzCkv^QD* +zY3S+q4Q9gosFf+nJ^KTMLZ}OUfvWEfs1S6T@YDDg$=KL)xmr~!ib)+zAe|yx( +z3`CuO9LB2tSJ8-OL$U{Up+cx3tAHBXR;UH3AHHHv7oqBS!9TXtF2}UQ>rm%8fco4m +zxBWG0ic>$b3zx@c#GNsL>VG>8t$h2iCH{`e`ht&b$!v$Z;5ZyY2WDVb;^5PO_nf#V +zYJ|G{Yj-*b6;DLHf_;V>v2Ccw^?s~@cQI0vMzQ~F&LgNPSdH265b6Z?P$x|O+}4H6 +zSeCdRDp{wYKDQN>tiPi={021@30~L&lpQs)l~Fg?_67AnkH%EDA?wS4SDUyY>coqk +zhfqC!jQWcRWnS4!Y3JN6OGAy +z|ItIGcATL9N)?P7^h$A|$2gMh`GP^e17G6};(xFSo(%>4l`vm8=)Y);!TM}JjYHz{ +z+8rCN1(F&6BjRc@lF??aPdu46}>=}Yb0TE+t3+R9)nQd1;?Y3W(sQInTvXwt-<y%9uRJBCBdNecw{ZTs>q3&!Q>IC~x +zCpdh)qji{ +z*ao!@j7H7nOjHM!p*pk(-0WJ_{da;!s@ +z;~%IFJj6s8CzsWA60A;K0psFiRF+Rgb#y7V#~r8(rq3Pp)?+qQhfZM^)qmVPc0ep@ +zDeaFsU@~^Wt*8Ym!~2%SHBfil8L_89axz-PobdyGg)8kO#B;8!cv8U-baksUTj2MrD)Lq6OeiM +zg1Atzp!X%_Egtm#!{g3_C4&AB8+%Fyy=iRkR*L#p<1r06wsepuA#)#N&c!LjnakLn +zt#+PrzDC_)&ay%O4X6w%>zkrRqBkn(=Azb%EjS#{qpGZNIqF|Kx|XvKPC;eo7pU!r +zP(yncwX!8DZ^;^i+TRw3;fENP5qXX|@l^$TTxY9f>q8%0#c`LhI8Lfet_3K^$`LD{ +zW7UHGUyC`9S{kcVxB737y2B5gpP;H_C2Hlnje6?ks$n@)50yjBQ90BP)$t`*5Rc+V{8H~nAqIyC9{XZY-0_{iH%HW)PgkL#mg`;@z1F1oW!K6|C==l{|;B +z1bWTw;ZhPcvyJvxRkd1?DGSk2&xn>RAzNNrzPbX=tcN*-%3igSyiOr~_M~ +zI?@|8BBPMx^`>E3oQ3glHR^L4@gi==lQ_SXeXd7qJI_ee0yPEw=l@a~x!AB4b-~}9 +zw@_>ROVraa+{TvXteA(mA*w?kIHzNncnNCgSD=#YXVeW`M}6)IYURw_mio`cl31W^ +z(ElBvUVB@!523O)R|oS$RL9Oc@1aiYbqxA{I-Ui!KNl()V^C!mi`#G>>V>00r=T|- +z$6y0Y+?o2XPor&TOR9CK9N3LI(I2P1OhPvC+usXIU +zo{1Wv2dLyr(Zi~$0;&qSp++b&h=w}w6{?JW!4N*g5%>%>r~P{dz5O^0^{!X8m)%(< +ztWDeymEDU`IkOLSffLTRs16tC9rXXkbR*<(9r4=GXvvQLSPGBW4lmfpvNSE~#Q9Nk +z*c4T+<6OK93lX2hb{My>+0nVjnYmxk|HJ1o&f8c}_1~nwt<4iqBe4ZF=a*3zjyJ&S +zJwIxWyP-yE8!AUGxH$emE6cp75h{pfu^1{R2B8+N@u;WcTuiU}-$O(7e*sJ4W7Im3 +zcaYU{Mbty47V5bEsE5=fRBkLoUEq7S{{ZUvi*9>huuaK3sASBHO7i>|QKJ?O)nzy5 +zC+>iqs0*G&4gCYu$YdN6^#8!IDr)XWx%eQCCVq_?p;1Ha_@!8y_#kSk;tsPBC_2o& +z|F>hqV0KJIUErlN>u{_8+SrTj%drwBA7LkI?3{qr*}fHZ=WnqZW*=$q{k>7!52L2$ +z0qQzWMpFOE(hQ?)XzHMbv^8q(`=WBqThjg8flz@;K)LR2gl+2Dly7kwjyxqeW47QW+Cr4b*!>6I607 +zL3Q8|s^iyCH=2$c)}7bHEf^UD#AnAK)R27OT;kk=%GztFp8tay%5>u` +zDGQzs=^-!A7BR8q#BU>(YVDau +zWY1A|kbaiM8J70%dtN(|}-al~;#-C#@My>sYKeIb;hsvShsHyw{)sa;g +z5BEEdx&6PPruIUFMq?WHP<32!t_^WrRFB)>OC00kk@IXw7oqNWBdV^?pprA*eCt>y +zREKKeG#rR}qk4Bw>#TG39ShAQgwp#LYA6|e^Je5{XGQAt*4p>=Esssr;- +zpZ^hcT*5^`|8GjQ!d}E@a3xk=Y~OnS#v{b-miSY|{4cd0wR5h)x*YJ#S>+3U?TSOz +zqMnXLmRVN!Ms;{2uEYPiIP#T!TV9Hq%D{5_mYfrt5|6}KJc(UZ|0P%0o5>RAUX05D +ze_>+0iACwa6VwHBud;W+ny4Y~hDyTG*b`^rHGGL#@Y2^d)Nxi@k{3iBAA|m%|J9=r +zU_*OU_IJiI^x#vR&xKEXV{b;?*V)5m87jMzueT|vidqqSq23wCp&mj}8?2)+MmV?yGhs1>a|DmR*7 +z8SIE!0hgdgbQ|jUgQ(+wMRoipl5*Z#tbmcoR=e;XjAp|r)QO%tlWns&H);ebqdL|P +zL*&M1E?)S9b!acXX8&>2i2SnM&i^m!ya{&%y}6hTwQfXq(9lYB2bF}cP&wf3w4u#_ +z{+f*{ryi&kZ91yMpP^Q|t*8tB=3@R)sei#ts3|ImI)7`_dD@#1ZyXKvY!z0=y{HQ& +z*yZXSHH5uUb@?Hd;m$wW6ZGQX?!7iedw;SUIf9zwKQJFA``JdUEEeYY&ZzR6yH6v= +zWUQvqo()^DBBtJNKe4pHF2n~>Bb4`mU8pQ-A*qIXC0m61aX*&EsRx7JEj)n3al@gY +zw+C|_4tjU+HY(|VJ3>w<86MJ5HpV|{Ke1#-)prY2(oDw^xB@j&7g5ReFBZnQzu2o* +zF|5oT_C{Uc+hex>C@Oc}U`xz%+(u?RMw+u>6Ac}Z@Pz%~SR6HUi%|>GQ5U~(<~nKn +zo1v0uyo0QD=2$D`%h6)W1$NmJJ%(*;pCZq2}@*)Ewvi&Gt7% +zC1XEShsL9h|H^H@iK>oQs3{8mZs$*is*)_27Av66(=tLs<<=LqpnQxvaGs05M}6QY +z)Sds~w%^4t@pHG|J7XtI=gg0-**{}kYkZHoz;#qdo}n%fIA?Q} +z5R(yS!T4Ahb>bMTfO9bcp250!6_tbq&fAJu3zcInQU9WH0&?RK@6sRElNYEV%X7ij +z>|&@Bw8CmQ1T|GVQ6qH1#rIGTCGVmw#i_9pVPh(f{{9-eo&+ +zIxNKjd9fjO!<@Jc^-bprYMp3*#fEw}W+pz3#qkO10`Fh76|OE;As&Frp)IK6FQcaX +zEuM%l6zQ*72k!i7zCpcwrufU2)U2p7tcOaP(Wp866g6c(p{C>%YJ@JJM)Cn_U3r0> +zG0k=VE0;G42NCbZi0-i14f|QFEh@g_;#4$^{6}Bjr;I2 +zCgH}G-?kCk^tV+@$~!hCg-|y*;12cw8;x;n(1O$QuJwEpYREoC-RTbWJLXJv&*nVF +z*$}mk#G>weI%-{*j{#hZJUYB@QR~ZQY=^h+MXauC+_&uPgtgf*1NFi4m;^6jBD{-b +z@jr~h;t%ZYw>k27@|L5fVl^r$H=#!C5Nf@+jw*=sAs?) +zR24kM2AKSxptle^;x>GZ^Kr|gp#Rr&>p!*}_#1Vh*Qhd1{luQG8Lew-4y@+@>Xk=x>L(~V~d2S0(8Ei^i6Lq1bs0;jrf8Zrlhqu45p*)OQ7oMUIh +zjk=*h7>n~zW&76cf9H*LEHC=s|4Y!&2g_k|Y=%mn_1FaWp-!0Yt(~YWYKd-ynv(XY +zIqr^H5Bi~|Y%HpS>#z*&aob-z^YBA&L~C+$8jW!rR>U(Hh3Vpi{J$(#8dX+fu{3ow +z6?MV`fe@eJ84(QmBRC1w@wvDi*J1!;Lm_|8dpXCWrfP906!C|42OCtsXWRj=aT;;z +zuzm0=)ClZEb@Ymhi^j7Hw7__5Z-cq83zo;}7{X)DQ>c+Thq|FF@ggDrsdk4A8q$}j +z4o;5e<#U1`)1HNhC{j|Fip7RHOHp-!I8 +ztcuE+kvIxJ$F`XIy^#O?VKDwcd=5+D?DQf3A#@CTaeXh4A>_YU^uvzCCtO@8qs5;% +zA7f|sH_a6C|E>5Bs9edB*)I4QYHA*1H!K?!@|WP{sIpEL9r9PyhB$?I6-K7gD3m4S +z|5?wE*owGBR!h21u?um$Y$5+;vNvjhI)uG3DtpNPv*GEemF{2chwXEO{J++B0zV^; +z&1uKIMjaQM%Z@vdi~1kIhVr>>=zhS_#KrPhycwGj7kJ-3FcEd(XQ=I+^M?E%pSEL8 +z;&}PY0;rs5ju+$b8xiV8W)=wfza>4v4Q&6c5cR)+9aW2jyxDje*Ro?!QJeFq;vxS# +zTtiI9{v)Wl{tJ~{!4j5~@1k-h3##tRVK!`n!*K*Ec^_e3e2e;g-bhJX3d^G2SX!el +z)X#07f~xOTs5hjYxCsA7y>w10Wf$6o8i7Ai3r(WZ78iB4agKMcbw*CR#w%yG82exy +z)CC6P_xKI!vDvYVxe^Z%-$DJf@?F`G|4MZOI}lebXYoo@94a63ztVNXE5s*|1u5cv +zTfye^0(N4tu36D8xVDsb}`!pg+Quq39auj8n{S~Q-rVLJYd;~Ll;R&N;czX!BMP00q-I&c{EPTA9XRR-B8oa61;m+D&Ze +zKg0^e2V5MlX~^43TnBZ*U^DxCW7L8*3{`e(uoR|j9`avu>!APdf9BH|%8p-9KdDr1 +z5%RzBRBdT@vJbW5y+$p~gdXs-)y3AAQr|b +zT!AX@11>&~{>VgV=#JBq`Z^#NY9z|w4s48d=s>d0tXRZtx`g~+yAyY%BW&M}dTgKQ +zW_R|?869hJ9n8Z1VHk~{qt=I=sAP^@r=bg{?rzzf2i3D8sBCTQ; +zkpJHQabGLPZvAYe#-g7?s0%Ge&Fvx7dCs9f)NX(J{&rk>^#A>TXBv9(7>gSEsi+r^ +zWtbl?V{S}3AmqKplBhB*IWXjZm1=;>{spKvrS+)u9Yb~Otn)hRbB|ERCmh7W6rqus +zhF*t1M0H>(>I7R*S-lrEhbOQqlo*Arv5eeGuRM=dr?d0Yt)bzA7dTsfLdyYqq6ry?2Kzr +zbDcC|cbXZi6UR8mVR7Q4&bVVk{%=X8P$M&TEIYE(Si}bT6Y7MwP|5Qg^$8T`=b$>a1_K!RorbdZJnD{~ +zV=|1MU~6Hu$I8UtzM9ZC(6`?H{9ZE6Egl<*I-kiThxC +zJmGJTkj)?4iQAycBNjE6qfm1>4|V5TQQ3b3b>cKr?IBYOrxG{B8h8Z-O-=f^S%fE +zqIj-d=sv0{dd{;qr{ma{xXgTe{Cv`G0Nymu1wy +zehe=6RmlG%(|OB7-Yw#hE0}Zayej1F!~S1W4V<{xnvl1j6O>yU@@8OgUC96AyV7oS^8`X +zb4eVt)xOD0+!pdCusy>Me6he~n3w%yw}<>cc3ZcDuU^F8>FtGUP4CX8*I1c!`^cKlzo8^SLUgLf-#4&#}|I_Y*HYW3SjjWV&qG!(;}}d$?oGuF1YJ8DH__w^E +z5Z^*AD9?E5u7~a7guPyDUx%84bb+v6b{}I);ulyGn*{m&b1;o1!LV|u<7%Pae41hf9E3X0cc^E~{`irw +z|Ma`ah5~GOh50aV0y{w~Oh()lwc-syy`n9`Vz?QDcpC@cebiKSNN8qAWS={WdRo3k +zJo@;l7{`S>se5ri!`CplSXH^;W%oDFQV@B7HSCJqB@WD;Jmj$V8PPbup;=`zS$OovY%k_>;K}jq`+#ct~Vd28+`u?9Qb=Y4b`{Qm7 +zD4!_8mP +z^}Q)H&S28_Y_4yh7L0o?4y3mcNQg?hrl@zfsi^MjOy@e?2cPdBbqsbjX;dE +z6Y97r7*W#9rJ*;UuQ5OFL|x#H^8qTU9;1>nNk%Kn!lRU +zzLzQNzd4n|yu<@CQU98&C2Y`%&Y+UzF1Em=ne79ysGq#8#ryZ1|WBney13tahHqzHCqQzHJ|g6^Oq< +zUFa@qMJtsz?EfG+8}&H;8+E~Q`NIBBID@c0aWKD~rwO(uo)Dp-1Fxc<`>6|r{a?E) +z77Y8p;XcBlY;Rd8?7yC$ENnykA68*|(IR1g=^art?7x6q#p-cc`-_GBH=&#*!~QQR +z%ds@qd5S8(f~9O}j?|-ARs0w)7T5-AM~n +zUAIB4Y@;w2ZopZ1)@|=m**d%!E3^F+DksuZvGrmAYUTR?H3jofH}WfHQvKhip*oFU +z)t1g|s18*^m0d%O#$L|pn3Z^g+kXnH65m5zxJWhIKOOb?jn1Q}b>%v0DqdnlYjvvX +zcHu&(vZ(Lu=eEy84cR)k{SW6$XZjj;!Wh(3vN7tyBT>~e2lHc~X4wDNZ-r4e?A47I-a8$?UVntk!TBsgk6y~mL$JIj3ZFki1<4{ZSLevPXa`9eNH5^0D +z{SDM({dL6c2-dTeE+gu|2AC6jphn~q)Wc^RCdQvpb9oY#D>qQ(`4qJx#;zw-8Vhs``@iR}LnYyJ)Pj|wlRd1eqH<#*F2x1TQk|)P&FwiFT43Iw +zvN@`Yy(-0^PS^*PY!gsZv=H^V{iq!H8+AuXx|+pMBhnUi1Km&^-;C<`5md)hcBB4l +z)0oxGE_4A)5I?~xm^apvXaFjU51>wb%EcG(81Zd7YV|Gmsd&s=NYiz&LlM#tS +z)$|Jce-!&~@38kH+c);1{}gnUAXC8pYp8F@?+!Lg +z4zUxp9%`l=#+|YM4F1IDn~n&32Qcl(uosW*mvJ%i%~AjV{Qn^AjfuYKF4RBXd{?+ +zlC2k|PzzL~1`Q=gCsfi5!J@bt3*aTxui;52+bdOV)XFsgN8oVOJKiGEsOorzI$@lT?F1n#Nc;K!F4PBghr>}HjG)%^aTtv=-S&;BWc(g= +z=ewLgI}c$3wjV>C?~L;js$H|GcchCowD}zxd +zn1mX+X{Za#aej#!ne{H-iu(LM)cKC0K6hdU^`DW(88$S>r|y8dGwre45cPrCsHvHU +z>cBEo(tVHW$geIwgB^*VpuUbbn`Q5Shfqlv{={C7Vc&uMUl~Y|zVQ_D^le +w>@sfk$w{kE#@V|1WZdgT6V~b2H+D$J*si6cCQT0o_%FzRp{>(H;Uv@l4^6%EIRF3v + +delta 26944 +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 +zLdn0hhP3{*qyh^Y36Swbbn~3r<~3 +zzAH_>qCp$Xd3WMFR7V0!Y|WCPw$4nbwH)tUjQadG)P=90Ivo7W_K_4=l6p>5dneTA +z2coV&Jwibv`4rXTA5j;)hRWO6pWBGzqn08!4#hpFbSt>j9?zArIrT268|*_Z?L|~} +zrCny%EsVNPOH?*QdQs3?edIiV+8|z_I+A#K!21-7qL%6m=Eg!REX~^Dhib=ZSYxHV +z`<+K+jkn5P*R!Cm+XV~bDEvAW`L~IJKG=Ruz-x_vU}vnh*1nK@iJz$*3*eM>7TvqB +zJ@wP5peyi&t!Xb**33c;U6VB-y +zY|UzY74R+*{Vh>DUCc&H!*&=&eKL;5b*SrQ-()*pacoMx9me1`EW!P~I~25WWZZ0N +z*AY`v{{XeYjCb{ASd01&Y>2V81iXjX7?mBBwptc6M@{h{)J&{J9Y5{bZ=&6sHfOT)Y`p6t!2(5R$Fs +zvA(q(tq?|0uZ_F#1JqM4+jso9M39w1ZLw*-x7f*v)v1@p8aM$pvnNnrK(1mQ<^M|x +znv$$P*pwGUUAR7KB;8OWS&SO_DZGJ?@fx1}(PHN76E+j&PFlM4M~(a=)U#ndDo8J) +zX7&aqQU1T7ptVkT%Azulv$=BuYHBw+FQdOiIGXmHr|o;d8hlLsB5Ke7_KbD>2I~6B +z&)S+7M7?1(#mLtbzM(K3`=7H{t~Z#Uddc&amOW4x+=1G|&tL<*hw4bl3jwbKcEU4w +z#JS+2eX;3!$%6YbDtj_swl|~Em&yO(G;E_mQ>bAZA)#i3Gg46uMkxB>2y@fOnS@GF`VdjPtAg +zHvB#gpnU{(z&~*c=hwXv@TTIWoBRlc9e!iS#Hc%L;aK~3i>;1#&Aym|&yPgK)SL(f +zP2mxD!k?I%`YTt@de8M3wc)hHWZ1_!7Ine-?)W;?4DCZb6;Gm;F7ADM9A`%D7gb$7 +zGM$3*{%efE8>p#I`iH$Bltyip%`ghbqjs*9sC2r8#qkNYz+4aPdgD<`wheXsw)6cz +zEi0Os5pM(qJ^hwpM*I!6GsXVP{s196>P8=<@_Q93UALhgR^OmzG^4|I}_=1e;NBf$^088!2e#+l?*pM^w~j``dQL#;6+(!y$BF0(PbT +z>RG^hMZNuV>v+o-Hqsub85@au1)GMNv9C~%>pfTlZ(^h-h1@S~%?G2F;B(ZLydQOe +zTc`_$UfI5o0?Sgbj0)CqsLyRcrPq(B4*!i>ivLg>P`cMPvn5aiZ1kG^Ur1rBYe@5N +zz^hHY8tTIHocmEdzK8mY2nFBROKF9-7K~T10>{(+XM28Y>`r|ps-yAWnKdy#^~v}x +z?$G!B!xTpI{YMX#3bBIzE7dD3$&K#C4*I{@WDW-X4t$2cbKdXR1W$&7{!W-V9Q0o_ +z24Q{LzsDi5dF_r9^ezYZsU=>}&xY;^gMJV$M9s{)2nD6rQEZEk-GO?Eg5D(Ry--i9 +zC(cBP?fg8bXm5_%lKY~fe3Gj#a`nxwe$>^kp|a=^DqSP*TtkZ_*0UZMH>#R`F;{};$NuqQ>C!uIZ$g`2$dZju@HWT>dc+QG+3*OpW+_rx2V+q6>KKKcQCTn%wPY(%pF8B*@1SNjm^$dE +zVLXgd{>P|*4N?2RK-5}JM0H>xszWPK8`D-?h9}+ezG;H~7CRiZrK=WK1MC! +zTT};=rVaYv{bDep6KYeCEl@Y^in{SI)EAKns0%J~$Je2@(7jj=e?^TfW4fUKM=)8i +zHT4UqppHpz=g&ed(H2zx-%KBj_!~yz_w543QEOfX)zhl3-UT(KeNZzo4J+be)MNP< +z?1c3*1pR$r3o1DOMs2k`4J +zbT?|GDKiKC?}Ecn=N-XlJmcz5Q5|`Qnz2k-tR92fq8p%sGct^VKKL1`rw36Th@Ca) +z|8AcUb%FG#XwU1cfjX}XDk%G*_V}sJwWzK97;4RvX0sWpfLh|lSV#HahQj?={OuG} +zkj>9w!Lb6Bj%QFExP$TWA5>n)&KdOI?~7t=>Z4InJ{Hx{1=t=pp>CKYSJ3+!)1o?b +z9J?t0Ur^8qZF1XI+7)%eXzYR;P#aXzJQl@eQ6uh%iiwe^V4aS7bNUjs))!C%_yaHD +zJM2wQFXavTf6J~?0cM>0dpjuXz*pE8H^l_K%9yEO(EpjNGj^u_15U>Lg@WFAW^4yG +zqF%B{(Ek&V8Tgud_M$;=IYt)?dN1*ab6@eG|HH=i5+0AcvF+dQ&iV +zX>&SGrJkaUjqG#hapzOi2;VOo^xuFAqN2VQY9>0Of^a%&zgUmM@H8sRYLp}Yb)Z!_ +z``{QIO|vYdF)n3VTxDi%Pp}_3c6}FcJ0M +zsO%Vl>hKzDfQM0Oo4kQtH!Er;+u{Noh(GE6aT+p0*6arA#_u(@5k;deP~F)Am8Lz> +ze@bFK>Jw41a2`A03yi`RO>9FNj;b%j1h@-zpJSLv`G1Xqg6sim1n)KF-Hi@qM~!ev +zGaK=GRPY?Y;`kh!VZP=z~rl}+jaV(HmEV^KmQj{ +z$VtO;)D3@d{({=$AETaz|DvATY1#z+*Yj$q4h?XQ$1wHzsAs{a7>&D71Gs{@@jhzj +zOwpG7&&ZaTwQbP<9iVc1+q3thqBcVZb114~r=7P@7k-W*Ox@9rXFvsG3@Yu~;4Ykj +z>Uh;oL2o7w!Uh=XH!x{@3hpd-Dj?Osq$( +z`32O7-k|b5%K%&B)~K2K3Kb(~UHvU8Eu#n83}wTz)N`X^q6cc@8jgB8PRI1h|LqjC +zBb~((cn`G?L=UojE{1x@lt-P{74?uBg^G=Zs2hCgj_*aCf6lePL@i0Y!M0>6P(hvr +zBPx`qpuBADoa9c}jJn}T)YRWb%}lZ(LH`dNOQF`jzpL-V(bS)!W~l#AJAVP{$Eba% +zrFwyyfm|QD_y5Kp2K_%M9ErNYV`rLSmj4y7H|>kC5{8D`g=#oQprU^RYUIzb8m1dz +z@BJN7?FUf7dmDA1`yJdQ`!Kv_MK5NF%6ZTTT$ux2PVeiqwL{Q-Pr^C +z&^{IQj`#xOV$#v}UXTv8RE1FKSvf*MH|&av_F>Lhs5M)K4R9l>Bi2gjnOZXF)PbFO{f +zBzv9SgX(#k$(BBYoU^ey?dzR?qi$4silu3L=LmcqiAxPs@x8r|<&)iq~=5bi3jF89{Fa^{ZGJ$IJ}+|Geffs(r{TTgo)EZD4It&w|OQ*xG^q +z^Zy$PnP@nLnzDze5hR&o^&+SsZHAiao~R9I80vHLQER>x^>8_fijga*HBU9ymN*Y; +zhKr!~opy7{e>IGt!H;%S4>zJ_;yNlT9-_Y61?O2k4Jv5!qdL|UmES#3PsdqU1UH~M +zcoQ|SSo7`kSuij4lJkjvjieh5Q8*4Y@)fAP`dd`6{Dceet#jT2+xv5TY$I=silIKJ +zrTiGxktG-h_c#x`<3FI5_H2YgV+yxWd0gy&HpP`tJ#L8q;viS=x6r0^E^5SUPBu4q+R=`qrYhy9LH|!Ki((DxGqFBiLIqj& +z#n!Q2s1D3PeSQn-ymvSX>o2h_`vk6`Ug9(R*83~|K)vzj{u1&2x72#n*trzza>4^= +z$z}Z76^p1vJsoqdu&C~c>hK!;3cq#r!7J_C@&eRSzQjiO{wn)Ts2_Hxehj-R|MRW3 +zHF00)|&qQ3=}p$C)k6K;HTy}cQ={mLFL3sKP>`r4MD6lzE8fO=;fhI$C4 +z+-M!0fNQBQbJo~o-y0rdMEM+Vv!zoSR9==x^}MyKk8$-+QR%qfc^;L9_c02SY_W$_ +zK~#rYp|WeBtIu@x)tH<1LtDsyo$!DLO>KCqMSpfwy(sDiO;J%j3U%Ri?)V{8M{l4m +z7}#cMn;*4*R6wO~1JsMh5Y)HdwW!zmtJ@+$?+S&NG-wUaZ?}!+cT{x0Mm?OOcG%kG +zLhWcpP_a=H%V0Cq4mck*qhF!cdLQci?@%4ThJ>8=3@hN^$WFWQc8sRsIO;-wID@;a +zo)I+zB~Tsff+1pKnyb&*Z5`TyZ#jMhH6!2bvFrbdy6!vtAEw=F`$l9F1?@yPP(kK%b{3?k$-q7=*7Zq-`EoEIBWwsh+5+_m=A+TY{m*u0upTR7{A2bLOI_?jeIIIuqQA8p6~d;}OQT-N=HfBjgQalncR}wS +z?!{ra>UhvQgc-gMdJphAD(HXsftXM*+@YXoe2axJ-H(>vbx}bx9*g6rsF^y43a&p< +z=fA*WnEM1IT{8uzjJ!jwPHeylgr?3YG&s)d( +zpuY1hLM_EE)Ea(|dM~)<>W`g)3wAt}GnccBv%a&_1@d1P8bX7nb_!O;6{xlR9ks^M +z7wvd0R6ch>b!a&1{7+o_HB@#yK`qfM)b)dxEK5>j8tO$+*Qpnwpmghu+E7$iI?ZtP +zFHs-Zi5mGC*M1Yj)E~Oz&ruglblJ>;t*Mv5R=B|V2(=WoescLg!WF(m-QWtUBM(qF +zc!^r8cc?8j_0N_CIZzjl!3sDXy9+iIgQ8$RXX**mctU|pT +zDu&jh&cA?K@@IHD!c-)=WgWQjoB22D#UfMUKE_fZ+;=ia4 +zth{F<+lEJ}U%-S6Y|(w2v9*6#w#0d0OOhQmz-|x7|BDoc(V)G$-k;Xtjt5N&QI&6p6|B6^%mwjl_*&J(gU;^rc +zr!gU($M|>?%i>=cg?S#?+ixA@@#HN+Eyd@kpj?ZZvHht1;tDFAU!k%gS>&;etQ=~M +zyP<;QV=RK(QCaW@Ho(x6ptl&C;VyiNpWynZLI1DmR{7gv;8)a*o}$t?{xf^JCc_%k +zTVY9ztfY{HwfY71=JN2lrPo{hntJ+wZ0&zQjqC+xLGOh<*R!JP)lpI18?{uEu@`Q{ +z1(@!ob!;Q5V~3IbBH~@8pbOkVeK6iD+kgsUQ|jeVFCq(2H`s|+@jR--8(-U09zg92 +zf1qYC?!OibIZ-oN*x3V>mY?BpJ^yb}(1qH(u{G1qF +z_tw4Ppw4fA8c+}Hjx$hc`^+7W_n&nv8vXD8c`4|Fg|Ru-Mg`AGY=XN{7fkfdE>sA$ +zMOQ~HNfXo>w?(C67gV|qL3MBiYG>T;+MhZz@k4J!QCNpUV;qJR@dQR;qF5pSFN+mG +zrPUBDMIMbsU2tz8k +z?FJ2+(#NRadF$#K;)c9))N`Yz@-6Ckl6ZE*7-tF8QdB_2PEFJjc1Fd{a8$=WM#aJb +z)PT-MDAc6z0`=Bg@x74$=X-BI{&sU+=dL!zBhp-4Y>i-gX-{HoPt-~@h*v&YGPvo +zDi)?Dv4MPo8c3X^Hh_Y-C_qdg1BrP5qzKuc#iX>6HA0P`Eh@-{;wIdRTB0tg?7RV3 +zf%+(HiThDEPMtdB?-$uoGgK4R-U|C*PgJ&D#!SlpM}C2S>5#_Ot^jI^YGP^ZiZQqx +z3*kA`REN@V;Jh5YXiJ#jbnQ& +z6jjfj!RnKo_pmeVwK9hMe=Ghq_NAUalihF{YH99aH!Ktt^0(kcsI(47hx{G28cwCY +z1S8WaWX~M(|Ey;VwxXUliv`_e>_Ytww#JTGL;eP}A3va;GF!<1v*Gcmo$gQUhfT7F +z{J++B6hEfkCWoE(6m?#koOa&PoaFy-8j9qysrwp7Q_r2->g%u>^{jd910zv4et>Fk +zkvHW3__PsoP=Djhn$KdQ4*n90--u8HnOGp?|CV$gH_|?>Ao;(D1EmUwy!m(mH*law +z5nJ<=#X|mfxN4Y|;|Eb|{WB`KUZH~Wz2X)#sZn`f7_(wc9EN>S=iSA;_zd;==tv3M +z3Jam$SQ?;i)Wx-rLFM-n)Em-fT!O!%UOGpWv>RIOY=J1#>#Hk*|(7vpj2H&8#Vd{H*!zfxVr4%ADPv-)CG{WbQ$*5yOq +z4Lpi$ND*&!1zXdz*on=$Tt&O#@@kf^&8xF#vn0o`E+0HmgFT;mx|+lQ8%f4mcHtp) +zZO6Ngl{oJSYR4;5&$6fkR;GR!OJKOZ&LjWIQ+Q6pcszo`8rT|^X&Caq2Q)%0$tu)7 +zZ~*mCd4zHCIcm!P!`zsok=>vX)}uZh8{rjB3$(r-sQ@?TN?9S!Pfg7%h9c~NWE5YsXv%TUk%JsoVMCsFlV&gZC($L$#M +zzuBb3fz)$g6n=_I@4c>m8vU7xP|ydH5c)bH18OD;;$EzQb?88_GdmXbhFwDbuide_ +z(h=G>q8{5vyV=MdI8$}EdPU64@eeQ>XQP63Gb)%PS19Pl@q1V_XF~NXCn{QNxOyX0 +z3=DMjwV0mzcQ}fU{D%5Y*P)jUXdr5aBB)@Thih>MF2HuZ{g{Y&e^V$#L&Xnl$_Jx* +zdITrp9n?sB^$Gd!{gJ+wj;;IIObtOlhEO+Jgj(DEsOy|Uf2!T_B>nBYBIy77{}vSV +zN;L#E^^NeL6dc4$p2E>6g4CL +zQB&N1l%?MsEKYqXYCpJ)+Ch_!wr5HnjH2FYH2JT!pFl%t+=1GgpQ5Hb&lu}iQ`A=5 +z2Nk_Tu`@13t#u$`BTa$TsmC~nVKM55oG-8%_55S){2^m$$VS6l8stvY1%E*W&qLHh +zB*{3N!ZN5CYK1v)4C-@hP*Z&ZH52zxpNl&_o{$-BDDmoJV#1I%?(~VG&F_k*{o654BZKMRjZ`1~Bp? +z1x4*?)QBEpVodds?a|p$7tD(au4bqke}wAz0_PVPMg4&DS8Pt*n`Gy;z^YXHpmyA? +z*i_H|mlWdBP;avJumx&_eNh|8B-G3-LXC6{YRB7*ZSW^|yyz55+e$c|_6RDrVo$YK +zuAZBT33AGMY6B7&9;AO{V=4)}h{RfxXAC +zM@4t4kL`Ki4o|55KfBRysH|we(B7PmU|;G5Ke5N}GGxlVhu9sfEF%AVQ`kU3e{D9+ +zr*?x1i!Iuxpn`4<4#5OVY>mgGmS80+ihsc4eEtzOV&B;Hxm_pza$D=h*oX5zLH#Ze +zUJ>&D+Wt2y$bbD9TzF;3|0B~Gt3uvA>it%;=GbCw$UBN%*O3ieIQN$!?-&;-ydmVx +z!dG|&r+j7K8#;f@!-)D#{2AMAWG1o1CVPw@LVZEGvN`0fk< +ztU2``QBnF}2Wv?^W~Y6V8M!OueMEcG-F&gYg_xJ)L-vIHKXzNOm#<#bm+cGre<3-} +zfsp_6+(`KVm!MZ7j@rQAf=t +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 + +diff --git a/po/ru.po b/po/ru.po +index 2d66f7a..b7f56ef 100644 +--- a/po/ru.po ++++ b/po/ru.po +@@ -14,6 +14,7 @@ msgstr "" + "PO-Revision-Date: 2006-08-29 20:10+0700\n" + "Last-Translator: Vladimir Yermolayev \n" + "Language-Team: Russian\n" ++"Language: \n" + "MIME-Version: 1.0\n" + "Content-Type: text/plain; charset=UTF-8\n" + "Content-Transfer-Encoding: 8bit\n" +@@ -6694,8 +6695,8 @@ msgstr "Усиление частот" + #, fuzzy + msgid "" + "Don't use presets, but manually specified bands. You need to provide 10 " +-"values between -20dB and 20dB, separated by spaces, e.g. \"0 2 4 2 0 -2 -4 -" +-"2 0\"" ++"values between -20dB and 20dB, separated by spaces, e.g. \"0 2 4 2 0 -2 -4 " ++"-2 0\"" + msgstr "" + "Не использовать предустановки, а вручную настроить определенные частоты. Вам " + "нужно указать 10 значений в пределах от -20дБ до 20вб, разделенные запятыми, " +@@ -7427,8 +7428,8 @@ msgid "" + "16 no padding\n" + "32 ac vlc\n" + "64 Qpel chroma.\n" +-"This must be the sum of the values. For example, to fix \"ac vlc\" and \"ump4" +-"\", enter 40." ++"This must be the sum of the values. For example, to fix \"ac vlc\" and " ++"\"ump4\", enter 40." + msgstr "" + "Попытаться обойти некоторые ошибки:\n" + "1 автоопределение\n" +diff --git a/po/sk.gmo b/po/sk.gmo +index 3dfd0ba5dfa19b120685be2fcc6dd33531c43220..e8537b391f54f6ae42584299317ad0ff3595e091 100644 +GIT binary patch +delta 28563 +zcmXZlWt>z;7RKQV-Hp3TfB^;_+}+*XAz1KCkl@m2a3=}wEbbu?Ah-s12`<5dLx4c` +z|Msa5`+KUYuT-5nRrmJHgnc+G#p_uqHY|+{PKn}qy({~?B%bF*tLpQG)#@LFaxSRCsxEl_#+O&8JMVsFX#m*EU)47;^10L +zf!i@Jo^$m;O}kNAOhbDiOoa_FJAQ}i=xof1hp{BS#Zs8Rme0$LJy8Q&j1l-}t)La6 +z*YPn0$Od3c9OXWr?Am`ujd(HYdaF?#-iJE>7W(li`tW6t +zLQ)EEF)_xj)M +zqt^9#2{0IgLTU;rF&!2}ozT$P85PpOs3}^FS#TSs#9J5_KcYGmqn!WnrPu=lU;Dfc+~4a<;XK|z&C%x8J})C4MJ=yqsJRNXv20IL}?!qwa-QGg~6JDUc +z3K!$hZ)|EZcCgP2p)Obr)sZGRoDD4!(^G%h(K?#Alg}$aJq@Zu^-u$7+==zCLK_;C +zR9#Uc7>8BxM^sMSKqcifoPnP)6He=FQ?(71T-Q*MxQB||CrpT`yV#WFM15Y&)$0Z+ +zD739m$<_aUur{Bs#(ek*75ZG=Etl$` +zI?@Og=~k}26S9Q|y-0V!SS-x}Q&C&y8Ek^jF%MSh;q%&He^fI4iOTBts69P?PoLL< +z$W_6q)R*?xHUvrzAjy3tJ3!{Zk$ +zhxbq+%+lA|>!4P}P*g`pq9VBkwU6vYb>KYe{Cxdvs(WKR?(dCN0cWDJcsW+U-%%Zj +z+TZ6b#O$b09zz{>4z(jb!Up&XmAsV)Xk=tLssr;-1KfZ*{vv7zyoo^-{-L0`PB_r! +zC;~Ny1yM=a7}cS!s19sEU1%Fl!o8?S)fwdTT46V=kH=8UE!|){FWi{}l?w$1v;G4V +zO3|Plt^z7_4N=Rjjk5>p={5`_aXyy8xI?UiwNS^mMP0ZjDguL0Q+L?;9xGGN!m_V{ +z-vudX&)$jK@eQiS>xbHu{DK4ws^Kx~=Z>gQyFgM}_{j^D~B1PdUO?M=8|x +z8lfJ)-(XH$jM*`GnnH03pIk%XkruMHr~{@se|J7ajVSRbd%Bgx2x#!(A#DO?+z;4Y7{vHq3aZ7676cR?+qo~UFTj+&AQ +zsF44Hp%J2vKaHA#%czLFKt;$u*`^>lYT1@V?I+Dp_Z#FKHJSCV!@XV>KclB@$4VCaH +zYDY{k&F7WHY^aEIMO}CxX2uby<+utJk!`3s-;L_{LDY3lJ0CftPPg{dsQVTOQqT!? +zQ4f(8s2jFMg|<6tD#oCCKF!q^phmtDb)lW8WW9oV;dtokA5qtjIm0@d1QqersE7x{ +zTp>*sxf}KPzT(>7qpla{N9$N}ROGTD +z0}FbEDQJ$$x&x|VexBnkumVo`$>%NL^9w&)h>Vk_<$8SUJ +z?H5oXeu72uJu2z)&ap^T#B^H!jVWl3`=U-5<_?&MdMRCi#c&tuh96K=G)OpJ7lpeoLV|{)hRn{5)H)eNd0jnb-u6;1EndpA&H* +zsy%FhZ8ZI{A@v)m_5us7KGAs>)n0UwIc*W^Uky)OLxsim!93?XjO6p$ORRmDGx<_` +znsvwge7+Vn(%YBfsUxh*%k>}B{_q)f +z9p8HENCM2HG)_yQ4Ifm%BKSYl4t5hmC!#{;+h85cfC^nc?8F9D9u?v>8|^W>8#N_Q +zaSXo2NjPK^-}f=@W}Bk#F^QJZAPO4ERMc{tgPP-GsFA)wB~9F4Y-A}>k;sY)ZDZ8P +zzD0Fx0CvRjs2jdUy-zgTV#zufb5Os8L0!QAtKBFS9-^KfHCG=|Z!9skT8~R&9_kfQ +z5$S`v@sFsTZ82)(zoM?Y8})3s;Czf)RsW#|9KMb9KbAtSZ8pMf&I70|_cUrted_8l +zfAe{Dsb@mns4pr)LtT9qHlV&3HRAWE)sSkty^LnSE!1luGv`I!!TQ%o{5x!988M7{ +z160U+qeeK)eLe~GGPxTg@G54*Xgke3&Ssd7_K~P5S&Er(3o6O~L{0INpgSPR?{DgXMfNgQ#^4(Y +z4Jnk^V{<(XwSEtycCHVo2&LI;9V&rZ@8wW)SQV8k^-;^V4JsntP;>tiYI&|kP02n~ +z1nwgp33_iS=tUyoKD%L3)QLq=BdCQ+uJ)+o`k`(#$hD8gCe-Jkrs@qU$)fDH^E0E~ +zq)MR9Yk)fLYYf-=@8%k&qC!3&l{8CHH(rBEwmqm&A4NsrGHMIHiS_U$w#EtvEO(Zn +zmgz=R1a4soe2%SBQg|HoJBk6%UU?i%ilTcgf9Oo8Pa-PEU_$Ri<&sY=N +z9AP!}G8T2?bqQ?dcIKb*xp_yy--?sL|$6R6y}7^I-k +zJa!G?=Ph(ausH4IQP~_sEuW>Rq&kcW;X7yS3l^C$)WfT!t2f6!)cc`s_#D+C-$gqv +zSilwPq2{bRDgpyhTk8bW2$$hr+~MkjFWK?au`uoPu`ymmbvV~$%l7)HshWb?N9JM` +z+<|_rfBzMmir!Z=-UyJI<5mX1xVHr$(&AxUwKy_d`=Eqg2 +z4&FdTCf0S^H_D+lqPjQ{J7aO~@4csx6Z7A&1KMC&>itp4v;!59>!|mGyQn!%eA8A% +zUQ`E5p>m?CvlZr`-U}6}g{al@8-^l+ZiqZeFDcOz6i6{@O!(X9RM>bS@Y1Ff#8R`b@P*c+v!*Doe!X?h5L05Q=3Qf|7 +zW?@veHbu?pAk^GVMMY>G>X}jOksVhB^;qqSn%jY>j{S_<$kyU4{0oQS(8t!{VALm; +z9BEKJD}f1@KORQic>HVo{oM@gO8t$q^&8u0j$mUceNI%pfwLRx +z_>rg%EIt9K=k_PQmcTqc4f-iQVY^YbJGN|P= +z*tJhZJ@;2&I(&IG28*L3YIF%5Ix1+@{4iQ*4U#T3*He@3l>6{zbU3R2JbucS7L5*M-YKo?yo^tz~*HFj5!$xysP+B|b)y*3{9Yl9{TkC�)OaR@Fvu9DUr}0`h$T* +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 +z*`5#ed1=&*t6(^GK +zUHeu{NBsnr!)K`T@*J?-DS*0RIn=7Cg-Z582ZA>DQ)tlK{EiyIKGd7gG1Lb0r}Kp~ +zaM0#76)G7sp*m0%^_1(38psGNj^j|PdLOqh7(vujY(Rx@4=S{$P$RgARq+)n*-D(SDQSc4sgFX<{bSUeze7bT)=BLL +ztpB1Ew9daq9nb?cqEV>qo{h@pwWtmpL*4i)YW2KBofrL-{gx{=DgvEQQ`Z}{W&eok +z_#D)A7h^r{?`@%=3&l8XUlLQII#e4qcWqE7c60VZP1yj{$buMJUZ~_5&-&NipY*(iqzJaAULCcAtwHVC2eB4DaqYz}*p2F=LfIIz +zVHebZW}rfT*m(jqpmV4WT}4Ii{sq>*M(~mb_4pGi`(s|TP-VpV)Qh3!^a`rOf1$S2 +zn3pW8BTya5j~ZDe)JU75lD8XbK!Z>l+mEOYt`1VroNUC>c*NCXT(%z|q(gn)51Zm- +z)SNy-jVQ_$oAVf`fh0t2NU2?WX=fEwj@3n7uPv%$!TuCv}F+(wN!{R{WgG8{mC4feq-FYTRhK2{+q@1O=6@!B8y51J;w4w9XG(EN=*^jGXZ +zzcu~uIFa@qsGQjH-hPsK47E>G`^VUjgqgHuuKeIF|6 +zZsBZ994FvC#dWA$m=o8IUx}(;MeU3aQF9$Vo*5T4)rnD4oduI?Bqbam;;b>TMH1bd?%=O-~gKEW_dmmm;YZDnvM_5K*lM&Tm` +zWo>xEKqyHHV_xblQ5~C%dguEEm6T6W%P)GOKhbGO60o2DB}ftoeZlw&m9>>odv_#O!f~kVJ%bAAd(^V~jJmKtsTmK;QBUD) +z?ws$ujmov~WHzvi$@u#xCBr8gbfIX;1EDvV1Xz`N64Y{Qh3eQ))CiWNcDxO!(BDTL +z_W{db>J)*{e{RzPb=`MPFQwIEp$3v9NI@G%DpW`^xOy(s@+yS7!C2HjFwfQ3qK@B- +zemsG?(OFbvu3=BSi`%hLDk2(%_k+{{uNU>4Uj;(TGq{Mt6&eC*EaW$xpHRt{JS|y@ +z*-%+q7PTWba`kTR^I^_e7?004qB^z*wJHvxMtlwx@hg~4>;E1FUD%(_MwAjiP|t)q +zFj>U7BhY_|+9|-;QY*L0m=)K?wYL)zlO6FV{1EGgeef&%7 +ze=mja`Cvu3T{umqK-a-Wk>LVa}gWNxB-fT+g6J`~>yx_!6}o +zzo3?9zRUqHnbv=83PZ31Ds=ZTJHA1UI9(RYfe2K+G^!)jQFGnMeclok@*Y?g`=D}W +z8|wHYsN>H$uVPTib(=y2zD2G3^jQO;x7GTn3w6VsxDK=8HPk*3$YxU%hU$1O)Z@4$ +zR>M)Q{WNOhx`~^ZqAysB`o;*>{~8KjjzH*p{aWV*97ywLREYcMv=C0hEY#;<3fzwx +zz%|T9bJQ3J$q2syQl-S%x<^?UbwnHuZ=tz>hlOp +zh9yxQXn+Z@qigSny6|Mw)GR}tw+FS8o<-%(->9Vih}tiLzI@gY7sF^shNZADDl&ag +z2Tnm{^K4gNh#Ju<48vWR0dJy495uhKhJ?sd+$)UgcyUx@Ya!R=-~Xc!m4<$(8w^B^ +zWSH}3)YiKe6|(cF5nMwZe;>74o}fCMtUw_2r`UN=#|^<^I2x7Y`!FB=jnTCJ(-*W8 +zv!X&&4mILhsE{{7Et~I9A?<@x8kHyN=S4i&f +zy`Z3MEK=CkZ$nfTH$#Q8Cn|KqP|IkB`+PI%!pBgNd4j*=Yt$5OEMgC%7g(Hn-lFz` +z^DSNCa*>b*zJ*l@Y9|(QFI9Hza-;sub6|BeeupsqosCApDqRrJ* +z{7C%(>IS*3<))1EGKEqys8De)QvLf@cDqh4xf1Sxz&A);Zx`;1euI!QU3%()FvE<1)Ew#<}~9t +z>L+m-$ERvRWT@}K9@L+-421sMua>O>-c{=7P*b(;>wvcdU*QJ~u4^6eR#8~d#$KcA +zw+)1TsJs*#)9$siSEeTTHPu+{?KQd!>JN)AVinq7e`7mki4KUtiQA02SWe4wZAV}&jHK +zz^j0n`&%w_MTK@bX2p~P?5(#Pj;1~nt76!|Kw@{I#~Ks}{U_U{uq^dIa5=^q +z%*(3Q|1T7@GrdRMFyj#GaVK0y{SY3&-X!ZzEH*R{`uBq0Vsy;-=Rj_cx)i_qu24M$h^RX*l(OgGUa$%{|(2p{uP0(G#tdj6KoxS#`o0QPqY_> +z7Lx*@f4g-xYGWxg*|y$uxP^N9DS^=6bX~%-M5NW!fOn4eh0_AwS^R#w)ho{kguX4O +z{?U^A@sEV`TMj7qQy}!OTWr9M)O-F+mU5x+nf7kjZxi}P`p_X4{aDKr1M4{6H+xy!uw5L{QXHWF=`9Rc-hhkzp +ziRthTw!^54>?zp+wF6GXw73MdqwYgJOa5`6M_+99U>XWKAO|W5+hPDGVGNvsdb-U+ +zy-cpdGPnzU_#ak8-xAyDsycU~I+A;-U8f>yAhl3W$@-X4&;Mpt@P?oszl)vgP#xHg +z;kY03;6qnWxy(9R3UyosjEgliY^?12okDaPlK#(nmIn0> +z7>EHL$7W+@+>PqMUzi%-pw3UQ+&YxenGZFEW$}Qrzaa&^SfpBE +z=D=*!OQCMu33K8E)O*2pT#RQ?Z^yk?TF1wsURb80j$eU_%thCJ)3v|DI!f+UtbdKD +z_v%3Cztx(7x^SsAfza=0ZlmTZ-C8p0y3ldgehV8?zlXW8*m^s@3o7)Hs0$B5jeHE| +zz^SO~?85YT*7;^V>t8)ew!wOy7ImRKsO41(mF2B47PfVte~Y1Ii5l5Z)JQj?j@yQM +zhun{;@B~)Chp6LoZnPJWRzX*o=-i3wz!S`ZA5b}vev>@~D`H9NeNiLag39(?sHfZs +zRE|V!wvLoXU9Xn21*+p+usL%X{Ek9l8jfwV2>5<8lcGYG1$Dy)m=&j?vV8~Ez&qF( +zb8oko*jbpL`mb0PAEQ=7jve-Wpo%jRIWFkUpiqhfj-bBNMc-)~Q5fp2xCYk6&aQn2 +zmZ1Isb>r~g?FN&u7WGxG{sEs+PrA$AsC>KaMW;4aru`!pjl%jXx5wsY&|aIHz369o +zyuvda_p +z6+L60H$d$h-BAOWjM}hvq9U;mwQpQR-6z^v)_-~miO<^8tso|#UJ(_-MySxXM%}oZ +zGl)8FnyW9tFzUZzcD&^3QP0^^Fr%|5>M2?q)q$^r6f}Zvs1c5KEc*c?QxWI9wTGiFm>+d~8CS25T3xMCp3=k)1N=eW0M8`!89K5~6OL8x^WD +zm>26{I1WeMU^(i%-Kc%yIBJ^zFva&Mw?CE8Wndefsi5{a6cfvAmYn)4CXrC#PwbDHxW>KRbz8tY$$;uLg) +zGN_SsM74j18sYb-2>gJ02CPFx;u7jFqpssgTyev`=l8u8@aFRQYaD@7ZU;htx}D^X +zeTUqG+CReXvi|k;`TSk`Qs~_eg#Ld(8lY|v`!DNILaabNB`TDyFhBOfO1K;qnZGdu +z#(ZFNodb1zHPnE!>?aw+apTaFn~9V~&$nP77Y8d*=&2>PLtY6~iq`%pc< +zkLr2EGwXRB)PMIzzLK*|wH8`gBx@k>!#^BU9^d;oRcX^e{JQLE+>D*JuWqS?Ry +z5ht1*m>BigO^(Xa^w=NEpl+}om8|b}88 +z6m)}^s2jhZeZY4&Y(xDz*1*!SqlLEW3C`VEnD$q$o;^;q&@UWYqPFrGsHxdM +sBHQ)R*{(;~n(cbjzFlM0XcO77cbksi6bl=@po)+G`L`~p5~zCM|F7gQ{{R30 + +delta 28552 +zcmXZlb(~d2AII?nd+(A0A}z6$urw^)-Q7sLlysNCp+luXLb^mkxyh) +z49t$d)%30KjswYbVl5j%DO5x%Vk~Tm@h}=SvThg$2fEKky5rxYMmz&`zXhlcZ$Vvu +z0Rwmw!|<+8At{B2_!)Y&!@LBL1dC%vR70&$=XFGNXejE2W8LS|Fg5jgs43Wi>gYby +zeNUpUzln-f@dAE=Pf#6tkBUH? +zx^{kIR3y@&22>CgfnLbKe6K$Rg?c!uff<+(m!KlC(be~(ZhQ{Y;-9EUyhSw-R?p5) +zg=!!Y)uCLdNEAh#Ujdb4HSkl~_u9D+`lA{giivR|DiVuOH`IU6VH|~XMXfW!AQ&FK_;oO9pian_NA4KKKO)QO1zGD3kr;sN)%-f6`FakTa +zvCw~q7pTw2McAjUO-+h+_IY;H4NIXqQUiyxp+#eQ>UY~)M`L#g^YT+qjOtJ&)Bvh? +zVEwDmkONApR;Us9SQ)=X<-|EuQr^O8_zW}Sn6GWBR-=;Z3@Q?rQIUI!pJJkpHf0%5 +zpXYYTv_!-OMWmE`L_p{>_P^+R3s-pu?kz9e=M>eB6a1?cYmi{)?9WepzdqY&f@u)1G +zgXM8OX2F-Z0MiYyQ0_sUcLcQ~Uc>r$50$*d2Wn(wIjRFwPy<|wI{!Fo2Rx6y3V&13 +zT!(*Sa}h% +z4rcuaDMWEVJ6sV|=&GWYTSI3%)YGjmcEzb!8eCeu=~h$+_o5ik*G +z1E}+!p!S87qs{854*1CDzPH*6-X&DF#~5QHi$pD#f~b990BQ=(ViNodwfN22P##q1%Agvkjk-a5)RYZ$ +zPC!k;BGi_=8TO^Xg(6t^Xzz)IdK}2q$0$+=ja0pQye4FVu(< +zeHZ4<#%#C=52ALoZ@#yO*mmqf{W7+}O5^SNRjAy!jE(RE`pWKx6Ks99L@lHCsATMi +znv!9tkpGOK5u)~igQzJuiHgV_RD@omrXc=Ai)cR7eo_n7UJvKMiL8Guw-FrBx*v;K +zaT;n$b~%q=6YA%1C+3`FA%BQ!FnqFIpAyxv%&wjj)nE}Ufn`yvW+&O}qK-AJE; +zE~tolh}1zf*Z>vUwy3EXjOzIqSD%I&`8?DB)}fO16zYZJs;fUi-Twosqj9F$2A2pG +zaX+amq(_Y`C+dRws0&)68g7SbpciUn!%-dn5tSSBQOUUx_4q#Jjz31-FUEB1SbS9E +z(jo)%y&M!YM+Mypr7();cpWT{qkahU=JWZn85ZJ>GsC=?)VrhJYofOVo&x&bH8IL#^*hsAP>seck~TiNUBF{(zc_ +z)u_Gw7%Id!un0azCEXW4S|o~MI<5ce6g0=3Q5W=eCk#iulupBc~b2qv4y +zg*Y8`Jn4MfXu4tp>gQ0$BNteGxbt_^@mvedF$-D$I&i}sD6+^tnBshdUHQEHVmrRU +z8GngA&DvrVpD#j<^dhFftFHb6BdEW}T$pyLMWzNSshcci{cG;paX^t6j0*J_)K<9< +zN8>$I16`L{==(TFqBf?fSQGz7g|_%lW_ip=y*et%yQ8LN0BV_!@+oN9Oh+w?HCPpQ +zq2@C7a(hAf3@cEthT0(~qt^L$)QwMIdc1(@z)PHpA5mF9^=Iq&GE`1&LOq=P^AuK5 +zxPy0a%8D?rFZN#<=JmlR&bF)U8_^%Aj%8YH9nOu4ObM)o +z8sSYGiw|)E_FB*PeT=!mrs!)-qGi;Bf<`hLbK@k;ihEEaeSk`um>X?m2~d$pg9>eR +z)X2U<&1pAmk3&%n-bcMp)Y@dp+7ok7KY_k(@S1`eO1L@9JA_$LA$o%O@jWW3@@=ti +zI7Lwr>4a+dThz`r12yuMsQYe2?Ucuy*HNqLU(|q8Ze{(CqmXf{jc~Pd8*0lvh}u$b +zy7~vKLp{|tYp64-<9%Fx0@kNK12y8usE#MxZZD(BaTE12$jo^!x3m5=lGhx_gDG~{ +zhEW9-@{Xtx_C9BeEqAc07oetO +z3n~IvkdFA?LkfD42;XN7#zkG23pIjrsN`ybIiW<3 +z+nZEg)OA%*=heqdTK}!xfzhatPemooEL6h_QCYnS73$rn2%JQ1!RN6q-o;i}ZB(uG7(sWdN0&!SdE(E-6vT83gI~pWWzhCjwCv1$x;M$ +zK{He&x}f%hfv5<~!0NadFXL0^u~Rl>OHPM*{TRS%R4!ybW7ic!MYz%#-@X{s;eh6T +zBC5gZSQwX~LUkR>;S0=%MbFy#T~Igfg<4kQP*buLwLcujJop^vVy1J}v3;oAI_^_Y +zXs){hDbHKza$+%#7e-}sZ`AUcg-WWOs1QDKdKWA*Nl_24e6C&_`%>?MYVbCyL$6Th +z`H>f`Pzg0>ZBY^Ej@nv>p+-0x_u^Vt?|I42AB%-JJ{9$)@;Iu)8GpBIuZ)_iQK)@n +zGFHa57|{BEO+j<<0d->R%NE)ss1Btg +zuixcS5gdiunwMi@t^XqwN^szh&;g!Gf7qK(4%A-12-T5Ys16*#(ir&WE7Fdk-y~h-CV%BSRLPIP=y(=o2)}oU0Eb9H>chua) +zzHY1H3seWAP&rZ3Sr2ni?|_Qbbkyqk1w)ZSUoQyvC@48<-mnwCLd})$>hn;`atD5a +zx83o0H!VV0Q5`LZk=PbBl@n1N{t@+M_BiUizfc1R-eUc0tIc@JMv@)Bqh1)*p#xYp +z1|vr0z~{Ful$lYhAU~>sXe61usi^zSL~U#fPz`NBMeq!2DlVb!fA_X;JKY-&C?ucX +zu|2&IuBToFx8OT0gB$PKh+m*Kq)+eJ>PU;qmHZeRYoQuwjGCIx7=isTGtPAG_FdsN +zDl~ELn>kR~S`#&=Jy3Hu8Wo|%sAop*2XmLcIh2j_OFKrPQ{r~%AFHM|Mi;9e|>U%a>EY>g4r2ft_iE2-vjKs(j%sALR&up6aC +zy)qR*EvKID_-L$7eJ-ZMho}g~{b(IYii%J=)cZw#XGPS=8>5oD{YT#(68$-#Ihlfr +z$d9N7SE8Q#zoI&(ZAR-pHL4zoI=`$tUKi6a=Pgki(clM6Iyc?Q++BYc3*u^3(r3wU4Cv6KPp +z(1@Vve@j6ZOhzTyEYuvYLTx|?Q0x63s-gE-5R-@7NNS=+(%Cr__57cPTKC&fk@^QU +zRk30PLOGHJiHPr&q>zyhYN4{W7b?U9QFAv26}nldooxj+!9%D>MZ^w-a-;+*f&-n? +zu{8Cyn1qr454B9g<66hsV(9rln?eL1tj6?s3YEoAF$>0u7YHqz+_-^yP27et;|D@p +z=}!EfddW`$-d}heOW>LW0dETajX7{=!a(TNYc8Z41ND^ +zNzBRL(p{-6vV9KxkEEz%c6BQOTPdb^ns7 +z0)8l|s&imD2ijpyO!&F=umoyEwJ`!aU;xLVa%BQm!s)0RUPY~vN2m=cNoqTu7FExI +z>R3V4&RRCLZ=tKq0X=+byAS%h69=J^Y%JEor5J(#VJ=LTCJ@>=E1=HnfhBPQYE_*? +zCGiDRB=5Q7&rkz+<5SQGW2CiZloGX}YE`Uu_1&n*oW%&d +zgzCU6rc9|W;J!DCf;uo4HAl-(H(ZNf;IF6+=Pqi5Y0?M0Xv}~$aWq!P +z3#ci`kik|(DO6+|pq>R?P}dJfwKoP6X{eLjfrY3OSD@zVSB%1AsGaNsR>7!@fzUUY +z!KjWM!UFgntLpPicHR)wh>xJ|cLDR@4O9|-nwj<#>NFHIm-$d5D2EDpD^#ezL4|e% +zYKxwZ+LD*M`fe;k{R}FCpM7CdnFh5QilC% +zqq5kI2BI!pjOxH@)b;yOH$ILU=_S;FZlUh?95ofOv)b_p%tt+MR@T3gp$!LgqfV$B +z^g<=$5LDLBM$O$eR71N_4IFd+fm)7_QRjaiX-QYqSsL?lydu_$!4J1l*B{B|+w!`c +z%|`YX)q!AkYcLUNM@x#zfx^fR>~%p!qC4tYF%WCuWK?op#|d~Jb$!1a_K=#5`uq}V +zncwg!=;`;=oscA_jl2$OxphJ1!gr_;E_3ci&Fw|hjXt6}lrUGon}{j#H2#d0a6s-r +z=vOy;@gnuodF&zNC(j!Q{q$-rYFUNl3wX`2J${7;a3yAmvYqZ6j-vh%>)@#T0dFu~ +z!rIuNK)}0-%kXC$Suo&@z+8m_p&vx7$2Qa>3kSTmTK^L$=)k|&3Y!!$w_|JSpBJ?` +z9gHog&p{>CTU6*16|=}>L9LEb&bsb+TU4?RcE_ip=6)Gg*81NWS*Wa`bh>(-gGjUO$oWs7M?@b@*jv*1tlRzKX5O9QY~q0;myI!h+Zkv*CEu+w4}<#&rhk +z;_r9}vsVp-zB@icb$D|%OTIm*b$=0c{5mS~4}5pv32IJWqaGR&)vbp)QP2BEs1bK^ +z^>0uen1~wb52zh<9ctg$hUxGUrY3h@q8d(8(@cv>Za*sp?NAjk7j{5R#SAQmzoL>R +ztd=!U1T}YMQ0Fy7jckbfd<<#;6HyJ$L5*~otFLlyMmp?!dnkl)!V%OmJYgSrw^0{9 +zMr|<9a13^@ZQ1<_xq_Yu1mcoA`M!ba@VR%y;Sq4NERNcm{iYN&M}tvY=n_r>?5H;7&UHti9rZWT#^2?|+w4P%`Ys +zP?BL0>hDk?E7;MNPg&HC*a)>eyPzU761BrEK}GHys)JWi5eRg$Z^h|Q5p03Vm0_J& +z{|eP;4k$aPp*pYu70T17skw!rxke@D2P}($&UV8}s5$QF?ByJU>fk8U`d^A#P1{lJ +zo$Ac`*WCQg0fi=M7kf+1h3e^2ERRP}8_y?Q&Ab>+y@9hCDuU728%LqG+&8F^Ch2DD +zKP9TYte6RF`xF$iK2Fuu@Ho_kt59>b&bi-t0hPt~P?37#j>qh79ZZ6nqQa;ttc5zS +zDQY9@ii(Usgn}BFhsAI$ssoQvJxtic>iIDT^+u?la*sq^cc~{Yr}zNXq4~YcpHRzr +z4Hm|osO0<))q%{tLlN}70u*#%ac6mKPXpCa4Q%XV8_Xe8$d94s@C+(Kcii!ZxP|)v +zoIm%q4!7iK_^LMc9|I>46Ex2PmsiAuJ^sD@9X*6n%J +z+&*@O547VEs3a|n>R>t402-l2{52}s2cQN#2Gi2MH<5yJ;1^VbTTu<{MrHr+sAcy6 +z)sc^=xeWitZj=&rUV2mq@}X8k3CxQXQP=fHJ%oHz$0ne!m&FC{gWb-Ps6G8p)QxYT +zZuCFYhLmxTy<|2~P;}{n!K>l2d7h+I@Quv-^w~#s}*0 +zcO1|h%|eCnXVeWgqC#~9%i$GNgK3A`Q?MCoYDS|XFbCD~U$HTs!m5~Mg!}4+8L2Nv +zwR^&+poXttNqmS3apXw%PKSDIF2qrI4QpYWQOq4~#4MP9v@PFe&Y8~h&O~DZ-oKnz +z9W~`;##)E{mK4hVwKsd;+llG08r7`05__YPD`LE@?_#JMc0hHo +zhpP`m-RE1>PWUrwU)h5RG3!J<sED$U_i3hL<|%!Jo55(Crh6)YEObi@l3Bgfs1{SOi8<{|0sb8q|5aXR`h^!t)$Z +z=1rXm4&u7uSa!o +zE2`srQ0-hsP2qF=G6w4};Ub&!j*IQW9$20e`e6j_#9DY2zr>tNEc9bh&w$BT3TL1? +zcnKBJ7pSbCxHRC+zzrCU)t1?>@z&sCt^eqsY(%k^TlRm33Q?X)7Dk1<25JC9QFA{Nv*S)whwr1N>J4fih`EmSuVwM+I-9%9s5!2Iq1Axu +zU>|pUva2sb<-l&#d1o-x07g)MgPOX}*W2}3Q3ENDiqw}_7o&Yw*zAn6!7ga#?C+e0 +z>iJq!)^A0v-`%Ji?sFbT?Ud&+CtgOardS*8y6UJ%)kP(*KZ=5GFc}qz*|-LOL2V>0 +zHd(R^KyA(QP$OT83gK4N$PS~D^eSp^&%D`==Rwsgq8?gxFaleezBiPD9+L~P4IaSs +z7`eqB%hga9?nlk-8Pwc9zy|oqR-1xoEJuAHR>j?@4#(MM8&4wCs>z0$vf3e8f9)yc +z;J^^ntIu>>71ZtqBrZFms +zn`7wbe|;(F#y;vsV=x;o#SZuzmc}Bx>;+^X>hqo06z{oux!qRpifZ5(>VAKrA{ygY +z``u7RRC^oHSGMn<&>c_UQ7o}15cITQDK+LG6UUIqx{%pyo8;K}*I| +zs1B4wJ>^=U2GSpkp^sWEJ5XEwG5iYO=z}g4njf-XyB){o)UzJ8j*Ld#c%pNSJAN89 +z!rxIN`V(_u+#~kxSOhOok4AO0*ijo$MeIqvA!=juk5bUc@1WNEL(~X@$82uXp{6FE +zvkDfX-U{2}OjLxt6CyWXpTfrlcXZp*|2b_t#N#{sUo5^?j2UgM5iqR%~4a=5w&H1i|Y6!)O}}QU7x}V +z3cAsIEPx4qvksL<&0Ry(g{_?(P*c_oHL~6qT3)E+or~JImZ5gctD-4J +z&=FLJPNO1sIYO-M_jUwWJQgv +z7;2=oP|4dGHJ~1-jqO`h2N(Dh)X*|4g}Yq+JvOGE`#QDt=L%tm17lA?KMJm%R^UHZ3m1*UDp=1VfDk4{pV15xMy;EvD7dencygnIvfOF`>8-c6gERH&Zj +zK^-rP+F0tK_JO{ropKr~IoF_a;sUC}ukcHZeano-R@8UnC`|X44Rk4n{{HVWg-U!7 +z=eE7k)WL?-e?lGqfEBUg9s3iD@mP!cHPo{r*Im2rd(`>2uqtM|XRqshQ1!j24J!V9 +z+cBG<-+=>*DMago2llJh?%108KiCXwKeS&mt;YJ)KVnm?|H$5A*J6I^VUKMCD~yGy +zcg3Fg6L!H=f7^Luu_*Ojf3yB|;wui+#=QU7+zfYKL>d!-?}SsaGD&#}HPDFXfzW@@H1fGmcJe{(e*>YvV*ma>^EH;^c)J&t +z6DwZYPcrwQ_K8xjY_4mdvb;IQ!ZxVY(%I=_1obJ{2{)kDeY)4SdNTVIv~0?wvbiy8 +z1L}fGvN5QnT7)HWJ*LP1VSoJWO(68||9p>HR!!g9Dj0`aHG7@+QOTO{oms%?H+6+! +z&YzqoozI;q-`kr~DO7TH#=5v4OJlMR_D8IZusHRbs8FZUt@OSK~|cdTIOuV&VuawL1~ptl+ap(2$n +zPB8SBPG4hb>ZRibLsKve^$hqMbLmd6C@7>^;srxJuY!4~k4CNcEvTfsfU_}n{Gj(3 +z7o&1v(kFKQJXHNOYG=HPn(KGYmeQHABgsoa8%!0fgI!TO;2zXQbPSaf +zf1+;u!W~bVP$Qt@s2pmDdS-M)y$|fiD7=9Ym?Tj!wAu>bQ0iULkEHN~g0eQ{r@>H? +z!La~67|maGb$->qL$w~oQ%a22SZ=QPN6oWOrP0#!?7~;xu^l%MQz1TQIFr( +zp9Ssbf59Zd&=-tPQCV9YwRcCOc0M1Ky@yaCeT-Um&rmmh?F>sA488w<;;ikQ>b!{S +zI6q}F8`$w={QZ-X;VB1nqqj)TdBNnt&`V_;RBqHmb*v9+1anY3-cnTPub|HR2TNn3 +z6v5DcZc_(!-$%~>oF7pGiQ}gXhBl6bsE{Og^^B}#nl&~&fkmy+=puD +zFe)-R2Se|AnNf3{4;6u8sGiqz^%kg(_jP`UO40?W<$4G;;v1-U$GfQI_#Cx7 +zvwRWsl4<>yr!WMYqC$5Cv*82Oh?8Wo9Ed>G^P@Ua8a3C|+~;*sA#aCeuoEh0R-?|} +zg*yL;^ECQOu8S11<3rTCPnI0M)iHk8SocEz`S<@Q#N9<}u@LWS%oY6NFc=U+jsmK&%J$IBlK{V8^4)Oo$IC=Nm;`4-HFe_^=Rf3gC0 +zVH#A33ZX_^4i)kmsAbaz71B-^frGII&O=SbW7K)?QQ00SXbopXjkpEs_zqW%WkVbe;MJNul!V-}A8gFP5nvdTgJ3p@Tut%^Mp+EruyD>T!q +z+4KGkj-vi~bvwQgk5Ipg%Wzo@HX3eFqo%!F_NzrwQLkB>9TErD33`(_Z+TsN^C?o# +zMm!ufCI4Z4%wOMLX2J`Cw~5o2x(j +z2fgxK`1t_Kg;uE0&cUphV4%JA7Q!*q$72;t`b{wO50q8?)~ +zFRNPrKU2t#k5LV#7-Btcj=xaffd{Z7$+{DB4-JO?z2L`~nGWwAW^X|Eh6h9c#%qre +z!O(vx@h=YN{CXqpW%Z&n-Y9#WFO9zDu0Ms}a4)JpWwiMRmZqL*jLm6V=W49T@&8aA +zEI!tj;UmefQ>|WnS}^o& +zIni`W?(5SDX%|i?^g}T8uUjldWqbP>WGOdFIn&+^yUeoVw@`cjwAuCz=oY5nybM2D +zau%CoF2wwt7i+Gq_u^Qa`eYo6w@}M3+MgHn-co2j-}e3{3+$=Y!r2}JeBK?^a3A~( +z_oMdyOBjtW@e6Fa(00J#sAt7Y)Q-9Z^(^_@eg4kX{ltsxg!HH+Y=l7^fw6HM>ghHG +z^)k5_OXCI%!+)^?zC!KoB^R6PP>=CUOYA;HQ3EN5;aC|n>iJ*G3SKXa#|JZJpHe2NK| +zo9Qud+_VEt=E +z9ajcJ|E<f@_f|5_%OI4~LG|6)ls57n_ns2lBd$1h+5>X$J$=3Zmxw?u_L8g=6ysF4rG +z95@MVg0K|@zz?;KSSLpGirH7p|ZRl#>GbN^RF +z?~q$D74F0GcolVihIRG=QqOmV;m&oa4&1;j_zx-vlC8I=U{NeVy)$ZrD^S_K0riyI +zhsu$N4c3vusQZ<3)MOAfUPrBl^gHbPKnZ6wavuNw8-C8bT=VnyaZ%18s2$g)lqq6=M +z>iQQr1%t=!@jMel&;R!nw4N)T2zn>55o+0FI%yk89n{|Lqmt_xZos&wtiBsHB^Oa6 +z{_M0p-|L}rXA`QU&rwtS5;cHCzp?(c9J2jpBW;TDsYjzO=#DzEH!6uHptjT%*d2GF +zmRGJb_IVZ5zR?ynfRU&TYaJ>QTTuJPaa22R&#?Z}Q;2=mo^IJtktm7^VKr1}8=x9) +z?d**@Z;Y$Y#0csuF&mz6^_QrpV2X2QF4R-BJgNireF_>uYt#q_IcK6qz7f^%DbyU^ +zL^b>rH5D<=+wqjB8)ikFU%=HXqgGb~ROqMS7F>;K&~JOevU3C~bdymV&stPNzoRaE +zfZFS0UbMYFC2C~3oaIpse~Ic?7u0p5ob%lAEvR-*BRi$<{X;=Le~s!<_$6yN6Dm{% +zFfUd>J#PD<8kmE+ZX@d3^Ip_4yM~&w$Eelt3bi%I{oU^WDblc)8{_EtUzCC_ERX51 +zuB-P%jc_O`B0r##X*a6j1E>bhpq?Rrp>F&L^)!5ex<1}ztEYDsL`9$)hJOCv(S0x+ +z74jLV3zs{0qqf}hs9brA)iK!>>qsKU*Y6^Rq5zl=JIr*Q5y`<~zVM$ntX=l5|0j=C8P{pog` +zTlO7t6KelR`WNe8U!RZuWnT*ayB!Su|A17vV-0wBtwZ5ho(mG7LR$}`ume`aIjG3| +zg&FVzDwopVv-3-#22>xFQ%#&--(&sj!T}u6a+`)4;V-U!2}e`^A8N$?@7oj&K|PEn +zqBfQts2%V$YHs5{u&K$8nW-1X3fKZO;S$tVe$=OskHT5Zg~5lGz4`Hb>ZP40QB(2d +zBm2BF=A_;qmHo?5`@?=zGM~ltcmtJ7F(2Dg39g{s8DV} +z_52E|=MjHf&nuvAT+`VGwY3h!a9n{3`8rqM?A(QYIDP=QjqE`2T{T|BQYrKIM4oXZEf5ljrs&^eooq_^^M?v$%_T#{Yt$pE2LWm((Y` +zu&;EZU+Om@tpB$Zj`KmcS9ZfB-^qwe@gREN&FGzK^>8Z|8sR^Y`Jt +z^(00tJ0UJ=1c^}%WJ7hRAS&BSqaxA})o?ph109{+oW0%W16+Nub2#dLW8CMHeG2N? +zboaqr)D3?^&G{-+L)%ax+vPljnW&#eExUg)3ucOK*H?GeL502{R>CHzWxf#Au78b! +z8n}yU_#xKBC$3&Hj)lA&YJ;hQI=?Y0Ld{UQ(*bpTH&n-ayW_)94UKh9LPcOEGL^o! +zh=Ojo+_?&MqqWXW?)Y}pjdr6NID|^ZbMA95u0m?OwvLFr +eIwtaJj4hE@WA^JbW@Y6t{ukJ?vU0HUf&T-+=sEfT + +diff --git a/po/sk.po b/po/sk.po +index 2b8a10c..369f790 100644 +--- a/po/sk.po ++++ b/po/sk.po +@@ -10,6 +10,7 @@ msgstr "" + "PO-Revision-Date: 2007-06-10 21:36+0100\n" + "Last-Translator: Marián Hikaník \n" + "Language-Team: Marián Hikaník, translation controlled by: Pavel Kříž\n" ++"Language: \n" + "MIME-Version: 1.0\n" + "Content-Type: text/plain; charset=UTF-8\n" + "Content-Transfer-Encoding: 8bit\n" +@@ -6876,8 +6877,8 @@ msgstr "Zosilnenie pásiem" + #, fuzzy + msgid "" + "Don't use presets, but manually specified bands. You need to provide 10 " +-"values between -20dB and 20dB, separated by spaces, e.g. \"0 2 4 2 0 -2 -4 -" +-"2 0\"" ++"values between -20dB and 20dB, separated by spaces, e.g. \"0 2 4 2 0 -2 -4 " ++"-2 0\"" + msgstr "" + "Nepoužívajte prednastavené hodnoty, pásma špecifikujte radšej manuálne. " + "Musíte zadať 10 hodnôt v rozsahu od -20 dB do 20dB, hodnoty oddeľujte " +@@ -7586,8 +7587,8 @@ msgid "" + "Valid values range from 0 to 4 (0 disables all errors resilience)." + msgstr "" + "Formát ffmpeg môže zvýrazniť niektoré chyby filmu. \n" +-"Filmy, vyprodukované pomocou nekvalitných enkodérov (ako napríklad ISO MPEG-" +-"4 enkodér od firmy M$) obsahujú zvyčajne veľa chýb. \n" ++"Filmy, vyprodukované pomocou nekvalitných enkodérov (ako napríklad ISO " ++"MPEG-4 enkodér od firmy M$) obsahujú zvyčajne veľa chýb. \n" + "Platné sú hodnoty v rozsahu od 0 do 4 (0 = zablokovať akékoľvek zvýraznenie " + "chýb)." + +@@ -7605,8 +7606,8 @@ msgid "" + "16 no padding\n" + "32 ac vlc\n" + "64 Qpel chroma.\n" +-"This must be the sum of the values. For example, to fix \"ac vlc\" and \"ump4" +-"\", enter 40." ++"This must be the sum of the values. For example, to fix \"ac vlc\" and " ++"\"ump4\", enter 40." + msgstr "" + "Pokúsiť sa o opravu niektorých chýb: \n" + "1 detekovať automaticky \n" +@@ -7617,8 +7618,8 @@ msgstr "" + "32 ac vlc\n" + "64 Qpel chroma.\n" + "Musíte uviesť všetky chyby, ktoré sa majú opraviť. Napríklad: ak chcete " +-"opraviť chyby \"ac vlc\" a \"ump4\", zadajte voľbu 40 - teda súčet hodnôt 32" +-"+8." ++"opraviť chyby \"ac vlc\" a \"ump4\", zadajte voľbu 40 - teda súčet hodnôt " ++"32+8." + + #: modules/codec/ffmpeg/ffmpeg.h:115 modules/codec/ffmpeg/ffmpeg.h:248 + #: modules/demux/rawdv.c:36 modules/stream_out/transcode.c:172 +@@ -10479,9 +10480,9 @@ msgid "" + "\"auto\" (meaning autodetection, this should always work)." + msgstr "" + "Vynútiť si formát titulkov. Platné hodnoty sú: \"microdvd\", \"subrip\", " +-"\"ssa1\", \"ssa2-4\", \"ass\", \"vplayer\" \"sami\", \"dvdsubtitle\", \"mpl2" +-"\" a \"auto\" (Hodnota auto = automaticky detekovať formát titulkov. Táto " +-"voľba by mala fungovať vždy.)." ++"\"ssa1\", \"ssa2-4\", \"ass\", \"vplayer\" \"sami\", \"dvdsubtitle\", " ++"\"mpl2\" a \"auto\" (Hodnota auto = automaticky detekovať formát titulkov. " ++"Táto voľba by mala fungovať vždy.)." + + #: modules/demux/subtitle.c:64 + msgid "Text subtitles parser" +@@ -16867,8 +16868,8 @@ msgstr "Sýtosť farieb v obrázku (0-3)" + #: modules/video_filter/adjust.c:69 + msgid "Set the image saturation, between 0 and 3. Defaults to 1." + msgstr "" +-"Tu si môžete nastaviť aké sýte budú farby v obrázku. Povolené hodnoty sú 0-" +-"3, predvolená je 1." ++"Tu si môžete nastaviť aké sýte budú farby v obrázku. Povolené hodnoty sú " ++"0-3, predvolená je 1." + + #: modules/video_filter/adjust.c:70 + msgid "Image brightness (0-2)" +@@ -17865,8 +17866,9 @@ msgid "" + "\\.\\DISPLAY1\" or \"\\\\.\\DISPLAY2\"." + msgstr "" + "Ak používate viac monitorov, môžete zadať názov zariadenia, na ktorom chcete " +-"otvoriť okno s videom. Napríklad: \"\\\\.\\DISPLAY1\" or \"\\\\.\\DISPLAY2" +-"\". Názvy zadávajte tak, ako sú zariadenia identifikované v systéme Windows." ++"otvoriť okno s videom. Napríklad: \"\\\\.\\DISPLAY1\" or \"\\\\." ++"\\DISPLAY2\". Názvy zadávajte tak, ako sú zariadenia identifikované v " ++"systéme Windows." + + #: modules/video_output/directx/directx.c:150 + msgid "Enable wallpaper mode " +diff --git a/po/sl.gmo b/po/sl.gmo +index 761f6069ecd361f16b0bd4ed222cae53b6ebf7ca..bd72e826b544bff8ddf184c80dc4963b7830c4ba 100644 +GIT binary patch +delta 54 +zcmey^C;G8Zw4sHug=q`3qNcD\n" + "Language-Team: Slovenian \n" ++"Language: Slovenian\n" + "MIME-Version: 1.0\n" + "Content-Type: text/plain; charset=UTF-8\n" + "Content-Transfer-Encoding: 8bit\n" +-"Language: Slovenian\n" + "Plural-Forms: nplurals=4; plural=(n%100==1 ? 1 : n%100==2 ? 2 : n%100==3 || n" + "%100==4 ? 3 : 0);\n" + "X-Poedit-Language: Slovenian\n" +@@ -6733,8 +6733,8 @@ msgstr "Doseg trakov" + #, fuzzy + msgid "" + "Don't use presets, but manually specified bands. You need to provide 10 " +-"values between -20dB and 20dB, separated by spaces, e.g. \"0 2 4 2 0 -2 -4 -" +-"2 0\"" ++"values between -20dB and 20dB, separated by spaces, e.g. \"0 2 4 2 0 -2 -4 " ++"-2 0\"" + msgstr "" + "Ne uporabljaj predhodno nastavljenih možnosti, ampak ročno določi trakove. " + "Določiti morate 10 vrednosti med -20dB in 20dB, ločenih s presledkom " +@@ -7465,8 +7465,8 @@ msgid "" + "16 no padding\n" + "32 ac vlc\n" + "64 Qpel chroma.\n" +-"This must be the sum of the values. For example, to fix \"ac vlc\" and \"ump4" +-"\", enter 40." ++"This must be the sum of the values. For example, to fix \"ac vlc\" and " ++"\"ump4\", enter 40." + msgstr "" + "Poskusi obhoditi nekatere napake:\n" + "1 samodejna zaznava\n" +diff --git a/po/sq.gmo b/po/sq.gmo +index 61e5eb4e31db439f5f541f8d93ce423e63f7d81b..be8e5f876e075560e6647232d2f33ce4b450b7c8 100644 +GIT binary patch +delta 172 +zcmdnUwU2AUntF3a28M%73=FIc3=BV+85sD0^nV}?6k_0GVPG%^(t<#m9Y}iuX?`Fb +z2&83!bRv*e0MhkPdI41aAduz-ieCiMVnF&nkQM^c-+(kXkmdwh2C`3-6=)sELTMmR +f7)Wbvwq%T8;_*q$OD|1KPqk7gF5EnUc_AYJqy`mL + +delta 159 +zcmdnTwUKMWntClp28M%73=FIc3=D6W85sD0^d}$<6k=dxVPG%^(kwul9Z1^%X?`H> +z0;FYubO?}E0MbQJdNNdg3y|goiXQ>eVnF&5kQM^cFM%{Skp2UtLH2R50<8mC$Oq&J +S18LdKmW&Zho98hvU<3e&J`o83 + +diff --git a/po/sq.po b/po/sq.po +index 17f03b4..bbddb37 100644 +--- a/po/sq.po ++++ b/po/sq.po +@@ -11,6 +11,7 @@ msgstr "" + "PO-Revision-Date: 2005-12-12 16:05+0000\n" + "Last-Translator: Kola \n" + "Language-Team: Albanian \n" ++"Language: sq\n" + "MIME-Version: 1.0\n" + "Content-Type: text/plain; charset=UTF-8\n" + "Content-Transfer-Encoding: 8bit\n" +@@ -6147,8 +6148,8 @@ msgstr "" + #: modules/audio_filter/equalizer.c:58 + msgid "" + "Don't use presets, but manually specified bands. You need to provide 10 " +-"values between -20dB and 20dB, separated by spaces, e.g. \"0 2 4 2 0 -2 -4 -" +-"2 0\"" ++"values between -20dB and 20dB, separated by spaces, e.g. \"0 2 4 2 0 -2 -4 " ++"-2 0\"" + msgstr "" + + #: modules/audio_filter/equalizer.c:62 +@@ -6837,8 +6838,8 @@ msgid "" + "16 no padding\n" + "32 ac vlc\n" + "64 Qpel chroma.\n" +-"This must be the sum of the values. For example, to fix \"ac vlc\" and \"ump4" +-"\", enter 40." ++"This must be the sum of the values. For example, to fix \"ac vlc\" and " ++"\"ump4\", enter 40." + msgstr "" + + #: modules/codec/ffmpeg/ffmpeg.h:115 modules/codec/ffmpeg/ffmpeg.h:248 +diff --git a/po/sr.gmo b/po/sr.gmo +index 52142de0bdb5388e846298cbbfe8fa7ae706bd1a..a8006b960d692c0383c2e9648e7266709b735c3f 100644 +GIT binary patch +delta 28493 +zcmXZkb(~ej8^`ejHe;S)@NpD+%_t7PRV@qgsA<2r1MYcX+UU&slNI9%E1gyC_F +zkAGr5yoI$faTUvV!1Uy2VOHFQIq?pvq6w?|ocvf13*%TUg?q3Je#Sx=Rn6xV!T!}k +zcH&wJbirLrh^edloYbhm9^EaS+iW) +zkBXT>=*RY`p6Y@$IOOytk%)q&sFrWXOn3{kV9YuMALc_fmQG= +zHp4RYe9kglfD^D{eV?-x&tkD?3}pig;@=t)ggoE*mqZdw*T}lKC@MPZU^1M5s`+Bn +z5FJE~-5pP-v2|%m)Ondu6)uk&`^wk|+oO7RFDeG^U?@o9A&Knx0(FDbP3#6GP|+KO +z5m*Ox!``U*{sXG3=cCU16*WEgc=>;@H~ANM1KWR1wdjG0O|6G3HS>ks7WHq&jX5w2 +z*K^{Q<~BwhTUdq0pvH0;Dmd5U8_qw9k>vNavS|N+RmsP0Z53;XYH>T%P)@|YI1d#A +zU$qJOoZ=+%xA8f1um@`FW4HA=jWH7S;AyB}oR1~&chn66?JRgRcoxC(lvhP9OjA(N +zzXv-~;ip)We4`FNrvR=9k=~n5v9wX)Vlw3$PQOz)D!SyU*#P`5z)tih@^I8VmNYY19{+MCV3RlT#TJDLw~v+zxRBLUCFl`;B#8* +z%s)tcLqXnwc3>f@W$^}CaHT~}&nBpr_r$3<1zTdK!8R?&pn7NpYUSLDy6#VGh!0Rh +zP-ckFIfz{_nQEG6sNJ9v>cO3{84mXHm+&X@4^ZpDh;J>p=Ac%>Bd7g?RHcbU&D&{3A1DQkrqVXU{UgOQ58Lh6|nRu +zpEC}}Vhl_$+E&oysM%5*wPLnFMg1TzKXWuKR+ns~pbH+uomhB`y;NRcYw|J1+S1$w +zb^d77N;enPBYROjcmee?y6YYPh=s|g9cSk?KppSyBIEkreRH@fft=OhYIknRVc +zlNlSLqV-#hz_q9zI_>F9u_ZSzW~96vYA8CP9yAFxOBUe*+=5tZvFHpf5XR3mn +z`B#vHZqN*4<1kdzPC`B4CoG1$P($+$70pGaSuj>Z1@CCgg)33_yMQ|HKh)60pKj;X +z!zttk;8M;1STlUix3~@~VV<9S&TgH6W3cc{+m`P}jd7J(HWc4ud-5kx!B=3mRlE!; +zU){4QYH9C+T8gKj){Wg5(!4!JLS23ZHAZpf*fhzCxye^RUDy|O;X>5wbPWb^KWY{n +zLEYzucRYNqotF`BQ(grB!Bjt6g+Bkx{8vpg&a)dAKy_JZRC#^;8r!1AY#*vZ_fcJ) +zbiU82i{-I2&O+@6E@KBwyugBRC~94pi>lyKRKw3N2ze`%cft!)5PiV>7{1V!+H$CT +zPcOd&6|84a>%lt=!}yCVpA^-Q+^F4gS+Bf4YACv*g8Ii03C-^Vs0Up2^6?jYYd5Nk +zBR!)~H>`w-unB6{+#NL}Gf^#F?H%8QYS0l(gV#|N{)Fnm&{s=rEiQu*6tqP*no&1g +ziF)8J)NDA3>bjSn{-w6GCdN&?rt{(kj^9~kLpXD}&xuZcIcn%uVE`}T3cdgTCZQUR +zTVeBd9;!uKQ8oSt^M4RR8KuY^>p-A*05BV +zQS(0!iTE6-hiYkCR1o#^^6NbhqAGe0>M +zLF88)MZV}-+fVGq&;$zVuk$&R@di%BZ`RudA5rAiK +z*la7?6&y#t+ZLa*3g4g>u7z7|=Be3lBk}o?&bTS +z-Yp|hvu8f?oRIS?3EgNLs_ReU|L`XMjH!ON{lN~5ApZs +z9A^xw0m+W}oN5?}YQR|30yPs?YyMX~Zu|eYsFzO16SkoAM_n)jqi{J^z<*IIWZpk4 +zM(Uw@pchubNvNK@jjr13umdWXrlaQluU`IdFaH+xj>vY+9$XC7fC^Y1>tZ>ag>&#aDh38! +zxAVWpBs6Rm=B9jI=x-bAzp*m~(Qo*iZrBZ*;1$%66#mC*JRCKKD^M-pj+#z~P!Bqb +z8mhaP7eAtgD%VYGSWVOik`AcZ5}HRsW3d(KeCHmjiyxvErbM^w2Bkb(q0SqLijlFX +z9+-{2aXG4jDQ{babD}Cx7d0#TqGrn+q^Cp9W)k@{)~F!*a>riB|GR7RyfW$mbx=Xt +z0yRYAQNgtk)f0y?Bc8_D_!>Ln5BF?Ievdky^S;GEZA_y1Kbu4m4y;Gr_+QkGqy1|w +z$%KmL!l)jp>e(MtkY9{haSv*?+{1P_`+<$I^U&w4A)g1A;&t4JqaM*9p6?WWY+ckE +z_4XTuy74|Ni&tweNmPJhK-5h~IGD2b_UjpWCk4_rfaP0tZvx2kYQ7 +zRE5jFWd7&W1tc_&XQ6^)J4WI&)XO5rD_gtUqJnD}>be=I*>ezw;aMzAMeDw%;yCS% +z4c*1JK4&laJE$RC`rd;6)O+T?g6IVW9Wd~pjd?fJgZiOX!b#W^*P`}%aXxqzL-kNw +z)O}W1Es7|4x|AlwFQPA&x-8K{pQ2qclL}|j@ +z>q1UN5)CQnf;w;z70r)OW7sT)-<^IFus!+t*b##<%^s*OzK9Ci@K}ELeP0b#@mZ)I +zT!FXnH*AHgV*6S6n16BN_?`GfXK_r)fogI6?pSw3&4x{=o_UCc@Ez(UlRKW@eHXMr +z9q)^J&`pn7I!5`W13e(xRy3ZjHb +z{mxM=jK8Ck%4{u9)0{avy+b*Pp&>HO~NG7Xj^TNG8%p%{V7QM2L* +zF2+3R{mydy6MNy{41T9FKEc{pG^5}BfHDDxkq_-Ap_Y`)WG!oe8Oe{pvbfyyAu2ZV +zWcIs%yDj7S0=1$o%Hnt5@5fO2XI?&8Rtw6Ks4=hW8Ny6@|F0&YF+YQ4X!)FMe#eK` +zv-_Rccr%BM`IDS}_r3lFCvyJmTz=c2;}&Gnk6}b=02l1FDDO7PSgT +zU<~s4P)mBGS6&14@x28m)%>4FLJ!!28smc)fieDP^EVr6c2q)5pRS%Gz4FwDDB*koPu7Y~dx2So%2sO_Spcayt#qDL46?>Ae +zfa0{xd&S6Z9 +zi1NGd`Ru4MZjaS*0BYg+4OOwns2)gIhUrHI(xHa-Xj#?|@|DZk@xm3XXUd}*+$cms +z4{nF*`cbHwt?w?WlLcMN|-fK;17vC0m#ZqK2X!YHvB( +z%ZC<_P?YXNb>&gi{`?=*%Ju>CVbaQeXC78Yehl%sHL$r=ES+U0gvJl98$yYY{&97{mw)Dg8KX5!&wDEw4KZ>Y)bhT +zEF7IbBsB6nV+s4IO>8|#+1$o53e|HpP{Gy_+u(52klw*>(bvLaW`tCbEGMCb*VRJ}@mf^y{f;3&iN8qb +z#+OhZCf{NhT^DF=FORrwEczRwR>V%In3;;Y(OlF9WF;#2?xKe911jhWwYBp4sPj9c +zuJ7NL`JaHqFbXuCreFZKp%#ois2DhknwD=+D_vAOd!6<}J!m~@J$Q)CFiCs6z7M7& +zA42u)LewCFm*?> +zB_FH0fkR(grmo!%-JbM%{2WYI^>Hij5I{R?STY)?L{ +zt8K%(qlW4NszUy57Ssh$J=Pd?eLqwK2O|qs$Qk7oEJw9$9je6#P;aZ#s0AfkcXK!@ +znlE8lEZD=|ngg&E`Q6wW(|%(M(+JdkXJ8;2D=R8y*7Q_4^Y1U6-hrEkwmI +zf_!rf!w~95V^Li>3)A5*Uj8I1R{p{Gn5MTye{L*Kz6NU3It_LGA*uO)frNtN0oKE} +zsFt{WX9YdP;ZAp~I +z5vbreh#G>EsIj|>>Y4Yb8>Z`TF%yNlzLuBo?l}~TQa%Zb;9=CX{)8HP-vGb+laDw9 +znEx{vlWG(w2yYFvpm~96L9#*CvTUf}DU7N}F)W2`kQLckjH>W5)JnPuhvH?_0~-yt +zHNO?MC7*eS-~D;d#39Uoop6T&Z5W|w`Kuc +zL%sqQqGqpA70EH&@BD%*u?IF7VV^O73y~N_LBf&dPdJ8rs!_b}>6yi-Xn#K1cDvQa +z@F2>s;10^4jI|rC97m5(o_xID{Z&lk31*>*HeJIf`JF|a{|Ao5Z@#m9=oJaQ*MIun +z9#D9)-x)^!Fe+Fo{NQ)`V-M6qat{>);Ztnv^P$#>ny4P^jp=YKDmYhq3;W*QSVR<8a~7CjKEbmQS(37Pk!fL3bv!B$>N#zlG%$>7{gbn;2JZ>K0-}HtrvHZ +z7C2u}+wv51&3ssud?k#;X;>0ZVGNA-vsFAP7UlU)9ujG=qvu$RP79Xd1vkQjL +zx1O1W>guhirS>@H#s5(E%dx;JxEeJyhdl42-kxz5`kgHpg&}p>I}(cGs73ZRtcM!o +zVW@>@0p`S$s2hAhwK(r$vm$C*HAmg=AZkk&XNldnG-^86MNQwfm=Px}Vg7d@v7Q38 +zB>7Ss^Gc|Ns0aRtgYXQ-UFLUx756u)0;yNn5EMi`peCwkT4E6UpqApnSO+JfV(dDW +zMrUQnZV>WQy@ +zv7xDib;%z=#X_pkuNHKfP+c8`S_yk#9Q+p5(uwF+1a;v?{0et@i +z9cn20pspK-8sb@)ACDmCg`5v06l}59+ce9L>*?a6IFa%P8*J?QZM5Jziq$AjxXF5^ +z1*$^*P(wBzRe@=!hAl<~-8$5BF5(aP&MjxYjNfc)^m^2d^K9|E-vJN7^yCkr7NmQq +z76i810}5hR@?}xyb;X)E8MX5Ljq1twsD&!=Hv3?b3-wk#ithgZE(vvU?CoZLRPZ!L +zjnPbujpcS&#cJU`m7`kJc&E+tfvEfZj79JeYNzuN>tNwsHoeEA-jbU!l$XR666&fr +zyO~~?92JZWF$a#uZ*V>8J)VA#-x-ZrF^FsM8g52EPTgxgG!xa3<)|LKiy9*TKD&SX +zeawGFYY7Tu6zU~Y9u-VIFeXkz1=Bq2g&R;6&9vX%32i(_p@M6v=S9@Y8vB4v%j~EH +z>}%9(_=f`_OE?G3Z#-|{Ku)N2$nXB?bqcgnxAyk9!he)W)9-+qaIp)Fe->vJTFemwLm>p-Mg6c48{{Mq|@Eg<+raaC+hmpZLi=xDoSG=wG}WuYOG42Zd?gf!TMglFRCIVyz+Ud +z-R~aMbo_vdop{Hr$0AV;=!AOCG-TFcE`Pk+*`Z;Z9b_s6Dq1QqO=PT74MxN?VSUcp(c&It)lTbDP-s^lkP +zHN4=JXFOvSs*M_&!Po*$AVFSXiu4nz&*WK;uZqbhPAL#lDS +z^R~dGMqQWJVZw4eQXb*DsT)Hbmy=l +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 +zUr-Cnc2qE4LIvLg)U8|rVc634gA +zWd3W7jyB5l$b|7EiXAAN< +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 +zzsd*u3g`Yu3+kv(%>Tih*!*+Q*@l-fD<@9~ +zDxm6?y7Upg;J7IwGA*c$BK(%}fX2;2>2JJvqbgvn5ekY*|PI(9Z +zM18cnf_eu;ixK927L1E}?Iy*PmVJqaM(}^K0*TOE2HnvlD6~)7{N8|5lSw +z*Q`T*M%(EgAP7-ieHQhgd#D}HL(f<-!`zQj*{})a9q?N`fTb}iR+#&z+!0uf{A*MN +z%fvP-Vsy>_Y9zEdtclfeGpa(qIQHOps0$OKmeQoCF6@fx@;;~@8HB3n4Agos8+D)c +zsOxv3J`e0iP4B;u_~$PbBs9kNQ7wM!oe(Fk1z&R1jU!Mu%IKL56}-7oLDmV2;7HW@ +zJ5ej^UN8RwRiQViSc?`fO#l8RyV!U(J<6co*L_gsb5S*3h#7GcR>n)HX_+B@nEPc^ +zZ>&OoFKQbeD?yn1Rc$BF16Y;vl;Kw10X1a%!b4$B1szCeUEdnjqIIYX9-?YmB#}L! +zHA=`YgF*fMOENmRK?P#Fhk8q +z{Evc}s4hI~t>-U +zbRQdP|6eF=nEUzsJ5&o!pt?Lf!Y-_i>XA99<9}l<%$Uwv+85Qb)u>J8ZPeNymEN3* +z>hh;p3QJ|M@(`BQyg5%oHB6DwdY~gxGiT$-Sy#u-x*BcktgF$JcZ^Z3Rrd~kTXkqR +Uc5OKy|M~eZuyt*@VC@_K2X_DJ(*OVf + +delta 28484 +zcmXZkb(~ej8^`gp+*qW$g{8Z@m+tQF2I-Cq(hbs$bW4{~lF}g|EI+zKkWfM8_xYaZ +z{Nd|8Gp8n=nK}2~mC2`5jXa%dYx8eH6~Y|nemS4>wc|KhD)^i!SP>)f3YNh{6@5+& +z&TEKy$hWEFb8_K#m==#<9DIQB@DGfIzRFe}4~vpdgIlo){(v#6_(D#A#QrKiCmauB +zTs(z&@dnnx7*#Fb9Mh4XhFNeM=D?e%iiTJ7Ir*>(7Q$gz8h2n>e1`?GP<5YE7`s;w +z*@>$t&;_?J0Vb&7b7EpfR15QBe5{ADu>-22eZBl>{EGZc)OCwc=dVTe$UaPpr!g_! +zM>YJfkeB!mb5r22>2tDT0gS+wsEUP958RFFnG>i7{e`-rzm^S23RHO&)cFlC6?VWh +z_$}(eD=-Cy){)TIA4RqF9;&9k+CC>Gro>WM7?a}w)L72I)OZ@z(r2ii`;5^sP94i9 +zMa4`u^kXwrPqjuG9CEsnNJzm#RLi$uM!bQU@jr}#nd(|a^P+;Q7OE$jqk3Q(>H(`z +zL$n@s-5ykI{fz2?)2IeNcgsVL6TO}nr5M41G^pr~M75|V`tV!NabEc(tV#J2tcowO +z1s1OFbJpM-oP;GB_?$g>5{rk?M5=k&gW9#CasOYSO$uNYf`Fzw6 +z?M02Wn%|eO0Y>j^(cKbDazQuL^jqJ>R)F8 +zfIm<@524x>;^UZ`kd#Sw+Cg>~+O!;s>Y*j5m2(s7x>MK)@1TaD +z@Gzfq6kB65)ilF!yFp3RgIi$>?B(Up<2>?rQ0u|K5f)rCP%Gg9)B{g@KK6`8aO-}l +zF%RZORj4&K#eo<~MB*|D)%*#n%RZuN+GeEBX^xX{fR3Z4U&~Q;{s7Ohs0YpV@~cs^ +zWhW{&qEOFy;`tAzB_ID==Kl~9`MU(alK&UA`?Vf# +z=MO=xbTd&svJ=&VXHlEcE${eSEJQxh1Us)9>UcXZKR85!ZP1yCS`dz)=KBYXzycHP +z!40rH`JPw~cVb!m3w3_+Nmf1tl|P7D5B~M?#V1>S2)3hqFY3HdswtLehPq%O*1#L6 +zr8Lu2>*7ABzNnLZ~27DWw3OH|j6Ld}wSxE#0Q9IW%5_2d&&aE8rN +zkTd_XlF$w6VodChirP`A2TZ}@xDC~1uTasPW3~lj8B9-p2UppcDfRSxEnPK +z4xsLH)jJ+sZ09A%hm_~Qdl-L-Rp{Lk=D%v1e5u_y3#!WsqROjcGi-tyvt6hP-9~kF +ztYto@9u~t$oQ8TIxPYB7#&Qe7KB#qJCaQu9Q4K${JmjrV-U&}oLG%XmVeorfYKx-s +z9liVlRIr{vtsk#29Q`XS9}Crx^r*MvB3^k_)KIiR1@-t42`wypP!G7|<^3zYwHwvN +zxjhS^ZdejE3u>X>n%kjnoSk7zOWaQW<{BHqscU^sH1dm4L$?eAcplej|NoVQ +zYB+qI&D&Y17HvY+_!{cLAMk5TvEE{#2w2-JzQFbyvE +z@`te}`E#iEfs*@t&S4yYTDlAGw=pm4*${_O-W6lw6LfogKl5K*=KN?C$cze>BB)@i +zj(M>wYK2>jqj4u{EQ|c)bLwIhY^39u58tCUq09$t7DS?gx|Ww8jD?sj6G9}kv>rNW +zOYaLTOg{XOB$qxKo^1}aGN9<%E!p?ahpHo$LC +zJ$4LpVCY{GnwQy*d-ET4!4TBYj77D4Evm(bP+fNs^`P6RY4r}Zvc*1OEzXbX*|J`~ +z3u`Y*6(n?{&8V(Fibe4{F2VRG?fu{fj3ECAH4B2LY?{VJRj?|m%iH2i +zdTJ=D0kKc}oa&ex)qr8B1!^j8)clV;WAFbjQJYSSv$mjgM_n)(%iv2nP8(c@s(6gc76Zw#J^4PU^6RKzevE36|B6k+#2C`FDoH}o*#gyq@u(&8 +zGODW{p;|EiSG(aBRD}+puD^pCvM<;ei(a+q`yHyM)}l6@GuRF9qZY23*O>om$%tz< +z#*wWK*JSbLzB>_J!ncc6yqDK@~|w`_Wj#meMw +zqk=P26!TwQR3pl^!{(@9nuMD7E4=)#Uj8L&k4Syn9-If&fZ|vID`R<_hKukDDh7J~ +z&(0r>Nod$K%tiU?&>b7=U$H9%e_{`8d)GdrT|^B@_Ip<20jM!tf@=8|)O6a1deBMK +zP~E~j_!c!(>F!&@%A-DzG)K*r&@2)fi%m%9J5i`EzKdFzqCc=36!2__I&TmvMuwq! +zU^@22#i$C#duSC-i>g3n)U4==nk_Sso(?%1NaWR6qk`!DBioL1J+^sX3iW_Ws35J6 +z8ln-X;F^o-iT#)XkK;moj-7Gr6I+sBqmHM2YB5j|lW6`=CsCLKYfv}-AL_;*Q7uXF +z%%V9vsz)L{yQ5w-=3^GzftoE**a4?Mw=w>JTgYd4!TUa5!5ujGB@N>FPR>`>MU7Cq +z-(b{@cVRiah-2xYM6Ye%UiiCx_ml69wQxN4;=DIF7u&qGx8}c4yJ-DCe9lnpf_3o` +zs=`IyG5>RrXhTBtcp54=wxFidBh+RQ@!r<%CaB=*kGgI$YWD2Kk$4g#sc7X7R2(OM +zw4poqr_VV={w8V&7yfNQf9!AOzk=uq1)cB{M#r|F>_Od7E8!??j;m1bdSRcvilKU_ +z3FK@%R8WySnjes+gMeC<+ur +z;Yt0@FPI%q;s+do2a@^S?YKm83(9X$n^p+5kN<#r&^6Q$Jn-^iDXisjFel~3y?hr` +ztj$dk^1Cb2AquoIJwrux!jxtad`Z3qYL-+@Wi@Y&+AF4@TDA%`G>5T0zQqmL@N2&_ +z62nqkaDI!~$R9v$c27ej%8*Ex#_vR8d#pv*uST`xLxkVmE)%A;X_pgK(LNY~i&3-U +z0ItLg>HN-GJcWI*S9-rw1s`A?%$dROen1J~Nb;fWB-E1p8Leg2P(3gZ%i&_ryQtX6 +zkjd}n|6fi*V}1h5(()Nu{f-Z> +zWb->Q@p^U}^9MQn?!NvWCv*PvoPK8-rp)Dc8sY{VjbXXz39cK9S21f|zjFk?4DLJ!!8<#8`Y;J>K(o4TmYj*_V9)5dd=7=fHaXd1o<%;`4XrGG(dN$j%5C8UeBRGE!>Dz@icyg +ziOcxieLf9pjGJK%?15T%eneI5KB@=8%QF3_KoZo@9xTWDLB3RZJD$Cw^-M8TgKLCH +z=)p}7u;T$T6-=OXnsB8;UR@6{5MZH@N +z@$#WLBow8)P+fTt^?rU0wX(gzycnyB-&u;KQ2E7J110tBXL?o+jQbKvNxG&sF%<8 +zSST7lBsBIr;|co-O>I4h*V4wa5US_Op@OXiw!;CaA-#zs@Gn%%3~Yr8lEoynupB{6 +znqS0n%K24LL%a$Vd_Q5xPvRF6 +zy776`hsl>1PS<@xZ649uS@c&&t%xmAF*5;mqnW4|kfo^LyM-FUH>jY?*51miqRwxH +zy1sjR=6^gA{VC9N8ixVgj9M^upkm-4YFfTPt#pMt*ml|t^`JGV_24eHz?dEF`YxE3 +zd_Ppr&P7er^`3h>(ta(4C%qHjq2_twPWFP38P&4d7=cqU6>jl7gX+Pjs4;zo5tyK} +znICn(`lyz7L^Z6h=ZFvqy_rnJdAJAFHMP3fkTgaO$pF-aV^BAoj+&m|qgKoVs209N +zZNFboLy@_w4Ot1)@s6nb3`PZOXbcH;$x_r%Z1(a8Q47d9R1CaDwX}FQzxxYmBz7eK +z4|c|O-EFAOqAK(^DyXycupX<4y1pB#fxVCgE94CJ3KpYUwi?yqJ*eI4IBG#j{f#*Q +z70u_d9A@olyJin;Lw-B9#YDYqVH$|K?_>;wv9h9KW@T@cGyiUr(0u(J)pgPP*g}*C +zBgogoaO{V=(J)k3PQ$eLy_Y|Vij`{^7Zdii=ueLo$d^OCv`$1_zfWrZpCzH-xP$fa +zB`PM$^s{_V&ts?-C+}}#*a9_%ol)0+>*c4ThH^b>`t3)>%1z9IA5lG!W&rbF^S%j* +zNF0a?j=iWMIEsq)OQ@cCjk;lyffh4`P}f)R^6fnPU=hkkVPV{ln$~}y#{MrXjbVeB +z|8p6WGK1`fHwIhKJVCV}_7H1XYEIRLG71^1Os_-II(5=Vecmegm8bfW( +zZ;0*5ryS;Y|Ga19Fy_BbxJiLt7#?78{L?!j|8Q^Kqn6Gso+nVBaQ=rH%futhEVzYy +zaV$v9o}(%fG0N|3!ll>~t9@&qF@Fq^7(+q$XmbjVBOiYZ`#n7~9~JG7$J*O&nQ=Ub +z@{72i@(1JXhD#^VBb3LP=y(4rrsgCw+hm)r!6|-c1?T^aqp`zO%ZHwk(7rxpnmr)< +zbiXr_{C-rh6rbUD24Z{E+8>3Af#6IV`%I{HqCBbxJ7ZcLh6>K5Uin^B51z#q_z+WQ +z{+IpE4zxgB*dG;C^H6)jF0VWaBgp@UdJ9f7%dRVgoyph4%D4y9&=Y*4;hcqtIez!Y +zs8^^44Vde9zQtuYS@S>LJiqgdf-R_NGJn2pGCOf5WB3deTtgSxN2rOY_2L%N0_Q!d +zLU9+HnXnr9l2{BUVkta^(b2cWDjo}q@O&o&iPYG_a~MXW1&i=HWJ@2LAlEVl|SM-9zB&)cZoGwgf6vl|OxNL}`dgrd063fm2NBrdgV8erFq9oD(OLzq8%OuGV|6J2vh|oq8c_I6?Cgn&pC%P@ReK6d>OIJ*61~;8)w+gVrQS385KM=QDZa} +zV`9<$R*a4;& +z#z6&Rbs-h{5*q+eXb1*8n7J8mTt*m^D?M}-ys0FMx +zY8xK=bI1}Oyn+r#Eq@gUb3%ntRKstFNT|#1p~mtt=EmSj>-s{NgM3@ehSO0&wI4PAuc03N0yTv3PWjzG +zO8*+Q(sjoyI1M!o_jsN{T_5_*D|n5H(l4kLFzGKgR{2mjE{UpORWIKaRgr;S`7G4i +z?+(;-e1nP|-)ZZy+^7b$L_KFBGHXK4_aroy$51tncE*Aw1FF0%DkesHZoo+Lzaq2O +zNqpAtjAFf*gN4W^J#W|7#M|m#jh+QA5)UTj3Jay6`WmYhzuubs;Tkh{~g;T^CeOO~<%u!C4ZD(kRr6#b?wv +z7m2R;-QR-K{c7`g25Lz@jhaqZP-FWR-IiUop{j=ZQme7&H>hbh2GzjnsEXXikZSC^ +zW(!OL)P<>0CltUm*c2mh2rAkac^<`S>yzKc0DtHszve-(4 +z3cfO^`!>17{8yBYr$F;`2dXQtd->>5_IV%&DmXi11WrQTXd@~}kD{&%yKO(o_rXPWxU7@?_qxO +z+wXh(K59vRj_UHasP*L^uRQF5eQt=3$0!dSB@szt!bAJ|{TJLoKGtJcL-7AJ@~pu!X7sDqq{PExNz|^&{cd47H-| +zK;8HPYHWY^%5%Q7A*h1t(smeuol#5nL@&P&Rq>msAWQVhg1RiKVhwQt4#uq^5(!`1 +zjgDbq@{e#Qe*L?(>@sRhKcOlZ_QqQBH7X`@qk5)_XMHSBz7?uRR-t-uE2hOGn3LFf +zfFVV3{6Fl3tf+;h7^(*vd*y>rV>}TR&AV{`Mqxdy_s-`3T8vOR*2RBO)4BG0zx(%s +z?QuBy-?23I_`v*Ei#LC;mOMfQ#~18^i9gyl8p5vRPhm&Q|EK*Hw9vEQU$#Ti1!`h?}kr~PCV>VWmh@5Krj`*X-!>p$E49f_*IHr$OTz5IxO?A>lQW}xdHqJrtG +z|ExSEYOm;qZE+7a!W3VuNBW@l`&pxx2rPihP+j~h>c&q|V;v(}z@1eoQM08O4voee70%{4cl`nP+qF>tV8H!fqRykX +z&+_2`_Z4a=D%iH*Qap|7x-QYJVh3?2`75{)Cwvuf7pej=0&at9U_r{8qJne=M&Jf7 +zf5!45=Mjkv90F1AzC=Q+P+QcO +zP(4vC{x*@dbTjHfKjSdGj~bFziRn?!ABV@uZ%<+s9+Wg-@BibIT8$>7mdKT;u|I(t +ziZ>XJsgecUZ8`(02P&f;*bxbCXB?_Q6TRcBF@pS2)bxAk9e?WSPad)xMI;ZnKaZC} +z&EpxU=@o^VcJWhCb6SuAtKjpLHl_u>4!AEM1yWm!N}|^M>ZtdLA*hveDW>JRGpM0@ +zmBxndpAdYTcJ#rT{WO1?u+}$w;a^H~Ckwke8OhTP-0ej#ptcA_82i*7g +zji~%Tp4D?$ezE6E&k{MUe2Qn3XO3LfkYRY6`z*%{n*SqmTePo4EhN97g6}@+O(#|! +zn-$$q$7i8lST>z94u(Tm;=?*O)#War-39iPnV$< +zm=ma|y^Covb|IUFxlzZPp>EJ0wUEq0O~Z|-2c1E!d~b0e1`C@bJU^mh=9?nSf3;*u +z5i2-{YQaCKDE+Evz?Wh~ZC~ezwHXKfVIcoZ)jdKj@O=cbHx=W~` +zxQhzXXXsY2f(>C_R1cIuE$v-UyX+J*+i2 +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 +zVuZUtcTdtF7JZs +zk)EjYC!^Mb>8SgxK|OdI>hr*E)b#!ZiGO~nAfYk7jcV~r?}V_}7JP9~H%^SYQF71J +zsNhYH3bK}17zd%w--=pUcY66Js0zJ6#oEW%;rjP4d5eu>)1xqIzwUx6pNXpRT+D#$ +zu?n6?P0M6)!`&~VI%8GxJFz8x!N%A!p1B9Bk&hSO^3Aa+`Cait;Z8*zNMK#x2-Tw1 +zs0;3*YMLXVJ)kp|BfrD*Pt-zFJW;s&qttg;p8R9feX=JGcRxjUMC~byQ5C<6WiVqX +zi9MhbR-j-d>H*JCv5+%qxch-)D5_;=u^?toW;bkuy3s<^gQHN#(Ynql1;-y^O)Q(rhGHg`C4URQ!PH;dc~eor +z`U2IE$kcY-G*pFdViK3Mba{{aEg)4%`# + +diff --git a/po/sr.po b/po/sr.po +index 4a0321d..76c1409 100644 +--- a/po/sr.po ++++ b/po/sr.po +@@ -12,6 +12,7 @@ msgstr "" + "PO-Revision-Date: 2008-05-14 16:16+0100\n" + "Last-Translator: Gorana Milicevic \n" + "Language-Team: \n" ++"Language: \n" + "MIME-Version: 1.0\n" + "Content-Type: text/plain; charset=UTF-8\n" + "Content-Transfer-Encoding: 8bit\n" +@@ -6755,8 +6756,8 @@ msgstr "Појачање опсега" + #: modules/audio_filter/equalizer.c:58 + msgid "" + "Don't use presets, but manually specified bands. You need to provide 10 " +-"values between -20dB and 20dB, separated by spaces, e.g. \"0 2 4 2 0 -2 -4 -" +-"2 0\"" ++"values between -20dB and 20dB, separated by spaces, e.g. \"0 2 4 2 0 -2 -4 " ++"-2 0\"" + msgstr "" + "Не користите унапред подешено, већ ручно подесите вредности. Треба да унесте " + "10 вредности између -20dB и 20dB, одвојених размацима, на пример. \"0 2 4 2 " +@@ -7488,8 +7489,8 @@ msgid "" + "16 no padding\n" + "32 ac vlc\n" + "64 Qpel chroma.\n" +-"This must be the sum of the values. For example, to fix \"ac vlc\" and \"ump4" +-"\", enter 40." ++"This must be the sum of the values. For example, to fix \"ac vlc\" and " ++"\"ump4\", enter 40." + msgstr "" + "Покушајте да уклоните следеће грешке:\n" + "1 аутоматско детектовање\n" +@@ -7499,8 +7500,8 @@ msgstr "" + "16 без допуњавања\n" + "32 ac vlc\n" + "64 Qpel нијанса боје.\n" +-"Морате да унесете суму вредности. На пример, да исправите \"ac vlc\" и \"ump4" +-"\", унесите 40." ++"Морате да унесете суму вредности. На пример, да исправите \"ac vlc\" и " ++"\"ump4\", унесите 40." + + #: modules/codec/ffmpeg/ffmpeg.h:115 modules/codec/ffmpeg/ffmpeg.h:248 + #: modules/demux/rawdv.c:36 modules/stream_out/transcode.c:172 +diff --git a/po/sv.gmo b/po/sv.gmo +index abb0f99d866dcf064441fa564549e163461dbe55..5e210e8c23a3daae7d167c49ad3e0c1037cbb86f 100644 +GIT binary patch +delta 21252 +zcmXZkd7#Zj|G@Ec&n2pB%f97WuU&T8vdfkwA+kp*AzKUiDwL%~BqfSc+Ege-Dy>K* +zQAtu-B&8Kksvp1i`_BCJnwj(c&V1%G%Q@(I9=@%>Gq)9Zp>Ln$l8jWU`00#PiBu|e +z<(Z6BZJdTx@kx9VKf*G2Ln@srg^SSoGnj?%VSe0$XW;?Nhu@+7{ET_ANJct!HkL%k +ztC*2aavx|G8-`#xKA3`~aS_(VXYqXe67BGx*q)tEr|MDfiP@N7HC&0lzb$$Q&!he? +z8c4y+bgDQO%S=L~HEHmJ2598X&>6KsXVfLO_loTUun_IT(V1M2=i*$g%GC +zA4LP(hz7b1eSa_Vev~I`DinkY#u-Yho1>eqO{`yrZKw~z*|;1Hyy7|ORAOoxQ&@!^(6v5{4tyM)S)Oylz$LIM^=x!0 +zI>q*G(aX@84Mo>@BHGV1G!qN3Gp+z!90z5jQh%T+?Qvc@buBKzrkGJQ^mid%NPR3e#3#_rydUdhQlwZq +z)rdm-=#A)RT#MfE>(I6O0A0(^u?zl)<*|P8uv9(KwI34e*Q5Q;M3?p@H08U|&G$v9 +zC#ho;TGDU=UGoMd(y89q7ClajF&kH+_rjZKYPUxZMvuqO&nX#}rU?3eO|<`}XaJMZ +z2~Ee+p8q>2bfRGux>iTfH9CgAa5C0UqXFbA6)YGnj-HZo(Yol}-Uctlp=iJx;^#Zi +z{=dXLp8xMDxaL2h17?&C=lg6lrDf1#SqB}c1-hAfpchqt^lDy+&TM)7d`)y6I^e6Z +z{to*5N0_*#`(wk=_`u0nPn8L&%tB{S6{}zibg71+1CGZWycw(EqgVrXU|swx)+?1w +zr>ax$j($F+Ea%^bM`FYF=%4Yya^=Dc9i!vW0hgk?`cX6k2V#5i@?o!JN86&CZ3I@p +zspxUOAI->y@|=Hn=N1|~&->8S{()|uf6>(EKRA06k>H{(3a#yr{S)DWzSrhYcMcb-Kz +z>5J$ZzlsjH4W04V(Ie>bPX3_aMUYi7bkG`ouoHR@^o;dO(er*qtlx~zcot5@yU~I2 +zRtf=>M`u_C4XiF2P!n`hw?hI*QkPNi%A62CSb?VW1+0i0(HZSSQ}}iK{ChNjqv+C| +zK%XmEISg1FJuT(YKft#b`jw(T*NPXYefgHT(v; +zL?5F8{22Weef~uB3_9@HRl>xI;rX8bCKQb9GBn~5=!=ull+B3FM?1Jbx(Ypp&*Er& +z70pnks^RxQ4rWuYiB6y!dfa=X{SL>(FO%!y2X~;meJMJ_$7B5!wBz^C7k9??&(Xkt +zKm-314KPo&@LVBu&y+>mFGMrk0e!DWHO{{?9Y}*6Ux`LI0X>#8u{kbBpZgp=&xg

    +=TxjA8glIRjtLN{FvbmsNZi8e+1?Tt?Kx|}3@FpY*@G%UeO@G$no#?{lQjyMPV +z;m&BK8hrgyzX|)}r|9Q(YKHo3w0J_d(aol)(Kbb +zL^SfH=*-rkYyL{CZ$mflM`((Vp_%#{ong9eNO@swLcKIr#a?J;lBpDYVS4m-bVduY +zHy%L;ZeA~>v~9EtI$&=!pexWlb1ino8R!!1z=pUR8)M!J!f|bZoSr1rmx2L|!V)+h +zjqG+@hj*egX0a=M`zdpYhX`w^WB6#cUP=0LNoLP8qivF;MbyWqu&`j&;SmioA4Jr&-0(Z +zVR)e|nt_T~D1$$QqTf~*HwpucLT5S_4R{^;{AM)Z-I#-4qBmk@_yfvl^vmg9bl{iJ%)EgHwg)TV0W`q>;^#%1 +zhWB&O%=T%@`S%H`c@%vHdADfX^`-zeCqJ +zPxEj=orj)|>S!jKqI>5O^xO5)BsTO%*X9cBgLBYS?u#Bmzif`80sf25sCbJoP(y4_ +zy$fdJU1;FXVJ$p>_Lsk9m~auao|L6v#8uD%8lX$i9*wvkI>YPGHN6Rq{6RF;E70%# +z&1gWMpu78b^tr57;jS-?u6cRviq(Jydk!~hGytXbf!OHkqmy+qDz_CKC~CY#7Ig~XocD614E+MU=8Y1 +z(LaQ)M3>}k^w@64CU_8CisBu@5|qWN)T^OO(H#wBFnW4MVGb_r!1;GKze0nX=o2)R +zM==}!L62eCj-lh`=)fJ(U$2AEj;Er>a|SxVGgu!#L-$1fPT~2Y=n~XL10LNe2_1~3 +z!4yu8AIv~E-E4G#1!x8qqq}<}x-_3)SNt9gtX}8vHQo_Dc6Xueo6t<`La*>|(7>uD +z7l%!D0k)-KGPc8w=nPMxYhA2MIQI?E)OAPKelmItXW_%R5}n~iUBmM?pwHcl&Uhud +zm!3fTPu`oXXx`mDgp)mBkEVJUxi=xk= +zd+hz_w^+*a|4(cv+9REs&jYp4?K|jwa0tDqPGU9|xFodK#R1gY<0M>;Zoa}j +z!~5;fB^ZiMY#bWkop`qA|49nna6NX%(`bsj^$MG2Fj^mne$CEA*YdvDzAXAIy2)P0 +zg}4jH){hfo-VFJmJt+Lsh_VO)%9?0#7~b)5E|{nDw| +zutWcFI?@Be+MbOrRY5dEr7-t2pi9*;+6B#I4>ZFg2E^b06KJr5n=$v;p?hLMY+s7r +z6RXe{UybfS2l^aM=`l1zXI~!o4BAiqSZ{@n(;Mw?(B+(e8>Z0U1(L)EpG8x?HTns9 +zZofxQOO1iyy+&w2t)t!1_XeVyb1eG&6m$>FL{G&%XeJ&>DEQ!uXh*N1$8RSZ`93rw +z-=nGg8SU^l^tpe~=kg5-eY(>SJM{UX=u%vT&Tvw!PmlGvv3_r?uTanb6BOKp +z&!Zh}Lf7WaSl@;)#FW2B +z!2mu-2Rejya1;&XH#D#lvHpMPbD1MT2D0!X>NT(mUX32FyRi;Fi7w%1Xn)6}|BT@L +z8&PUx_#g|7_&oGnmqx!V>Y?Ym9r`sq1S{gL=mZ`^clC?t61|O1;8S$q{piyE9W8ui +z$VBxklQ3W-8XUL2b19=49e9xgv^g7!APIN+_ +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 +zKNue$oPnN7c|NqmEVP3X=#0vsfn}rpdg +z-iz);Q~ojfwYvvh<8xYvj$1@8Lf>nTjqqa3z+2D&6Ld-EpaI<-+ZV<5B{Z?A0!jYm;e9( + +delta 21239 +zcmXZkd7xIq|G@F*J~!=~_PyJ_Z`${L*S;vBO)E-8Max5*iWEiGgp_DO))10XNg_*< +zLdaL~D^b?_d%y3@U$2=t=gfTOGc)Hr7vJx*^YX2km+!fO{ZsAJ5{aV!r6r0b5{WA^ +z(-O6D5>~;7@o9VqOX0*sGEo8-qV+YH7hl7ixEr(MLCk@lq5XV~mteNEWFi;lM#n3X +zmP}>cP%Ad{!!leLk0o&-*2TxL9Day)cqXd7G}dcFdgs0BDf;@ +z6dK5ObV3JG6dd3*7R2As4zgtn1LQ&jDv74P0(yT7G~o8=5_CnMABYY-Ce|mQ8NC%V +za5d(`S1~`Pc2h7_pT-NnqAC0rOJn6r!UOHl8TLjqb0y}+(O4WOp@A<#*Z58>jQ62| +zZA1gzjy}H!c|Mi+h=MaY8gKXpo#8L&8vTx@EKl|@Ksj{aO3}J#hMLEEdvu`7WBX8a +zrX$gQZbX-EKBhB%Vr5o=)Sw+djLmR8R>R}i1ass_CVFEV9D~cy8UBWsdOc?txFpu1 +zUKL%k{^<4V(1GWmfh@y3jGtIb!8O~2HSsxg=10*7&c^F$xk73$K~q{F)-y0ky(XH; +zI_Rcr80+1z9rfP00GFeI7s;JWq)bh93Xfw`baNa*2mTR_`~teBx$=bLR~TLE=4gAH +zXg73b{n0fZgZ48C&BR>nimTB~AJ4=2_xSve1~*$;-f*1CqJcF+Gtn{DhsNvU(M^}a +z7PuNK;K!JO=g~b>G+#3D1C~LTBt3taKs|KN49d^>&!BKM4GuIHozbdTUxOZ>7i0ZU +z^hb0?|Dva-Sb=1sG1kZ0I2P@1C7P*?Xun&~%)E*&)jO$p!ydehh7Zu0W#T|AUND)c +zh}WYtU5*a84~L~C5+~7=wkwoOT!)LXDV|6Bt6eymXpY0NAwGz1<^$LOQ`w3n6OAY| +ziC%|p#ejU12Z=q|s54+=+SQaZ64NKJlUHg8qel6PXG<0d7MpM2E-FzQ}dMa^( +zLMs|hp=(~HSTfNM8=>cT5oX{@bWLAGQ~P@KQ1r)m{aG{8vLKhlVp=)&%U857|13$(3Su}vZqG=^UJtulf3PdZQ@Aif`0Q;i>uaDQ?K>Pm? +zvw8kMr{J1@g${TgJ>UPJDa}_h9Lo%Jpt|U0YKP6R2l{HBkIrm)y#7#h9XjBaSbqh* +z{~b)ZrUzofv3SEzvHlyH%1m?yB}yd|m9Z|mR0GffM`1O*0juJDSOed{y7)t^7cHGk +zRHxn+y*|D)=ii2VW5esw@8gXH%7h1+MMt6oE=70seP{*_#`c_L!(J&IZG>*NL0BFq +zpvQR$nvwNoIsfj?tu#2({b*`WqMPp*^o{s8+EK1@;ni9;dKr3-yP|>hiVi_1HX2*v +zUFhC=A6@DL=s4e}D44Qe(Flu`4;?kZO4QqYkY^gYla*1MqRy-%#)fX;Y2PRHBPfi9u} +z6s#C#SRC!Q0vb>abW=A*0!SsgQSg;HI$l_Tru0dyfE&>c_oFHNI9~r84d58Mbf?h! +z(kg`kbE2oEAe!om=#th(pKFcDZNq-ROh)>x5VB7&P*w +z=;m67uKBaEz8&4X@1PktfoAGwbcVm9DNnB(zWaHx3iXa?W>OO<_`u}oE$EEqV?R8K +z4qT^RNNJ;JD|En4Xh40?J#!8Az$xewynzjI7dFO==y9!EKkM|Q5?v`6zz{5kqtM81 +z!RIlB&ZI$ua9>-@pxzzbD-*F3-iprjEp$)3kM?sIGw@5apTE(-a$RPf^LHr)A1sgV +z^6F?nbhi@^}yp@Yi@fd(-fI +zDKxX4n{xg=$9-vVO~#^;O+q`qJ$fhBrG6iJ-!Al2e1Hb_12)BTXvS(b3-@(JC(;M~ +zc#X$;xCmX6mz#0^9cVudcKj*Y@iFvRUBEh6taa8#X +zZ$kro9Bbi0w7Z$w`jJP;DKoxWenxGMPM`t(!UDNB)$nQc^y#oF2Z$<-p +z58d70q4#B?dn~sfRLFQ5Uxj-Hym +z(Szuw`V^hWiRf9h-(;Kc{H5qpm%_rH|B6`!W*l$mfo_fgXiCSUr(zS1z#ZrtvV7ZQ +zVkFK$13rQd^b;EBMKmL6?ZTU{Ji18-q1TsT6VLzs6x@{u(1HF%H&21~pzoU6Pm40AI%@cnDpJoSniFOJg%pQC|Q>>57f&Cp|a8`{1J&BRXh75)htScz1( +zu*oW6dm6@J2i%B8d>UQr9NojYuY#toExPvO&|^3q*WgNYlU>#$+&>Y$Zvi^vmFQl2 +z5bZzp8U-Uc9B(*|p4ac=4d<{O^?W@;N4?RRUyWvFGP-AGMCYS>YB{=;51@PI>Day* +zeZRbnWH^=BOTi94ihhO8_!PP%*)I`l9*?GceIRv{%3(RGZ*5T#jzO^giMF +z#^@6CM<+HC4KRhdJpT_<=!s9^<#-lNahtwj)AU8_Bhk<7G;}TRi0#XwkD;6Fd0c@z +z@d6I$mrT5kJ^P1@Cb8|HWa2#S9R?>8Z(`Fc +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 +zi@ +z9npdMqW2F)-S|1vQM{kL)jBbwZ +ziGCCPJ6d!@$Y4Em$vU8GJpkRr1g8V +za9@#V^=PYT-{`gIlFmd2x)U4X{pcRrhi2$Vib72aKcL6r(v2aN70?$=(25d#2`vD#JH2PfXPYTXF`Ait782T%?Dmq{%bOt@q +z84X4|n1HU~baX~5FzeKyZ@}l#AG04}2A)BWWBzADe^rporxNukcx+l=9UP7hunarn +zL)ZgP#P(X7!df=N4BC64flZ3uj_&$Z=w5gOE8zijlb%K2e3@Bt{&H*%5fwl;ODQxp +zRnb(|i#9?t(j5JD+b%j3y?-j2iCMS;m!hYq^p+5CLv*ioLj&lKg+2dQQt%W^LT9oB +zP5C2eKpW5{+J-*3C$=9%_rOu~#dSQ^zeQ*I1N!`VG_#4VVM2A$fE!}gfB)Nxf;V1{ +z1~3Fo-F4`UX29x5^M5mic{I4z7t!PPZ#3Vw5P4bjfy&qnTceqnj^*)Q?1(R*OY{dC;D6`@^Sl^N +zRa3Nm5SqDBDGEk-W4tgA-89S5NH?G<+>Y*%{a6=&K$ooOOCgX7XvSKjsqTm_T@Q4i +zp|O1&I?+k!^QmbR+?6SG;3a54k4Lwm0lbG9_!+ts7tjIoy&TrEFj{Yern(bO!CvT^ +zzlAQ%yXe3lBIBeIU&afk(OrH4U4lHXBojliG}?YM`odX)zM!5&JAMaE`FmI!51@hk +zg$|T>H4K~=%|!8N6};5%e?tmcuUMSJ4TI1%`UD;L1UkTZG&BF88Oi@z7@$0w@>=Ni +z%kXmS6zlh3PwG#iOZqDsU~)T|^8Dwd;1XPl8Ccp2*b2R|Ga7kMG@zmA{WqYSat1nq +z73ctK`l&p3koY~Fv1VfnI1(`{8McI3ynO- +zj*y|^=**j;AC-QwJ{}GDc676?K|e+t(bMxjHplO<3zmJ0^WT-iwQq$r+Jvs%MeKx~ +z-wq$4rRW-dgkCT6PI&Q5h^|K`@*TFuay!F6n79fXQojrP;M+I|3%;97w8OC}3ckTM +zppl(KUoho%h41zi*oOMu=zRy!S7+|`!ry$2(e@kA--gfNV9dTd{ARow8&kgn4e(8L +zoQr6`smu0+4yK?NwqOlBg$=OK`=PxP)}}re>*2H54v%7cEVDQ4nQPD`ydlhn%?`un{6<9j;Er#e=fSK??sQ>U{FSI}Gnfh3g_U>7A&fn;GVRrPs=$7c7=!xi`(Lx`DcY7@~Ggn|sT!3csZ8YV7 +z#rDPrLdvJ0fjx(LJ^!CmsDmf53Kse>{Oj~)Xh$>A2VOusJc6%ck%J)v2hdG+98G=U +zkHYb)5UqxuraEZG+MuVYFQz;$BPjSIaSpmhFQO^kfu?+aY(I`!#}Z4?{ugFo(L5T!o(Jhhu#`I+M-l +z%-=#^Fu$QMmYko2=klWyDT?l?is&1%Cb}tGf5Q29pe{7{G3kr0;XrhN6==s#pl`ZY +z(B1n68qmk+^T*JEenbN}j|To%H0^M>KPS4Rh0%U{r6`!1QL$kf+VNs^z?J9#51<`B +zfpc*q4#(=Bh94e_aS8Pg&?O!GSkDwWNK3-4liVa8O4Zol>O#eJ=rjlqN +z)zCm{qcd!R2HFbU3tiC+j6#p=WPAr_p_{Vx7vZ^{=u-4Uj&Uk6l)`ix#-p3!I2v)m +zBca2J=vvi7BX5QV(i7b)gV0TNeXK9UteK*_{CPCschG+JpcDKktIqlRfr6XxSG42& +zUxpV<33Nu)&>1vBm!JbW!|rIugU~e{h7NEaI>R;S{p-l2^!&nKwMvrCk +zYtFx$FN1;)Hb7I;4_(u7SOe#wzYRCV_Fb`l9L>Z9bb$2ZVZeM?fqE&-z*gvc;c7JC +zdFWE!dz|xc2T#%9JNQn3+EEkq{w~qsXg@QtB;J8$^6}XI +zDrRK_U8=(;QemdYXlO&jMRcv3eiPQPGrGpTVtoKQ@Gvw(*P%0C6x&yz?~%1=0PE0+ +z>_GcHhDrPx?e~`y1()DFx@j)?Hbj;Wy`dQTU>VGMb72GOt>g8{Se^RKvAzbK@j5iK +zugCU1=w>{C?y1A*S2y(oh5i(BeHR9}3cYbMdhVyAOE3#f-AXi|wdl8D3%Z$hqA#8k +z=zafUJIsADY}%e!mHOT2EBhs^;`#rH!fP}X_&)q+^?T9xK!qQYi7T-`j={~?0}KBc +z{@adg&|f}JN54m(t9UAz*ogzsda<8EhPz@<>O-(CuESFP{y#~J!d}zxD3J=cw<(NATuz;g?dO-@=c{n{W~B`*0ohJ0E8L +z2lk>~?e}D2na|-0O#dU9ID)G%HJrkv3*o;3`w-_-PrDd8SctQ!zl^o9;h*7ex)E51 +z`o}mE6MrQWYvC5$fTjLUCcej=cpEX%|=*$nIksd*3^c$AOfAAkHkvl!> +zqf#_ac&_yEFZKNA$d{h=E-s07+$!2G+6mn> +z-LMAsLT4}o4QMX985d&_u>~-`j`WE_I@-uXgokjyLSSbWp8o58k{~kY_&-&;LdZ3$Q +z2pYgd^o27I?f7A|!xzx={uySiIhvvK=s=0e;YE}Ooj@rxlQq%njWFw<|Fz93@YzJ) +zT%*wxPDMA>eDr}$=#spGzL0jIZ?+R?fPcsKB2~hG_0j9?(C3H6_OWQ7)7A4okAef< +z9WOkFesrEikIRqf40BWs9hJun>NU|#+Y`;q2y})s&`jPQuP;a6fa}l+>_C@rKc+k$ +ze^Ky!mZ%m6XpC8r$NDfd;<4zOPDS4ri_rjJx15m2^koLjj4}EXRrpl;fvT6|HYixxo${tZ#0n6n1R!y +ztI>?UiZ1Pr*q%B2z7oyEE11OB(Y>()-F&<8Mm&I~woQZd#BKN{ +zjx`eMN1+NfLU-$xXzHe- +znYk0q#8z}|w_!Hi9o>)a=8s}Mtz}4c_Gn%-bA`};N?~OzhwOj;Wf29>Z&!3P4T@fa +zULS`p!F5;zC&lXzpn*J&-nTxsKZEXtZFnp0LN{OAR^k56=>0ufasKU~Hw|u@0rA49 +zc;i?!^6StPPK(!XjrFjN{nkOgqE{vwQn155p&>C4 +zo%xOECYpwxh6U)keiY3}CN{(-?ZPjpiRiE1r_rzHxAT{*du7SGv}sq~kt;Lpm0X$0 +HiXHwRh)%;J + +diff --git a/po/sv.po b/po/sv.po +index 0f49786..4067cb4 100644 +--- a/po/sv.po ++++ b/po/sv.po +@@ -13,6 +13,7 @@ msgstr "" + "PO-Revision-Date: 2007-06-10 21:23+0100\n" + "Last-Translator: Daniel Nylander \n" + "Language-Team: Swedish \n" ++"Language: sv\n" + "MIME-Version: 1.0\n" + "Content-Type: text/plain; charset=UTF-8\n" + "Content-Transfer-Encoding: 8bit\n" +@@ -6528,8 +6529,8 @@ msgstr "" + #: modules/audio_filter/equalizer.c:58 + msgid "" + "Don't use presets, but manually specified bands. You need to provide 10 " +-"values between -20dB and 20dB, separated by spaces, e.g. \"0 2 4 2 0 -2 -4 -" +-"2 0\"" ++"values between -20dB and 20dB, separated by spaces, e.g. \"0 2 4 2 0 -2 -4 " ++"-2 0\"" + msgstr "" + + #: modules/audio_filter/equalizer.c:62 +@@ -7241,8 +7242,8 @@ msgid "" + "16 no padding\n" + "32 ac vlc\n" + "64 Qpel chroma.\n" +-"This must be the sum of the values. For example, to fix \"ac vlc\" and \"ump4" +-"\", enter 40." ++"This must be the sum of the values. For example, to fix \"ac vlc\" and " ++"\"ump4\", enter 40." + msgstr "" + "Försök att rätta till vissa fel:\n" + "1 automatisk identifiering\n" +diff --git a/po/th.gmo b/po/th.gmo +index 3a6728b3bbe5516e564aa612615975f2491c7342..0e481ed5daabbaf486cb8c333a3f17ec425a53bf 100644 +GIT binary patch +delta 12213 +zcmXZidB9Fp9>DSY5aMOBi!5(hUS2!NR;0$hl9Ua(bSQ!sudCYw-m>unaHK`wk#c&B$z)g5H9z^^3 +z7hZ+A&nHP<%t&)#2#cW)-hdfc75{+sqb)Eueofn?{MMBHsjTd;A?aSM=ysQ{|D_TBS|GKu>>08yU`F1Lnkm9vv4-vgd5Nq +zoh|NUbpBr6(*U*2mjEg$lSdX{iakQcAoS}p6(T6bG2G9s?#csG4@5d@v +zrLHX2xmcC*o9J`<(8&B7jZC3jp`BJ(o&J;2T-3$aa0>26N8CMk7;ztTZ45-W-AL?& +zQ_&8-#9nw3`(f)mA#$tG$gM@U-!@!`pP*}F@YSg#?Tp5A;o@0_KDa8D-^FVw@517E +zD0()UKd&KVCtwGxi>72stY3sq)wyWdd?7L| +z(E17Ji%ZasSH|*Iys`$+0UX0gco{3;q>NNj3zuSd{2cpW_5A5n(u0ec`NNIx(Q=al +zq5LAch<=N<`$H;ui1M50bEU5dj*ad?8_q5m1~LOHQeKAUem6SMRH3lOGSgg`f)3~b +zG9FFAay0Z?up#cl&RC#uXs93B&`W6QHlZQjf#&=pG*bI86Az&6U5XYjlDcx_r)zRy +z13l0N?nQGp2o3Qttc?@VZMg=0eha#YcB1d?jrCu}@)2~g9!IzL@96tU(J;UaB&F%3 +z1Q%|%rf9>%&_yx^Jy>RQxYWfThGKuT!#(Ih^=~YPC(#rZC=mu&7Hy{@ +zI>AQhBE1dsy8rufF%}2mB0L!NqBHmy-A;SZnWjpI`oicpp%j{u +z8t8zVpfetdF5(%n{$OeL|8y!c%7hs`iv=jZ5nYdVxD%b>ZghZ0(1D$d<@4ywuPPhP +zi!$i_j_8bgp(&n-=6(vAsu^Y3|Bm=ADxA?a^o5h?;<~0>*lxwqa(guNozZXA(#PYw;kmaoq`~w=& +zB4`N9pdFP*S9eu(f8UCwur0bP?#E0VjE!+7Ho=d={dAJMVwgcbEX|EFI2apYNqilv +z;d_{gC(zs#s1ycL9ZgMLbf%3k8*fJ=GaQ}iWHd!jqibmu)^-2y8F1H+dbmsS=sTzl_v5D9e*I{e?4byG7Xk0Z^Jb|q! +z@4=Q>vRc@`_hJpob8t9rN1v-+J#;WO`Y5{Zr(jK-hYn;X8j=0z0DnTad7c{Ve?wWU +zMp#7E&~h_$Ep$giI|hAmHrm08Sic3cDDOjOdJ#=Ys%9!Fg!$0tOQVsjhA!gz=sD7? +zW;!&`feJ%A7F|5gVHMmF{So~(6s;9(jCR})&GA#%30I-pG^ri#S43yt9vxVJG!;Y9 +z-ScXiijp>Tl@Ou>*@=$)1lrI!bk$!*S9k6k!~Mcd)|?Rw~h2BImO +zhoTH&T8GOW^Y8`{)|@I-0sU +z+^>Spv>BS3R%psP$8w)oe!#N(e^jiPgwA9-x(i-GXR;p6{kB;CFqS_>kKV7)j!vSv +zy?}lr^4}6>+8P~D2lR8@1x@+=n091ixX?*xXr`kb&qBA=e6-;O=mD}C{mbVh-iFPa +zg!gBl9X*51@kKPUhtOSe9?5x9vT5k2VN>?MFEpV-o1-&rhmN!>x_<{o$D!xIboAS> +z6x}uNqVFF-2Yw8l&`)S2&tO~3xHWX#4O>v|eQP?*Y$+AyazlLJ5Zb^otb-?Fxm>fb +zHY#Ho>f57>bqM<0SgeH0(ShzkzxOB5ffc+h98A}u5zS6>;f!xV8)}Kp&Vk=7w{_1lEC(hr^RWXy8^zrlsS +zQa{Bi_+RXRmD&c!pab~;P0{Dk!{|VNj9x+yn1b!XQQHz-oO99bxCZU`1lnJr_C%Kc +zlcrqweIJdja2a~SokVl{I~tjc4xzy^XahH+`+jhAEE=IHXwGM$&&@|uw=>p%9P9Vs +zmHq!eF3eG$J3=lCq74;8S8=&$V{~zLL$_aFw4;a7_aBS*pF}&Ji*~#{)_;Hw_;2WY +zU*5s~ckvvK5Bw8t=%@I=8T6y`-&juW43W7StuGeKCDGJWLJyqUXvb~Pj_yPw+8qnv +z0CZxb?_~cwfI0EO`RG1gh&K2S^!_(!gNMVn(S3as@5JBG0p8XrM52APBf2QNpdAlF +zQ#lqrvLD0t_!SzdbfwOzE#$rw+CX`9^KOBwN +zSac0dLIq`~z?^vhB{cWz(XZM2Xikrz +z1Gy0IUq%O*zeku@A#`9B(37+(`u^Q`o%??>7x&;RXb1m8JI?4CEQZ#X!|GTq+A}%> +zP00o{Qh!5pyDxeIJwbEz3Ii>P4yYWay{N>6xvCy-)JA940G&w(bO4?3DBgqS`u5)8 +z>(&X4z&NzMiRb{Pq3^$frfvzkh<8W7?j67XKTzR|zo7f_9Qxz2aG&s*ZHLZmFxv1a +zG{-a1pJwyX0sR#X?bqmY7h}0--%x)Oy4Jd*5gXE%{clblqrzV@>(PCE9u0MkyMw*a +z2A@J_x)kkjIU1SG@&1SCwmXcb@FaS4pO5CfCrt1<^qi=l=E4J^D^|dP=sul=el-4x +zc6|N4;pl9Hrm96Ow?PNc744`$+VB`OV)J8pAv&O~=m2-25l`>q!Wn&oHgp6X$Vqg& +z6z-Qw#^LRFJ8ngDc^QpdR{!u`FU+Jo2>oUBB(}#lu?C(+Q(NJ_Fu+@piKUafx$wrr +zXwK&&2Sf5Hnt}`HfU*XJT(?6zn2bhdF}hecp*j5&P0cZMrl;fm)cs+5mq6D@4b0{K +zzw^okAw)yiJC=u|YvLiSh#S!X9YhC|F)$3Y78;RW(W%&q@=Ek~#2Ivew+{;TKvOsZ +zYr6kObCHQl(VTsNb@1<)123biJ;wuK4P>AVltB0Ob?C>WCK`cWcomLB+Z%(Xcp@6H +zsW=7~V%npy@ZeOk7VpCmSZqjGERUljpM%c)^;o|To$+qe71Aqq*sU-k28Mg#Ok$fv$zzql2Z<`a0-ux^|d}-OI&;iaw +z*U&s{hdV-Gw4ZIaBPT3 +zDKx^B(cM%H>tW3+_3Xa^To}3s(3y(B^oK@Xts(Gcex7yhcvLQ~cf +zZLb>|fdS|MMxoD-McZ9~1>OIPx$woc=mE3?4fSU@1%E(uI^^LnvuS9|cSmVX3LXJ~))} +zt2ht~OiLvba11uZU(tqYJszGPkF6s&L!jH{sK4$)E3=c8MqhoU*249{1Jw!yM~|A%vN4-Gwyz3^xB +z-+bFV6$bP=x)wf)eiG~Vq36L_H0PN!L%AFJ-JgO+axd1$qO-ypYKNw#E9Q6qkK&>k +zrqR&6kIr}>+VQ{8MR@{Ugs0K{e+ds@zNf>1a~!Qdi#ajJ>~ON?M*kA(gl^*@XnP|u +zZG+>uFgKIY23|l9mSyNb-bMHQ9<+f2=zHIx4gG|(@DzG}r00Z1w;8i2|A>{a@Z6BP +zhUjALJD2@$2xn2D8_|>SDB95}%!lXE10%;XpF`u;Smh|AF# +z{{xN4IkdxC^Fu`XqU}AA=EB9Z7;WH-c;h0rrCjv6;63P3x(ZFvU(pnNfgZs}uq6H) +zjX=)lLqsyrav?OrCDFC2`R$RD^R$>nP2O7%H(42pTuGW8|4J9vx4zEU^D-{(8b*v{e96Z)TfgN)P!!ImmhBWXq +zT0Z}3D)|;WycYf?BzsBtPcUQf7wSL6J8;9&aMI;o7XC|T4}6gNkC7uFY4m#7B_F;K +zBH8Ip`f>mF;=-KXhi2(JM4umq +zrfMRV!>MR{OEK+7VKW!5<{#n%`Id(fW}^+)K^tlq%dOExcPF~2dc^u^(V1A0`g!P@ +z*%aM@{V9KpF2ZUn*#9^uh1Yef~YVC{JS%yo}AT$jZ=B7j%*J +z!7LnszW+k>Wpr&VMklsxCHvoPw2}%#_6|CukI@jFMmxy6Dh#YGx*Og=Q?wHY;RSS` +z_gftn@j|q{-O+<+$G>7JJR2>T{!_?FRjk8}w%8jdVO9JV9Z;S%p}{)%2<7J34d2HV +zSaNOno9+X2%`{pUa^3@tz};9J`=i@*0^We>`CL@yVk3IQ9>KZz8}`L1Z-@HtusEyu +z6nYTlT^~QEXa{Yu8g@Xp?ITzlcc5$G6q>qg-wDrGKq8b*Ds$1A8;#MNJ&v9Ot7G}w +zSkAd2+^>xuAU$IF>F7J?IdBmDHk98OKD(XK)Xa*0h%WYIlh3jLZs5X@b&8HcbNdWB +z;*Zf3e2!NZ9oj&V&EaEI56$(h=-TLner`vg+ip6#3!X;T)N|35Sl0djeyliR1?6*S +zL&dhFl15k?9mr60u|AA<;gsn9XyvV;{*maX=%TxRTd)#3k*esxy5g1Ze{U}A@P0IB +zQ_v%MJsRpy;{DXSAu?sq20CLt?1>J10G7vT=yrVzjnoG8`LEDO9YQDa+q>+4LvxV| +z_hZiObj(*MAA07O-w}R%F2atKGu{t5?t?zR6m4h)I)U}*jQ3y#+>fT>cXZVk-Wlqv +zp^LWTPWHcxtqT>tI2Fy&47A}zXh(0M16_l@xDlP{)>uA_K7R~-|75Js`Iqoj&4ZJv +z&xhWhg|@pS&4mpvN5289qg&9BeH8D166^QI@*#ADkNy(xpO58>v7GaRkjgyh +zT560AINg#9N7NC`)j)JWPoe{Q8trI7baA}DESBGju10hFHu|mDg}%Q(-am@=a~y5| +z5;6e({@WEkCK=eA8%5C$dq(d@f0*1C%LCB{hQ{(pwBs>o#Ad|%vt#`{bf&MP?XE!w +zvL3H>|L^9)TpYVn!LL=%-{yJ!!tIvlqtuoEJ3aHyPxdYKZ2orl4j(w?-hl%eWj-|M&r5z=v;Y4; +C&QzcP + +delta 12200 +zcmXZhd7zI~{=o6)YbPSgzFh9LZ-q<|mkL*QWyvlPk|;|dUy;#9QD{L8HA1w=MA9VE +zrYyxYDsGF!R3qEqSNgr*_ng08=bY#JoaOU5=R8*(oL6|yyuz>E)Ht1;N|JYuCrRBT +zNiO`BB<-=zi6prO@5F3;85`lxSQ0CpOp?-AAB$t_Snq@dsSm=|cq^8}6<7*4gsW0ex>{Y~K;vbFnh* +zr?3@Xays^}Esc +zr^oiWvAz)V)BZv<{SpOd_A(Y>syopY?E5q1_&?}C7q9~sOHz3u?un*k2)cj?SR3!h +z=C}%7VJTSG=tF<4o6os27PfdI)SNZhjXIyu@d!Xu`0fa +z4RL?07s!`N`ccnBBQ_m7pt1B;}Rv@04zp)f8+fB0Oizl!Cl +zZ^W{=C;C(LPxL-0TQrq)#ad`eCZg^0(S`gCP3_;&39m&Lw5@0=owuT$G?<%1XsC`x +zFDVuxb2Zw22m0bdbbw{Cz7F&D06KyFI2})57LLCtm0XUCurGdq12Lm`I+ff^VS4fK +z;7hcAMTt;<1l>eGM6)kWvD3*d`n!@PgQKF`(2lE=3KN-%HK{K~bH4?h=qYrMl}TR` +zHbYzV0vUs*UPdQp9i)i4)LVNxzk +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 +zQiwnN$5(RLsRntx_j567tohzh|gd(tT;KO +ztOeTN4QK@Vq7xX7{(cnN?_4b9`CmZ6T(3Ycp!H~|-^ZEw6`IpQ_k@*AMmxSAZJ!t0 +zSE8YQ4Gs0i*#0AWT#uuhwEVrnj+pjJoI=4+&PT7{57FJ3Z%P=j2s-1^XoSjPGt5LI +z(-%EnL(#}giav>zslSf)w+l_-K6EpGGllb?O7Weh!4Msv8a##m@GSabGA&pLU14!_ +zz%pn^>!1U7j`h*#F`b9!a4i~vmG_0?xC`z7)P0E9{%2S>Y^;qG6G*HSMr +zE7%>!P=5k%!{mWfG6hCrHhzzGlsP;6ehhY`{tEWObJ!ER{WWar<>)5gh(tb}d`!U= +z??pp$I9hm4`1gBV^!Z^l*JsfcSAHx)4?QW +z|HCP?#ks+VR8a#j+Tk$gAkN--g};yU_Q(Ks!2!kK$qU{qFZBJ% +zSQD3^D}E1+$We5_%qK%cdZ7K?o2KCAS%7x%QGD<#cA{Q*Vem%uDt!)3(c5SWK0+_3 +z&#?l2jYi-M8j%aJUSLs(aB*~R`~`2pbV~{zt7VuE-$P$~AI96D{T9>@P9(8ED!$)W+eWX_D$FgSFH#)-8mdfz4HsHWIS$0u7ITB +zi{X@P`g@3E`<0C2`R_`>oc2MF+pX9fC!?Eh9lC2jMK|U5v3@c>FZxmlaUJw4*ck1n +z3;O#ZXsX6xHJpU@w+PdI6kev_ZvHC%;14v{RaS+LYoZ-Bi1lmGJ#Za*Y&*yH$qCflsJ?CGdoAO62gD0>p7FrVq +z%0V|-cdU)Kpzl8%ormtN1?Z++yoU4dFMnQbKYxh*u;;a{cVZvMhE^LE8}U+W}2YI=Ttn>?iSZ&;Ml` +zL&(}khoiZD0G;t>GzA}E-lju4D6}bjoa&&dX^P&I?a|NeE$FeEf}VmI=$?8ox(us& +z{@;iVpW8tFDB4kxw^B(9%t9wJ7~QP5V^5qI{V-Z-b7&tM-HL9yOWzJwKo?RKomfZA +z`~G*M;D9%yIh%-H$t%&j`rY{a6dIXQTS5mNuo(3&=*0VCCQe3=>$7O2R-praf<|f& +zx{x2XaQ+R=uQYfb&tQ4JLVw^C>Sf;ze|*lz9@H-s6(Uq=?^}Xot_oMIU +z#`ZJlSM@yJkAKAH>20Ckg%<2^3Hl9qKDrhS*<11XyRm(HtnWc5ybqn&f#`Sf`LS64 +zHP+9dsXUMFrAFJsgwri3IOFTlT=hdIG!32540NEm(FO7O;#hw+`aGK37twFUM)ds; +zzZ`4R-VFV_e?V+s +rgIUyHiS;kgiGGRp^B*kgzr~JI@VK4FR#;~JLxU\n" + "Language-Team: Thai \n" ++"Language: th\n" + "MIME-Version: 1.0\n" + "Content-Type: text/plain; charset=UTF-8\n" + "Content-Transfer-Encoding: 8bit\n" +@@ -6171,8 +6172,8 @@ msgstr "" + #: modules/audio_filter/equalizer.c:58 + msgid "" + "Don't use presets, but manually specified bands. You need to provide 10 " +-"values between -20dB and 20dB, separated by spaces, e.g. \"0 2 4 2 0 -2 -4 -" +-"2 0\"" ++"values between -20dB and 20dB, separated by spaces, e.g. \"0 2 4 2 0 -2 -4 " ++"-2 0\"" + msgstr "" + + #: modules/audio_filter/equalizer.c:62 +@@ -6871,8 +6872,8 @@ msgid "" + "16 no padding\n" + "32 ac vlc\n" + "64 Qpel chroma.\n" +-"This must be the sum of the values. For example, to fix \"ac vlc\" and \"ump4" +-"\", enter 40." ++"This must be the sum of the values. For example, to fix \"ac vlc\" and " ++"\"ump4\", enter 40." + msgstr "" + + #: modules/codec/ffmpeg/ffmpeg.h:115 modules/codec/ffmpeg/ffmpeg.h:248 +diff --git a/po/tr.gmo b/po/tr.gmo +index 375b466455fe9289a13186759ead1ce3c254483b..2dca173e647ddc723c1c00e23f9f80437d2c2c1e 100644 +GIT binary patch +delta 9663 +zcmXZgd%TZTzQFN^z3td8d$Tv&wq3TnTyjgQ(QBq~q@)XHUPk3i36m)r)fA0>#fMNzw+pVFMfyK8xA(mtZYifjPJ>+=UhCe}d=X +zVXT5*p&L1iKCd=6Ns6#&ZYD|U&}hp*RlEv)u^$%W@1s8oE7Bi>R_Y0K;ptcz=b#HL +z#p<{z+>6!dAIFM#7Oha$%jrf6GBheNP#ev(QS{rQfiFQ5>K@OpK^N|iR^k?P-eAnd +z5$OEUXuQ9L&&K#P%wl{_n3+$*3>Tp#T@(FXG2!#@3#`QR6XEyh0?E82X$V!(inYaj +z?1?q7KU$ePnBsJ+5qNQ(% +zE_^w9_I=O<2cy3S_o4GAhA%Iq{#6-R%Rpt^itc!CcrwPb7Nw=kLj%^t&e#l1bO6@I +zA=nrnit(9PN`C=*G~3Wh??%_#zli!&C%bA2Hb@P_!NEbFj~1& +z=n+*|oSKLE^o!9Aw#4$-7ELJAfrj7b73jp@hC|S!xgV?HIP^@PLl>Hh)p0c%csn|8 +zC;HwY^e%ma#{C6NEN@Brycp?clIAhc9;-9q*H{;?M|VC94KM-?I2PUcgm4o2nZ1NA +zFcUq3h3FrjjcCG$(D(j>CU~x_&-qtfnm#DR8ayaLOMC$uxHEcLE<;P*6AjcCop&R8 +zgtx`>JJ2}yg^$Pc7txK(ivDt};`hIXhJm+WZ`_T|u<1Y3OnadV^hXo96-{7RjNgj} +z9*u?gG@AGf^o(DQ{>pGII)5W(47i(yXLt~O;V8Pm57-iaLBHSgm!(J09bMoC^vL?f +z_)zp0^gb-W@mO}b!};hDE=A|Pxs3C7!X5_ve*cA*^b9&)etFu@MHehU6D>yXM*SFX +z6yq&oybb#Kwa5B+HM)VJ@q8S5Ss!0c{mp0!13DXhVJZ4Y>4O;m3cWOE(HASONE0bS +z6RV4sv=JJoWAuN69_{sLrEWqiJ}exSp;428ap*7CRCIwi(HFO)FYH4ras=J^Nwmb@ +zqKW0amd-Ck<267R?1Ua=4>V41Y=ZsK_cIw9Ubczog0G{ucOw?z9(3VT=+6Fw9zlhb +zX~0~x0=3YE>Y{h3G1kV8Xq;YXoZHYlbqBK1Ofo5LB(t#{50;^c964?X+>_`ACZQWxgeJN^p6^FD@C9bfr2Oi1;exOMdZ}8WJGcZb +zVQ+N7zG$KY&>am$=Z%Q|Bj{ZikG}UjT7jwPomhemaLa1W-;9qlV8HLufaTYuJIF+_-j055!_j|Jj>QHzJ43_Lyp8Vc6EyP!XrOP< +zz-Q4CS9&v@UmyJ(FGQbTj>fqT-RWR7vHQ@3N2BA9pz$Z870k?~;f~j$3vNOac^@s& +zuIPV_K0l3C=4Uj4O6$@DYN1Ej6zgL<^b%eh4nY&lpr7q?NM$q092y3E9nJ7aPxQS%#q*KqdSfx4^^@^5%yfE8cn#g@ +zdbAQ-&{DmR20n_OF1Y^9z`?scOcV&Mq?UR +zpqFAWddcoXZ|P&$1m~cE-ovur1$3dWWBfZbv0tKJ@tyQ}b@crrG{G)tMJ~tl{r>yW +z@WnA`NuES2F#%0vMm%2@u0;cFMibtKIrtg+19Jo|{ZHr)b2q1n)Ilp-ioV~fY@G9N +z7ZWZ*19d@5-xVw34Oj_pL<0}P^YCso!3WU!PlZ#_IP=jBEkWN~j$YagXaak%?EBwO +z!<`&PGyWd^p~-nS9WOyMZ;d|hj6Uyyp5;wg3IBj5Gy<*QU(pRrLKmEl9@#7`OAs?& +zo+UKQa4i~OYxr6C4SHr-Thd!x2i;jGG~gxZZ~m{*$_xkxqw$8JxBnqDp%>8iXKvyA +zy-af%$i?+&iMFDN9YA+_GRCvsOaJT^VJYJs(Zu?qf&Yk=@gB4y521JBaWwvPbffd5 +zzw*8K{x>jSB0I1l9!CRI-I^v;g#NO%LQB^TE$P)*1+POZadS8j-TCe4{0GqZW6-0X +z8qXJGqOlg;`3|g$htZvs-^7U&UlMt9s3^RO>^r*12g +z^B)-#omVkUp=BE?g@tMH6d@Uh?*s +z@w@F44@RI1jzj}JhMv_k(SHd|WHx$9S4Dphx`D6I1<#;opY>r{$?E7Otr`8=Xl3hu +z$oczXLk4`I4SK15g;t^)n$Um8_#pIXhM@_L!0I>({T+A`t;`H`rwh>|Sr+{bXvMam +z?;rk<`WxUY25R8Bu*S|bfu`vAMd+>XiB{wmEWlw{h-1)1C!q_^K{vJ#t;p->jyHsx +z4R^c`-SHvxa-2plWAU!^c>{FkEzrQN(Vbq5h1eAbVn1|eZ=mmQKXE&l1yEVKAU0@u#;Irt4CZjw5U-bK*k0!7U +zjq@o|$xL#XhL`DE^d~m&qjZ55=nI#k<5!_O8;Az}Bf5io(aMZP13!W$_%u3iI$HX9 +z*c}(48~hIQSU<_$lkTt(J%Z*~3opj@cy0JFHl@E58{=N=gg@g&*l}-~;81ko5oo-> +zpb0${{b}K=>i54c20jQ6g{Q*``_e$Q(490#6KRe96YYlZF7!@3jUL66a2lGxtZ)VT +zd$AeI{{R0m8oqcME#WzI2RR?7f%4JuT4<^3VI6FUeg$37qqq*8HvoNqQ1pkR@&An8 +zm50%dJoPd4cjB`#aVn0cKLgFU;V0<=9nnkJ1HBXd(Evlyz{Al?JPIxOcr>Bu==_D~ +zrCfu~+l0RV$tTpmn8ty4@FN;9e}DQll%P9mfo9$|`oBWwT@n3j(2ev(7ao8nd!L#t9m}cn(b<=ks(&d6-4N2;ET$W@FPBZ;9^c0<=P1 +z(D$!Ie?hNDEAt2RF5HD~U<`VM&wft*U0^-~x(MCrQq0EnXkwet1h%1{-Jb9edK4$o +z%bR^TomU;R>6f6lz7$QU6P98x^z*y(F!lG$A7#KD%)|=#D!P;9Xku&81>OqZN9XTH +zOM49cI?iHytZ^jWNH=UrzYn_3gXq!y1C9GyhK2#&Km%@#{$8v=|4X!Vr_cn-A58=2 +zq2u+@BW#COrfWR!jV^dI8h0eR&fnts^XO&H%%WlDE72dG9caLlXn=BGr2lPK51rQq +zJ;T0eLbsup^iOC)PlPX`3ok+!T7@~dJ^H(mgfq#PX(Ra#4V)ZHOP`PD(Je+_Y=|z{ +z0=;yd&_uhUJNs=o1YPic^bR~3K7-z^=h4c}!b*Ps^J#b)mZ6vAeRScY=;ir3%>FXH +zwZ&+F4(P%cqk((Ict7<00chfb!#lAO{d>@jK8V?V|4-9!;fdHB=b@M512lo%=uVEK +z0Z(B?`~jVp98bry(S<9c;|16Ri=y8Jeg8LD8GB&a|NrYl!xw&sW_U9iXb8Hq;qm;z +za15HzICS0emdex^&XGQNYZxAQplH_#pibboj-CLE3a@$eKH@H=$D +zbLfsLo=D%%!(94>=mHJUQa45`(GgvzUwHEg>R+CLTVr4l`r^>&4@1xT?ie2#{n7D! +zESkWhF+Ltm?74XU5*lwt^yh@Hpp{!(O2Z6Sq7yfVThUB+EZuz7h5d7T-7;**y|)Y* +NbZP0*pJs0F@&BU3az+3E + +delta 9652 +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 +zGtfKnC01wsB31|Y7!+GfM +z#Y!yy|Nnh7eDNq+!jtF@enJCf?@7n2qNT2h^|2266_lYzaU=SESM>cJ(eI1K|08-= +z9zl=f$vxEHi6dj;czlfhBsAkXd(#D4pht8SdMCP|0eYi>`=Xb4AX@U_XhIXw`P0!$ +zxd@%N0)79(z106)8av{_*J!}(PtvcU0Nqg$nt4g|FG1(Ej(&S|Bc0HNyP^r-iN=2j +z>*826&P=p|3o|s#Y%{v!9oP`RhzZ&I(tq(3V-e$5VQuVz?(_jP;4pOIF){ukn!r4C +z;djuT??l)6D$M*6je<|p9XG}D&ko(uHE4pJ&_K7LpW%Jz-57)}JOrKpG+k_= +zgA1|IIsB^{O}NT|bOQyLM6GdJ`Jwcj#TX8{NQQ^r%N3qW%?WOk+T2puf$tF$RFRt8_ShzW}}Uwb6uHVliHaetvfyrv9G!V+^>17cd)NL3c72O>8l`z#HK@bpAH9 +zwENJn;{=vr(v_YR=k1lu{8g~G?&R^pBv*=~cOr~Mx^U)uk^=QC@Xn^mr5!U=7omYmQ +zVJ9@9+tEw<2Q<+q!spP1XP^r$z)H9_`kRo1Gs&lEBl!{ydJOF +zG(ai3@P%mLb}`-=eZMQ3c+c=I%%y)Xy3q$Q%kTdw8ZJBvOK~cCIo?AP*o5w6KN|2b +zTA{Ddd8cCh2Xx`&SUR4AC3N$mUxvPaIabB1u>Al3I?^!E&1im(b627FNZ#(e*YQqy7fk%z$nScgBRh(cd2)Mgx9{E_f2% +z(a-Tb>#OuD$VC?@L`z){twalSozCHHUs3-G40MZu9_Wj`qu&R;Ece9tfanj3=R?p0 +y9*gneXkyRA^XJiclcGN*{3lwunZ-2Ba6US5Ww;v6bp4_Yzq+i)qMTQ@bohUmNpCy= + +diff --git a/po/tr.po b/po/tr.po +index db144c1..3b8fd87 100644 +--- a/po/tr.po ++++ b/po/tr.po +@@ -11,6 +11,7 @@ msgstr "" + "PO-Revision-Date: 2005-06-25 12:34+0200\n" + "Last-Translator: xLeopar \n" + "Language-Team: Turkish\n" ++"Language: \n" + "MIME-Version: 1.0\n" + "Content-Type: text/plain; charset=UTF-8\n" + "Content-Transfer-Encoding: 8bit\n" +@@ -6290,8 +6291,8 @@ msgstr "" + #: modules/audio_filter/equalizer.c:58 + msgid "" + "Don't use presets, but manually specified bands. You need to provide 10 " +-"values between -20dB and 20dB, separated by spaces, e.g. \"0 2 4 2 0 -2 -4 -" +-"2 0\"" ++"values between -20dB and 20dB, separated by spaces, e.g. \"0 2 4 2 0 -2 -4 " ++"-2 0\"" + msgstr "" + + #: modules/audio_filter/equalizer.c:62 +@@ -7003,8 +7004,8 @@ msgid "" + "16 no padding\n" + "32 ac vlc\n" + "64 Qpel chroma.\n" +-"This must be the sum of the values. For example, to fix \"ac vlc\" and \"ump4" +-"\", enter 40." ++"This must be the sum of the values. For example, to fix \"ac vlc\" and " ++"\"ump4\", enter 40." + msgstr "" + + #: modules/codec/ffmpeg/ffmpeg.h:115 modules/codec/ffmpeg/ffmpeg.h:248 +diff --git a/po/zh_TW.gmo b/po/zh_TW.gmo +index 0334647c06ecdd65e27e0ede96795d72a53982c4..217a5b3327c31b9274cb403198e15ccfc18b82b7 100644 +GIT binary patch +delta 14414 +zcmXZidBBxp{>Sn2D5O%9N{eb*q&+1SjZ_pOSrS4;s*zG;Z8#!i8Csa6MT~7i23bqV +znk88#OFv_aY-4FKk&NH_{oJ3wUibG}zSnYJ*E#2jtv_ym#ZTM+E{Hr^7K;BLfEVl`YB-;E!~uW)1(UHQ-hwr7CGLzbV@-S)eFvYRdB4R*_zPCW-D;a1Oe#Md-vHLf^sD=+b4)k;`MfxzqBsrRff?vH3($PaV|fh^u6%t8HlY*vA?~zm +z5jR5tamfwR;;660Z6W9e`P5E!Jdfj4z4R8m>FSV(B;LxE7x+m_3COQ;d +z@kyy4llpVem0pzi8npc^tbF%zDSG%GNAtgcF7Pefh4D)pcC4t3BD +z&Cpl1XUcoTgU|twLMJpl<>M1y5NDthygA;BWw&r;3jT>E_&jdGj>J3G%g&(n{m@r) +zbR3Uf!|CV%^U=IZ(L?tf+I}NC(QRm+9qM!c-IDtCixsv+ccLA7f4iXx4~R#h9Y>?5 +zehQlK&#Au>_a~l*?%4X2zmJad9XhdXXr4L^xc@e6(V&=NTeM-n#7Ckl7>9PaD)n;{ +z-+?AvhUR%W^>3v9gZORyU+Qb^UbJsq=E3{f0v&kY*dJZlka!|it~^db2b>`Fepup@ +z6OTqGc79>GG@S=$G7C*GKk>cj7xW`>d0d_P7t!yAH_)^4Hk$Zj^tyeU@@;X)Mn!oY +zbjO=x74QE(JUD@#Xo7x;k3?5?0y?oX(JlWo`Ym>O;zj6ycgBa~YBcXUH1B(8|4oU% +zG4}p%O+iKD;tRYM+HfzlW9Qf#eTRpp{wVYd|M7i8rB%zCj1v8msP6tgu#WicX{x`lGEo+V7~;pMnlJG3C?H_Sf%``+pM!dr`0e +z{a$|_{YA3@{Yc(~?!-@M;@z4S{sAioM$bg|#6!?mFf8#{teil~r=fXfm3eSwi_k>( +zBz^$hi6^i*u0uO~kA9T?hHiEJW<}zTX#WGz+b|Hl9Y>@2hoKV~g|?f5<||L-!I{oL +z8{Uj2xINyFc6=N?<*%R}-$OrGHlY*!3T;6Q-5G#xpWK>RY=MJb;iXQh5o;ydF*X!}*Ee<{9>zS4KFa$J{+6TTk(fiXYzuc8CJh4$Zs?#%abhZaTL1Rbv{*7W}O@&N~=;u!Q0o*2(c +z{dDw@&5HM-uj)ngcfp(JC)>uj1s$kH%fdS7*=dM=t#`$;4My_d1jeE>pMsWO60bm4 +zb{)C{wcp=l +zUXS+sB<253`~y1C-%`Hwp2d&X-C~D$P?-nc*-3E{`tGNr3Fe_I{X05=Rp?4yMcaLr +z@~!CE*s)Eq@)l_O?r8gdDIbnbcp{p=d;t%xbOzethQtfv-_Qj^53Y>4f1`MC!13rxF2KqiscgWGB%X)1TO9946FrH3Ew4pa +zwm$WnQ~y6S->&V73GI%?EsVYYZFz9uZss{ils_iLXQlm=_nL6TUm~W9WCoO7sKi)x_^4 +z{w(qLiT{V@+o=Qh->uuFLy>TIv|=yx-E~GM)+^;lq5~g?p7t^5j!cW!qhHta(L77g +z1wDwZ@HuqBU&ie^a{q16xMR_w6B>6%6CaZDq4A{DpO*Ub&;c(`JUiZsPV_$XYj_2^ +z^{eBXabuYWx9mrBz~5udPQ`>8#^&h6+9cjD_QlGH#-Z_4^lSGlbb?b;eodTImFtjx +z<1g!l1 +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 +Q_VoRlKenw}#U+#f9|AP?Hvj+t + +delta 14418 +zcmXZhdEk{}{{Qil(5h9_N-Hgtno?2LBoc~3s*xhHW=jn@3>7A65tC&?zKB67Wy_K* +zlck@rMYcf=CXykt{+`cszy5mM?`wHq@B6y%>zwncso(GL(|0>8-qfqyx=N|kvwD?M +zy;7-kLX9e=-EchC#p~k&+?n_xtd6VWtMTpl5$-_$=U4;3#+LXacETn#tCX5!zj#v3 +zD&(l-Vb|l`dR?&Vm?n*oX+u-%_Vf04c!kV}dEqqJj9cvfu +z_0e%HYL|B#)pwxei_MtN2^2TenhJxzvh_ +zMhxhLE^r`vXNRB(hM+IeIIM%y&~fw7mux=zvMxmDEyW%2ne@MizALXM{svv|C#+j4 +zmrC{O6%$*<&T(ICz`y}m4Npw_7<7Si<3w}^rl1SWMhjUSSE4(xCh>Z-fX|inOTVRI +z=lVtBPUxL=LksAW_M_0m!_Ye(llc5tPWz0+w_aouvn-?Y>UqCl(<(z&cBKFr@;b- +zWWb0FI2}!NZsIaJei~MueO!pXd=H=tJb~WfOX$|GMPKHR(Rb*J_+vxPzZ0tMTuj&* +zozNU@-!txmE_f(f(BQO>PJDKpf);pPydB-arHTKE&VN5{Ds$19hF`FAwW~5YI%ncum@0M;H1GEo=*#r&{A;Tw}DrUD0v9inv@lgbVLr6guJ3449F4 +zKALb5y5Q64e31z_wUwS}a^G)rK27_U_)FTW +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 +zVZ+cuPeih +z=b{B&itgk*to;Aqt!elN`t7$gz7#)5|F`Hf+=gytlhMV(d!VPNH=1}XTJRZYp%h!*f>`u~G|`)xs={jcbP)yEd|>!NW}^ao2T^mCva +zy6)()<)V_a(=Y{H_}aubpq1W%o`xlfABoSSFD{r2z>{ppbN~6x1oveK@%-Y{33d%Z>D{H+P_Bg{2c3_T8wLthtOW` +z!i7H~FNm|z2@l2R<9hV%-+~rgZ(NnqUie3Bk7Lkz*P{Km%<+(K&lLKpr!n&{s6NL-cvwP@aV6K_IK$yRh;l`}d2 +zl`Z7LXVw}`+z)*uN1_XkLwD%x^q&_mK@&|yPstqgS>G8SM+^TK`g!nP{5<_z&*c1@ +zxXxL{LJiQrc$%V#c10KHi5AokEpR0I$L2V+z{}ABrlU7>6FTm`^e>A~q|$USw1EB5cj9>T5uJ&Sn}$B?`Do&Y(3kjW^t<6Rw4l1@6#Y$O +z$1)do?1SEEKXgY1r+sMr6Z-5EWT;kiZL9_YM-a336u +z9^3M@T)5!F=$$P`3t5BS(K~2?U!e>BfR3*=p%_;yHbD#6E$)x*be;2m&{4Ytv +z>*%xm5KX)#Ryn`eiTY@Jd+dz8(tawM@Dg+fu13e*k$4H3cTM~N-Pv!jzUP0(3yO-H +z#7?mf}+?wam%3ejc>;rVc +zP3ZBfKCyU<8=@c0?P4Ev!DG;c&P4N-(frrM+31bVM^Dl14zTjO;u7?u_$eHKAEO^2 +z9WE}8)3Inl=f|07!u!xXOVEX%LO&s2LO+N;!OF3nRNO!\n" + "Language-Team: zh_TW\n" ++"Language: \n" + "MIME-Version: 1.0\n" + "Content-Type: text/plain; charset=UTF-8\n" + "Content-Transfer-Encoding: 8bit\n" +@@ -6255,8 +6256,8 @@ msgstr "" + #: modules/audio_filter/equalizer.c:58 + msgid "" + "Don't use presets, but manually specified bands. You need to provide 10 " +-"values between -20dB and 20dB, separated by spaces, e.g. \"0 2 4 2 0 -2 -4 -" +-"2 0\"" ++"values between -20dB and 20dB, separated by spaces, e.g. \"0 2 4 2 0 -2 -4 " ++"-2 0\"" + msgstr "" + + #: modules/audio_filter/equalizer.c:62 +@@ -6965,8 +6966,8 @@ msgid "" + "16 no padding\n" + "32 ac vlc\n" + "64 Qpel chroma.\n" +-"This must be the sum of the values. For example, to fix \"ac vlc\" and \"ump4" +-"\", enter 40." ++"This must be the sum of the values. For example, to fix \"ac vlc\" and " ++"\"ump4\", enter 40." + msgstr "" + + #: modules/codec/ffmpeg/ffmpeg.h:115 modules/codec/ffmpeg/ffmpeg.h:248 +-- +1.8.3.4 + + +From 274ad3ebdc175544ba3b10ec5ab6b3c4b5a1261d Mon Sep 17 00:00:00 2001 +From: Adrien Destugues +Date: Wed, 10 Sep 2014 21:45:03 +0200 +Subject: Add resample wrapper for ffmpeg 0.10. + + +diff --git a/modules/codec/ffmpeg/resample.c b/modules/codec/ffmpeg/resample.c +new file mode 100644 +index 0000000..57bb258 +--- /dev/null ++++ b/modules/codec/ffmpeg/resample.c +@@ -0,0 +1,82 @@ ++#if LIBAVCODEC_VERSION_MAJOR >= 52 ++ ++ ++ ++ void img_resample(ImgReSampleContext * context, AVPicture * pxOut, ++const AVPicture * pxIn) ++ { ++ if (context != NULL && context->context != NULL) ++ { ++ AVPicture shiftedInput = {0}; ++ shiftedInput.data[0] = pxIn->data[0] + pxIn->linesize[0] * ++context->bandTop + context->bandLeft; ++ shiftedInput.data[1] = pxIn->data[1] + (pxIn->linesize[1] * ++(context->bandTop / 2)) + (context->bandLeft+1) / 2; ++ shiftedInput.data[2] = pxIn->data[2] + (pxIn->linesize[2] * ++(context->bandTop / 2)) + (context->bandLeft+1) / 2; ++ shiftedInput.linesize[0] = pxIn->linesize[0]; ++ shiftedInput.linesize[1] = pxIn->linesize[1]; ++ shiftedInput.linesize[2] = pxIn->linesize[2]; ++ sws_scale(context->context, (uint8_t**)shiftedInput.data, ++(int*)shiftedInput.linesize, 0, context->height - context->bandBottom - ++context->bandTop, pxOut->data, pxOut->linesize); ++ } ++ } ++ ++ ++ ++ ImgReSampleContext * img_resample_full_init (int owidth, int ++oheight, int iwidth, int iheight, ++ int topBand, int ++bottomBand, int leftBand, int rightBand, ++ int padtop, int ++padbottom, int padleft, int padright) ++ { ++ ImgReSampleContext * s = (ImgReSampleContext ++*)av_malloc(sizeof(ImgReSampleContext)); ++ int srcSurface = (iwidth - rightBand - leftBand)* (iheight - ++topBand - bottomBand); ++ if (s == NULL) return NULL; ++ // We use bilinear when the source surface is big, and bicubic ++ // when the number of pixels to handle is less than 1 MPixels ++ s->context = sws_getContext(iwidth - rightBand - leftBand, ++iheight - topBand - bottomBand, PIX_FMT_YUV420P, owidth, oheight, ++PIX_FMT_YUV420P, srcSurface > 1024000 ? SWS_FAST_BILINEAR : SWS_BICUBIC, ++NULL, NULL, NULL); ++ if (s->context == NULL) { av_free(s); return NULL; } ++ s->bandLeft = leftBand; ++ s->bandRight = rightBand; ++ s->bandTop = topBand; ++ s->bandBottom = bottomBand; ++ ++ s->padLeft = padleft; ++ s->padRight = padright; ++ s->padTop = padtop; ++ s->padBottom = padbottom; ++ ++ s->width = iwidth; ++ s->height = iheight; ++ ++ s->outWidth = owidth; ++ s->outHeight = oheight; ++ ++ return s; ++ } ++ ++ ImgReSampleContext * img_resample_init (int owidth, int oheight, int ++iwidth, int iheight) ++ { ++ return img_resample_full_init(owidth, oheight, iwidth, iheight, ++0, 0, 0, 0, 0, 0, 0, 0); ++ } ++ ++ void img_resample_close(ImgReSampleContext * s) ++ { ++ if (s == NULL) return; ++ sws_freeContext(s->context); ++ ++ av_free(s); ++ } ++ ++#endif ++ +diff --git a/modules/codec/ffmpeg/resample.h b/modules/codec/ffmpeg/resample.h +new file mode 100644 +index 0000000..827b304 +--- /dev/null ++++ b/modules/codec/ffmpeg/resample.h +@@ -0,0 +1,48 @@ ++#include ++#include ++#if LIBAVCODEC_VERSION_MAJOR >= 52 ++ // Starting from this version, ImgReSampleContext doesn't exist anymore. ++ // This code implements the previous functions with a similar interface ++ typedef struct ++ { ++ /** The context used for resizing */ ++ struct SwsContext * context; ++ /** The source's width */ ++ int width; ++ /** The source's height */ ++ int height; ++ /** The banding used */ ++ int bandLeft; ++ /** The banding used */ ++ int bandRight; ++ /** The banding used */ ++ int bandTop; ++ /** The banding used */ ++ int bandBottom; ++ /** The padding used */ ++ int padLeft; ++ /** The padding used */ ++ int padRight; ++ /** The padding used */ ++ int padTop; ++ /** The padding used */ ++ int padBottom; ++ /** The output width */ ++ int outWidth; ++ /** The output height */ ++ int outHeight; ++ } ImgReSampleContext; ++ ++void img_resample_close(ImgReSampleContext * s); ++void img_resample(ImgReSampleContext * context, AVPicture * out, const ++AVPicture * in); ++ImgReSampleContext * img_resample_full_init (int owidth, int oheight, ++int iwidth, int iheight, ++ int topBand, int ++bottomBand, int leftBand, int rightBand, ++ int padtop, int ++padbottom, int padleft, int padright); ++ImgReSampleContext * img_resample_init (int owidth, int oheight, int ++iwidth, int iheight); ++#endif ++ +-- +1.8.3.4 + + +From b6bb0a98db5475b1e65817512f7c94bbdfc2408e Mon Sep 17 00:00:00 2001 +From: Adrien Destugues +Date: Wed, 10 Sep 2014 22:50:32 +0200 +Subject: More hacks to get things building on Haiku. + +* I can't get current automake to work on the very old scripts used for +VLC, so I had to hack only the configure script and the source files. + +diff --git a/configure b/configure +index 439f86e..777cc03 100755 +--- a/configure ++++ b/configure +@@ -21672,7 +21672,7 @@ rm -f conftest* + esac + + +-if test "${SYS}" = "beos"; then ++if test "${SYS}" = "haiku"; then + HAVE_BEOS_TRUE= + HAVE_BEOS_FALSE='#' + else +diff --git a/configure.ac b/configure.ac +index 7eba486..be0206a 100644 +--- a/configure.ac ++++ b/configure.ac +@@ -287,7 +287,7 @@ case "${target_os}" in + SYS="${target_os}" + ;; + esac +-AM_CONDITIONAL(HAVE_BEOS, test "${SYS}" = "beos") ++AM_CONDITIONAL(HAVE_BEOS, test "${SYS}" = "haiku") + AM_CONDITIONAL(HAVE_HAIKU, test "${SYS}" = "haiku") + AM_CONDITIONAL(HAVE_DARWIN, test "${SYS}" = "darwin") + AM_CONDITIONAL(HAVE_WIN32, test "${SYS}" = "mingw32") +diff --git a/include/main.h b/include/main.h +index 33332f5..5183da7 100644 +--- a/include/main.h ++++ b/include/main.h +@@ -62,7 +62,7 @@ struct libvlc_t + #if !defined( WIN32 ) + vlc_bool_t b_daemon; + #endif +-#if defined( SYS_BEOS ) ++#if defined( SYS_BEOS ) || defined(__HAIKU__) + vlc_object_t * p_appthread; + char * psz_vlcpath; + #elif defined( __APPLE__ ) +diff --git a/include/os_specific.h b/include/os_specific.h +index 2d6db18..d2b213f 100644 +--- a/include/os_specific.h ++++ b/include/os_specific.h +@@ -26,7 +26,7 @@ + # define _NEED_OS_SPECIFIC_H 1 + #endif + +-#if defined( SYS_BEOS ) ++#if defined( SYS_BEOS ) || defined(__HAIKU__) + # include "beos_specific.h" + #elif defined( __APPLE__ ) + # include "darwin_specific.h" +diff --git a/include/vlc_threads.h b/include/vlc_threads.h +index ce10728..7ac43c4 100644 +--- a/include/vlc_threads.h ++++ b/include/vlc_threads.h +@@ -42,12 +42,12 @@ + #elif defined( WIN32 ) + # include /* Win32 API */ + +-#elif defined( HAVE_KERNEL_SCHEDULER_H ) /* BeOS */ ++#elif defined( HAVE_KERNEL_SCHEDULER_H ) || defined(__HAIKU__) /* BeOS */ + # include + # include + # include + +-#elif defined( PTHREAD_COND_T_IN_PTHREAD_H ) || defined(__HAIKU__) /* pthreads (like Linux & BSD) */ ++#elif defined( PTHREAD_COND_T_IN_PTHREAD_H ) /* pthreads (like Linux & BSD) */ + # include + # ifdef DEBUG + /* Needed for pthread_cond_timedwait */ +-- +1.8.3.4 + diff --git a/media-video/vlc/vlc-0.8.6i.recipe b/media-video/vlc/vlc-0.8.6i.recipe index 8b1e4981e..b257a23cc 100644 --- a/media-video/vlc/vlc-0.8.6i.recipe +++ b/media-video/vlc/vlc-0.8.6i.recipe @@ -1,30 +1,86 @@ -DESCRIPTION="vlc - media player" +SUMMARY="VLC Media Player" +DESCRIPTION="VLC is a free and open source cross-platform multimedia player \ +and framework that plays most multimedia files as well as DVDs, Audio CDs, \ +VCDs, and various streaming protocols." HOMEPAGE="http://www.videolan.org/vlc/" -SRC_URI="http://download.videolan.org/pub/vlc/0.8.6i/vlc-0.8.6i.tar.gz" REVISION="1" -STATUS_HAIKU="broken" -DEPEND="pkgconfig >= 0.23, + +SRC_URI="http://download.videolan.org/pub/vlc/0.8.6i/vlc-0.8.6i.tar.gz" +CHECKSUM_SHA256="e99b3b49efd8cae8cf210ca69a5c81ceeac3b2e7d2b1e79df84c9abee4aa8426" + +ARCHITECTURES="x86_gcc2 x86" +SECONDARY_ARCHITECTURES="x86" + +PROVIDES=" + vlc$secondaryArchSuffix = $portVersion + cmd:vlc + cmd:vlc_config +" + +REQUIRES=" + haiku >= $haikuVersion + lib:libintl + lib:libiconv +" + +PROVIDES_devel=" + vlc_devel = $portVersion + devel:libvlc +" + +REQUIRES_devel=" + vlc == $portVersion base +" + +BUILD_REQUIRES=" + devel:libavcodec$secondaryArchSuffix == 53.61.100 + devel:libcddb$secondaryArchSuffix + devel:libdvdread$secondaryArchSuffix + devel:libiconv$secondaryArchSuffix + devel:libintl$secondaryArchSuffix + devel:libmad$secondaryArchSuffix + devel:libmodplug$secondaryArchSuffix + devel:libmpeg2$secondaryArchSuffix + devel:libogg$secondaryArchSuffix + devel:libpostproc$secondaryArchSuffix + devel:libz$secondaryArchSuffix +" + +BUILD_PREREQUIRES=" + haiku${secondaryArchSuffix}_devel >= $haikuVersion + cmd:autoconf + cmd:bison + cmd:gcc$secondaryArchSuffix + cmd:ar$secondaryArchSuffix + cmd:libtoolize + cmd:make + cmd:pkg_config$secondaryArchSuffix + cmd:xargs + cmd:sed +" + +DEPEND=" libcdio, - libogg, - libmodplug, - libdvdread, libebml, - libmad - ffmpeg = 7407" -CHECKSUM_MD5="fd852166d1705573cd7768a06117ed51" + " + +PATCHES="vlc-$portVersion.patchset" BUILD() { - cd vlc-0.8.6i - libtoolize --force --copy --install - ./configure --prefix=`finddir B_COMMON_DIRECTORY` - make + autoconf + runConfigure ./configure CFLAGS="-Davcodec_init=avcodec_register_all" \ + --disable-wxwidgets --disable-skins2 --enable-shared + make # Multi-job build is not working } INSTALL() { - cd vlc-0.8.6i make install + + prepareInstalledDevelLib libvlc + + packageEntries devel $developDir } LICENSE="GNU GPL v2" -COPYRIGHT="1998-2008" +COPYRIGHT="1998-2008 VideoLan organization"