debian/0000755000000000000000000000000012260056706007172 5ustar debian/control0000644000000000000000000000152212260056654010577 0ustar Source: dvbstreamer Priority: extra Maintainer: A Mennucc1 Build-Depends: dpkg-dev (>= 1.14.27), debhelper (>= 7), quilt (>= 0.46-4.1), autoconf, autotools-dev, automake, libtool, cdbs, libev-dev, libreadline-gplv2-dev, sqlite3, libsqlite3-dev, libyaml-dev, libltdl-dev, zlib1g-dev, dh-autoreconf Standards-Version: 3.9.3.0 Section: video Homepage: http://dvbstreamer.sf.net/ Vcs-Git: git://git.debian.org/git/collab-maint/dvbstreamer.git Package: dvbstreamer Section: video Architecture: any Depends: ${misc:Depends}, ${shlibs:Depends} Description: a console based streamer for DVB/ATSC service(s) DVBStreamer is a console based application to stream DVB/ATSC service(s) over UDP or to a file. It is more that just an app to stream AV though and feature a simple plugin architecture to allow more features to be added. debian/compat0000644000000000000000000000000212260056654010372 0ustar 5 debian/patches/0000755000000000000000000000000012260056654010623 5ustar debian/patches/svn_819.diff0000644000000000000000000000135112260056654012664 0ustar # ------------------------------------------------------------------------ # r819 | charrea6 | 2012-04-08 23:24:59 +0200(dom, 08 apr 2012) | 1 line # # Fix issue with pkginclude_DATA in Makefile.am # ------------------------------------------------------------------------ Index: trunk/include/Makefile.am =================================================================== --- trunk/include/Makefile.am (revisione 818) +++ trunk/include/Makefile.am (revisione 819) @@ -5,7 +5,7 @@ ## Please disable it in the Anjuta project configuration -pkginclude_DATA = \ +pkginclude_HEADERS = \ types.h \ cache.h \ objects.h \ @@ -30,5 +30,5 @@ events.h -EXTRA_DIST = $(pkginclude_DATA) +EXTRA_DIST = $(pkginclude_HEADERS) debian/patches/usr_share_doc_in.patch0000644000000000000000000000104012260056654015145 0ustar Index: dvbstreamer-2.0.0rc1/Makefile.in =================================================================== --- dvbstreamer-2.0.0rc1.orig/Makefile.in 2010-09-01 16:36:10.000000000 +0200 +++ dvbstreamer-2.0.0rc1/Makefile.in 2010-09-01 16:37:18.000000000 +0200 @@ -253,7 +253,7 @@ top_builddir = @top_builddir@ top_srcdir = @top_srcdir@ SUBDIRS = include include/dvbpsi src/dvbpsi src src/plugins -dvbstreamerdocdir = ${prefix}/doc/DVBStreamer +dvbstreamerdocdir = ${prefix}/share/doc/dvbstreamer dvbstreamerdoc_DATA = \ README\ COPYING\ debian/patches/svn_814.diff0000644000000000000000000000167012260056654012663 0ustar # ------------------------------------------------------------------------ # r814 | charrea6 | 2012-02-19 15:06:29 +0100(dom, 19 feb 2012) | 1 line # # Remove requirement on ncurses/termcap # ------------------------------------------------------------------------ Index: trunk/configure.in =================================================================== --- trunk/configure.in (revisione 813) +++ trunk/configure.in (revisione 814) @@ -149,11 +149,7 @@ dnl --------------------------------------------------------------------------- AC_CHECK_HEADER([readline/readline.h], [], [AC_MSG_FAILURE([readline header file not found])]) -AC_CHECK_LIB([readline], [readline], [READLINE_TERMCAP="-lncurses"], - [AC_CHECK_LIB([readline], [readline], [READLINE_TERMCAP="-ltermcap"], - [AC_MSG_FAILURE([readline not found])], - [-ltermcap])], - [-lncurses]) +AC_CHECK_LIB([readline], [readline], [], []) AC_SUBST(READLINE_TERMCAP) debian/patches/pkgincludedir.patch0000644000000000000000000000142312260056654014470 0ustar --- a/Makefile.am +++ b/Makefile.am @@ -15,10 +15,11 @@ NEWS\ TODO -pkginclude_DATA = \ +dvbstreamer_pkgincludedir = $(pkgincludedir) +dvbstreamer_pkginclude_DATA = \ config.h -EXTRA_DIST = $(dvbstreamerdoc_DATA) $(pkginclude_DATA) +EXTRA_DIST = $(dvbstreamerdoc_DATA) $(dvbstreamer_pkginclude_DATA) # Copy all the spec files. Of cource, only one is actually used. dist-hook: --- a/include/Makefile.am +++ b/include/Makefile.am @@ -5,7 +5,8 @@ ## Please disable it in the Anjuta project configuration -pkginclude_DATA = \ +dvbstreamer_pkgincludedir = $(pkgincludedir) +dvbstreamer_pkginclude_DATA = \ types.h \ cache.h \ objects.h \ @@ -30,5 +31,5 @@ events.h -EXTRA_DIST = $(pkginclude_DATA) +EXTRA_DIST = $(dvbstreamer_pkginclude_DATA) debian/patches/svn_813.diff0000644000000000000000000000456612260056654012671 0ustar # ------------------------------------------------------------------------ # r813 | charrea6 | 2012-02-19 14:44:30 +0100(dom, 19 feb 2012) | 1 line # # Remove markup characters from service names - many thanks Manuel Borchers # ------------------------------------------------------------------------ Index: trunk/src/standard/dvb/sdtprocessor.c =================================================================== --- trunk/src/standard/dvb/sdtprocessor.c (revisione 812) +++ trunk/src/standard/dvb/sdtprocessor.c (revisione 813) @@ -75,6 +75,7 @@ static void SubTableHandler(void * state, dvbpsi_handle demuxHandle, uint8_t tableId, uint16_t extension); static void SDTHandler(void* arg, dvbpsi_sdt_t* newSDT); static ServiceType ConvertDVBServiceType(int type); +static void removeControlCodes(char *str); /******************************************************************************* * Global variables * @@ -173,6 +174,7 @@ if (name) { + removeControlCodes(name); /* Only update the name if it has changed */ if (strcmp(name, service->name)) { @@ -283,3 +285,27 @@ } return result; } + +static void removeControlCodes(char *str) +{ + // + 1 to also copy the terminating NULL character! otherwise the loop may go + // beyond the new end of the string + int len = strlen(str) + 1; + int i = 0, prev_i = 0; + u_int32_t ch; + + do + { + ch = UTF8_nextchar(str, &i); + if ((ch >= 0x80) && (ch <= 0x9f)) + { + memmove(&str[prev_i], &str[i], len - i); + len -= i - prev_i; + i = prev_i; + } + else + { + prev_i = i; + } + } while(ch != 0u); +} Index: trunk/README =================================================================== --- trunk/README (revisione 812) +++ trunk/README (revisione 813) @@ -339,6 +339,7 @@ instead. Issa Gorissen - Donated a TeVII S660 for help with DVB-S2 - Many thanks Luca Dasseto - Also donated a TeVII S660 for help with DVB-S2 - Many thanks +Manuel Borchers - Testing of service name markup characters removal. VideoLan libdvbpsi Team for the excellent libdvbpsi. (http://www.videolan.org/developers/libdvbpsi.html) debian/patches/svn_809.diff0000644000000000000000000000247712260056654012675 0ustar # ------------------------------------------------------------------------ # r809 | charrea6 | 2011-07-04 23:13:31 +0200(lun, 04 lug 2011) | 1 line # # #3238776 - does not compile with libev4 (patch) # ------------------------------------------------------------------------ Index: trunk/configure.in =================================================================== --- trunk/configure.in (revisione 808) +++ trunk/configure.in (revisione 809) @@ -9,9 +9,9 @@ dnl Exception to this rule is the Major version 0, minor version will be dnl incremented until we are ready to say DVBStreamer is no longer alpha. dnl --------------------------------------------------------------------------- -AC_INIT(dvbstreamer, 2.0.0) +AC_INIT(dvbstreamer, 2.1.0) DVBSTREAMER_MAJOR=2 -DVBSTREAMER_MINOR=0 +DVBSTREAMER_MINOR=1 DVBSTREAMER_MICRO=0 AC_SUBST(DVBSTREAMER_MAJOR) @@ -188,7 +188,7 @@ dnl Check for libev dnl --------------------------------------------------------------------------- AC_CHECK_HEADER([ev.h], [], [AC_MSG_FAILURE([libev header file not found])]) -AC_CHECK_LIB([ev], [ev_loop], [], [AC_MSG_FAILURE([libev not found])]) +AC_CHECK_DECL([ev_loop()], [], [AC_MSG_FAILURE([libev doesn't provide ev_loop])], [[#include ]]) LIBS="" dnl --------------------------------------------------------------------------- debian/patches/svn_803.diff0000644000000000000000000000231012260056654012651 0ustar # ------------------------------------------------------------------------ # r803 | charrea6 | 2011-07-04 21:11:12 +0200(lun, 04 lug 2011) | 1 line # # #3216277 - string comparison # ------------------------------------------------------------------------ Index: trunk/src/services.c =================================================================== --- trunk/src/services.c (revisione 802) +++ trunk/src/services.c (revisione 803) @@ -204,7 +204,7 @@ STATEMENT_STEP(); if (rc == SQLITE_DONE) { - if (name != service->name) + if (!service->name || strcmp(name,service->name)) { if (service->name) { @@ -307,7 +307,7 @@ STATEMENT_STEP(); if (rc == SQLITE_DONE) { - if (provider != service->provider) + if (!service->provider || strcmp(provider,service->provider)) { if (service->provider) { @@ -338,7 +338,7 @@ STATEMENT_STEP(); if (rc == SQLITE_DONE) { - if (defaultAuthority != service->defaultAuthority) + if (!service->defaultAuthority || strcmp(defaultAuthority,service->defaultAuthority)) { if (service->defaultAuthority) { debian/patches/libev.patch0000644000000000000000000002103112260056654012742 0ustar Description: allow dvbstreamer to build with libev4 The configure script expects ev_loop to be a symbol in libev, which is no longer the case in version 4. This patch replaces the lib check with a header declaration check. . The important part of the patch is that affecting configure.in; the configure script was regenerated with autoreconf. Author: Stephen Kitt Last-Update: 2011-03-21 Bug: http://bugs.debian.org/618786 Index: dvbstreamer-2.1.0/configure Remark: superseded by upstream svn 809 =================================================================== --- dvbstreamer-2.1.0.orig/configure 2011-03-21 09:51:02.000000000 +0000 +++ dvbstreamer-2.1.0/configure 2011-03-21 09:51:58.000000000 +0000 @@ -1976,6 +1976,52 @@ eval $as_lineno_stack; test "x$as_lineno_stack" = x && { as_lineno=; unset as_lineno;} } # ac_fn_c_check_header_mongrel + +# ac_fn_c_check_decl LINENO SYMBOL VAR INCLUDES +# --------------------------------------------- +# Tests whether SYMBOL is declared in INCLUDES, setting cache variable VAR +# accordingly. +ac_fn_c_check_decl () +{ + as_lineno=${as_lineno-"$1"} as_lineno_stack=as_lineno_stack=$as_lineno_stack + as_decl_name=`echo $2|sed 's/ *(.*//'` + as_decl_use=`echo $2|sed -e 's/(/((/' -e 's/)/) 0&/' -e 's/,/) 0& (/g'` + { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether $as_decl_name is declared" >&5 +$as_echo_n "checking whether $as_decl_name is declared... " >&6; } +if eval "test \"\${$3+set}\"" = set; then : + $as_echo_n "(cached) " >&6 +else + cat confdefs.h - <<_ACEOF >conftest.$ac_ext +/* end confdefs.h. */ +$4 +int +main () +{ +#ifndef $as_decl_name +#ifdef __cplusplus + (void) $as_decl_use; +#else + (void) $as_decl_name; +#endif +#endif + + ; + return 0; +} +_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; test "x$as_lineno_stack" = x && { as_lineno=; unset as_lineno;} + +} # ac_fn_c_check_decl cat >config.log <<_ACEOF This file contains any messages produced by compilers while running configure, to aid debugging if configure makes a mistake. @@ -6302,13 +6348,13 @@ else lt_cv_nm_interface="BSD nm" echo "int some_variable = 0;" > conftest.$ac_ext - (eval echo "\"\$as_me:6305: $ac_compile\"" >&5) + (eval echo "\"\$as_me:6351: $ac_compile\"" >&5) (eval "$ac_compile" 2>conftest.err) cat conftest.err >&5 - (eval echo "\"\$as_me:6308: $NM \\\"conftest.$ac_objext\\\"\"" >&5) + (eval echo "\"\$as_me:6354: $NM \\\"conftest.$ac_objext\\\"\"" >&5) (eval "$NM \"conftest.$ac_objext\"" 2>conftest.err > conftest.out) cat conftest.err >&5 - (eval echo "\"\$as_me:6311: output\"" >&5) + (eval echo "\"\$as_me:6357: output\"" >&5) cat conftest.out >&5 if $GREP 'External.*some_variable' conftest.out > /dev/null; then lt_cv_nm_interface="MS dumpbin" @@ -7510,7 +7556,7 @@ ;; *-*-irix6*) # Find out which ABI we are using. - echo '#line 7513 "configure"' > conftest.$ac_ext + echo '#line 7559 "configure"' > conftest.$ac_ext if { { eval echo "\"\$as_me\":${as_lineno-$LINENO}: \"$ac_compile\""; } >&5 (eval $ac_compile) 2>&5 ac_status=$? @@ -9081,11 +9127,11 @@ -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:9084: $lt_compile\"" >&5) + (eval echo "\"\$as_me:9130: $lt_compile\"" >&5) (eval "$lt_compile" 2>conftest.err) ac_status=$? cat conftest.err >&5 - echo "$as_me:9088: \$? = $ac_status" >&5 + echo "$as_me:9134: \$? = $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. @@ -9420,11 +9466,11 @@ -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:9423: $lt_compile\"" >&5) + (eval echo "\"\$as_me:9469: $lt_compile\"" >&5) (eval "$lt_compile" 2>conftest.err) ac_status=$? cat conftest.err >&5 - echo "$as_me:9427: \$? = $ac_status" >&5 + echo "$as_me:9473: \$? = $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. @@ -9525,11 +9571,11 @@ -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:9528: $lt_compile\"" >&5) + (eval echo "\"\$as_me:9574: $lt_compile\"" >&5) (eval "$lt_compile" 2>out/conftest.err) ac_status=$? cat out/conftest.err >&5 - echo "$as_me:9532: \$? = $ac_status" >&5 + echo "$as_me:9578: \$? = $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 @@ -9580,11 +9626,11 @@ -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:9583: $lt_compile\"" >&5) + (eval echo "\"\$as_me:9629: $lt_compile\"" >&5) (eval "$lt_compile" 2>out/conftest.err) ac_status=$? cat out/conftest.err >&5 - echo "$as_me:9587: \$? = $ac_status" >&5 + echo "$as_me:9633: \$? = $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 @@ -11964,7 +12010,7 @@ lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2 lt_status=$lt_dlunknown cat > conftest.$ac_ext <<_LT_EOF -#line 11967 "configure" +#line 12013 "configure" #include "confdefs.h" #if HAVE_DLFCN_H @@ -12060,7 +12106,7 @@ lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2 lt_status=$lt_dlunknown cat > conftest.$ac_ext <<_LT_EOF -#line 12063 "configure" +#line 12109 "configure" #include "confdefs.h" #if HAVE_DLFCN_H @@ -12786,53 +12832,15 @@ fi -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for ev_loop in -lev" >&5 -$as_echo_n "checking for ev_loop in -lev... " >&6; } -if test "${ac_cv_lib_ev_ev_loop+set}" = set; then : - $as_echo_n "(cached) " >&6 -else - ac_check_lib_save_LIBS=$LIBS -LIBS="-lev $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 ev_loop (); -int -main () -{ -return ev_loop (); - ; - return 0; -} -_ACEOF -if ac_fn_c_try_link "$LINENO"; then : - ac_cv_lib_ev_ev_loop=yes -else - ac_cv_lib_ev_ev_loop=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_ev_ev_loop" >&5 -$as_echo "$ac_cv_lib_ev_ev_loop" >&6; } -if test "x$ac_cv_lib_ev_ev_loop" = x""yes; then : - cat >>confdefs.h <<_ACEOF -#define HAVE_LIBEV 1 -_ACEOF - - LIBS="-lev $LIBS" +as_ac_Symbol=`$as_echo "ac_cv_have_decl_ev_loop()" | $as_tr_sh` +ac_fn_c_check_decl "$LINENO" "ev_loop()" "$as_ac_Symbol" "#include +" +if eval test \"x\$"$as_ac_Symbol"\" = x"yes"; then : 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 $? "libev not found +as_fn_error $? "libev doesn't provide ev_loop See \`config.log' for more details" "$LINENO" 5 ; } fi Index: dvbstreamer-2.1.0/configure.in =================================================================== --- dvbstreamer-2.1.0.orig/configure.in 2011-03-21 09:43:18.000000000 +0000 +++ dvbstreamer-2.1.0/configure.in 2011-03-21 09:45:17.000000000 +0000 @@ -188,7 +188,8 @@ dnl Check for libev dnl --------------------------------------------------------------------------- AC_CHECK_HEADER([ev.h], [], [AC_MSG_FAILURE([libev header file not found])]) -AC_CHECK_LIB([ev], [ev_loop], [], [AC_MSG_FAILURE([libev not found])]) +AC_CHECK_DECL([ev_loop()], [], [AC_MSG_FAILURE([libev doesn't provide ev_loop])], [[#include ]]) +dnl AC_CHECK_LIB([ev], [ev_loop], [], [AC_MSG_FAILURE([libev not found])]) LIBS="" dnl --------------------------------------------------------------------------- debian/patches/svn_812.diff0000644000000000000000000000174212260056654012661 0ustar # ------------------------------------------------------------------------ # r812 | charrea6 | 2012-02-19 14:42:36 +0100(dom, 19 feb 2012) | 1 line # # Make sure to release references to deleted services # ------------------------------------------------------------------------ Index: trunk/src/cache.c =================================================================== --- trunk/src/cache.c (revisione 811) +++ trunk/src/cache.c (revisione 812) @@ -790,6 +790,7 @@ ObjectRefDec(cachedPIDs[deletedIndex]); } + cachedServicesCount --; /* Remove the deleted service from the list */ for (i = deletedIndex; i < cachedServicesCount; i ++) @@ -942,6 +943,7 @@ LogModule(LOG_DEBUG, CACHE, "Deleting service %s (0x%04x)\n", service->name, service->id); ServiceDelete(service); ProgramInfoRemove(service); + ServiceRefDec(service); break; } DBaseTransactionCommit(); debian/patches/svn_815.diff0000644000000000000000000000177012260056654012665 0ustar # ------------------------------------------------------------------------ # r815 | charrea6 | 2012-03-07 14:38:40 +0100(mer, 07 mar 2012) | 1 line # # Fix issue with ev_loop declaration check which was too specific (shouldnt include brackets, just check it is defined) # ------------------------------------------------------------------------ Index: trunk/configure.in =================================================================== --- trunk/configure.in (revisione 814) +++ trunk/configure.in (revisione 815) @@ -184,7 +184,7 @@ dnl Check for libev dnl --------------------------------------------------------------------------- AC_CHECK_HEADER([ev.h], [], [AC_MSG_FAILURE([libev header file not found])]) -AC_CHECK_DECL([ev_loop()], [], [AC_MSG_FAILURE([libev doesn't provide ev_loop])], [[#include ]]) +AC_CHECK_DECL([ev_loop], [], [AC_MSG_FAILURE([libev doesn't provide ev_loop])], [[#include ]]) LIBS="" dnl --------------------------------------------------------------------------- debian/patches/svn_806.diff0000644000000000000000000000307112260056654012661 0ustar # ------------------------------------------------------------------------ # r806 | charrea6 | 2011-07-04 22:42:50 +0200(lun, 04 lug 2011) | 1 line # # #3216269 - Locking issues. # ------------------------------------------------------------------------ Index: trunk/src/standard/dvb/dvbtext.c =================================================================== --- trunk/src/standard/dvb/dvbtext.c (revisione 805) +++ trunk/src/standard/dvb/dvbtext.c (revisione 806) @@ -219,6 +219,7 @@ } if ((long)cd == -1) { + pthread_mutex_unlock(&ResultBufferMutex); LogModule(LOG_ERROR, DVBTEXT, "Failed to open conversion descriptor!\n"); return NULL; } Index: trunk/src/plugins/manualfilters.c =================================================================== --- trunk/src/plugins/manualfilters.c (revisione 805) +++ trunk/src/plugins/manualfilters.c (revisione 806) @@ -273,7 +273,7 @@ static void CommandSetOutputMRL(int argc, char **argv) { ManualFilter_t *filter; - DeliveryMethodInstance_t *instance; + DeliveryMethodInstance_t *instance, *old_instance; CommandCheckAuthenticated(); @@ -284,8 +284,9 @@ if (instance) { pthread_mutex_lock(&manualFiltersMutex); - DeliveryMethodDestroy(filter->dmInstance); + old_instance = filter->dmInstance; filter->dmInstance = instance; + DeliveryMethodDestroy(old_instance); pthread_mutex_unlock(&manualFiltersMutex); CommandPrintf("MRL set to \"%s\" for %s\n", DeliveryMethodGetMRL(filter->dmInstance), argv[0]); } debian/patches/svn_804.diff0000644000000000000000000000137412260056654012663 0ustar # ------------------------------------------------------------------------ # r804 | charrea6 | 2011-07-04 21:13:38 +0200(lun, 04 lug 2011) | 1 line # # #3216228 - collection header alignment # ------------------------------------------------------------------------ Index: trunk/include/objects.h =================================================================== --- trunk/include/objects.h (revisione 803) +++ trunk/include/objects.h (revisione 804) @@ -39,7 +39,10 @@ * A collection of entries with a count. */ typedef struct ObjectCollection_s{ + union{ unsigned int nrofEntries; /**< Number of entries in the collection */ + void *__forceAlignment; /* Used to fix issues of alignment on 64bit systems */ + }; }ObjectCollection_t; /** debian/patches/usr_share_doc.patch0000644000000000000000000000053612260056654014470 0ustar --- dvbstreamer-2~svn770.orig/Makefile.am +++ dvbstreamer-2~svn770/Makefile.am @@ -2,7 +2,10 @@ SUBDIRS = include include/dvbpsi src/dvbpsi src src/plugins -dvbstreamerdocdir = ${prefix}/doc/DVBStreamer + +#AM: this is the file system standard +dvbstreamerdocdir = ${prefix}/share/doc/dvbstreamer + dvbstreamerdoc_DATA = \ README\ COPYING\ debian/patches/svn_807.diff0000644000000000000000000000116112260056654012660 0ustar # ------------------------------------------------------------------------ # r807 | charrea6 | 2011-07-04 22:46:14 +0200(lun, 04 lug 2011) | 1 line # # #3216252 - invalid free() on string literal # ------------------------------------------------------------------------ Index: trunk/src/plugins/freesat_huffman.c =================================================================== --- trunk/src/plugins/freesat_huffman.c (revisione 806) +++ trunk/src/plugins/freesat_huffman.c (revisione 807) @@ -146,5 +146,5 @@ uncompressed[p] = 0; return uncompressed; } - return ""; + return strdup(""); } debian/patches/series0000644000000000000000000000044712260056654012045 0ustar usr_share_doc.patch #autostuff.patch usr_share_doc_in.patch ##libev.patch ##no_ncurses.patch pkgincludedir.patch svn_803.diff svn_804.diff svn_805.diff svn_806.diff svn_807.diff svn_809.diff svn_812.diff svn_813.diff svn_814.diff svn_815.diff ## does not apply, needs some care #svn_819.diff debian/patches/svn_805.diff0000644000000000000000000000321012260056654012653 0ustar # ------------------------------------------------------------------------ # r805 | charrea6 | 2011-07-04 22:36:11 +0200(lun, 04 lug 2011) | 1 line # # #3216300 - uninitalized values # ------------------------------------------------------------------------ Index: trunk/src/dvbadapter.c =================================================================== --- trunk/src/dvbadapter.c (revisione 804) +++ trunk/src/dvbadapter.c (revisione 805) @@ -1125,6 +1125,7 @@ else { struct dmx_pes_filter_params pesFilterParam; + memset(&pesFilterParam,0,sizeof(pesFilterParam)); LogModule(LOG_DEBUG, DVBADAPTER, "Filter fd %d\n", adapter->filters[idxToUse].demuxFd); Index: trunk/src/dvbpsi/descriptors/dr_4d.c =================================================================== --- trunk/src/dvbpsi/descriptors/dr_4d.c (revisione 804) +++ trunk/src/dvbpsi/descriptors/dr_4d.c (revisione 805) @@ -76,6 +76,8 @@ DVBPSI_ERROR("dr_4d decoder", "out of memory"); return NULL; } + p_decoded->i_event_name[0]=0; + p_decoded->i_text[0]=0; /* Decode data and check the length */ memcpy( p_decoded->i_iso_639_code, &p_descriptor->p_data[0], 3 ); Index: trunk/src/dvbpsi/descriptors/dr_4e.c =================================================================== --- trunk/src/dvbpsi/descriptors/dr_4e.c (revisione 804) +++ trunk/src/dvbpsi/descriptors/dr_4e.c (revisione 805) @@ -69,6 +69,7 @@ DVBPSI_ERROR("dr_4e decoder", "out of memory"); return NULL; } + memset(p_decoded->i_buffer,0,sizeof(p_decoded->i_buffer)); /* Decode */ p_decoded->i_descriptor_number = (p_descriptor->p_data[0] >> 4)&0xf; debian/patches/autostuff.patch0000644000000000000000000135022712260056654013676 0ustar Description: stuff generated by autogen.sh Author: A Mennucc1 Forwarded: no Last-Update: 2010-05-09 Index: dvbstreamer-2~svn777/trunk/aclocal.m4 =================================================================== --- dvbstreamer-2~svn777.orig/trunk/aclocal.m4 2010-05-09 17:43:28.000000000 +0200 +++ dvbstreamer-2~svn777/trunk/aclocal.m4 2010-05-09 17:43:50.000000000 +0200 @@ -1,7 +1,7 @@ -# generated automatically by aclocal 1.10.2 -*- Autoconf -*- +# generated automatically by aclocal 1.11.1 -*- Autoconf -*- # Copyright (C) 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004, -# 2005, 2006, 2007, 2008 Free Software Foundation, Inc. +# 2005, 2006, 2007, 2008, 2009 Free Software Foundation, Inc. # This file is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. @@ -13,8 +13,8 @@ m4_ifndef([AC_AUTOCONF_VERSION], [m4_copy([m4_PACKAGE_VERSION], [AC_AUTOCONF_VERSION])])dnl -m4_if(m4_defn([AC_AUTOCONF_VERSION]), [2.64],, -[m4_warning([this file was generated for autoconf 2.64. +m4_if(m4_defn([AC_AUTOCONF_VERSION]), [2.65],, +[m4_warning([this file was generated for autoconf 2.65. You have another version of autoconf. It may work, but is not guaranteed to. If you have problems, you may need to regenerate the build system entirely. To do so, use the procedure documented by the package, typically `autoreconf'.])]) @@ -2460,7 +2460,7 @@ ;; # This must be Linux ELF. -linux* | k*bsd*-gnu) +linux* | k*bsd*-gnu | kopensolaris*-gnu) version_type=linux need_lib_prefix=no need_version=no @@ -3099,7 +3099,7 @@ ;; # This must be Linux ELF. -linux* | k*bsd*-gnu) +linux* | k*bsd*-gnu | kopensolaris*-gnu) lt_cv_deplibs_check_method=pass_all ;; @@ -3720,7 +3720,7 @@ ;; esac ;; - linux* | k*bsd*-gnu) + linux* | k*bsd*-gnu | kopensolaris*-gnu) case $cc_basename in KCC*) # KAI C++ Compiler @@ -4004,7 +4004,7 @@ _LT_TAGVAR(lt_prog_compiler_static, $1)='-non_shared' ;; - linux* | k*bsd*-gnu) + linux* | k*bsd*-gnu | kopensolaris*-gnu) case $cc_basename in # old Intel for x86_64 which still supported -KPIC. ecc*) @@ -4300,6 +4300,7 @@ fi supports_anon_versioning=no case `$LD -v 2>&1` in + *GNU\ gold*) supports_anon_versioning=yes ;; *\ [[01]].* | *\ 2.[[0-9]].* | *\ 2.10.*) ;; # catch versions < 2.11 *\ 2.11.93.0.2\ *) supports_anon_versioning=yes ;; # RH7.3 ... *\ 2.11.92.0.12\ *) supports_anon_versioning=yes ;; # Mandrake 8.2 ... @@ -4391,7 +4392,7 @@ _LT_TAGVAR(archive_expsym_cmds, $1)='sed "s,^,_," $export_symbols >$output_objdir/$soname.expsym~$CC -shared $pic_flag $libobjs $deplibs $compiler_flags ${wl}-h,$soname ${wl}--retain-symbols-file,$output_objdir/$soname.expsym ${wl}--image-base,`expr ${RANDOM-$$} % 4096 / 2 \* 262144 + 1342177280` -o $lib' ;; - gnu* | linux* | tpf* | k*bsd*-gnu) + gnu* | linux* | tpf* | k*bsd*-gnu | kopensolaris*-gnu) tmp_diet=no if test "$host_os" = linux-dietlibc; then case $cc_basename in @@ -5871,7 +5872,7 @@ _LT_TAGVAR(inherit_rpath, $1)=yes ;; - linux* | k*bsd*-gnu) + linux* | k*bsd*-gnu | kopensolaris*-gnu) case $cc_basename in KCC*) # Kuck and Associates, Inc. (KAI) C++ Compiler @@ -7380,811 +7381,6 @@ esac ]) -# ltdl.m4 - Configure ltdl for the target system. -*-Autoconf-*- -# -# Copyright (C) 1999-2006, 2007, 2008 Free Software Foundation, Inc. -# Written by Thomas Tanner, 1999 -# -# This file is free software; the Free Software Foundation gives -# unlimited permission to copy and/or distribute it, with or without -# modifications, as long as this notice is preserved. - -# serial 17 LTDL_INIT - -# LT_CONFIG_LTDL_DIR(DIRECTORY, [LTDL-MODE]) -# ------------------------------------------ -# DIRECTORY contains the libltdl sources. It is okay to call this -# function multiple times, as long as the same DIRECTORY is always given. -AC_DEFUN([LT_CONFIG_LTDL_DIR], -[AC_BEFORE([$0], [LTDL_INIT]) -_$0($*) -])# LT_CONFIG_LTDL_DIR - -# We break this out into a separate macro, so that we can call it safely -# internally without being caught accidentally by the sed scan in libtoolize. -m4_defun([_LT_CONFIG_LTDL_DIR], -[dnl remove trailing slashes -m4_pushdef([_ARG_DIR], m4_bpatsubst([$1], [/*$])) -m4_case(_LTDL_DIR, - [], [dnl only set lt_ltdl_dir if _ARG_DIR is not simply `.' - m4_if(_ARG_DIR, [.], - [], - [m4_define([_LTDL_DIR], _ARG_DIR) - _LT_SHELL_INIT([lt_ltdl_dir=']_ARG_DIR['])])], - [m4_if(_ARG_DIR, _LTDL_DIR, - [], - [m4_fatal([multiple libltdl directories: `]_LTDL_DIR[', `]_ARG_DIR['])])]) -m4_popdef([_ARG_DIR]) -])# _LT_CONFIG_LTDL_DIR - -# Initialise: -m4_define([_LTDL_DIR], []) - - -# _LT_BUILD_PREFIX -# ---------------- -# If Autoconf is new enough, expand to `${top_build_prefix}', otherwise -# to `${top_builddir}/'. -m4_define([_LT_BUILD_PREFIX], -[m4_ifdef([AC_AUTOCONF_VERSION], - [m4_if(m4_version_compare(m4_defn([AC_AUTOCONF_VERSION]), [2.62]), - [-1], [m4_ifdef([_AC_HAVE_TOP_BUILD_PREFIX], - [${top_build_prefix}], - [${top_builddir}/])], - [${top_build_prefix}])], - [${top_builddir}/])[]dnl -]) - - -# LTDL_CONVENIENCE -# ---------------- -# sets LIBLTDL to the link flags for the libltdl convenience library and -# LTDLINCL to the include flags for the libltdl header and adds -# --enable-ltdl-convenience to the configure arguments. Note that -# AC_CONFIG_SUBDIRS is not called here. LIBLTDL will be prefixed with -# '${top_build_prefix}' if available, otherwise with '${top_builddir}/', -# and LTDLINCL will be prefixed with '${top_srcdir}/' (note the single -# quotes!). If your package is not flat and you're not using automake, -# define top_build_prefix, top_builddir, and top_srcdir appropriately -# in your Makefiles. -AC_DEFUN([LTDL_CONVENIENCE], -[AC_BEFORE([$0], [LTDL_INIT])dnl -dnl Although the argument is deprecated and no longer documented, -dnl LTDL_CONVENIENCE used to take a DIRECTORY orgument, if we have one -dnl here make sure it is the same as any other declaration of libltdl's -dnl location! This also ensures lt_ltdl_dir is set when configure.ac is -dnl not yet using an explicit LT_CONFIG_LTDL_DIR. -m4_ifval([$1], [_LT_CONFIG_LTDL_DIR([$1])])dnl -_$0() -])# LTDL_CONVENIENCE - -# AC_LIBLTDL_CONVENIENCE accepted a directory argument in older libtools, -# now we have LT_CONFIG_LTDL_DIR: -AU_DEFUN([AC_LIBLTDL_CONVENIENCE], -[_LT_CONFIG_LTDL_DIR([m4_default([$1], [libltdl])]) -_LTDL_CONVENIENCE]) - -dnl aclocal-1.4 backwards compatibility: -dnl AC_DEFUN([AC_LIBLTDL_CONVENIENCE], []) - - -# _LTDL_CONVENIENCE -# ----------------- -# Code shared by LTDL_CONVENIENCE and LTDL_INIT([convenience]). -m4_defun([_LTDL_CONVENIENCE], -[case $enable_ltdl_convenience in - no) AC_MSG_ERROR([this package needs a convenience libltdl]) ;; - "") enable_ltdl_convenience=yes - ac_configure_args="$ac_configure_args --enable-ltdl-convenience" ;; -esac -LIBLTDL='_LT_BUILD_PREFIX'"${lt_ltdl_dir+$lt_ltdl_dir/}libltdlc.la" -LTDLDEPS=$LIBLTDL -LTDLINCL='-I${top_srcdir}'"${lt_ltdl_dir+/$lt_ltdl_dir}" - -AC_SUBST([LIBLTDL]) -AC_SUBST([LTDLDEPS]) -AC_SUBST([LTDLINCL]) - -# For backwards non-gettext consistent compatibility... -INCLTDL="$LTDLINCL" -AC_SUBST([INCLTDL]) -])# _LTDL_CONVENIENCE - - -# LTDL_INSTALLABLE -# ---------------- -# sets LIBLTDL to the link flags for the libltdl installable library -# and LTDLINCL to the include flags for the libltdl header and adds -# --enable-ltdl-install to the configure arguments. Note that -# AC_CONFIG_SUBDIRS is not called from here. If an installed libltdl -# is not found, LIBLTDL will be prefixed with '${top_build_prefix}' if -# available, otherwise with '${top_builddir}/', and LTDLINCL will be -# prefixed with '${top_srcdir}/' (note the single quotes!). If your -# package is not flat and you're not using automake, define top_build_prefix, -# top_builddir, and top_srcdir appropriately in your Makefiles. -# In the future, this macro may have to be called after LT_INIT. -AC_DEFUN([LTDL_INSTALLABLE], -[AC_BEFORE([$0], [LTDL_INIT])dnl -dnl Although the argument is deprecated and no longer documented, -dnl LTDL_INSTALLABLE used to take a DIRECTORY orgument, if we have one -dnl here make sure it is the same as any other declaration of libltdl's -dnl location! This also ensures lt_ltdl_dir is set when configure.ac is -dnl not yet using an explicit LT_CONFIG_LTDL_DIR. -m4_ifval([$1], [_LT_CONFIG_LTDL_DIR([$1])])dnl -_$0() -])# LTDL_INSTALLABLE - -# AC_LIBLTDL_INSTALLABLE accepted a directory argument in older libtools, -# now we have LT_CONFIG_LTDL_DIR: -AU_DEFUN([AC_LIBLTDL_INSTALLABLE], -[_LT_CONFIG_LTDL_DIR([m4_default([$1], [libltdl])]) -_LTDL_INSTALLABLE]) - -dnl aclocal-1.4 backwards compatibility: -dnl AC_DEFUN([AC_LIBLTDL_INSTALLABLE], []) - - -# _LTDL_INSTALLABLE -# ----------------- -# Code shared by LTDL_INSTALLABLE and LTDL_INIT([installable]). -m4_defun([_LTDL_INSTALLABLE], -[if test -f $prefix/lib/libltdl.la; then - lt_save_LDFLAGS="$LDFLAGS" - LDFLAGS="-L$prefix/lib $LDFLAGS" - AC_CHECK_LIB([ltdl], [lt_dlinit], [lt_lib_ltdl=yes]) - LDFLAGS="$lt_save_LDFLAGS" - if test x"${lt_lib_ltdl-no}" = xyes; then - if test x"$enable_ltdl_install" != xyes; then - # Don't overwrite $prefix/lib/libltdl.la without --enable-ltdl-install - AC_MSG_WARN([not overwriting libltdl at $prefix, force with `--enable-ltdl-install']) - enable_ltdl_install=no - fi - elif test x"$enable_ltdl_install" = xno; then - AC_MSG_WARN([libltdl not installed, but installation disabled]) - fi -fi - -# If configure.ac declared an installable ltdl, and the user didn't override -# with --disable-ltdl-install, we will install the shipped libltdl. -case $enable_ltdl_install in - no) ac_configure_args="$ac_configure_args --enable-ltdl-install=no" - LIBLTDL="-lltdl" - LTDLDEPS= - LTDLINCL= - ;; - *) enable_ltdl_install=yes - ac_configure_args="$ac_configure_args --enable-ltdl-install" - LIBLTDL='_LT_BUILD_PREFIX'"${lt_ltdl_dir+$lt_ltdl_dir/}libltdl.la" - LTDLDEPS=$LIBLTDL - LTDLINCL='-I${top_srcdir}'"${lt_ltdl_dir+/$lt_ltdl_dir}" - ;; -esac - -AC_SUBST([LIBLTDL]) -AC_SUBST([LTDLDEPS]) -AC_SUBST([LTDLINCL]) - -# For backwards non-gettext consistent compatibility... -INCLTDL="$LTDLINCL" -AC_SUBST([INCLTDL]) -])# LTDL_INSTALLABLE - - -# _LTDL_MODE_DISPATCH -# ------------------- -m4_define([_LTDL_MODE_DISPATCH], -[dnl If _LTDL_DIR is `.', then we are configuring libltdl itself: -m4_if(_LTDL_DIR, [], - [], - dnl if _LTDL_MODE was not set already, the default value is `subproject': - [m4_case(m4_default(_LTDL_MODE, [subproject]), - [subproject], [AC_CONFIG_SUBDIRS(_LTDL_DIR) - _LT_SHELL_INIT([lt_dlopen_dir="$lt_ltdl_dir"])], - [nonrecursive], [_LT_SHELL_INIT([lt_dlopen_dir="$lt_ltdl_dir"; lt_libobj_prefix="$lt_ltdl_dir/"])], - [recursive], [], - [m4_fatal([unknown libltdl mode: ]_LTDL_MODE)])])dnl -dnl Be careful not to expand twice: -m4_define([$0], []) -])# _LTDL_MODE_DISPATCH - - -# _LT_LIBOBJ(MODULE_NAME) -# ----------------------- -# Like AC_LIBOBJ, except that MODULE_NAME goes into _LT_LIBOBJS instead -# of into LIBOBJS. -AC_DEFUN([_LT_LIBOBJ], [ - m4_pattern_allow([^_LT_LIBOBJS$]) - _LT_LIBOBJS="$_LT_LIBOBJS $1.$ac_objext" -])# _LT_LIBOBJS - - -# LTDL_INIT([OPTIONS]) -# -------------------- -# Clients of libltdl can use this macro to allow the installer to -# choose between a shipped copy of the ltdl sources or a preinstalled -# version of the library. If the shipped ltdl sources are not in a -# subdirectory named libltdl, the directory name must be given by -# LT_CONFIG_LTDL_DIR. -AC_DEFUN([LTDL_INIT], -[dnl Parse OPTIONS -_LT_SET_OPTIONS([$0], [$1]) - -dnl We need to keep our own list of libobjs separate from our parent project, -dnl and the easiest way to do that is redefine the AC_LIBOBJs macro while -dnl we look for our own LIBOBJs. -m4_pushdef([AC_LIBOBJ], m4_defn([_LT_LIBOBJ])) -m4_pushdef([AC_LIBSOURCES]) - -dnl If not otherwise defined, default to the 1.5.x compatible subproject mode: -m4_if(_LTDL_MODE, [], - [m4_define([_LTDL_MODE], m4_default([$2], [subproject])) - m4_if([-1], [m4_bregexp(_LTDL_MODE, [\(subproject\|\(non\)?recursive\)])], - [m4_fatal([unknown libltdl mode: ]_LTDL_MODE)])]) - -AC_ARG_WITH([included_ltdl], - [AS_HELP_STRING([--with-included-ltdl], - [use the GNU ltdl sources included here])]) - -if test "x$with_included_ltdl" != xyes; then - # We are not being forced to use the included libltdl sources, so - # decide whether there is a useful installed version we can use. - AC_CHECK_HEADER([ltdl.h], - [AC_CHECK_DECL([lt_dlinterface_register], - [AC_CHECK_LIB([ltdl], [lt_dladvise_preload], - [with_included_ltdl=no], - [with_included_ltdl=yes])], - [with_included_ltdl=yes], - [AC_INCLUDES_DEFAULT - #include ])], - [with_included_ltdl=yes], - [AC_INCLUDES_DEFAULT] - ) -fi - -dnl If neither LT_CONFIG_LTDL_DIR, LTDL_CONVENIENCE nor LTDL_INSTALLABLE -dnl was called yet, then for old times' sake, we assume libltdl is in an -dnl eponymous directory: -AC_PROVIDE_IFELSE([LT_CONFIG_LTDL_DIR], [], [_LT_CONFIG_LTDL_DIR([libltdl])]) - -AC_ARG_WITH([ltdl_include], - [AS_HELP_STRING([--with-ltdl-include=DIR], - [use the ltdl headers installed in DIR])]) - -if test -n "$with_ltdl_include"; then - if test -f "$with_ltdl_include/ltdl.h"; then : - else - AC_MSG_ERROR([invalid ltdl include directory: `$with_ltdl_include']) - fi -else - with_ltdl_include=no -fi - -AC_ARG_WITH([ltdl_lib], - [AS_HELP_STRING([--with-ltdl-lib=DIR], - [use the libltdl.la installed in DIR])]) - -if test -n "$with_ltdl_lib"; then - if test -f "$with_ltdl_lib/libltdl.la"; then : - else - AC_MSG_ERROR([invalid ltdl library directory: `$with_ltdl_lib']) - fi -else - with_ltdl_lib=no -fi - -case ,$with_included_ltdl,$with_ltdl_include,$with_ltdl_lib, in - ,yes,no,no,) - m4_case(m4_default(_LTDL_TYPE, [convenience]), - [convenience], [_LTDL_CONVENIENCE], - [installable], [_LTDL_INSTALLABLE], - [m4_fatal([unknown libltdl build type: ]_LTDL_TYPE)]) - ;; - ,no,no,no,) - # If the included ltdl is not to be used, then use the - # preinstalled libltdl we found. - AC_DEFINE([HAVE_LTDL], [1], - [Define this if a modern libltdl is already installed]) - LIBLTDL=-lltdl - LTDLDEPS= - LTDLINCL= - ;; - ,no*,no,*) - AC_MSG_ERROR([`--with-ltdl-include' and `--with-ltdl-lib' options must be used together]) - ;; - *) with_included_ltdl=no - LIBLTDL="-L$with_ltdl_lib -lltdl" - LTDLDEPS= - LTDLINCL="-I$with_ltdl_include" - ;; -esac -INCLTDL="$LTDLINCL" - -# Report our decision... -AC_MSG_CHECKING([where to find libltdl headers]) -AC_MSG_RESULT([$LTDLINCL]) -AC_MSG_CHECKING([where to find libltdl library]) -AC_MSG_RESULT([$LIBLTDL]) - -_LTDL_SETUP - -dnl restore autoconf definition. -m4_popdef([AC_LIBOBJ]) -m4_popdef([AC_LIBSOURCES]) - -AC_CONFIG_COMMANDS_PRE([ - _ltdl_libobjs= - _ltdl_ltlibobjs= - if test -n "$_LT_LIBOBJS"; then - # Remove the extension. - _lt_sed_drop_objext='s/\.o$//;s/\.obj$//' - for i in `for i in $_LT_LIBOBJS; do echo "$i"; done | sed "$_lt_sed_drop_objext" | sort -u`; do - _ltdl_libobjs="$_ltdl_libobjs $lt_libobj_prefix$i.$ac_objext" - _ltdl_ltlibobjs="$_ltdl_ltlibobjs $lt_libobj_prefix$i.lo" - done - fi - AC_SUBST([ltdl_LIBOBJS], [$_ltdl_libobjs]) - AC_SUBST([ltdl_LTLIBOBJS], [$_ltdl_ltlibobjs]) -]) - -# Only expand once: -m4_define([LTDL_INIT]) -])# LTDL_INIT - -# Old names: -AU_DEFUN([AC_LIB_LTDL], [LTDL_INIT($@)]) -AU_DEFUN([AC_WITH_LTDL], [LTDL_INIT($@)]) -AU_DEFUN([LT_WITH_LTDL], [LTDL_INIT($@)]) -dnl aclocal-1.4 backwards compatibility: -dnl AC_DEFUN([AC_LIB_LTDL], []) -dnl AC_DEFUN([AC_WITH_LTDL], []) -dnl AC_DEFUN([LT_WITH_LTDL], []) - - -# _LTDL_SETUP -# ----------- -# Perform all the checks necessary for compilation of the ltdl objects -# -- including compiler checks and header checks. This is a public -# interface mainly for the benefit of libltdl's own configure.ac, most -# other users should call LTDL_INIT instead. -AC_DEFUN([_LTDL_SETUP], -[AC_REQUIRE([AC_PROG_CC])dnl -AC_REQUIRE([LT_SYS_MODULE_EXT])dnl -AC_REQUIRE([LT_SYS_MODULE_PATH])dnl -AC_REQUIRE([LT_SYS_DLSEARCH_PATH])dnl -AC_REQUIRE([LT_LIB_DLLOAD])dnl -AC_REQUIRE([LT_SYS_SYMBOL_USCORE])dnl -AC_REQUIRE([LT_FUNC_DLSYM_USCORE])dnl -AC_REQUIRE([LT_SYS_DLOPEN_DEPLIBS])dnl -AC_REQUIRE([gl_FUNC_ARGZ])dnl - -m4_require([_LT_CHECK_OBJDIR])dnl -m4_require([_LT_HEADER_DLFCN])dnl -m4_require([_LT_CHECK_DLPREOPEN])dnl -m4_require([_LT_DECL_SED])dnl - -dnl Don't require this, or it will be expanded earlier than the code -dnl that sets the variables it relies on: -_LT_ENABLE_INSTALL - -dnl _LTDL_MODE specific code must be called at least once: -_LTDL_MODE_DISPATCH - -# In order that ltdl.c can compile, find out the first AC_CONFIG_HEADERS -# the user used. This is so that ltdl.h can pick up the parent projects -# config.h file, The first file in AC_CONFIG_HEADERS must contain the -# definitions required by ltdl.c. -# FIXME: Remove use of undocumented AC_LIST_HEADERS (2.59 compatibility). -AC_CONFIG_COMMANDS_PRE([dnl -m4_pattern_allow([^LT_CONFIG_H$])dnl -m4_ifset([AH_HEADER], - [LT_CONFIG_H=AH_HEADER], - [m4_ifset([AC_LIST_HEADERS], - [LT_CONFIG_H=`echo "AC_LIST_HEADERS" | $SED 's,^[[ ]]*,,;s,[[ :]].*$,,'`], - [])])]) -AC_SUBST([LT_CONFIG_H]) - -AC_CHECK_HEADERS([unistd.h dl.h sys/dl.h dld.h mach-o/dyld.h dirent.h], - [], [], [AC_INCLUDES_DEFAULT]) - -AC_CHECK_FUNCS([closedir opendir readdir], [], [AC_LIBOBJ([lt__dirent])]) -AC_CHECK_FUNCS([strlcat strlcpy], [], [AC_LIBOBJ([lt__strl])]) - -AC_DEFINE_UNQUOTED([LT_LIBEXT],["$libext"],[The archive extension]) - -name=ltdl -LTDLOPEN=`eval "\\$ECHO \"$libname_spec\""` -AC_SUBST([LTDLOPEN]) -])# _LTDL_SETUP - - -# _LT_ENABLE_INSTALL -# ------------------ -m4_define([_LT_ENABLE_INSTALL], -[AC_ARG_ENABLE([ltdl-install], - [AS_HELP_STRING([--enable-ltdl-install], [install libltdl])]) - -case ,${enable_ltdl_install},${enable_ltdl_convenience} in - *yes*) ;; - *) enable_ltdl_convenience=yes ;; -esac - -m4_ifdef([AM_CONDITIONAL], -[AM_CONDITIONAL(INSTALL_LTDL, test x"${enable_ltdl_install-no}" != xno) - AM_CONDITIONAL(CONVENIENCE_LTDL, test x"${enable_ltdl_convenience-no}" != xno)]) -])# _LT_ENABLE_INSTALL - - -# LT_SYS_DLOPEN_DEPLIBS -# --------------------- -AC_DEFUN([LT_SYS_DLOPEN_DEPLIBS], -[AC_REQUIRE([AC_CANONICAL_HOST])dnl -AC_CACHE_CHECK([whether deplibs are loaded by dlopen], - [lt_cv_sys_dlopen_deplibs], - [# PORTME does your system automatically load deplibs for dlopen? - # or its logical equivalent (e.g. shl_load for HP-UX < 11) - # For now, we just catch OSes we know something about -- in the - # future, we'll try test this programmatically. - lt_cv_sys_dlopen_deplibs=unknown - case $host_os in - aix3*|aix4.1.*|aix4.2.*) - # Unknown whether this is true for these versions of AIX, but - # we want this `case' here to explicitly catch those versions. - lt_cv_sys_dlopen_deplibs=unknown - ;; - aix[[4-9]]*) - lt_cv_sys_dlopen_deplibs=yes - ;; - amigaos*) - case $host_cpu in - powerpc) - lt_cv_sys_dlopen_deplibs=no - ;; - esac - ;; - darwin*) - # Assuming the user has installed a libdl from somewhere, this is true - # If you are looking for one http://www.opendarwin.org/projects/dlcompat - lt_cv_sys_dlopen_deplibs=yes - ;; - freebsd* | dragonfly*) - lt_cv_sys_dlopen_deplibs=yes - ;; - gnu* | linux* | k*bsd*-gnu) - # GNU and its variants, using gnu ld.so (Glibc) - lt_cv_sys_dlopen_deplibs=yes - ;; - hpux10*|hpux11*) - lt_cv_sys_dlopen_deplibs=yes - ;; - interix*) - lt_cv_sys_dlopen_deplibs=yes - ;; - irix[[12345]]*|irix6.[[01]]*) - # Catch all versions of IRIX before 6.2, and indicate that we don't - # know how it worked for any of those versions. - lt_cv_sys_dlopen_deplibs=unknown - ;; - irix*) - # The case above catches anything before 6.2, and it's known that - # at 6.2 and later dlopen does load deplibs. - lt_cv_sys_dlopen_deplibs=yes - ;; - netbsd* | netbsdelf*-gnu) - lt_cv_sys_dlopen_deplibs=yes - ;; - openbsd*) - lt_cv_sys_dlopen_deplibs=yes - ;; - osf[[1234]]*) - # dlopen did load deplibs (at least at 4.x), but until the 5.x series, - # it did *not* use an RPATH in a shared library to find objects the - # library depends on, so we explicitly say `no'. - lt_cv_sys_dlopen_deplibs=no - ;; - osf5.0|osf5.0a|osf5.1) - # dlopen *does* load deplibs and with the right loader patch applied - # it even uses RPATH in a shared library to search for shared objects - # that the library depends on, but there's no easy way to know if that - # patch is installed. Since this is the case, all we can really - # say is unknown -- it depends on the patch being installed. If - # it is, this changes to `yes'. Without it, it would be `no'. - lt_cv_sys_dlopen_deplibs=unknown - ;; - osf*) - # the two cases above should catch all versions of osf <= 5.1. Read - # the comments above for what we know about them. - # At > 5.1, deplibs are loaded *and* any RPATH in a shared library - # is used to find them so we can finally say `yes'. - lt_cv_sys_dlopen_deplibs=yes - ;; - qnx*) - lt_cv_sys_dlopen_deplibs=yes - ;; - solaris*) - lt_cv_sys_dlopen_deplibs=yes - ;; - sysv5* | sco3.2v5* | sco5v6* | unixware* | OpenUNIX* | sysv4*uw2*) - libltdl_cv_sys_dlopen_deplibs=yes - ;; - esac - ]) -if test "$lt_cv_sys_dlopen_deplibs" != yes; then - AC_DEFINE([LTDL_DLOPEN_DEPLIBS], [1], - [Define if the OS needs help to load dependent libraries for dlopen().]) -fi -])# LT_SYS_DLOPEN_DEPLIBS - -# Old name: -AU_ALIAS([AC_LTDL_SYS_DLOPEN_DEPLIBS], [LT_SYS_DLOPEN_DEPLIBS]) -dnl aclocal-1.4 backwards compatibility: -dnl AC_DEFUN([AC_LTDL_SYS_DLOPEN_DEPLIBS], []) - - -# LT_SYS_MODULE_EXT -# ----------------- -AC_DEFUN([LT_SYS_MODULE_EXT], -[m4_require([_LT_SYS_DYNAMIC_LINKER])dnl -AC_CACHE_CHECK([which extension is used for runtime loadable modules], - [libltdl_cv_shlibext], -[ -module=yes -eval libltdl_cv_shlibext=$shrext_cmds - ]) -if test -n "$libltdl_cv_shlibext"; then - m4_pattern_allow([LT_MODULE_EXT])dnl - AC_DEFINE_UNQUOTED([LT_MODULE_EXT], ["$libltdl_cv_shlibext"], - [Define to the extension used for runtime loadable modules, say, ".so".]) -fi -])# LT_SYS_MODULE_EXT - -# Old name: -AU_ALIAS([AC_LTDL_SHLIBEXT], [LT_SYS_MODULE_EXT]) -dnl aclocal-1.4 backwards compatibility: -dnl AC_DEFUN([AC_LTDL_SHLIBEXT], []) - - -# LT_SYS_MODULE_PATH -# ------------------ -AC_DEFUN([LT_SYS_MODULE_PATH], -[m4_require([_LT_SYS_DYNAMIC_LINKER])dnl -AC_CACHE_CHECK([which variable specifies run-time module search path], - [lt_cv_module_path_var], [lt_cv_module_path_var="$shlibpath_var"]) -if test -n "$lt_cv_module_path_var"; then - m4_pattern_allow([LT_MODULE_PATH_VAR])dnl - AC_DEFINE_UNQUOTED([LT_MODULE_PATH_VAR], ["$lt_cv_module_path_var"], - [Define to the name of the environment variable that determines the run-time module search path.]) -fi -])# LT_SYS_MODULE_PATH - -# Old name: -AU_ALIAS([AC_LTDL_SHLIBPATH], [LT_SYS_MODULE_PATH]) -dnl aclocal-1.4 backwards compatibility: -dnl AC_DEFUN([AC_LTDL_SHLIBPATH], []) - - -# LT_SYS_DLSEARCH_PATH -# -------------------- -AC_DEFUN([LT_SYS_DLSEARCH_PATH], -[m4_require([_LT_SYS_DYNAMIC_LINKER])dnl -AC_CACHE_CHECK([for the default library search path], - [lt_cv_sys_dlsearch_path], - [lt_cv_sys_dlsearch_path="$sys_lib_dlsearch_path_spec"]) -if test -n "$lt_cv_sys_dlsearch_path"; then - sys_dlsearch_path= - for dir in $lt_cv_sys_dlsearch_path; do - if test -z "$sys_dlsearch_path"; then - sys_dlsearch_path="$dir" - else - sys_dlsearch_path="$sys_dlsearch_path$PATH_SEPARATOR$dir" - fi - done - m4_pattern_allow([LT_DLSEARCH_PATH])dnl - AC_DEFINE_UNQUOTED([LT_DLSEARCH_PATH], ["$sys_dlsearch_path"], - [Define to the system default library search path.]) -fi -])# LT_SYS_DLSEARCH_PATH - -# Old name: -AU_ALIAS([AC_LTDL_SYSSEARCHPATH], [LT_SYS_DLSEARCH_PATH]) -dnl aclocal-1.4 backwards compatibility: -dnl AC_DEFUN([AC_LTDL_SYSSEARCHPATH], []) - - -# _LT_CHECK_DLPREOPEN -# ------------------- -m4_defun([_LT_CHECK_DLPREOPEN], -[m4_require([_LT_CMD_GLOBAL_SYMBOLS])dnl -AC_CACHE_CHECK([whether libtool supports -dlopen/-dlpreopen], - [libltdl_cv_preloaded_symbols], - [if test -n "$lt_cv_sys_global_symbol_pipe"; then - libltdl_cv_preloaded_symbols=yes - else - libltdl_cv_preloaded_symbols=no - fi - ]) -if test x"$libltdl_cv_preloaded_symbols" = xyes; then - AC_DEFINE([HAVE_PRELOADED_SYMBOLS], [1], - [Define if libtool can extract symbol lists from object files.]) -fi -])# _LT_CHECK_DLPREOPEN - - -# LT_LIB_DLLOAD -# ------------- -AC_DEFUN([LT_LIB_DLLOAD], -[m4_pattern_allow([^LT_DLLOADERS$]) -LT_DLLOADERS= -AC_SUBST([LT_DLLOADERS]) - -AC_LANG_PUSH([C]) - -LIBADD_DLOPEN= -AC_SEARCH_LIBS([dlopen], [dl], - [AC_DEFINE([HAVE_LIBDL], [1], - [Define if you have the libdl library or equivalent.]) - if test "$ac_cv_search_dlopen" != "none required" ; then - LIBADD_DLOPEN="-ldl" - fi - libltdl_cv_lib_dl_dlopen="yes" - LT_DLLOADERS="$LT_DLLOADERS ${lt_dlopen_dir+$lt_dlopen_dir/}dlopen.la"], - [AC_LINK_IFELSE([AC_LANG_PROGRAM([[#if HAVE_DLFCN_H -# include -#endif - ]], [[dlopen(0, 0);]])], - [AC_DEFINE([HAVE_LIBDL], [1], - [Define if you have the libdl library or equivalent.]) - libltdl_cv_func_dlopen="yes" - LT_DLLOADERS="$LT_DLLOADERS ${lt_dlopen_dir+$lt_dlopen_dir/}dlopen.la"], - [AC_CHECK_LIB([svld], [dlopen], - [AC_DEFINE([HAVE_LIBDL], [1], - [Define if you have the libdl library or equivalent.]) - LIBADD_DLOPEN="-lsvld" libltdl_cv_func_dlopen="yes" - LT_DLLOADERS="$LT_DLLOADERS ${lt_dlopen_dir+$lt_dlopen_dir/}dlopen.la"])])]) -if test x"$libltdl_cv_func_dlopen" = xyes || test x"$libltdl_cv_lib_dl_dlopen" = xyes -then - lt_save_LIBS="$LIBS" - LIBS="$LIBS $LIBADD_DLOPEN" - AC_CHECK_FUNCS([dlerror]) - LIBS="$lt_save_LIBS" -fi -AC_SUBST([LIBADD_DLOPEN]) - -LIBADD_SHL_LOAD= -AC_CHECK_FUNC([shl_load], - [AC_DEFINE([HAVE_SHL_LOAD], [1], - [Define if you have the shl_load function.]) - LT_DLLOADERS="$LT_DLLOADERS ${lt_dlopen_dir+$lt_dlopen_dir/}shl_load.la"], - [AC_CHECK_LIB([dld], [shl_load], - [AC_DEFINE([HAVE_SHL_LOAD], [1], - [Define if you have the shl_load function.]) - LT_DLLOADERS="$LT_DLLOADERS ${lt_dlopen_dir+$lt_dlopen_dir/}shl_load.la" - LIBADD_SHL_LOAD="-ldld"])]) -AC_SUBST([LIBADD_SHL_LOAD]) - -case $host_os in -darwin[[1567]].*) -# We only want this for pre-Mac OS X 10.4. - AC_CHECK_FUNC([_dyld_func_lookup], - [AC_DEFINE([HAVE_DYLD], [1], - [Define if you have the _dyld_func_lookup function.]) - LT_DLLOADERS="$LT_DLLOADERS ${lt_dlopen_dir+$lt_dlopen_dir/}dyld.la"]) - ;; -beos*) - LT_DLLOADERS="$LT_DLLOADERS ${lt_dlopen_dir+$lt_dlopen_dir/}load_add_on.la" - ;; -cygwin* | mingw* | os2* | pw32*) - AC_CHECK_DECLS([cygwin_conv_path], [], [], [[#include ]]) - LT_DLLOADERS="$LT_DLLOADERS ${lt_dlopen_dir+$lt_dlopen_dir/}loadlibrary.la" - ;; -esac - -AC_CHECK_LIB([dld], [dld_link], - [AC_DEFINE([HAVE_DLD], [1], - [Define if you have the GNU dld library.]) - LT_DLLOADERS="$LT_DLLOADERS ${lt_dlopen_dir+$lt_dlopen_dir/}dld_link.la"]) -AC_SUBST([LIBADD_DLD_LINK]) - -m4_pattern_allow([^LT_DLPREOPEN$]) -LT_DLPREOPEN= -if test -n "$LT_DLLOADERS" -then - for lt_loader in $LT_DLLOADERS; do - LT_DLPREOPEN="$LT_DLPREOPEN-dlpreopen $lt_loader " - done - AC_DEFINE([HAVE_LIBDLLOADER], [1], - [Define if libdlloader will be built on this platform]) -fi -AC_SUBST([LT_DLPREOPEN]) - -dnl This isn't used anymore, but set it for backwards compatibility -LIBADD_DL="$LIBADD_DLOPEN $LIBADD_SHL_LOAD" -AC_SUBST([LIBADD_DL]) - -AC_LANG_POP -])# LT_LIB_DLLOAD - -# Old name: -AU_ALIAS([AC_LTDL_DLLIB], [LT_LIB_DLLOAD]) -dnl aclocal-1.4 backwards compatibility: -dnl AC_DEFUN([AC_LTDL_DLLIB], []) - - -# LT_SYS_SYMBOL_USCORE -# -------------------- -# does the compiler prefix global symbols with an underscore? -AC_DEFUN([LT_SYS_SYMBOL_USCORE], -[m4_require([_LT_CMD_GLOBAL_SYMBOLS])dnl -AC_CACHE_CHECK([for _ prefix in compiled symbols], - [lt_cv_sys_symbol_underscore], - [lt_cv_sys_symbol_underscore=no - cat > conftest.$ac_ext <<_LT_EOF -void nm_test_func(){} -int main(){nm_test_func;return 0;} -_LT_EOF - if AC_TRY_EVAL(ac_compile); then - # Now try to grab the symbols. - ac_nlist=conftest.nm - if AC_TRY_EVAL(NM conftest.$ac_objext \| $lt_cv_sys_global_symbol_pipe \> $ac_nlist) && test -s "$ac_nlist"; then - # See whether the symbols have a leading underscore. - if grep '^. _nm_test_func' "$ac_nlist" >/dev/null; then - lt_cv_sys_symbol_underscore=yes - else - if grep '^. nm_test_func ' "$ac_nlist" >/dev/null; then - : - else - echo "configure: cannot find nm_test_func in $ac_nlist" >&AS_MESSAGE_LOG_FD - fi - fi - else - echo "configure: cannot run $lt_cv_sys_global_symbol_pipe" >&AS_MESSAGE_LOG_FD - fi - else - echo "configure: failed program was:" >&AS_MESSAGE_LOG_FD - cat conftest.c >&AS_MESSAGE_LOG_FD - fi - rm -rf conftest* - ]) - sys_symbol_underscore=$lt_cv_sys_symbol_underscore - AC_SUBST([sys_symbol_underscore]) -])# LT_SYS_SYMBOL_USCORE - -# Old name: -AU_ALIAS([AC_LTDL_SYMBOL_USCORE], [LT_SYS_SYMBOL_USCORE]) -dnl aclocal-1.4 backwards compatibility: -dnl AC_DEFUN([AC_LTDL_SYMBOL_USCORE], []) - - -# LT_FUNC_DLSYM_USCORE -# -------------------- -AC_DEFUN([LT_FUNC_DLSYM_USCORE], -[AC_REQUIRE([LT_SYS_SYMBOL_USCORE])dnl -if test x"$lt_cv_sys_symbol_underscore" = xyes; then - if test x"$libltdl_cv_func_dlopen" = xyes || - test x"$libltdl_cv_lib_dl_dlopen" = xyes ; then - AC_CACHE_CHECK([whether we have to add an underscore for dlsym], - [libltdl_cv_need_uscore], - [libltdl_cv_need_uscore=unknown - save_LIBS="$LIBS" - LIBS="$LIBS $LIBADD_DLOPEN" - _LT_TRY_DLOPEN_SELF( - [libltdl_cv_need_uscore=no], [libltdl_cv_need_uscore=yes], - [], [libltdl_cv_need_uscore=cross]) - LIBS="$save_LIBS" - ]) - fi -fi - -if test x"$libltdl_cv_need_uscore" = xyes; then - AC_DEFINE([NEED_USCORE], [1], - [Define if dlsym() requires a leading underscore in symbol names.]) -fi -])# LT_FUNC_DLSYM_USCORE - -# Old name: -AU_ALIAS([AC_LTDL_DLSYM_USCORE], [LT_FUNC_DLSYM_USCORE]) -dnl aclocal-1.4 backwards compatibility: -dnl AC_DEFUN([AC_LTDL_DLSYM_USCORE], []) - # Helper functions for option handling. -*- Autoconf -*- # # Copyright (C) 2004, 2005, 2007, 2008 Free Software Foundation, Inc. @@ -8683,15 +7879,15 @@ # Generated from ltversion.in. -# serial 3012 ltversion.m4 +# serial 3017 ltversion.m4 # This file is part of GNU Libtool -m4_define([LT_PACKAGE_VERSION], [2.2.6]) -m4_define([LT_PACKAGE_REVISION], [1.3012]) +m4_define([LT_PACKAGE_VERSION], [2.2.6b]) +m4_define([LT_PACKAGE_REVISION], [1.3017]) AC_DEFUN([LTVERSION_VERSION], -[macro_version='2.2.6' -macro_revision='1.3012' +[macro_version='2.2.6b' +macro_revision='1.3017' _LT_DECL(, macro_version, 0, [Which release of libtool.m4 was used?]) _LT_DECL(, macro_revision, 0) ]) @@ -8801,10 +7997,10 @@ # generated from the m4 files accompanying Automake X.Y. # (This private macro should not be called outside this file.) AC_DEFUN([AM_AUTOMAKE_VERSION], -[am__api_version='1.10' +[am__api_version='1.11' dnl Some users find AM_AUTOMAKE_VERSION and mistake it for a way to dnl require some minimum version. Point them to the right macro. -m4_if([$1], [1.10.2], [], +m4_if([$1], [1.11.1], [], [AC_FATAL([Do not call $0, use AM_INIT_AUTOMAKE([$1]).])])dnl ]) @@ -8820,7 +8016,7 @@ # Call AM_AUTOMAKE_VERSION and AM_AUTOMAKE_VERSION so they can be traced. # This function is AC_REQUIREd by AM_INIT_AUTOMAKE. AC_DEFUN([AM_SET_CURRENT_AUTOMAKE_VERSION], -[AM_AUTOMAKE_VERSION([1.10.2])dnl +[AM_AUTOMAKE_VERSION([1.11.1])dnl m4_ifndef([AC_AUTOCONF_VERSION], [m4_copy([m4_PACKAGE_VERSION], [AC_AUTOCONF_VERSION])])dnl _AM_AUTOCONF_VERSION(m4_defn([AC_AUTOCONF_VERSION]))]) @@ -8903,14 +8099,14 @@ # AM_CONDITIONAL -*- Autoconf -*- -# Copyright (C) 1997, 2000, 2001, 2003, 2004, 2005, 2006 +# Copyright (C) 1997, 2000, 2001, 2003, 2004, 2005, 2006, 2008 # Free Software Foundation, Inc. # # This file is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. -# serial 8 +# serial 9 # AM_CONDITIONAL(NAME, SHELL-CONDITION) # ------------------------------------- @@ -8923,6 +8119,7 @@ AC_SUBST([$1_FALSE])dnl _AM_SUBST_NOTMAKE([$1_TRUE])dnl _AM_SUBST_NOTMAKE([$1_FALSE])dnl +m4_define([_AM_COND_VALUE_$1], [$2])dnl if $2; then $1_TRUE= $1_FALSE='#' @@ -8936,14 +8133,14 @@ Usually this means the macro was only invoked conditionally.]]) fi])]) -# Copyright (C) 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2006 +# Copyright (C) 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2009 # Free Software Foundation, Inc. # # This file is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. -# serial 9 +# serial 10 # There are a few dirty hacks below to avoid letting `AC_PROG_CC' be # written in clear, in which case automake, when reading aclocal.m4, @@ -9000,6 +8197,16 @@ if test "$am_compiler_list" = ""; then am_compiler_list=`sed -n ['s/^#*\([a-zA-Z0-9]*\))$/\1/p'] < ./depcomp` fi + am__universal=false + m4_case([$1], [CC], + [case " $depcc " in #( + *\ -arch\ *\ -arch\ *) am__universal=true ;; + esac], + [CXX], + [case " $depcc " in #( + *\ -arch\ *\ -arch\ *) am__universal=true ;; + esac]) + for depmode in $am_compiler_list; do # Setup a source with many dependencies, because some compilers # like to wrap large dependency lists on column 80 (with \), and @@ -9017,7 +8224,17 @@ done echo "${am__include} ${am__quote}sub/conftest.Po${am__quote}" > confmf + # We check with `-c' and `-o' for the sake of the "dashmstdout" + # mode. It turns out that the SunPro C++ compiler does not properly + # handle `-M -o', and we need to detect this. Also, some Intel + # versions had trouble with output in subdirs + am__obj=sub/conftest.${OBJEXT-o} + am__minus_obj="-o $am__obj" case $depmode in + gcc) + # This depmode causes a compiler race in universal mode. + test "$am__universal" = false || continue + ;; nosideeffect) # after this tag, mechanisms are not by side-effect, so they'll # only be used when explicitly requested @@ -9027,19 +8244,23 @@ break fi ;; + msvisualcpp | msvcmsys) + # This compiler won't grok `-c -o', but also, the minuso test has + # not run yet. These depmodes are late enough in the game, and + # so weak that their functioning should not be impacted. + am__obj=conftest.${OBJEXT-o} + am__minus_obj= + ;; none) break ;; esac - # We check with `-c' and `-o' for the sake of the "dashmstdout" - # mode. It turns out that the SunPro C++ compiler does not properly - # handle `-M -o', and we need to detect this. if depmode=$depmode \ - source=sub/conftest.c object=sub/conftest.${OBJEXT-o} \ + source=sub/conftest.c object=$am__obj \ depfile=sub/conftest.Po tmpdepfile=sub/conftest.TPo \ - $SHELL ./depcomp $depcc -c -o sub/conftest.${OBJEXT-o} sub/conftest.c \ + $SHELL ./depcomp $depcc -c $am__minus_obj sub/conftest.c \ >/dev/null 2>conftest.err && grep sub/conftst1.h sub/conftest.Po > /dev/null 2>&1 && grep sub/conftst6.h sub/conftest.Po > /dev/null 2>&1 && - grep sub/conftest.${OBJEXT-o} sub/conftest.Po > /dev/null 2>&1 && + grep $am__obj sub/conftest.Po > /dev/null 2>&1 && ${MAKE-make} -s -f confmf > /dev/null 2>&1; then # icc doesn't choke on unknown options, it will just issue warnings # or remarks (even with -Werror). So we grep stderr for any message @@ -9103,59 +8324,61 @@ # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. -#serial 4 +#serial 5 # _AM_OUTPUT_DEPENDENCY_COMMANDS # ------------------------------ AC_DEFUN([_AM_OUTPUT_DEPENDENCY_COMMANDS], -[# Autoconf 2.62 quotes --file arguments for eval, but not when files -# are listed without --file. Let's play safe and only enable the eval -# if we detect the quoting. -case $CONFIG_FILES in -*\'*) eval set x "$CONFIG_FILES" ;; -*) set x $CONFIG_FILES ;; -esac -shift -for mf -do - # Strip MF so we end up with the name of the file. - mf=`echo "$mf" | sed -e 's/:.*$//'` - # Check whether this is an Automake generated Makefile or not. - # We used to match only the files named `Makefile.in', but - # some people rename them; so instead we look at the file content. - # Grep'ing the first line is not enough: some people post-process - # each Makefile.in and add a new line on top of each file to say so. - # Grep'ing the whole file is not good either: AIX grep has a line - # limit of 2048, but all sed's we know have understand at least 4000. - if sed -n 's,^#.*generated by automake.*,X,p' "$mf" | grep X >/dev/null 2>&1; then - dirpart=`AS_DIRNAME("$mf")` - else - continue - fi - # Extract the definition of DEPDIR, am__include, and am__quote - # from the Makefile without running `make'. - DEPDIR=`sed -n 's/^DEPDIR = //p' < "$mf"` - test -z "$DEPDIR" && continue - am__include=`sed -n 's/^am__include = //p' < "$mf"` - test -z "am__include" && continue - am__quote=`sed -n 's/^am__quote = //p' < "$mf"` - # When using ansi2knr, U may be empty or an underscore; expand it - U=`sed -n 's/^U = //p' < "$mf"` - # Find all dependency output files, they are included files with - # $(DEPDIR) in their names. We invoke sed twice because it is the - # simplest approach to changing $(DEPDIR) to its actual value in the - # expansion. - for file in `sed -n " - s/^$am__include $am__quote\(.*(DEPDIR).*\)$am__quote"'$/\1/p' <"$mf" | \ - sed -e 's/\$(DEPDIR)/'"$DEPDIR"'/g' -e 's/\$U/'"$U"'/g'`; do - # Make sure the directory exists. - test -f "$dirpart/$file" && continue - fdir=`AS_DIRNAME(["$file"])` - AS_MKDIR_P([$dirpart/$fdir]) - # echo "creating $dirpart/$file" - echo '# dummy' > "$dirpart/$file" +[{ + # Autoconf 2.62 quotes --file arguments for eval, but not when files + # are listed without --file. Let's play safe and only enable the eval + # if we detect the quoting. + case $CONFIG_FILES in + *\'*) eval set x "$CONFIG_FILES" ;; + *) set x $CONFIG_FILES ;; + esac + shift + for mf + do + # Strip MF so we end up with the name of the file. + mf=`echo "$mf" | sed -e 's/:.*$//'` + # Check whether this is an Automake generated Makefile or not. + # We used to match only the files named `Makefile.in', but + # some people rename them; so instead we look at the file content. + # Grep'ing the first line is not enough: some people post-process + # each Makefile.in and add a new line on top of each file to say so. + # Grep'ing the whole file is not good either: AIX grep has a line + # limit of 2048, but all sed's we know have understand at least 4000. + if sed -n 's,^#.*generated by automake.*,X,p' "$mf" | grep X >/dev/null 2>&1; then + dirpart=`AS_DIRNAME("$mf")` + else + continue + fi + # Extract the definition of DEPDIR, am__include, and am__quote + # from the Makefile without running `make'. + DEPDIR=`sed -n 's/^DEPDIR = //p' < "$mf"` + test -z "$DEPDIR" && continue + am__include=`sed -n 's/^am__include = //p' < "$mf"` + test -z "am__include" && continue + am__quote=`sed -n 's/^am__quote = //p' < "$mf"` + # When using ansi2knr, U may be empty or an underscore; expand it + U=`sed -n 's/^U = //p' < "$mf"` + # Find all dependency output files, they are included files with + # $(DEPDIR) in their names. We invoke sed twice because it is the + # simplest approach to changing $(DEPDIR) to its actual value in the + # expansion. + for file in `sed -n " + s/^$am__include $am__quote\(.*(DEPDIR).*\)$am__quote"'$/\1/p' <"$mf" | \ + sed -e 's/\$(DEPDIR)/'"$DEPDIR"'/g' -e 's/\$U/'"$U"'/g'`; do + # Make sure the directory exists. + test -f "$dirpart/$file" && continue + fdir=`AS_DIRNAME(["$file"])` + AS_MKDIR_P([$dirpart/$fdir]) + # echo "creating $dirpart/$file" + echo '# dummy' > "$dirpart/$file" + done done -done +} ])# _AM_OUTPUT_DEPENDENCY_COMMANDS @@ -9187,13 +8410,13 @@ # Do all the work for Automake. -*- Autoconf -*- # Copyright (C) 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004, -# 2005, 2006, 2008 Free Software Foundation, Inc. +# 2005, 2006, 2008, 2009 Free Software Foundation, Inc. # # This file is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. -# serial 13 +# serial 16 # This macro actually does too much. Some checks are only needed if # your package does certain things. But this isn't really a big deal. @@ -9210,7 +8433,7 @@ # arguments mandatory, and then we can depend on a new Autoconf # release and drop the old call support. AC_DEFUN([AM_INIT_AUTOMAKE], -[AC_PREREQ([2.60])dnl +[AC_PREREQ([2.62])dnl dnl Autoconf wants to disallow AM_ names. We explicitly allow dnl the ones we care about. m4_pattern_allow([^AM_[A-Z]+FLAGS$])dnl @@ -9261,8 +8484,8 @@ AM_MISSING_PROG(AUTOMAKE, automake-${am__api_version}) AM_MISSING_PROG(AUTOHEADER, autoheader) AM_MISSING_PROG(MAKEINFO, makeinfo) -AM_PROG_INSTALL_SH -AM_PROG_INSTALL_STRIP +AC_REQUIRE([AM_PROG_INSTALL_SH])dnl +AC_REQUIRE([AM_PROG_INSTALL_STRIP])dnl AC_REQUIRE([AM_PROG_MKDIR_P])dnl # We need awk for the "check" target. The system "awk" is bad on # some platforms. @@ -9270,23 +8493,36 @@ AC_REQUIRE([AC_PROG_MAKE_SET])dnl AC_REQUIRE([AM_SET_LEADING_DOT])dnl _AM_IF_OPTION([tar-ustar], [_AM_PROG_TAR([ustar])], - [_AM_IF_OPTION([tar-pax], [_AM_PROG_TAR([pax])], - [_AM_PROG_TAR([v7])])]) + [_AM_IF_OPTION([tar-pax], [_AM_PROG_TAR([pax])], + [_AM_PROG_TAR([v7])])]) _AM_IF_OPTION([no-dependencies],, [AC_PROVIDE_IFELSE([AC_PROG_CC], - [_AM_DEPENDENCIES(CC)], - [define([AC_PROG_CC], - defn([AC_PROG_CC])[_AM_DEPENDENCIES(CC)])])dnl + [_AM_DEPENDENCIES(CC)], + [define([AC_PROG_CC], + defn([AC_PROG_CC])[_AM_DEPENDENCIES(CC)])])dnl AC_PROVIDE_IFELSE([AC_PROG_CXX], - [_AM_DEPENDENCIES(CXX)], - [define([AC_PROG_CXX], - defn([AC_PROG_CXX])[_AM_DEPENDENCIES(CXX)])])dnl + [_AM_DEPENDENCIES(CXX)], + [define([AC_PROG_CXX], + defn([AC_PROG_CXX])[_AM_DEPENDENCIES(CXX)])])dnl AC_PROVIDE_IFELSE([AC_PROG_OBJC], - [_AM_DEPENDENCIES(OBJC)], - [define([AC_PROG_OBJC], - defn([AC_PROG_OBJC])[_AM_DEPENDENCIES(OBJC)])])dnl -]) -]) + [_AM_DEPENDENCIES(OBJC)], + [define([AC_PROG_OBJC], + defn([AC_PROG_OBJC])[_AM_DEPENDENCIES(OBJC)])])dnl +]) +_AM_IF_OPTION([silent-rules], [AC_REQUIRE([AM_SILENT_RULES])])dnl +dnl The `parallel-tests' driver may need to know about EXEEXT, so add the +dnl `am__EXEEXT' conditional if _AM_COMPILER_EXEEXT was seen. This macro +dnl is hooked onto _AC_COMPILER_EXEEXT early, see below. +AC_CONFIG_COMMANDS_PRE(dnl +[m4_provide_if([_AM_COMPILER_EXEEXT], + [AM_CONDITIONAL([am__EXEEXT], [test -n "$EXEEXT"])])])dnl +]) + +dnl Hook into `_AC_COMPILER_EXEEXT' early to learn its expansion. Do not +dnl add the conditional right here, as _AC_COMPILER_EXEEXT may be further +dnl mangled by Autoconf and run in a shell conditional statement. +m4_define([_AC_COMPILER_EXEEXT], +m4_defn([_AC_COMPILER_EXEEXT])[m4_provide([_AM_COMPILER_EXEEXT])]) # When config.status generates a header, we must update the stamp-h file. @@ -9310,7 +8546,7 @@ done echo "timestamp for $_am_arg" >`AS_DIRNAME(["$_am_arg"])`/stamp-h[]$_am_stamp_count]) -# Copyright (C) 2001, 2003, 2005 Free Software Foundation, Inc. +# Copyright (C) 2001, 2003, 2005, 2008 Free Software Foundation, Inc. # # This file is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, @@ -9321,7 +8557,14 @@ # Define $install_sh. AC_DEFUN([AM_PROG_INSTALL_SH], [AC_REQUIRE([AM_AUX_DIR_EXPAND])dnl -install_sh=${install_sh-"\$(SHELL) $am_aux_dir/install-sh"} +if test x"${install_sh}" != xset; then + case $am_aux_dir in + *\ * | *\ *) + install_sh="\${SHELL} '$am_aux_dir/install-sh'" ;; + *) + install_sh="\${SHELL} $am_aux_dir/install-sh" + esac +fi AC_SUBST(install_sh)]) # Copyright (C) 2003, 2005 Free Software Foundation, Inc. @@ -9347,13 +8590,13 @@ # Check to see how 'make' treats includes. -*- Autoconf -*- -# Copyright (C) 2001, 2002, 2003, 2005 Free Software Foundation, Inc. +# Copyright (C) 2001, 2002, 2003, 2005, 2009 Free Software Foundation, Inc. # # This file is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. -# serial 3 +# serial 4 # AM_MAKE_INCLUDE() # ----------------- @@ -9362,7 +8605,7 @@ [am_make=${MAKE-make} cat > confinc << 'END' am__doit: - @echo done + @echo this is the am__doit target .PHONY: am__doit END # If we don't find an include directive, just comment out the code. @@ -9372,24 +8615,24 @@ _am_result=none # First try GNU make style include. echo "include confinc" > confmf -# We grep out `Entering directory' and `Leaving directory' -# messages which can occur if `w' ends up in MAKEFLAGS. -# In particular we don't look at `^make:' because GNU make might -# be invoked under some other name (usually "gmake"), in which -# case it prints its new name instead of `make'. -if test "`$am_make -s -f confmf 2> /dev/null | grep -v 'ing directory'`" = "done"; then - am__include=include - am__quote= - _am_result=GNU -fi +# Ignore all kinds of additional output from `make'. +case `$am_make -s -f confmf 2> /dev/null` in #( +*the\ am__doit\ target*) + am__include=include + am__quote= + _am_result=GNU + ;; +esac # Now try BSD make style include. if test "$am__include" = "#"; then echo '.include "confinc"' > confmf - if test "`$am_make -s -f confmf 2> /dev/null`" = "done"; then - am__include=.include - am__quote="\"" - _am_result=BSD - fi + case `$am_make -s -f confmf 2> /dev/null` in #( + *the\ am__doit\ target*) + am__include=.include + am__quote="\"" + _am_result=BSD + ;; + esac fi AC_SUBST([am__include]) AC_SUBST([am__quote]) @@ -9434,14 +8677,14 @@ # Fake the existence of programs that GNU maintainers use. -*- Autoconf -*- -# Copyright (C) 1997, 1999, 2000, 2001, 2003, 2004, 2005 +# Copyright (C) 1997, 1999, 2000, 2001, 2003, 2004, 2005, 2008 # Free Software Foundation, Inc. # # This file is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. -# serial 5 +# serial 6 # AM_MISSING_PROG(NAME, PROGRAM) # ------------------------------ @@ -9458,7 +8701,14 @@ AC_DEFUN([AM_MISSING_HAS_RUN], [AC_REQUIRE([AM_AUX_DIR_EXPAND])dnl AC_REQUIRE_AUX_FILE([missing])dnl -test x"${MISSING+set}" = xset || MISSING="\${SHELL} $am_aux_dir/missing" +if test x"${MISSING+set}" != xset; then + case $am_aux_dir in + *\ * | *\ *) + MISSING="\${SHELL} \"$am_aux_dir/missing\"" ;; + *) + MISSING="\${SHELL} $am_aux_dir/missing" ;; + esac +fi # Use eval to expand $SHELL if eval "$MISSING --run true"; then am_missing_run="$MISSING --run " @@ -9529,14 +8779,14 @@ # Check to make sure that the build environment is sane. -*- Autoconf -*- -# Copyright (C) 1996, 1997, 2000, 2001, 2003, 2005 +# Copyright (C) 1996, 1997, 2000, 2001, 2003, 2005, 2008 # Free Software Foundation, Inc. # # This file is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. -# serial 4 +# serial 5 # AM_SANITY_CHECK # --------------- @@ -9545,16 +8795,29 @@ # Just in case sleep 1 echo timestamp > conftest.file +# Reject unsafe characters in $srcdir or the absolute working directory +# name. Accept space and tab only in the latter. +am_lf=' +' +case `pwd` in + *[[\\\"\#\$\&\'\`$am_lf]]*) + AC_MSG_ERROR([unsafe absolute working directory name]);; +esac +case $srcdir in + *[[\\\"\#\$\&\'\`$am_lf\ \ ]]*) + AC_MSG_ERROR([unsafe srcdir value: `$srcdir']);; +esac + # Do `set' in a subshell so we don't clobber the current shell's # arguments. Must try -L first in case configure is actually a # symlink; some systems play weird games with the mod time of symlinks # (eg FreeBSD returns the mod time of the symlink's containing # directory). if ( - set X `ls -Lt $srcdir/configure conftest.file 2> /dev/null` + set X `ls -Lt "$srcdir/configure" conftest.file 2> /dev/null` if test "$[*]" = "X"; then # -L didn't work. - set X `ls -t $srcdir/configure conftest.file` + set X `ls -t "$srcdir/configure" conftest.file` fi rm -f conftest.file if test "$[*]" != "X $srcdir/configure conftest.file" \ @@ -9607,18 +8870,25 @@ INSTALL_STRIP_PROGRAM="\$(install_sh) -c -s" AC_SUBST([INSTALL_STRIP_PROGRAM])]) -# Copyright (C) 2006 Free Software Foundation, Inc. +# Copyright (C) 2006, 2008 Free Software Foundation, Inc. # # This file is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. +# serial 2 + # _AM_SUBST_NOTMAKE(VARIABLE) # --------------------------- # Prevent Automake from outputting VARIABLE = @VARIABLE@ in Makefile.in. # This macro is traced by Automake. AC_DEFUN([_AM_SUBST_NOTMAKE]) +# AM_SUBST_NOTMAKE(VARIABLE) +# --------------------------- +# Public sister of _AM_SUBST_NOTMAKE. +AC_DEFUN([AM_SUBST_NOTMAKE], [_AM_SUBST_NOTMAKE($@)]) + # Check how to create a tarball. -*- Autoconf -*- # Copyright (C) 2004, 2005 Free Software Foundation, Inc. Index: dvbstreamer-2~svn777/trunk/config.sub =================================================================== --- dvbstreamer-2~svn777.orig/trunk/config.sub 2010-05-09 17:43:28.000000000 +0200 +++ dvbstreamer-2~svn777/trunk/config.sub 2010-05-09 17:44:04.000000000 +0200 @@ -1,10 +1,10 @@ #! /bin/sh # Configuration validation subroutine script. # Copyright (C) 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999, -# 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009 +# 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010 # Free Software Foundation, Inc. -timestamp='2009-06-11' +timestamp='2010-01-22' # This file is (in principle) common to ALL GNU software. # The presence of a machine in this file suggests that SOME GNU software @@ -32,13 +32,16 @@ # Please send patches to . Submit a context -# diff and a properly formatted ChangeLog entry. +# diff and a properly formatted GNU ChangeLog entry. # # Configuration subroutine to validate and canonicalize a configuration type. # Supply the specified configuration type as an argument. # If it is invalid, we print an error message on stderr and exit with code 1. # Otherwise, we print the canonical config type on stdout and succeed. +# You can get the latest version of this script from: +# http://git.savannah.gnu.org/gitweb/?p=config.git;a=blob_plain;f=config.sub;hb=HEAD + # This file is supposed to be the same for all GNU packages # and recognize all the CPU types, system types and aliases # that are meaningful with *any* GNU software. @@ -72,8 +75,9 @@ version="\ GNU config.sub ($timestamp) -Copyright (C) 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, -2002, 2003, 2004, 2005, 2006, 2007, 2008 Free Software Foundation, Inc. +Copyright (C) 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999, 2000, +2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010 Free +Software Foundation, Inc. This is free software; see the source for copying conditions. There is NO warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE." @@ -149,7 +153,7 @@ -convergent* | -ncr* | -news | -32* | -3600* | -3100* | -hitachi* |\ -c[123]* | -convex* | -sun | -crds | -omron* | -dg | -ultra | -tti* | \ -harris | -dolphin | -highlevel | -gould | -cbm | -ns | -masscomp | \ - -apple | -axis | -knuth | -cray) + -apple | -axis | -knuth | -cray | -microblaze) os= basic_machine=$1 ;; @@ -284,6 +288,7 @@ | pdp10 | pdp11 | pj | pjl \ | powerpc | powerpc64 | powerpc64le | powerpcle | ppcbe \ | pyramid \ + | rx \ | score \ | sh | sh[1234] | sh[24]a | sh[24]aeb | sh[23]e | sh[34]eb | sheb | shbe | shle | sh[1234]le | sh3ele \ | sh64 | sh64le \ @@ -291,13 +296,14 @@ | sparcv8 | sparcv9 | sparcv9b | sparcv9v \ | spu | strongarm \ | tahoe | thumb | tic4x | tic80 | tron \ + | ubicom32 \ | v850 | v850e \ | we32k \ | x86 | xc16x | xscale | xscalee[bl] | xstormy16 | xtensa \ | z8k | z80) basic_machine=$basic_machine-unknown ;; - m6811 | m68hc11 | m6812 | m68hc12) + m6811 | m68hc11 | m6812 | m68hc12 | picochip) # Motorola 68HC11/12. basic_machine=$basic_machine-unknown os=-none @@ -340,7 +346,7 @@ | lm32-* \ | m32c-* | m32r-* | m32rle-* \ | m68000-* | m680[012346]0-* | m68360-* | m683?2-* | m68k-* \ - | m88110-* | m88k-* | maxq-* | mcore-* | metag-* \ + | m88110-* | m88k-* | maxq-* | mcore-* | metag-* | microblaze-* \ | mips-* | mipsbe-* | mipseb-* | mipsel-* | mipsle-* \ | mips16-* \ | mips64-* | mips64el-* \ @@ -368,15 +374,17 @@ | pdp10-* | pdp11-* | pj-* | pjl-* | pn-* | power-* \ | powerpc-* | powerpc64-* | powerpc64le-* | powerpcle-* | ppcbe-* \ | pyramid-* \ - | romp-* | rs6000-* \ + | romp-* | rs6000-* | rx-* \ | sh-* | sh[1234]-* | sh[24]a-* | sh[24]aeb-* | sh[23]e-* | sh[34]eb-* | sheb-* | shbe-* \ | shle-* | sh[1234]le-* | sh3ele-* | sh64-* | sh64le-* \ | sparc-* | sparc64-* | sparc64b-* | sparc64v-* | sparc86x-* | sparclet-* \ | sparclite-* \ | sparcv8-* | sparcv9-* | sparcv9b-* | sparcv9v-* | strongarm-* | sv1-* | sx?-* \ | tahoe-* | thumb-* \ - | tic30-* | tic4x-* | tic54x-* | tic55x-* | tic6x-* | tic80-* | tile-* \ + | tic30-* | tic4x-* | tic54x-* | tic55x-* | tic6x-* | tic80-* \ + | tile-* | tilegx-* \ | tron-* \ + | ubicom32-* \ | v850-* | v850e-* | vax-* \ | we32k-* \ | x86-* | x86_64-* | xc16x-* | xps100-* | xscale-* | xscalee[bl]-* \ @@ -726,6 +734,9 @@ basic_machine=ns32k-utek os=-sysv ;; + microblaze) + basic_machine=microblaze-xilinx + ;; mingw32) basic_machine=i386-pc os=-mingw32 @@ -1076,6 +1087,11 @@ basic_machine=tic6x-unknown os=-coff ;; + # This must be matched before tile*. + tilegx*) + basic_machine=tilegx-unknown + os=-linux-gnu + ;; tile*) basic_machine=tile-unknown os=-linux-gnu @@ -1247,6 +1263,9 @@ # First match some system type aliases # that might get confused with valid system types. # -solaris* is a basic system type, with this one exception. + -auroraux) + os=-auroraux + ;; -solaris1 | -solaris1.*) os=`echo $os | sed -e 's|solaris1|sunos4|'` ;; @@ -1268,8 +1287,8 @@ # -sysv* is not here because it comes later, after sysvr4. -gnu* | -bsd* | -mach* | -minix* | -genix* | -ultrix* | -irix* \ | -*vms* | -sco* | -esix* | -isc* | -aix* | -cnk* | -sunos | -sunos[34]*\ - | -hpux* | -unos* | -osf* | -luna* | -dgux* | -solaris* | -sym* \ - | -kopensolaris* \ + | -hpux* | -unos* | -osf* | -luna* | -dgux* | -auroraux* | -solaris* \ + | -sym* | -kopensolaris* \ | -amigaos* | -amigados* | -msdos* | -newsos* | -unicos* | -aof* \ | -aos* | -aros* \ | -nindy* | -vxsim* | -vxworks* | -ebmon* | -hms* | -mvs* \ @@ -1290,7 +1309,7 @@ | -os2* | -vos* | -palmos* | -uclinux* | -nucleus* \ | -morphos* | -superux* | -rtmk* | -rtmk-nova* | -windiss* \ | -powermax* | -dnix* | -nx6 | -nx7 | -sei* | -dragonfly* \ - | -skyos* | -haiku* | -rdos* | -toppers* | -drops*) + | -skyos* | -haiku* | -rdos* | -toppers* | -drops* | -es*) # Remember, each alternative MUST END IN *, to match a version number. ;; -qnx*) @@ -1423,6 +1442,8 @@ -dicos*) os=-dicos ;; + -nacl*) + ;; -none) ;; *) Index: dvbstreamer-2~svn777/trunk/compile =================================================================== --- dvbstreamer-2~svn777.orig/trunk/compile 2010-05-09 17:43:28.000000000 +0200 +++ dvbstreamer-2~svn777/trunk/compile 2010-05-09 17:44:04.000000000 +0200 @@ -1,9 +1,10 @@ #! /bin/sh # Wrapper for compilers which do not understand `-c -o'. -scriptversion=2005-05-14.22 +scriptversion=2009-10-06.20; # UTC -# Copyright (C) 1999, 2000, 2003, 2004, 2005 Free Software Foundation, Inc. +# Copyright (C) 1999, 2000, 2003, 2004, 2005, 2009 Free Software +# Foundation, Inc. # Written by Tom Tromey . # # This program is free software; you can redistribute it and/or modify @@ -17,8 +18,7 @@ # GNU General Public License for more details. # # You should have received a copy of the GNU General Public License -# along with this program; if not, write to the Free Software -# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. +# along with this program. If not, see . # As a special exception to the GNU General Public License, if you # distribute this file as part of a program that contains a @@ -103,13 +103,13 @@ fi # Name of file we expect compiler to create. -cofile=`echo "$cfile" | sed -e 's|^.*/||' -e 's/\.c$/.o/'` +cofile=`echo "$cfile" | sed 's|^.*[\\/]||; s|^[a-zA-Z]:||; s/\.c$/.o/'` # Create the lock directory. -# Note: use `[/.-]' here to ensure that we don't use the same name +# Note: use `[/\\:.-]' here to ensure that we don't use the same name # that we are using for the .o file. Also, base the name on the expected # object file name, since that is what matters with a parallel build. -lockdir=`echo "$cofile" | sed -e 's|[/.-]|_|g'`.d +lockdir=`echo "$cofile" | sed -e 's|[/\\:.-]|_|g'`.d while true; do if mkdir "$lockdir" >/dev/null 2>&1; then break @@ -124,9 +124,9 @@ ret=$? if test -f "$cofile"; then - mv "$cofile" "$ofile" + test "$cofile" = "$ofile" || mv "$cofile" "$ofile" elif test -f "${cofile}bj"; then - mv "${cofile}bj" "$ofile" + test "${cofile}bj" = "$ofile" || mv "${cofile}bj" "$ofile" fi rmdir "$lockdir" @@ -138,5 +138,6 @@ # eval: (add-hook 'write-file-hooks 'time-stamp) # time-stamp-start: "scriptversion=" # time-stamp-format: "%:y-%02m-%02d.%02H" -# time-stamp-end: "$" +# time-stamp-time-zone: "UTC" +# time-stamp-end: "; # UTC" # End: Index: dvbstreamer-2~svn777/trunk/config.h.in =================================================================== --- dvbstreamer-2~svn777.orig/trunk/config.h.in 2010-05-09 17:43:28.000000000 +0200 +++ dvbstreamer-2~svn777/trunk/config.h.in 2010-05-09 17:43:50.000000000 +0200 @@ -27,12 +27,21 @@ /* Define to 1 if you have the header file. */ #undef HAVE_DLFCN_H +/* Frontend enum exists for 2G modulation */ +#undef HAVE_FE_CAN_2G_MODULATION + /* Define to 1 if you have the header file. */ #undef HAVE_INTTYPES_H +/* Define to 1 if you have the `ev' library (-lev). */ +#undef HAVE_LIBEV + /* Define to 1 if you have the `sqlite3' library (-lsqlite3). */ #undef HAVE_LIBSQLITE3 +/* Define to 1 if you have the `yaml' library (-lyaml). */ +#undef HAVE_LIBYAML + /* Define to 1 if you have the header file. */ #undef HAVE_MEMORY_H Index: dvbstreamer-2~svn777/trunk/configure =================================================================== --- dvbstreamer-2~svn777.orig/trunk/configure 2010-05-09 17:43:28.000000000 +0200 +++ dvbstreamer-2~svn777/trunk/configure 2010-05-09 17:44:06.000000000 +0200 @@ -1,10 +1,12 @@ #! /bin/sh # Guess values for system-dependent variables and create Makefiles. -# Generated by GNU Autoconf 2.64 for dvbstreamer 2.0.0. +# Generated by GNU Autoconf 2.65 for dvbstreamer 2.0.0. +# # # Copyright (C) 1992, 1993, 1994, 1995, 1996, 1998, 1999, 2000, 2001, -# 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009 Free Software -# Foundation, Inc. +# 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009 Free Software Foundation, +# Inc. +# # # This configure script is free software; the Free Software Foundation # gives unlimited permission to copy, distribute and modify it. @@ -524,8 +526,6 @@ as_tr_sh="eval sed 'y%*+%pp%;s%[^_$as_cr_alnum]%_%g'" -lt_ltdl_dir='libltdl' - # Check that we are running under the correct shell. SHELL=${CONFIG_SHELL-/bin/sh} @@ -675,7 +675,8 @@ -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, @@ -702,7 +703,6 @@ PACKAGE_BUGREPORT='' PACKAGE_URL='' -enable_option_checking=no # Factoring default headers for most tests. ac_includes_default="\ #include @@ -739,7 +739,9 @@ # include #endif" -ac_subst_vars='LTLIBOBJS +ac_subst_vars='am__EXEEXT_FALSE +am__EXEEXT_TRUE +LTLIBOBJS LIBOBJS DVBSTREAMER_PLUGINDIR PACKAGE_DOC_DIR @@ -763,7 +765,6 @@ lt_ECHO RANLIB AR -OBJDUMP LN_S NM ac_ct_DUMPBIN @@ -780,10 +781,9 @@ build_cpu build LIBTOOL -INCLTDL -LTDLINCL -LTDLDEPS -LIBLTDL +OBJDUMP +DLLTOOL +AS EGREP GREP CPP @@ -803,7 +803,6 @@ LDFLAGS CFLAGS CC -subdirs am__untar am__tar AMTAR @@ -872,8 +871,8 @@ ac_user_opts=' enable_option_checking enable_dependency_tracking -enable_shared enable_static +enable_shared with_pic enable_fast_install with_gnu_ld @@ -892,7 +891,7 @@ LIBS CPPFLAGS CPP' -ac_subdirs_all='libltdl' + # Initialize some variables set by options. ac_init_help= @@ -1513,8 +1512,8 @@ --enable-FEATURE[=ARG] include FEATURE [ARG=yes] --disable-dependency-tracking speeds up one-time build --enable-dependency-tracking do not reject slow dependency extractors + --enable-static[=PKGS] build static libraries [default=no] --enable-shared[=PKGS] build shared libraries [default=yes] - --enable-static[=PKGS] build static libraries [default=yes] --enable-fast-install[=PKGS] optimize for fast installation [default=yes] --disable-libtool-lock avoid locking (might break parallel builds) @@ -1545,7 +1544,7 @@ 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 @@ -1616,7 +1615,7 @@ if $ac_init_version; then cat <<\_ACEOF dvbstreamer configure 2.0.0 -generated by GNU Autoconf 2.64 +generated by GNU Autoconf 2.65 Copyright (C) 2009 Free Software Foundation, Inc. This configure script is free software; the Free Software Foundation @@ -1663,7 +1662,7 @@ ac_retval=1 fi eval $as_lineno_stack; test "x$as_lineno_stack" = x && { as_lineno=; unset as_lineno;} - return $ac_retval + as_fn_set_status $ac_retval } # ac_fn_c_try_compile @@ -1709,7 +1708,7 @@ # 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; test "x$as_lineno_stack" = x && { as_lineno=; unset as_lineno;} - return $ac_retval + as_fn_set_status $ac_retval } # ac_fn_c_try_link @@ -1746,7 +1745,7 @@ ac_retval=1 fi eval $as_lineno_stack; test "x$as_lineno_stack" = x && { as_lineno=; unset as_lineno;} - return $ac_retval + as_fn_set_status $ac_retval } # ac_fn_c_try_cpp @@ -1788,7 +1787,7 @@ fi rm -rf conftest.dSYM conftest_ipa8_conftest.oo eval $as_lineno_stack; test "x$as_lineno_stack" = x && { as_lineno=; unset as_lineno;} - return $ac_retval + as_fn_set_status $ac_retval } # ac_fn_c_try_run @@ -1981,7 +1980,7 @@ running configure, to aid debugging if configure makes a mistake. It was created by dvbstreamer $as_me 2.0.0, which was -generated by GNU Autoconf 2.64. Invocation command line was +generated by GNU Autoconf 2.65. Invocation command line was $ $0 $@ @@ -2234,7 +2233,7 @@ for ac_site_file in "$ac_site_file1" "$ac_site_file2" do test "x$ac_site_file" = xNONE && continue - if test -r "$ac_site_file"; then + 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 @@ -2243,9 +2242,9 @@ 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 + # 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 @@ -2357,7 +2356,7 @@ SPEC_VERSION=$DVBSTREAMER_MAJOR.$DVBSTREAMER_MINOR.$DVBSTREAMER_MICRO -am__api_version='1.10' +am__api_version='1.11' ac_aux_dir= for ac_dir in "$srcdir" "$srcdir/.." "$srcdir/../.."; do @@ -2480,16 +2479,29 @@ # Just in case sleep 1 echo timestamp > conftest.file +# Reject unsafe characters in $srcdir or the absolute working directory +# name. Accept space and tab only in the latter. +am_lf=' +' +case `pwd` in + *[\\\"\#\$\&\'\`$am_lf]*) + as_fn_error "unsafe absolute working directory name" "$LINENO" 5;; +esac +case $srcdir in + *[\\\"\#\$\&\'\`$am_lf\ \ ]*) + as_fn_error "unsafe srcdir value: \`$srcdir'" "$LINENO" 5;; +esac + # Do `set' in a subshell so we don't clobber the current shell's # arguments. Must try -L first in case configure is actually a # symlink; some systems play weird games with the mod time of symlinks # (eg FreeBSD returns the mod time of the symlink's containing # directory). if ( - set X `ls -Lt $srcdir/configure conftest.file 2> /dev/null` + set X `ls -Lt "$srcdir/configure" conftest.file 2> /dev/null` if test "$*" = "X"; then # -L didn't work. - set X `ls -t $srcdir/configure conftest.file` + set X `ls -t "$srcdir/configure" conftest.file` fi rm -f conftest.file if test "$*" != "X $srcdir/configure conftest.file" \ @@ -2527,7 +2539,14 @@ # expand $ac_aux_dir to an absolute path am_aux_dir=`cd $ac_aux_dir && pwd` -test x"${MISSING+set}" = xset || MISSING="\${SHELL} $am_aux_dir/missing" +if test x"${MISSING+set}" != xset; then + case $am_aux_dir in + *\ * | *\ *) + MISSING="\${SHELL} \"$am_aux_dir/missing\"" ;; + *) + MISSING="\${SHELL} $am_aux_dir/missing" ;; + esac +fi # Use eval to expand $SHELL if eval "$MISSING --run true"; then am_missing_run="$MISSING --run " @@ -2537,6 +2556,115 @@ $as_echo "$as_me: WARNING: \`missing' script is too old or missing" >&2;} fi +if test x"${install_sh}" != xset; then + case $am_aux_dir in + *\ * | *\ *) + install_sh="\${SHELL} '$am_aux_dir/install-sh'" ;; + *) + install_sh="\${SHELL} $am_aux_dir/install-sh" + esac +fi + +# Installed binaries are usually stripped using `strip' when the user +# run `make install-strip'. However `strip' might not be the right +# tool to use in cross-compilation environments, therefore Automake +# will honor the `STRIP' environment variable to overrule this program. +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 +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 +$as_echo_n "checking for $ac_word... " >&6; } +if test "${ac_cv_prog_STRIP+set}" = set; then : + $as_echo_n "(cached) " >&6 +else + if test -n "$STRIP"; then + ac_cv_prog_STRIP="$STRIP" # Let the user override the test. +else +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_prog_STRIP="${ac_tool_prefix}strip" + $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 + +fi +fi +STRIP=$ac_cv_prog_STRIP +if test -n "$STRIP"; then + { $as_echo "$as_me:${as_lineno-$LINENO}: result: $STRIP" >&5 +$as_echo "$STRIP" >&6; } +else + { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 +$as_echo "no" >&6; } +fi + + +fi +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 +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 +$as_echo_n "checking for $ac_word... " >&6; } +if test "${ac_cv_prog_ac_ct_STRIP+set}" = set; 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. +else +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_prog_ac_ct_STRIP="strip" + $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 + +fi +fi +ac_ct_STRIP=$ac_cv_prog_ac_ct_STRIP +if test -n "$ac_ct_STRIP"; then + { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_ct_STRIP" >&5 +$as_echo "$ac_ct_STRIP" >&6; } +else + { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 +$as_echo "no" >&6; } +fi + + if test "x$ac_ct_STRIP" = x; then + STRIP=":" + 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 + STRIP=$ac_ct_STRIP + fi +else + STRIP="$ac_cv_prog_STRIP" +fi + +fi +INSTALL_STRIP_PROGRAM="\$(install_sh) -c -s" + { $as_echo "$as_me:${as_lineno-$LINENO}: checking for a thread-safe mkdir -p" >&5 $as_echo_n "checking for a thread-safe mkdir -p... " >&6; } if test -z "$MKDIR_P"; then @@ -2565,6 +2693,7 @@ fi + test -d ./--version && rmdir ./--version if test "${ac_cv_path_mkdir+set}" = set; then MKDIR_P="$ac_cv_path_mkdir -p" else @@ -2572,7 +2701,6 @@ # value for MKDIR_P 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. - test -d ./--version && rmdir ./--version MKDIR_P="$ac_install_sh -d" fi fi @@ -2717,108 +2845,6 @@ MAKEINFO=${MAKEINFO-"${am_missing_run}makeinfo"} -install_sh=${install_sh-"\$(SHELL) $am_aux_dir/install-sh"} - -# Installed binaries are usually stripped using `strip' when the user -# run `make install-strip'. However `strip' might not be the right -# tool to use in cross-compilation environments, therefore Automake -# will honor the `STRIP' environment variable to overrule this program. -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 -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 -$as_echo_n "checking for $ac_word... " >&6; } -if test "${ac_cv_prog_STRIP+set}" = set; then : - $as_echo_n "(cached) " >&6 -else - if test -n "$STRIP"; then - ac_cv_prog_STRIP="$STRIP" # Let the user override the test. -else -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_prog_STRIP="${ac_tool_prefix}strip" - $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 - -fi -fi -STRIP=$ac_cv_prog_STRIP -if test -n "$STRIP"; then - { $as_echo "$as_me:${as_lineno-$LINENO}: result: $STRIP" >&5 -$as_echo "$STRIP" >&6; } -else - { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 -$as_echo "no" >&6; } -fi - - -fi -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 -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 -$as_echo_n "checking for $ac_word... " >&6; } -if test "${ac_cv_prog_ac_ct_STRIP+set}" = set; 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. -else -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_prog_ac_ct_STRIP="strip" - $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 - -fi -fi -ac_ct_STRIP=$ac_cv_prog_ac_ct_STRIP -if test -n "$ac_ct_STRIP"; then - { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_ct_STRIP" >&5 -$as_echo "$ac_ct_STRIP" >&6; } -else - { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 -$as_echo "no" >&6; } -fi - - if test "x$ac_ct_STRIP" = x; then - STRIP=":" - 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 - STRIP=$ac_ct_STRIP - fi -else - STRIP="$ac_cv_prog_STRIP" -fi - -fi -INSTALL_STRIP_PROGRAM="\$(install_sh) -c -s" - # We need awk for the "check" target. The system "awk" is bad on # some platforms. # Always define AMTAR for backward compatibility. @@ -2832,10 +2858,6 @@ - - -subdirs="$subdirs libltdl" - ac_config_headers="$ac_config_headers config.h" @@ -2847,7 +2869,7 @@ am_make=${MAKE-make} cat > confinc << 'END' am__doit: - @echo done + @echo this is the am__doit target .PHONY: am__doit END # If we don't find an include directive, just comment out the code. @@ -2858,24 +2880,24 @@ _am_result=none # First try GNU make style include. echo "include confinc" > confmf -# We grep out `Entering directory' and `Leaving directory' -# messages which can occur if `w' ends up in MAKEFLAGS. -# In particular we don't look at `^make:' because GNU make might -# be invoked under some other name (usually "gmake"), in which -# case it prints its new name instead of `make'. -if test "`$am_make -s -f confmf 2> /dev/null | grep -v 'ing directory'`" = "done"; then - am__include=include - am__quote= - _am_result=GNU -fi +# Ignore all kinds of additional output from `make'. +case `$am_make -s -f confmf 2> /dev/null` in #( +*the\ am__doit\ target*) + am__include=include + am__quote= + _am_result=GNU + ;; +esac # Now try BSD make style include. if test "$am__include" = "#"; then echo '.include "confinc"' > confmf - if test "`$am_make -s -f confmf 2> /dev/null`" = "done"; then - am__include=.include - am__quote="\"" - _am_result=BSD - fi + case `$am_make -s -f confmf 2> /dev/null` in #( + *the\ am__doit\ target*) + am__include=.include + am__quote="\"" + _am_result=BSD + ;; + esac fi @@ -3223,32 +3245,30 @@ ... rest of stderr output deleted ... 10q' conftest.err >conftest.er1 cat conftest.er1 >&5 - rm -f conftest.er1 conftest.err fi + rm -f conftest.er1 conftest.err $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 test $ac_status = 0; } done 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 ac_clean_files_save=$ac_clean_files -ac_clean_files="$ac_clean_files a.out a.out.dSYM a.exe b.out conftest.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. -{ $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}: 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: @@ -3310,10 +3330,10 @@ else ac_file='' fi -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_file" >&5 -$as_echo "$ac_file" >&6; } if test -z "$ac_file"; then : - $as_echo "$as_me: failed program was:" >&5 + { $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 { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5 @@ -3321,51 +3341,18 @@ { as_fn_set_status 77 as_fn_error "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. -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking whether the C compiler works" >&5 -$as_echo_n "checking whether the C compiler works... " >&6; } -# 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 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: yes" >&5 -$as_echo "yes" >&6; } - -rm -f -r a.out a.out.dSYM a.exe conftest$ac_cv_exeext b.out conftest.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. -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking whether we are cross compiling" >&5 -$as_echo_n "checking whether we are cross compiling... " >&6; } -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $cross_compiling" >&5 -$as_echo "$cross_compiling" >&6; } - { $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" @@ -3398,13 +3385,72 @@ 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 +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 +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 +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 test "${ac_cv_objext+set}" = set; then : @@ -3698,6 +3744,11 @@ if test "$am_compiler_list" = ""; then am_compiler_list=`sed -n 's/^#*\([a-zA-Z0-9]*\))$/\1/p' < ./depcomp` fi + am__universal=false + case " $depcc " in #( + *\ -arch\ *\ -arch\ *) am__universal=true ;; + esac + for depmode in $am_compiler_list; do # Setup a source with many dependencies, because some compilers # like to wrap large dependency lists on column 80 (with \), and @@ -3715,7 +3766,17 @@ done echo "${am__include} ${am__quote}sub/conftest.Po${am__quote}" > confmf + # We check with `-c' and `-o' for the sake of the "dashmstdout" + # mode. It turns out that the SunPro C++ compiler does not properly + # handle `-M -o', and we need to detect this. Also, some Intel + # versions had trouble with output in subdirs + am__obj=sub/conftest.${OBJEXT-o} + am__minus_obj="-o $am__obj" case $depmode in + gcc) + # This depmode causes a compiler race in universal mode. + test "$am__universal" = false || continue + ;; nosideeffect) # after this tag, mechanisms are not by side-effect, so they'll # only be used when explicitly requested @@ -3725,19 +3786,23 @@ break fi ;; + msvisualcpp | msvcmsys) + # This compiler won't grok `-c -o', but also, the minuso test has + # not run yet. These depmodes are late enough in the game, and + # so weak that their functioning should not be impacted. + am__obj=conftest.${OBJEXT-o} + am__minus_obj= + ;; none) break ;; esac - # We check with `-c' and `-o' for the sake of the "dashmstdout" - # mode. It turns out that the SunPro C++ compiler does not properly - # handle `-M -o', and we need to detect this. if depmode=$depmode \ - source=sub/conftest.c object=sub/conftest.${OBJEXT-o} \ + source=sub/conftest.c object=$am__obj \ depfile=sub/conftest.Po tmpdepfile=sub/conftest.TPo \ - $SHELL ./depcomp $depcc -c -o sub/conftest.${OBJEXT-o} sub/conftest.c \ + $SHELL ./depcomp $depcc -c $am__minus_obj sub/conftest.c \ >/dev/null 2>conftest.err && grep sub/conftst1.h sub/conftest.Po > /dev/null 2>&1 && grep sub/conftst6.h sub/conftest.Po > /dev/null 2>&1 && - grep sub/conftest.${OBJEXT-o} sub/conftest.Po > /dev/null 2>&1 && + grep $am__obj sub/conftest.Po > /dev/null 2>&1 && ${MAKE-make} -s -f confmf > /dev/null 2>&1; then # icc doesn't choke on unknown options, it will just issue warnings # or remarks (even with -Werror). So we grep stderr for any message @@ -4155,8 +4220,8 @@ ... rest of stderr output deleted ... 10q' conftest.err >conftest.er1 cat conftest.er1 >&5 - rm -f conftest.er1 conftest.err fi + rm -f conftest.er1 conftest.err $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 test $ac_status = 0; } done @@ -4403,6 +4468,11 @@ if test "$am_compiler_list" = ""; then am_compiler_list=`sed -n 's/^#*\([a-zA-Z0-9]*\))$/\1/p' < ./depcomp` fi + am__universal=false + case " $depcc " in #( + *\ -arch\ *\ -arch\ *) am__universal=true ;; + esac + for depmode in $am_compiler_list; do # Setup a source with many dependencies, because some compilers # like to wrap large dependency lists on column 80 (with \), and @@ -4420,7 +4490,17 @@ done echo "${am__include} ${am__quote}sub/conftest.Po${am__quote}" > confmf + # We check with `-c' and `-o' for the sake of the "dashmstdout" + # mode. It turns out that the SunPro C++ compiler does not properly + # handle `-M -o', and we need to detect this. Also, some Intel + # versions had trouble with output in subdirs + am__obj=sub/conftest.${OBJEXT-o} + am__minus_obj="-o $am__obj" case $depmode in + gcc) + # This depmode causes a compiler race in universal mode. + test "$am__universal" = false || continue + ;; nosideeffect) # after this tag, mechanisms are not by side-effect, so they'll # only be used when explicitly requested @@ -4430,19 +4510,23 @@ break fi ;; + msvisualcpp | msvcmsys) + # This compiler won't grok `-c -o', but also, the minuso test has + # not run yet. These depmodes are late enough in the game, and + # so weak that their functioning should not be impacted. + am__obj=conftest.${OBJEXT-o} + am__minus_obj= + ;; none) break ;; esac - # We check with `-c' and `-o' for the sake of the "dashmstdout" - # mode. It turns out that the SunPro C++ compiler does not properly - # handle `-M -o', and we need to detect this. if depmode=$depmode \ - source=sub/conftest.c object=sub/conftest.${OBJEXT-o} \ + source=sub/conftest.c object=$am__obj \ depfile=sub/conftest.Po tmpdepfile=sub/conftest.TPo \ - $SHELL ./depcomp $depcc -c -o sub/conftest.${OBJEXT-o} sub/conftest.c \ + $SHELL ./depcomp $depcc -c $am__minus_obj sub/conftest.c \ >/dev/null 2>conftest.err && grep sub/conftst1.h sub/conftest.Po > /dev/null 2>&1 && grep sub/conftst6.h sub/conftest.Po > /dev/null 2>&1 && - grep sub/conftest.${OBJEXT-o} sub/conftest.Po > /dev/null 2>&1 && + grep $am__obj sub/conftest.Po > /dev/null 2>&1 && ${MAKE-make} -s -f confmf > /dev/null 2>&1; then # icc doesn't choke on unknown options, it will just issue warnings # or remarks (even with -Werror). So we grep stderr for any message @@ -4803,8 +4887,8 @@ ... rest of stderr output deleted ... 10q' conftest.err >conftest.er1 cat conftest.er1 >&5 - rm -f conftest.er1 conftest.err fi + rm -f conftest.er1 conftest.err $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 test $ac_status = 0; } done @@ -5051,6 +5135,11 @@ if test "$am_compiler_list" = ""; then am_compiler_list=`sed -n 's/^#*\([a-zA-Z0-9]*\))$/\1/p' < ./depcomp` fi + am__universal=false + case " $depcc " in #( + *\ -arch\ *\ -arch\ *) am__universal=true ;; + esac + for depmode in $am_compiler_list; do # Setup a source with many dependencies, because some compilers # like to wrap large dependency lists on column 80 (with \), and @@ -5068,7 +5157,17 @@ done echo "${am__include} ${am__quote}sub/conftest.Po${am__quote}" > confmf + # We check with `-c' and `-o' for the sake of the "dashmstdout" + # mode. It turns out that the SunPro C++ compiler does not properly + # handle `-M -o', and we need to detect this. Also, some Intel + # versions had trouble with output in subdirs + am__obj=sub/conftest.${OBJEXT-o} + am__minus_obj="-o $am__obj" case $depmode in + gcc) + # This depmode causes a compiler race in universal mode. + test "$am__universal" = false || continue + ;; nosideeffect) # after this tag, mechanisms are not by side-effect, so they'll # only be used when explicitly requested @@ -5078,19 +5177,23 @@ break fi ;; + msvisualcpp | msvcmsys) + # This compiler won't grok `-c -o', but also, the minuso test has + # not run yet. These depmodes are late enough in the game, and + # so weak that their functioning should not be impacted. + am__obj=conftest.${OBJEXT-o} + am__minus_obj= + ;; none) break ;; esac - # We check with `-c' and `-o' for the sake of the "dashmstdout" - # mode. It turns out that the SunPro C++ compiler does not properly - # handle `-M -o', and we need to detect this. if depmode=$depmode \ - source=sub/conftest.c object=sub/conftest.${OBJEXT-o} \ + source=sub/conftest.c object=$am__obj \ depfile=sub/conftest.Po tmpdepfile=sub/conftest.TPo \ - $SHELL ./depcomp $depcc -c -o sub/conftest.${OBJEXT-o} sub/conftest.c \ + $SHELL ./depcomp $depcc -c $am__minus_obj sub/conftest.c \ >/dev/null 2>conftest.err && grep sub/conftst1.h sub/conftest.Po > /dev/null 2>&1 && grep sub/conftst6.h sub/conftest.Po > /dev/null 2>&1 && - grep sub/conftest.${OBJEXT-o} sub/conftest.Po > /dev/null 2>&1 && + grep $am__obj sub/conftest.Po > /dev/null 2>&1 && ${MAKE-make} -s -f confmf > /dev/null 2>&1; then # icc doesn't choke on unknown options, it will just issue warnings # or remarks (even with -Werror). So we grep stderr for any message @@ -5639,31 +5742,7 @@ -enable_dlopen=yes - - - - - - - - - -case $enable_ltdl_convenience in - no) as_fn_error "this package needs a convenience libltdl" "$LINENO" 5 ;; - "") enable_ltdl_convenience=yes - ac_configure_args="$ac_configure_args --enable-ltdl-convenience" ;; -esac -LIBLTDL='${top_build_prefix}'"${lt_ltdl_dir+$lt_ltdl_dir/}libltdlc.la" -LTDLDEPS=$LIBLTDL -LTDLINCL='-I${top_srcdir}'"${lt_ltdl_dir+/$lt_ltdl_dir}" - - - - - -# For backwards non-gettext consistent compatibility... -INCLTDL="$LTDLINCL" +CFLAGS="$CFLAGS -fno-strict-aliasing" case `pwd` in @@ -5674,8 +5753,8 @@ -macro_version='2.2.6' -macro_revision='1.3012' +macro_version='2.2.6b' +macro_revision='1.3017' @@ -6216,13 +6295,13 @@ else lt_cv_nm_interface="BSD nm" echo "int some_variable = 0;" > conftest.$ac_ext - (eval echo "\"\$as_me:6219: $ac_compile\"" >&5) + (eval echo "\"\$as_me:6298: $ac_compile\"" >&5) (eval "$ac_compile" 2>conftest.err) cat conftest.err >&5 - (eval echo "\"\$as_me:6222: $NM \\\"conftest.$ac_objext\\\"\"" >&5) + (eval echo "\"\$as_me:6301: $NM \\\"conftest.$ac_objext\\\"\"" >&5) (eval "$NM \"conftest.$ac_objext\"" 2>conftest.err > conftest.out) cat conftest.err >&5 - (eval echo "\"\$as_me:6225: output\"" >&5) + (eval echo "\"\$as_me:6304: output\"" >&5) cat conftest.out >&5 if $GREP 'External.*some_variable' conftest.out > /dev/null; then lt_cv_nm_interface="MS dumpbin" @@ -6568,9 +6647,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 test "${lt_cv_deplibs_check_method+set}" = set; then : @@ -6688,7 +6764,7 @@ ;; # This must be Linux ELF. -linux* | k*bsd*-gnu) +linux* | k*bsd*-gnu | kopensolaris*-gnu) lt_cv_deplibs_check_method=pass_all ;; @@ -7427,7 +7503,7 @@ ;; *-*-irix6*) # Find out which ABI we are using. - echo '#line 7430 "configure"' > conftest.$ac_ext + echo '#line 7506 "configure"' > conftest.$ac_ext if { { eval echo "\"\$as_me\":${as_lineno-$LINENO}: \"$ac_compile\""; } >&5 (eval $ac_compile) 2>&5 ac_status=$? @@ -8201,41 +8277,335 @@ #define HAVE_DLFCN_H 1 _ACEOF -fi +fi + +done + + + +# Set options +enable_dlopen=yes +enable_win32_dll=yes + +case $host in +*-*-cygwin* | *-*-mingw* | *-*-pw32* | *-cegcc*) + 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 +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 +$as_echo_n "checking for $ac_word... " >&6; } +if test "${ac_cv_prog_AS+set}" = set; then : + $as_echo_n "(cached) " >&6 +else + if test -n "$AS"; then + ac_cv_prog_AS="$AS" # Let the user override the test. +else +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_prog_AS="${ac_tool_prefix}as" + $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 + +fi +fi +AS=$ac_cv_prog_AS +if test -n "$AS"; then + { $as_echo "$as_me:${as_lineno-$LINENO}: result: $AS" >&5 +$as_echo "$AS" >&6; } +else + { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 +$as_echo "no" >&6; } +fi + + +fi +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 +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 +$as_echo_n "checking for $ac_word... " >&6; } +if test "${ac_cv_prog_ac_ct_AS+set}" = set; 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. +else +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_prog_ac_ct_AS="as" + $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 + +fi +fi +ac_ct_AS=$ac_cv_prog_ac_ct_AS +if test -n "$ac_ct_AS"; then + { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_ct_AS" >&5 +$as_echo "$ac_ct_AS" >&6; } +else + { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 +$as_echo "no" >&6; } +fi + + if test "x$ac_ct_AS" = x; then + AS="false" + 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 + AS=$ac_ct_AS + fi +else + AS="$ac_cv_prog_AS" +fi + + 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 +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 +$as_echo_n "checking for $ac_word... " >&6; } +if test "${ac_cv_prog_DLLTOOL+set}" = set; then : + $as_echo_n "(cached) " >&6 +else + if test -n "$DLLTOOL"; then + ac_cv_prog_DLLTOOL="$DLLTOOL" # Let the user override the test. +else +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_prog_DLLTOOL="${ac_tool_prefix}dlltool" + $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 + +fi +fi +DLLTOOL=$ac_cv_prog_DLLTOOL +if test -n "$DLLTOOL"; then + { $as_echo "$as_me:${as_lineno-$LINENO}: result: $DLLTOOL" >&5 +$as_echo "$DLLTOOL" >&6; } +else + { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 +$as_echo "no" >&6; } +fi + + +fi +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 +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 +$as_echo_n "checking for $ac_word... " >&6; } +if test "${ac_cv_prog_ac_ct_DLLTOOL+set}" = set; 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. +else +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_prog_ac_ct_DLLTOOL="dlltool" + $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 + +fi +fi +ac_ct_DLLTOOL=$ac_cv_prog_ac_ct_DLLTOOL +if test -n "$ac_ct_DLLTOOL"; then + { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_ct_DLLTOOL" >&5 +$as_echo "$ac_ct_DLLTOOL" >&6; } +else + { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 +$as_echo "no" >&6; } +fi + + if test "x$ac_ct_DLLTOOL" = x; then + DLLTOOL="false" + 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 + DLLTOOL=$ac_ct_DLLTOOL + fi +else + DLLTOOL="$ac_cv_prog_DLLTOOL" +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 +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 +$as_echo_n "checking for $ac_word... " >&6; } +if test "${ac_cv_prog_OBJDUMP+set}" = set; then : + $as_echo_n "(cached) " >&6 +else + if test -n "$OBJDUMP"; then + ac_cv_prog_OBJDUMP="$OBJDUMP" # Let the user override the test. +else +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_prog_OBJDUMP="${ac_tool_prefix}objdump" + $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 + +fi +fi +OBJDUMP=$ac_cv_prog_OBJDUMP +if test -n "$OBJDUMP"; then + { $as_echo "$as_me:${as_lineno-$LINENO}: result: $OBJDUMP" >&5 +$as_echo "$OBJDUMP" >&6; } +else + { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 +$as_echo "no" >&6; } +fi + + +fi +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 +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 +$as_echo_n "checking for $ac_word... " >&6; } +if test "${ac_cv_prog_ac_ct_OBJDUMP+set}" = set; 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. +else +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_prog_ac_ct_OBJDUMP="objdump" + $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 + +fi +fi +ac_ct_OBJDUMP=$ac_cv_prog_ac_ct_OBJDUMP +if test -n "$ac_ct_OBJDUMP"; then + { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_ct_OBJDUMP" >&5 +$as_echo "$ac_ct_OBJDUMP" >&6; } +else + { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 +$as_echo "no" >&6; } +fi + + if test "x$ac_ct_OBJDUMP" = x; then + OBJDUMP="false" + 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 + OBJDUMP=$ac_ct_OBJDUMP + fi +else + OBJDUMP="$ac_cv_prog_OBJDUMP" +fi + + ;; +esac + +test -z "$AS" && AS=as -done -# Set options +test -z "$DLLTOOL" && DLLTOOL=dlltool - enable_win32_dll=no - # Check whether --enable-shared was given. -if test "${enable_shared+set}" = set; then : - enableval=$enable_shared; p=${PACKAGE-default} +test -z "$OBJDUMP" && OBJDUMP=objdump + + + + +# Check whether --enable-static was given. +if test "${enable_static+set}" = set; then : + enableval=$enable_static; p=${PACKAGE-default} case $enableval in - yes) enable_shared=yes ;; - no) enable_shared=no ;; + yes) enable_static=yes ;; + no) enable_static=no ;; *) - enable_shared=no + enable_static=no # Look at the argument we got. We use all the common list separators. lt_save_ifs="$IFS"; IFS="${IFS}$PATH_SEPARATOR," for pkg in $enableval; do IFS="$lt_save_ifs" if test "X$pkg" = "X$p"; then - enable_shared=yes + enable_static=yes fi done IFS="$lt_save_ifs" ;; esac else - enable_shared=yes + enable_static=no fi @@ -8246,27 +8616,30 @@ - # Check whether --enable-static was given. -if test "${enable_static+set}" = set; then : - enableval=$enable_static; p=${PACKAGE-default} + + + + # Check whether --enable-shared was given. +if test "${enable_shared+set}" = set; then : + enableval=$enable_shared; p=${PACKAGE-default} case $enableval in - yes) enable_static=yes ;; - no) enable_static=no ;; + yes) enable_shared=yes ;; + no) enable_shared=no ;; *) - enable_static=no + enable_shared=no # Look at the argument we got. We use all the common list separators. lt_save_ifs="$IFS"; IFS="${IFS}$PATH_SEPARATOR," for pkg in $enableval; do IFS="$lt_save_ifs" if test "X$pkg" = "X$p"; then - enable_static=yes + enable_shared=yes fi done IFS="$lt_save_ifs" ;; esac else - enable_static=yes + enable_shared=yes fi @@ -8278,6 +8651,7 @@ + # Check whether --with-pic was given. if test "${with_pic+set}" = set; then : withval=$with_pic; pic_mode="$withval" @@ -8701,11 +9075,11 @@ -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:8704: $lt_compile\"" >&5) + (eval echo "\"\$as_me:9078: $lt_compile\"" >&5) (eval "$lt_compile" 2>conftest.err) ac_status=$? cat conftest.err >&5 - echo "$as_me:8708: \$? = $ac_status" >&5 + echo "$as_me:9082: \$? = $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. @@ -8870,7 +9244,7 @@ lt_prog_compiler_static='-non_shared' ;; - linux* | k*bsd*-gnu) + linux* | k*bsd*-gnu | kopensolaris*-gnu) case $cc_basename in # old Intel for x86_64 which still supported -KPIC. ecc*) @@ -9040,11 +9414,11 @@ -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:9043: $lt_compile\"" >&5) + (eval echo "\"\$as_me:9417: $lt_compile\"" >&5) (eval "$lt_compile" 2>conftest.err) ac_status=$? cat conftest.err >&5 - echo "$as_me:9047: \$? = $ac_status" >&5 + echo "$as_me:9421: \$? = $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. @@ -9145,11 +9519,11 @@ -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:9148: $lt_compile\"" >&5) + (eval echo "\"\$as_me:9522: $lt_compile\"" >&5) (eval "$lt_compile" 2>out/conftest.err) ac_status=$? cat out/conftest.err >&5 - echo "$as_me:9152: \$? = $ac_status" >&5 + echo "$as_me:9526: \$? = $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 @@ -9200,11 +9574,11 @@ -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:9203: $lt_compile\"" >&5) + (eval echo "\"\$as_me:9577: $lt_compile\"" >&5) (eval "$lt_compile" 2>out/conftest.err) ac_status=$? cat out/conftest.err >&5 - echo "$as_me:9207: \$? = $ac_status" >&5 + echo "$as_me:9581: \$? = $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 @@ -9343,6 +9717,7 @@ fi supports_anon_versioning=no case `$LD -v 2>&1` in + *GNU\ gold*) supports_anon_versioning=yes ;; *\ [01].* | *\ 2.[0-9].* | *\ 2.10.*) ;; # catch versions < 2.11 *\ 2.11.93.0.2\ *) supports_anon_versioning=yes ;; # RH7.3 ... *\ 2.11.92.0.12\ *) supports_anon_versioning=yes ;; # Mandrake 8.2 ... @@ -9434,7 +9809,7 @@ archive_expsym_cmds='sed "s,^,_," $export_symbols >$output_objdir/$soname.expsym~$CC -shared $pic_flag $libobjs $deplibs $compiler_flags ${wl}-h,$soname ${wl}--retain-symbols-file,$output_objdir/$soname.expsym ${wl}--image-base,`expr ${RANDOM-$$} % 4096 / 2 \* 262144 + 1342177280` -o $lib' ;; - gnu* | linux* | tpf* | k*bsd*-gnu) + gnu* | linux* | tpf* | k*bsd*-gnu | kopensolaris*-gnu) tmp_diet=no if test "$host_os" = linux-dietlibc; then case $cc_basename in @@ -10896,7 +11271,7 @@ ;; # This must be Linux ELF. -linux* | k*bsd*-gnu) +linux* | k*bsd*-gnu | kopensolaris*-gnu) version_type=linux need_lib_prefix=no need_version=no @@ -11583,7 +11958,7 @@ lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2 lt_status=$lt_dlunknown cat > conftest.$ac_ext <<_LT_EOF -#line 11586 "configure" +#line 11961 "configure" #include "confdefs.h" #if HAVE_DLFCN_H @@ -11679,7 +12054,7 @@ lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2 lt_status=$lt_dlunknown cat > conftest.$ac_ext <<_LT_EOF -#line 11682 "configure" +#line 12057 "configure" #include "confdefs.h" #if HAVE_DLFCN_H @@ -11907,8 +12282,6 @@ - - { $as_echo "$as_me:${as_lineno-$LINENO}: checking libdir name" >&5 $as_echo_n "checking libdir name... " >&6; } case $host in @@ -12395,6 +12768,133 @@ fi LIBS="" + +ac_fn_c_check_header_mongrel "$LINENO" "ev.h" "ac_cv_header_ev_h" "$ac_includes_default" +if test "x$ac_cv_header_ev_h" = x""yes; then : + +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 "libev header file not found +See \`config.log' for more details." "$LINENO" 5; } +fi + + +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for ev_loop in -lev" >&5 +$as_echo_n "checking for ev_loop in -lev... " >&6; } +if test "${ac_cv_lib_ev_ev_loop+set}" = set; then : + $as_echo_n "(cached) " >&6 +else + ac_check_lib_save_LIBS=$LIBS +LIBS="-lev $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 ev_loop (); +int +main () +{ +return ev_loop (); + ; + return 0; +} +_ACEOF +if ac_fn_c_try_link "$LINENO"; then : + ac_cv_lib_ev_ev_loop=yes +else + ac_cv_lib_ev_ev_loop=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_ev_ev_loop" >&5 +$as_echo "$ac_cv_lib_ev_ev_loop" >&6; } +if test "x$ac_cv_lib_ev_ev_loop" = x""yes; then : + cat >>confdefs.h <<_ACEOF +#define HAVE_LIBEV 1 +_ACEOF + + LIBS="-lev $LIBS" + +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 "libev not found +See \`config.log' for more details." "$LINENO" 5; } +fi + +LIBS="" + +ac_fn_c_check_header_mongrel "$LINENO" "yaml.h" "ac_cv_header_yaml_h" "$ac_includes_default" +if test "x$ac_cv_header_yaml_h" = x""yes; then : + +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 "libyaml header file not found +See \`config.log' for more details." "$LINENO" 5; } +fi + + +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for yaml_get_version_string in -lyaml" >&5 +$as_echo_n "checking for yaml_get_version_string in -lyaml... " >&6; } +if test "${ac_cv_lib_yaml_yaml_get_version_string+set}" = set; then : + $as_echo_n "(cached) " >&6 +else + ac_check_lib_save_LIBS=$LIBS +LIBS="-lyaml $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 yaml_get_version_string (); +int +main () +{ +return yaml_get_version_string (); + ; + return 0; +} +_ACEOF +if ac_fn_c_try_link "$LINENO"; then : + ac_cv_lib_yaml_yaml_get_version_string=yes +else + ac_cv_lib_yaml_yaml_get_version_string=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_yaml_yaml_get_version_string" >&5 +$as_echo "$ac_cv_lib_yaml_yaml_get_version_string" >&6; } +if test "x$ac_cv_lib_yaml_yaml_get_version_string" = x""yes; then : + cat >>confdefs.h <<_ACEOF +#define HAVE_LIBYAML 1 +_ACEOF + + LIBS="-lyaml $LIBS" + +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 "libyaml not found +See \`config.log' for more details." "$LINENO" 5; } +fi + +LIBS="" + { $as_echo "$as_me:${as_lineno-$LINENO}: checking for variadic cpp macros" >&5 $as_echo_n "checking for variadic cpp macros... " >&6; } if test "${ac_cv_cpp_variadic_macros+set}" = set; then : @@ -12426,7 +12926,36 @@ $as_echo "#define HAVE_VARIADIC_MACROS 1" >>confdefs.h fi +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for FE_CAN_2G_MODULATION" >&5 +$as_echo_n "checking for FE_CAN_2G_MODULATION... " >&6; } +if test "${ac_cv_fe_can_2g_modulation+set}" = set; then : + $as_echo_n "(cached) " >&6 +else + cat confdefs.h - <<_ACEOF >conftest.$ac_ext +/* end confdefs.h. */ +#include +int +main () +{ +int a = FE_CAN_2G_MODULATION; + ; + return 0; +} +_ACEOF +if ac_fn_c_try_compile "$LINENO"; then : + ac_cv_fe_can_2g_modulation=yes +else + ac_cv_fe_can_2g_modulation=no +fi +rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext +fi +{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_fe_can_2g_modulation" >&5 +$as_echo "$ac_cv_fe_can_2g_modulation" >&6; } +if test "${ac_cv_fe_can_2g_modulation}" != "no"; then + +$as_echo "#define HAVE_FE_CAN_2G_MODULATION 1" >>confdefs.h +fi packagesrcdir=`cd $srcdir && pwd` @@ -12589,6 +13118,14 @@ LTLIBOBJS=$ac_ltlibobjs + if test -n "$EXEEXT"; then + am__EXEEXT_TRUE= + am__EXEEXT_FALSE='#' +else + am__EXEEXT_TRUE='#' + am__EXEEXT_FALSE= +fi + if test -z "${AMDEP_TRUE}" && test -z "${AMDEP_FALSE}"; then as_fn_error "conditional \"AMDEP\" was never defined. Usually this means the macro was only invoked conditionally." "$LINENO" 5 @@ -13026,7 +13563,7 @@ # values after options handling. ac_log=" This file was extended by dvbstreamer $as_me 2.0.0, which was -generated by GNU Autoconf 2.64. Invocation command line was +generated by GNU Autoconf 2.65. Invocation command line was CONFIG_FILES = $CONFIG_FILES CONFIG_HEADERS = $CONFIG_HEADERS @@ -13066,6 +13603,7 @@ -h, --help print this help, then exit -V, --version print version number and configuration settings, then exit + --config print configuration, then exit -q, --quiet, --silent do not print progress messages -d, --debug don't remove temporary files @@ -13088,10 +13626,11 @@ _ACEOF cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1 +ac_cs_config="`$as_echo "$ac_configure_args" | sed 's/^ //; s/[\\""\`\$]/\\\\&/g'`" ac_cs_version="\\ dvbstreamer config.status 2.0.0 -configured by $0, generated by GNU Autoconf 2.64, - with options \\"`$as_echo "$ac_configure_args" | sed 's/^ //; s/[\\""\`\$]/\\\\&/g'`\\" +configured by $0, generated by GNU Autoconf 2.65, + with options \\"\$ac_cs_config\\" Copyright (C) 2009 Free Software Foundation, Inc. This config.status script is free software; the Free Software Foundation @@ -13129,6 +13668,8 @@ ac_cs_recheck=: ;; --version | --versio | --versi | --vers | --ver | --ve | --v | -V ) $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 ) @@ -13212,8 +13753,11 @@ delay_variable_subst='$delay_variable_subst' macro_version='`$ECHO "X$macro_version" | $Xsed -e "$delay_single_quote_subst"`' macro_revision='`$ECHO "X$macro_revision" | $Xsed -e "$delay_single_quote_subst"`' -enable_shared='`$ECHO "X$enable_shared" | $Xsed -e "$delay_single_quote_subst"`' +AS='`$ECHO "X$AS" | $Xsed -e "$delay_single_quote_subst"`' +DLLTOOL='`$ECHO "X$DLLTOOL" | $Xsed -e "$delay_single_quote_subst"`' +OBJDUMP='`$ECHO "X$OBJDUMP" | $Xsed -e "$delay_single_quote_subst"`' enable_static='`$ECHO "X$enable_static" | $Xsed -e "$delay_single_quote_subst"`' +enable_shared='`$ECHO "X$enable_shared" | $Xsed -e "$delay_single_quote_subst"`' pic_mode='`$ECHO "X$pic_mode" | $Xsed -e "$delay_single_quote_subst"`' enable_fast_install='`$ECHO "X$enable_fast_install" | $Xsed -e "$delay_single_quote_subst"`' host_alias='`$ECHO "X$host_alias" | $Xsed -e "$delay_single_quote_subst"`' @@ -13238,7 +13782,6 @@ lt_NL2SP='`$ECHO "X$lt_NL2SP" | $Xsed -e "$delay_single_quote_subst"`' reload_flag='`$ECHO "X$reload_flag" | $Xsed -e "$delay_single_quote_subst"`' reload_cmds='`$ECHO "X$reload_cmds" | $Xsed -e "$delay_single_quote_subst"`' -OBJDUMP='`$ECHO "X$OBJDUMP" | $Xsed -e "$delay_single_quote_subst"`' deplibs_check_method='`$ECHO "X$deplibs_check_method" | $Xsed -e "$delay_single_quote_subst"`' file_magic_cmd='`$ECHO "X$file_magic_cmd" | $Xsed -e "$delay_single_quote_subst"`' AR='`$ECHO "X$AR" | $Xsed -e "$delay_single_quote_subst"`' @@ -13344,7 +13887,6 @@ lt_SP2NL \ lt_NL2SP \ reload_flag \ -OBJDUMP \ deplibs_check_method \ file_magic_cmd \ AR \ @@ -13577,7 +14119,7 @@ t delim :nl h -s/\(.\{148\}\).*/\1/ +s/\(.\{148\}\)..*/\1/ t more1 s/["\\]/\\&/g; s/^/"/; s/$/\\n"\\/ p @@ -13591,7 +14133,7 @@ t nl :delim h -s/\(.\{148\}\).*/\1/ +s/\(.\{148\}\)..*/\1/ t more2 s/["\\]/\\&/g; s/^/"/; s/$/"/ p @@ -14058,27 +14600,28 @@ case $ac_file$ac_mode in - "depfiles":C) test x"$AMDEP_TRUE" != x"" || # Autoconf 2.62 quotes --file arguments for eval, but not when files -# are listed without --file. Let's play safe and only enable the eval -# if we detect the quoting. -case $CONFIG_FILES in -*\'*) eval set x "$CONFIG_FILES" ;; -*) set x $CONFIG_FILES ;; -esac -shift -for mf -do - # Strip MF so we end up with the name of the file. - mf=`echo "$mf" | sed -e 's/:.*$//'` - # Check whether this is an Automake generated Makefile or not. - # We used to match only the files named `Makefile.in', but - # some people rename them; so instead we look at the file content. - # Grep'ing the first line is not enough: some people post-process - # each Makefile.in and add a new line on top of each file to say so. - # Grep'ing the whole file is not good either: AIX grep has a line - # limit of 2048, but all sed's we know have understand at least 4000. - if sed -n 's,^#.*generated by automake.*,X,p' "$mf" | grep X >/dev/null 2>&1; then - dirpart=`$as_dirname -- "$mf" || + "depfiles":C) test x"$AMDEP_TRUE" != x"" || { + # Autoconf 2.62 quotes --file arguments for eval, but not when files + # are listed without --file. Let's play safe and only enable the eval + # if we detect the quoting. + case $CONFIG_FILES in + *\'*) eval set x "$CONFIG_FILES" ;; + *) set x $CONFIG_FILES ;; + esac + shift + for mf + do + # Strip MF so we end up with the name of the file. + mf=`echo "$mf" | sed -e 's/:.*$//'` + # Check whether this is an Automake generated Makefile or not. + # We used to match only the files named `Makefile.in', but + # some people rename them; so instead we look at the file content. + # Grep'ing the first line is not enough: some people post-process + # each Makefile.in and add a new line on top of each file to say so. + # Grep'ing the whole file is not good either: AIX grep has a line + # limit of 2048, but all sed's we know have understand at least 4000. + if sed -n 's,^#.*generated by automake.*,X,p' "$mf" | grep X >/dev/null 2>&1; then + dirpart=`$as_dirname -- "$mf" || $as_expr X"$mf" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \ X"$mf" : 'X\(//\)[^/]' \| \ X"$mf" : 'X\(//\)$' \| \ @@ -14101,28 +14644,28 @@ q } s/.*/./; q'` - else - continue - fi - # Extract the definition of DEPDIR, am__include, and am__quote - # from the Makefile without running `make'. - DEPDIR=`sed -n 's/^DEPDIR = //p' < "$mf"` - test -z "$DEPDIR" && continue - am__include=`sed -n 's/^am__include = //p' < "$mf"` - test -z "am__include" && continue - am__quote=`sed -n 's/^am__quote = //p' < "$mf"` - # When using ansi2knr, U may be empty or an underscore; expand it - U=`sed -n 's/^U = //p' < "$mf"` - # Find all dependency output files, they are included files with - # $(DEPDIR) in their names. We invoke sed twice because it is the - # simplest approach to changing $(DEPDIR) to its actual value in the - # expansion. - for file in `sed -n " - s/^$am__include $am__quote\(.*(DEPDIR).*\)$am__quote"'$/\1/p' <"$mf" | \ - sed -e 's/\$(DEPDIR)/'"$DEPDIR"'/g' -e 's/\$U/'"$U"'/g'`; do - # Make sure the directory exists. - test -f "$dirpart/$file" && continue - fdir=`$as_dirname -- "$file" || + else + continue + fi + # Extract the definition of DEPDIR, am__include, and am__quote + # from the Makefile without running `make'. + DEPDIR=`sed -n 's/^DEPDIR = //p' < "$mf"` + test -z "$DEPDIR" && continue + am__include=`sed -n 's/^am__include = //p' < "$mf"` + test -z "am__include" && continue + am__quote=`sed -n 's/^am__quote = //p' < "$mf"` + # When using ansi2knr, U may be empty or an underscore; expand it + U=`sed -n 's/^U = //p' < "$mf"` + # Find all dependency output files, they are included files with + # $(DEPDIR) in their names. We invoke sed twice because it is the + # simplest approach to changing $(DEPDIR) to its actual value in the + # expansion. + for file in `sed -n " + s/^$am__include $am__quote\(.*(DEPDIR).*\)$am__quote"'$/\1/p' <"$mf" | \ + sed -e 's/\$(DEPDIR)/'"$DEPDIR"'/g' -e 's/\$U/'"$U"'/g'`; do + # Make sure the directory exists. + test -f "$dirpart/$file" && continue + fdir=`$as_dirname -- "$file" || $as_expr X"$file" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \ X"$file" : 'X\(//\)[^/]' \| \ X"$file" : 'X\(//\)$' \| \ @@ -14145,11 +14688,12 @@ q } s/.*/./; q'` - as_dir=$dirpart/$fdir; as_fn_mkdir_p - # echo "creating $dirpart/$file" - echo '# dummy' > "$dirpart/$file" + as_dir=$dirpart/$fdir; as_fn_mkdir_p + # echo "creating $dirpart/$file" + echo '# dummy' > "$dirpart/$file" + done done -done +} ;; "libtool":C) @@ -14208,12 +14752,21 @@ macro_version=$macro_version macro_revision=$macro_revision -# Whether or not to build shared libraries. -build_libtool_libs=$enable_shared +# Assembler program. +AS=$AS + +# DLL creation program. +DLLTOOL=$DLLTOOL + +# Object dumper program. +OBJDUMP=$OBJDUMP # Whether or not to build static libraries. build_old_libs=$enable_static +# Whether or not to build shared libraries. +build_libtool_libs=$enable_shared + # What type of objects to build. pic_mode=$pic_mode @@ -14273,9 +14826,6 @@ reload_flag=$lt_reload_flag reload_cmds=$lt_reload_cmds -# An object symbol dumper. -OBJDUMP=$lt_OBJDUMP - # Method to check whether dependent libraries are shared objects. deplibs_check_method=$lt_deplibs_check_method @@ -14819,151 +15369,6 @@ # would make configure fail if this is the last instruction. $ac_cs_success || as_fn_exit $? fi - -# -# CONFIG_SUBDIRS section. -# -if test "$no_recursion" != yes; then - - # Remove --cache-file, --srcdir, and --disable-option-checking arguments - # so they do not pile up. - ac_sub_configure_args= - ac_prev= - eval "set x $ac_configure_args" - shift - for ac_arg - do - if test -n "$ac_prev"; then - ac_prev= - continue - fi - case $ac_arg in - -cache-file | --cache-file | --cache-fil | --cache-fi \ - | --cache-f | --cache- | --cache | --cach | --cac | --ca | --c) - ac_prev=cache_file ;; - -cache-file=* | --cache-file=* | --cache-fil=* | --cache-fi=* \ - | --cache-f=* | --cache-=* | --cache=* | --cach=* | --cac=* | --ca=* \ - | --c=*) - ;; - --config-cache | -C) - ;; - -srcdir | --srcdir | --srcdi | --srcd | --src | --sr) - ac_prev=srcdir ;; - -srcdir=* | --srcdir=* | --srcdi=* | --srcd=* | --src=* | --sr=*) - ;; - -prefix | --prefix | --prefi | --pref | --pre | --pr | --p) - ac_prev=prefix ;; - -prefix=* | --prefix=* | --prefi=* | --pref=* | --pre=* | --pr=* | --p=*) - ;; - --disable-option-checking) - ;; - *) - case $ac_arg in - *\'*) ac_arg=`$as_echo "$ac_arg" | sed "s/'/'\\\\\\\\''/g"` ;; - esac - as_fn_append ac_sub_configure_args " '$ac_arg'" ;; - esac - done - - # Always prepend --prefix to ensure using the same prefix - # in subdir configurations. - ac_arg="--prefix=$prefix" - case $ac_arg in - *\'*) ac_arg=`$as_echo "$ac_arg" | sed "s/'/'\\\\\\\\''/g"` ;; - esac - ac_sub_configure_args="'$ac_arg' $ac_sub_configure_args" - - # Pass --silent - if test "$silent" = yes; then - ac_sub_configure_args="--silent $ac_sub_configure_args" - fi - - # Always prepend --disable-option-checking to silence warnings, since - # different subdirs can have different --enable and --with options. - ac_sub_configure_args="--disable-option-checking $ac_sub_configure_args" - - ac_popdir=`pwd` - for ac_dir in : $subdirs; do test "x$ac_dir" = x: && continue - - # Do not complain, so a configure script can configure whichever - # parts of a large source tree are present. - test -d "$srcdir/$ac_dir" || continue - - ac_msg="=== configuring in $ac_dir (`pwd`/$ac_dir)" - $as_echo "$as_me:${as_lineno-$LINENO}: $ac_msg" >&5 - $as_echo "$ac_msg" >&6 - 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=/`$as_echo "$ac_dir" | sed 's|^\.[\\/]||'` - # A ".." for each directory in $ac_dir_suffix. - 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/ ;; - esac ;; -esac -ac_abs_top_builddir=$ac_pwd -ac_abs_builddir=$ac_pwd$ac_dir_suffix -# for backward compatibility: -ac_top_builddir=$ac_top_build_prefix - -case $srcdir in - .) # We are building in place. - ac_srcdir=. - ac_top_srcdir=$ac_top_builddir_sub - ac_abs_top_srcdir=$ac_pwd ;; - [\\/]* | ?:[\\/]* ) # Absolute name. - ac_srcdir=$srcdir$ac_dir_suffix; - ac_top_srcdir=$srcdir - ac_abs_top_srcdir=$srcdir ;; - *) # Relative name. - ac_srcdir=$ac_top_build_prefix$srcdir$ac_dir_suffix - ac_top_srcdir=$ac_top_build_prefix$srcdir - ac_abs_top_srcdir=$ac_pwd/$srcdir ;; -esac -ac_abs_srcdir=$ac_abs_top_srcdir$ac_dir_suffix - - - cd "$ac_dir" - - # Check for guested configure; otherwise get Cygnus style configure. - if test -f "$ac_srcdir/configure.gnu"; then - ac_sub_configure=$ac_srcdir/configure.gnu - elif test -f "$ac_srcdir/configure"; then - ac_sub_configure=$ac_srcdir/configure - elif test -f "$ac_srcdir/configure.in"; then - # This should be Cygnus configure. - ac_sub_configure=$ac_aux_dir/configure - else - { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: no configuration information is in $ac_dir" >&5 -$as_echo "$as_me: WARNING: no configuration information is in $ac_dir" >&2;} - ac_sub_configure= - fi - - # The recursion is here. - if test -n "$ac_sub_configure"; then - # Make the cache file name correct relative to the subdirectory. - case $cache_file in - [\\/]* | ?:[\\/]* ) ac_sub_cache_file=$cache_file ;; - *) # Relative name. - ac_sub_cache_file=$ac_top_build_prefix$cache_file ;; - esac - - { $as_echo "$as_me:${as_lineno-$LINENO}: running $SHELL $ac_sub_configure $ac_sub_configure_args --cache-file=$ac_sub_cache_file --srcdir=$ac_srcdir" >&5 -$as_echo "$as_me: running $SHELL $ac_sub_configure $ac_sub_configure_args --cache-file=$ac_sub_cache_file --srcdir=$ac_srcdir" >&6;} - # The eval makes quoting arguments work. - eval "\$SHELL \"\$ac_sub_configure\" $ac_sub_configure_args \ - --cache-file=\"\$ac_sub_cache_file\" --srcdir=\"\$ac_srcdir\"" || - as_fn_error "$ac_sub_configure failed for $ac_dir" "$LINENO" 5 - fi - - cd "$ac_popdir" - done -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;} Index: dvbstreamer-2~svn777/trunk/Makefile.in =================================================================== --- dvbstreamer-2~svn777.orig/trunk/Makefile.in 2010-05-09 17:43:28.000000000 +0200 +++ dvbstreamer-2~svn777/trunk/Makefile.in 2010-05-09 17:44:05.000000000 +0200 @@ -1,8 +1,9 @@ -# Makefile.in generated by automake 1.10.2 from Makefile.am. +# Makefile.in generated by automake 1.11.1 from Makefile.am. # @configure_input@ # Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, -# 2003, 2004, 2005, 2006, 2007, 2008 Free Software Foundation, Inc. +# 2003, 2004, 2005, 2006, 2007, 2008, 2009 Free Software Foundation, +# Inc. # This Makefile.in is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. @@ -16,8 +17,9 @@ VPATH = @srcdir@ pkgdatadir = $(datadir)/@PACKAGE@ -pkglibdir = $(libdir)/@PACKAGE@ pkgincludedir = $(includedir)/@PACKAGE@ +pkglibdir = $(libdir)/@PACKAGE@ +pkglibexecdir = $(libexecdir)/@PACKAGE@ am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd install_sh_DATA = $(install_sh) -c -m 644 install_sh_PROGRAM = $(install_sh) -c @@ -48,6 +50,7 @@ mkinstalldirs = $(install_sh) -d CONFIG_HEADER = config.h CONFIG_CLEAN_FILES = +CONFIG_CLEAN_VPATH_FILES = SOURCES = DIST_SOURCES = RECURSIVE_TARGETS = all-recursive check-recursive dvi-recursive \ @@ -62,14 +65,30 @@ $(srcdir)/*) f=`echo "$$p" | sed "s|^$$srcdirstrip/||"`;; \ *) f=$$p;; \ esac; -am__strip_dir = `echo $$p | sed -e 's|^.*/||'`; +am__strip_dir = f=`echo $$p | sed -e 's|^.*/||'`; +am__install_max = 40 +am__nobase_strip_setup = \ + srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*|]/\\\\&/g'` +am__nobase_strip = \ + for p in $$list; do echo "$$p"; done | sed -e "s|$$srcdirstrip/||" +am__nobase_list = $(am__nobase_strip_setup); \ + for p in $$list; do echo "$$p $$p"; done | \ + sed "s| $$srcdirstrip/| |;"' / .*\//!s/ .*/ ./; s,\( .*\)/[^/]*$$,\1,' | \ + $(AWK) 'BEGIN { files["."] = "" } { files[$$2] = files[$$2] " " $$1; \ + if (++n[$$2] == $(am__install_max)) \ + { print $$2, files[$$2]; n[$$2] = 0; files[$$2] = "" } } \ + END { for (dir in files) print dir, files[dir] }' +am__base_list = \ + sed '$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;s/\n/ /g' | \ + sed '$$!N;$$!N;$$!N;$$!N;s/\n/ /g' am__installdirs = "$(DESTDIR)$(dvbstreamerdocdir)" \ "$(DESTDIR)$(pkgincludedir)" -dvbstreamerdocDATA_INSTALL = $(INSTALL_DATA) -pkgincludeDATA_INSTALL = $(INSTALL_DATA) DATA = $(dvbstreamerdoc_DATA) $(pkginclude_DATA) RECURSIVE_CLEAN_TARGETS = mostlyclean-recursive clean-recursive \ distclean-recursive maintainer-clean-recursive +AM_RECURSIVE_TARGETS = $(RECURSIVE_TARGETS:-recursive=) \ + $(RECURSIVE_CLEAN_TARGETS:-recursive=) tags TAGS ctags CTAGS \ + distdir dist dist-all distcheck ETAGS = etags CTAGS = ctags DIST_SUBDIRS = $(SUBDIRS) @@ -77,9 +96,34 @@ distdir = $(PACKAGE)-$(VERSION) top_distdir = $(distdir) am__remove_distdir = \ - { test ! -d $(distdir) \ - || { find $(distdir) -type d ! -perm -200 -exec chmod u+w {} ';' \ - && rm -fr $(distdir); }; } + { test ! -d "$(distdir)" \ + || { find "$(distdir)" -type d ! -perm -200 -exec chmod u+w {} ';' \ + && rm -fr "$(distdir)"; }; } +am__relativize = \ + dir0=`pwd`; \ + sed_first='s,^\([^/]*\)/.*$$,\1,'; \ + sed_rest='s,^[^/]*/*,,'; \ + sed_last='s,^.*/\([^/]*\)$$,\1,'; \ + sed_butlast='s,/*[^/]*$$,,'; \ + while test -n "$$dir1"; do \ + first=`echo "$$dir1" | sed -e "$$sed_first"`; \ + if test "$$first" != "."; then \ + if test "$$first" = ".."; then \ + dir2=`echo "$$dir0" | sed -e "$$sed_last"`/"$$dir2"; \ + dir0=`echo "$$dir0" | sed -e "$$sed_butlast"`; \ + else \ + first2=`echo "$$dir2" | sed -e "$$sed_first"`; \ + if test "$$first2" = "$$first"; then \ + dir2=`echo "$$dir2" | sed -e "$$sed_rest"`; \ + else \ + dir2="../$$dir2"; \ + fi; \ + dir0="$$dir0"/"$$first"; \ + fi; \ + fi; \ + dir1=`echo "$$dir1" | sed -e "$$sed_rest"`; \ + done; \ + reldir="$$dir2" DIST_ARCHIVES = $(distdir).tar.gz GZIP_ENV = --best distuninstallcheck_listfiles = find . -type f -print @@ -87,6 +131,7 @@ ACLOCAL = @ACLOCAL@ AMTAR = @AMTAR@ AR = @AR@ +AS = @AS@ AUTOCONF = @AUTOCONF@ AUTOHEADER = @AUTOHEADER@ AUTOMAKE = @AUTOMAKE@ @@ -99,6 +144,7 @@ CYGPATH_W = @CYGPATH_W@ DEFS = @DEFS@ DEPDIR = @DEPDIR@ +DLLTOOL = @DLLTOOL@ DSYMUTIL = @DSYMUTIL@ DUMPBIN = @DUMPBIN@ DVBSTREAMER_MAJOR = @DVBSTREAMER_MAJOR@ @@ -114,7 +160,6 @@ GETTIME_LIB = @GETTIME_LIB@ GREP = @GREP@ ICONV_LIB = @ICONV_LIB@ -INCLTDL = @INCLTDL@ INSTALL = @INSTALL@ INSTALL_DATA = @INSTALL_DATA@ INSTALL_PROGRAM = @INSTALL_PROGRAM@ @@ -122,14 +167,11 @@ INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@ LD = @LD@ LDFLAGS = @LDFLAGS@ -LIBLTDL = @LIBLTDL@ LIBOBJS = @LIBOBJS@ LIBS = @LIBS@ LIBTOOL = @LIBTOOL@ LIPO = @LIPO@ LN_S = @LN_S@ -LTDLDEPS = @LTDLDEPS@ -LTDLINCL = @LTDLINCL@ LTLIBOBJS = @LTLIBOBJS@ MAKEINFO = @MAKEINFO@ MKDIR_P = @MKDIR_P@ @@ -205,14 +247,15 @@ sbindir = @sbindir@ sharedstatedir = @sharedstatedir@ srcdir = @srcdir@ -subdirs = @subdirs@ sysconfdir = @sysconfdir@ target_alias = @target_alias@ top_build_prefix = @top_build_prefix@ top_builddir = @top_builddir@ top_srcdir = @top_srcdir@ -SUBDIRS = libltdl include include/dvbpsi src/dvbpsi src src/plugins -dvbstreamerdocdir = ${prefix}/doc/DVBStreamer +SUBDIRS = include include/dvbpsi src/dvbpsi src src/plugins + +#AM: this is the file system standard +dvbstreamerdocdir = ${prefix}/share/doc/dvbstreamer dvbstreamerdoc_DATA = \ README\ COPYING\ @@ -236,15 +279,15 @@ @for dep in $?; do \ case '$(am__configure_deps)' in \ *$$dep*) \ - echo ' cd $(srcdir) && $(AUTOMAKE) --gnu '; \ - cd $(srcdir) && $(AUTOMAKE) --gnu \ + echo ' cd $(srcdir) && $(AUTOMAKE) --gnu'; \ + $(am__cd) $(srcdir) && $(AUTOMAKE) --gnu \ && exit 0; \ exit 1;; \ esac; \ done; \ - echo ' cd $(top_srcdir) && $(AUTOMAKE) --gnu Makefile'; \ - cd $(top_srcdir) && \ - $(AUTOMAKE) --gnu Makefile + echo ' cd $(top_srcdir) && $(AUTOMAKE) --gnu Makefile'; \ + $(am__cd) $(top_srcdir) && \ + $(AUTOMAKE) --gnu Makefile .PRECIOUS: Makefile Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status @case '$?' in \ @@ -260,9 +303,10 @@ $(SHELL) ./config.status --recheck $(top_srcdir)/configure: $(am__configure_deps) - cd $(srcdir) && $(AUTOCONF) + $(am__cd) $(srcdir) && $(AUTOCONF) $(ACLOCAL_M4): $(am__aclocal_m4_deps) - cd $(srcdir) && $(ACLOCAL) $(ACLOCAL_AMFLAGS) + $(am__cd) $(srcdir) && $(ACLOCAL) $(ACLOCAL_AMFLAGS) +$(am__aclocal_m4_deps): config.h: stamp-h1 @if test ! -f $@; then \ @@ -274,7 +318,7 @@ @rm -f stamp-h1 cd $(top_builddir) && $(SHELL) ./config.status config.h $(srcdir)/config.h.in: $(am__configure_deps) - cd $(top_srcdir) && $(AUTOHEADER) + ($(am__cd) $(top_srcdir) && $(AUTOHEADER)) rm -f stamp-h1 touch $@ @@ -292,37 +336,43 @@ install-dvbstreamerdocDATA: $(dvbstreamerdoc_DATA) @$(NORMAL_INSTALL) test -z "$(dvbstreamerdocdir)" || $(MKDIR_P) "$(DESTDIR)$(dvbstreamerdocdir)" - @list='$(dvbstreamerdoc_DATA)'; for p in $$list; do \ + @list='$(dvbstreamerdoc_DATA)'; test -n "$(dvbstreamerdocdir)" || list=; \ + for p in $$list; do \ if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \ - f=$(am__strip_dir) \ - echo " $(dvbstreamerdocDATA_INSTALL) '$$d$$p' '$(DESTDIR)$(dvbstreamerdocdir)/$$f'"; \ - $(dvbstreamerdocDATA_INSTALL) "$$d$$p" "$(DESTDIR)$(dvbstreamerdocdir)/$$f"; \ + echo "$$d$$p"; \ + done | $(am__base_list) | \ + while read files; do \ + echo " $(INSTALL_DATA) $$files '$(DESTDIR)$(dvbstreamerdocdir)'"; \ + $(INSTALL_DATA) $$files "$(DESTDIR)$(dvbstreamerdocdir)" || exit $$?; \ done uninstall-dvbstreamerdocDATA: @$(NORMAL_UNINSTALL) - @list='$(dvbstreamerdoc_DATA)'; for p in $$list; do \ - f=$(am__strip_dir) \ - echo " rm -f '$(DESTDIR)$(dvbstreamerdocdir)/$$f'"; \ - rm -f "$(DESTDIR)$(dvbstreamerdocdir)/$$f"; \ - done + @list='$(dvbstreamerdoc_DATA)'; test -n "$(dvbstreamerdocdir)" || list=; \ + files=`for p in $$list; do echo $$p; done | sed -e 's|^.*/||'`; \ + test -n "$$files" || exit 0; \ + echo " ( cd '$(DESTDIR)$(dvbstreamerdocdir)' && rm -f" $$files ")"; \ + cd "$(DESTDIR)$(dvbstreamerdocdir)" && rm -f $$files install-pkgincludeDATA: $(pkginclude_DATA) @$(NORMAL_INSTALL) test -z "$(pkgincludedir)" || $(MKDIR_P) "$(DESTDIR)$(pkgincludedir)" - @list='$(pkginclude_DATA)'; for p in $$list; do \ + @list='$(pkginclude_DATA)'; test -n "$(pkgincludedir)" || list=; \ + for p in $$list; do \ if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \ - f=$(am__strip_dir) \ - echo " $(pkgincludeDATA_INSTALL) '$$d$$p' '$(DESTDIR)$(pkgincludedir)/$$f'"; \ - $(pkgincludeDATA_INSTALL) "$$d$$p" "$(DESTDIR)$(pkgincludedir)/$$f"; \ + echo "$$d$$p"; \ + done | $(am__base_list) | \ + while read files; do \ + echo " $(INSTALL_DATA) $$files '$(DESTDIR)$(pkgincludedir)'"; \ + $(INSTALL_DATA) $$files "$(DESTDIR)$(pkgincludedir)" || exit $$?; \ done uninstall-pkgincludeDATA: @$(NORMAL_UNINSTALL) - @list='$(pkginclude_DATA)'; for p in $$list; do \ - f=$(am__strip_dir) \ - echo " rm -f '$(DESTDIR)$(pkgincludedir)/$$f'"; \ - rm -f "$(DESTDIR)$(pkgincludedir)/$$f"; \ - done + @list='$(pkginclude_DATA)'; test -n "$(pkgincludedir)" || list=; \ + files=`for p in $$list; do echo $$p; done | sed -e 's|^.*/||'`; \ + test -n "$$files" || exit 0; \ + echo " ( cd '$(DESTDIR)$(pkgincludedir)' && rm -f" $$files ")"; \ + cd "$(DESTDIR)$(pkgincludedir)" && rm -f $$files # This directory's subdirectories are mostly independent; you can cd # into them and run `make' without going through this Makefile. @@ -331,7 +381,7 @@ # (which will cause the Makefiles to be regenerated when you run `make'); # (2) otherwise, pass the desired values on the `make' command line. $(RECURSIVE_TARGETS): - @failcom='exit 1'; \ + @fail= failcom='exit 1'; \ for f in x $$MAKEFLAGS; do \ case $$f in \ *=* | --[!k]*);; \ @@ -348,7 +398,7 @@ else \ local_target="$$target"; \ fi; \ - (cd $$subdir && $(MAKE) $(AM_MAKEFLAGS) $$local_target) \ + ($(am__cd) $$subdir && $(MAKE) $(AM_MAKEFLAGS) $$local_target) \ || eval $$failcom; \ done; \ if test "$$dot_seen" = "no"; then \ @@ -356,7 +406,7 @@ fi; test -z "$$fail" $(RECURSIVE_CLEAN_TARGETS): - @failcom='exit 1'; \ + @fail= failcom='exit 1'; \ for f in x $$MAKEFLAGS; do \ case $$f in \ *=* | --[!k]*);; \ @@ -382,16 +432,16 @@ else \ local_target="$$target"; \ fi; \ - (cd $$subdir && $(MAKE) $(AM_MAKEFLAGS) $$local_target) \ + ($(am__cd) $$subdir && $(MAKE) $(AM_MAKEFLAGS) $$local_target) \ || eval $$failcom; \ done && test -z "$$fail" tags-recursive: list='$(SUBDIRS)'; for subdir in $$list; do \ - test "$$subdir" = . || (cd $$subdir && $(MAKE) $(AM_MAKEFLAGS) tags); \ + test "$$subdir" = . || ($(am__cd) $$subdir && $(MAKE) $(AM_MAKEFLAGS) tags); \ done ctags-recursive: list='$(SUBDIRS)'; for subdir in $$list; do \ - test "$$subdir" = . || (cd $$subdir && $(MAKE) $(AM_MAKEFLAGS) ctags); \ + test "$$subdir" = . || ($(am__cd) $$subdir && $(MAKE) $(AM_MAKEFLAGS) ctags); \ done ID: $(HEADERS) $(SOURCES) $(LISP) $(TAGS_FILES) @@ -406,7 +456,7 @@ TAGS: tags-recursive $(HEADERS) $(SOURCES) config.h.in $(TAGS_DEPENDENCIES) \ $(TAGS_FILES) $(LISP) - tags=; \ + set x; \ here=`pwd`; \ if ($(ETAGS) --etags-include --version) >/dev/null 2>&1; then \ include_option=--etags-include; \ @@ -418,7 +468,7 @@ list='$(SUBDIRS)'; for subdir in $$list; do \ if test "$$subdir" = .; then :; else \ test ! -f $$subdir/TAGS || \ - tags="$$tags $$include_option=$$here/$$subdir/TAGS"; \ + set "$$@" "$$include_option=$$here/$$subdir/TAGS"; \ fi; \ done; \ list='$(SOURCES) $(HEADERS) config.h.in $(LISP) $(TAGS_FILES)'; \ @@ -427,36 +477,41 @@ done | \ $(AWK) '{ files[$$0] = 1; nonempty = 1; } \ END { if (nonempty) { for (i in files) print i; }; }'`; \ - if test -z "$(ETAGS_ARGS)$$tags$$unique"; then :; else \ + shift; \ + if test -z "$(ETAGS_ARGS)$$*$$unique"; then :; else \ test -n "$$unique" || unique=$$empty_fix; \ - $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ - $$tags $$unique; \ + if test $$# -gt 0; then \ + $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ + "$$@" $$unique; \ + else \ + $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ + $$unique; \ + fi; \ fi ctags: CTAGS CTAGS: ctags-recursive $(HEADERS) $(SOURCES) config.h.in $(TAGS_DEPENDENCIES) \ $(TAGS_FILES) $(LISP) - tags=; \ list='$(SOURCES) $(HEADERS) config.h.in $(LISP) $(TAGS_FILES)'; \ unique=`for i in $$list; do \ if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ done | \ $(AWK) '{ files[$$0] = 1; nonempty = 1; } \ END { if (nonempty) { for (i in files) print i; }; }'`; \ - test -z "$(CTAGS_ARGS)$$tags$$unique" \ + test -z "$(CTAGS_ARGS)$$unique" \ || $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \ - $$tags $$unique + $$unique GTAGS: here=`$(am__cd) $(top_builddir) && pwd` \ - && cd $(top_srcdir) \ - && gtags -i $(GTAGS_ARGS) $$here + && $(am__cd) $(top_srcdir) \ + && gtags -i $(GTAGS_ARGS) "$$here" distclean-tags: -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags distdir: $(DISTFILES) $(am__remove_distdir) - test -d $(distdir) || mkdir $(distdir) + test -d "$(distdir)" || mkdir "$(distdir)" @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ list='$(DISTFILES)'; \ @@ -472,29 +527,44 @@ if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \ if test -d $$d/$$file; then \ dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \ + if test -d "$(distdir)/$$file"; then \ + find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ + fi; \ if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \ - cp -pR $(srcdir)/$$file $(distdir)$$dir || exit 1; \ + cp -fpR $(srcdir)/$$file "$(distdir)$$dir" || exit 1; \ + find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ fi; \ - cp -pR $$d/$$file $(distdir)$$dir || exit 1; \ + cp -fpR $$d/$$file "$(distdir)$$dir" || exit 1; \ else \ - test -f $(distdir)/$$file \ - || cp -p $$d/$$file $(distdir)/$$file \ + test -f "$(distdir)/$$file" \ + || cp -p $$d/$$file "$(distdir)/$$file" \ || exit 1; \ fi; \ done - list='$(DIST_SUBDIRS)'; for subdir in $$list; do \ + @list='$(DIST_SUBDIRS)'; for subdir in $$list; do \ if test "$$subdir" = .; then :; else \ test -d "$(distdir)/$$subdir" \ || $(MKDIR_P) "$(distdir)/$$subdir" \ || exit 1; \ - distdir=`$(am__cd) $(distdir) && pwd`; \ - top_distdir=`$(am__cd) $(top_distdir) && pwd`; \ - (cd $$subdir && \ + fi; \ + done + @list='$(DIST_SUBDIRS)'; for subdir in $$list; do \ + if test "$$subdir" = .; then :; else \ + dir1=$$subdir; dir2="$(distdir)/$$subdir"; \ + $(am__relativize); \ + new_distdir=$$reldir; \ + dir1=$$subdir; dir2="$(top_distdir)"; \ + $(am__relativize); \ + new_top_distdir=$$reldir; \ + echo " (cd $$subdir && $(MAKE) $(AM_MAKEFLAGS) top_distdir="$$new_top_distdir" distdir="$$new_distdir" \\"; \ + echo " am__remove_distdir=: am__skip_length_check=: am__skip_mode_fix=: distdir)"; \ + ($(am__cd) $$subdir && \ $(MAKE) $(AM_MAKEFLAGS) \ - top_distdir="$$top_distdir" \ - distdir="$$distdir/$$subdir" \ + top_distdir="$$new_top_distdir" \ + distdir="$$new_distdir" \ am__remove_distdir=: \ am__skip_length_check=: \ + am__skip_mode_fix=: \ distdir) \ || exit 1; \ fi; \ @@ -502,11 +572,13 @@ $(MAKE) $(AM_MAKEFLAGS) \ top_distdir="$(top_distdir)" distdir="$(distdir)" \ dist-hook - -find $(distdir) -type d ! -perm -777 -exec chmod a+rwx {} \; -o \ + -test -n "$(am__skip_mode_fix)" \ + || find "$(distdir)" -type d ! -perm -755 \ + -exec chmod u+rwx,go+rx {} \; -o \ ! -type d ! -perm -444 -links 1 -exec chmod a+r {} \; -o \ ! -type d ! -perm -400 -exec chmod a+r {} \; -o \ ! -type d ! -perm -444 -exec $(install_sh) -c -m a+r {} {} \; \ - || chmod -R a+r $(distdir) + || chmod -R a+r "$(distdir)" dist-gzip: distdir tardir=$(distdir) && $(am__tar) | GZIP=$(GZIP_ENV) gzip -c >$(distdir).tar.gz $(am__remove_distdir) @@ -519,6 +591,10 @@ tardir=$(distdir) && $(am__tar) | lzma -9 -c >$(distdir).tar.lzma $(am__remove_distdir) +dist-xz: distdir + tardir=$(distdir) && $(am__tar) | xz -c >$(distdir).tar.xz + $(am__remove_distdir) + dist-tarZ: distdir tardir=$(distdir) && $(am__tar) | compress -c >$(distdir).tar.Z $(am__remove_distdir) @@ -542,15 +618,17 @@ distcheck: dist case '$(DIST_ARCHIVES)' in \ *.tar.gz*) \ - GZIP=$(GZIP_ENV) gunzip -c $(distdir).tar.gz | $(am__untar) ;;\ + GZIP=$(GZIP_ENV) gzip -dc $(distdir).tar.gz | $(am__untar) ;;\ *.tar.bz2*) \ - bunzip2 -c $(distdir).tar.bz2 | $(am__untar) ;;\ + bzip2 -dc $(distdir).tar.bz2 | $(am__untar) ;;\ *.tar.lzma*) \ - unlzma -c $(distdir).tar.lzma | $(am__untar) ;;\ + lzma -dc $(distdir).tar.lzma | $(am__untar) ;;\ + *.tar.xz*) \ + xz -dc $(distdir).tar.xz | $(am__untar) ;;\ *.tar.Z*) \ uncompress -c $(distdir).tar.Z | $(am__untar) ;;\ *.shar.gz*) \ - GZIP=$(GZIP_ENV) gunzip -c $(distdir).shar.gz | unshar ;;\ + GZIP=$(GZIP_ENV) gzip -dc $(distdir).shar.gz | unshar ;;\ *.zip*) \ unzip $(distdir).zip ;;\ esac @@ -558,9 +636,11 @@ mkdir $(distdir)/_build mkdir $(distdir)/_inst chmod a-w $(distdir) + test -d $(distdir)/_build || exit 0; \ dc_install_base=`$(am__cd) $(distdir)/_inst && pwd | sed -e 's,^[^:\\/]:[\\/],/,'` \ && dc_destdir="$${TMPDIR-/tmp}/am-dc-$$$$/" \ - && cd $(distdir)/_build \ + && am__cwd=`pwd` \ + && $(am__cd) $(distdir)/_build \ && ../configure --srcdir=.. --prefix="$$dc_install_base" \ $(DISTCHECK_CONFIGURE_FLAGS) \ && $(MAKE) $(AM_MAKEFLAGS) \ @@ -582,13 +662,15 @@ && rm -rf "$$dc_destdir" \ && $(MAKE) $(AM_MAKEFLAGS) dist \ && rm -rf $(DIST_ARCHIVES) \ - && $(MAKE) $(AM_MAKEFLAGS) distcleancheck + && $(MAKE) $(AM_MAKEFLAGS) distcleancheck \ + && cd "$$am__cwd" \ + || exit 1 $(am__remove_distdir) @(echo "$(distdir) archives ready for distribution: "; \ list='$(DIST_ARCHIVES)'; for i in $$list; do echo $$i; done) | \ sed -e 1h -e 1s/./=/g -e 1p -e 1x -e '$$p' -e '$$x' distuninstallcheck: - @cd $(distuninstallcheck_dir) \ + @$(am__cd) '$(distuninstallcheck_dir)' \ && test `$(distuninstallcheck_listfiles) | wc -l` -le 1 \ || { echo "ERROR: files left after uninstall:" ; \ if test -n "$(DESTDIR)"; then \ @@ -633,6 +715,7 @@ distclean-generic: -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES) + -test . = "$(srcdir)" || test -z "$(CONFIG_CLEAN_VPATH_FILES)" || rm -f $(CONFIG_CLEAN_VPATH_FILES) maintainer-clean-generic: @echo "This command is intended for maintainers to use" @@ -653,6 +736,8 @@ html: html-recursive +html-am: + info: info-recursive info-am: @@ -661,18 +746,28 @@ install-dvi: install-dvi-recursive +install-dvi-am: + install-exec-am: install-html: install-html-recursive +install-html-am: + install-info: install-info-recursive +install-info-am: + install-man: install-pdf: install-pdf-recursive +install-pdf-am: + install-ps: install-ps-recursive +install-ps-am: + installcheck-am: maintainer-clean: maintainer-clean-recursive @@ -695,14 +790,14 @@ uninstall-am: uninstall-dvbstreamerdocDATA uninstall-pkgincludeDATA -.MAKE: $(RECURSIVE_CLEAN_TARGETS) $(RECURSIVE_TARGETS) install-am \ - install-strip +.MAKE: $(RECURSIVE_CLEAN_TARGETS) $(RECURSIVE_TARGETS) all \ + ctags-recursive install-am install-strip tags-recursive .PHONY: $(RECURSIVE_CLEAN_TARGETS) $(RECURSIVE_TARGETS) CTAGS GTAGS \ all all-am am--refresh check check-am clean clean-generic \ clean-libtool ctags ctags-recursive dist dist-all dist-bzip2 \ - dist-gzip dist-hook dist-lzma dist-shar dist-tarZ dist-zip \ - distcheck distclean distclean-generic distclean-hdr \ + dist-gzip dist-hook dist-lzma dist-shar dist-tarZ dist-xz \ + dist-zip distcheck distclean distclean-generic distclean-hdr \ distclean-libtool distclean-tags distcleancheck distdir \ distuninstallcheck dvi dvi-am html html-am info info-am \ install install-am install-data install-data-am \ @@ -724,6 +819,7 @@ cp -p $$specfile $(distdir); \ fi \ done + # Tell versions [3.59,3.63) of GNU make to not export all variables. # Otherwise a system limit (for SysV at least) may be exceeded. .NOEXPORT: Index: dvbstreamer-2~svn777/trunk/depcomp =================================================================== --- dvbstreamer-2~svn777.orig/trunk/depcomp 2010-05-09 17:43:28.000000000 +0200 +++ dvbstreamer-2~svn777/trunk/depcomp 2010-05-09 17:44:05.000000000 +0200 @@ -1,10 +1,10 @@ #! /bin/sh # depcomp - compile a program generating dependencies as side-effects -scriptversion=2007-03-29.01 +scriptversion=2009-04-28.21; # UTC -# Copyright (C) 1999, 2000, 2003, 2004, 2005, 2006, 2007 Free Software -# Foundation, Inc. +# Copyright (C) 1999, 2000, 2003, 2004, 2005, 2006, 2007, 2009 Free +# Software Foundation, Inc. # This program is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by @@ -17,9 +17,7 @@ # GNU General Public License for more details. # You should have received a copy of the GNU General Public License -# along with this program; if not, write to the Free Software -# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA -# 02110-1301, USA. +# along with this program. If not, see . # As a special exception to the GNU General Public License, if you # distribute this file as part of a program that contains a @@ -87,6 +85,15 @@ depmode=dashmstdout fi +cygpath_u="cygpath -u -f -" +if test "$depmode" = msvcmsys; then + # This is just like msvisualcpp but w/o cygpath translation. + # Just convert the backslash-escaped backslashes to single forward + # slashes to satisfy depend.m4 + cygpath_u="sed s,\\\\\\\\,/,g" + depmode=msvisualcpp +fi + case "$depmode" in gcc3) ## gcc 3 implements dependency tracking that does exactly what @@ -192,14 +199,14 @@ ' < "$tmpdepfile" \ | sed -e 's/^.*\.o://' -e 's/#.*$//' -e '/^$/ d' | \ tr ' -' ' ' >> $depfile - echo >> $depfile +' ' ' >> "$depfile" + echo >> "$depfile" # The second pass generates a dummy entry for each header file. tr ' ' ' ' < "$tmpdepfile" \ | sed -e 's/^.*\.o://' -e 's/#.*$//' -e '/^$/ d' -e 's/$/:/' \ - >> $depfile + >> "$depfile" else # The sourcefile does not contain any dependencies, so just # store a dummy comment line, to avoid errors with the Makefile @@ -328,7 +335,12 @@ if test -f "$tmpdepfile"; then sed -e "s,^.*\.[a-z]*:,$object:," "$tmpdepfile" > "$depfile" # Add `dependent.h:' lines. - sed -ne '2,${; s/^ *//; s/ \\*$//; s/$/:/; p;}' "$tmpdepfile" >> "$depfile" + sed -ne '2,${ + s/^ *// + s/ \\*$// + s/$/:/ + p + }' "$tmpdepfile" >> "$depfile" else echo "#dummy" > "$depfile" fi @@ -404,7 +416,7 @@ # Remove the call to Libtool. if test "$libtool" = yes; then - while test $1 != '--mode=compile'; do + while test "X$1" != 'X--mode=compile'; do shift done shift @@ -455,32 +467,39 @@ "$@" || exit $? # Remove any Libtool call if test "$libtool" = yes; then - while test $1 != '--mode=compile'; do + while test "X$1" != 'X--mode=compile'; do shift done shift fi # X makedepend shift - cleared=no - for arg in "$@"; do + cleared=no eat=no + for arg + do case $cleared in no) set ""; shift cleared=yes ;; esac + if test $eat = yes; then + eat=no + continue + fi case "$arg" in -D*|-I*) set fnord "$@" "$arg"; shift ;; # Strip any option that makedepend may not understand. Remove # the object too, otherwise makedepend will parse it as a source file. + -arch) + eat=yes ;; -*|$object) ;; *) set fnord "$@" "$arg"; shift ;; esac done - obj_suffix="`echo $object | sed 's/^.*\././'`" + obj_suffix=`echo "$object" | sed 's/^.*\././'` touch "$tmpdepfile" ${MAKEDEPEND-makedepend} -o"$obj_suffix" -f"$tmpdepfile" "$@" rm -f "$depfile" @@ -500,7 +519,7 @@ # Remove the call to Libtool. if test "$libtool" = yes; then - while test $1 != '--mode=compile'; do + while test "X$1" != 'X--mode=compile'; do shift done shift @@ -538,13 +557,27 @@ msvisualcpp) # Important note: in order to support this mode, a compiler *must* - # always write the preprocessed file to stdout, regardless of -o, - # because we must use -o when running libtool. + # always write the preprocessed file to stdout. "$@" || exit $? + + # Remove the call to Libtool. + if test "$libtool" = yes; then + while test "X$1" != 'X--mode=compile'; do + shift + done + shift + fi + IFS=" " for arg do case "$arg" in + -o) + shift + ;; + $object) + shift + ;; "-Gm"|"/Gm"|"-Gi"|"/Gi"|"-ZI"|"/ZI") set fnord "$@" shift @@ -557,16 +590,23 @@ ;; esac done - "$@" -E | - sed -n '/^#line [0-9][0-9]* "\([^"]*\)"/ s::echo "`cygpath -u \\"\1\\"`":p' | sort | uniq > "$tmpdepfile" + "$@" -E 2>/dev/null | + sed -n '/^#line [0-9][0-9]* "\([^"]*\)"/ s::\1:p' | $cygpath_u | sort -u > "$tmpdepfile" rm -f "$depfile" echo "$object : \\" > "$depfile" - . "$tmpdepfile" | sed 's% %\\ %g' | sed -n '/^\(.*\)$/ s:: \1 \\:p' >> "$depfile" + sed < "$tmpdepfile" -n -e 's% %\\ %g' -e '/^\(.*\)$/ s:: \1 \\:p' >> "$depfile" echo " " >> "$depfile" - . "$tmpdepfile" | sed 's% %\\ %g' | sed -n '/^\(.*\)$/ s::\1\::p' >> "$depfile" + sed < "$tmpdepfile" -n -e 's% %\\ %g' -e '/^\(.*\)$/ s::\1\::p' >> "$depfile" rm -f "$tmpdepfile" ;; +msvcmsys) + # This case exists only to let depend.m4 do its work. It works by + # looking at the text of this script. This case will never be run, + # since it is checked for above. + exit 1 + ;; + none) exec "$@" ;; @@ -585,5 +625,6 @@ # eval: (add-hook 'write-file-hooks 'time-stamp) # time-stamp-start: "scriptversion=" # time-stamp-format: "%:y-%02m-%02d.%02H" -# time-stamp-end: "$" +# time-stamp-time-zone: "UTC" +# time-stamp-end: "; # UTC" # End: Index: dvbstreamer-2~svn777/trunk/missing =================================================================== --- dvbstreamer-2~svn777.orig/trunk/missing 2010-05-09 17:43:28.000000000 +0200 +++ dvbstreamer-2~svn777/trunk/missing 2010-05-09 17:44:04.000000000 +0200 @@ -1,10 +1,10 @@ #! /bin/sh # Common stub for a few missing GNU programs while installing. -scriptversion=2006-05-10.23 +scriptversion=2009-04-28.21; # UTC -# Copyright (C) 1996, 1997, 1999, 2000, 2002, 2003, 2004, 2005, 2006 -# Free Software Foundation, Inc. +# Copyright (C) 1996, 1997, 1999, 2000, 2002, 2003, 2004, 2005, 2006, +# 2008, 2009 Free Software Foundation, Inc. # Originally by Fran,cois Pinard , 1996. # This program is free software; you can redistribute it and/or modify @@ -18,9 +18,7 @@ # GNU General Public License for more details. # You should have received a copy of the GNU General Public License -# along with this program; if not, write to the Free Software -# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA -# 02110-1301, USA. +# along with this program. If not, see . # As a special exception to the GNU General Public License, if you # distribute this file as part of a program that contains a @@ -89,6 +87,9 @@ tar try tar, gnutar, gtar, then tar without non-portable flags yacc create \`y.tab.[ch]', if possible, from existing .[ch] +Version suffixes to PROGRAM as well as the prefixes \`gnu-', \`gnu', and +\`g' are ignored when checking the name. + Send bug reports to ." exit $? ;; @@ -106,15 +107,22 @@ esac +# normalize program name to check for. +program=`echo "$1" | sed ' + s/^gnu-//; t + s/^gnu//; t + s/^g//; t'` + # Now exit if we have it, but it failed. Also exit now if we # don't have it and --version was passed (most likely to detect -# the program). +# the program). This is about non-GNU programs, so use $1 not +# $program. case $1 in - lex|yacc) + lex*|yacc*) # Not GNU programs, they don't have --version. ;; - tar) + tar*) if test -n "$run"; then echo 1>&2 "ERROR: \`tar' requires --run" exit 1 @@ -138,7 +146,7 @@ # If it does not exist, or fails to run (possibly an outdated version), # try to emulate it. -case $1 in +case $program in aclocal*) echo 1>&2 "\ WARNING: \`$1' is $msg. You should only need it if @@ -148,7 +156,7 @@ touch aclocal.m4 ;; - autoconf) + autoconf*) echo 1>&2 "\ WARNING: \`$1' is $msg. You should only need it if you modified \`${configure_ac}'. You might want to install the @@ -157,7 +165,7 @@ touch configure ;; - autoheader) + autoheader*) echo 1>&2 "\ WARNING: \`$1' is $msg. You should only need it if you modified \`acconfig.h' or \`${configure_ac}'. You might want @@ -187,7 +195,7 @@ while read f; do touch "$f"; done ;; - autom4te) + autom4te*) echo 1>&2 "\ WARNING: \`$1' is needed, but is $msg. You might have modified some files without having the @@ -210,7 +218,7 @@ fi ;; - bison|yacc) + bison*|yacc*) echo 1>&2 "\ WARNING: \`$1' $msg. You should only need it if you modified a \`.y' file. You may need the \`Bison' package @@ -240,7 +248,7 @@ fi ;; - lex|flex) + lex*|flex*) echo 1>&2 "\ WARNING: \`$1' is $msg. You should only need it if you modified a \`.l' file. You may need the \`Flex' package @@ -263,7 +271,7 @@ fi ;; - help2man) + help2man*) echo 1>&2 "\ WARNING: \`$1' is $msg. You should only need it if you modified a dependency of a manual page. You may need the @@ -277,11 +285,11 @@ else test -z "$file" || exec >$file echo ".ab help2man is required to generate this page" - exit 1 + exit $? fi ;; - makeinfo) + makeinfo*) echo 1>&2 "\ WARNING: \`$1' is $msg. You should only need it if you modified a \`.texi' or \`.texinfo' file, or any other file @@ -310,7 +318,7 @@ touch $file ;; - tar) + tar*) shift # We have already tried tar in the generic part. @@ -363,5 +371,6 @@ # eval: (add-hook 'write-file-hooks 'time-stamp) # time-stamp-start: "scriptversion=" # time-stamp-format: "%:y-%02m-%02d.%02H" -# time-stamp-end: "$" +# time-stamp-time-zone: "UTC" +# time-stamp-end: "; # UTC" # End: Index: dvbstreamer-2~svn777/trunk/INSTALL =================================================================== --- dvbstreamer-2~svn777.orig/trunk/INSTALL 2010-05-09 17:43:28.000000000 +0200 +++ dvbstreamer-2~svn777/trunk/INSTALL 2010-05-09 17:44:05.000000000 +0200 @@ -4,8 +4,10 @@ Copyright (C) 1994, 1995, 1996, 1999, 2000, 2001, 2002, 2004, 2005, 2006, 2007, 2008, 2009 Free Software Foundation, Inc. - This file is free documentation; the Free Software Foundation gives -unlimited permission to copy, distribute and modify it. + Copying and distribution of this file, with or without modification, +are permitted in any medium without royalty provided the copyright +notice and this notice are preserved. This file is offered as-is, +without warranty of any kind. Basic Installation ================== @@ -13,7 +15,11 @@ Briefly, the shell commands `./configure; make; make install' should configure, build, and install this package. The following more-detailed instructions are generic; see the `README' file for -instructions specific to this package. +instructions specific to this package. Some packages provide this +`INSTALL' file but do not implement all of the features documented +below. The lack of an optional feature in a given package is not +necessarily a bug. More recommendations for GNU packages can be found +in *note Makefile Conventions: (standards)Makefile Conventions. The `configure' shell script attempts to guess correct values for various system-dependent variables used during compilation. It uses @@ -42,7 +48,7 @@ you want to change it or regenerate `configure' using a newer version of `autoconf'. -The simplest way to compile this package is: + The simplest way to compile this package is: 1. `cd' to the directory containing the package's source code and type `./configure' to configure the package for your system. @@ -53,12 +59,22 @@ 2. Type `make' to compile the package. 3. Optionally, type `make check' to run any self-tests that come with - the package. + the package, generally using the just-built uninstalled binaries. 4. Type `make install' to install the programs and any data files and - documentation. + documentation. When installing into a prefix owned by root, it is + recommended that the package be configured and built as a regular + user, and only the `make install' phase executed with root + privileges. + + 5. Optionally, type `make installcheck' to repeat any self-tests, but + this time using the binaries in their final installed location. + This target does not install anything. Running this target as a + regular user, particularly if the prior `make install' required + root privileges, verifies that the installation completed + correctly. - 5. You can remove the program binaries and object files from the + 6. You can remove the program binaries and object files from the source code directory by typing `make clean'. To also remove the files that `configure' created (so you can compile the package for a different kind of computer), type `make distclean'. There is @@ -67,8 +83,15 @@ all sorts of other programs in order to regenerate files that came with the distribution. - 6. Often, you can also type `make uninstall' to remove the installed - files again. + 7. Often, you can also type `make uninstall' to remove the installed + files again. In practice, not all packages have tested that + uninstallation works correctly, even though it is required by the + GNU Coding Standards. + + 8. Some packages, particularly those that use Automake, provide `make + distcheck', which can by used by developers to test that all other + targets like `make install' and `make uninstall' work correctly. + This target is generally not run by end users. Compilers and Options ===================== @@ -93,7 +116,8 @@ own directory. To do this, you can use GNU `make'. `cd' to the directory where you want the object files and executables to go and run the `configure' script. `configure' automatically checks for the -source code in the directory that `configure' is in and in `..'. +source code in the directory that `configure' is in and in `..'. This +is known as a "VPATH" build. With a non-GNU `make', it is safer to compile the package for one architecture at a time in the source code directory. After you have @@ -120,7 +144,8 @@ By default, `make install' installs the package's commands under `/usr/local/bin', include files under `/usr/local/include', etc. You can specify an installation prefix other than `/usr/local' by giving -`configure' the option `--prefix=PREFIX'. +`configure' the option `--prefix=PREFIX', where PREFIX must be an +absolute file name. You can specify separate installation prefixes for architecture-specific files and architecture-independent files. If you @@ -131,15 +156,46 @@ In addition, if you use an unusual directory layout you can give options like `--bindir=DIR' to specify different values for particular kinds of files. Run `configure --help' for a list of the directories -you can set and what kinds of files go in them. +you can set and what kinds of files go in them. In general, the +default for these options is expressed in terms of `${prefix}', so that +specifying just `--prefix' will affect all of the other directory +specifications that were not explicitly provided. + + The most portable way to affect installation locations is to pass the +correct locations to `configure'; however, many packages provide one or +both of the following shortcuts of passing variable assignments to the +`make install' command line to change installation locations without +having to reconfigure or recompile. + + The first method involves providing an override variable for each +affected directory. For example, `make install +prefix=/alternate/directory' will choose an alternate location for all +directory configuration variables that were expressed in terms of +`${prefix}'. Any directories that were specified during `configure', +but not in terms of `${prefix}', must each be overridden at install +time for the entire installation to be relocated. The approach of +makefile variable overrides for each directory variable is required by +the GNU Coding Standards, and ideally causes no recompilation. +However, some platforms have known limitations with the semantics of +shared libraries that end up requiring recompilation when using this +method, particularly noticeable in packages that use GNU Libtool. + + The second method involves providing the `DESTDIR' variable. For +example, `make install DESTDIR=/alternate/directory' will prepend +`/alternate/directory' before all installation names. The approach of +`DESTDIR' overrides is not required by the GNU Coding Standards, and +does not work on platforms that have drive letters. On the other hand, +it does better at avoiding recompilation issues, and works well even +when some directory options were not specified in terms of `${prefix}' +at `configure' time. + +Optional Features +================= If the package supports it, you can cause programs to be installed with an extra prefix or suffix on their names by giving `configure' the option `--program-prefix=PREFIX' or `--program-suffix=SUFFIX'. -Optional Features -================= - Some packages pay attention to `--enable-FEATURE' options to `configure', where FEATURE indicates an optional part of the package. They may also pay attention to `--with-PACKAGE' options, where PACKAGE @@ -152,6 +208,13 @@ you can use the `configure' options `--x-includes=DIR' and `--x-libraries=DIR' to specify their locations. + Some packages offer the ability to configure how verbose the +execution of `make' will be. For these packages, running `./configure +--enable-silent-rules' sets the default to minimal output, which can be +overridden with `make V=1'; while running `./configure +--disable-silent-rules' sets the default to verbose, which can be +overridden with `make V=0'. + Particular systems ================== @@ -288,7 +351,7 @@ `configure' can determine that directory automatically. `--prefix=DIR' - Use DIR as the installation prefix. *Note Installation Names:: + Use DIR as the installation prefix. *note Installation Names:: for more details, including other options available for fine-tuning the installation locations. Index: dvbstreamer-2~svn777/trunk/install-sh =================================================================== --- dvbstreamer-2~svn777.orig/trunk/install-sh 2010-05-09 17:43:28.000000000 +0200 +++ dvbstreamer-2~svn777/trunk/install-sh 2010-05-09 17:44:04.000000000 +0200 @@ -1,7 +1,7 @@ #!/bin/sh # install - install a program, script, or datafile -scriptversion=2006-12-25.00 +scriptversion=2009-04-28.21; # UTC # This originates from X11R5 (mit/util/scripts/install.sh), which was # later released in X11R6 (xc/config/util/install.sh) with the @@ -515,5 +515,6 @@ # eval: (add-hook 'write-file-hooks 'time-stamp) # time-stamp-start: "scriptversion=" # time-stamp-format: "%:y-%02m-%02d.%02H" -# time-stamp-end: "$" +# time-stamp-time-zone: "UTC" +# time-stamp-end: "; # UTC" # End: Index: dvbstreamer-2~svn777/trunk/ltmain.sh =================================================================== --- dvbstreamer-2~svn777.orig/trunk/ltmain.sh 2010-05-09 17:43:28.000000000 +0200 +++ dvbstreamer-2~svn777/trunk/ltmain.sh 2010-05-09 17:43:59.000000000 +0200 @@ -1,6 +1,6 @@ # Generated from ltmain.m4sh. -# ltmain.sh (GNU libtool) 2.2.6 +# ltmain.sh (GNU libtool) 2.2.6b # Written by Gordon Matzigkeit , 1996 # Copyright (C) 1996, 1997, 1998, 1999, 2000, 2001, 2003, 2004, 2005, 2006, 2007 2008 Free Software Foundation, Inc. @@ -65,7 +65,7 @@ # compiler: $LTCC # compiler flags: $LTCFLAGS # linker: $LD (gnu? $with_gnu_ld) -# $progname: (GNU libtool) 2.2.6 Debian-2.2.6a-4 +# $progname: (GNU libtool) 2.2.6b Debian-2.2.6b-2 # automake: $automake_version # autoconf: $autoconf_version # @@ -73,9 +73,9 @@ PROGRAM=ltmain.sh PACKAGE=libtool -VERSION="2.2.6 Debian-2.2.6a-4" +VERSION="2.2.6b Debian-2.2.6b-2" TIMESTAMP="" -package_revision=1.3012 +package_revision=1.3017 # Be Bourne compatible if test -n "${ZSH_VERSION+set}" && (emulate sh) >/dev/null 2>&1; then Index: dvbstreamer-2~svn777/trunk/config.guess =================================================================== --- dvbstreamer-2~svn777.orig/trunk/config.guess 2010-05-09 17:43:28.000000000 +0200 +++ dvbstreamer-2~svn777/trunk/config.guess 2010-05-09 17:44:04.000000000 +0200 @@ -1,10 +1,10 @@ #! /bin/sh # Attempt to guess a canonical system name. # Copyright (C) 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999, -# 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009 +# 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010 # Free Software Foundation, Inc. -timestamp='2009-06-10' +timestamp='2009-12-30' # This file is free software; you can redistribute it and/or modify it # under the terms of the GNU General Public License as published by @@ -27,16 +27,16 @@ # the same distribution terms that you use for the rest of that program. -# Originally written by Per Bothner . -# Please send patches to . Submit a context -# diff and a properly formatted ChangeLog entry. +# Originally written by Per Bothner. Please send patches (context +# diff format) to and include a ChangeLog +# entry. # # This script attempts to guess a canonical system name similar to # config.sub. If it succeeds, it prints the system name on stdout, and # exits with 0. Otherwise, it exits with 1. # -# The plan is that this can be called by configure scripts if you -# don't specify an explicit build system type. +# You can get the latest version of this script from: +# http://git.savannah.gnu.org/gitweb/?p=config.git;a=blob_plain;f=config.guess;hb=HEAD me=`echo "$0" | sed -e 's,.*/,,'` @@ -56,8 +56,9 @@ GNU config.guess ($timestamp) Originally written by Per Bothner. -Copyright (C) 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, -2002, 2003, 2004, 2005, 2006, 2007, 2008 Free Software Foundation, Inc. +Copyright (C) 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999, 2000, +2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010 Free +Software Foundation, Inc. This is free software; see the source for copying conditions. There is NO warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE." @@ -333,6 +334,9 @@ sun4*:SunOS:5.*:* | tadpole*:SunOS:5.*:*) echo sparc-sun-solaris2`echo ${UNAME_RELEASE}|sed -e 's/[^.]*//'` exit ;; + i86pc:AuroraUX:5.*:* | i86xen:AuroraUX:5.*:*) + echo i386-pc-auroraux${UNAME_RELEASE} + exit ;; i86pc:SunOS:5.*:* | i86xen:SunOS:5.*:*) eval $set_cc_for_build SUN_ARCH="i386" @@ -807,12 +811,12 @@ i*:PW*:*) echo ${UNAME_MACHINE}-pc-pw32 exit ;; - *:Interix*:[3456]*) + *:Interix*:*) case ${UNAME_MACHINE} in x86) echo i586-pc-interix${UNAME_RELEASE} exit ;; - EM64T | authenticamd | genuineintel) + authenticamd | genuineintel | EM64T) echo x86_64-unknown-interix${UNAME_RELEASE} exit ;; IA64) @@ -854,6 +858,20 @@ i*86:Minix:*:*) echo ${UNAME_MACHINE}-pc-minix exit ;; + alpha:Linux:*:*) + case `sed -n '/^cpu model/s/^.*: \(.*\)/\1/p' < /proc/cpuinfo` in + EV5) UNAME_MACHINE=alphaev5 ;; + EV56) UNAME_MACHINE=alphaev56 ;; + PCA56) UNAME_MACHINE=alphapca56 ;; + PCA57) UNAME_MACHINE=alphapca56 ;; + EV6) UNAME_MACHINE=alphaev6 ;; + EV67) UNAME_MACHINE=alphaev67 ;; + EV68*) UNAME_MACHINE=alphaev68 ;; + esac + objdump --private-headers /bin/sh | grep -q ld.so.1 + if test "$?" = 0 ; then LIBC="libc1" ; else LIBC="" ; fi + echo ${UNAME_MACHINE}-unknown-linux-gnu${LIBC} + exit ;; arm*:Linux:*:*) eval $set_cc_for_build if echo __ARM_EABI__ | $CC_FOR_BUILD -E - 2>/dev/null \ @@ -876,6 +894,17 @@ frv:Linux:*:*) echo frv-unknown-linux-gnu exit ;; + i*86:Linux:*:*) + LIBC=gnu + eval $set_cc_for_build + sed 's/^ //' << EOF >$dummy.c + #ifdef __dietlibc__ + LIBC=dietlibc + #endif +EOF + eval `$CC_FOR_BUILD -E $dummy.c 2>/dev/null | grep '^LIBC'` + echo "${UNAME_MACHINE}-pc-linux-${LIBC}" + exit ;; ia64:Linux:*:*) echo ${UNAME_MACHINE}-unknown-linux-gnu exit ;; @@ -901,39 +930,18 @@ #endif #endif EOF - eval "`$CC_FOR_BUILD -E $dummy.c 2>/dev/null | sed -n ' - /^CPU/{ - s: ::g - p - }'`" + eval `$CC_FOR_BUILD -E $dummy.c 2>/dev/null | grep '^CPU'` test x"${CPU}" != x && { echo "${CPU}-unknown-linux-gnu"; exit; } ;; or32:Linux:*:*) echo or32-unknown-linux-gnu exit ;; - ppc:Linux:*:*) - echo powerpc-unknown-linux-gnu - exit ;; - ppc64:Linux:*:*) - echo powerpc64-unknown-linux-gnu - exit ;; - alpha:Linux:*:*) - case `sed -n '/^cpu model/s/^.*: \(.*\)/\1/p' < /proc/cpuinfo` in - EV5) UNAME_MACHINE=alphaev5 ;; - EV56) UNAME_MACHINE=alphaev56 ;; - PCA56) UNAME_MACHINE=alphapca56 ;; - PCA57) UNAME_MACHINE=alphapca56 ;; - EV6) UNAME_MACHINE=alphaev6 ;; - EV67) UNAME_MACHINE=alphaev67 ;; - EV68*) UNAME_MACHINE=alphaev68 ;; - esac - objdump --private-headers /bin/sh | grep -q ld.so.1 - if test "$?" = 0 ; then LIBC="libc1" ; else LIBC="" ; fi - echo ${UNAME_MACHINE}-unknown-linux-gnu${LIBC} - exit ;; padre:Linux:*:*) echo sparc-unknown-linux-gnu exit ;; + parisc64:Linux:*:* | hppa64:Linux:*:*) + echo hppa64-unknown-linux-gnu + exit ;; parisc:Linux:*:* | hppa:Linux:*:*) # Look for CPU level case `grep '^cpu[^a-z]*:' /proc/cpuinfo 2>/dev/null | cut -d' ' -f2` in @@ -942,8 +950,11 @@ *) echo hppa-unknown-linux-gnu ;; esac exit ;; - parisc64:Linux:*:* | hppa64:Linux:*:*) - echo hppa64-unknown-linux-gnu + ppc64:Linux:*:*) + echo powerpc64-unknown-linux-gnu + exit ;; + ppc:Linux:*:*) + echo powerpc-unknown-linux-gnu exit ;; s390:Linux:*:* | s390x:Linux:*:*) echo ${UNAME_MACHINE}-ibm-linux @@ -966,58 +977,6 @@ xtensa*:Linux:*:*) echo ${UNAME_MACHINE}-unknown-linux-gnu exit ;; - i*86:Linux:*:*) - # The BFD linker knows what the default object file format is, so - # first see if it will tell us. cd to the root directory to prevent - # problems with other programs or directories called `ld' in the path. - # Set LC_ALL=C to ensure ld outputs messages in English. - ld_supported_targets=`cd /; LC_ALL=C ld --help 2>&1 \ - | sed -ne '/supported targets:/!d - s/[ ][ ]*/ /g - s/.*supported targets: *// - s/ .*// - p'` - case "$ld_supported_targets" in - elf32-i386) - TENTATIVE="${UNAME_MACHINE}-pc-linux-gnu" - ;; - esac - # Determine whether the default compiler is a.out or elf - eval $set_cc_for_build - sed 's/^ //' << EOF >$dummy.c - #include - #ifdef __ELF__ - # ifdef __GLIBC__ - # if __GLIBC__ >= 2 - LIBC=gnu - # else - LIBC=gnulibc1 - # endif - # else - LIBC=gnulibc1 - # endif - #else - #if defined(__INTEL_COMPILER) || defined(__PGI) || defined(__SUNPRO_C) || defined(__SUNPRO_CC) - LIBC=gnu - #else - LIBC=gnuaout - #endif - #endif - #ifdef __dietlibc__ - LIBC=dietlibc - #endif -EOF - eval "`$CC_FOR_BUILD -E $dummy.c 2>/dev/null | sed -n ' - /^LIBC/{ - s: ::g - p - }'`" - test x"${LIBC}" != x && { - echo "${UNAME_MACHINE}-pc-linux-${LIBC}" - exit - } - test x"${TENTATIVE}" != x && { echo "${TENTATIVE}"; exit; } - ;; i*86:DYNIX/ptx:4*:*) # ptx 4.0 does uname -s correctly, with DYNIX/ptx in there. # earlier versions are messed up and put the nodename in both @@ -1247,6 +1206,16 @@ *:Darwin:*:*) UNAME_PROCESSOR=`uname -p` || UNAME_PROCESSOR=unknown case $UNAME_PROCESSOR in + i386) + eval $set_cc_for_build + if [ "$CC_FOR_BUILD" != 'no_compiler_found' ]; then + if (echo '#ifdef __LP64__'; echo IS_64BIT_ARCH; echo '#endif') | \ + (CCOPTS= $CC_FOR_BUILD -E - 2>/dev/null) | \ + grep IS_64BIT_ARCH >/dev/null + then + UNAME_PROCESSOR="x86_64" + fi + fi ;; unknown) UNAME_PROCESSOR=powerpc ;; esac echo ${UNAME_PROCESSOR}-apple-darwin${UNAME_RELEASE} Index: dvbstreamer-2~svn777/trunk/src/Makefile.in =================================================================== --- dvbstreamer-2~svn777.orig/trunk/src/Makefile.in 2010-05-09 17:43:28.000000000 +0200 +++ dvbstreamer-2~svn777/trunk/src/Makefile.in 2010-05-09 17:44:05.000000000 +0200 @@ -1,8 +1,9 @@ -# Makefile.in generated by automake 1.10.2 from Makefile.am. +# Makefile.in generated by automake 1.11.1 from Makefile.am. # @configure_input@ # Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, -# 2003, 2004, 2005, 2006, 2007, 2008 Free Software Foundation, Inc. +# 2003, 2004, 2005, 2006, 2007, 2008, 2009 Free Software Foundation, +# Inc. # This Makefile.in is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. @@ -16,8 +17,9 @@ VPATH = @srcdir@ pkgdatadir = $(datadir)/@PACKAGE@ -pkglibdir = $(libdir)/@PACKAGE@ pkgincludedir = $(includedir)/@PACKAGE@ +pkglibdir = $(libdir)/@PACKAGE@ +pkglibexecdir = $(libexecdir)/@PACKAGE@ am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd install_sh_DATA = $(install_sh) -c -m 644 install_sh_PROGRAM = $(install_sh) -c @@ -33,7 +35,8 @@ build_triplet = @build@ host_triplet = @host@ bin_PROGRAMS = dvbstreamer$(EXEEXT) dvbctrl$(EXEEXT) \ - setupdvbstreamer$(EXEEXT) $(am__EXEEXT_1) + setupdvbstreamer$(EXEEXT) $(am__EXEEXT_1) \ + convertdvbdb$(EXEEXT) subdir = src DIST_COMMON = $(srcdir)/Makefile.am $(srcdir)/Makefile.in ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 @@ -44,83 +47,78 @@ mkinstalldirs = $(install_sh) -d CONFIG_HEADER = $(top_builddir)/config.h CONFIG_CLEAN_FILES = +CONFIG_CLEAN_VPATH_FILES = @ENABLE_FSTREAMER_TRUE@am__EXEEXT_1 = fdvbstreamer$(EXEEXT) am__installdirs = "$(DESTDIR)$(bindir)" -binPROGRAMS_INSTALL = $(INSTALL_PROGRAM) PROGRAMS = $(bin_PROGRAMS) +convertdvbdb_SOURCES = convertdvbdb.c +convertdvbdb_OBJECTS = convertdvbdb.$(OBJEXT) +convertdvbdb_DEPENDENCIES = +convertdvbdb_LINK = $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) \ + $(LIBTOOLFLAGS) --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \ + $(convertdvbdb_LDFLAGS) $(LDFLAGS) -o $@ am_dvbctrl_OBJECTS = dvbctrl.$(OBJEXT) logging.$(OBJEXT) dvbctrl_OBJECTS = $(am_dvbctrl_OBJECTS) dvbctrl_DEPENDENCIES = dvbctrl_LINK = $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) \ --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) $(dvbctrl_LDFLAGS) \ $(LDFLAGS) -o $@ -am__dvbstreamer_SOURCES_DIST = main.c tuning.c dvbadapter.c objects.c \ - multiplexes.c services.c pids.c ts.c patprocessor.c \ - pmtprocessor.c servicefilter.c dbase.c cache.c logging.c \ - commands.c commands/cmd_servicefilter.c commands/cmd_info.c \ - commands/cmd_scanning.c commands/cmd_epg.c remoteintf.c list.c \ - deliverymethod.c pluginmgr.c sectionprocessor.c pesprocessor.c \ - subtableprocessor.c epgtypes.c epgchannel.c utf8.c events.c \ +am__dvbstreamer_SOURCES_DIST = dvbadapter.c main.c tuning.c ts.c \ + multiplexes.c services.c pids.c dbase.c standard/mpeg2/mpeg2.c \ + standard/mpeg2/patprocessor.c standard/mpeg2/pmtprocessor.c \ + servicefilter.c cache.c commands.c \ + commands/cmd_servicefilter.c commands/cmd_info.c \ + commands/cmd_scanning.c commands/cmd_epg.c dispatchers.c \ + remoteintf.c deliverymethod.c pluginmgr.c epgtypes.c \ + epgchannel.c utf8.c events.c objects.c list.c logging.c \ properties.c threading/messageq.c threading/deferredproc.c \ - atsctext.c psipprocessor.c sdtprocessor.c nitprocessor.c \ - tdtprocessor.c dvbtext.c -@ENABLE_ATSC_TRUE@am__objects_1 = atsctext.$(OBJEXT) \ + lnb.c yamlutils.c constants.c standard/atsc/atsc.c \ + standard/atsc/atsctext.c standard/atsc/psipprocessor.c \ + standard/dvb/dvb.c standard/dvb/sdtprocessor.c \ + standard/dvb/nitprocessor.c standard/dvb/tdtprocessor.c \ + standard/dvb/dvbtext.c +am__objects_1 = main.$(OBJEXT) tuning.$(OBJEXT) ts.$(OBJEXT) \ + multiplexes.$(OBJEXT) services.$(OBJEXT) pids.$(OBJEXT) \ + dbase.$(OBJEXT) mpeg2.$(OBJEXT) patprocessor.$(OBJEXT) \ + pmtprocessor.$(OBJEXT) servicefilter.$(OBJEXT) cache.$(OBJEXT) \ + commands.$(OBJEXT) cmd_servicefilter.$(OBJEXT) \ + cmd_info.$(OBJEXT) cmd_scanning.$(OBJEXT) cmd_epg.$(OBJEXT) \ + dispatchers.$(OBJEXT) remoteintf.$(OBJEXT) \ + deliverymethod.$(OBJEXT) pluginmgr.$(OBJEXT) \ + epgtypes.$(OBJEXT) epgchannel.$(OBJEXT) utf8.$(OBJEXT) \ + events.$(OBJEXT) objects.$(OBJEXT) list.$(OBJEXT) \ + logging.$(OBJEXT) properties.$(OBJEXT) messageq.$(OBJEXT) \ + deferredproc.$(OBJEXT) lnb.$(OBJEXT) yamlutils.$(OBJEXT) \ + constants.$(OBJEXT) +@ENABLE_ATSC_TRUE@am__objects_2 = atsc.$(OBJEXT) atsctext.$(OBJEXT) \ @ENABLE_ATSC_TRUE@ psipprocessor.$(OBJEXT) -@ENABLE_DVB_TRUE@am__objects_2 = sdtprocessor.$(OBJEXT) \ +@ENABLE_DVB_TRUE@am__objects_3 = dvb.$(OBJEXT) sdtprocessor.$(OBJEXT) \ @ENABLE_DVB_TRUE@ nitprocessor.$(OBJEXT) tdtprocessor.$(OBJEXT) \ @ENABLE_DVB_TRUE@ dvbtext.$(OBJEXT) -am_dvbstreamer_OBJECTS = main.$(OBJEXT) tuning.$(OBJEXT) \ - dvbadapter.$(OBJEXT) objects.$(OBJEXT) multiplexes.$(OBJEXT) \ - services.$(OBJEXT) pids.$(OBJEXT) ts.$(OBJEXT) \ - patprocessor.$(OBJEXT) pmtprocessor.$(OBJEXT) \ - servicefilter.$(OBJEXT) dbase.$(OBJEXT) cache.$(OBJEXT) \ - logging.$(OBJEXT) commands.$(OBJEXT) \ - cmd_servicefilter.$(OBJEXT) cmd_info.$(OBJEXT) \ - cmd_scanning.$(OBJEXT) cmd_epg.$(OBJEXT) remoteintf.$(OBJEXT) \ - list.$(OBJEXT) deliverymethod.$(OBJEXT) pluginmgr.$(OBJEXT) \ - sectionprocessor.$(OBJEXT) pesprocessor.$(OBJEXT) \ - subtableprocessor.$(OBJEXT) epgtypes.$(OBJEXT) \ - epgchannel.$(OBJEXT) utf8.$(OBJEXT) events.$(OBJEXT) \ - properties.$(OBJEXT) messageq.$(OBJEXT) deferredproc.$(OBJEXT) \ - $(am__objects_1) $(am__objects_2) +am_dvbstreamer_OBJECTS = dvbadapter.$(OBJEXT) $(am__objects_1) \ + $(am__objects_2) $(am__objects_3) dvbstreamer_OBJECTS = $(am_dvbstreamer_OBJECTS) dvbstreamer_DEPENDENCIES = dvbstreamer_LINK = $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) \ $(LIBTOOLFLAGS) --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \ $(dvbstreamer_LDFLAGS) $(LDFLAGS) -o $@ -am__fdvbstreamer_SOURCES_DIST = main.c tuning.c fileadapter.c \ - objects.c multiplexes.c services.c pids.c ts.c patprocessor.c \ - pmtprocessor.c servicefilter.c dbase.c cache.c logging.c \ - commands.c commands/cmd_servicefilter.c commands/cmd_info.c \ - commands/cmd_scanning.c commands/cmd_epg.c remoteintf.c list.c \ - deliverymethod.c pluginmgr.c sectionprocessor.c pesprocessor.c \ - subtableprocessor.c epgtypes.c epgchannel.c utf8.c events.c \ +am__fdvbstreamer_SOURCES_DIST = fileadapter.c main.c tuning.c ts.c \ + multiplexes.c services.c pids.c dbase.c standard/mpeg2/mpeg2.c \ + standard/mpeg2/patprocessor.c standard/mpeg2/pmtprocessor.c \ + servicefilter.c cache.c commands.c \ + commands/cmd_servicefilter.c commands/cmd_info.c \ + commands/cmd_scanning.c commands/cmd_epg.c dispatchers.c \ + remoteintf.c deliverymethod.c pluginmgr.c epgtypes.c \ + epgchannel.c utf8.c events.c objects.c list.c logging.c \ properties.c threading/messageq.c threading/deferredproc.c \ - atsctext.c psipprocessor.c sdtprocessor.c nitprocessor.c \ - tdtprocessor.c dvbtext.c -@ENABLE_FSTREAMER_TRUE@am_fdvbstreamer_OBJECTS = main.$(OBJEXT) \ -@ENABLE_FSTREAMER_TRUE@ tuning.$(OBJEXT) fileadapter.$(OBJEXT) \ -@ENABLE_FSTREAMER_TRUE@ objects.$(OBJEXT) multiplexes.$(OBJEXT) \ -@ENABLE_FSTREAMER_TRUE@ services.$(OBJEXT) pids.$(OBJEXT) \ -@ENABLE_FSTREAMER_TRUE@ ts.$(OBJEXT) patprocessor.$(OBJEXT) \ -@ENABLE_FSTREAMER_TRUE@ pmtprocessor.$(OBJEXT) \ -@ENABLE_FSTREAMER_TRUE@ servicefilter.$(OBJEXT) dbase.$(OBJEXT) \ -@ENABLE_FSTREAMER_TRUE@ cache.$(OBJEXT) logging.$(OBJEXT) \ -@ENABLE_FSTREAMER_TRUE@ commands.$(OBJEXT) \ -@ENABLE_FSTREAMER_TRUE@ cmd_servicefilter.$(OBJEXT) \ -@ENABLE_FSTREAMER_TRUE@ cmd_info.$(OBJEXT) \ -@ENABLE_FSTREAMER_TRUE@ cmd_scanning.$(OBJEXT) \ -@ENABLE_FSTREAMER_TRUE@ cmd_epg.$(OBJEXT) remoteintf.$(OBJEXT) \ -@ENABLE_FSTREAMER_TRUE@ list.$(OBJEXT) deliverymethod.$(OBJEXT) \ -@ENABLE_FSTREAMER_TRUE@ pluginmgr.$(OBJEXT) \ -@ENABLE_FSTREAMER_TRUE@ sectionprocessor.$(OBJEXT) \ -@ENABLE_FSTREAMER_TRUE@ pesprocessor.$(OBJEXT) \ -@ENABLE_FSTREAMER_TRUE@ subtableprocessor.$(OBJEXT) \ -@ENABLE_FSTREAMER_TRUE@ epgtypes.$(OBJEXT) epgchannel.$(OBJEXT) \ -@ENABLE_FSTREAMER_TRUE@ utf8.$(OBJEXT) events.$(OBJEXT) \ -@ENABLE_FSTREAMER_TRUE@ properties.$(OBJEXT) messageq.$(OBJEXT) \ -@ENABLE_FSTREAMER_TRUE@ deferredproc.$(OBJEXT) $(am__objects_1) \ -@ENABLE_FSTREAMER_TRUE@ $(am__objects_2) + lnb.c yamlutils.c constants.c standard/atsc/atsc.c \ + standard/atsc/atsctext.c standard/atsc/psipprocessor.c \ + standard/dvb/dvb.c standard/dvb/sdtprocessor.c \ + standard/dvb/nitprocessor.c standard/dvb/tdtprocessor.c \ + standard/dvb/dvbtext.c +@ENABLE_FSTREAMER_TRUE@am_fdvbstreamer_OBJECTS = \ +@ENABLE_FSTREAMER_TRUE@ fileadapter.$(OBJEXT) $(am__objects_1) \ +@ENABLE_FSTREAMER_TRUE@ $(am__objects_2) $(am__objects_3) fdvbstreamer_OBJECTS = $(am_fdvbstreamer_OBJECTS) fdvbstreamer_DEPENDENCIES = fdvbstreamer_LINK = $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) \ @@ -129,7 +127,7 @@ am_setupdvbstreamer_OBJECTS = setup.$(OBJEXT) logging.$(OBJEXT) \ parsezap.$(OBJEXT) multiplexes.$(OBJEXT) services.$(OBJEXT) \ dbase.$(OBJEXT) objects.$(OBJEXT) events.$(OBJEXT) \ - list.$(OBJEXT) lnb.$(OBJEXT) + list.$(OBJEXT) lnb.$(OBJEXT) yamlutils.$(OBJEXT) setupdvbstreamer_OBJECTS = $(am_setupdvbstreamer_OBJECTS) setupdvbstreamer_DEPENDENCIES = setupdvbstreamer_LINK = $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) \ @@ -138,6 +136,7 @@ DEFAULT_INCLUDES = -I.@am__isrc@ -I$(top_builddir) depcomp = $(SHELL) $(top_srcdir)/depcomp am__depfiles_maybe = depfiles +am__mv = mv -f COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \ $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) LTCOMPILE = $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) \ @@ -147,9 +146,10 @@ LINK = $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) \ --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) $(AM_LDFLAGS) \ $(LDFLAGS) -o $@ -SOURCES = $(dvbctrl_SOURCES) $(dvbstreamer_SOURCES) \ +SOURCES = convertdvbdb.c $(dvbctrl_SOURCES) $(dvbstreamer_SOURCES) \ $(fdvbstreamer_SOURCES) $(setupdvbstreamer_SOURCES) -DIST_SOURCES = $(dvbctrl_SOURCES) $(am__dvbstreamer_SOURCES_DIST) \ +DIST_SOURCES = convertdvbdb.c $(dvbctrl_SOURCES) \ + $(am__dvbstreamer_SOURCES_DIST) \ $(am__fdvbstreamer_SOURCES_DIST) $(setupdvbstreamer_SOURCES) ETAGS = etags CTAGS = ctags @@ -157,6 +157,7 @@ ACLOCAL = @ACLOCAL@ AMTAR = @AMTAR@ AR = @AR@ +AS = @AS@ AUTOCONF = @AUTOCONF@ AUTOHEADER = @AUTOHEADER@ AUTOMAKE = @AUTOMAKE@ @@ -169,6 +170,7 @@ CYGPATH_W = @CYGPATH_W@ DEFS = @DEFS@ DEPDIR = @DEPDIR@ +DLLTOOL = @DLLTOOL@ DSYMUTIL = @DSYMUTIL@ DUMPBIN = @DUMPBIN@ DVBSTREAMER_MAJOR = @DVBSTREAMER_MAJOR@ @@ -184,7 +186,6 @@ GETTIME_LIB = @GETTIME_LIB@ GREP = @GREP@ ICONV_LIB = @ICONV_LIB@ -INCLTDL = @INCLTDL@ INSTALL = @INSTALL@ INSTALL_DATA = @INSTALL_DATA@ INSTALL_PROGRAM = @INSTALL_PROGRAM@ @@ -192,14 +193,11 @@ INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@ LD = @LD@ LDFLAGS = @LDFLAGS@ -LIBLTDL = @LIBLTDL@ LIBOBJS = @LIBOBJS@ LIBS = @LIBS@ LIBTOOL = @LIBTOOL@ LIPO = @LIPO@ LN_S = @LN_S@ -LTDLDEPS = @LTDLDEPS@ -LTDLINCL = @LTDLINCL@ LTLIBOBJS = @LTLIBOBJS@ MAKEINFO = @MAKEINFO@ MKDIR_P = @MKDIR_P@ @@ -275,72 +273,77 @@ sbindir = @sbindir@ sharedstatedir = @sharedstatedir@ srcdir = @srcdir@ -subdirs = @subdirs@ sysconfdir = @sysconfdir@ target_alias = @target_alias@ top_build_prefix = @top_build_prefix@ top_builddir = @top_builddir@ top_srcdir = @top_srcdir@ -INCLUDES = @INCLTDL@ AM_CFLAGS = \ - -I$(top_srcdir)/include -Wall -Werror -D_GNU_SOURCE + -I$(top_srcdir)/include -D_GNU_SOURCE - -# -# DVBStreamer -# -dvbstreamer_SOURCES = \ +common_src = \ main.c\ tuning.c \ - dvbadapter.c\ - objects.c \ + ts.c\ multiplexes.c\ services.c\ pids.c\ - ts.c\ - patprocessor.c\ - pmtprocessor.c\ - servicefilter.c\ dbase.c\ + standard/mpeg2/mpeg2.c\ + standard/mpeg2/patprocessor.c\ + standard/mpeg2/pmtprocessor.c\ + servicefilter.c\ cache.c\ - logging.c\ commands.c\ commands/cmd_servicefilter.c\ commands/cmd_info.c\ commands/cmd_scanning.c\ commands/cmd_epg.c\ + dispatchers.c \ remoteintf.c\ - list.c\ deliverymethod.c\ pluginmgr.c \ - sectionprocessor.c \ - pesprocessor.c \ - subtableprocessor.c \ epgtypes.c \ epgchannel.c \ utf8.c \ events.c \ + objects.c \ + list.c\ + logging.c\ properties.c \ threading/messageq.c \ threading/deferredproc.c \ - $(atsc_src) \ - $(dvb_src) + lnb.c \ + yamlutils.c \ + constants.c @ENABLE_ATSC_FALSE@atsc_src = @ENABLE_ATSC_TRUE@atsc_src = \ -@ENABLE_ATSC_TRUE@ atsctext.c \ -@ENABLE_ATSC_TRUE@ psipprocessor.c +@ENABLE_ATSC_TRUE@ standard/atsc/atsc.c \ +@ENABLE_ATSC_TRUE@ standard/atsc/atsctext.c \ +@ENABLE_ATSC_TRUE@ standard/atsc/psipprocessor.c @ENABLE_DVB_FALSE@dvb_src = @ENABLE_DVB_TRUE@dvb_src = \ -@ENABLE_DVB_TRUE@ sdtprocessor.c\ -@ENABLE_DVB_TRUE@ nitprocessor.c \ -@ENABLE_DVB_TRUE@ tdtprocessor.c \ -@ENABLE_DVB_TRUE@ dvbtext.c +@ENABLE_DVB_TRUE@ standard/dvb/dvb.c\ +@ENABLE_DVB_TRUE@ standard/dvb/sdtprocessor.c\ +@ENABLE_DVB_TRUE@ standard/dvb/nitprocessor.c \ +@ENABLE_DVB_TRUE@ standard/dvb/tdtprocessor.c \ +@ENABLE_DVB_TRUE@ standard/dvb/dvbtext.c + + +# +# DVBStreamer +# +dvbstreamer_SOURCES = \ + dvbadapter.c\ + $(common_src) \ + $(atsc_src) \ + $(dvb_src) dvbstreamer_LDFLAGS = -rdynamic -Wl,-whole-archive -Wl,dvbpsi/libdvbpsi.a -Wl,-no-whole-archive dvbstreamer_LDADD = \ - -lpthread -lsqlite3 -lreadline @GETTIME_LIB@ @ICONV_LIB@ @READLINE_TERMCAP@ @LIBLTDL@ + -lpthread -lsqlite3 -lreadline -lev -lyaml @GETTIME_LIB@ @ICONV_LIB@ @READLINE_TERMCAP@ -lltdl @ENABLE_FSTREAMER_FALSE@fstreamer_app = @ENABLE_FSTREAMER_TRUE@fstreamer_app = fdvbstreamer @@ -348,45 +351,14 @@ # File DVBStreamer # @ENABLE_FSTREAMER_TRUE@fdvbstreamer_SOURCES = \ -@ENABLE_FSTREAMER_TRUE@ main.c\ -@ENABLE_FSTREAMER_TRUE@ tuning.c \ @ENABLE_FSTREAMER_TRUE@ fileadapter.c\ -@ENABLE_FSTREAMER_TRUE@ objects.c \ -@ENABLE_FSTREAMER_TRUE@ multiplexes.c\ -@ENABLE_FSTREAMER_TRUE@ services.c\ -@ENABLE_FSTREAMER_TRUE@ pids.c\ -@ENABLE_FSTREAMER_TRUE@ ts.c\ -@ENABLE_FSTREAMER_TRUE@ patprocessor.c\ -@ENABLE_FSTREAMER_TRUE@ pmtprocessor.c\ -@ENABLE_FSTREAMER_TRUE@ servicefilter.c\ -@ENABLE_FSTREAMER_TRUE@ dbase.c\ -@ENABLE_FSTREAMER_TRUE@ cache.c\ -@ENABLE_FSTREAMER_TRUE@ logging.c\ -@ENABLE_FSTREAMER_TRUE@ commands.c\ -@ENABLE_FSTREAMER_TRUE@ commands/cmd_servicefilter.c\ -@ENABLE_FSTREAMER_TRUE@ commands/cmd_info.c\ -@ENABLE_FSTREAMER_TRUE@ commands/cmd_scanning.c\ -@ENABLE_FSTREAMER_TRUE@ commands/cmd_epg.c\ -@ENABLE_FSTREAMER_TRUE@ remoteintf.c\ -@ENABLE_FSTREAMER_TRUE@ list.c\ -@ENABLE_FSTREAMER_TRUE@ deliverymethod.c\ -@ENABLE_FSTREAMER_TRUE@ pluginmgr.c \ -@ENABLE_FSTREAMER_TRUE@ sectionprocessor.c \ -@ENABLE_FSTREAMER_TRUE@ pesprocessor.c \ -@ENABLE_FSTREAMER_TRUE@ subtableprocessor.c \ -@ENABLE_FSTREAMER_TRUE@ epgtypes.c \ -@ENABLE_FSTREAMER_TRUE@ epgchannel.c \ -@ENABLE_FSTREAMER_TRUE@ utf8.c \ -@ENABLE_FSTREAMER_TRUE@ events.c \ -@ENABLE_FSTREAMER_TRUE@ properties.c \ -@ENABLE_FSTREAMER_TRUE@ threading/messageq.c \ -@ENABLE_FSTREAMER_TRUE@ threading/deferredproc.c \ +@ENABLE_FSTREAMER_TRUE@ $(common_src) \ @ENABLE_FSTREAMER_TRUE@ $(atsc_src) \ @ENABLE_FSTREAMER_TRUE@ $(dvb_src) @ENABLE_FSTREAMER_TRUE@fdvbstreamer_LDFLAGS = -rdynamic -Wl,-whole-archive -Wl,dvbpsi/libdvbpsi.a -Wl,-no-whole-archive @ENABLE_FSTREAMER_TRUE@fdvbstreamer_LDADD = \ -@ENABLE_FSTREAMER_TRUE@ -lpthread -lsqlite3 -lreadline @GETTIME_LIB@ @ICONV_LIB@ @READLINE_TERMCAP@ @LIBLTDL@ +@ENABLE_FSTREAMER_TRUE@ -lpthread -lsqlite3 -lreadline -lev -lyaml @GETTIME_LIB@ @ICONV_LIB@ @READLINE_TERMCAP@ -lltdl # @@ -400,7 +372,7 @@ dvbctrl_LDADD = -lreadline @READLINE_TERMCAP@ # -# dvbctrl +# setupdvbstreamer # setupdvbstreamer_SOURCES = \ setup.c\ @@ -412,10 +384,20 @@ objects.c \ events.c \ list.c \ - lnb.c + lnb.c \ + yamlutils.c setupdvbstreamer_LDFLAGS = -setupdvbstreamer_LDADD = -lsqlite3 -lpthread +setupdvbstreamer_LDADD = -lsqlite3 -lpthread -lyaml + +# +# convertdvbdb +# +convertdvbdb_SOURCE = \ + convertdvbdb.c + +convertdvbdb_LDFLAGS = +convertdvbdb_LDADD = -lsqlite3 all: all-am .SUFFIXES: @@ -429,9 +411,9 @@ exit 1;; \ esac; \ done; \ - echo ' cd $(top_srcdir) && $(AUTOMAKE) --gnu src/Makefile'; \ - cd $(top_srcdir) && \ - $(AUTOMAKE) --gnu src/Makefile + echo ' cd $(top_srcdir) && $(AUTOMAKE) --gnu src/Makefile'; \ + $(am__cd) $(top_srcdir) && \ + $(AUTOMAKE) --gnu src/Makefile .PRECIOUS: Makefile Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status @case '$?' in \ @@ -449,34 +431,53 @@ cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh $(ACLOCAL_M4): $(am__aclocal_m4_deps) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh +$(am__aclocal_m4_deps): install-binPROGRAMS: $(bin_PROGRAMS) @$(NORMAL_INSTALL) test -z "$(bindir)" || $(MKDIR_P) "$(DESTDIR)$(bindir)" - @list='$(bin_PROGRAMS)'; for p in $$list; do \ - p1=`echo $$p|sed 's/$(EXEEXT)$$//'`; \ - if test -f $$p \ - || test -f $$p1 \ - ; then \ - f=`echo "$$p1" | sed 's,^.*/,,;$(transform);s/$$/$(EXEEXT)/'`; \ - echo " $(INSTALL_PROGRAM_ENV) $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=install $(binPROGRAMS_INSTALL) '$$p' '$(DESTDIR)$(bindir)/$$f'"; \ - $(INSTALL_PROGRAM_ENV) $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=install $(binPROGRAMS_INSTALL) "$$p" "$(DESTDIR)$(bindir)/$$f" || exit 1; \ - else :; fi; \ - done + @list='$(bin_PROGRAMS)'; test -n "$(bindir)" || list=; \ + for p in $$list; do echo "$$p $$p"; done | \ + sed 's/$(EXEEXT)$$//' | \ + while read p p1; do if test -f $$p || test -f $$p1; \ + then echo "$$p"; echo "$$p"; else :; fi; \ + done | \ + sed -e 'p;s,.*/,,;n;h' -e 's|.*|.|' \ + -e 'p;x;s,.*/,,;s/$(EXEEXT)$$//;$(transform);s/$$/$(EXEEXT)/' | \ + sed 'N;N;N;s,\n, ,g' | \ + $(AWK) 'BEGIN { files["."] = ""; dirs["."] = 1 } \ + { d=$$3; if (dirs[d] != 1) { print "d", d; dirs[d] = 1 } \ + if ($$2 == $$4) files[d] = files[d] " " $$1; \ + else { print "f", $$3 "/" $$4, $$1; } } \ + END { for (d in files) print "f", d, files[d] }' | \ + while read type dir files; do \ + if test "$$dir" = .; then dir=; else dir=/$$dir; fi; \ + test -z "$$files" || { \ + echo " $(INSTALL_PROGRAM_ENV) $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=install $(INSTALL_PROGRAM) $$files '$(DESTDIR)$(bindir)$$dir'"; \ + $(INSTALL_PROGRAM_ENV) $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=install $(INSTALL_PROGRAM) $$files "$(DESTDIR)$(bindir)$$dir" || exit $$?; \ + } \ + ; done uninstall-binPROGRAMS: @$(NORMAL_UNINSTALL) - @list='$(bin_PROGRAMS)'; for p in $$list; do \ - f=`echo "$$p" | sed 's,^.*/,,;s/$(EXEEXT)$$//;$(transform);s/$$/$(EXEEXT)/'`; \ - echo " rm -f '$(DESTDIR)$(bindir)/$$f'"; \ - rm -f "$(DESTDIR)$(bindir)/$$f"; \ - done + @list='$(bin_PROGRAMS)'; test -n "$(bindir)" || list=; \ + files=`for p in $$list; do echo "$$p"; done | \ + sed -e 'h;s,^.*/,,;s/$(EXEEXT)$$//;$(transform)' \ + -e 's/$$/$(EXEEXT)/' `; \ + test -n "$$list" || exit 0; \ + echo " ( cd '$(DESTDIR)$(bindir)' && rm -f" $$files ")"; \ + cd "$(DESTDIR)$(bindir)" && rm -f $$files clean-binPROGRAMS: - @list='$(bin_PROGRAMS)'; for p in $$list; do \ - f=`echo $$p|sed 's/$(EXEEXT)$$//'`; \ - echo " rm -f $$p $$f"; \ - rm -f $$p $$f ; \ - done + @list='$(bin_PROGRAMS)'; test -n "$$list" || exit 0; \ + echo " rm -f" $$list; \ + rm -f $$list || exit $$?; \ + test -n "$(EXEEXT)" || exit 0; \ + list=`for p in $$list; do echo "$$p"; done | sed 's/$(EXEEXT)$$//'`; \ + echo " rm -f" $$list; \ + rm -f $$list +convertdvbdb$(EXEEXT): $(convertdvbdb_OBJECTS) $(convertdvbdb_DEPENDENCIES) + @rm -f convertdvbdb$(EXEEXT) + $(convertdvbdb_LINK) $(convertdvbdb_OBJECTS) $(convertdvbdb_LDADD) $(LIBS) dvbctrl$(EXEEXT): $(dvbctrl_OBJECTS) $(dvbctrl_DEPENDENCIES) @rm -f dvbctrl$(EXEEXT) $(dvbctrl_LINK) $(dvbctrl_OBJECTS) $(dvbctrl_LDADD) $(LIBS) @@ -496,6 +497,7 @@ distclean-compile: -rm -f *.tab.c +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/atsc.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/atsctext.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/cache.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/cmd_epg.Po@am__quote@ @@ -503,9 +505,13 @@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/cmd_scanning.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/cmd_servicefilter.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/commands.Po@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/constants.Po@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/convertdvbdb.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/dbase.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/deferredproc.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/deliverymethod.Po@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/dispatchers.Po@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/dvb.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/dvbadapter.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/dvbctrl.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/dvbtext.Po@am__quote@ @@ -518,12 +524,12 @@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/logging.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/main.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/messageq.Po@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/mpeg2.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/multiplexes.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/nitprocessor.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/objects.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/parsezap.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/patprocessor.Po@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/pesprocessor.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/pids.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/pluginmgr.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/pmtprocessor.Po@am__quote@ @@ -531,121 +537,274 @@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/psipprocessor.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/remoteintf.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/sdtprocessor.Po@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/sectionprocessor.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/servicefilter.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/services.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/setup.Po@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/subtableprocessor.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/tdtprocessor.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/ts.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/tuning.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/utf8.Po@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/yamlutils.Po@am__quote@ .c.o: @am__fastdepCC_TRUE@ $(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $< -@am__fastdepCC_TRUE@ mv -f $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po +@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(COMPILE) -c $< .c.obj: @am__fastdepCC_TRUE@ $(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ `$(CYGPATH_W) '$<'` -@am__fastdepCC_TRUE@ mv -f $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po +@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(COMPILE) -c `$(CYGPATH_W) '$<'` .c.lo: @am__fastdepCC_TRUE@ $(LTCOMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $< -@am__fastdepCC_TRUE@ mv -f $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Plo +@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Plo @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='$<' object='$@' libtool=yes @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(LTCOMPILE) -c -o $@ $< +mpeg2.o: standard/mpeg2/mpeg2.c +@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT mpeg2.o -MD -MP -MF $(DEPDIR)/mpeg2.Tpo -c -o mpeg2.o `test -f 'standard/mpeg2/mpeg2.c' || echo '$(srcdir)/'`standard/mpeg2/mpeg2.c +@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/mpeg2.Tpo $(DEPDIR)/mpeg2.Po +@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='standard/mpeg2/mpeg2.c' object='mpeg2.o' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o mpeg2.o `test -f 'standard/mpeg2/mpeg2.c' || echo '$(srcdir)/'`standard/mpeg2/mpeg2.c + +mpeg2.obj: standard/mpeg2/mpeg2.c +@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT mpeg2.obj -MD -MP -MF $(DEPDIR)/mpeg2.Tpo -c -o mpeg2.obj `if test -f 'standard/mpeg2/mpeg2.c'; then $(CYGPATH_W) 'standard/mpeg2/mpeg2.c'; else $(CYGPATH_W) '$(srcdir)/standard/mpeg2/mpeg2.c'; fi` +@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/mpeg2.Tpo $(DEPDIR)/mpeg2.Po +@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='standard/mpeg2/mpeg2.c' object='mpeg2.obj' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o mpeg2.obj `if test -f 'standard/mpeg2/mpeg2.c'; then $(CYGPATH_W) 'standard/mpeg2/mpeg2.c'; else $(CYGPATH_W) '$(srcdir)/standard/mpeg2/mpeg2.c'; fi` + +patprocessor.o: standard/mpeg2/patprocessor.c +@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT patprocessor.o -MD -MP -MF $(DEPDIR)/patprocessor.Tpo -c -o patprocessor.o `test -f 'standard/mpeg2/patprocessor.c' || echo '$(srcdir)/'`standard/mpeg2/patprocessor.c +@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/patprocessor.Tpo $(DEPDIR)/patprocessor.Po +@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='standard/mpeg2/patprocessor.c' object='patprocessor.o' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o patprocessor.o `test -f 'standard/mpeg2/patprocessor.c' || echo '$(srcdir)/'`standard/mpeg2/patprocessor.c + +patprocessor.obj: standard/mpeg2/patprocessor.c +@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT patprocessor.obj -MD -MP -MF $(DEPDIR)/patprocessor.Tpo -c -o patprocessor.obj `if test -f 'standard/mpeg2/patprocessor.c'; then $(CYGPATH_W) 'standard/mpeg2/patprocessor.c'; else $(CYGPATH_W) '$(srcdir)/standard/mpeg2/patprocessor.c'; fi` +@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/patprocessor.Tpo $(DEPDIR)/patprocessor.Po +@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='standard/mpeg2/patprocessor.c' object='patprocessor.obj' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o patprocessor.obj `if test -f 'standard/mpeg2/patprocessor.c'; then $(CYGPATH_W) 'standard/mpeg2/patprocessor.c'; else $(CYGPATH_W) '$(srcdir)/standard/mpeg2/patprocessor.c'; fi` + +pmtprocessor.o: standard/mpeg2/pmtprocessor.c +@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT pmtprocessor.o -MD -MP -MF $(DEPDIR)/pmtprocessor.Tpo -c -o pmtprocessor.o `test -f 'standard/mpeg2/pmtprocessor.c' || echo '$(srcdir)/'`standard/mpeg2/pmtprocessor.c +@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/pmtprocessor.Tpo $(DEPDIR)/pmtprocessor.Po +@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='standard/mpeg2/pmtprocessor.c' object='pmtprocessor.o' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o pmtprocessor.o `test -f 'standard/mpeg2/pmtprocessor.c' || echo '$(srcdir)/'`standard/mpeg2/pmtprocessor.c + +pmtprocessor.obj: standard/mpeg2/pmtprocessor.c +@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT pmtprocessor.obj -MD -MP -MF $(DEPDIR)/pmtprocessor.Tpo -c -o pmtprocessor.obj `if test -f 'standard/mpeg2/pmtprocessor.c'; then $(CYGPATH_W) 'standard/mpeg2/pmtprocessor.c'; else $(CYGPATH_W) '$(srcdir)/standard/mpeg2/pmtprocessor.c'; fi` +@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/pmtprocessor.Tpo $(DEPDIR)/pmtprocessor.Po +@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='standard/mpeg2/pmtprocessor.c' object='pmtprocessor.obj' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o pmtprocessor.obj `if test -f 'standard/mpeg2/pmtprocessor.c'; then $(CYGPATH_W) 'standard/mpeg2/pmtprocessor.c'; else $(CYGPATH_W) '$(srcdir)/standard/mpeg2/pmtprocessor.c'; fi` + cmd_servicefilter.o: commands/cmd_servicefilter.c @am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT cmd_servicefilter.o -MD -MP -MF $(DEPDIR)/cmd_servicefilter.Tpo -c -o cmd_servicefilter.o `test -f 'commands/cmd_servicefilter.c' || echo '$(srcdir)/'`commands/cmd_servicefilter.c -@am__fastdepCC_TRUE@ mv -f $(DEPDIR)/cmd_servicefilter.Tpo $(DEPDIR)/cmd_servicefilter.Po +@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/cmd_servicefilter.Tpo $(DEPDIR)/cmd_servicefilter.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='commands/cmd_servicefilter.c' object='cmd_servicefilter.o' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o cmd_servicefilter.o `test -f 'commands/cmd_servicefilter.c' || echo '$(srcdir)/'`commands/cmd_servicefilter.c cmd_servicefilter.obj: commands/cmd_servicefilter.c @am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT cmd_servicefilter.obj -MD -MP -MF $(DEPDIR)/cmd_servicefilter.Tpo -c -o cmd_servicefilter.obj `if test -f 'commands/cmd_servicefilter.c'; then $(CYGPATH_W) 'commands/cmd_servicefilter.c'; else $(CYGPATH_W) '$(srcdir)/commands/cmd_servicefilter.c'; fi` -@am__fastdepCC_TRUE@ mv -f $(DEPDIR)/cmd_servicefilter.Tpo $(DEPDIR)/cmd_servicefilter.Po +@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/cmd_servicefilter.Tpo $(DEPDIR)/cmd_servicefilter.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='commands/cmd_servicefilter.c' object='cmd_servicefilter.obj' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o cmd_servicefilter.obj `if test -f 'commands/cmd_servicefilter.c'; then $(CYGPATH_W) 'commands/cmd_servicefilter.c'; else $(CYGPATH_W) '$(srcdir)/commands/cmd_servicefilter.c'; fi` cmd_info.o: commands/cmd_info.c @am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT cmd_info.o -MD -MP -MF $(DEPDIR)/cmd_info.Tpo -c -o cmd_info.o `test -f 'commands/cmd_info.c' || echo '$(srcdir)/'`commands/cmd_info.c -@am__fastdepCC_TRUE@ mv -f $(DEPDIR)/cmd_info.Tpo $(DEPDIR)/cmd_info.Po +@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/cmd_info.Tpo $(DEPDIR)/cmd_info.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='commands/cmd_info.c' object='cmd_info.o' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o cmd_info.o `test -f 'commands/cmd_info.c' || echo '$(srcdir)/'`commands/cmd_info.c cmd_info.obj: commands/cmd_info.c @am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT cmd_info.obj -MD -MP -MF $(DEPDIR)/cmd_info.Tpo -c -o cmd_info.obj `if test -f 'commands/cmd_info.c'; then $(CYGPATH_W) 'commands/cmd_info.c'; else $(CYGPATH_W) '$(srcdir)/commands/cmd_info.c'; fi` -@am__fastdepCC_TRUE@ mv -f $(DEPDIR)/cmd_info.Tpo $(DEPDIR)/cmd_info.Po +@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/cmd_info.Tpo $(DEPDIR)/cmd_info.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='commands/cmd_info.c' object='cmd_info.obj' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o cmd_info.obj `if test -f 'commands/cmd_info.c'; then $(CYGPATH_W) 'commands/cmd_info.c'; else $(CYGPATH_W) '$(srcdir)/commands/cmd_info.c'; fi` cmd_scanning.o: commands/cmd_scanning.c @am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT cmd_scanning.o -MD -MP -MF $(DEPDIR)/cmd_scanning.Tpo -c -o cmd_scanning.o `test -f 'commands/cmd_scanning.c' || echo '$(srcdir)/'`commands/cmd_scanning.c -@am__fastdepCC_TRUE@ mv -f $(DEPDIR)/cmd_scanning.Tpo $(DEPDIR)/cmd_scanning.Po +@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/cmd_scanning.Tpo $(DEPDIR)/cmd_scanning.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='commands/cmd_scanning.c' object='cmd_scanning.o' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o cmd_scanning.o `test -f 'commands/cmd_scanning.c' || echo '$(srcdir)/'`commands/cmd_scanning.c cmd_scanning.obj: commands/cmd_scanning.c @am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT cmd_scanning.obj -MD -MP -MF $(DEPDIR)/cmd_scanning.Tpo -c -o cmd_scanning.obj `if test -f 'commands/cmd_scanning.c'; then $(CYGPATH_W) 'commands/cmd_scanning.c'; else $(CYGPATH_W) '$(srcdir)/commands/cmd_scanning.c'; fi` -@am__fastdepCC_TRUE@ mv -f $(DEPDIR)/cmd_scanning.Tpo $(DEPDIR)/cmd_scanning.Po +@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/cmd_scanning.Tpo $(DEPDIR)/cmd_scanning.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='commands/cmd_scanning.c' object='cmd_scanning.obj' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o cmd_scanning.obj `if test -f 'commands/cmd_scanning.c'; then $(CYGPATH_W) 'commands/cmd_scanning.c'; else $(CYGPATH_W) '$(srcdir)/commands/cmd_scanning.c'; fi` cmd_epg.o: commands/cmd_epg.c @am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT cmd_epg.o -MD -MP -MF $(DEPDIR)/cmd_epg.Tpo -c -o cmd_epg.o `test -f 'commands/cmd_epg.c' || echo '$(srcdir)/'`commands/cmd_epg.c -@am__fastdepCC_TRUE@ mv -f $(DEPDIR)/cmd_epg.Tpo $(DEPDIR)/cmd_epg.Po +@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/cmd_epg.Tpo $(DEPDIR)/cmd_epg.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='commands/cmd_epg.c' object='cmd_epg.o' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o cmd_epg.o `test -f 'commands/cmd_epg.c' || echo '$(srcdir)/'`commands/cmd_epg.c cmd_epg.obj: commands/cmd_epg.c @am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT cmd_epg.obj -MD -MP -MF $(DEPDIR)/cmd_epg.Tpo -c -o cmd_epg.obj `if test -f 'commands/cmd_epg.c'; then $(CYGPATH_W) 'commands/cmd_epg.c'; else $(CYGPATH_W) '$(srcdir)/commands/cmd_epg.c'; fi` -@am__fastdepCC_TRUE@ mv -f $(DEPDIR)/cmd_epg.Tpo $(DEPDIR)/cmd_epg.Po +@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/cmd_epg.Tpo $(DEPDIR)/cmd_epg.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='commands/cmd_epg.c' object='cmd_epg.obj' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o cmd_epg.obj `if test -f 'commands/cmd_epg.c'; then $(CYGPATH_W) 'commands/cmd_epg.c'; else $(CYGPATH_W) '$(srcdir)/commands/cmd_epg.c'; fi` messageq.o: threading/messageq.c @am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT messageq.o -MD -MP -MF $(DEPDIR)/messageq.Tpo -c -o messageq.o `test -f 'threading/messageq.c' || echo '$(srcdir)/'`threading/messageq.c -@am__fastdepCC_TRUE@ mv -f $(DEPDIR)/messageq.Tpo $(DEPDIR)/messageq.Po +@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/messageq.Tpo $(DEPDIR)/messageq.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='threading/messageq.c' object='messageq.o' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o messageq.o `test -f 'threading/messageq.c' || echo '$(srcdir)/'`threading/messageq.c messageq.obj: threading/messageq.c @am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT messageq.obj -MD -MP -MF $(DEPDIR)/messageq.Tpo -c -o messageq.obj `if test -f 'threading/messageq.c'; then $(CYGPATH_W) 'threading/messageq.c'; else $(CYGPATH_W) '$(srcdir)/threading/messageq.c'; fi` -@am__fastdepCC_TRUE@ mv -f $(DEPDIR)/messageq.Tpo $(DEPDIR)/messageq.Po +@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/messageq.Tpo $(DEPDIR)/messageq.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='threading/messageq.c' object='messageq.obj' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o messageq.obj `if test -f 'threading/messageq.c'; then $(CYGPATH_W) 'threading/messageq.c'; else $(CYGPATH_W) '$(srcdir)/threading/messageq.c'; fi` deferredproc.o: threading/deferredproc.c @am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT deferredproc.o -MD -MP -MF $(DEPDIR)/deferredproc.Tpo -c -o deferredproc.o `test -f 'threading/deferredproc.c' || echo '$(srcdir)/'`threading/deferredproc.c -@am__fastdepCC_TRUE@ mv -f $(DEPDIR)/deferredproc.Tpo $(DEPDIR)/deferredproc.Po +@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/deferredproc.Tpo $(DEPDIR)/deferredproc.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='threading/deferredproc.c' object='deferredproc.o' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o deferredproc.o `test -f 'threading/deferredproc.c' || echo '$(srcdir)/'`threading/deferredproc.c deferredproc.obj: threading/deferredproc.c @am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT deferredproc.obj -MD -MP -MF $(DEPDIR)/deferredproc.Tpo -c -o deferredproc.obj `if test -f 'threading/deferredproc.c'; then $(CYGPATH_W) 'threading/deferredproc.c'; else $(CYGPATH_W) '$(srcdir)/threading/deferredproc.c'; fi` -@am__fastdepCC_TRUE@ mv -f $(DEPDIR)/deferredproc.Tpo $(DEPDIR)/deferredproc.Po +@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/deferredproc.Tpo $(DEPDIR)/deferredproc.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='threading/deferredproc.c' object='deferredproc.obj' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o deferredproc.obj `if test -f 'threading/deferredproc.c'; then $(CYGPATH_W) 'threading/deferredproc.c'; else $(CYGPATH_W) '$(srcdir)/threading/deferredproc.c'; fi` +atsc.o: standard/atsc/atsc.c +@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT atsc.o -MD -MP -MF $(DEPDIR)/atsc.Tpo -c -o atsc.o `test -f 'standard/atsc/atsc.c' || echo '$(srcdir)/'`standard/atsc/atsc.c +@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/atsc.Tpo $(DEPDIR)/atsc.Po +@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='standard/atsc/atsc.c' object='atsc.o' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o atsc.o `test -f 'standard/atsc/atsc.c' || echo '$(srcdir)/'`standard/atsc/atsc.c + +atsc.obj: standard/atsc/atsc.c +@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT atsc.obj -MD -MP -MF $(DEPDIR)/atsc.Tpo -c -o atsc.obj `if test -f 'standard/atsc/atsc.c'; then $(CYGPATH_W) 'standard/atsc/atsc.c'; else $(CYGPATH_W) '$(srcdir)/standard/atsc/atsc.c'; fi` +@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/atsc.Tpo $(DEPDIR)/atsc.Po +@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='standard/atsc/atsc.c' object='atsc.obj' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o atsc.obj `if test -f 'standard/atsc/atsc.c'; then $(CYGPATH_W) 'standard/atsc/atsc.c'; else $(CYGPATH_W) '$(srcdir)/standard/atsc/atsc.c'; fi` + +atsctext.o: standard/atsc/atsctext.c +@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT atsctext.o -MD -MP -MF $(DEPDIR)/atsctext.Tpo -c -o atsctext.o `test -f 'standard/atsc/atsctext.c' || echo '$(srcdir)/'`standard/atsc/atsctext.c +@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/atsctext.Tpo $(DEPDIR)/atsctext.Po +@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='standard/atsc/atsctext.c' object='atsctext.o' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o atsctext.o `test -f 'standard/atsc/atsctext.c' || echo '$(srcdir)/'`standard/atsc/atsctext.c + +atsctext.obj: standard/atsc/atsctext.c +@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT atsctext.obj -MD -MP -MF $(DEPDIR)/atsctext.Tpo -c -o atsctext.obj `if test -f 'standard/atsc/atsctext.c'; then $(CYGPATH_W) 'standard/atsc/atsctext.c'; else $(CYGPATH_W) '$(srcdir)/standard/atsc/atsctext.c'; fi` +@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/atsctext.Tpo $(DEPDIR)/atsctext.Po +@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='standard/atsc/atsctext.c' object='atsctext.obj' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o atsctext.obj `if test -f 'standard/atsc/atsctext.c'; then $(CYGPATH_W) 'standard/atsc/atsctext.c'; else $(CYGPATH_W) '$(srcdir)/standard/atsc/atsctext.c'; fi` + +psipprocessor.o: standard/atsc/psipprocessor.c +@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT psipprocessor.o -MD -MP -MF $(DEPDIR)/psipprocessor.Tpo -c -o psipprocessor.o `test -f 'standard/atsc/psipprocessor.c' || echo '$(srcdir)/'`standard/atsc/psipprocessor.c +@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/psipprocessor.Tpo $(DEPDIR)/psipprocessor.Po +@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='standard/atsc/psipprocessor.c' object='psipprocessor.o' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o psipprocessor.o `test -f 'standard/atsc/psipprocessor.c' || echo '$(srcdir)/'`standard/atsc/psipprocessor.c + +psipprocessor.obj: standard/atsc/psipprocessor.c +@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT psipprocessor.obj -MD -MP -MF $(DEPDIR)/psipprocessor.Tpo -c -o psipprocessor.obj `if test -f 'standard/atsc/psipprocessor.c'; then $(CYGPATH_W) 'standard/atsc/psipprocessor.c'; else $(CYGPATH_W) '$(srcdir)/standard/atsc/psipprocessor.c'; fi` +@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/psipprocessor.Tpo $(DEPDIR)/psipprocessor.Po +@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='standard/atsc/psipprocessor.c' object='psipprocessor.obj' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o psipprocessor.obj `if test -f 'standard/atsc/psipprocessor.c'; then $(CYGPATH_W) 'standard/atsc/psipprocessor.c'; else $(CYGPATH_W) '$(srcdir)/standard/atsc/psipprocessor.c'; fi` + +dvb.o: standard/dvb/dvb.c +@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT dvb.o -MD -MP -MF $(DEPDIR)/dvb.Tpo -c -o dvb.o `test -f 'standard/dvb/dvb.c' || echo '$(srcdir)/'`standard/dvb/dvb.c +@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/dvb.Tpo $(DEPDIR)/dvb.Po +@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='standard/dvb/dvb.c' object='dvb.o' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o dvb.o `test -f 'standard/dvb/dvb.c' || echo '$(srcdir)/'`standard/dvb/dvb.c + +dvb.obj: standard/dvb/dvb.c +@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT dvb.obj -MD -MP -MF $(DEPDIR)/dvb.Tpo -c -o dvb.obj `if test -f 'standard/dvb/dvb.c'; then $(CYGPATH_W) 'standard/dvb/dvb.c'; else $(CYGPATH_W) '$(srcdir)/standard/dvb/dvb.c'; fi` +@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/dvb.Tpo $(DEPDIR)/dvb.Po +@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='standard/dvb/dvb.c' object='dvb.obj' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o dvb.obj `if test -f 'standard/dvb/dvb.c'; then $(CYGPATH_W) 'standard/dvb/dvb.c'; else $(CYGPATH_W) '$(srcdir)/standard/dvb/dvb.c'; fi` + +sdtprocessor.o: standard/dvb/sdtprocessor.c +@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT sdtprocessor.o -MD -MP -MF $(DEPDIR)/sdtprocessor.Tpo -c -o sdtprocessor.o `test -f 'standard/dvb/sdtprocessor.c' || echo '$(srcdir)/'`standard/dvb/sdtprocessor.c +@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/sdtprocessor.Tpo $(DEPDIR)/sdtprocessor.Po +@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='standard/dvb/sdtprocessor.c' object='sdtprocessor.o' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o sdtprocessor.o `test -f 'standard/dvb/sdtprocessor.c' || echo '$(srcdir)/'`standard/dvb/sdtprocessor.c + +sdtprocessor.obj: standard/dvb/sdtprocessor.c +@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT sdtprocessor.obj -MD -MP -MF $(DEPDIR)/sdtprocessor.Tpo -c -o sdtprocessor.obj `if test -f 'standard/dvb/sdtprocessor.c'; then $(CYGPATH_W) 'standard/dvb/sdtprocessor.c'; else $(CYGPATH_W) '$(srcdir)/standard/dvb/sdtprocessor.c'; fi` +@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/sdtprocessor.Tpo $(DEPDIR)/sdtprocessor.Po +@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='standard/dvb/sdtprocessor.c' object='sdtprocessor.obj' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o sdtprocessor.obj `if test -f 'standard/dvb/sdtprocessor.c'; then $(CYGPATH_W) 'standard/dvb/sdtprocessor.c'; else $(CYGPATH_W) '$(srcdir)/standard/dvb/sdtprocessor.c'; fi` + +nitprocessor.o: standard/dvb/nitprocessor.c +@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT nitprocessor.o -MD -MP -MF $(DEPDIR)/nitprocessor.Tpo -c -o nitprocessor.o `test -f 'standard/dvb/nitprocessor.c' || echo '$(srcdir)/'`standard/dvb/nitprocessor.c +@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/nitprocessor.Tpo $(DEPDIR)/nitprocessor.Po +@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='standard/dvb/nitprocessor.c' object='nitprocessor.o' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o nitprocessor.o `test -f 'standard/dvb/nitprocessor.c' || echo '$(srcdir)/'`standard/dvb/nitprocessor.c + +nitprocessor.obj: standard/dvb/nitprocessor.c +@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT nitprocessor.obj -MD -MP -MF $(DEPDIR)/nitprocessor.Tpo -c -o nitprocessor.obj `if test -f 'standard/dvb/nitprocessor.c'; then $(CYGPATH_W) 'standard/dvb/nitprocessor.c'; else $(CYGPATH_W) '$(srcdir)/standard/dvb/nitprocessor.c'; fi` +@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/nitprocessor.Tpo $(DEPDIR)/nitprocessor.Po +@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='standard/dvb/nitprocessor.c' object='nitprocessor.obj' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o nitprocessor.obj `if test -f 'standard/dvb/nitprocessor.c'; then $(CYGPATH_W) 'standard/dvb/nitprocessor.c'; else $(CYGPATH_W) '$(srcdir)/standard/dvb/nitprocessor.c'; fi` + +tdtprocessor.o: standard/dvb/tdtprocessor.c +@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT tdtprocessor.o -MD -MP -MF $(DEPDIR)/tdtprocessor.Tpo -c -o tdtprocessor.o `test -f 'standard/dvb/tdtprocessor.c' || echo '$(srcdir)/'`standard/dvb/tdtprocessor.c +@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/tdtprocessor.Tpo $(DEPDIR)/tdtprocessor.Po +@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='standard/dvb/tdtprocessor.c' object='tdtprocessor.o' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o tdtprocessor.o `test -f 'standard/dvb/tdtprocessor.c' || echo '$(srcdir)/'`standard/dvb/tdtprocessor.c + +tdtprocessor.obj: standard/dvb/tdtprocessor.c +@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT tdtprocessor.obj -MD -MP -MF $(DEPDIR)/tdtprocessor.Tpo -c -o tdtprocessor.obj `if test -f 'standard/dvb/tdtprocessor.c'; then $(CYGPATH_W) 'standard/dvb/tdtprocessor.c'; else $(CYGPATH_W) '$(srcdir)/standard/dvb/tdtprocessor.c'; fi` +@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/tdtprocessor.Tpo $(DEPDIR)/tdtprocessor.Po +@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='standard/dvb/tdtprocessor.c' object='tdtprocessor.obj' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o tdtprocessor.obj `if test -f 'standard/dvb/tdtprocessor.c'; then $(CYGPATH_W) 'standard/dvb/tdtprocessor.c'; else $(CYGPATH_W) '$(srcdir)/standard/dvb/tdtprocessor.c'; fi` + +dvbtext.o: standard/dvb/dvbtext.c +@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT dvbtext.o -MD -MP -MF $(DEPDIR)/dvbtext.Tpo -c -o dvbtext.o `test -f 'standard/dvb/dvbtext.c' || echo '$(srcdir)/'`standard/dvb/dvbtext.c +@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/dvbtext.Tpo $(DEPDIR)/dvbtext.Po +@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='standard/dvb/dvbtext.c' object='dvbtext.o' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o dvbtext.o `test -f 'standard/dvb/dvbtext.c' || echo '$(srcdir)/'`standard/dvb/dvbtext.c + +dvbtext.obj: standard/dvb/dvbtext.c +@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT dvbtext.obj -MD -MP -MF $(DEPDIR)/dvbtext.Tpo -c -o dvbtext.obj `if test -f 'standard/dvb/dvbtext.c'; then $(CYGPATH_W) 'standard/dvb/dvbtext.c'; else $(CYGPATH_W) '$(srcdir)/standard/dvb/dvbtext.c'; fi` +@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/dvbtext.Tpo $(DEPDIR)/dvbtext.Po +@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='standard/dvb/dvbtext.c' object='dvbtext.obj' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o dvbtext.obj `if test -f 'standard/dvb/dvbtext.c'; then $(CYGPATH_W) 'standard/dvb/dvbtext.c'; else $(CYGPATH_W) '$(srcdir)/standard/dvb/dvbtext.c'; fi` + mostlyclean-libtool: -rm -f *.lo @@ -664,7 +823,7 @@ TAGS: $(HEADERS) $(SOURCES) $(TAGS_DEPENDENCIES) \ $(TAGS_FILES) $(LISP) - tags=; \ + set x; \ here=`pwd`; \ list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \ unique=`for i in $$list; do \ @@ -672,29 +831,34 @@ done | \ $(AWK) '{ files[$$0] = 1; nonempty = 1; } \ END { if (nonempty) { for (i in files) print i; }; }'`; \ - if test -z "$(ETAGS_ARGS)$$tags$$unique"; then :; else \ + shift; \ + if test -z "$(ETAGS_ARGS)$$*$$unique"; then :; else \ test -n "$$unique" || unique=$$empty_fix; \ - $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ - $$tags $$unique; \ + if test $$# -gt 0; then \ + $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ + "$$@" $$unique; \ + else \ + $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ + $$unique; \ + fi; \ fi ctags: CTAGS CTAGS: $(HEADERS) $(SOURCES) $(TAGS_DEPENDENCIES) \ $(TAGS_FILES) $(LISP) - tags=; \ list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \ unique=`for i in $$list; do \ if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ done | \ $(AWK) '{ files[$$0] = 1; nonempty = 1; } \ END { if (nonempty) { for (i in files) print i; }; }'`; \ - test -z "$(CTAGS_ARGS)$$tags$$unique" \ + test -z "$(CTAGS_ARGS)$$unique" \ || $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \ - $$tags $$unique + $$unique GTAGS: here=`$(am__cd) $(top_builddir) && pwd` \ - && cd $(top_srcdir) \ - && gtags -i $(GTAGS_ARGS) $$here + && $(am__cd) $(top_srcdir) \ + && gtags -i $(GTAGS_ARGS) "$$here" distclean-tags: -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags @@ -715,13 +879,17 @@ if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \ if test -d $$d/$$file; then \ dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \ + if test -d "$(distdir)/$$file"; then \ + find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ + fi; \ if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \ - cp -pR $(srcdir)/$$file $(distdir)$$dir || exit 1; \ + cp -fpR $(srcdir)/$$file "$(distdir)$$dir" || exit 1; \ + find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ fi; \ - cp -pR $$d/$$file $(distdir)$$dir || exit 1; \ + cp -fpR $$d/$$file "$(distdir)$$dir" || exit 1; \ else \ - test -f $(distdir)/$$file \ - || cp -p $$d/$$file $(distdir)/$$file \ + test -f "$(distdir)/$$file" \ + || cp -p $$d/$$file "$(distdir)/$$file" \ || exit 1; \ fi; \ done @@ -752,6 +920,7 @@ distclean-generic: -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES) + -test . = "$(srcdir)" || test -z "$(CONFIG_CLEAN_VPATH_FILES)" || rm -f $(CONFIG_CLEAN_VPATH_FILES) maintainer-clean-generic: @echo "This command is intended for maintainers to use" @@ -772,6 +941,8 @@ html: html-am +html-am: + info: info-am info-am: @@ -780,18 +951,28 @@ install-dvi: install-dvi-am +install-dvi-am: + install-exec-am: install-binPROGRAMS install-html: install-html-am +install-html-am: + install-info: install-info-am +install-info-am: + install-man: install-pdf: install-pdf-am +install-pdf-am: + install-ps: install-ps-am +install-ps-am: + installcheck-am: maintainer-clean: maintainer-clean-am @@ -830,6 +1011,7 @@ pdf pdf-am ps ps-am tags uninstall uninstall-am \ uninstall-binPROGRAMS + # Tell versions [3.59,3.63) of GNU make to not export all variables. # Otherwise a system limit (for SysV at least) may be exceeded. .NOEXPORT: Index: dvbstreamer-2~svn777/trunk/src/dvbpsi/Makefile.in =================================================================== --- dvbstreamer-2~svn777.orig/trunk/src/dvbpsi/Makefile.in 2010-05-09 17:43:28.000000000 +0200 +++ dvbstreamer-2~svn777/trunk/src/dvbpsi/Makefile.in 2010-05-09 17:44:05.000000000 +0200 @@ -1,8 +1,9 @@ -# Makefile.in generated by automake 1.10.2 from Makefile.am. +# Makefile.in generated by automake 1.11.1 from Makefile.am. # @configure_input@ # Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, -# 2003, 2004, 2005, 2006, 2007, 2008 Free Software Foundation, Inc. +# 2003, 2004, 2005, 2006, 2007, 2008, 2009 Free Software Foundation, +# Inc. # This Makefile.in is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. @@ -16,8 +17,9 @@ VPATH = @srcdir@ pkgdatadir = $(datadir)/@PACKAGE@ -pkglibdir = $(libdir)/@PACKAGE@ pkgincludedir = $(includedir)/@PACKAGE@ +pkglibdir = $(libdir)/@PACKAGE@ +pkglibexecdir = $(libexecdir)/@PACKAGE@ am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd install_sh_DATA = $(install_sh) -c -m 644 install_sh_PROGRAM = $(install_sh) -c @@ -42,30 +44,33 @@ mkinstalldirs = $(install_sh) -d CONFIG_HEADER = $(top_builddir)/config.h CONFIG_CLEAN_FILES = +CONFIG_CLEAN_VPATH_FILES = LIBRARIES = $(noinst_LIBRARIES) ARFLAGS = cru libdvbpsi_a_AR = $(AR) $(ARFLAGS) libdvbpsi_a_LIBADD = am__libdvbpsi_a_SOURCES_DIST = demux.c descriptor.c dvbpsi.c psi.c \ - descriptors/dr_02.c descriptors/dr_03.c descriptors/dr_04.c \ - descriptors/dr_05.c descriptors/dr_06.c descriptors/dr_07.c \ - descriptors/dr_08.c descriptors/dr_09.c descriptors/dr_0a.c \ - descriptors/dr_0b.c descriptors/dr_0c.c descriptors/dr_0d.c \ - descriptors/dr_0e.c descriptors/dr_0f.c descriptors/dr_83.c \ + sections.c descriptors/dr_02.c descriptors/dr_03.c \ + descriptors/dr_04.c descriptors/dr_05.c descriptors/dr_06.c \ + descriptors/dr_07.c descriptors/dr_08.c descriptors/dr_09.c \ + descriptors/dr_0a.c descriptors/dr_0b.c descriptors/dr_0c.c \ + descriptors/dr_0d.c descriptors/dr_0e.c descriptors/dr_0f.c \ + descriptors/dr_13.c descriptors/dr_14.c descriptors/dr_83.c \ tables/pat.c tables/pmt.c tables/cat.c datetime.c tables/eit.c \ tables/sdt.c tables/nit.c tables/tdttot.c descriptors/dr_42.c \ descriptors/dr_43.c descriptors/dr_47.c descriptors/dr_48.c \ descriptors/dr_4d.c descriptors/dr_4e.c descriptors/dr_52.c \ descriptors/dr_55.c descriptors/dr_56.c descriptors/dr_59.c \ - descriptors/dr_5a.c descriptors/dr_62.c descriptors/dr_69.c \ - descriptors/dr_73.c descriptors/dr_76.c tables/atsc_mgt.c \ - tables/atsc_stt.c tables/atsc_vct.c tables/atsc_eit.c \ - tables/atsc_ett.c + descriptors/dr_5a.c descriptors/dr_62.c descriptors/dr_66.c \ + descriptors/dr_69.c descriptors/dr_73.c descriptors/dr_76.c \ + tables/atsc_mgt.c tables/atsc_stt.c tables/atsc_vct.c \ + tables/atsc_eit.c tables/atsc_ett.c am__objects_1 = dr_02.$(OBJEXT) dr_03.$(OBJEXT) dr_04.$(OBJEXT) \ dr_05.$(OBJEXT) dr_06.$(OBJEXT) dr_07.$(OBJEXT) \ dr_08.$(OBJEXT) dr_09.$(OBJEXT) dr_0a.$(OBJEXT) \ dr_0b.$(OBJEXT) dr_0c.$(OBJEXT) dr_0d.$(OBJEXT) \ - dr_0e.$(OBJEXT) dr_0f.$(OBJEXT) dr_83.$(OBJEXT) + dr_0e.$(OBJEXT) dr_0f.$(OBJEXT) dr_13.$(OBJEXT) \ + dr_14.$(OBJEXT) dr_83.$(OBJEXT) am__objects_2 = pat.$(OBJEXT) pmt.$(OBJEXT) cat.$(OBJEXT) am__objects_3 = eit.$(OBJEXT) sdt.$(OBJEXT) nit.$(OBJEXT) \ tdttot.$(OBJEXT) @@ -73,7 +78,8 @@ dr_48.$(OBJEXT) dr_4d.$(OBJEXT) dr_4e.$(OBJEXT) \ dr_52.$(OBJEXT) dr_55.$(OBJEXT) dr_56.$(OBJEXT) \ dr_59.$(OBJEXT) dr_5a.$(OBJEXT) dr_62.$(OBJEXT) \ - dr_69.$(OBJEXT) dr_73.$(OBJEXT) dr_76.$(OBJEXT) + dr_66.$(OBJEXT) dr_69.$(OBJEXT) dr_73.$(OBJEXT) \ + dr_76.$(OBJEXT) @ENABLE_DVB_TRUE@am__objects_5 = datetime.$(OBJEXT) $(am__objects_3) \ @ENABLE_DVB_TRUE@ $(am__objects_4) am__objects_6 = atsc_mgt.$(OBJEXT) atsc_stt.$(OBJEXT) \ @@ -81,12 +87,14 @@ am__objects_7 = @ENABLE_ATSC_TRUE@am__objects_8 = $(am__objects_6) $(am__objects_7) am_libdvbpsi_a_OBJECTS = demux.$(OBJEXT) descriptor.$(OBJEXT) \ - dvbpsi.$(OBJEXT) psi.$(OBJEXT) $(am__objects_1) \ - $(am__objects_2) $(am__objects_5) $(am__objects_8) + dvbpsi.$(OBJEXT) psi.$(OBJEXT) sections.$(OBJEXT) \ + $(am__objects_1) $(am__objects_2) $(am__objects_5) \ + $(am__objects_8) libdvbpsi_a_OBJECTS = $(am_libdvbpsi_a_OBJECTS) DEFAULT_INCLUDES = -I.@am__isrc@ -I$(top_builddir) depcomp = $(SHELL) $(top_srcdir)/depcomp am__depfiles_maybe = depfiles +am__mv = mv -f COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \ $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) LTCOMPILE = $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) \ @@ -104,6 +112,7 @@ ACLOCAL = @ACLOCAL@ AMTAR = @AMTAR@ AR = @AR@ +AS = @AS@ AUTOCONF = @AUTOCONF@ AUTOHEADER = @AUTOHEADER@ AUTOMAKE = @AUTOMAKE@ @@ -116,6 +125,7 @@ CYGPATH_W = @CYGPATH_W@ DEFS = @DEFS@ DEPDIR = @DEPDIR@ +DLLTOOL = @DLLTOOL@ DSYMUTIL = @DSYMUTIL@ DUMPBIN = @DUMPBIN@ DVBSTREAMER_MAJOR = @DVBSTREAMER_MAJOR@ @@ -131,7 +141,6 @@ GETTIME_LIB = @GETTIME_LIB@ GREP = @GREP@ ICONV_LIB = @ICONV_LIB@ -INCLTDL = @INCLTDL@ INSTALL = @INSTALL@ INSTALL_DATA = @INSTALL_DATA@ INSTALL_PROGRAM = @INSTALL_PROGRAM@ @@ -139,14 +148,11 @@ INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@ LD = @LD@ LDFLAGS = @LDFLAGS@ -LIBLTDL = @LIBLTDL@ LIBOBJS = @LIBOBJS@ LIBS = @LIBS@ LIBTOOL = @LIBTOOL@ LIPO = @LIPO@ LN_S = @LN_S@ -LTDLDEPS = @LTDLDEPS@ -LTDLINCL = @LTDLINCL@ LTLIBOBJS = @LTLIBOBJS@ MAKEINFO = @MAKEINFO@ MKDIR_P = @MKDIR_P@ @@ -222,7 +228,6 @@ sbindir = @sbindir@ sharedstatedir = @sharedstatedir@ srcdir = @srcdir@ -subdirs = @subdirs@ sysconfdir = @sysconfdir@ target_alias = @target_alias@ top_build_prefix = @top_build_prefix@ @@ -230,8 +235,7 @@ top_srcdir = @top_srcdir@ AM_CFLAGS = \ -I$(top_srcdir)/include \ - -I$(top_srcdir)/include/dvbpsi \ - -Wall -Werror + -I$(top_srcdir)/include/dvbpsi noinst_LIBRARIES = libdvbpsi.a libdvbpsi_a_SOURCES = \ @@ -239,6 +243,7 @@ descriptor.c \ dvbpsi.c \ psi.c \ + sections.c \ $(mpeg2_descriptors_src) \ $(mpeg2_tables_src) \ $(dvb_src) \ @@ -270,6 +275,8 @@ descriptors/dr_0d.c \ descriptors/dr_0e.c \ descriptors/dr_0f.c \ + descriptors/dr_13.c \ + descriptors/dr_14.c \ descriptors/dr_83.c dvb_descriptors_src = \ @@ -285,6 +292,7 @@ descriptors/dr_59.c \ descriptors/dr_5a.c \ descriptors/dr_62.c \ + descriptors/dr_66.c \ descriptors/dr_69.c \ descriptors/dr_73.c \ descriptors/dr_76.c @@ -321,9 +329,9 @@ exit 1;; \ esac; \ done; \ - echo ' cd $(top_srcdir) && $(AUTOMAKE) --gnu src/dvbpsi/Makefile'; \ - cd $(top_srcdir) && \ - $(AUTOMAKE) --gnu src/dvbpsi/Makefile + echo ' cd $(top_srcdir) && $(AUTOMAKE) --gnu src/dvbpsi/Makefile'; \ + $(am__cd) $(top_srcdir) && \ + $(AUTOMAKE) --gnu src/dvbpsi/Makefile .PRECIOUS: Makefile Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status @case '$?' in \ @@ -341,6 +349,7 @@ cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh $(ACLOCAL_M4): $(am__aclocal_m4_deps) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh +$(am__aclocal_m4_deps): clean-noinstLIBRARIES: -test -z "$(noinst_LIBRARIES)" || rm -f $(noinst_LIBRARIES) @@ -378,6 +387,8 @@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/dr_0d.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/dr_0e.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/dr_0f.Po@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/dr_13.Po@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/dr_14.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/dr_42.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/dr_43.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/dr_47.Po@am__quote@ @@ -390,6 +401,7 @@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/dr_59.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/dr_5a.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/dr_62.Po@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/dr_66.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/dr_69.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/dr_73.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/dr_76.Po@am__quote@ @@ -401,613 +413,656 @@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/pmt.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/psi.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/sdt.Po@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/sections.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/tdttot.Po@am__quote@ .c.o: @am__fastdepCC_TRUE@ $(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $< -@am__fastdepCC_TRUE@ mv -f $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po +@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(COMPILE) -c $< .c.obj: @am__fastdepCC_TRUE@ $(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ `$(CYGPATH_W) '$<'` -@am__fastdepCC_TRUE@ mv -f $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po +@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(COMPILE) -c `$(CYGPATH_W) '$<'` .c.lo: @am__fastdepCC_TRUE@ $(LTCOMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $< -@am__fastdepCC_TRUE@ mv -f $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Plo +@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Plo @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='$<' object='$@' libtool=yes @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(LTCOMPILE) -c -o $@ $< dr_02.o: descriptors/dr_02.c @am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT dr_02.o -MD -MP -MF $(DEPDIR)/dr_02.Tpo -c -o dr_02.o `test -f 'descriptors/dr_02.c' || echo '$(srcdir)/'`descriptors/dr_02.c -@am__fastdepCC_TRUE@ mv -f $(DEPDIR)/dr_02.Tpo $(DEPDIR)/dr_02.Po +@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/dr_02.Tpo $(DEPDIR)/dr_02.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='descriptors/dr_02.c' object='dr_02.o' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o dr_02.o `test -f 'descriptors/dr_02.c' || echo '$(srcdir)/'`descriptors/dr_02.c dr_02.obj: descriptors/dr_02.c @am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT dr_02.obj -MD -MP -MF $(DEPDIR)/dr_02.Tpo -c -o dr_02.obj `if test -f 'descriptors/dr_02.c'; then $(CYGPATH_W) 'descriptors/dr_02.c'; else $(CYGPATH_W) '$(srcdir)/descriptors/dr_02.c'; fi` -@am__fastdepCC_TRUE@ mv -f $(DEPDIR)/dr_02.Tpo $(DEPDIR)/dr_02.Po +@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/dr_02.Tpo $(DEPDIR)/dr_02.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='descriptors/dr_02.c' object='dr_02.obj' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o dr_02.obj `if test -f 'descriptors/dr_02.c'; then $(CYGPATH_W) 'descriptors/dr_02.c'; else $(CYGPATH_W) '$(srcdir)/descriptors/dr_02.c'; fi` dr_03.o: descriptors/dr_03.c @am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT dr_03.o -MD -MP -MF $(DEPDIR)/dr_03.Tpo -c -o dr_03.o `test -f 'descriptors/dr_03.c' || echo '$(srcdir)/'`descriptors/dr_03.c -@am__fastdepCC_TRUE@ mv -f $(DEPDIR)/dr_03.Tpo $(DEPDIR)/dr_03.Po +@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/dr_03.Tpo $(DEPDIR)/dr_03.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='descriptors/dr_03.c' object='dr_03.o' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o dr_03.o `test -f 'descriptors/dr_03.c' || echo '$(srcdir)/'`descriptors/dr_03.c dr_03.obj: descriptors/dr_03.c @am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT dr_03.obj -MD -MP -MF $(DEPDIR)/dr_03.Tpo -c -o dr_03.obj `if test -f 'descriptors/dr_03.c'; then $(CYGPATH_W) 'descriptors/dr_03.c'; else $(CYGPATH_W) '$(srcdir)/descriptors/dr_03.c'; fi` -@am__fastdepCC_TRUE@ mv -f $(DEPDIR)/dr_03.Tpo $(DEPDIR)/dr_03.Po +@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/dr_03.Tpo $(DEPDIR)/dr_03.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='descriptors/dr_03.c' object='dr_03.obj' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o dr_03.obj `if test -f 'descriptors/dr_03.c'; then $(CYGPATH_W) 'descriptors/dr_03.c'; else $(CYGPATH_W) '$(srcdir)/descriptors/dr_03.c'; fi` dr_04.o: descriptors/dr_04.c @am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT dr_04.o -MD -MP -MF $(DEPDIR)/dr_04.Tpo -c -o dr_04.o `test -f 'descriptors/dr_04.c' || echo '$(srcdir)/'`descriptors/dr_04.c -@am__fastdepCC_TRUE@ mv -f $(DEPDIR)/dr_04.Tpo $(DEPDIR)/dr_04.Po +@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/dr_04.Tpo $(DEPDIR)/dr_04.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='descriptors/dr_04.c' object='dr_04.o' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o dr_04.o `test -f 'descriptors/dr_04.c' || echo '$(srcdir)/'`descriptors/dr_04.c dr_04.obj: descriptors/dr_04.c @am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT dr_04.obj -MD -MP -MF $(DEPDIR)/dr_04.Tpo -c -o dr_04.obj `if test -f 'descriptors/dr_04.c'; then $(CYGPATH_W) 'descriptors/dr_04.c'; else $(CYGPATH_W) '$(srcdir)/descriptors/dr_04.c'; fi` -@am__fastdepCC_TRUE@ mv -f $(DEPDIR)/dr_04.Tpo $(DEPDIR)/dr_04.Po +@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/dr_04.Tpo $(DEPDIR)/dr_04.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='descriptors/dr_04.c' object='dr_04.obj' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o dr_04.obj `if test -f 'descriptors/dr_04.c'; then $(CYGPATH_W) 'descriptors/dr_04.c'; else $(CYGPATH_W) '$(srcdir)/descriptors/dr_04.c'; fi` dr_05.o: descriptors/dr_05.c @am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT dr_05.o -MD -MP -MF $(DEPDIR)/dr_05.Tpo -c -o dr_05.o `test -f 'descriptors/dr_05.c' || echo '$(srcdir)/'`descriptors/dr_05.c -@am__fastdepCC_TRUE@ mv -f $(DEPDIR)/dr_05.Tpo $(DEPDIR)/dr_05.Po +@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/dr_05.Tpo $(DEPDIR)/dr_05.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='descriptors/dr_05.c' object='dr_05.o' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o dr_05.o `test -f 'descriptors/dr_05.c' || echo '$(srcdir)/'`descriptors/dr_05.c dr_05.obj: descriptors/dr_05.c @am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT dr_05.obj -MD -MP -MF $(DEPDIR)/dr_05.Tpo -c -o dr_05.obj `if test -f 'descriptors/dr_05.c'; then $(CYGPATH_W) 'descriptors/dr_05.c'; else $(CYGPATH_W) '$(srcdir)/descriptors/dr_05.c'; fi` -@am__fastdepCC_TRUE@ mv -f $(DEPDIR)/dr_05.Tpo $(DEPDIR)/dr_05.Po +@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/dr_05.Tpo $(DEPDIR)/dr_05.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='descriptors/dr_05.c' object='dr_05.obj' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o dr_05.obj `if test -f 'descriptors/dr_05.c'; then $(CYGPATH_W) 'descriptors/dr_05.c'; else $(CYGPATH_W) '$(srcdir)/descriptors/dr_05.c'; fi` dr_06.o: descriptors/dr_06.c @am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT dr_06.o -MD -MP -MF $(DEPDIR)/dr_06.Tpo -c -o dr_06.o `test -f 'descriptors/dr_06.c' || echo '$(srcdir)/'`descriptors/dr_06.c -@am__fastdepCC_TRUE@ mv -f $(DEPDIR)/dr_06.Tpo $(DEPDIR)/dr_06.Po +@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/dr_06.Tpo $(DEPDIR)/dr_06.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='descriptors/dr_06.c' object='dr_06.o' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o dr_06.o `test -f 'descriptors/dr_06.c' || echo '$(srcdir)/'`descriptors/dr_06.c dr_06.obj: descriptors/dr_06.c @am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT dr_06.obj -MD -MP -MF $(DEPDIR)/dr_06.Tpo -c -o dr_06.obj `if test -f 'descriptors/dr_06.c'; then $(CYGPATH_W) 'descriptors/dr_06.c'; else $(CYGPATH_W) '$(srcdir)/descriptors/dr_06.c'; fi` -@am__fastdepCC_TRUE@ mv -f $(DEPDIR)/dr_06.Tpo $(DEPDIR)/dr_06.Po +@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/dr_06.Tpo $(DEPDIR)/dr_06.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='descriptors/dr_06.c' object='dr_06.obj' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o dr_06.obj `if test -f 'descriptors/dr_06.c'; then $(CYGPATH_W) 'descriptors/dr_06.c'; else $(CYGPATH_W) '$(srcdir)/descriptors/dr_06.c'; fi` dr_07.o: descriptors/dr_07.c @am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT dr_07.o -MD -MP -MF $(DEPDIR)/dr_07.Tpo -c -o dr_07.o `test -f 'descriptors/dr_07.c' || echo '$(srcdir)/'`descriptors/dr_07.c -@am__fastdepCC_TRUE@ mv -f $(DEPDIR)/dr_07.Tpo $(DEPDIR)/dr_07.Po +@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/dr_07.Tpo $(DEPDIR)/dr_07.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='descriptors/dr_07.c' object='dr_07.o' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o dr_07.o `test -f 'descriptors/dr_07.c' || echo '$(srcdir)/'`descriptors/dr_07.c dr_07.obj: descriptors/dr_07.c @am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT dr_07.obj -MD -MP -MF $(DEPDIR)/dr_07.Tpo -c -o dr_07.obj `if test -f 'descriptors/dr_07.c'; then $(CYGPATH_W) 'descriptors/dr_07.c'; else $(CYGPATH_W) '$(srcdir)/descriptors/dr_07.c'; fi` -@am__fastdepCC_TRUE@ mv -f $(DEPDIR)/dr_07.Tpo $(DEPDIR)/dr_07.Po +@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/dr_07.Tpo $(DEPDIR)/dr_07.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='descriptors/dr_07.c' object='dr_07.obj' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o dr_07.obj `if test -f 'descriptors/dr_07.c'; then $(CYGPATH_W) 'descriptors/dr_07.c'; else $(CYGPATH_W) '$(srcdir)/descriptors/dr_07.c'; fi` dr_08.o: descriptors/dr_08.c @am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT dr_08.o -MD -MP -MF $(DEPDIR)/dr_08.Tpo -c -o dr_08.o `test -f 'descriptors/dr_08.c' || echo '$(srcdir)/'`descriptors/dr_08.c -@am__fastdepCC_TRUE@ mv -f $(DEPDIR)/dr_08.Tpo $(DEPDIR)/dr_08.Po +@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/dr_08.Tpo $(DEPDIR)/dr_08.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='descriptors/dr_08.c' object='dr_08.o' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o dr_08.o `test -f 'descriptors/dr_08.c' || echo '$(srcdir)/'`descriptors/dr_08.c dr_08.obj: descriptors/dr_08.c @am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT dr_08.obj -MD -MP -MF $(DEPDIR)/dr_08.Tpo -c -o dr_08.obj `if test -f 'descriptors/dr_08.c'; then $(CYGPATH_W) 'descriptors/dr_08.c'; else $(CYGPATH_W) '$(srcdir)/descriptors/dr_08.c'; fi` -@am__fastdepCC_TRUE@ mv -f $(DEPDIR)/dr_08.Tpo $(DEPDIR)/dr_08.Po +@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/dr_08.Tpo $(DEPDIR)/dr_08.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='descriptors/dr_08.c' object='dr_08.obj' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o dr_08.obj `if test -f 'descriptors/dr_08.c'; then $(CYGPATH_W) 'descriptors/dr_08.c'; else $(CYGPATH_W) '$(srcdir)/descriptors/dr_08.c'; fi` dr_09.o: descriptors/dr_09.c @am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT dr_09.o -MD -MP -MF $(DEPDIR)/dr_09.Tpo -c -o dr_09.o `test -f 'descriptors/dr_09.c' || echo '$(srcdir)/'`descriptors/dr_09.c -@am__fastdepCC_TRUE@ mv -f $(DEPDIR)/dr_09.Tpo $(DEPDIR)/dr_09.Po +@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/dr_09.Tpo $(DEPDIR)/dr_09.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='descriptors/dr_09.c' object='dr_09.o' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o dr_09.o `test -f 'descriptors/dr_09.c' || echo '$(srcdir)/'`descriptors/dr_09.c dr_09.obj: descriptors/dr_09.c @am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT dr_09.obj -MD -MP -MF $(DEPDIR)/dr_09.Tpo -c -o dr_09.obj `if test -f 'descriptors/dr_09.c'; then $(CYGPATH_W) 'descriptors/dr_09.c'; else $(CYGPATH_W) '$(srcdir)/descriptors/dr_09.c'; fi` -@am__fastdepCC_TRUE@ mv -f $(DEPDIR)/dr_09.Tpo $(DEPDIR)/dr_09.Po +@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/dr_09.Tpo $(DEPDIR)/dr_09.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='descriptors/dr_09.c' object='dr_09.obj' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o dr_09.obj `if test -f 'descriptors/dr_09.c'; then $(CYGPATH_W) 'descriptors/dr_09.c'; else $(CYGPATH_W) '$(srcdir)/descriptors/dr_09.c'; fi` dr_0a.o: descriptors/dr_0a.c @am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT dr_0a.o -MD -MP -MF $(DEPDIR)/dr_0a.Tpo -c -o dr_0a.o `test -f 'descriptors/dr_0a.c' || echo '$(srcdir)/'`descriptors/dr_0a.c -@am__fastdepCC_TRUE@ mv -f $(DEPDIR)/dr_0a.Tpo $(DEPDIR)/dr_0a.Po +@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/dr_0a.Tpo $(DEPDIR)/dr_0a.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='descriptors/dr_0a.c' object='dr_0a.o' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o dr_0a.o `test -f 'descriptors/dr_0a.c' || echo '$(srcdir)/'`descriptors/dr_0a.c dr_0a.obj: descriptors/dr_0a.c @am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT dr_0a.obj -MD -MP -MF $(DEPDIR)/dr_0a.Tpo -c -o dr_0a.obj `if test -f 'descriptors/dr_0a.c'; then $(CYGPATH_W) 'descriptors/dr_0a.c'; else $(CYGPATH_W) '$(srcdir)/descriptors/dr_0a.c'; fi` -@am__fastdepCC_TRUE@ mv -f $(DEPDIR)/dr_0a.Tpo $(DEPDIR)/dr_0a.Po +@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/dr_0a.Tpo $(DEPDIR)/dr_0a.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='descriptors/dr_0a.c' object='dr_0a.obj' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o dr_0a.obj `if test -f 'descriptors/dr_0a.c'; then $(CYGPATH_W) 'descriptors/dr_0a.c'; else $(CYGPATH_W) '$(srcdir)/descriptors/dr_0a.c'; fi` dr_0b.o: descriptors/dr_0b.c @am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT dr_0b.o -MD -MP -MF $(DEPDIR)/dr_0b.Tpo -c -o dr_0b.o `test -f 'descriptors/dr_0b.c' || echo '$(srcdir)/'`descriptors/dr_0b.c -@am__fastdepCC_TRUE@ mv -f $(DEPDIR)/dr_0b.Tpo $(DEPDIR)/dr_0b.Po +@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/dr_0b.Tpo $(DEPDIR)/dr_0b.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='descriptors/dr_0b.c' object='dr_0b.o' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o dr_0b.o `test -f 'descriptors/dr_0b.c' || echo '$(srcdir)/'`descriptors/dr_0b.c dr_0b.obj: descriptors/dr_0b.c @am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT dr_0b.obj -MD -MP -MF $(DEPDIR)/dr_0b.Tpo -c -o dr_0b.obj `if test -f 'descriptors/dr_0b.c'; then $(CYGPATH_W) 'descriptors/dr_0b.c'; else $(CYGPATH_W) '$(srcdir)/descriptors/dr_0b.c'; fi` -@am__fastdepCC_TRUE@ mv -f $(DEPDIR)/dr_0b.Tpo $(DEPDIR)/dr_0b.Po +@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/dr_0b.Tpo $(DEPDIR)/dr_0b.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='descriptors/dr_0b.c' object='dr_0b.obj' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o dr_0b.obj `if test -f 'descriptors/dr_0b.c'; then $(CYGPATH_W) 'descriptors/dr_0b.c'; else $(CYGPATH_W) '$(srcdir)/descriptors/dr_0b.c'; fi` dr_0c.o: descriptors/dr_0c.c @am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT dr_0c.o -MD -MP -MF $(DEPDIR)/dr_0c.Tpo -c -o dr_0c.o `test -f 'descriptors/dr_0c.c' || echo '$(srcdir)/'`descriptors/dr_0c.c -@am__fastdepCC_TRUE@ mv -f $(DEPDIR)/dr_0c.Tpo $(DEPDIR)/dr_0c.Po +@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/dr_0c.Tpo $(DEPDIR)/dr_0c.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='descriptors/dr_0c.c' object='dr_0c.o' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o dr_0c.o `test -f 'descriptors/dr_0c.c' || echo '$(srcdir)/'`descriptors/dr_0c.c dr_0c.obj: descriptors/dr_0c.c @am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT dr_0c.obj -MD -MP -MF $(DEPDIR)/dr_0c.Tpo -c -o dr_0c.obj `if test -f 'descriptors/dr_0c.c'; then $(CYGPATH_W) 'descriptors/dr_0c.c'; else $(CYGPATH_W) '$(srcdir)/descriptors/dr_0c.c'; fi` -@am__fastdepCC_TRUE@ mv -f $(DEPDIR)/dr_0c.Tpo $(DEPDIR)/dr_0c.Po +@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/dr_0c.Tpo $(DEPDIR)/dr_0c.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='descriptors/dr_0c.c' object='dr_0c.obj' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o dr_0c.obj `if test -f 'descriptors/dr_0c.c'; then $(CYGPATH_W) 'descriptors/dr_0c.c'; else $(CYGPATH_W) '$(srcdir)/descriptors/dr_0c.c'; fi` dr_0d.o: descriptors/dr_0d.c @am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT dr_0d.o -MD -MP -MF $(DEPDIR)/dr_0d.Tpo -c -o dr_0d.o `test -f 'descriptors/dr_0d.c' || echo '$(srcdir)/'`descriptors/dr_0d.c -@am__fastdepCC_TRUE@ mv -f $(DEPDIR)/dr_0d.Tpo $(DEPDIR)/dr_0d.Po +@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/dr_0d.Tpo $(DEPDIR)/dr_0d.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='descriptors/dr_0d.c' object='dr_0d.o' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o dr_0d.o `test -f 'descriptors/dr_0d.c' || echo '$(srcdir)/'`descriptors/dr_0d.c dr_0d.obj: descriptors/dr_0d.c @am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT dr_0d.obj -MD -MP -MF $(DEPDIR)/dr_0d.Tpo -c -o dr_0d.obj `if test -f 'descriptors/dr_0d.c'; then $(CYGPATH_W) 'descriptors/dr_0d.c'; else $(CYGPATH_W) '$(srcdir)/descriptors/dr_0d.c'; fi` -@am__fastdepCC_TRUE@ mv -f $(DEPDIR)/dr_0d.Tpo $(DEPDIR)/dr_0d.Po +@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/dr_0d.Tpo $(DEPDIR)/dr_0d.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='descriptors/dr_0d.c' object='dr_0d.obj' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o dr_0d.obj `if test -f 'descriptors/dr_0d.c'; then $(CYGPATH_W) 'descriptors/dr_0d.c'; else $(CYGPATH_W) '$(srcdir)/descriptors/dr_0d.c'; fi` dr_0e.o: descriptors/dr_0e.c @am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT dr_0e.o -MD -MP -MF $(DEPDIR)/dr_0e.Tpo -c -o dr_0e.o `test -f 'descriptors/dr_0e.c' || echo '$(srcdir)/'`descriptors/dr_0e.c -@am__fastdepCC_TRUE@ mv -f $(DEPDIR)/dr_0e.Tpo $(DEPDIR)/dr_0e.Po +@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/dr_0e.Tpo $(DEPDIR)/dr_0e.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='descriptors/dr_0e.c' object='dr_0e.o' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o dr_0e.o `test -f 'descriptors/dr_0e.c' || echo '$(srcdir)/'`descriptors/dr_0e.c dr_0e.obj: descriptors/dr_0e.c @am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT dr_0e.obj -MD -MP -MF $(DEPDIR)/dr_0e.Tpo -c -o dr_0e.obj `if test -f 'descriptors/dr_0e.c'; then $(CYGPATH_W) 'descriptors/dr_0e.c'; else $(CYGPATH_W) '$(srcdir)/descriptors/dr_0e.c'; fi` -@am__fastdepCC_TRUE@ mv -f $(DEPDIR)/dr_0e.Tpo $(DEPDIR)/dr_0e.Po +@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/dr_0e.Tpo $(DEPDIR)/dr_0e.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='descriptors/dr_0e.c' object='dr_0e.obj' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o dr_0e.obj `if test -f 'descriptors/dr_0e.c'; then $(CYGPATH_W) 'descriptors/dr_0e.c'; else $(CYGPATH_W) '$(srcdir)/descriptors/dr_0e.c'; fi` dr_0f.o: descriptors/dr_0f.c @am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT dr_0f.o -MD -MP -MF $(DEPDIR)/dr_0f.Tpo -c -o dr_0f.o `test -f 'descriptors/dr_0f.c' || echo '$(srcdir)/'`descriptors/dr_0f.c -@am__fastdepCC_TRUE@ mv -f $(DEPDIR)/dr_0f.Tpo $(DEPDIR)/dr_0f.Po +@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/dr_0f.Tpo $(DEPDIR)/dr_0f.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='descriptors/dr_0f.c' object='dr_0f.o' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o dr_0f.o `test -f 'descriptors/dr_0f.c' || echo '$(srcdir)/'`descriptors/dr_0f.c dr_0f.obj: descriptors/dr_0f.c @am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT dr_0f.obj -MD -MP -MF $(DEPDIR)/dr_0f.Tpo -c -o dr_0f.obj `if test -f 'descriptors/dr_0f.c'; then $(CYGPATH_W) 'descriptors/dr_0f.c'; else $(CYGPATH_W) '$(srcdir)/descriptors/dr_0f.c'; fi` -@am__fastdepCC_TRUE@ mv -f $(DEPDIR)/dr_0f.Tpo $(DEPDIR)/dr_0f.Po +@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/dr_0f.Tpo $(DEPDIR)/dr_0f.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='descriptors/dr_0f.c' object='dr_0f.obj' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o dr_0f.obj `if test -f 'descriptors/dr_0f.c'; then $(CYGPATH_W) 'descriptors/dr_0f.c'; else $(CYGPATH_W) '$(srcdir)/descriptors/dr_0f.c'; fi` +dr_13.o: descriptors/dr_13.c +@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT dr_13.o -MD -MP -MF $(DEPDIR)/dr_13.Tpo -c -o dr_13.o `test -f 'descriptors/dr_13.c' || echo '$(srcdir)/'`descriptors/dr_13.c +@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/dr_13.Tpo $(DEPDIR)/dr_13.Po +@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='descriptors/dr_13.c' object='dr_13.o' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o dr_13.o `test -f 'descriptors/dr_13.c' || echo '$(srcdir)/'`descriptors/dr_13.c + +dr_13.obj: descriptors/dr_13.c +@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT dr_13.obj -MD -MP -MF $(DEPDIR)/dr_13.Tpo -c -o dr_13.obj `if test -f 'descriptors/dr_13.c'; then $(CYGPATH_W) 'descriptors/dr_13.c'; else $(CYGPATH_W) '$(srcdir)/descriptors/dr_13.c'; fi` +@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/dr_13.Tpo $(DEPDIR)/dr_13.Po +@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='descriptors/dr_13.c' object='dr_13.obj' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o dr_13.obj `if test -f 'descriptors/dr_13.c'; then $(CYGPATH_W) 'descriptors/dr_13.c'; else $(CYGPATH_W) '$(srcdir)/descriptors/dr_13.c'; fi` + +dr_14.o: descriptors/dr_14.c +@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT dr_14.o -MD -MP -MF $(DEPDIR)/dr_14.Tpo -c -o dr_14.o `test -f 'descriptors/dr_14.c' || echo '$(srcdir)/'`descriptors/dr_14.c +@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/dr_14.Tpo $(DEPDIR)/dr_14.Po +@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='descriptors/dr_14.c' object='dr_14.o' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o dr_14.o `test -f 'descriptors/dr_14.c' || echo '$(srcdir)/'`descriptors/dr_14.c + +dr_14.obj: descriptors/dr_14.c +@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT dr_14.obj -MD -MP -MF $(DEPDIR)/dr_14.Tpo -c -o dr_14.obj `if test -f 'descriptors/dr_14.c'; then $(CYGPATH_W) 'descriptors/dr_14.c'; else $(CYGPATH_W) '$(srcdir)/descriptors/dr_14.c'; fi` +@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/dr_14.Tpo $(DEPDIR)/dr_14.Po +@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='descriptors/dr_14.c' object='dr_14.obj' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o dr_14.obj `if test -f 'descriptors/dr_14.c'; then $(CYGPATH_W) 'descriptors/dr_14.c'; else $(CYGPATH_W) '$(srcdir)/descriptors/dr_14.c'; fi` + dr_83.o: descriptors/dr_83.c @am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT dr_83.o -MD -MP -MF $(DEPDIR)/dr_83.Tpo -c -o dr_83.o `test -f 'descriptors/dr_83.c' || echo '$(srcdir)/'`descriptors/dr_83.c -@am__fastdepCC_TRUE@ mv -f $(DEPDIR)/dr_83.Tpo $(DEPDIR)/dr_83.Po +@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/dr_83.Tpo $(DEPDIR)/dr_83.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='descriptors/dr_83.c' object='dr_83.o' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o dr_83.o `test -f 'descriptors/dr_83.c' || echo '$(srcdir)/'`descriptors/dr_83.c dr_83.obj: descriptors/dr_83.c @am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT dr_83.obj -MD -MP -MF $(DEPDIR)/dr_83.Tpo -c -o dr_83.obj `if test -f 'descriptors/dr_83.c'; then $(CYGPATH_W) 'descriptors/dr_83.c'; else $(CYGPATH_W) '$(srcdir)/descriptors/dr_83.c'; fi` -@am__fastdepCC_TRUE@ mv -f $(DEPDIR)/dr_83.Tpo $(DEPDIR)/dr_83.Po +@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/dr_83.Tpo $(DEPDIR)/dr_83.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='descriptors/dr_83.c' object='dr_83.obj' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o dr_83.obj `if test -f 'descriptors/dr_83.c'; then $(CYGPATH_W) 'descriptors/dr_83.c'; else $(CYGPATH_W) '$(srcdir)/descriptors/dr_83.c'; fi` pat.o: tables/pat.c @am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT pat.o -MD -MP -MF $(DEPDIR)/pat.Tpo -c -o pat.o `test -f 'tables/pat.c' || echo '$(srcdir)/'`tables/pat.c -@am__fastdepCC_TRUE@ mv -f $(DEPDIR)/pat.Tpo $(DEPDIR)/pat.Po +@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/pat.Tpo $(DEPDIR)/pat.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='tables/pat.c' object='pat.o' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o pat.o `test -f 'tables/pat.c' || echo '$(srcdir)/'`tables/pat.c pat.obj: tables/pat.c @am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT pat.obj -MD -MP -MF $(DEPDIR)/pat.Tpo -c -o pat.obj `if test -f 'tables/pat.c'; then $(CYGPATH_W) 'tables/pat.c'; else $(CYGPATH_W) '$(srcdir)/tables/pat.c'; fi` -@am__fastdepCC_TRUE@ mv -f $(DEPDIR)/pat.Tpo $(DEPDIR)/pat.Po +@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/pat.Tpo $(DEPDIR)/pat.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='tables/pat.c' object='pat.obj' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o pat.obj `if test -f 'tables/pat.c'; then $(CYGPATH_W) 'tables/pat.c'; else $(CYGPATH_W) '$(srcdir)/tables/pat.c'; fi` pmt.o: tables/pmt.c @am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT pmt.o -MD -MP -MF $(DEPDIR)/pmt.Tpo -c -o pmt.o `test -f 'tables/pmt.c' || echo '$(srcdir)/'`tables/pmt.c -@am__fastdepCC_TRUE@ mv -f $(DEPDIR)/pmt.Tpo $(DEPDIR)/pmt.Po +@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/pmt.Tpo $(DEPDIR)/pmt.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='tables/pmt.c' object='pmt.o' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o pmt.o `test -f 'tables/pmt.c' || echo '$(srcdir)/'`tables/pmt.c pmt.obj: tables/pmt.c @am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT pmt.obj -MD -MP -MF $(DEPDIR)/pmt.Tpo -c -o pmt.obj `if test -f 'tables/pmt.c'; then $(CYGPATH_W) 'tables/pmt.c'; else $(CYGPATH_W) '$(srcdir)/tables/pmt.c'; fi` -@am__fastdepCC_TRUE@ mv -f $(DEPDIR)/pmt.Tpo $(DEPDIR)/pmt.Po +@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/pmt.Tpo $(DEPDIR)/pmt.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='tables/pmt.c' object='pmt.obj' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o pmt.obj `if test -f 'tables/pmt.c'; then $(CYGPATH_W) 'tables/pmt.c'; else $(CYGPATH_W) '$(srcdir)/tables/pmt.c'; fi` cat.o: tables/cat.c @am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT cat.o -MD -MP -MF $(DEPDIR)/cat.Tpo -c -o cat.o `test -f 'tables/cat.c' || echo '$(srcdir)/'`tables/cat.c -@am__fastdepCC_TRUE@ mv -f $(DEPDIR)/cat.Tpo $(DEPDIR)/cat.Po +@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/cat.Tpo $(DEPDIR)/cat.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='tables/cat.c' object='cat.o' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o cat.o `test -f 'tables/cat.c' || echo '$(srcdir)/'`tables/cat.c cat.obj: tables/cat.c @am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT cat.obj -MD -MP -MF $(DEPDIR)/cat.Tpo -c -o cat.obj `if test -f 'tables/cat.c'; then $(CYGPATH_W) 'tables/cat.c'; else $(CYGPATH_W) '$(srcdir)/tables/cat.c'; fi` -@am__fastdepCC_TRUE@ mv -f $(DEPDIR)/cat.Tpo $(DEPDIR)/cat.Po +@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/cat.Tpo $(DEPDIR)/cat.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='tables/cat.c' object='cat.obj' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o cat.obj `if test -f 'tables/cat.c'; then $(CYGPATH_W) 'tables/cat.c'; else $(CYGPATH_W) '$(srcdir)/tables/cat.c'; fi` eit.o: tables/eit.c @am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT eit.o -MD -MP -MF $(DEPDIR)/eit.Tpo -c -o eit.o `test -f 'tables/eit.c' || echo '$(srcdir)/'`tables/eit.c -@am__fastdepCC_TRUE@ mv -f $(DEPDIR)/eit.Tpo $(DEPDIR)/eit.Po +@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/eit.Tpo $(DEPDIR)/eit.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='tables/eit.c' object='eit.o' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o eit.o `test -f 'tables/eit.c' || echo '$(srcdir)/'`tables/eit.c eit.obj: tables/eit.c @am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT eit.obj -MD -MP -MF $(DEPDIR)/eit.Tpo -c -o eit.obj `if test -f 'tables/eit.c'; then $(CYGPATH_W) 'tables/eit.c'; else $(CYGPATH_W) '$(srcdir)/tables/eit.c'; fi` -@am__fastdepCC_TRUE@ mv -f $(DEPDIR)/eit.Tpo $(DEPDIR)/eit.Po +@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/eit.Tpo $(DEPDIR)/eit.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='tables/eit.c' object='eit.obj' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o eit.obj `if test -f 'tables/eit.c'; then $(CYGPATH_W) 'tables/eit.c'; else $(CYGPATH_W) '$(srcdir)/tables/eit.c'; fi` sdt.o: tables/sdt.c @am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT sdt.o -MD -MP -MF $(DEPDIR)/sdt.Tpo -c -o sdt.o `test -f 'tables/sdt.c' || echo '$(srcdir)/'`tables/sdt.c -@am__fastdepCC_TRUE@ mv -f $(DEPDIR)/sdt.Tpo $(DEPDIR)/sdt.Po +@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/sdt.Tpo $(DEPDIR)/sdt.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='tables/sdt.c' object='sdt.o' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o sdt.o `test -f 'tables/sdt.c' || echo '$(srcdir)/'`tables/sdt.c sdt.obj: tables/sdt.c @am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT sdt.obj -MD -MP -MF $(DEPDIR)/sdt.Tpo -c -o sdt.obj `if test -f 'tables/sdt.c'; then $(CYGPATH_W) 'tables/sdt.c'; else $(CYGPATH_W) '$(srcdir)/tables/sdt.c'; fi` -@am__fastdepCC_TRUE@ mv -f $(DEPDIR)/sdt.Tpo $(DEPDIR)/sdt.Po +@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/sdt.Tpo $(DEPDIR)/sdt.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='tables/sdt.c' object='sdt.obj' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o sdt.obj `if test -f 'tables/sdt.c'; then $(CYGPATH_W) 'tables/sdt.c'; else $(CYGPATH_W) '$(srcdir)/tables/sdt.c'; fi` nit.o: tables/nit.c @am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT nit.o -MD -MP -MF $(DEPDIR)/nit.Tpo -c -o nit.o `test -f 'tables/nit.c' || echo '$(srcdir)/'`tables/nit.c -@am__fastdepCC_TRUE@ mv -f $(DEPDIR)/nit.Tpo $(DEPDIR)/nit.Po +@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/nit.Tpo $(DEPDIR)/nit.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='tables/nit.c' object='nit.o' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o nit.o `test -f 'tables/nit.c' || echo '$(srcdir)/'`tables/nit.c nit.obj: tables/nit.c @am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT nit.obj -MD -MP -MF $(DEPDIR)/nit.Tpo -c -o nit.obj `if test -f 'tables/nit.c'; then $(CYGPATH_W) 'tables/nit.c'; else $(CYGPATH_W) '$(srcdir)/tables/nit.c'; fi` -@am__fastdepCC_TRUE@ mv -f $(DEPDIR)/nit.Tpo $(DEPDIR)/nit.Po +@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/nit.Tpo $(DEPDIR)/nit.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='tables/nit.c' object='nit.obj' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o nit.obj `if test -f 'tables/nit.c'; then $(CYGPATH_W) 'tables/nit.c'; else $(CYGPATH_W) '$(srcdir)/tables/nit.c'; fi` tdttot.o: tables/tdttot.c @am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT tdttot.o -MD -MP -MF $(DEPDIR)/tdttot.Tpo -c -o tdttot.o `test -f 'tables/tdttot.c' || echo '$(srcdir)/'`tables/tdttot.c -@am__fastdepCC_TRUE@ mv -f $(DEPDIR)/tdttot.Tpo $(DEPDIR)/tdttot.Po +@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/tdttot.Tpo $(DEPDIR)/tdttot.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='tables/tdttot.c' object='tdttot.o' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o tdttot.o `test -f 'tables/tdttot.c' || echo '$(srcdir)/'`tables/tdttot.c tdttot.obj: tables/tdttot.c @am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT tdttot.obj -MD -MP -MF $(DEPDIR)/tdttot.Tpo -c -o tdttot.obj `if test -f 'tables/tdttot.c'; then $(CYGPATH_W) 'tables/tdttot.c'; else $(CYGPATH_W) '$(srcdir)/tables/tdttot.c'; fi` -@am__fastdepCC_TRUE@ mv -f $(DEPDIR)/tdttot.Tpo $(DEPDIR)/tdttot.Po +@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/tdttot.Tpo $(DEPDIR)/tdttot.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='tables/tdttot.c' object='tdttot.obj' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o tdttot.obj `if test -f 'tables/tdttot.c'; then $(CYGPATH_W) 'tables/tdttot.c'; else $(CYGPATH_W) '$(srcdir)/tables/tdttot.c'; fi` dr_42.o: descriptors/dr_42.c @am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT dr_42.o -MD -MP -MF $(DEPDIR)/dr_42.Tpo -c -o dr_42.o `test -f 'descriptors/dr_42.c' || echo '$(srcdir)/'`descriptors/dr_42.c -@am__fastdepCC_TRUE@ mv -f $(DEPDIR)/dr_42.Tpo $(DEPDIR)/dr_42.Po +@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/dr_42.Tpo $(DEPDIR)/dr_42.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='descriptors/dr_42.c' object='dr_42.o' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o dr_42.o `test -f 'descriptors/dr_42.c' || echo '$(srcdir)/'`descriptors/dr_42.c dr_42.obj: descriptors/dr_42.c @am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT dr_42.obj -MD -MP -MF $(DEPDIR)/dr_42.Tpo -c -o dr_42.obj `if test -f 'descriptors/dr_42.c'; then $(CYGPATH_W) 'descriptors/dr_42.c'; else $(CYGPATH_W) '$(srcdir)/descriptors/dr_42.c'; fi` -@am__fastdepCC_TRUE@ mv -f $(DEPDIR)/dr_42.Tpo $(DEPDIR)/dr_42.Po +@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/dr_42.Tpo $(DEPDIR)/dr_42.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='descriptors/dr_42.c' object='dr_42.obj' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o dr_42.obj `if test -f 'descriptors/dr_42.c'; then $(CYGPATH_W) 'descriptors/dr_42.c'; else $(CYGPATH_W) '$(srcdir)/descriptors/dr_42.c'; fi` dr_43.o: descriptors/dr_43.c @am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT dr_43.o -MD -MP -MF $(DEPDIR)/dr_43.Tpo -c -o dr_43.o `test -f 'descriptors/dr_43.c' || echo '$(srcdir)/'`descriptors/dr_43.c -@am__fastdepCC_TRUE@ mv -f $(DEPDIR)/dr_43.Tpo $(DEPDIR)/dr_43.Po +@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/dr_43.Tpo $(DEPDIR)/dr_43.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='descriptors/dr_43.c' object='dr_43.o' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o dr_43.o `test -f 'descriptors/dr_43.c' || echo '$(srcdir)/'`descriptors/dr_43.c dr_43.obj: descriptors/dr_43.c @am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT dr_43.obj -MD -MP -MF $(DEPDIR)/dr_43.Tpo -c -o dr_43.obj `if test -f 'descriptors/dr_43.c'; then $(CYGPATH_W) 'descriptors/dr_43.c'; else $(CYGPATH_W) '$(srcdir)/descriptors/dr_43.c'; fi` -@am__fastdepCC_TRUE@ mv -f $(DEPDIR)/dr_43.Tpo $(DEPDIR)/dr_43.Po +@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/dr_43.Tpo $(DEPDIR)/dr_43.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='descriptors/dr_43.c' object='dr_43.obj' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o dr_43.obj `if test -f 'descriptors/dr_43.c'; then $(CYGPATH_W) 'descriptors/dr_43.c'; else $(CYGPATH_W) '$(srcdir)/descriptors/dr_43.c'; fi` dr_47.o: descriptors/dr_47.c @am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT dr_47.o -MD -MP -MF $(DEPDIR)/dr_47.Tpo -c -o dr_47.o `test -f 'descriptors/dr_47.c' || echo '$(srcdir)/'`descriptors/dr_47.c -@am__fastdepCC_TRUE@ mv -f $(DEPDIR)/dr_47.Tpo $(DEPDIR)/dr_47.Po +@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/dr_47.Tpo $(DEPDIR)/dr_47.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='descriptors/dr_47.c' object='dr_47.o' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o dr_47.o `test -f 'descriptors/dr_47.c' || echo '$(srcdir)/'`descriptors/dr_47.c dr_47.obj: descriptors/dr_47.c @am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT dr_47.obj -MD -MP -MF $(DEPDIR)/dr_47.Tpo -c -o dr_47.obj `if test -f 'descriptors/dr_47.c'; then $(CYGPATH_W) 'descriptors/dr_47.c'; else $(CYGPATH_W) '$(srcdir)/descriptors/dr_47.c'; fi` -@am__fastdepCC_TRUE@ mv -f $(DEPDIR)/dr_47.Tpo $(DEPDIR)/dr_47.Po +@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/dr_47.Tpo $(DEPDIR)/dr_47.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='descriptors/dr_47.c' object='dr_47.obj' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o dr_47.obj `if test -f 'descriptors/dr_47.c'; then $(CYGPATH_W) 'descriptors/dr_47.c'; else $(CYGPATH_W) '$(srcdir)/descriptors/dr_47.c'; fi` dr_48.o: descriptors/dr_48.c @am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT dr_48.o -MD -MP -MF $(DEPDIR)/dr_48.Tpo -c -o dr_48.o `test -f 'descriptors/dr_48.c' || echo '$(srcdir)/'`descriptors/dr_48.c -@am__fastdepCC_TRUE@ mv -f $(DEPDIR)/dr_48.Tpo $(DEPDIR)/dr_48.Po +@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/dr_48.Tpo $(DEPDIR)/dr_48.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='descriptors/dr_48.c' object='dr_48.o' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o dr_48.o `test -f 'descriptors/dr_48.c' || echo '$(srcdir)/'`descriptors/dr_48.c dr_48.obj: descriptors/dr_48.c @am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT dr_48.obj -MD -MP -MF $(DEPDIR)/dr_48.Tpo -c -o dr_48.obj `if test -f 'descriptors/dr_48.c'; then $(CYGPATH_W) 'descriptors/dr_48.c'; else $(CYGPATH_W) '$(srcdir)/descriptors/dr_48.c'; fi` -@am__fastdepCC_TRUE@ mv -f $(DEPDIR)/dr_48.Tpo $(DEPDIR)/dr_48.Po +@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/dr_48.Tpo $(DEPDIR)/dr_48.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='descriptors/dr_48.c' object='dr_48.obj' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o dr_48.obj `if test -f 'descriptors/dr_48.c'; then $(CYGPATH_W) 'descriptors/dr_48.c'; else $(CYGPATH_W) '$(srcdir)/descriptors/dr_48.c'; fi` dr_4d.o: descriptors/dr_4d.c @am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT dr_4d.o -MD -MP -MF $(DEPDIR)/dr_4d.Tpo -c -o dr_4d.o `test -f 'descriptors/dr_4d.c' || echo '$(srcdir)/'`descriptors/dr_4d.c -@am__fastdepCC_TRUE@ mv -f $(DEPDIR)/dr_4d.Tpo $(DEPDIR)/dr_4d.Po +@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/dr_4d.Tpo $(DEPDIR)/dr_4d.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='descriptors/dr_4d.c' object='dr_4d.o' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o dr_4d.o `test -f 'descriptors/dr_4d.c' || echo '$(srcdir)/'`descriptors/dr_4d.c dr_4d.obj: descriptors/dr_4d.c @am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT dr_4d.obj -MD -MP -MF $(DEPDIR)/dr_4d.Tpo -c -o dr_4d.obj `if test -f 'descriptors/dr_4d.c'; then $(CYGPATH_W) 'descriptors/dr_4d.c'; else $(CYGPATH_W) '$(srcdir)/descriptors/dr_4d.c'; fi` -@am__fastdepCC_TRUE@ mv -f $(DEPDIR)/dr_4d.Tpo $(DEPDIR)/dr_4d.Po +@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/dr_4d.Tpo $(DEPDIR)/dr_4d.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='descriptors/dr_4d.c' object='dr_4d.obj' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o dr_4d.obj `if test -f 'descriptors/dr_4d.c'; then $(CYGPATH_W) 'descriptors/dr_4d.c'; else $(CYGPATH_W) '$(srcdir)/descriptors/dr_4d.c'; fi` dr_4e.o: descriptors/dr_4e.c @am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT dr_4e.o -MD -MP -MF $(DEPDIR)/dr_4e.Tpo -c -o dr_4e.o `test -f 'descriptors/dr_4e.c' || echo '$(srcdir)/'`descriptors/dr_4e.c -@am__fastdepCC_TRUE@ mv -f $(DEPDIR)/dr_4e.Tpo $(DEPDIR)/dr_4e.Po +@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/dr_4e.Tpo $(DEPDIR)/dr_4e.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='descriptors/dr_4e.c' object='dr_4e.o' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o dr_4e.o `test -f 'descriptors/dr_4e.c' || echo '$(srcdir)/'`descriptors/dr_4e.c dr_4e.obj: descriptors/dr_4e.c @am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT dr_4e.obj -MD -MP -MF $(DEPDIR)/dr_4e.Tpo -c -o dr_4e.obj `if test -f 'descriptors/dr_4e.c'; then $(CYGPATH_W) 'descriptors/dr_4e.c'; else $(CYGPATH_W) '$(srcdir)/descriptors/dr_4e.c'; fi` -@am__fastdepCC_TRUE@ mv -f $(DEPDIR)/dr_4e.Tpo $(DEPDIR)/dr_4e.Po +@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/dr_4e.Tpo $(DEPDIR)/dr_4e.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='descriptors/dr_4e.c' object='dr_4e.obj' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o dr_4e.obj `if test -f 'descriptors/dr_4e.c'; then $(CYGPATH_W) 'descriptors/dr_4e.c'; else $(CYGPATH_W) '$(srcdir)/descriptors/dr_4e.c'; fi` dr_52.o: descriptors/dr_52.c @am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT dr_52.o -MD -MP -MF $(DEPDIR)/dr_52.Tpo -c -o dr_52.o `test -f 'descriptors/dr_52.c' || echo '$(srcdir)/'`descriptors/dr_52.c -@am__fastdepCC_TRUE@ mv -f $(DEPDIR)/dr_52.Tpo $(DEPDIR)/dr_52.Po +@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/dr_52.Tpo $(DEPDIR)/dr_52.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='descriptors/dr_52.c' object='dr_52.o' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o dr_52.o `test -f 'descriptors/dr_52.c' || echo '$(srcdir)/'`descriptors/dr_52.c dr_52.obj: descriptors/dr_52.c @am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT dr_52.obj -MD -MP -MF $(DEPDIR)/dr_52.Tpo -c -o dr_52.obj `if test -f 'descriptors/dr_52.c'; then $(CYGPATH_W) 'descriptors/dr_52.c'; else $(CYGPATH_W) '$(srcdir)/descriptors/dr_52.c'; fi` -@am__fastdepCC_TRUE@ mv -f $(DEPDIR)/dr_52.Tpo $(DEPDIR)/dr_52.Po +@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/dr_52.Tpo $(DEPDIR)/dr_52.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='descriptors/dr_52.c' object='dr_52.obj' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o dr_52.obj `if test -f 'descriptors/dr_52.c'; then $(CYGPATH_W) 'descriptors/dr_52.c'; else $(CYGPATH_W) '$(srcdir)/descriptors/dr_52.c'; fi` dr_55.o: descriptors/dr_55.c @am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT dr_55.o -MD -MP -MF $(DEPDIR)/dr_55.Tpo -c -o dr_55.o `test -f 'descriptors/dr_55.c' || echo '$(srcdir)/'`descriptors/dr_55.c -@am__fastdepCC_TRUE@ mv -f $(DEPDIR)/dr_55.Tpo $(DEPDIR)/dr_55.Po +@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/dr_55.Tpo $(DEPDIR)/dr_55.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='descriptors/dr_55.c' object='dr_55.o' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o dr_55.o `test -f 'descriptors/dr_55.c' || echo '$(srcdir)/'`descriptors/dr_55.c dr_55.obj: descriptors/dr_55.c @am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT dr_55.obj -MD -MP -MF $(DEPDIR)/dr_55.Tpo -c -o dr_55.obj `if test -f 'descriptors/dr_55.c'; then $(CYGPATH_W) 'descriptors/dr_55.c'; else $(CYGPATH_W) '$(srcdir)/descriptors/dr_55.c'; fi` -@am__fastdepCC_TRUE@ mv -f $(DEPDIR)/dr_55.Tpo $(DEPDIR)/dr_55.Po +@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/dr_55.Tpo $(DEPDIR)/dr_55.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='descriptors/dr_55.c' object='dr_55.obj' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o dr_55.obj `if test -f 'descriptors/dr_55.c'; then $(CYGPATH_W) 'descriptors/dr_55.c'; else $(CYGPATH_W) '$(srcdir)/descriptors/dr_55.c'; fi` dr_56.o: descriptors/dr_56.c @am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT dr_56.o -MD -MP -MF $(DEPDIR)/dr_56.Tpo -c -o dr_56.o `test -f 'descriptors/dr_56.c' || echo '$(srcdir)/'`descriptors/dr_56.c -@am__fastdepCC_TRUE@ mv -f $(DEPDIR)/dr_56.Tpo $(DEPDIR)/dr_56.Po +@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/dr_56.Tpo $(DEPDIR)/dr_56.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='descriptors/dr_56.c' object='dr_56.o' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o dr_56.o `test -f 'descriptors/dr_56.c' || echo '$(srcdir)/'`descriptors/dr_56.c dr_56.obj: descriptors/dr_56.c @am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT dr_56.obj -MD -MP -MF $(DEPDIR)/dr_56.Tpo -c -o dr_56.obj `if test -f 'descriptors/dr_56.c'; then $(CYGPATH_W) 'descriptors/dr_56.c'; else $(CYGPATH_W) '$(srcdir)/descriptors/dr_56.c'; fi` -@am__fastdepCC_TRUE@ mv -f $(DEPDIR)/dr_56.Tpo $(DEPDIR)/dr_56.Po +@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/dr_56.Tpo $(DEPDIR)/dr_56.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='descriptors/dr_56.c' object='dr_56.obj' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o dr_56.obj `if test -f 'descriptors/dr_56.c'; then $(CYGPATH_W) 'descriptors/dr_56.c'; else $(CYGPATH_W) '$(srcdir)/descriptors/dr_56.c'; fi` dr_59.o: descriptors/dr_59.c @am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT dr_59.o -MD -MP -MF $(DEPDIR)/dr_59.Tpo -c -o dr_59.o `test -f 'descriptors/dr_59.c' || echo '$(srcdir)/'`descriptors/dr_59.c -@am__fastdepCC_TRUE@ mv -f $(DEPDIR)/dr_59.Tpo $(DEPDIR)/dr_59.Po +@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/dr_59.Tpo $(DEPDIR)/dr_59.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='descriptors/dr_59.c' object='dr_59.o' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o dr_59.o `test -f 'descriptors/dr_59.c' || echo '$(srcdir)/'`descriptors/dr_59.c dr_59.obj: descriptors/dr_59.c @am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT dr_59.obj -MD -MP -MF $(DEPDIR)/dr_59.Tpo -c -o dr_59.obj `if test -f 'descriptors/dr_59.c'; then $(CYGPATH_W) 'descriptors/dr_59.c'; else $(CYGPATH_W) '$(srcdir)/descriptors/dr_59.c'; fi` -@am__fastdepCC_TRUE@ mv -f $(DEPDIR)/dr_59.Tpo $(DEPDIR)/dr_59.Po +@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/dr_59.Tpo $(DEPDIR)/dr_59.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='descriptors/dr_59.c' object='dr_59.obj' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o dr_59.obj `if test -f 'descriptors/dr_59.c'; then $(CYGPATH_W) 'descriptors/dr_59.c'; else $(CYGPATH_W) '$(srcdir)/descriptors/dr_59.c'; fi` dr_5a.o: descriptors/dr_5a.c @am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT dr_5a.o -MD -MP -MF $(DEPDIR)/dr_5a.Tpo -c -o dr_5a.o `test -f 'descriptors/dr_5a.c' || echo '$(srcdir)/'`descriptors/dr_5a.c -@am__fastdepCC_TRUE@ mv -f $(DEPDIR)/dr_5a.Tpo $(DEPDIR)/dr_5a.Po +@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/dr_5a.Tpo $(DEPDIR)/dr_5a.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='descriptors/dr_5a.c' object='dr_5a.o' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o dr_5a.o `test -f 'descriptors/dr_5a.c' || echo '$(srcdir)/'`descriptors/dr_5a.c dr_5a.obj: descriptors/dr_5a.c @am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT dr_5a.obj -MD -MP -MF $(DEPDIR)/dr_5a.Tpo -c -o dr_5a.obj `if test -f 'descriptors/dr_5a.c'; then $(CYGPATH_W) 'descriptors/dr_5a.c'; else $(CYGPATH_W) '$(srcdir)/descriptors/dr_5a.c'; fi` -@am__fastdepCC_TRUE@ mv -f $(DEPDIR)/dr_5a.Tpo $(DEPDIR)/dr_5a.Po +@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/dr_5a.Tpo $(DEPDIR)/dr_5a.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='descriptors/dr_5a.c' object='dr_5a.obj' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o dr_5a.obj `if test -f 'descriptors/dr_5a.c'; then $(CYGPATH_W) 'descriptors/dr_5a.c'; else $(CYGPATH_W) '$(srcdir)/descriptors/dr_5a.c'; fi` dr_62.o: descriptors/dr_62.c @am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT dr_62.o -MD -MP -MF $(DEPDIR)/dr_62.Tpo -c -o dr_62.o `test -f 'descriptors/dr_62.c' || echo '$(srcdir)/'`descriptors/dr_62.c -@am__fastdepCC_TRUE@ mv -f $(DEPDIR)/dr_62.Tpo $(DEPDIR)/dr_62.Po +@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/dr_62.Tpo $(DEPDIR)/dr_62.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='descriptors/dr_62.c' object='dr_62.o' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o dr_62.o `test -f 'descriptors/dr_62.c' || echo '$(srcdir)/'`descriptors/dr_62.c dr_62.obj: descriptors/dr_62.c @am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT dr_62.obj -MD -MP -MF $(DEPDIR)/dr_62.Tpo -c -o dr_62.obj `if test -f 'descriptors/dr_62.c'; then $(CYGPATH_W) 'descriptors/dr_62.c'; else $(CYGPATH_W) '$(srcdir)/descriptors/dr_62.c'; fi` -@am__fastdepCC_TRUE@ mv -f $(DEPDIR)/dr_62.Tpo $(DEPDIR)/dr_62.Po +@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/dr_62.Tpo $(DEPDIR)/dr_62.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='descriptors/dr_62.c' object='dr_62.obj' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o dr_62.obj `if test -f 'descriptors/dr_62.c'; then $(CYGPATH_W) 'descriptors/dr_62.c'; else $(CYGPATH_W) '$(srcdir)/descriptors/dr_62.c'; fi` +dr_66.o: descriptors/dr_66.c +@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT dr_66.o -MD -MP -MF $(DEPDIR)/dr_66.Tpo -c -o dr_66.o `test -f 'descriptors/dr_66.c' || echo '$(srcdir)/'`descriptors/dr_66.c +@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/dr_66.Tpo $(DEPDIR)/dr_66.Po +@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='descriptors/dr_66.c' object='dr_66.o' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o dr_66.o `test -f 'descriptors/dr_66.c' || echo '$(srcdir)/'`descriptors/dr_66.c + +dr_66.obj: descriptors/dr_66.c +@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT dr_66.obj -MD -MP -MF $(DEPDIR)/dr_66.Tpo -c -o dr_66.obj `if test -f 'descriptors/dr_66.c'; then $(CYGPATH_W) 'descriptors/dr_66.c'; else $(CYGPATH_W) '$(srcdir)/descriptors/dr_66.c'; fi` +@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/dr_66.Tpo $(DEPDIR)/dr_66.Po +@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='descriptors/dr_66.c' object='dr_66.obj' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o dr_66.obj `if test -f 'descriptors/dr_66.c'; then $(CYGPATH_W) 'descriptors/dr_66.c'; else $(CYGPATH_W) '$(srcdir)/descriptors/dr_66.c'; fi` + dr_69.o: descriptors/dr_69.c @am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT dr_69.o -MD -MP -MF $(DEPDIR)/dr_69.Tpo -c -o dr_69.o `test -f 'descriptors/dr_69.c' || echo '$(srcdir)/'`descriptors/dr_69.c -@am__fastdepCC_TRUE@ mv -f $(DEPDIR)/dr_69.Tpo $(DEPDIR)/dr_69.Po +@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/dr_69.Tpo $(DEPDIR)/dr_69.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='descriptors/dr_69.c' object='dr_69.o' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o dr_69.o `test -f 'descriptors/dr_69.c' || echo '$(srcdir)/'`descriptors/dr_69.c dr_69.obj: descriptors/dr_69.c @am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT dr_69.obj -MD -MP -MF $(DEPDIR)/dr_69.Tpo -c -o dr_69.obj `if test -f 'descriptors/dr_69.c'; then $(CYGPATH_W) 'descriptors/dr_69.c'; else $(CYGPATH_W) '$(srcdir)/descriptors/dr_69.c'; fi` -@am__fastdepCC_TRUE@ mv -f $(DEPDIR)/dr_69.Tpo $(DEPDIR)/dr_69.Po +@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/dr_69.Tpo $(DEPDIR)/dr_69.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='descriptors/dr_69.c' object='dr_69.obj' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o dr_69.obj `if test -f 'descriptors/dr_69.c'; then $(CYGPATH_W) 'descriptors/dr_69.c'; else $(CYGPATH_W) '$(srcdir)/descriptors/dr_69.c'; fi` dr_73.o: descriptors/dr_73.c @am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT dr_73.o -MD -MP -MF $(DEPDIR)/dr_73.Tpo -c -o dr_73.o `test -f 'descriptors/dr_73.c' || echo '$(srcdir)/'`descriptors/dr_73.c -@am__fastdepCC_TRUE@ mv -f $(DEPDIR)/dr_73.Tpo $(DEPDIR)/dr_73.Po +@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/dr_73.Tpo $(DEPDIR)/dr_73.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='descriptors/dr_73.c' object='dr_73.o' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o dr_73.o `test -f 'descriptors/dr_73.c' || echo '$(srcdir)/'`descriptors/dr_73.c dr_73.obj: descriptors/dr_73.c @am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT dr_73.obj -MD -MP -MF $(DEPDIR)/dr_73.Tpo -c -o dr_73.obj `if test -f 'descriptors/dr_73.c'; then $(CYGPATH_W) 'descriptors/dr_73.c'; else $(CYGPATH_W) '$(srcdir)/descriptors/dr_73.c'; fi` -@am__fastdepCC_TRUE@ mv -f $(DEPDIR)/dr_73.Tpo $(DEPDIR)/dr_73.Po +@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/dr_73.Tpo $(DEPDIR)/dr_73.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='descriptors/dr_73.c' object='dr_73.obj' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o dr_73.obj `if test -f 'descriptors/dr_73.c'; then $(CYGPATH_W) 'descriptors/dr_73.c'; else $(CYGPATH_W) '$(srcdir)/descriptors/dr_73.c'; fi` dr_76.o: descriptors/dr_76.c @am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT dr_76.o -MD -MP -MF $(DEPDIR)/dr_76.Tpo -c -o dr_76.o `test -f 'descriptors/dr_76.c' || echo '$(srcdir)/'`descriptors/dr_76.c -@am__fastdepCC_TRUE@ mv -f $(DEPDIR)/dr_76.Tpo $(DEPDIR)/dr_76.Po +@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/dr_76.Tpo $(DEPDIR)/dr_76.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='descriptors/dr_76.c' object='dr_76.o' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o dr_76.o `test -f 'descriptors/dr_76.c' || echo '$(srcdir)/'`descriptors/dr_76.c dr_76.obj: descriptors/dr_76.c @am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT dr_76.obj -MD -MP -MF $(DEPDIR)/dr_76.Tpo -c -o dr_76.obj `if test -f 'descriptors/dr_76.c'; then $(CYGPATH_W) 'descriptors/dr_76.c'; else $(CYGPATH_W) '$(srcdir)/descriptors/dr_76.c'; fi` -@am__fastdepCC_TRUE@ mv -f $(DEPDIR)/dr_76.Tpo $(DEPDIR)/dr_76.Po +@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/dr_76.Tpo $(DEPDIR)/dr_76.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='descriptors/dr_76.c' object='dr_76.obj' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o dr_76.obj `if test -f 'descriptors/dr_76.c'; then $(CYGPATH_W) 'descriptors/dr_76.c'; else $(CYGPATH_W) '$(srcdir)/descriptors/dr_76.c'; fi` atsc_mgt.o: tables/atsc_mgt.c @am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT atsc_mgt.o -MD -MP -MF $(DEPDIR)/atsc_mgt.Tpo -c -o atsc_mgt.o `test -f 'tables/atsc_mgt.c' || echo '$(srcdir)/'`tables/atsc_mgt.c -@am__fastdepCC_TRUE@ mv -f $(DEPDIR)/atsc_mgt.Tpo $(DEPDIR)/atsc_mgt.Po +@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/atsc_mgt.Tpo $(DEPDIR)/atsc_mgt.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='tables/atsc_mgt.c' object='atsc_mgt.o' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o atsc_mgt.o `test -f 'tables/atsc_mgt.c' || echo '$(srcdir)/'`tables/atsc_mgt.c atsc_mgt.obj: tables/atsc_mgt.c @am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT atsc_mgt.obj -MD -MP -MF $(DEPDIR)/atsc_mgt.Tpo -c -o atsc_mgt.obj `if test -f 'tables/atsc_mgt.c'; then $(CYGPATH_W) 'tables/atsc_mgt.c'; else $(CYGPATH_W) '$(srcdir)/tables/atsc_mgt.c'; fi` -@am__fastdepCC_TRUE@ mv -f $(DEPDIR)/atsc_mgt.Tpo $(DEPDIR)/atsc_mgt.Po +@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/atsc_mgt.Tpo $(DEPDIR)/atsc_mgt.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='tables/atsc_mgt.c' object='atsc_mgt.obj' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o atsc_mgt.obj `if test -f 'tables/atsc_mgt.c'; then $(CYGPATH_W) 'tables/atsc_mgt.c'; else $(CYGPATH_W) '$(srcdir)/tables/atsc_mgt.c'; fi` atsc_stt.o: tables/atsc_stt.c @am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT atsc_stt.o -MD -MP -MF $(DEPDIR)/atsc_stt.Tpo -c -o atsc_stt.o `test -f 'tables/atsc_stt.c' || echo '$(srcdir)/'`tables/atsc_stt.c -@am__fastdepCC_TRUE@ mv -f $(DEPDIR)/atsc_stt.Tpo $(DEPDIR)/atsc_stt.Po +@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/atsc_stt.Tpo $(DEPDIR)/atsc_stt.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='tables/atsc_stt.c' object='atsc_stt.o' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o atsc_stt.o `test -f 'tables/atsc_stt.c' || echo '$(srcdir)/'`tables/atsc_stt.c atsc_stt.obj: tables/atsc_stt.c @am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT atsc_stt.obj -MD -MP -MF $(DEPDIR)/atsc_stt.Tpo -c -o atsc_stt.obj `if test -f 'tables/atsc_stt.c'; then $(CYGPATH_W) 'tables/atsc_stt.c'; else $(CYGPATH_W) '$(srcdir)/tables/atsc_stt.c'; fi` -@am__fastdepCC_TRUE@ mv -f $(DEPDIR)/atsc_stt.Tpo $(DEPDIR)/atsc_stt.Po +@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/atsc_stt.Tpo $(DEPDIR)/atsc_stt.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='tables/atsc_stt.c' object='atsc_stt.obj' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o atsc_stt.obj `if test -f 'tables/atsc_stt.c'; then $(CYGPATH_W) 'tables/atsc_stt.c'; else $(CYGPATH_W) '$(srcdir)/tables/atsc_stt.c'; fi` atsc_vct.o: tables/atsc_vct.c @am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT atsc_vct.o -MD -MP -MF $(DEPDIR)/atsc_vct.Tpo -c -o atsc_vct.o `test -f 'tables/atsc_vct.c' || echo '$(srcdir)/'`tables/atsc_vct.c -@am__fastdepCC_TRUE@ mv -f $(DEPDIR)/atsc_vct.Tpo $(DEPDIR)/atsc_vct.Po +@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/atsc_vct.Tpo $(DEPDIR)/atsc_vct.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='tables/atsc_vct.c' object='atsc_vct.o' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o atsc_vct.o `test -f 'tables/atsc_vct.c' || echo '$(srcdir)/'`tables/atsc_vct.c atsc_vct.obj: tables/atsc_vct.c @am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT atsc_vct.obj -MD -MP -MF $(DEPDIR)/atsc_vct.Tpo -c -o atsc_vct.obj `if test -f 'tables/atsc_vct.c'; then $(CYGPATH_W) 'tables/atsc_vct.c'; else $(CYGPATH_W) '$(srcdir)/tables/atsc_vct.c'; fi` -@am__fastdepCC_TRUE@ mv -f $(DEPDIR)/atsc_vct.Tpo $(DEPDIR)/atsc_vct.Po +@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/atsc_vct.Tpo $(DEPDIR)/atsc_vct.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='tables/atsc_vct.c' object='atsc_vct.obj' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o atsc_vct.obj `if test -f 'tables/atsc_vct.c'; then $(CYGPATH_W) 'tables/atsc_vct.c'; else $(CYGPATH_W) '$(srcdir)/tables/atsc_vct.c'; fi` atsc_eit.o: tables/atsc_eit.c @am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT atsc_eit.o -MD -MP -MF $(DEPDIR)/atsc_eit.Tpo -c -o atsc_eit.o `test -f 'tables/atsc_eit.c' || echo '$(srcdir)/'`tables/atsc_eit.c -@am__fastdepCC_TRUE@ mv -f $(DEPDIR)/atsc_eit.Tpo $(DEPDIR)/atsc_eit.Po +@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/atsc_eit.Tpo $(DEPDIR)/atsc_eit.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='tables/atsc_eit.c' object='atsc_eit.o' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o atsc_eit.o `test -f 'tables/atsc_eit.c' || echo '$(srcdir)/'`tables/atsc_eit.c atsc_eit.obj: tables/atsc_eit.c @am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT atsc_eit.obj -MD -MP -MF $(DEPDIR)/atsc_eit.Tpo -c -o atsc_eit.obj `if test -f 'tables/atsc_eit.c'; then $(CYGPATH_W) 'tables/atsc_eit.c'; else $(CYGPATH_W) '$(srcdir)/tables/atsc_eit.c'; fi` -@am__fastdepCC_TRUE@ mv -f $(DEPDIR)/atsc_eit.Tpo $(DEPDIR)/atsc_eit.Po +@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/atsc_eit.Tpo $(DEPDIR)/atsc_eit.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='tables/atsc_eit.c' object='atsc_eit.obj' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o atsc_eit.obj `if test -f 'tables/atsc_eit.c'; then $(CYGPATH_W) 'tables/atsc_eit.c'; else $(CYGPATH_W) '$(srcdir)/tables/atsc_eit.c'; fi` atsc_ett.o: tables/atsc_ett.c @am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT atsc_ett.o -MD -MP -MF $(DEPDIR)/atsc_ett.Tpo -c -o atsc_ett.o `test -f 'tables/atsc_ett.c' || echo '$(srcdir)/'`tables/atsc_ett.c -@am__fastdepCC_TRUE@ mv -f $(DEPDIR)/atsc_ett.Tpo $(DEPDIR)/atsc_ett.Po +@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/atsc_ett.Tpo $(DEPDIR)/atsc_ett.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='tables/atsc_ett.c' object='atsc_ett.o' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o atsc_ett.o `test -f 'tables/atsc_ett.c' || echo '$(srcdir)/'`tables/atsc_ett.c atsc_ett.obj: tables/atsc_ett.c @am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT atsc_ett.obj -MD -MP -MF $(DEPDIR)/atsc_ett.Tpo -c -o atsc_ett.obj `if test -f 'tables/atsc_ett.c'; then $(CYGPATH_W) 'tables/atsc_ett.c'; else $(CYGPATH_W) '$(srcdir)/tables/atsc_ett.c'; fi` -@am__fastdepCC_TRUE@ mv -f $(DEPDIR)/atsc_ett.Tpo $(DEPDIR)/atsc_ett.Po +@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/atsc_ett.Tpo $(DEPDIR)/atsc_ett.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='tables/atsc_ett.c' object='atsc_ett.obj' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o atsc_ett.obj `if test -f 'tables/atsc_ett.c'; then $(CYGPATH_W) 'tables/atsc_ett.c'; else $(CYGPATH_W) '$(srcdir)/tables/atsc_ett.c'; fi` @@ -1030,7 +1085,7 @@ TAGS: $(HEADERS) $(SOURCES) $(TAGS_DEPENDENCIES) \ $(TAGS_FILES) $(LISP) - tags=; \ + set x; \ here=`pwd`; \ list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \ unique=`for i in $$list; do \ @@ -1038,29 +1093,34 @@ done | \ $(AWK) '{ files[$$0] = 1; nonempty = 1; } \ END { if (nonempty) { for (i in files) print i; }; }'`; \ - if test -z "$(ETAGS_ARGS)$$tags$$unique"; then :; else \ + shift; \ + if test -z "$(ETAGS_ARGS)$$*$$unique"; then :; else \ test -n "$$unique" || unique=$$empty_fix; \ - $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ - $$tags $$unique; \ + if test $$# -gt 0; then \ + $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ + "$$@" $$unique; \ + else \ + $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ + $$unique; \ + fi; \ fi ctags: CTAGS CTAGS: $(HEADERS) $(SOURCES) $(TAGS_DEPENDENCIES) \ $(TAGS_FILES) $(LISP) - tags=; \ list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \ unique=`for i in $$list; do \ if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ done | \ $(AWK) '{ files[$$0] = 1; nonempty = 1; } \ END { if (nonempty) { for (i in files) print i; }; }'`; \ - test -z "$(CTAGS_ARGS)$$tags$$unique" \ + test -z "$(CTAGS_ARGS)$$unique" \ || $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \ - $$tags $$unique + $$unique GTAGS: here=`$(am__cd) $(top_builddir) && pwd` \ - && cd $(top_srcdir) \ - && gtags -i $(GTAGS_ARGS) $$here + && $(am__cd) $(top_srcdir) \ + && gtags -i $(GTAGS_ARGS) "$$here" distclean-tags: -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags @@ -1081,13 +1141,17 @@ if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \ if test -d $$d/$$file; then \ dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \ + if test -d "$(distdir)/$$file"; then \ + find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ + fi; \ if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \ - cp -pR $(srcdir)/$$file $(distdir)$$dir || exit 1; \ + cp -fpR $(srcdir)/$$file "$(distdir)$$dir" || exit 1; \ + find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ fi; \ - cp -pR $$d/$$file $(distdir)$$dir || exit 1; \ + cp -fpR $$d/$$file "$(distdir)$$dir" || exit 1; \ else \ - test -f $(distdir)/$$file \ - || cp -p $$d/$$file $(distdir)/$$file \ + test -f "$(distdir)/$$file" \ + || cp -p $$d/$$file "$(distdir)/$$file" \ || exit 1; \ fi; \ done @@ -1115,6 +1179,7 @@ distclean-generic: -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES) + -test . = "$(srcdir)" || test -z "$(CONFIG_CLEAN_VPATH_FILES)" || rm -f $(CONFIG_CLEAN_VPATH_FILES) maintainer-clean-generic: @echo "This command is intended for maintainers to use" @@ -1136,6 +1201,8 @@ html: html-am +html-am: + info: info-am info-am: @@ -1144,18 +1211,28 @@ install-dvi: install-dvi-am +install-dvi-am: + install-exec-am: install-html: install-html-am +install-html-am: + install-info: install-info-am +install-info-am: + install-man: install-pdf: install-pdf-am +install-pdf-am: + install-ps: install-ps-am +install-ps-am: + installcheck-am: maintainer-clean: maintainer-clean-am @@ -1193,6 +1270,7 @@ mostlyclean-compile mostlyclean-generic mostlyclean-libtool \ pdf pdf-am ps ps-am tags uninstall uninstall-am + # Tell versions [3.59,3.63) of GNU make to not export all variables. # Otherwise a system limit (for SysV at least) may be exceeded. .NOEXPORT: Index: dvbstreamer-2~svn777/trunk/src/plugins/Makefile.in =================================================================== --- dvbstreamer-2~svn777.orig/trunk/src/plugins/Makefile.in 2010-05-09 17:43:28.000000000 +0200 +++ dvbstreamer-2~svn777/trunk/src/plugins/Makefile.in 2010-05-09 17:44:05.000000000 +0200 @@ -1,8 +1,9 @@ -# Makefile.in generated by automake 1.10.2 from Makefile.am. +# Makefile.in generated by automake 1.11.1 from Makefile.am. # @configure_input@ # Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, -# 2003, 2004, 2005, 2006, 2007, 2008 Free Software Foundation, Inc. +# 2003, 2004, 2005, 2006, 2007, 2008, 2009 Free Software Foundation, +# Inc. # This Makefile.in is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. @@ -16,8 +17,9 @@ VPATH = @srcdir@ pkgdatadir = $(datadir)/@PACKAGE@ -pkglibdir = $(libdir)/@PACKAGE@ pkgincludedir = $(includedir)/@PACKAGE@ +pkglibdir = $(libdir)/@PACKAGE@ +pkglibexecdir = $(libexecdir)/@PACKAGE@ am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd install_sh_DATA = $(install_sh) -c -m 644 install_sh_PROGRAM = $(install_sh) -c @@ -42,14 +44,29 @@ mkinstalldirs = $(install_sh) -d CONFIG_HEADER = $(top_builddir)/config.h CONFIG_CLEAN_FILES = +CONFIG_CLEAN_VPATH_FILES = am__vpath_adj_setup = srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; am__vpath_adj = case $$p in \ $(srcdir)/*) f=`echo "$$p" | sed "s|^$$srcdirstrip/||"`;; \ *) f=$$p;; \ esac; -am__strip_dir = `echo $$p | sed -e 's|^.*/||'`; +am__strip_dir = f=`echo $$p | sed -e 's|^.*/||'`; +am__install_max = 40 +am__nobase_strip_setup = \ + srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*|]/\\\\&/g'` +am__nobase_strip = \ + for p in $$list; do echo "$$p"; done | sed -e "s|$$srcdirstrip/||" +am__nobase_list = $(am__nobase_strip_setup); \ + for p in $$list; do echo "$$p $$p"; done | \ + sed "s| $$srcdirstrip/| |;"' / .*\//!s/ .*/ ./; s,\( .*\)/[^/]*$$,\1,' | \ + $(AWK) 'BEGIN { files["."] = "" } { files[$$2] = files[$$2] " " $$1; \ + if (++n[$$2] == $(am__install_max)) \ + { print $$2, files[$$2]; n[$$2] = 0; files[$$2] = "" } } \ + END { for (dir in files) print dir, files[dir] }' +am__base_list = \ + sed '$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;s/\n/ /g' | \ + sed '$$!N;$$!N;$$!N;$$!N;s/\n/ /g' am__installdirs = "$(DESTDIR)$(pluginsdir)" -pluginsLTLIBRARIES_INSTALL = $(INSTALL) LTLIBRARIES = $(plugins_LTLIBRARIES) atsctoepg_la_LIBADD = am_atsctoepg_la_OBJECTS = atsctoepg.lo @@ -65,18 +82,27 @@ $(LIBTOOLFLAGS) --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \ $(datetime_la_LDFLAGS) $(LDFLAGS) -o $@ @ENABLE_DVB_TRUE@am_datetime_la_rpath = -rpath $(pluginsdir) +dsmcc_la_DEPENDENCIES = +am_dsmcc_la_OBJECTS = dsmcc.lo dsmcc-biop.lo dsmcc-cache.lo \ + dsmcc-carousel.lo dsmcc-descriptor.lo dsmcc-receiver.lo \ + dsmcc-util.lo +dsmcc_la_OBJECTS = $(am_dsmcc_la_OBJECTS) +dsmcc_la_LINK = $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) \ + --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) $(dsmcc_la_LDFLAGS) \ + $(LDFLAGS) -o $@ +dvbtoepg_la_LIBADD = +am_dvbtoepg_la_OBJECTS = dvbtoepg.lo freesat_huffman.lo +dvbtoepg_la_OBJECTS = $(am_dvbtoepg_la_OBJECTS) +dvbtoepg_la_LINK = $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) \ + $(LIBTOOLFLAGS) --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \ + $(dvbtoepg_la_LDFLAGS) $(LDFLAGS) -o $@ +@ENABLE_DVB_TRUE@am_dvbtoepg_la_rpath = -rpath $(pluginsdir) eventsdispatcher_la_LIBADD = am_eventsdispatcher_la_OBJECTS = eventsdispatcher.lo eventsdispatcher_la_OBJECTS = $(am_eventsdispatcher_la_OBJECTS) eventsdispatcher_la_LINK = $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) \ $(LIBTOOLFLAGS) --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \ $(eventsdispatcher_la_LDFLAGS) $(LDFLAGS) -o $@ -extractpes_la_LIBADD = -am_extractpes_la_OBJECTS = extractpes.lo -extractpes_la_OBJECTS = $(am_extractpes_la_OBJECTS) -extractpes_la_LINK = $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) \ - $(LIBTOOLFLAGS) --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \ - $(extractpes_la_LDFLAGS) $(LDFLAGS) -o $@ fileoutput_la_LIBADD = am_fileoutput_la_OBJECTS = fileoutput.lo fileoutput_la_OBJECTS = $(am_fileoutput_la_OBJECTS) @@ -96,50 +122,24 @@ manualfilters_la_LINK = $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) \ $(LIBTOOLFLAGS) --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \ $(manualfilters_la_LDFLAGS) $(LDFLAGS) -o $@ -nownext_la_LIBADD = -am_nownext_la_OBJECTS = nownext.lo -nownext_la_OBJECTS = $(am_nownext_la_OBJECTS) -nownext_la_LINK = $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) \ - $(LIBTOOLFLAGS) --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \ - $(nownext_la_LDFLAGS) $(LDFLAGS) -o $@ -@ENABLE_DVB_TRUE@am_nownext_la_rpath = -rpath $(pluginsdir) -nulloutput_la_LIBADD = -am_nulloutput_la_OBJECTS = nulloutput.lo -nulloutput_la_OBJECTS = $(am_nulloutput_la_OBJECTS) -nulloutput_la_LINK = $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) \ - $(LIBTOOLFLAGS) --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \ - $(nulloutput_la_LDFLAGS) $(LDFLAGS) -o $@ outputs_la_LIBADD = am_outputs_la_OBJECTS = outputs.lo outputs_la_OBJECTS = $(am_outputs_la_OBJECTS) outputs_la_LINK = $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) \ $(LIBTOOLFLAGS) --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \ $(outputs_la_LDFLAGS) $(LDFLAGS) -o $@ -schedule_la_LIBADD = -am_schedule_la_OBJECTS = schedule.lo -schedule_la_OBJECTS = $(am_schedule_la_OBJECTS) -schedule_la_LINK = $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) \ - $(LIBTOOLFLAGS) --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \ - $(schedule_la_LDFLAGS) $(LDFLAGS) -o $@ -@ENABLE_DVB_TRUE@am_schedule_la_rpath = -rpath $(pluginsdir) -sectionfilters_la_LIBADD = -am_sectionfilters_la_OBJECTS = sectionfilters.lo -sectionfilters_la_OBJECTS = $(am_sectionfilters_la_OBJECTS) -sectionfilters_la_LINK = $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) \ +pipeoutput_la_LIBADD = +am_pipeoutput_la_OBJECTS = pipeoutput.lo +pipeoutput_la_OBJECTS = $(am_pipeoutput_la_OBJECTS) +pipeoutput_la_LINK = $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) \ $(LIBTOOLFLAGS) --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \ - $(sectionfilters_la_LDFLAGS) $(LDFLAGS) -o $@ + $(pipeoutput_la_LDFLAGS) $(LDFLAGS) -o $@ sicapture_la_LIBADD = am_sicapture_la_OBJECTS = sicapture.lo sicapture_la_OBJECTS = $(am_sicapture_la_OBJECTS) sicapture_la_LINK = $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) \ $(LIBTOOLFLAGS) --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \ $(sicapture_la_LDFLAGS) $(LDFLAGS) -o $@ -traffic_la_LIBADD = -am_traffic_la_OBJECTS = traffic.lo -traffic_la_OBJECTS = $(am_traffic_la_OBJECTS) -traffic_la_LINK = $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) \ - $(LIBTOOLFLAGS) --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \ - $(traffic_la_LDFLAGS) $(LDFLAGS) -o $@ udpoutput_la_LIBADD = am_udpoutput_la_OBJECTS = udp.lo udpoutput.lo sap.lo udpoutput_la_OBJECTS = $(am_udpoutput_la_OBJECTS) @@ -149,6 +149,7 @@ DEFAULT_INCLUDES = -I.@am__isrc@ -I$(top_builddir) depcomp = $(SHELL) $(top_srcdir)/depcomp am__depfiles_maybe = depfiles +am__mv = mv -f COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \ $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) LTCOMPILE = $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) \ @@ -159,27 +160,24 @@ --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) $(AM_LDFLAGS) \ $(LDFLAGS) -o $@ SOURCES = $(atsctoepg_la_SOURCES) $(datetime_la_SOURCES) \ - $(eventsdispatcher_la_SOURCES) $(extractpes_la_SOURCES) \ - $(fileoutput_la_SOURCES) $(lcnquery_la_SOURCES) \ - $(manualfilters_la_SOURCES) $(nownext_la_SOURCES) \ - $(nulloutput_la_SOURCES) $(outputs_la_SOURCES) \ - $(schedule_la_SOURCES) $(sectionfilters_la_SOURCES) \ - $(sicapture_la_SOURCES) $(traffic_la_SOURCES) \ - $(udpoutput_la_SOURCES) + $(dsmcc_la_SOURCES) $(dvbtoepg_la_SOURCES) \ + $(eventsdispatcher_la_SOURCES) $(fileoutput_la_SOURCES) \ + $(lcnquery_la_SOURCES) $(manualfilters_la_SOURCES) \ + $(outputs_la_SOURCES) $(pipeoutput_la_SOURCES) \ + $(sicapture_la_SOURCES) $(udpoutput_la_SOURCES) DIST_SOURCES = $(atsctoepg_la_SOURCES) $(datetime_la_SOURCES) \ - $(eventsdispatcher_la_SOURCES) $(extractpes_la_SOURCES) \ - $(fileoutput_la_SOURCES) $(lcnquery_la_SOURCES) \ - $(manualfilters_la_SOURCES) $(nownext_la_SOURCES) \ - $(nulloutput_la_SOURCES) $(outputs_la_SOURCES) \ - $(schedule_la_SOURCES) $(sectionfilters_la_SOURCES) \ - $(sicapture_la_SOURCES) $(traffic_la_SOURCES) \ - $(udpoutput_la_SOURCES) + $(dsmcc_la_SOURCES) $(dvbtoepg_la_SOURCES) \ + $(eventsdispatcher_la_SOURCES) $(fileoutput_la_SOURCES) \ + $(lcnquery_la_SOURCES) $(manualfilters_la_SOURCES) \ + $(outputs_la_SOURCES) $(pipeoutput_la_SOURCES) \ + $(sicapture_la_SOURCES) $(udpoutput_la_SOURCES) ETAGS = etags CTAGS = ctags DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) ACLOCAL = @ACLOCAL@ AMTAR = @AMTAR@ AR = @AR@ +AS = @AS@ AUTOCONF = @AUTOCONF@ AUTOHEADER = @AUTOHEADER@ AUTOMAKE = @AUTOMAKE@ @@ -192,6 +190,7 @@ CYGPATH_W = @CYGPATH_W@ DEFS = @DEFS@ DEPDIR = @DEPDIR@ +DLLTOOL = @DLLTOOL@ DSYMUTIL = @DSYMUTIL@ DUMPBIN = @DUMPBIN@ DVBSTREAMER_MAJOR = @DVBSTREAMER_MAJOR@ @@ -207,7 +206,6 @@ GETTIME_LIB = @GETTIME_LIB@ GREP = @GREP@ ICONV_LIB = @ICONV_LIB@ -INCLTDL = @INCLTDL@ INSTALL = @INSTALL@ INSTALL_DATA = @INSTALL_DATA@ INSTALL_PROGRAM = @INSTALL_PROGRAM@ @@ -215,14 +213,11 @@ INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@ LD = @LD@ LDFLAGS = @LDFLAGS@ -LIBLTDL = @LIBLTDL@ LIBOBJS = @LIBOBJS@ LIBS = @LIBS@ LIBTOOL = @LIBTOOL@ LIPO = @LIPO@ LN_S = @LN_S@ -LTDLDEPS = @LTDLDEPS@ -LTDLINCL = @LTDLINCL@ LTLIBOBJS = @LTLIBOBJS@ MAKEINFO = @MAKEINFO@ MKDIR_P = @MKDIR_P@ @@ -298,7 +293,6 @@ sbindir = @sbindir@ sharedstatedir = @sharedstatedir@ srcdir = @srcdir@ -subdirs = @subdirs@ sysconfdir = @sysconfdir@ target_alias = @target_alias@ top_build_prefix = @top_build_prefix@ @@ -309,20 +303,18 @@ # Plugins # AM_CFLAGS = \ - -I$(top_srcdir)/include -Wall -Werror -D_GNU_SOURCE + -I$(top_srcdir)/include -D_GNU_SOURCE -fno-strict-aliasing pluginsdir = @DVBSTREAMER_PLUGINDIR@ plugins_LTLIBRARIES = \ udpoutput.la \ - nulloutput.la \ fileoutput.la \ + pipeoutput.la \ outputs.la \ - extractpes.la \ manualfilters.la \ sicapture.la \ - traffic.la \ eventsdispatcher.la \ - sectionfilters.la \ + dsmcc.la \ $(atsc_plugins) \ $(dvb_plugins) @@ -333,9 +325,8 @@ @ENABLE_DVB_FALSE@dvb_plugins = @ENABLE_DVB_TRUE@dvb_plugins = \ @ENABLE_DVB_TRUE@ lcnquery.la \ -@ENABLE_DVB_TRUE@ nownext.la \ @ENABLE_DVB_TRUE@ datetime.la \ -@ENABLE_DVB_TRUE@ schedule.la +@ENABLE_DVB_TRUE@ dvbtoepg.la udpoutput_la_SOURCES = \ udp.c \ @@ -343,14 +334,14 @@ sap.c udpoutput_la_LDFLAGS = -module -no-undefined -avoid-version -nulloutput_la_SOURCES = \ - nulloutput.c - -nulloutput_la_LDFLAGS = -module -no-undefined -avoid-version fileoutput_la_SOURCES = \ fileoutput.c fileoutput_la_LDFLAGS = -module -no-undefined -avoid-version +pipeoutput_la_SOURCES = \ + pipeoutput.c + +pipeoutput_la_LDFLAGS = -module -no-undefined -avoid-version outputs_la_SOURCES = \ outputs.c @@ -359,22 +350,15 @@ lcnquery.c lcnquery_la_LDFLAGS = -module -no-undefined -avoid-version -extractpes_la_SOURCES = \ - extractpes.c - -extractpes_la_LDFLAGS = -module -no-undefined -avoid-version -nownext_la_SOURCES = \ - nownext.c - -nownext_la_LDFLAGS = -module -no-undefined -avoid-version datetime_la_SOURCES = \ datetime.c datetime_la_LDFLAGS = -module -no-undefined -avoid-version -schedule_la_SOURCES = \ - schedule.c +dvbtoepg_la_SOURCES = \ + dvbtoepg.c \ + freesat_huffman.c -schedule_la_LDFLAGS = -module -no-undefined -avoid-version +dvbtoepg_la_LDFLAGS = -module -no-undefined -avoid-version atsctoepg_la_SOURCES = \ atsctoepg.c @@ -387,18 +371,33 @@ sicapture.c sicapture_la_LDFLAGS = -module -no-undefined -avoid-version -traffic_la_SOURCES = \ - traffic.c -traffic_la_LDFLAGS = -module -no-undefined -avoid-version +# TODO: Rewrite to use new TSFilterGroup system. +#traffic_la_SOURCES = \ +# traffic.c + +#traffic_la_LDFLAGS = -module -no-undefined -avoid-version eventsdispatcher_la_SOURCES = \ eventsdispatcher.c eventsdispatcher_la_LDFLAGS = -module -no-undefined -avoid-version -sectionfilters_la_SOURCES = \ - sectionfilters.c -sectionfilters_la_LDFLAGS = -module -no-undefined -avoid-version +# TODO: Rewrite to use new TSFilterGroup system. +#sectionfilters_la_SOURCES = \ +# sectionfilters.c + +#sectionfilters_la_LDFLAGS = -module -no-undefined -avoid-version +dsmcc_la_SOURCES = \ + dsmcc.c \ + libdsmcc/dsmcc-biop.c \ + libdsmcc/dsmcc-cache.c \ + libdsmcc/dsmcc-carousel.c \ + libdsmcc/dsmcc-descriptor.c \ + libdsmcc/dsmcc-receiver.c \ + libdsmcc/dsmcc-util.c + +dsmcc_la_LIBADD = -lz +dsmcc_la_LDFLAGS = -module -no-undefined -avoid-version all: all-am .SUFFIXES: @@ -412,9 +411,9 @@ exit 1;; \ esac; \ done; \ - echo ' cd $(top_srcdir) && $(AUTOMAKE) --gnu src/plugins/Makefile'; \ - cd $(top_srcdir) && \ - $(AUTOMAKE) --gnu src/plugins/Makefile + echo ' cd $(top_srcdir) && $(AUTOMAKE) --gnu src/plugins/Makefile'; \ + $(am__cd) $(top_srcdir) && \ + $(AUTOMAKE) --gnu src/plugins/Makefile .PRECIOUS: Makefile Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status @case '$?' in \ @@ -432,23 +431,28 @@ cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh $(ACLOCAL_M4): $(am__aclocal_m4_deps) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh +$(am__aclocal_m4_deps): install-pluginsLTLIBRARIES: $(plugins_LTLIBRARIES) @$(NORMAL_INSTALL) test -z "$(pluginsdir)" || $(MKDIR_P) "$(DESTDIR)$(pluginsdir)" - @list='$(plugins_LTLIBRARIES)'; for p in $$list; do \ + @list='$(plugins_LTLIBRARIES)'; test -n "$(pluginsdir)" || list=; \ + list2=; for p in $$list; do \ if test -f $$p; then \ - f=$(am__strip_dir) \ - echo " $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=install $(pluginsLTLIBRARIES_INSTALL) $(INSTALL_STRIP_FLAG) '$$p' '$(DESTDIR)$(pluginsdir)/$$f'"; \ - $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=install $(pluginsLTLIBRARIES_INSTALL) $(INSTALL_STRIP_FLAG) "$$p" "$(DESTDIR)$(pluginsdir)/$$f"; \ + list2="$$list2 $$p"; \ else :; fi; \ - done + done; \ + test -z "$$list2" || { \ + echo " $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=install $(INSTALL) $(INSTALL_STRIP_FLAG) $$list2 '$(DESTDIR)$(pluginsdir)'"; \ + $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=install $(INSTALL) $(INSTALL_STRIP_FLAG) $$list2 "$(DESTDIR)$(pluginsdir)"; \ + } uninstall-pluginsLTLIBRARIES: @$(NORMAL_UNINSTALL) - @list='$(plugins_LTLIBRARIES)'; for p in $$list; do \ - p=$(am__strip_dir) \ - echo " $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=uninstall rm -f '$(DESTDIR)$(pluginsdir)/$$p'"; \ - $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=uninstall rm -f "$(DESTDIR)$(pluginsdir)/$$p"; \ + @list='$(plugins_LTLIBRARIES)'; test -n "$(pluginsdir)" || list=; \ + for p in $$list; do \ + $(am__strip_dir) \ + echo " $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=uninstall rm -f '$(DESTDIR)$(pluginsdir)/$$f'"; \ + $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=uninstall rm -f "$(DESTDIR)$(pluginsdir)/$$f"; \ done clean-pluginsLTLIBRARIES: @@ -463,30 +467,24 @@ $(atsctoepg_la_LINK) $(am_atsctoepg_la_rpath) $(atsctoepg_la_OBJECTS) $(atsctoepg_la_LIBADD) $(LIBS) datetime.la: $(datetime_la_OBJECTS) $(datetime_la_DEPENDENCIES) $(datetime_la_LINK) $(am_datetime_la_rpath) $(datetime_la_OBJECTS) $(datetime_la_LIBADD) $(LIBS) +dsmcc.la: $(dsmcc_la_OBJECTS) $(dsmcc_la_DEPENDENCIES) + $(dsmcc_la_LINK) -rpath $(pluginsdir) $(dsmcc_la_OBJECTS) $(dsmcc_la_LIBADD) $(LIBS) +dvbtoepg.la: $(dvbtoepg_la_OBJECTS) $(dvbtoepg_la_DEPENDENCIES) + $(dvbtoepg_la_LINK) $(am_dvbtoepg_la_rpath) $(dvbtoepg_la_OBJECTS) $(dvbtoepg_la_LIBADD) $(LIBS) eventsdispatcher.la: $(eventsdispatcher_la_OBJECTS) $(eventsdispatcher_la_DEPENDENCIES) $(eventsdispatcher_la_LINK) -rpath $(pluginsdir) $(eventsdispatcher_la_OBJECTS) $(eventsdispatcher_la_LIBADD) $(LIBS) -extractpes.la: $(extractpes_la_OBJECTS) $(extractpes_la_DEPENDENCIES) - $(extractpes_la_LINK) -rpath $(pluginsdir) $(extractpes_la_OBJECTS) $(extractpes_la_LIBADD) $(LIBS) fileoutput.la: $(fileoutput_la_OBJECTS) $(fileoutput_la_DEPENDENCIES) $(fileoutput_la_LINK) -rpath $(pluginsdir) $(fileoutput_la_OBJECTS) $(fileoutput_la_LIBADD) $(LIBS) lcnquery.la: $(lcnquery_la_OBJECTS) $(lcnquery_la_DEPENDENCIES) $(lcnquery_la_LINK) $(am_lcnquery_la_rpath) $(lcnquery_la_OBJECTS) $(lcnquery_la_LIBADD) $(LIBS) manualfilters.la: $(manualfilters_la_OBJECTS) $(manualfilters_la_DEPENDENCIES) $(manualfilters_la_LINK) -rpath $(pluginsdir) $(manualfilters_la_OBJECTS) $(manualfilters_la_LIBADD) $(LIBS) -nownext.la: $(nownext_la_OBJECTS) $(nownext_la_DEPENDENCIES) - $(nownext_la_LINK) $(am_nownext_la_rpath) $(nownext_la_OBJECTS) $(nownext_la_LIBADD) $(LIBS) -nulloutput.la: $(nulloutput_la_OBJECTS) $(nulloutput_la_DEPENDENCIES) - $(nulloutput_la_LINK) -rpath $(pluginsdir) $(nulloutput_la_OBJECTS) $(nulloutput_la_LIBADD) $(LIBS) outputs.la: $(outputs_la_OBJECTS) $(outputs_la_DEPENDENCIES) $(outputs_la_LINK) -rpath $(pluginsdir) $(outputs_la_OBJECTS) $(outputs_la_LIBADD) $(LIBS) -schedule.la: $(schedule_la_OBJECTS) $(schedule_la_DEPENDENCIES) - $(schedule_la_LINK) $(am_schedule_la_rpath) $(schedule_la_OBJECTS) $(schedule_la_LIBADD) $(LIBS) -sectionfilters.la: $(sectionfilters_la_OBJECTS) $(sectionfilters_la_DEPENDENCIES) - $(sectionfilters_la_LINK) -rpath $(pluginsdir) $(sectionfilters_la_OBJECTS) $(sectionfilters_la_LIBADD) $(LIBS) +pipeoutput.la: $(pipeoutput_la_OBJECTS) $(pipeoutput_la_DEPENDENCIES) + $(pipeoutput_la_LINK) -rpath $(pluginsdir) $(pipeoutput_la_OBJECTS) $(pipeoutput_la_LIBADD) $(LIBS) sicapture.la: $(sicapture_la_OBJECTS) $(sicapture_la_DEPENDENCIES) $(sicapture_la_LINK) -rpath $(pluginsdir) $(sicapture_la_OBJECTS) $(sicapture_la_LIBADD) $(LIBS) -traffic.la: $(traffic_la_OBJECTS) $(traffic_la_DEPENDENCIES) - $(traffic_la_LINK) -rpath $(pluginsdir) $(traffic_la_OBJECTS) $(traffic_la_LIBADD) $(LIBS) udpoutput.la: $(udpoutput_la_OBJECTS) $(udpoutput_la_DEPENDENCIES) $(udpoutput_la_LINK) -rpath $(pluginsdir) $(udpoutput_la_OBJECTS) $(udpoutput_la_LIBADD) $(LIBS) @@ -498,43 +496,89 @@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/atsctoepg.Plo@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/datetime.Plo@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/dsmcc-biop.Plo@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/dsmcc-cache.Plo@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/dsmcc-carousel.Plo@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/dsmcc-descriptor.Plo@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/dsmcc-receiver.Plo@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/dsmcc-util.Plo@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/dsmcc.Plo@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/dvbtoepg.Plo@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/eventsdispatcher.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/extractpes.Plo@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/fileoutput.Plo@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/freesat_huffman.Plo@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/lcnquery.Plo@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/manualfilters.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/nownext.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/nulloutput.Plo@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/outputs.Plo@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/pipeoutput.Plo@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/sap.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/schedule.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/sectionfilters.Plo@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/sicapture.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/traffic.Plo@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/udp.Plo@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/udpoutput.Plo@am__quote@ .c.o: @am__fastdepCC_TRUE@ $(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $< -@am__fastdepCC_TRUE@ mv -f $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po +@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(COMPILE) -c $< .c.obj: @am__fastdepCC_TRUE@ $(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ `$(CYGPATH_W) '$<'` -@am__fastdepCC_TRUE@ mv -f $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po +@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(COMPILE) -c `$(CYGPATH_W) '$<'` .c.lo: @am__fastdepCC_TRUE@ $(LTCOMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $< -@am__fastdepCC_TRUE@ mv -f $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Plo +@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Plo @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='$<' object='$@' libtool=yes @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(LTCOMPILE) -c -o $@ $< +dsmcc-biop.lo: libdsmcc/dsmcc-biop.c +@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT dsmcc-biop.lo -MD -MP -MF $(DEPDIR)/dsmcc-biop.Tpo -c -o dsmcc-biop.lo `test -f 'libdsmcc/dsmcc-biop.c' || echo '$(srcdir)/'`libdsmcc/dsmcc-biop.c +@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/dsmcc-biop.Tpo $(DEPDIR)/dsmcc-biop.Plo +@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='libdsmcc/dsmcc-biop.c' object='dsmcc-biop.lo' libtool=yes @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o dsmcc-biop.lo `test -f 'libdsmcc/dsmcc-biop.c' || echo '$(srcdir)/'`libdsmcc/dsmcc-biop.c + +dsmcc-cache.lo: libdsmcc/dsmcc-cache.c +@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT dsmcc-cache.lo -MD -MP -MF $(DEPDIR)/dsmcc-cache.Tpo -c -o dsmcc-cache.lo `test -f 'libdsmcc/dsmcc-cache.c' || echo '$(srcdir)/'`libdsmcc/dsmcc-cache.c +@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/dsmcc-cache.Tpo $(DEPDIR)/dsmcc-cache.Plo +@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='libdsmcc/dsmcc-cache.c' object='dsmcc-cache.lo' libtool=yes @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o dsmcc-cache.lo `test -f 'libdsmcc/dsmcc-cache.c' || echo '$(srcdir)/'`libdsmcc/dsmcc-cache.c + +dsmcc-carousel.lo: libdsmcc/dsmcc-carousel.c +@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT dsmcc-carousel.lo -MD -MP -MF $(DEPDIR)/dsmcc-carousel.Tpo -c -o dsmcc-carousel.lo `test -f 'libdsmcc/dsmcc-carousel.c' || echo '$(srcdir)/'`libdsmcc/dsmcc-carousel.c +@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/dsmcc-carousel.Tpo $(DEPDIR)/dsmcc-carousel.Plo +@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='libdsmcc/dsmcc-carousel.c' object='dsmcc-carousel.lo' libtool=yes @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o dsmcc-carousel.lo `test -f 'libdsmcc/dsmcc-carousel.c' || echo '$(srcdir)/'`libdsmcc/dsmcc-carousel.c + +dsmcc-descriptor.lo: libdsmcc/dsmcc-descriptor.c +@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT dsmcc-descriptor.lo -MD -MP -MF $(DEPDIR)/dsmcc-descriptor.Tpo -c -o dsmcc-descriptor.lo `test -f 'libdsmcc/dsmcc-descriptor.c' || echo '$(srcdir)/'`libdsmcc/dsmcc-descriptor.c +@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/dsmcc-descriptor.Tpo $(DEPDIR)/dsmcc-descriptor.Plo +@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='libdsmcc/dsmcc-descriptor.c' object='dsmcc-descriptor.lo' libtool=yes @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o dsmcc-descriptor.lo `test -f 'libdsmcc/dsmcc-descriptor.c' || echo '$(srcdir)/'`libdsmcc/dsmcc-descriptor.c + +dsmcc-receiver.lo: libdsmcc/dsmcc-receiver.c +@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT dsmcc-receiver.lo -MD -MP -MF $(DEPDIR)/dsmcc-receiver.Tpo -c -o dsmcc-receiver.lo `test -f 'libdsmcc/dsmcc-receiver.c' || echo '$(srcdir)/'`libdsmcc/dsmcc-receiver.c +@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/dsmcc-receiver.Tpo $(DEPDIR)/dsmcc-receiver.Plo +@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='libdsmcc/dsmcc-receiver.c' object='dsmcc-receiver.lo' libtool=yes @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o dsmcc-receiver.lo `test -f 'libdsmcc/dsmcc-receiver.c' || echo '$(srcdir)/'`libdsmcc/dsmcc-receiver.c + +dsmcc-util.lo: libdsmcc/dsmcc-util.c +@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT dsmcc-util.lo -MD -MP -MF $(DEPDIR)/dsmcc-util.Tpo -c -o dsmcc-util.lo `test -f 'libdsmcc/dsmcc-util.c' || echo '$(srcdir)/'`libdsmcc/dsmcc-util.c +@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/dsmcc-util.Tpo $(DEPDIR)/dsmcc-util.Plo +@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='libdsmcc/dsmcc-util.c' object='dsmcc-util.lo' libtool=yes @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o dsmcc-util.lo `test -f 'libdsmcc/dsmcc-util.c' || echo '$(srcdir)/'`libdsmcc/dsmcc-util.c + mostlyclean-libtool: -rm -f *.lo @@ -553,7 +597,7 @@ TAGS: $(HEADERS) $(SOURCES) $(TAGS_DEPENDENCIES) \ $(TAGS_FILES) $(LISP) - tags=; \ + set x; \ here=`pwd`; \ list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \ unique=`for i in $$list; do \ @@ -561,29 +605,34 @@ done | \ $(AWK) '{ files[$$0] = 1; nonempty = 1; } \ END { if (nonempty) { for (i in files) print i; }; }'`; \ - if test -z "$(ETAGS_ARGS)$$tags$$unique"; then :; else \ + shift; \ + if test -z "$(ETAGS_ARGS)$$*$$unique"; then :; else \ test -n "$$unique" || unique=$$empty_fix; \ - $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ - $$tags $$unique; \ + if test $$# -gt 0; then \ + $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ + "$$@" $$unique; \ + else \ + $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ + $$unique; \ + fi; \ fi ctags: CTAGS CTAGS: $(HEADERS) $(SOURCES) $(TAGS_DEPENDENCIES) \ $(TAGS_FILES) $(LISP) - tags=; \ list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \ unique=`for i in $$list; do \ if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ done | \ $(AWK) '{ files[$$0] = 1; nonempty = 1; } \ END { if (nonempty) { for (i in files) print i; }; }'`; \ - test -z "$(CTAGS_ARGS)$$tags$$unique" \ + test -z "$(CTAGS_ARGS)$$unique" \ || $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \ - $$tags $$unique + $$unique GTAGS: here=`$(am__cd) $(top_builddir) && pwd` \ - && cd $(top_srcdir) \ - && gtags -i $(GTAGS_ARGS) $$here + && $(am__cd) $(top_srcdir) \ + && gtags -i $(GTAGS_ARGS) "$$here" distclean-tags: -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags @@ -604,13 +653,17 @@ if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \ if test -d $$d/$$file; then \ dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \ + if test -d "$(distdir)/$$file"; then \ + find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ + fi; \ if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \ - cp -pR $(srcdir)/$$file $(distdir)$$dir || exit 1; \ + cp -fpR $(srcdir)/$$file "$(distdir)$$dir" || exit 1; \ + find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ fi; \ - cp -pR $$d/$$file $(distdir)$$dir || exit 1; \ + cp -fpR $$d/$$file "$(distdir)$$dir" || exit 1; \ else \ - test -f $(distdir)/$$file \ - || cp -p $$d/$$file $(distdir)/$$file \ + test -f "$(distdir)/$$file" \ + || cp -p $$d/$$file "$(distdir)/$$file" \ || exit 1; \ fi; \ done @@ -641,6 +694,7 @@ distclean-generic: -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES) + -test . = "$(srcdir)" || test -z "$(CONFIG_CLEAN_VPATH_FILES)" || rm -f $(CONFIG_CLEAN_VPATH_FILES) maintainer-clean-generic: @echo "This command is intended for maintainers to use" @@ -662,6 +716,8 @@ html: html-am +html-am: + info: info-am info-am: @@ -670,18 +726,28 @@ install-dvi: install-dvi-am +install-dvi-am: + install-exec-am: install-html: install-html-am +install-html-am: + install-info: install-info-am +install-info-am: + install-man: install-pdf: install-pdf-am +install-pdf-am: + install-ps: install-ps-am +install-ps-am: + installcheck-am: maintainer-clean: maintainer-clean-am @@ -720,6 +786,7 @@ mostlyclean-generic mostlyclean-libtool pdf pdf-am ps ps-am \ tags uninstall uninstall-am uninstall-pluginsLTLIBRARIES + # Tell versions [3.59,3.63) of GNU make to not export all variables. # Otherwise a system limit (for SysV at least) may be exceeded. .NOEXPORT: Index: dvbstreamer-2~svn777/trunk/include/Makefile.in =================================================================== --- dvbstreamer-2~svn777.orig/trunk/include/Makefile.in 2010-05-09 17:43:28.000000000 +0200 +++ dvbstreamer-2~svn777/trunk/include/Makefile.in 2010-05-09 17:44:04.000000000 +0200 @@ -1,8 +1,9 @@ -# Makefile.in generated by automake 1.10.2 from Makefile.am. +# Makefile.in generated by automake 1.11.1 from Makefile.am. # @configure_input@ # Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, -# 2003, 2004, 2005, 2006, 2007, 2008 Free Software Foundation, Inc. +# 2003, 2004, 2005, 2006, 2007, 2008, 2009 Free Software Foundation, +# Inc. # This Makefile.in is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. @@ -16,8 +17,9 @@ VPATH = @srcdir@ pkgdatadir = $(datadir)/@PACKAGE@ -pkglibdir = $(libdir)/@PACKAGE@ pkgincludedir = $(includedir)/@PACKAGE@ +pkglibdir = $(libdir)/@PACKAGE@ +pkglibexecdir = $(libexecdir)/@PACKAGE@ am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd install_sh_DATA = $(install_sh) -c -m 644 install_sh_PROGRAM = $(install_sh) -c @@ -42,6 +44,7 @@ mkinstalldirs = $(install_sh) -d CONFIG_HEADER = $(top_builddir)/config.h CONFIG_CLEAN_FILES = +CONFIG_CLEAN_VPATH_FILES = SOURCES = DIST_SOURCES = am__vpath_adj_setup = srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; @@ -49,14 +52,29 @@ $(srcdir)/*) f=`echo "$$p" | sed "s|^$$srcdirstrip/||"`;; \ *) f=$$p;; \ esac; -am__strip_dir = `echo $$p | sed -e 's|^.*/||'`; +am__strip_dir = f=`echo $$p | sed -e 's|^.*/||'`; +am__install_max = 40 +am__nobase_strip_setup = \ + srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*|]/\\\\&/g'` +am__nobase_strip = \ + for p in $$list; do echo "$$p"; done | sed -e "s|$$srcdirstrip/||" +am__nobase_list = $(am__nobase_strip_setup); \ + for p in $$list; do echo "$$p $$p"; done | \ + sed "s| $$srcdirstrip/| |;"' / .*\//!s/ .*/ ./; s,\( .*\)/[^/]*$$,\1,' | \ + $(AWK) 'BEGIN { files["."] = "" } { files[$$2] = files[$$2] " " $$1; \ + if (++n[$$2] == $(am__install_max)) \ + { print $$2, files[$$2]; n[$$2] = 0; files[$$2] = "" } } \ + END { for (dir in files) print dir, files[dir] }' +am__base_list = \ + sed '$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;s/\n/ /g' | \ + sed '$$!N;$$!N;$$!N;$$!N;s/\n/ /g' am__installdirs = "$(DESTDIR)$(pkgincludedir)" -pkgincludeDATA_INSTALL = $(INSTALL_DATA) DATA = $(pkginclude_DATA) DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) ACLOCAL = @ACLOCAL@ AMTAR = @AMTAR@ AR = @AR@ +AS = @AS@ AUTOCONF = @AUTOCONF@ AUTOHEADER = @AUTOHEADER@ AUTOMAKE = @AUTOMAKE@ @@ -69,6 +87,7 @@ CYGPATH_W = @CYGPATH_W@ DEFS = @DEFS@ DEPDIR = @DEPDIR@ +DLLTOOL = @DLLTOOL@ DSYMUTIL = @DSYMUTIL@ DUMPBIN = @DUMPBIN@ DVBSTREAMER_MAJOR = @DVBSTREAMER_MAJOR@ @@ -84,7 +103,6 @@ GETTIME_LIB = @GETTIME_LIB@ GREP = @GREP@ ICONV_LIB = @ICONV_LIB@ -INCLTDL = @INCLTDL@ INSTALL = @INSTALL@ INSTALL_DATA = @INSTALL_DATA@ INSTALL_PROGRAM = @INSTALL_PROGRAM@ @@ -92,14 +110,11 @@ INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@ LD = @LD@ LDFLAGS = @LDFLAGS@ -LIBLTDL = @LIBLTDL@ LIBOBJS = @LIBOBJS@ LIBS = @LIBS@ LIBTOOL = @LIBTOOL@ LIPO = @LIPO@ LN_S = @LN_S@ -LTDLDEPS = @LTDLDEPS@ -LTDLINCL = @LTDLINCL@ LTLIBOBJS = @LTLIBOBJS@ MAKEINFO = @MAKEINFO@ MKDIR_P = @MKDIR_P@ @@ -175,7 +190,6 @@ sbindir = @sbindir@ sharedstatedir = @sharedstatedir@ srcdir = @srcdir@ -subdirs = @subdirs@ sysconfdir = @sysconfdir@ target_alias = @target_alias@ top_build_prefix = @top_build_prefix@ @@ -192,15 +206,12 @@ dvbadapter.h \ main.h \ plugin.h \ - types.h \ ts.h \ logging.h \ list.h \ commands.h \ deliverymethod.h \ - sectionprocessor.h \ - pesprocessor.h \ - subtableprocessor.h \ + dispatchers.h\ dvbtext.h \ atsctext.h \ utf8.h \ @@ -221,9 +232,9 @@ exit 1;; \ esac; \ done; \ - echo ' cd $(top_srcdir) && $(AUTOMAKE) --gnu include/Makefile'; \ - cd $(top_srcdir) && \ - $(AUTOMAKE) --gnu include/Makefile + echo ' cd $(top_srcdir) && $(AUTOMAKE) --gnu include/Makefile'; \ + $(am__cd) $(top_srcdir) && \ + $(AUTOMAKE) --gnu include/Makefile .PRECIOUS: Makefile Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status @case '$?' in \ @@ -241,6 +252,7 @@ cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh $(ACLOCAL_M4): $(am__aclocal_m4_deps) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh +$(am__aclocal_m4_deps): mostlyclean-libtool: -rm -f *.lo @@ -250,20 +262,23 @@ install-pkgincludeDATA: $(pkginclude_DATA) @$(NORMAL_INSTALL) test -z "$(pkgincludedir)" || $(MKDIR_P) "$(DESTDIR)$(pkgincludedir)" - @list='$(pkginclude_DATA)'; for p in $$list; do \ + @list='$(pkginclude_DATA)'; test -n "$(pkgincludedir)" || list=; \ + for p in $$list; do \ if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \ - f=$(am__strip_dir) \ - echo " $(pkgincludeDATA_INSTALL) '$$d$$p' '$(DESTDIR)$(pkgincludedir)/$$f'"; \ - $(pkgincludeDATA_INSTALL) "$$d$$p" "$(DESTDIR)$(pkgincludedir)/$$f"; \ + echo "$$d$$p"; \ + done | $(am__base_list) | \ + while read files; do \ + echo " $(INSTALL_DATA) $$files '$(DESTDIR)$(pkgincludedir)'"; \ + $(INSTALL_DATA) $$files "$(DESTDIR)$(pkgincludedir)" || exit $$?; \ done uninstall-pkgincludeDATA: @$(NORMAL_UNINSTALL) - @list='$(pkginclude_DATA)'; for p in $$list; do \ - f=$(am__strip_dir) \ - echo " rm -f '$(DESTDIR)$(pkgincludedir)/$$f'"; \ - rm -f "$(DESTDIR)$(pkgincludedir)/$$f"; \ - done + @list='$(pkginclude_DATA)'; test -n "$(pkgincludedir)" || list=; \ + files=`for p in $$list; do echo $$p; done | sed -e 's|^.*/||'`; \ + test -n "$$files" || exit 0; \ + echo " ( cd '$(DESTDIR)$(pkgincludedir)' && rm -f" $$files ")"; \ + cd "$(DESTDIR)$(pkgincludedir)" && rm -f $$files tags: TAGS TAGS: @@ -287,13 +302,17 @@ if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \ if test -d $$d/$$file; then \ dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \ + if test -d "$(distdir)/$$file"; then \ + find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ + fi; \ if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \ - cp -pR $(srcdir)/$$file $(distdir)$$dir || exit 1; \ + cp -fpR $(srcdir)/$$file "$(distdir)$$dir" || exit 1; \ + find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ fi; \ - cp -pR $$d/$$file $(distdir)$$dir || exit 1; \ + cp -fpR $$d/$$file "$(distdir)$$dir" || exit 1; \ else \ - test -f $(distdir)/$$file \ - || cp -p $$d/$$file $(distdir)/$$file \ + test -f "$(distdir)/$$file" \ + || cp -p $$d/$$file "$(distdir)/$$file" \ || exit 1; \ fi; \ done @@ -324,6 +343,7 @@ distclean-generic: -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES) + -test . = "$(srcdir)" || test -z "$(CONFIG_CLEAN_VPATH_FILES)" || rm -f $(CONFIG_CLEAN_VPATH_FILES) maintainer-clean-generic: @echo "This command is intended for maintainers to use" @@ -342,6 +362,8 @@ html: html-am +html-am: + info: info-am info-am: @@ -350,18 +372,28 @@ install-dvi: install-dvi-am +install-dvi-am: + install-exec-am: install-html: install-html-am +install-html-am: + install-info: install-info-am +install-info-am: + install-man: install-pdf: install-pdf-am +install-pdf-am: + install-ps: install-ps-am +install-ps-am: + installcheck-am: maintainer-clean: maintainer-clean-am @@ -396,6 +428,7 @@ mostlyclean-generic mostlyclean-libtool pdf pdf-am ps ps-am \ uninstall uninstall-am uninstall-pkgincludeDATA + # Tell versions [3.59,3.63) of GNU make to not export all variables. # Otherwise a system limit (for SysV at least) may be exceeded. .NOEXPORT: Index: dvbstreamer-2~svn777/trunk/include/dvbpsi/Makefile.in =================================================================== --- dvbstreamer-2~svn777.orig/trunk/include/dvbpsi/Makefile.in 2010-05-09 17:43:28.000000000 +0200 +++ dvbstreamer-2~svn777/trunk/include/dvbpsi/Makefile.in 2010-05-09 17:44:04.000000000 +0200 @@ -1,8 +1,9 @@ -# Makefile.in generated by automake 1.10.2 from Makefile.am. +# Makefile.in generated by automake 1.11.1 from Makefile.am. # @configure_input@ # Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, -# 2003, 2004, 2005, 2006, 2007, 2008 Free Software Foundation, Inc. +# 2003, 2004, 2005, 2006, 2007, 2008, 2009 Free Software Foundation, +# Inc. # This Makefile.in is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. @@ -16,8 +17,9 @@ VPATH = @srcdir@ pkgdatadir = $(datadir)/@PACKAGE@ -pkglibdir = $(libdir)/@PACKAGE@ pkgincludedir = $(includedir)/@PACKAGE@ +pkglibdir = $(libdir)/@PACKAGE@ +pkglibexecdir = $(libexecdir)/@PACKAGE@ am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd install_sh_DATA = $(install_sh) -c -m 644 install_sh_PROGRAM = $(install_sh) -c @@ -42,6 +44,7 @@ mkinstalldirs = $(install_sh) -d CONFIG_HEADER = $(top_builddir)/config.h CONFIG_CLEAN_FILES = +CONFIG_CLEAN_VPATH_FILES = SOURCES = DIST_SOURCES = am__vpath_adj_setup = srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; @@ -49,16 +52,30 @@ $(srcdir)/*) f=`echo "$$p" | sed "s|^$$srcdirstrip/||"`;; \ *) f=$$p;; \ esac; -am__strip_dir = `echo $$p | sed -e 's|^.*/||'`; +am__strip_dir = f=`echo $$p | sed -e 's|^.*/||'`; +am__install_max = 40 +am__nobase_strip_setup = \ + srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*|]/\\\\&/g'` +am__nobase_strip = \ + for p in $$list; do echo "$$p"; done | sed -e "s|$$srcdirstrip/||" +am__nobase_list = $(am__nobase_strip_setup); \ + for p in $$list; do echo "$$p $$p"; done | \ + sed "s| $$srcdirstrip/| |;"' / .*\//!s/ .*/ ./; s,\( .*\)/[^/]*$$,\1,' | \ + $(AWK) 'BEGIN { files["."] = "" } { files[$$2] = files[$$2] " " $$1; \ + if (++n[$$2] == $(am__install_max)) \ + { print $$2, files[$$2]; n[$$2] = 0; files[$$2] = "" } } \ + END { for (dir in files) print dir, files[dir] }' +am__base_list = \ + sed '$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;s/\n/ /g' | \ + sed '$$!N;$$!N;$$!N;$$!N;s/\n/ /g' am__installdirs = "$(DESTDIR)$(dvbpsidir)" \ "$(DESTDIR)$(dvbpsiatscdir)" -dvbpsiDATA_INSTALL = $(INSTALL_DATA) -dvbpsiatscDATA_INSTALL = $(INSTALL_DATA) DATA = $(dvbpsi_DATA) $(dvbpsiatsc_DATA) DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) ACLOCAL = @ACLOCAL@ AMTAR = @AMTAR@ AR = @AR@ +AS = @AS@ AUTOCONF = @AUTOCONF@ AUTOHEADER = @AUTOHEADER@ AUTOMAKE = @AUTOMAKE@ @@ -71,6 +88,7 @@ CYGPATH_W = @CYGPATH_W@ DEFS = @DEFS@ DEPDIR = @DEPDIR@ +DLLTOOL = @DLLTOOL@ DSYMUTIL = @DSYMUTIL@ DUMPBIN = @DUMPBIN@ DVBSTREAMER_MAJOR = @DVBSTREAMER_MAJOR@ @@ -86,7 +104,6 @@ GETTIME_LIB = @GETTIME_LIB@ GREP = @GREP@ ICONV_LIB = @ICONV_LIB@ -INCLTDL = @INCLTDL@ INSTALL = @INSTALL@ INSTALL_DATA = @INSTALL_DATA@ INSTALL_PROGRAM = @INSTALL_PROGRAM@ @@ -94,14 +111,11 @@ INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@ LD = @LD@ LDFLAGS = @LDFLAGS@ -LIBLTDL = @LIBLTDL@ LIBOBJS = @LIBOBJS@ LIBS = @LIBS@ LIBTOOL = @LIBTOOL@ LIPO = @LIPO@ LN_S = @LN_S@ -LTDLDEPS = @LTDLDEPS@ -LTDLINCL = @LTDLINCL@ LTLIBOBJS = @LTLIBOBJS@ MAKEINFO = @MAKEINFO@ MKDIR_P = @MKDIR_P@ @@ -177,7 +191,6 @@ sbindir = @sbindir@ sharedstatedir = @sharedstatedir@ srcdir = @srcdir@ -subdirs = @subdirs@ sysconfdir = @sysconfdir@ target_alias = @target_alias@ top_build_prefix = @top_build_prefix@ @@ -187,6 +200,7 @@ dvbpsiatscdir = $(pkgincludedir)/dvbpsi/atsc dvbpsi_DATA = \ demux.h \ + sections.h \ descriptor.h \ datetime.h \ dr_02.h \ @@ -203,6 +217,8 @@ dr_0d.h \ dr_0e.h \ dr_0f.h \ + dr_13.h \ + dr_14.h \ dr_42.h \ dr_43.h \ dr_47.h \ @@ -215,6 +231,7 @@ dr_59.h \ dr_5a.h \ dr_62.h \ + dr_66.h \ dr_69.h \ dr_73.h \ dr_76.h \ @@ -250,9 +267,9 @@ exit 1;; \ esac; \ done; \ - echo ' cd $(top_srcdir) && $(AUTOMAKE) --gnu include/dvbpsi/Makefile'; \ - cd $(top_srcdir) && \ - $(AUTOMAKE) --gnu include/dvbpsi/Makefile + echo ' cd $(top_srcdir) && $(AUTOMAKE) --gnu include/dvbpsi/Makefile'; \ + $(am__cd) $(top_srcdir) && \ + $(AUTOMAKE) --gnu include/dvbpsi/Makefile .PRECIOUS: Makefile Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status @case '$?' in \ @@ -270,6 +287,7 @@ cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh $(ACLOCAL_M4): $(am__aclocal_m4_deps) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh +$(am__aclocal_m4_deps): mostlyclean-libtool: -rm -f *.lo @@ -279,37 +297,43 @@ install-dvbpsiDATA: $(dvbpsi_DATA) @$(NORMAL_INSTALL) test -z "$(dvbpsidir)" || $(MKDIR_P) "$(DESTDIR)$(dvbpsidir)" - @list='$(dvbpsi_DATA)'; for p in $$list; do \ + @list='$(dvbpsi_DATA)'; test -n "$(dvbpsidir)" || list=; \ + for p in $$list; do \ if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \ - f=$(am__strip_dir) \ - echo " $(dvbpsiDATA_INSTALL) '$$d$$p' '$(DESTDIR)$(dvbpsidir)/$$f'"; \ - $(dvbpsiDATA_INSTALL) "$$d$$p" "$(DESTDIR)$(dvbpsidir)/$$f"; \ + echo "$$d$$p"; \ + done | $(am__base_list) | \ + while read files; do \ + echo " $(INSTALL_DATA) $$files '$(DESTDIR)$(dvbpsidir)'"; \ + $(INSTALL_DATA) $$files "$(DESTDIR)$(dvbpsidir)" || exit $$?; \ done uninstall-dvbpsiDATA: @$(NORMAL_UNINSTALL) - @list='$(dvbpsi_DATA)'; for p in $$list; do \ - f=$(am__strip_dir) \ - echo " rm -f '$(DESTDIR)$(dvbpsidir)/$$f'"; \ - rm -f "$(DESTDIR)$(dvbpsidir)/$$f"; \ - done + @list='$(dvbpsi_DATA)'; test -n "$(dvbpsidir)" || list=; \ + files=`for p in $$list; do echo $$p; done | sed -e 's|^.*/||'`; \ + test -n "$$files" || exit 0; \ + echo " ( cd '$(DESTDIR)$(dvbpsidir)' && rm -f" $$files ")"; \ + cd "$(DESTDIR)$(dvbpsidir)" && rm -f $$files install-dvbpsiatscDATA: $(dvbpsiatsc_DATA) @$(NORMAL_INSTALL) test -z "$(dvbpsiatscdir)" || $(MKDIR_P) "$(DESTDIR)$(dvbpsiatscdir)" - @list='$(dvbpsiatsc_DATA)'; for p in $$list; do \ + @list='$(dvbpsiatsc_DATA)'; test -n "$(dvbpsiatscdir)" || list=; \ + for p in $$list; do \ if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \ - f=$(am__strip_dir) \ - echo " $(dvbpsiatscDATA_INSTALL) '$$d$$p' '$(DESTDIR)$(dvbpsiatscdir)/$$f'"; \ - $(dvbpsiatscDATA_INSTALL) "$$d$$p" "$(DESTDIR)$(dvbpsiatscdir)/$$f"; \ + echo "$$d$$p"; \ + done | $(am__base_list) | \ + while read files; do \ + echo " $(INSTALL_DATA) $$files '$(DESTDIR)$(dvbpsiatscdir)'"; \ + $(INSTALL_DATA) $$files "$(DESTDIR)$(dvbpsiatscdir)" || exit $$?; \ done uninstall-dvbpsiatscDATA: @$(NORMAL_UNINSTALL) - @list='$(dvbpsiatsc_DATA)'; for p in $$list; do \ - f=$(am__strip_dir) \ - echo " rm -f '$(DESTDIR)$(dvbpsiatscdir)/$$f'"; \ - rm -f "$(DESTDIR)$(dvbpsiatscdir)/$$f"; \ - done + @list='$(dvbpsiatsc_DATA)'; test -n "$(dvbpsiatscdir)" || list=; \ + files=`for p in $$list; do echo $$p; done | sed -e 's|^.*/||'`; \ + test -n "$$files" || exit 0; \ + echo " ( cd '$(DESTDIR)$(dvbpsiatscdir)' && rm -f" $$files ")"; \ + cd "$(DESTDIR)$(dvbpsiatscdir)" && rm -f $$files tags: TAGS TAGS: @@ -333,13 +357,17 @@ if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \ if test -d $$d/$$file; then \ dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \ + if test -d "$(distdir)/$$file"; then \ + find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ + fi; \ if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \ - cp -pR $(srcdir)/$$file $(distdir)$$dir || exit 1; \ + cp -fpR $(srcdir)/$$file "$(distdir)$$dir" || exit 1; \ + find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ fi; \ - cp -pR $$d/$$file $(distdir)$$dir || exit 1; \ + cp -fpR $$d/$$file "$(distdir)$$dir" || exit 1; \ else \ - test -f $(distdir)/$$file \ - || cp -p $$d/$$file $(distdir)/$$file \ + test -f "$(distdir)/$$file" \ + || cp -p $$d/$$file "$(distdir)/$$file" \ || exit 1; \ fi; \ done @@ -370,6 +398,7 @@ distclean-generic: -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES) + -test . = "$(srcdir)" || test -z "$(CONFIG_CLEAN_VPATH_FILES)" || rm -f $(CONFIG_CLEAN_VPATH_FILES) maintainer-clean-generic: @echo "This command is intended for maintainers to use" @@ -388,6 +417,8 @@ html: html-am +html-am: + info: info-am info-am: @@ -396,18 +427,28 @@ install-dvi: install-dvi-am +install-dvi-am: + install-exec-am: install-html: install-html-am +install-html-am: + install-info: install-info-am +install-info-am: + install-man: install-pdf: install-pdf-am +install-pdf-am: + install-ps: install-ps-am +install-ps-am: + installcheck-am: maintainer-clean: maintainer-clean-am @@ -443,6 +484,7 @@ mostlyclean-libtool pdf pdf-am ps ps-am uninstall uninstall-am \ uninstall-dvbpsiDATA uninstall-dvbpsiatscDATA + # Tell versions [3.59,3.63) of GNU make to not export all variables. # Otherwise a system limit (for SysV at least) may be exceeded. .NOEXPORT: debian/patches/no_ncurses.patch0000644000000000000000000000557412260056654014035 0ustar # superseded by upstream SVN 814 Index: dvbstreamer-2.1.0/configure.in =================================================================== --- dvbstreamer-2.1.0.orig/configure.in 2011-10-28 19:00:59.000000000 -0400 +++ dvbstreamer-2.1.0/configure.in 2011-10-28 19:00:59.000000000 -0400 @@ -149,12 +149,7 @@ dnl --------------------------------------------------------------------------- AC_CHECK_HEADER([readline/readline.h], [], [AC_MSG_FAILURE([readline header file not found])]) -AC_CHECK_LIB([readline], [readline], [READLINE_TERMCAP="-lncurses"], - [AC_CHECK_LIB([readline], [readline], [READLINE_TERMCAP="-ltermcap"], - [AC_MSG_FAILURE([readline not found])], - [-ltermcap])], - [-lncurses]) - +AC_CHECK_LIB([readline], [readline], [READLINE_TERMCAP=""], []) AC_SUBST(READLINE_TERMCAP) LIBS="" Index: dvbstreamer-2.1.0/configure =================================================================== --- dvbstreamer-2.1.0.orig/configure 2011-10-28 19:07:04.000000000 -0400 +++ dvbstreamer-2.1.0/configure 2011-10-28 19:08:25.000000000 -0400 @@ -12537,7 +12537,7 @@ $as_echo_n "(cached) " >&6 else ac_check_lib_save_LIBS=$LIBS -LIBS="-lreadline -lncurses $LIBS" +LIBS="-lreadline $LIBS" cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ @@ -12567,55 +12567,6 @@ fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_readline_readline" >&5 $as_echo "$ac_cv_lib_readline_readline" >&6; } -if test "x$ac_cv_lib_readline_readline" = x""yes; then : - READLINE_TERMCAP="-lncurses" -else - { $as_echo "$as_me:${as_lineno-$LINENO}: checking for readline in -lreadline" >&5 -$as_echo_n "checking for readline in -lreadline... " >&6; } -if test "${ac_cv_lib_readline_readline+set}" = set; then : - $as_echo_n "(cached) " >&6 -else - ac_check_lib_save_LIBS=$LIBS -LIBS="-lreadline -ltermcap $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 readline (); -int -main () -{ -return readline (); - ; - return 0; -} -_ACEOF -if ac_fn_c_try_link "$LINENO"; then : - ac_cv_lib_readline_readline=yes -else - ac_cv_lib_readline_readline=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_readline_readline" >&5 -$as_echo "$ac_cv_lib_readline_readline" >&6; } -if test "x$ac_cv_lib_readline_readline" = x""yes; then : - READLINE_TERMCAP="-ltermcap" -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 $? "readline not found -See \`config.log' for more details" "$LINENO" 5 ; } -fi - -fi debian/source/0000755000000000000000000000000012260056654010474 5ustar debian/source/format0000644000000000000000000000001412260056654011702 0ustar 3.0 (quilt) debian/rules0000755000000000000000000000202112260056654010247 0ustar #!/usr/bin/make -f include /usr/share/cdbs/1/rules/debhelper.mk include /usr/share/cdbs/1/rules/autoreconf.mk include /usr/share/cdbs/1/class/autotools.mk # where sources are #DEB_SRCDIR = $(CURDIR)/build #DEB_SRCDIR = trunk DEB_SRCDIR = . # in which directory to build #DEB_BUILDDIR = $(DEB_SRCDIR)/build #DEB_BUILDDIR = trunk DEB_BUILDDIR = . DEB_AUTO_UPDATE_LIBTOOL = pre ##test : it is not used DEB_CONFIGURE_EXTRA_FLAGS=--docdir=/usr/share/doc install/dvbstreamer:: ## not needed, I patch into Makefile.am #mkdir debian/dvbstreamer/usr/share #mkdir debian/dvbstreamer/usr/share/doc #mv debian/dvbstreamer/usr/doc/DVBStreamer debian/dvbstreamer/usr/share/doc/dvbstreamer #rmdir debian/dvbstreamer/usr/doc # GPL v2 rm debian/dvbstreamer/usr/share/doc/dvbstreamer/COPYING #it is currently empty rm debian/dvbstreamer/usr/share/doc/dvbstreamer/NEWS #not needed in binary installs rm debian/dvbstreamer/usr/share/doc/dvbstreamer/INSTALL #empty dependency_libs sed -i "/dependency_libs/ s/'.*'/''/" `find . -name '*.la'` debian/gbp.conf0000644000000000000000000000004312260056654010610 0ustar [DEFAULT] export-dir=../build-area debian/changelog0000644000000000000000000000614712260056654011056 0ustar dvbstreamer (2.1.0-5) unstable; urgency=low * bump to SVN 819 -- A Mennucc1 Sun, 29 Dec 2013 15:08:23 +0100 dvbstreamer (2.1.0-4) unstable; urgency=low * add export-dir=../build-area to debian/gpb.conf otherwise at every build the auto* machinery messes the repository -- A Mennucc1 Thu, 08 Aug 2013 12:28:40 +0200 dvbstreamer (2.1.0-3) unstable; urgency=low * thanks everybody for the precious NMUs * create collab-maint git repo * bump standards version, no changes -- A Mennucc1 Sat, 03 Aug 2013 17:11:34 +0200 dvbstreamer (2.1.0-2.4) unstable; urgency=low * Non-maintainer upload. * Fix "FTBFS: libtool: Version mismatch error.": add patch from Ubuntu / Logan Rosen to use autoreconf. (Closes: #713525) -- gregor herrmann Fri, 05 Jul 2013 14:12:47 +0200 dvbstreamer (2.1.0-2.3) unstable; urgency=low * Non-maintainer upload. * Fix "FTBFS": add patch pkgincludedir.patch to fix the Makefile.ams. (Closes: #661448) * debian/rules: empty dependency_libs in .la files. -- gregor herrmann Mon, 12 Mar 2012 20:37:49 +0100 dvbstreamer (2.1.0-2.2) unstable; urgency=low * NMU * Fix immense fragility of libtool/cdbs usage. Ick. Closes: #652369 * Tweak how the no_ncurses patch works - define READLINE_TERMCAP empty rather than leaving it out. -- Steve McIntyre Wed, 21 Dec 2011 17:09:24 +0000 dvbstreamer (2.1.0-2.1) unstable; urgency=low * NMU * no_ncurses.patch: Don't look for or link against ncurses; it isn't even used. (Closes: #646135) * debian/control: Because the majority of dvbstreamer's source is GPLv2, we must use libreadline-gplv2-dev as a build-dependency. * Thanks to Daniel T Chen for the patch. -- Steve McIntyre Fri, 16 Dec 2011 17:34:24 +0000 dvbstreamer (2.1.0-2) unstable; urgency=low * Bug fix: "FTBFS everywhere: configure: error: libev not found", thanks to Cyril Brulebois & Stephen Kitt(Closes: #618786). -- A Mennucc1 Wed, 23 Mar 2011 14:39:59 +0100 dvbstreamer (2.1.0-1) unstable; urgency=low * New upstream release * Bug fix: "DVBstreamer command mode hangs", thanks to David Liontooth (Closes: #603991). -- A Mennucc1 Thu, 17 Mar 2011 22:55:12 +0100 dvbstreamer (2.0.0rc1-1) experimental; urgency=low * New upstream release -- A Mennucc1 Wed, 01 Sep 2010 16:29:31 +0200 dvbstreamer (2~svn777-2) experimental; urgency=low * Really add build dependency "libyaml-dev" -- A Mennucc1 Sun, 09 May 2010 22:16:35 +0200 dvbstreamer (2~svn777-1) experimental; urgency=low * Newer svn (2.0.0 rc) * Add build dependency on "libsqlite3-dev", add "libyaml-dev" * remove debian/dvstreamer.* cruft,, thanks Luca -- A Mennucc1 Sat, 08 May 2010 21:39:59 +0200 dvbstreamer (2~svn770-1) experimental; urgency=low * First packaging (Closes: #538728). -- A Mennucc1 Sat, 10 Apr 2010 10:10:08 +0200 debian/copyright0000644000000000000000000000234612260056654011134 0ustar This package was debianized by mennucc1@debian.org on 10 Apr 2010 It was downloaded from the main SVN repository, see http://sourceforge.net/projects/dvbstreamer/ Copyright Holder: most of the code is Copyright (C)2006-2010 Adam Charrett see below for exceptions. Contributors: see into trunk/README in source License: most of the code is GNU GENERAL PUBLIC LICENSE, Version 2, June 1991 On Debian Linux systems, the complete text of the GNU General Public License can be found in /usr/share/common-licenses/GPL-2. see below for exceptions. =============== Exceptions. The file trunk/src/utf8.c is by Jeff Bezanson and was placed in the public domain Fall 2005 The file src/plugins/traffic.c is Copyright (C) 2008 Steve VanDeBogart and is licensed GPL v2 (or later) The code in trunk/src/dvbpsi is Copyright: 2001-2008 VideoLAN Authors: Johan Bilien Arnaud de Bossoreille de Ribou Johann Hanne Laurent Aimar Christophe Massiot Derk-Jan Hartman Tristan Leteurtre Pinkava Jiri