Overview

Request 242 (accepted)

update to 2.3.3

Submit package home:dnh:branches:Multimedia / cclive to package Multimedia / cclive

cclive.changes Changed
x
 
1
@@ -1,4 +1,9 @@
2
 -------------------------------------------------------------------
3
+Sun Jul  8 09:15:40 UTC 2012 - dnh@opensuse.org
4
+
5
+- update to 0.7.9
6
+
7
+-------------------------------------------------------------------
8
 Tue Nov 29 22:08:37 UTC 2011 - reddwarf@opensuse.org
9
 
10
 - update to 0.7.8
11
cclive.spec Changed
10
 
1
@@ -1,7 +1,7 @@
2
 # vim: set ts=4 sw=4 et:
3
 
4
 Name:           cclive
5
-Version:        0.7.8
6
+Version:        0.7.9
7
 Release:        0
8
 Summary:        Command Line Video Extraction Utility
9
 Source:         http://sourceforge.net/projects/cclive/files/0.7/cclive-%{version}.tar.bz2
10
cclive-0.7.8.tar.bz2/ChangeLog -> cclive-0.7.9.tar.bz2/ChangeLog Changed
68
 
1
@@ -1,3 +1,66 @@
2
+commit ec42b14
3
+Author: Toni Gundogdu <legatvs@gmail.com>
4
+Date:   2012-03-03
5
+
6
+    Update NEWS for 0.7.9
7
+
8
+NEWS
9
+
10
+commit af62c98
11
+Author: Toni Gundogdu <legatvs@gmail.com>
12
+Date:   2012-03-03
13
+
14
+    Bump version to 0.7.9
15
+
16
+m4/version.m4
17
+
18
+commit edc7b12
19
+Author: Toni Gundogdu <legatvs@gmail.com>
20
+Date:   2012-03-03
21
+
22
+    Update boost.m4 to the latest version
23
+
24
+m4/boost.m4
25
+
26
+commit 9101e1a
27
+Author: Toni Gundogdu <legatvs@gmail.com>
28
+Date:   2012-03-03
29
+
30
+    Add gen-news.sh (repo only)
31
+
32
+gen-news.sh
33
+
34
+commit 8172356
35
+Author: Toni Gundogdu <legatvs@gmail.com>
36
+Date:   2012-03-02
37
+
38
+    FIX: Print only HTTP category domains with --support (#17)
39
+    
40
+    cclive handles HTTP stream URLs only. Print only those
41
+    domains that reportedly return HTTP stream URLs to cclive.
42
+    
43
+     * https://sourceforge.net/apps/trac/cclive/ticket/17
44
+
45
+src/quvi/query.cpp
46
+
47
+commit b089d63
48
+Author: Toni Gundogdu <legatvs@gmail.com>
49
+Date:   2012-03-02
50
+
51
+    FIX: --support: Strip lua escapes from domain patterns (#16)
52
+    
53
+    To further confusion, strip the lua escape characters ('%')
54
+    from the domain patterns.  Replace any "%w+" with "com".
55
+    
56
+    Other changes:
57
+     Do not print the _deprecated_ format strings anymore,
58
+     as they only hold either "default" or "default|best"
59
+     (libquvi-scripts 0.4.0+, quvi 0.2.16.1+).
60
+    
61
+     * https://sourceforge.net/apps/trac/cclive/ticket/16
62
+
63
+src/quvi/misc.cpp
64
+
65
 commit b555a5e
66
 Author: Toni Gundogdu <legatvs@gmail.com>
67
 Date:   2011-11-26
68
cclive-0.7.8.tar.bz2/Makefile.in -> cclive-0.7.9.tar.bz2/Makefile.in Changed
196
 
1
@@ -1,9 +1,9 @@
2
-# Makefile.in generated by automake 1.11.1 from Makefile.am.
3
+# Makefile.in generated by automake 1.11.3 from Makefile.am.
4
 # @configure_input@
5
 
6
 # Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002,
7
-# 2003, 2004, 2005, 2006, 2007, 2008, 2009  Free Software Foundation,
8
-# Inc.
9
+# 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011 Free Software
10
+# Foundation, Inc.
11
 # This Makefile.in is free software; the Free Software Foundation
12
 # gives unlimited permission to copy and/or distribute it,
13
 # with or without modifications, as long as this notice is preserved.
14
@@ -56,11 +56,11 @@
15
 CONFIG_HEADER = config.h
16
 CONFIG_CLEAN_FILES =
17
 CONFIG_CLEAN_VPATH_FILES =
18
-AM_V_GEN = $(am__v_GEN_$(V))
19
-am__v_GEN_ = $(am__v_GEN_$(AM_DEFAULT_VERBOSITY))
20
+AM_V_GEN = $(am__v_GEN_@AM_V@)
21
+am__v_GEN_ = $(am__v_GEN_@AM_DEFAULT_V@)
22
 am__v_GEN_0 = @echo "  GEN   " $@;
23
-AM_V_at = $(am__v_at_$(V))
24
-am__v_at_ = $(am__v_at_$(AM_DEFAULT_VERBOSITY))
25
+AM_V_at = $(am__v_at_@AM_V@)
26
+am__v_at_ = $(am__v_at_@AM_DEFAULT_V@)
27
 am__v_at_0 = @
28
 SOURCES =
29
 DIST_SOURCES =
30
@@ -83,9 +83,11 @@
31
 distdir = $(PACKAGE)-$(VERSION)
32
 top_distdir = $(distdir)
33
 am__remove_distdir = \
34
-  { test ! -d "$(distdir)" \
35
-    || { find "$(distdir)" -type d ! -perm -200 -exec chmod u+w {} ';' \
36
-         && rm -fr "$(distdir)"; }; }
37
+  if test -d "$(distdir)"; then \
38
+    find "$(distdir)" -type d ! -perm -200 -exec chmod u+w {} ';' \
39
+      && rm -rf "$(distdir)" \
40
+      || { sleep 5 && rm -rf "$(distdir)"; }; \
41
+  else :; fi
42
 am__relativize = \
43
   dir0=`pwd`; \
44
   sed_first='s,^\([^/]*\)/.*$$,\1,'; \
45
@@ -114,6 +116,8 @@
46
 DIST_ARCHIVES = $(distdir).tar.gz $(distdir).tar.bz2 $(distdir).tar.xz
47
 GZIP_ENV = --best
48
 distuninstallcheck_listfiles = find . -type f -print
49
+am__distuninstallcheck_listfiles = $(distuninstallcheck_listfiles) \
50
+  | sed 's|^\./|$(prefix)/|' | grep -v '$(infodir)/dir$$'
51
 distcleancheck_listfiles = find . -type f -print
52
 ACLOCAL = @ACLOCAL@
53
 AMTAR = @AMTAR@
54
@@ -275,7 +279,7 @@
55
    $(MAKE) $(AM_MAKEFLAGS) all-recursive
56
 
57
 .SUFFIXES:
58
-am--refresh:
59
+am--refresh: Makefile
60
    @:
61
 $(srcdir)/Makefile.in:  $(srcdir)/Makefile.am  $(am__configure_deps)
62
    @for dep in $?; do \
63
@@ -311,10 +315,8 @@
64
 $(am__aclocal_m4_deps):
65
 
66
 config.h: stamp-h1
67
-   @if test ! -f $@; then \
68
-     rm -f stamp-h1; \
69
-     $(MAKE) $(AM_MAKEFLAGS) stamp-h1; \
70
-   else :; fi
71
+   @if test ! -f $@; then rm -f stamp-h1; else :; fi
72
+   @if test ! -f $@; then $(MAKE) $(AM_MAKEFLAGS) stamp-h1; else :; fi
73
 
74
 stamp-h1: $(srcdir)/config.h.in $(top_builddir)/config.status
75
    @rm -f stamp-h1
76
@@ -545,14 +547,18 @@
77
    tardir=$(distdir) && $(am__tar) | GZIP=$(GZIP_ENV) gzip -c >$(distdir).tar.gz
78
    $(am__remove_distdir)
79
 dist-bzip2: distdir
80
-   tardir=$(distdir) && $(am__tar) | bzip2 -9 -c >$(distdir).tar.bz2
81
+   tardir=$(distdir) && $(am__tar) | BZIP2=$${BZIP2--9} bzip2 -c >$(distdir).tar.bz2
82
+   $(am__remove_distdir)
83
+
84
+dist-lzip: distdir
85
+   tardir=$(distdir) && $(am__tar) | lzip -c $${LZIP_OPT--9} >$(distdir).tar.lz
86
    $(am__remove_distdir)
87
 
88
 dist-lzma: distdir
89
    tardir=$(distdir) && $(am__tar) | lzma -9 -c >$(distdir).tar.lzma
90
    $(am__remove_distdir)
91
 dist-xz: distdir
92
-   tardir=$(distdir) && $(am__tar) | xz -c >$(distdir).tar.xz
93
+   tardir=$(distdir) && $(am__tar) | XZ_OPT=$${XZ_OPT--e} xz -c >$(distdir).tar.xz
94
    $(am__remove_distdir)
95
 
96
 dist-tarZ: distdir
97
@@ -570,8 +576,8 @@
98
 
99
 dist dist-all: distdir
100
    tardir=$(distdir) && $(am__tar) | GZIP=$(GZIP_ENV) gzip -c >$(distdir).tar.gz
101
-   tardir=$(distdir) && $(am__tar) | bzip2 -9 -c >$(distdir).tar.bz2
102
-   tardir=$(distdir) && $(am__tar) | xz -c >$(distdir).tar.xz
103
+   tardir=$(distdir) && $(am__tar) | BZIP2=$${BZIP2--9} bzip2 -c >$(distdir).tar.bz2
104
+   tardir=$(distdir) && $(am__tar) | XZ_OPT=$${XZ_OPT--e} xz -c >$(distdir).tar.xz
105
    $(am__remove_distdir)
106
 
107
 # This target untars the dist file and tries a VPATH configuration.  Then
108
@@ -585,6 +591,8 @@
109
      bzip2 -dc $(distdir).tar.bz2 | $(am__untar) ;;\
110
    *.tar.lzma*) \
111
      lzma -dc $(distdir).tar.lzma | $(am__untar) ;;\
112
+   *.tar.lz*) \
113
+     lzip -dc $(distdir).tar.lz | $(am__untar) ;;\
114
    *.tar.xz*) \
115
      xz -dc $(distdir).tar.xz | $(am__untar) ;;\
116
    *.tar.Z*) \
117
@@ -604,6 +612,7 @@
118
      && am__cwd=`pwd` \
119
      && $(am__cd) $(distdir)/_build \
120
      && ../configure --srcdir=.. --prefix="$$dc_install_base" \
121
+       $(AM_DISTCHECK_CONFIGURE_FLAGS) \
122
        $(DISTCHECK_CONFIGURE_FLAGS) \
123
      && $(MAKE) $(AM_MAKEFLAGS) \
124
      && $(MAKE) $(AM_MAKEFLAGS) dvi \
125
@@ -632,8 +641,16 @@
126
      list='$(DIST_ARCHIVES)'; for i in $$list; do echo $$i; done) | \
127
      sed -e 1h -e 1s/./=/g -e 1p -e 1x -e '$$p' -e '$$x'
128
 distuninstallcheck:
129
-   @$(am__cd) '$(distuninstallcheck_dir)' \
130
-   && test `$(distuninstallcheck_listfiles) | wc -l` -le 1 \
131
+   @test -n '$(distuninstallcheck_dir)' || { \
132
+     echo 'ERROR: trying to run $@ with an empty' \
133
+          '$$(distuninstallcheck_dir)' >&2; \
134
+     exit 1; \
135
+   }; \
136
+   $(am__cd) '$(distuninstallcheck_dir)' || { \
137
+     echo 'ERROR: cannot chdir into $(distuninstallcheck_dir)' >&2; \
138
+     exit 1; \
139
+   }; \
140
+   test `$(am__distuninstallcheck_listfiles) | wc -l` -eq 0 \
141
       || { echo "ERROR: files left after uninstall:" ; \
142
            if test -n "$(DESTDIR)"; then \
143
              echo "  (check DESTDIR support)"; \
144
@@ -664,10 +681,15 @@
145
 
146
 installcheck: installcheck-recursive
147
 install-strip:
148
-   $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \
149
-     install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \
150
-     `test -z '$(STRIP)' || \
151
-       echo "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'"` install
152
+   if test -z '$(STRIP)'; then \
153
+     $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \
154
+       install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \
155
+         install; \
156
+   else \
157
+     $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \
158
+       install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \
159
+       "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'" install; \
160
+   fi
161
 mostlyclean-generic:
162
 
163
 clean-generic:
164
@@ -755,18 +777,19 @@
165
 .PHONY: $(RECURSIVE_CLEAN_TARGETS) $(RECURSIVE_TARGETS) CTAGS GTAGS \
166
    all all-am am--refresh check check-am clean clean-generic \
167
    clean-libtool ctags ctags-recursive dist dist-all dist-bzip2 \
168
-   dist-gzip dist-hook dist-lzma dist-shar dist-tarZ dist-xz \
169
-   dist-zip distcheck distclean distclean-generic distclean-hdr \
170
-   distclean-libtool distclean-tags distcleancheck distdir \
171
-   distuninstallcheck dvi dvi-am html html-am info info-am \
172
-   install install-am install-data install-data-am install-dvi \
173
-   install-dvi-am install-exec install-exec-am install-html \
174
-   install-html-am install-info install-info-am install-man \
175
-   install-pdf install-pdf-am install-ps install-ps-am \
176
-   install-strip installcheck installcheck-am installdirs \
177
-   installdirs-am maintainer-clean maintainer-clean-generic \
178
-   mostlyclean mostlyclean-generic mostlyclean-libtool pdf pdf-am \
179
-   ps ps-am tags tags-recursive uninstall uninstall-am
180
+   dist-gzip dist-hook dist-lzip dist-lzma dist-shar dist-tarZ \
181
+   dist-xz dist-zip distcheck distclean distclean-generic \
182
+   distclean-hdr distclean-libtool distclean-tags distcleancheck \
183
+   distdir distuninstallcheck dvi dvi-am html html-am info \
184
+   info-am install install-am install-data install-data-am \
185
+   install-dvi install-dvi-am install-exec install-exec-am \
186
+   install-html install-html-am install-info install-info-am \
187
+   install-man install-pdf install-pdf-am install-ps \
188
+   install-ps-am install-strip installcheck installcheck-am \
189
+   installdirs installdirs-am maintainer-clean \
190
+   maintainer-clean-generic mostlyclean mostlyclean-generic \
191
+   mostlyclean-libtool pdf pdf-am ps ps-am tags tags-recursive \
192
+   uninstall uninstall-am
193
 
194
 
195
 .PHONY: ChangeLog VERSION
196
cclive-0.7.8.tar.bz2/NEWS -> cclive-0.7.9.tar.bz2/NEWS Changed
12
 
1
@@ -1,3 +1,10 @@
2
+v0.7.9  (2012-03-03) / Toni Gundogdu
3
+
4
+Toni Gundogdu:
5
+  - FIX: Print only HTTP category domains with --support (#17) [8172356]
6
+  - FIX: --support: Strip lua escapes from domain patterns (#16) [b089d63]
7
+  - Update boost.m4 to the latest version [edc7b12]
8
+
9
 
10
 0.7.8  Sat Nov 26 2011  Toni Gundogdu
11
 Changes:
12
cclive-0.7.8.tar.bz2/VERSION -> cclive-0.7.9.tar.bz2/VERSION Changed
4
 
1
@@ -1,1 +1,1 @@
2
-v0.7.8
3
+v0.7.9
4
cclive-0.7.8.tar.bz2/aclocal.m4 -> cclive-0.7.9.tar.bz2/aclocal.m4 Changed
293
 
1
@@ -1,7 +1,8 @@
2
-# generated automatically by aclocal 1.11.1 -*- Autoconf -*-
3
+# generated automatically by aclocal 1.11.3 -*- Autoconf -*-
4
 
5
 # Copyright (C) 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004,
6
-# 2005, 2006, 2007, 2008, 2009  Free Software Foundation, Inc.
7
+# 2005, 2006, 2007, 2008, 2009, 2010, 2011 Free Software Foundation,
8
+# Inc.
9
 # This file is free software; the Free Software Foundation
10
 # gives unlimited permission to copy and/or distribute it,
11
 # with or without modifications, as long as this notice is preserved.
12
@@ -179,12 +180,15 @@
13
 fi[]dnl
14
 ])# PKG_CHECK_MODULES
15
 
16
-# Copyright (C) 2002, 2003, 2005, 2006, 2007, 2008  Free Software Foundation, Inc.
17
+# Copyright (C) 2002, 2003, 2005, 2006, 2007, 2008, 2011 Free Software
18
+# Foundation, Inc.
19
 #
20
 # This file is free software; the Free Software Foundation
21
 # gives unlimited permission to copy and/or distribute it,
22
 # with or without modifications, as long as this notice is preserved.
23
 
24
+# serial 1
25
+
26
 # AM_AUTOMAKE_VERSION(VERSION)
27
 # ----------------------------
28
 # Automake X.Y traces this macro to ensure aclocal.m4 has been
29
@@ -194,7 +198,7 @@
30
 [am__api_version='1.11'
31
 dnl Some users find AM_AUTOMAKE_VERSION and mistake it for a way to
32
 dnl require some minimum version.  Point them to the right macro.
33
-m4_if([$1], [1.11.1], [],
34
+m4_if([$1], [1.11.3], [],
35
       [AC_FATAL([Do not call $0, use AM_INIT_AUTOMAKE([$1]).])])dnl
36
 ])
37
 
38
@@ -210,19 +214,21 @@
39
 # Call AM_AUTOMAKE_VERSION and AM_AUTOMAKE_VERSION so they can be traced.
40
 # This function is AC_REQUIREd by AM_INIT_AUTOMAKE.
41
 AC_DEFUN([AM_SET_CURRENT_AUTOMAKE_VERSION],
42
-[AM_AUTOMAKE_VERSION([1.11.1])dnl
43
+[AM_AUTOMAKE_VERSION([1.11.3])dnl
44
 m4_ifndef([AC_AUTOCONF_VERSION],
45
   [m4_copy([m4_PACKAGE_VERSION], [AC_AUTOCONF_VERSION])])dnl
46
 _AM_AUTOCONF_VERSION(m4_defn([AC_AUTOCONF_VERSION]))])
47
 
48
 # AM_AUX_DIR_EXPAND                                         -*- Autoconf -*-
49
 
50
-# Copyright (C) 2001, 2003, 2005  Free Software Foundation, Inc.
51
+# Copyright (C) 2001, 2003, 2005, 2011 Free Software Foundation, Inc.
52
 #
53
 # This file is free software; the Free Software Foundation
54
 # gives unlimited permission to copy and/or distribute it,
55
 # with or without modifications, as long as this notice is preserved.
56
 
57
+# serial 1
58
+
59
 # For projects using AC_CONFIG_AUX_DIR([foo]), Autoconf sets
60
 # $ac_aux_dir to `$srcdir/foo'.  In other projects, it is set to
61
 # `$srcdir', `$srcdir/..', or `$srcdir/../..'.
62
@@ -304,14 +310,14 @@
63
 Usually this means the macro was only invoked conditionally.]])
64
 fi])])
65
 
66
-# Copyright (C) 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2009
67
-# Free Software Foundation, Inc.
68
+# Copyright (C) 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2009,
69
+# 2010, 2011 Free Software Foundation, Inc.
70
 #
71
 # This file is free software; the Free Software Foundation
72
 # gives unlimited permission to copy and/or distribute it,
73
 # with or without modifications, as long as this notice is preserved.
74
 
75
-# serial 10
76
+# serial 12
77
 
78
 # There are a few dirty hacks below to avoid letting `AC_PROG_CC' be
79
 # written in clear, in which case automake, when reading aclocal.m4,
80
@@ -351,6 +357,7 @@
81
   # instance it was reported that on HP-UX the gcc test will end up
82
   # making a dummy file named `D' -- because `-MD' means `put the output
83
   # in D'.
84
+  rm -rf conftest.dir
85
   mkdir conftest.dir
86
   # Copy depcomp to subdir because otherwise we won't find it if we're
87
   # using a relative directory.
88
@@ -415,7 +422,7 @@
89
    break
90
       fi
91
       ;;
92
-    msvisualcpp | msvcmsys)
93
+    msvc7 | msvc7msys | msvisualcpp | msvcmsys)
94
       # This compiler won't grok `-c -o', but also, the minuso test has
95
       # not run yet.  These depmodes are late enough in the game, and
96
       # so weak that their functioning should not be impacted.
97
@@ -480,10 +487,13 @@
98
 if test "x$enable_dependency_tracking" != xno; then
99
   am_depcomp="$ac_aux_dir/depcomp"
100
   AMDEPBACKSLASH='\'
101
+  am__nodep='_no'
102
 fi
103
 AM_CONDITIONAL([AMDEP], [test "x$enable_dependency_tracking" != xno])
104
 AC_SUBST([AMDEPBACKSLASH])dnl
105
 _AM_SUBST_NOTMAKE([AMDEPBACKSLASH])dnl
106
+AC_SUBST([am__nodep])dnl
107
+_AM_SUBST_NOTMAKE([am__nodep])dnl
108
 ])
109
 
110
 # Generate code to set up dependency tracking.              -*- Autoconf -*-
111
@@ -705,12 +715,15 @@
112
 done
113
 echo "timestamp for $_am_arg" >`AS_DIRNAME(["$_am_arg"])`/stamp-h[]$_am_stamp_count])
114
 
115
-# Copyright (C) 2001, 2003, 2005, 2008  Free Software Foundation, Inc.
116
+# Copyright (C) 2001, 2003, 2005, 2008, 2011 Free Software Foundation,
117
+# Inc.
118
 #
119
 # This file is free software; the Free Software Foundation
120
 # gives unlimited permission to copy and/or distribute it,
121
 # with or without modifications, as long as this notice is preserved.
122
 
123
+# serial 1
124
+
125
 # AM_PROG_INSTALL_SH
126
 # ------------------
127
 # Define $install_sh.
128
@@ -842,12 +855,15 @@
129
 fi
130
 ])
131
 
132
-# Copyright (C) 2003, 2004, 2005, 2006  Free Software Foundation, Inc.
133
+# Copyright (C) 2003, 2004, 2005, 2006, 2011 Free Software Foundation,
134
+# Inc.
135
 #
136
 # This file is free software; the Free Software Foundation
137
 # gives unlimited permission to copy and/or distribute it,
138
 # with or without modifications, as long as this notice is preserved.
139
 
140
+# serial 1
141
+
142
 # AM_PROG_MKDIR_P
143
 # ---------------
144
 # Check for `mkdir -p'.
145
@@ -870,13 +886,14 @@
146
 
147
 # Helper functions for option handling.                     -*- Autoconf -*-
148
 
149
-# Copyright (C) 2001, 2002, 2003, 2005, 2008  Free Software Foundation, Inc.
150
+# Copyright (C) 2001, 2002, 2003, 2005, 2008, 2010 Free Software
151
+# Foundation, Inc.
152
 #
153
 # This file is free software; the Free Software Foundation
154
 # gives unlimited permission to copy and/or distribute it,
155
 # with or without modifications, as long as this notice is preserved.
156
 
157
-# serial 4
158
+# serial 5
159
 
160
 # _AM_MANGLE_OPTION(NAME)
161
 # -----------------------
162
@@ -884,13 +901,13 @@
163
 [[_AM_OPTION_]m4_bpatsubst($1, [[^a-zA-Z0-9_]], [_])])
164
 
165
 # _AM_SET_OPTION(NAME)
166
-# ------------------------------
167
+# --------------------
168
 # Set option NAME.  Presently that only means defining a flag for this option.
169
 AC_DEFUN([_AM_SET_OPTION],
170
 [m4_define(_AM_MANGLE_OPTION([$1]), 1)])
171
 
172
 # _AM_SET_OPTIONS(OPTIONS)
173
-# ----------------------------------
174
+# ------------------------
175
 # OPTIONS is a space-separated list of Automake options.
176
 AC_DEFUN([_AM_SET_OPTIONS],
177
 [m4_foreach_w([_AM_Option], [$1], [_AM_SET_OPTION(_AM_Option)])])
178
@@ -966,13 +983,13 @@
179
 fi
180
 AC_MSG_RESULT(yes)])
181
 
182
-# Copyright (C) 2009  Free Software Foundation, Inc.
183
+# Copyright (C) 2009, 2011  Free Software Foundation, Inc.
184
 #
185
 # This file is free software; the Free Software Foundation
186
 # gives unlimited permission to copy and/or distribute it,
187
 # with or without modifications, as long as this notice is preserved.
188
 
189
-# serial 1
190
+# serial 2
191
 
192
 # AM_SILENT_RULES([DEFAULT])
193
 # --------------------------
194
@@ -987,18 +1004,50 @@
195
 no)  AM_DEFAULT_VERBOSITY=1;;
196
 *)   AM_DEFAULT_VERBOSITY=m4_if([$1], [yes], [0], [1]);;
197
 esac
198
+dnl
199
+dnl A few `make' implementations (e.g., NonStop OS and NextStep)
200
+dnl do not support nested variable expansions.
201
+dnl See automake bug#9928 and bug#10237.
202
+am_make=${MAKE-make}
203
+AC_CACHE_CHECK([whether $am_make supports nested variables],
204
+   [am_cv_make_support_nested_variables],
205
+   [if AS_ECHO([['TRUE=$(BAR$(V))
206
+BAR0=false
207
+BAR1=true
208
+V=1
209
+am__doit:
210
+   @$(TRUE)
211
+.PHONY: am__doit']]) | $am_make -f - >/dev/null 2>&1; then
212
+  am_cv_make_support_nested_variables=yes
213
+else
214
+  am_cv_make_support_nested_variables=no
215
+fi])
216
+if test $am_cv_make_support_nested_variables = yes; then
217
+  dnl Using `$V' instead of `$(V)' breaks IRIX make.
218
+  AM_V='$(V)'
219
+  AM_DEFAULT_V='$(AM_DEFAULT_VERBOSITY)'
220
+else
221
+  AM_V=$AM_DEFAULT_VERBOSITY
222
+  AM_DEFAULT_V=$AM_DEFAULT_VERBOSITY
223
+fi
224
+AC_SUBST([AM_V])dnl
225
+AM_SUBST_NOTMAKE([AM_V])dnl
226
+AC_SUBST([AM_DEFAULT_V])dnl
227
+AM_SUBST_NOTMAKE([AM_DEFAULT_V])dnl
228
 AC_SUBST([AM_DEFAULT_VERBOSITY])dnl
229
 AM_BACKSLASH='\'
230
 AC_SUBST([AM_BACKSLASH])dnl
231
 _AM_SUBST_NOTMAKE([AM_BACKSLASH])dnl
232
 ])
233
 
234
-# Copyright (C) 2001, 2003, 2005  Free Software Foundation, Inc.
235
+# Copyright (C) 2001, 2003, 2005, 2011 Free Software Foundation, Inc.
236
 #
237
 # This file is free software; the Free Software Foundation
238
 # gives unlimited permission to copy and/or distribute it,
239
 # with or without modifications, as long as this notice is preserved.
240
 
241
+# serial 1
242
+
243
 # AM_PROG_INSTALL_STRIP
244
 # ---------------------
245
 # One issue with vendor `install' (even GNU) is that you can't
246
@@ -1021,13 +1070,13 @@
247
 INSTALL_STRIP_PROGRAM="\$(install_sh) -c -s"
248
 AC_SUBST([INSTALL_STRIP_PROGRAM])])
249
 
250
-# Copyright (C) 2006, 2008  Free Software Foundation, Inc.
251
+# Copyright (C) 2006, 2008, 2010 Free Software Foundation, Inc.
252
 #
253
 # This file is free software; the Free Software Foundation
254
 # gives unlimited permission to copy and/or distribute it,
255
 # with or without modifications, as long as this notice is preserved.
256
 
257
-# serial 2
258
+# serial 3
259
 
260
 # _AM_SUBST_NOTMAKE(VARIABLE)
261
 # ---------------------------
262
@@ -1036,13 +1085,13 @@
263
 AC_DEFUN([_AM_SUBST_NOTMAKE])
264
 
265
 # AM_SUBST_NOTMAKE(VARIABLE)
266
-# ---------------------------
267
+# --------------------------
268
 # Public sister of _AM_SUBST_NOTMAKE.
269
 AC_DEFUN([AM_SUBST_NOTMAKE], [_AM_SUBST_NOTMAKE($@)])
270
 
271
 # Check how to create a tarball.                            -*- Autoconf -*-
272
 
273
-# Copyright (C) 2004, 2005  Free Software Foundation, Inc.
274
+# Copyright (C) 2004, 2005, 2012 Free Software Foundation, Inc.
275
 #
276
 # This file is free software; the Free Software Foundation
277
 # gives unlimited permission to copy and/or distribute it,
278
@@ -1064,10 +1113,11 @@
279
 # a tarball read from stdin.
280
 #     $(am__untar) < result.tar
281
 AC_DEFUN([_AM_PROG_TAR],
282
-[# Always define AMTAR for backward compatibility.
283
-AM_MISSING_PROG([AMTAR], [tar])
284
+[# Always define AMTAR for backward compatibility.  Yes, it's still used
285
+# in the wild :-(  We should find a proper way to deprecate it ...
286
+AC_SUBST([AMTAR], ['$${TAR-tar}'])
287
 m4_if([$1], [v7],
288
-     [am__tar='${AMTAR} chof - "$$tardir"'; am__untar='${AMTAR} xf -'],
289
+     [am__tar='$${TAR-tar} chof - "$$tardir"' am__untar='$${TAR-tar} xf -'],
290
      [m4_case([$1], [ustar],, [pax],,
291
               [m4_fatal([Unknown tar format])])
292
 AC_MSG_CHECKING([how to create a $1 tar archive])
293
cclive-0.7.8.tar.bz2/config.aux/config.guess -> cclive-0.7.9.tar.bz2/config.aux/config.guess Changed
523
 
1
@@ -1,10 +1,10 @@
2
 #! /bin/sh
3
 # Attempt to guess a canonical system name.
4
 #   Copyright (C) 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999,
5
-#   2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009
6
-#   Free Software Foundation, Inc.
7
+#   2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010,
8
+#   2011, 2012 Free Software Foundation, Inc.
9
 
10
-timestamp='2009-11-20'
11
+timestamp='2012-01-01'
12
 
13
 # This file is free software; you can redistribute it and/or modify it
14
 # under the terms of the GNU General Public License as published by
15
@@ -56,8 +56,9 @@
16
 GNU config.guess ($timestamp)
17
 
18
 Originally written by Per Bothner.
19
-Copyright (C) 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001,
20
-2002, 2003, 2004, 2005, 2006, 2007, 2008 Free Software Foundation, Inc.
21
+Copyright (C) 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999, 2000,
22
+2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011, 2012
23
+Free Software Foundation, Inc.
24
 
25
 This is free software; see the source for copying conditions.  There is NO
26
 warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE."
27
@@ -144,7 +145,7 @@
28
 case "${UNAME_MACHINE}:${UNAME_SYSTEM}:${UNAME_RELEASE}:${UNAME_VERSION}" in
29
     *:NetBSD:*:*)
30
    # NetBSD (nbsd) targets should (where applicable) match one or
31
-   # more of the tupples: *-*-netbsdelf*, *-*-netbsdaout*,
32
+   # more of the tuples: *-*-netbsdelf*, *-*-netbsdaout*,
33
    # *-*-netbsdecoff* and *-*-netbsd*.  For targets that recently
34
    # switched to ELF, *-*-netbsd* would select the old
35
    # object file format.  This provides both forward
36
@@ -180,7 +181,7 @@
37
        fi
38
        ;;
39
        *)
40
-           os=netbsd
41
+       os=netbsd
42
        ;;
43
    esac
44
    # The OS release
45
@@ -223,7 +224,7 @@
46
        UNAME_RELEASE=`/usr/sbin/sizer -v | awk '{print $3}'`
47
        ;;
48
    *5.*)
49
-           UNAME_RELEASE=`/usr/sbin/sizer -v | awk '{print $4}'`
50
+       UNAME_RELEASE=`/usr/sbin/sizer -v | awk '{print $4}'`
51
        ;;
52
    esac
53
    # According to Compaq, /usr/sbin/psrinfo has been available on
54
@@ -269,7 +270,10 @@
55
    # A Xn.n version is an unreleased experimental baselevel.
56
    # 1.2 uses "1.2" for uname -r.
57
    echo ${UNAME_MACHINE}-dec-osf`echo ${UNAME_RELEASE} | sed -e 's/^[PVTX]//' | tr 'ABCDEFGHIJKLMNOPQRSTUVWXYZ' 'abcdefghijklmnopqrstuvwxyz'`
58
-   exit ;;
59
+   # Reset EXIT trap before exiting to avoid spurious non-zero exit code.
60
+   exitcode=$?
61
+   trap '' 0
62
+   exit $exitcode ;;
63
     Alpha\ *:Windows_NT*:*)
64
    # How do we know it's Interix rather than the generic POSIX subsystem?
65
    # Should we change UNAME_MACHINE based on the output of uname instead
66
@@ -295,7 +299,7 @@
67
    echo s390-ibm-zvmoe
68
    exit ;;
69
     *:OS400:*:*)
70
-        echo powerpc-ibm-os400
71
+   echo powerpc-ibm-os400
72
    exit ;;
73
     arm:RISC*:1.[012]*:*|arm:riscix:1.[012]*:*)
74
    echo arm-acorn-riscix${UNAME_RELEASE}
75
@@ -394,23 +398,23 @@
76
     # MiNT.  But MiNT is downward compatible to TOS, so this should
77
     # be no problem.
78
     atarist[e]:*MiNT:*:* | atarist[e]:*mint:*:* | atarist[e]:*TOS:*:*)
79
-        echo m68k-atari-mint${UNAME_RELEASE}
80
+   echo m68k-atari-mint${UNAME_RELEASE}
81
    exit ;;
82
     atari*:*MiNT:*:* | atari*:*mint:*:* | atarist[e]:*TOS:*:*)
83
    echo m68k-atari-mint${UNAME_RELEASE}
84
-        exit ;;
85
+   exit ;;
86
     *falcon*:*MiNT:*:* | *falcon*:*mint:*:* | *falcon*:*TOS:*:*)
87
-        echo m68k-atari-mint${UNAME_RELEASE}
88
+   echo m68k-atari-mint${UNAME_RELEASE}
89
    exit ;;
90
     milan*:*MiNT:*:* | milan*:*mint:*:* | *milan*:*TOS:*:*)
91
-        echo m68k-milan-mint${UNAME_RELEASE}
92
-        exit ;;
93
+   echo m68k-milan-mint${UNAME_RELEASE}
94
+   exit ;;
95
     hades*:*MiNT:*:* | hades*:*mint:*:* | *hades*:*TOS:*:*)
96
-        echo m68k-hades-mint${UNAME_RELEASE}
97
-        exit ;;
98
+   echo m68k-hades-mint${UNAME_RELEASE}
99
+   exit ;;
100
     *:*MiNT:*:* | *:*mint:*:* | *:*TOS:*:*)
101
-        echo m68k-unknown-mint${UNAME_RELEASE}
102
-        exit ;;
103
+   echo m68k-unknown-mint${UNAME_RELEASE}
104
+   exit ;;
105
     m68k:machten:*:*)
106
    echo m68k-apple-machten${UNAME_RELEASE}
107
    exit ;;
108
@@ -480,8 +484,8 @@
109
    echo m88k-motorola-sysv3
110
    exit ;;
111
     AViiON:dgux:*:*)
112
-        # DG/UX returns AViiON for all architectures
113
-        UNAME_PROCESSOR=`/usr/bin/uname -p`
114
+   # DG/UX returns AViiON for all architectures
115
+   UNAME_PROCESSOR=`/usr/bin/uname -p`
116
    if [ $UNAME_PROCESSOR = mc88100 ] || [ $UNAME_PROCESSOR = mc88110 ]
117
    then
118
        if [ ${TARGET_BINARY_INTERFACE}x = m88kdguxelfx ] || \
119
@@ -494,7 +498,7 @@
120
    else
121
        echo i586-dg-dgux${UNAME_RELEASE}
122
    fi
123
-   exit ;;
124
+   exit ;;
125
     M88*:DolphinOS:*:*)    # DolphinOS (SVR3)
126
    echo m88k-dolphin-sysv3
127
    exit ;;
128
@@ -551,7 +555,7 @@
129
        echo rs6000-ibm-aix3.2
130
    fi
131
    exit ;;
132
-    *:AIX:*:[456])
133
+    *:AIX:*:[4567])
134
    IBM_CPU_ID=`/usr/sbin/lsdev -C -c processor -S available | sed 1q | awk '{ print $1 }'`
135
    if /usr/sbin/lsattr -El ${IBM_CPU_ID} | grep ' POWER' >/dev/null 2>&1; then
136
        IBM_ARCH=rs6000
137
@@ -594,52 +598,52 @@
138
        9000/[678][0-9][0-9])
139
        if [ -x /usr/bin/getconf ]; then
140
            sc_cpu_version=`/usr/bin/getconf SC_CPU_VERSION 2>/dev/null`
141
-                    sc_kernel_bits=`/usr/bin/getconf SC_KERNEL_BITS 2>/dev/null`
142
-                    case "${sc_cpu_version}" in
143
-                      523) HP_ARCH="hppa1.0" ;; # CPU_PA_RISC1_0
144
-                      528) HP_ARCH="hppa1.1" ;; # CPU_PA_RISC1_1
145
-                      532)                      # CPU_PA_RISC2_0
146
-                        case "${sc_kernel_bits}" in
147
-                          32) HP_ARCH="hppa2.0n" ;;
148
-                          64) HP_ARCH="hppa2.0w" ;;
149
+           sc_kernel_bits=`/usr/bin/getconf SC_KERNEL_BITS 2>/dev/null`
150
+           case "${sc_cpu_version}" in
151
+             523) HP_ARCH="hppa1.0" ;; # CPU_PA_RISC1_0
152
+             528) HP_ARCH="hppa1.1" ;; # CPU_PA_RISC1_1
153
+             532)                      # CPU_PA_RISC2_0
154
+           case "${sc_kernel_bits}" in
155
+             32) HP_ARCH="hppa2.0n" ;;
156
+             64) HP_ARCH="hppa2.0w" ;;
157
              '') HP_ARCH="hppa2.0" ;;   # HP-UX 10.20
158
-                        esac ;;
159
-                    esac
160
+           esac ;;
161
+           esac
162
        fi
163
        if [ "${HP_ARCH}" = "" ]; then
164
            eval $set_cc_for_build
165
-           sed 's/^              //' << EOF >$dummy.c
166
+           sed 's/^        //' << EOF >$dummy.c
167
 
168
-              #define _HPUX_SOURCE
169
-              #include <stdlib.h>
170
-              #include <unistd.h>
171
+       #define _HPUX_SOURCE
172
+       #include <stdlib.h>
173
+       #include <unistd.h>
174
 
175
-              int main ()
176
-              {
177
-              #if defined(_SC_KERNEL_BITS)
178
-                  long bits = sysconf(_SC_KERNEL_BITS);
179
-              #endif
180
-                  long cpu  = sysconf (_SC_CPU_VERSION);
181
+       int main ()
182
+       {
183
+       #if defined(_SC_KERNEL_BITS)
184
+           long bits = sysconf(_SC_KERNEL_BITS);
185
+       #endif
186
+           long cpu  = sysconf (_SC_CPU_VERSION);
187
 
188
-                  switch (cpu)
189
-               {
190
-               case CPU_PA_RISC1_0: puts ("hppa1.0"); break;
191
-               case CPU_PA_RISC1_1: puts ("hppa1.1"); break;
192
-               case CPU_PA_RISC2_0:
193
-              #if defined(_SC_KERNEL_BITS)
194
-                   switch (bits)
195
-                   {
196
-                   case 64: puts ("hppa2.0w"); break;
197
-                   case 32: puts ("hppa2.0n"); break;
198
-                   default: puts ("hppa2.0"); break;
199
-                   } break;
200
-              #else  /* !defined(_SC_KERNEL_BITS) */
201
-                   puts ("hppa2.0"); break;
202
-              #endif
203
-               default: puts ("hppa1.0"); break;
204
-               }
205
-                  exit (0);
206
-              }
207
+           switch (cpu)
208
+           {
209
+           case CPU_PA_RISC1_0: puts ("hppa1.0"); break;
210
+           case CPU_PA_RISC1_1: puts ("hppa1.1"); break;
211
+           case CPU_PA_RISC2_0:
212
+       #if defined(_SC_KERNEL_BITS)
213
+               switch (bits)
214
+               {
215
+               case 64: puts ("hppa2.0w"); break;
216
+               case 32: puts ("hppa2.0n"); break;
217
+               default: puts ("hppa2.0"); break;
218
+               } break;
219
+       #else  /* !defined(_SC_KERNEL_BITS) */
220
+               puts ("hppa2.0"); break;
221
+       #endif
222
+           default: puts ("hppa1.0"); break;
223
+           }
224
+           exit (0);
225
+       }
226
 EOF
227
            (CCOPTS= $CC_FOR_BUILD -o $dummy $dummy.c 2>/dev/null) && HP_ARCH=`$dummy`
228
            test -z "$HP_ARCH" && HP_ARCH=hppa
229
@@ -730,22 +734,22 @@
230
    exit ;;
231
     C1*:ConvexOS:*:* | convex:ConvexOS:C1*:*)
232
    echo c1-convex-bsd
233
-        exit ;;
234
+   exit ;;
235
     C2*:ConvexOS:*:* | convex:ConvexOS:C2*:*)
236
    if getsysinfo -f scalar_acc
237
    then echo c32-convex-bsd
238
    else echo c2-convex-bsd
239
    fi
240
-        exit ;;
241
+   exit ;;
242
     C34*:ConvexOS:*:* | convex:ConvexOS:C34*:*)
243
    echo c34-convex-bsd
244
-        exit ;;
245
+   exit ;;
246
     C38*:ConvexOS:*:* | convex:ConvexOS:C38*:*)
247
    echo c38-convex-bsd
248
-        exit ;;
249
+   exit ;;
250
     C4*:ConvexOS:*:* | convex:ConvexOS:C4*:*)
251
    echo c4-convex-bsd
252
-        exit ;;
253
+   exit ;;
254
     CRAY*Y-MP:*:*:*)
255
    echo ymp-cray-unicos${UNAME_RELEASE} | sed -e 's/\.[^.]*$/.X/'
256
    exit ;;
257
@@ -769,14 +773,14 @@
258
    exit ;;
259
     F30[01]:UNIX_System_V:*:* | F700:UNIX_System_V:*:*)
260
    FUJITSU_PROC=`uname -m | tr 'ABCDEFGHIJKLMNOPQRSTUVWXYZ' 'abcdefghijklmnopqrstuvwxyz'`
261
-        FUJITSU_SYS=`uname -p | tr 'ABCDEFGHIJKLMNOPQRSTUVWXYZ' 'abcdefghijklmnopqrstuvwxyz' | sed -e 's/\///'`
262
-        FUJITSU_REL=`echo ${UNAME_RELEASE} | sed -e 's/ /_/'`
263
-        echo "${FUJITSU_PROC}-fujitsu-${FUJITSU_SYS}${FUJITSU_REL}"
264
-        exit ;;
265
+   FUJITSU_SYS=`uname -p | tr 'ABCDEFGHIJKLMNOPQRSTUVWXYZ' 'abcdefghijklmnopqrstuvwxyz' | sed -e 's/\///'`
266
+   FUJITSU_REL=`echo ${UNAME_RELEASE} | sed -e 's/ /_/'`
267
+   echo "${FUJITSU_PROC}-fujitsu-${FUJITSU_SYS}${FUJITSU_REL}"
268
+   exit ;;
269
     5000:UNIX_System_V:4.*:*)
270
-        FUJITSU_SYS=`uname -p | tr 'ABCDEFGHIJKLMNOPQRSTUVWXYZ' 'abcdefghijklmnopqrstuvwxyz' | sed -e 's/\///'`
271
-        FUJITSU_REL=`echo ${UNAME_RELEASE} | tr 'ABCDEFGHIJKLMNOPQRSTUVWXYZ' 'abcdefghijklmnopqrstuvwxyz' | sed -e 's/ /_/'`
272
-        echo "sparc-fujitsu-${FUJITSU_SYS}${FUJITSU_REL}"
273
+   FUJITSU_SYS=`uname -p | tr 'ABCDEFGHIJKLMNOPQRSTUVWXYZ' 'abcdefghijklmnopqrstuvwxyz' | sed -e 's/\///'`
274
+   FUJITSU_REL=`echo ${UNAME_RELEASE} | tr 'ABCDEFGHIJKLMNOPQRSTUVWXYZ' 'abcdefghijklmnopqrstuvwxyz' | sed -e 's/ /_/'`
275
+   echo "sparc-fujitsu-${FUJITSU_SYS}${FUJITSU_REL}"
276
    exit ;;
277
     i*86:BSD/386:*:* | i*86:BSD/OS:*:* | *:Ascend\ Embedded/OS:*:*)
278
    echo ${UNAME_MACHINE}-pc-bsdi${UNAME_RELEASE}
279
@@ -788,13 +792,12 @@
280
    echo ${UNAME_MACHINE}-unknown-bsdi${UNAME_RELEASE}
281
    exit ;;
282
     *:FreeBSD:*:*)
283
-   case ${UNAME_MACHINE} in
284
-       pc98)
285
-       echo i386-unknown-freebsd`echo ${UNAME_RELEASE}|sed -e 's/[-(].*//'` ;;
286
+   UNAME_PROCESSOR=`/usr/bin/uname -p`
287
+   case ${UNAME_PROCESSOR} in
288
        amd64)
289
        echo x86_64-unknown-freebsd`echo ${UNAME_RELEASE}|sed -e 's/[-(].*//'` ;;
290
        *)
291
-       echo ${UNAME_MACHINE}-unknown-freebsd`echo ${UNAME_RELEASE}|sed -e 's/[-(].*//'` ;;
292
+       echo ${UNAME_PROCESSOR}-unknown-freebsd`echo ${UNAME_RELEASE}|sed -e 's/[-(].*//'` ;;
293
    esac
294
    exit ;;
295
     i*:CYGWIN*:*)
296
@@ -803,15 +806,18 @@
297
     *:MINGW*:*)
298
    echo ${UNAME_MACHINE}-pc-mingw32
299
    exit ;;
300
+    i*:MSYS*:*)
301
+   echo ${UNAME_MACHINE}-pc-msys
302
+   exit ;;
303
     i*:windows32*:*)
304
-       # uname -m includes "-pc" on this system.
305
-       echo ${UNAME_MACHINE}-mingw32
306
+   # uname -m includes "-pc" on this system.
307
+   echo ${UNAME_MACHINE}-mingw32
308
    exit ;;
309
     i*:PW*:*)
310
    echo ${UNAME_MACHINE}-pc-pw32
311
    exit ;;
312
     *:Interix*:*)
313
-       case ${UNAME_MACHINE} in
314
+   case ${UNAME_MACHINE} in
315
        x86)
316
        echo i586-pc-interix${UNAME_RELEASE}
317
        exit ;;
318
@@ -866,7 +872,7 @@
319
      EV6)   UNAME_MACHINE=alphaev6 ;;
320
      EV67)  UNAME_MACHINE=alphaev67 ;;
321
      EV68*) UNAME_MACHINE=alphaev68 ;;
322
-        esac
323
+   esac
324
    objdump --private-headers /bin/sh | grep -q ld.so.1
325
    if test "$?" = 0 ; then LIBC="libc1" ; else LIBC="" ; fi
326
    echo ${UNAME_MACHINE}-unknown-linux-gnu${LIBC}
327
@@ -878,20 +884,29 @@
328
    then
329
        echo ${UNAME_MACHINE}-unknown-linux-gnu
330
    else
331
-       echo ${UNAME_MACHINE}-unknown-linux-gnueabi
332
+       if echo __ARM_PCS_VFP | $CC_FOR_BUILD -E - 2>/dev/null \
333
+       | grep -q __ARM_PCS_VFP
334
+       then
335
+       echo ${UNAME_MACHINE}-unknown-linux-gnueabi
336
+       else
337
+       echo ${UNAME_MACHINE}-unknown-linux-gnueabihf
338
+       fi
339
    fi
340
    exit ;;
341
     avr32*:Linux:*:*)
342
    echo ${UNAME_MACHINE}-unknown-linux-gnu
343
    exit ;;
344
     cris:Linux:*:*)
345
-   echo cris-axis-linux-gnu
346
+   echo ${UNAME_MACHINE}-axis-linux-gnu
347
    exit ;;
348
     crisv32:Linux:*:*)
349
-   echo crisv32-axis-linux-gnu
350
+   echo ${UNAME_MACHINE}-axis-linux-gnu
351
    exit ;;
352
     frv:Linux:*:*)
353
-       echo frv-unknown-linux-gnu
354
+   echo ${UNAME_MACHINE}-unknown-linux-gnu
355
+   exit ;;
356
+    hexagon:Linux:*:*)
357
+   echo ${UNAME_MACHINE}-unknown-linux-gnu
358
    exit ;;
359
     i*86:Linux:*:*)
360
    LIBC=gnu
361
@@ -933,7 +948,7 @@
362
    test x"${CPU}" != x && { echo "${CPU}-unknown-linux-gnu"; exit; }
363
    ;;
364
     or32:Linux:*:*)
365
-   echo or32-unknown-linux-gnu
366
+   echo ${UNAME_MACHINE}-unknown-linux-gnu
367
    exit ;;
368
     padre:Linux:*:*)
369
    echo sparc-unknown-linux-gnu
370
@@ -959,7 +974,7 @@
371
    echo ${UNAME_MACHINE}-ibm-linux
372
    exit ;;
373
     sh64*:Linux:*:*)
374
-       echo ${UNAME_MACHINE}-unknown-linux-gnu
375
+   echo ${UNAME_MACHINE}-unknown-linux-gnu
376
    exit ;;
377
     sh*:Linux:*:*)
378
    echo ${UNAME_MACHINE}-unknown-linux-gnu
379
@@ -967,14 +982,17 @@
380
     sparc:Linux:*:* | sparc64:Linux:*:*)
381
    echo ${UNAME_MACHINE}-unknown-linux-gnu
382
    exit ;;
383
+    tile*:Linux:*:*)
384
+   echo ${UNAME_MACHINE}-unknown-linux-gnu
385
+   exit ;;
386
     vax:Linux:*:*)
387
    echo ${UNAME_MACHINE}-dec-linux-gnu
388
    exit ;;
389
     x86_64:Linux:*:*)
390
-   echo x86_64-unknown-linux-gnu
391
+   echo ${UNAME_MACHINE}-unknown-linux-gnu
392
    exit ;;
393
     xtensa*:Linux:*:*)
394
-       echo ${UNAME_MACHINE}-unknown-linux-gnu
395
+   echo ${UNAME_MACHINE}-unknown-linux-gnu
396
    exit ;;
397
     i*86:DYNIX/ptx:4*:*)
398
    # ptx 4.0 does uname -s correctly, with DYNIX/ptx in there.
399
@@ -983,11 +1001,11 @@
400
    echo i386-sequent-sysv4
401
    exit ;;
402
     i*86:UNIX_SV:4.2MP:2.*)
403
-        # Unixware is an offshoot of SVR4, but it has its own version
404
-        # number series starting with 2...
405
-        # I am not positive that other SVR4 systems won't match this,
406
+   # Unixware is an offshoot of SVR4, but it has its own version
407
+   # number series starting with 2...
408
+   # I am not positive that other SVR4 systems won't match this,
409
    # I just have to hope.  -- rms.
410
-        # Use sysv4.2uw... so that sysv4* matches it.
411
+   # Use sysv4.2uw... so that sysv4* matches it.
412
    echo ${UNAME_MACHINE}-pc-sysv4.2uw${UNAME_VERSION}
413
    exit ;;
414
     i*86:OS/2:*:*)
415
@@ -1019,7 +1037,7 @@
416
    fi
417
    exit ;;
418
     i*86:*:5:[678]*)
419
-       # UnixWare 7.x, OpenUNIX and OpenServer 6.
420
+   # UnixWare 7.x, OpenUNIX and OpenServer 6.
421
    case `/bin/uname -X | grep "^Machine"` in
422
        *486*)       UNAME_MACHINE=i486 ;;
423
        *Pentium)        UNAME_MACHINE=i586 ;;
424
@@ -1047,13 +1065,13 @@
425
    exit ;;
426
     pc:*:*:*)
427
    # Left here for compatibility:
428
-        # uname -m prints for DJGPP always 'pc', but it prints nothing about
429
-        # the processor, so we play safe by assuming i586.
430
+   # uname -m prints for DJGPP always 'pc', but it prints nothing about
431
+   # the processor, so we play safe by assuming i586.
432
    # Note: whatever this is, it MUST be the same as what config.sub
433
    # prints for the "djgpp" host, or else GDB configury will decide that
434
    # this is a cross-build.
435
    echo i586-pc-msdosdjgpp
436
-        exit ;;
437
+   exit ;;
438
     Intel:Mach:3*:*)
439
    echo i386-pc-mach3
440
    exit ;;
441
@@ -1088,8 +1106,8 @@
442
    /bin/uname -p 2>/dev/null | /bin/grep entium >/dev/null \
443
      && { echo i586-ncr-sysv4.3${OS_REL}; exit; } ;;
444
     3[34]??:*:4.0:* | 3[34]??,*:*:4.0:*)
445
-        /bin/uname -p 2>/dev/null | grep 86 >/dev/null \
446
-          && { echo i486-ncr-sysv4; exit; } ;;
447
+   /bin/uname -p 2>/dev/null | grep 86 >/dev/null \
448
+     && { echo i486-ncr-sysv4; exit; } ;;
449
     NCR*:*:4.2:* | MPRAS*:*:4.2:*)
450
    OS_REL='.3'
451
    test -r /etc/.relid \
452
@@ -1132,10 +1150,10 @@
453
        echo ns32k-sni-sysv
454
    fi
455
    exit ;;
456
-    PENTIUM:*:4.0*:*) # Unisys `ClearPath HMP IX 4000' SVR4/MP effort
457
-                      # says <Richard.M.Bartel@ccMail.Census.GOV>
458
-        echo i586-unisys-sysv4
459
-        exit ;;
460
+    PENTIUM:*:4.0*:*)  # Unisys `ClearPath HMP IX 4000' SVR4/MP effort
461
+           # says <Richard.M.Bartel@ccMail.Census.GOV>
462
+   echo i586-unisys-sysv4
463
+   exit ;;
464
     *:UNIX_System_V:4*:FTX*)
465
    # From Gerald Hewes <hewes@openmarket.com>.
466
    # How about differentiating between stratus architectures? -djm
467
@@ -1161,11 +1179,11 @@
468
    exit ;;
469
     R[34]000:*System_V*:*:* | R4000:UNIX_SYSV:*:* | R*000:UNIX_SV:*:*)
470
    if [ -d /usr/nec ]; then
471
-           echo mips-nec-sysv${UNAME_RELEASE}
472
+       echo mips-nec-sysv${UNAME_RELEASE}
473
    else
474
-           echo mips-unknown-sysv${UNAME_RELEASE}
475
+       echo mips-unknown-sysv${UNAME_RELEASE}
476
    fi
477
-        exit ;;
478
+   exit ;;
479
     BeBox:BeOS:*:*)    # BeOS running on hardware made by Be, PPC only.
480
    echo powerpc-be-beos
481
    exit ;;
482
@@ -1230,6 +1248,9 @@
483
     *:QNX:*:4*)
484
    echo i386-pc-qnx
485
    exit ;;
486
+    NEO-?:NONSTOP_KERNEL:*:*)
487
+   echo neo-tandem-nsk${UNAME_RELEASE}
488
+   exit ;;
489
     NSE-?:NONSTOP_KERNEL:*:*)
490
    echo nse-tandem-nsk${UNAME_RELEASE}
491
    exit ;;
492
@@ -1275,13 +1296,13 @@
493
    echo pdp10-unknown-its
494
    exit ;;
495
     SEI:*:*:SEIUX)
496
-        echo mips-sei-seiux${UNAME_RELEASE}
497
+   echo mips-sei-seiux${UNAME_RELEASE}
498
    exit ;;
499
     *:DragonFly:*:*)
500
    echo ${UNAME_MACHINE}-unknown-dragonfly`echo ${UNAME_RELEASE}|sed -e 's/[-(].*//'`
501
    exit ;;
502
     *:*VMS:*:*)
503
-       UNAME_MACHINE=`(uname -p) 2>/dev/null`
504
+   UNAME_MACHINE=`(uname -p) 2>/dev/null`
505
    case "${UNAME_MACHINE}" in
506
        A*) echo alpha-dec-vms ; exit ;;
507
        I*) echo ia64-dec-vms ; exit ;;
508
@@ -1321,11 +1342,11 @@
509
 #include <sys/param.h>
510
   printf ("m68k-sony-newsos%s\n",
511
 #ifdef NEWSOS4
512
-          "4"
513
+   "4"
514
 #else
515
-     ""
516
+   ""
517
 #endif
518
-         ); exit (0);
519
+   ); exit (0);
520
 #endif
521
 #endif
522
 
523
cclive-0.7.8.tar.bz2/config.aux/config.sub -> cclive-0.7.9.tar.bz2/config.aux/config.sub Changed
463
 
1
@@ -1,10 +1,10 @@
2
 #! /bin/sh
3
 # Configuration validation subroutine script.
4
 #   Copyright (C) 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999,
5
-#   2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009
6
-#   Free Software Foundation, Inc.
7
+#   2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010,
8
+#   2011, 2012 Free Software Foundation, Inc.
9
 
10
-timestamp='2009-11-20'
11
+timestamp='2012-01-01'
12
 
13
 # This file is (in principle) common to ALL GNU software.
14
 # The presence of a machine in this file suggests that SOME GNU software
15
@@ -75,8 +75,9 @@
16
 version="\
17
 GNU config.sub ($timestamp)
18
 
19
-Copyright (C) 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001,
20
-2002, 2003, 2004, 2005, 2006, 2007, 2008 Free Software Foundation, Inc.
21
+Copyright (C) 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999, 2000,
22
+2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011, 2012
23
+Free Software Foundation, Inc.
24
 
25
 This is free software; see the source for copying conditions.  There is NO
26
 warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE."
27
@@ -123,8 +124,9 @@
28
 # Here we must recognize all the valid KERNEL-OS combinations.
29
 maybe_os=`echo $1 | sed 's/^\(.*\)-\([^-]*-[^-]*\)$/\2/'`
30
 case $maybe_os in
31
-  nto-qnx* | linux-gnu* | linux-dietlibc | linux-newlib* | linux-uclibc* | \
32
-  uclinux-uclibc* | uclinux-gnu* | kfreebsd*-gnu* | knetbsd*-gnu* | netbsd*-gnu* | \
33
+  nto-qnx* | linux-gnu* | linux-android* | linux-dietlibc | linux-newlib* | \
34
+  linux-uclibc* | uclinux-uclibc* | uclinux-gnu* | kfreebsd*-gnu* | \
35
+  knetbsd*-gnu* | netbsd*-gnu* | \
36
   kopensolaris*-gnu* | \
37
   storm-chaos* | os2-emx* | rtmk-nova*)
38
     os=-$maybe_os
39
@@ -156,8 +158,8 @@
40
        os=
41
        basic_machine=$1
42
        ;;
43
-        -bluegene*)
44
-           os=-cnk
45
+   -bluegene*)
46
+       os=-cnk
47
        ;;
48
    -sim | -cisco | -oki | -wec | -winbond)
49
        os=
50
@@ -173,10 +175,10 @@
51
        os=-chorusos
52
        basic_machine=$1
53
        ;;
54
-   -chorusrdb)
55
-       os=-chorusrdb
56
+   -chorusrdb)
57
+       os=-chorusrdb
58
        basic_machine=$1
59
-       ;;
60
+       ;;
61
    -hiux*)
62
        os=-hiuxwe2
63
        ;;
64
@@ -249,13 +251,17 @@
65
    | alpha64 | alpha64ev[4-8] | alpha64ev56 | alpha64ev6[78] | alpha64pca5[67] \
66
    | am33_2.0 \
67
    | arc | arm | arm[bl]e | arme[lb] | armv[2345] | armv[345][lb] | avr | avr32 \
68
+        | be32 | be64 \
69
    | bfin \
70
    | c4x | clipper \
71
    | d10v | d30v | dlx | dsp16xx \
72
+   | epiphany \
73
    | fido | fr30 | frv \
74
    | h8300 | h8500 | hppa | hppa1.[01] | hppa2.0 | hppa2.0[nw] | hppa64 \
75
+   | hexagon \
76
    | i370 | i860 | i960 | ia64 \
77
    | ip2k | iq2000 \
78
+   | le32 | le64 \
79
    | lm32 \
80
    | m32c | m32r | m32rle | m68000 | m68k | m88k \
81
    | maxq | mb | microblaze | mcore | mep | metag \
82
@@ -281,29 +287,39 @@
83
    | moxie \
84
    | mt \
85
    | msp430 \
86
+   | nds32 | nds32le | nds32be \
87
    | nios | nios2 \
88
    | ns16k | ns32k \
89
+   | open8 \
90
    | or32 \
91
    | pdp10 | pdp11 | pj | pjl \
92
-   | powerpc | powerpc64 | powerpc64le | powerpcle | ppcbe \
93
+   | powerpc | powerpc64 | powerpc64le | powerpcle \
94
    | pyramid \
95
-   | rx \
96
+   | rl78 | rx \
97
    | score \
98
    | sh | sh[1234] | sh[24]a | sh[24]aeb | sh[23]e | sh[34]eb | sheb | shbe | shle | sh[1234]le | sh3ele \
99
    | sh64 | sh64le \
100
    | sparc | sparc64 | sparc64b | sparc64v | sparc86x | sparclet | sparclite \
101
    | sparcv8 | sparcv9 | sparcv9b | sparcv9v \
102
-   | spu | strongarm \
103
-   | tahoe | thumb | tic4x | tic80 | tron \
104
+   | spu \
105
+   | tahoe | tic4x | tic54x | tic55x | tic6x | tic80 | tron \
106
    | ubicom32 \
107
-   | v850 | v850e \
108
+   | v850 | v850e | v850e1 | v850e2 | v850es | v850e2v3 \
109
    | we32k \
110
-   | x86 | xc16x | xscale | xscalee[bl] | xstormy16 | xtensa \
111
+   | x86 | xc16x | xstormy16 | xtensa \
112
    | z8k | z80)
113
        basic_machine=$basic_machine-unknown
114
        ;;
115
+   c54x)
116
+       basic_machine=tic54x-unknown
117
+       ;;
118
+   c55x)
119
+       basic_machine=tic55x-unknown
120
+       ;;
121
+   c6x)
122
+       basic_machine=tic6x-unknown
123
+       ;;
124
    m6811 | m68hc11 | m6812 | m68hc12 | picochip)
125
-       # Motorola 68HC11/12.
126
        basic_machine=$basic_machine-unknown
127
        os=-none
128
        ;;
129
@@ -313,6 +329,18 @@
130
        basic_machine=mt-unknown
131
        ;;
132
 
133
+   strongarm | thumb | xscale)
134
+       basic_machine=arm-unknown
135
+       ;;
136
+
137
+   xscaleeb)
138
+       basic_machine=armeb-unknown
139
+       ;;
140
+
141
+   xscaleel)
142
+       basic_machine=armel-unknown
143
+       ;;
144
+
145
    # We use `pc' rather than `unknown'
146
    # because (1) that's what they normally are, and
147
    # (2) the word "unknown" tends to confuse beginning users.
148
@@ -332,16 +360,19 @@
149
    | alphapca5[67]-* | alpha64pca5[67]-* | arc-* \
150
    | arm-*  | armbe-* | armle-* | armeb-* | armv*-* \
151
    | avr-* | avr32-* \
152
+   | be32-* | be64-* \
153
    | bfin-* | bs2000-* \
154
-   | c[123]* | c30-* | [cjt]90-* | c4x-* | c54x-* | c55x-* | c6x-* \
155
+   | c[123]* | c30-* | [cjt]90-* | c4x-* \
156
    | clipper-* | craynv-* | cydra-* \
157
    | d10v-* | d30v-* | dlx-* \
158
    | elxsi-* \
159
    | f30[01]-* | f700-* | fido-* | fr30-* | frv-* | fx80-* \
160
    | h8300-* | h8500-* \
161
    | hppa-* | hppa1.[01]-* | hppa2.0-* | hppa2.0[nw]-* | hppa64-* \
162
+   | hexagon-* \
163
    | i*86-* | i860-* | i960-* | ia64-* \
164
    | ip2k-* | iq2000-* \
165
+   | le32-* | le64-* \
166
    | lm32-* \
167
    | m32c-* | m32r-* | m32rle-* \
168
    | m68000-* | m680[012346]0-* | m68360-* | m683?2-* | m68k-* \
169
@@ -367,25 +398,29 @@
170
    | mmix-* \
171
    | mt-* \
172
    | msp430-* \
173
+   | nds32-* | nds32le-* | nds32be-* \
174
    | nios-* | nios2-* \
175
    | none-* | np1-* | ns16k-* | ns32k-* \
176
+   | open8-* \
177
    | orion-* \
178
    | pdp10-* | pdp11-* | pj-* | pjl-* | pn-* | power-* \
179
-   | powerpc-* | powerpc64-* | powerpc64le-* | powerpcle-* | ppcbe-* \
180
+   | powerpc-* | powerpc64-* | powerpc64le-* | powerpcle-* \
181
    | pyramid-* \
182
-   | romp-* | rs6000-* | rx-* \
183
+   | rl78-* | romp-* | rs6000-* | rx-* \
184
    | sh-* | sh[1234]-* | sh[24]a-* | sh[24]aeb-* | sh[23]e-* | sh[34]eb-* | sheb-* | shbe-* \
185
    | shle-* | sh[1234]le-* | sh3ele-* | sh64-* | sh64le-* \
186
    | sparc-* | sparc64-* | sparc64b-* | sparc64v-* | sparc86x-* | sparclet-* \
187
    | sparclite-* \
188
-   | sparcv8-* | sparcv9-* | sparcv9b-* | sparcv9v-* | strongarm-* | sv1-* | sx?-* \
189
-   | tahoe-* | thumb-* \
190
-   | tic30-* | tic4x-* | tic54x-* | tic55x-* | tic6x-* | tic80-* | tile-* \
191
+   | sparcv8-* | sparcv9-* | sparcv9b-* | sparcv9v-* | sv1-* | sx?-* \
192
+   | tahoe-* \
193
+   | tic30-* | tic4x-* | tic54x-* | tic55x-* | tic6x-* | tic80-* \
194
+   | tile*-* \
195
    | tron-* \
196
    | ubicom32-* \
197
-   | v850-* | v850e-* | vax-* \
198
+   | v850-* | v850e-* | v850e1-* | v850es-* | v850e2-* | v850e2v3-* \
199
+   | vax-* \
200
    | we32k-* \
201
-   | x86-* | x86_64-* | xc16x-* | xps100-* | xscale-* | xscalee[bl]-* \
202
+   | x86-* | x86_64-* | xc16x-* | xps100-* \
203
    | xstormy16-* | xtensa*-* \
204
    | ymp-* \
205
    | z8k-* | z80-*)
206
@@ -410,7 +445,7 @@
207
        basic_machine=a29k-amd
208
        os=-udi
209
        ;;
210
-       abacus)
211
+   abacus)
212
        basic_machine=abacus-unknown
213
        ;;
214
    adobe68k)
215
@@ -480,11 +515,20 @@
216
        basic_machine=powerpc-ibm
217
        os=-cnk
218
        ;;
219
+   c54x-*)
220
+       basic_machine=tic54x-`echo $basic_machine | sed 's/^[^-]*-//'`
221
+       ;;
222
+   c55x-*)
223
+       basic_machine=tic55x-`echo $basic_machine | sed 's/^[^-]*-//'`
224
+       ;;
225
+   c6x-*)
226
+       basic_machine=tic6x-`echo $basic_machine | sed 's/^[^-]*-//'`
227
+       ;;
228
    c90)
229
        basic_machine=c90-cray
230
        os=-unicos
231
        ;;
232
-        cegcc)
233
+   cegcc)
234
        basic_machine=arm-unknown
235
        os=-cegcc
236
        ;;
237
@@ -516,7 +560,7 @@
238
        basic_machine=craynv-cray
239
        os=-unicosmp
240
        ;;
241
-   cr16)
242
+   cr16 | cr16-*)
243
        basic_machine=cr16-unknown
244
        os=-elf
245
        ;;
246
@@ -674,7 +718,6 @@
247
    i370-ibm* | ibm*)
248
        basic_machine=i370-ibm
249
        ;;
250
-# I'm not sure what "Sysv32" means.  Should this be sysv3.2?
251
    i*86v32)
252
        basic_machine=`echo $1 | sed -e 's/86.*/86-pc/'`
253
        os=-sysv32
254
@@ -732,7 +775,7 @@
255
        basic_machine=ns32k-utek
256
        os=-sysv
257
        ;;
258
-        microblaze)
259
+   microblaze)
260
        basic_machine=microblaze-xilinx
261
        ;;
262
    mingw32)
263
@@ -771,10 +814,18 @@
264
    ms1-*)
265
        basic_machine=`echo $basic_machine | sed -e 's/ms1-/mt-/'`
266
        ;;
267
+   msys)
268
+       basic_machine=i386-pc
269
+       os=-msys
270
+       ;;
271
    mvs)
272
        basic_machine=i370-ibm
273
        os=-mvs
274
        ;;
275
+   nacl)
276
+       basic_machine=le32-unknown
277
+       os=-nacl
278
+       ;;
279
    ncr3000)
280
        basic_machine=i486-ncr
281
        os=-sysv4
282
@@ -839,6 +890,12 @@
283
    np1)
284
        basic_machine=np1-gould
285
        ;;
286
+   neo-tandem)
287
+       basic_machine=neo-tandem
288
+       ;;
289
+   nse-tandem)
290
+       basic_machine=nse-tandem
291
+       ;;
292
    nsr-tandem)
293
        basic_machine=nsr-tandem
294
        ;;
295
@@ -921,9 +978,10 @@
296
        ;;
297
    power)  basic_machine=power-ibm
298
        ;;
299
-   ppc)    basic_machine=powerpc-unknown
300
+   ppc | ppcbe)    basic_machine=powerpc-unknown
301
        ;;
302
-   ppc-*)  basic_machine=powerpc-`echo $basic_machine | sed 's/^[^-]*-//'`
303
+   ppc-* | ppcbe-*)
304
+       basic_machine=powerpc-`echo $basic_machine | sed 's/^[^-]*-//'`
305
        ;;
306
    ppcle | powerpclittle | ppc-le | powerpc-little)
307
        basic_machine=powerpcle-unknown
308
@@ -1017,6 +1075,9 @@
309
        basic_machine=i860-stratus
310
        os=-sysv4
311
        ;;
312
+   strongarm-* | thumb-*)
313
+       basic_machine=arm-`echo $basic_machine | sed 's/^[^-]*-//'`
314
+       ;;
315
    sun2)
316
        basic_machine=m68000-sun
317
        ;;
318
@@ -1073,20 +1134,8 @@
319
        basic_machine=t90-cray
320
        os=-unicos
321
        ;;
322
-   tic54x | c54x*)
323
-       basic_machine=tic54x-unknown
324
-       os=-coff
325
-       ;;
326
-   tic55x | c55x*)
327
-       basic_machine=tic55x-unknown
328
-       os=-coff
329
-       ;;
330
-   tic6x | c6x*)
331
-       basic_machine=tic6x-unknown
332
-       os=-coff
333
-       ;;
334
    tile*)
335
-       basic_machine=tile-unknown
336
+       basic_machine=$basic_machine-unknown
337
        os=-linux-gnu
338
        ;;
339
    tx39)
340
@@ -1156,6 +1205,9 @@
341
    xps | xps100)
342
        basic_machine=xps100-honeywell
343
        ;;
344
+   xscale-* | xscalee[bl]-*)
345
+       basic_machine=`echo $basic_machine | sed 's/^xscale/arm/'`
346
+       ;;
347
    ymp)
348
        basic_machine=ymp-cray
349
        os=-unicos
350
@@ -1253,11 +1305,11 @@
351
 if [ x"$os" != x"" ]
352
 then
353
 case $os in
354
-        # First match some system type aliases
355
-        # that might get confused with valid system types.
356
+   # First match some system type aliases
357
+   # that might get confused with valid system types.
358
    # -solaris* is a basic system type, with this one exception.
359
-        -auroraux)
360
-           os=-auroraux
361
+   -auroraux)
362
+       os=-auroraux
363
        ;;
364
    -solaris1 | -solaris1.*)
365
        os=`echo $os | sed -e 's|solaris1|sunos4|'`
366
@@ -1293,8 +1345,9 @@
367
          | -ptx* | -coff* | -ecoff* | -winnt* | -domain* | -vsta* \
368
          | -udi* | -eabi* | -lites* | -ieee* | -go32* | -aux* \
369
          | -chorusos* | -chorusrdb* | -cegcc* \
370
-         | -cygwin* | -pe* | -psos* | -moss* | -proelf* | -rtems* \
371
-         | -mingw32* | -linux-gnu* | -linux-newlib* | -linux-uclibc* \
372
+         | -cygwin* | -msys* | -pe* | -psos* | -moss* | -proelf* | -rtems* \
373
+         | -mingw32* | -linux-gnu* | -linux-android* \
374
+         | -linux-newlib* | -linux-uclibc* \
375
          | -uxpv* | -beos* | -mpeix* | -udk* \
376
          | -interix* | -uwin* | -mks* | -rhapsody* | -darwin* | -opened* \
377
          | -openstep* | -oskit* | -conix* | -pw32* | -nonstopux* \
378
@@ -1341,7 +1394,7 @@
379
    -opened*)
380
        os=-openedition
381
        ;;
382
-        -os400*)
383
+   -os400*)
384
        os=-os400
385
        ;;
386
    -wince*)
387
@@ -1390,7 +1443,7 @@
388
    -sinix*)
389
        os=-sysv4
390
        ;;
391
-        -tpf*)
392
+   -tpf*)
393
        os=-tpf
394
        ;;
395
    -triton*)
396
@@ -1435,6 +1488,8 @@
397
    -dicos*)
398
        os=-dicos
399
        ;;
400
+   -nacl*)
401
+       ;;
402
    -none)
403
        ;;
404
    *)
405
@@ -1457,10 +1512,10 @@
406
 # system, and we'll never get to this point.
407
 
408
 case $basic_machine in
409
-        score-*)
410
+   score-*)
411
        os=-elf
412
        ;;
413
-        spu-*)
414
+   spu-*)
415
        os=-elf
416
        ;;
417
    *-acorn)
418
@@ -1472,8 +1527,17 @@
419
    arm*-semi)
420
        os=-aout
421
        ;;
422
-        c4x-* | tic4x-*)
423
-           os=-coff
424
+   c4x-* | tic4x-*)
425
+       os=-coff
426
+       ;;
427
+   tic54x-*)
428
+       os=-coff
429
+       ;;
430
+   tic55x-*)
431
+       os=-coff
432
+       ;;
433
+   tic6x-*)
434
+       os=-coff
435
        ;;
436
    # This must come before the *-dec entry.
437
    pdp10-*)
438
@@ -1493,14 +1557,11 @@
439
        ;;
440
    m68000-sun)
441
        os=-sunos3
442
-       # This also exists in the configure program, but was not the
443
-       # default.
444
-       # os=-sunos4
445
        ;;
446
    m68*-cisco)
447
        os=-aout
448
        ;;
449
-        mep-*)
450
+   mep-*)
451
        os=-elf
452
        ;;
453
    mips*-cisco)
454
@@ -1527,7 +1588,7 @@
455
    *-ibm)
456
        os=-aix
457
        ;;
458
-       *-knuth)
459
+   *-knuth)
460
        os=-mmixware
461
        ;;
462
    *-wec)
463
cclive-0.7.8.tar.bz2/config.aux/depcomp -> cclive-0.7.9.tar.bz2/config.aux/depcomp Changed
123
 
1
@@ -1,10 +1,10 @@
2
 #! /bin/sh
3
 # depcomp - compile a program generating dependencies as side-effects
4
 
5
-scriptversion=2009-04-28.21; # UTC
6
+scriptversion=2011-12-04.11; # UTC
7
 
8
-# Copyright (C) 1999, 2000, 2003, 2004, 2005, 2006, 2007, 2009 Free
9
-# Software Foundation, Inc.
10
+# Copyright (C) 1999, 2000, 2003, 2004, 2005, 2006, 2007, 2009, 2010,
11
+# 2011 Free Software Foundation, Inc.
12
 
13
 # This program is free software; you can redistribute it and/or modify
14
 # it under the terms of the GNU General Public License as published by
15
@@ -44,7 +44,7 @@
16
   object      Object file output by `PROGRAMS ARGS'.
17
   DEPDIR      directory where to store dependencies.
18
   depfile     Dependency file to output.
19
-  tmpdepfile  Temporary file to use when outputing dependencies.
20
+  tmpdepfile  Temporary file to use when outputting dependencies.
21
   libtool     Whether libtool is used (yes/no).
22
 
23
 Report bugs to <bug-automake@gnu.org>.
24
@@ -90,10 +90,18 @@
25
    # This is just like msvisualcpp but w/o cygpath translation.
26
    # Just convert the backslash-escaped backslashes to single forward
27
    # slashes to satisfy depend.m4
28
-   cygpath_u="sed s,\\\\\\\\,/,g"
29
+   cygpath_u='sed s,\\\\,/,g'
30
    depmode=msvisualcpp
31
 fi
32
 
33
+if test "$depmode" = msvc7msys; then
34
+   # This is just like msvc7 but w/o cygpath translation.
35
+   # Just convert the backslash-escaped backslashes to single forward
36
+   # slashes to satisfy depend.m4
37
+   cygpath_u='sed s,\\\\,/,g'
38
+   depmode=msvc7
39
+fi
40
+
41
 case "$depmode" in
42
 gcc3)
43
 ## gcc 3 implements dependency tracking that does exactly what
44
@@ -158,10 +166,12 @@
45
 ' < "$tmpdepfile" |
46
 ## Some versions of gcc put a space before the `:'.  On the theory
47
 ## that the space means something, we add a space to the output as
48
-## well.
49
+## well.  hp depmode also adds that space, but also prefixes the VPATH
50
+## to the object.  Take care to not repeat it in the output.
51
 ## Some versions of the HPUX 10.20 sed can't process this invocation
52
 ## correctly.  Breaking it into two sed invocations is a workaround.
53
-    sed -e 's/^\\$//' -e '/^$/d' -e '/:$/d' | sed -e 's/$/ :/' >> "$depfile"
54
+    sed -e 's/^\\$//' -e '/^$/d' -e "s|.*$object$||" -e '/:$/d' \
55
+      | sed -e 's/$/ :/' >> "$depfile"
56
   rm -f "$tmpdepfile"
57
   ;;
58
 
59
@@ -405,6 +415,52 @@
60
    rm -f "$tmpdepfile"
61
    ;;
62
 
63
+msvc7)
64
+  if test "$libtool" = yes; then
65
+    showIncludes=-Wc,-showIncludes
66
+  else
67
+    showIncludes=-showIncludes
68
+  fi
69
+  "$@" $showIncludes > "$tmpdepfile"
70
+  stat=$?
71
+  grep -v '^Note: including file: ' "$tmpdepfile"
72
+  if test "$stat" = 0; then :
73
+  else
74
+    rm -f "$tmpdepfile"
75
+    exit $stat
76
+  fi
77
+  rm -f "$depfile"
78
+  echo "$object : \\" > "$depfile"
79
+  # The first sed program below extracts the file names and escapes
80
+  # backslashes for cygpath.  The second sed program outputs the file
81
+  # name when reading, but also accumulates all include files in the
82
+  # hold buffer in order to output them again at the end.  This only
83
+  # works with sed implementations that can handle large buffers.
84
+  sed < "$tmpdepfile" -n '
85
+/^Note: including file:  *\(.*\)/ {
86
+  s//\1/
87
+  s/\\/\\\\/g
88
+  p
89
+}' | $cygpath_u | sort -u | sed -n '
90
+s/ /\\ /g
91
+s/\(.*\)/  \1 \\/p
92
+s/.\(.*\) \\/\1:/
93
+H
94
+$ {
95
+  s/.*/    /
96
+  G
97
+  p
98
+}' >> "$depfile"
99
+  rm -f "$tmpdepfile"
100
+  ;;
101
+
102
+msvc7msys)
103
+  # This case exists only to let depend.m4 do its work.  It works by
104
+  # looking at the text of this script.  This case will never be run,
105
+  # since it is checked for above.
106
+  exit 1
107
+  ;;
108
+
109
 #nosideeffect)
110
   # This comment above is used by automake to tell side-effect
111
   # dependency tracking mechanisms from slower ones.
112
@@ -503,7 +559,9 @@
113
   touch "$tmpdepfile"
114
   ${MAKEDEPEND-makedepend} -o"$obj_suffix" -f"$tmpdepfile" "$@"
115
   rm -f "$depfile"
116
-  cat < "$tmpdepfile" > "$depfile"
117
+  # makedepend may prepend the VPATH from the source file name to the object.
118
+  # No need to regex-escape $object, excess matching of '.' is harmless.
119
+  sed "s|^.*\($object *:\)|\1|" "$tmpdepfile" > "$depfile"
120
   sed '1,2d' "$tmpdepfile" | tr ' ' '
121
 ' | \
122
 ## Some versions of the HPUX 10.20 sed can't process this invocation
123
cclive-0.7.8.tar.bz2/config.aux/install-sh -> cclive-0.7.9.tar.bz2/config.aux/install-sh Changed
88
 
1
@@ -1,7 +1,7 @@
2
 #!/bin/sh
3
 # install - install a program, script, or datafile
4
 
5
-scriptversion=2009-04-28.21; # UTC
6
+scriptversion=2011-01-19.21; # UTC
7
 
8
 # This originates from X11R5 (mit/util/scripts/install.sh), which was
9
 # later released in X11R6 (xc/config/util/install.sh) with the
10
@@ -156,6 +156,10 @@
11
     -s) stripcmd=$stripprog;;
12
 
13
     -t) dst_arg=$2
14
+   # Protect names problematic for `test' and other utilities.
15
+   case $dst_arg in
16
+     -* | [=\(\)!]) dst_arg=./$dst_arg;;
17
+   esac
18
    shift;;
19
 
20
     -T) no_target_directory=true;;
21
@@ -186,6 +190,10 @@
22
     fi
23
     shift # arg
24
     dst_arg=$arg
25
+    # Protect names problematic for `test' and other utilities.
26
+    case $dst_arg in
27
+      -* | [=\(\)!]) dst_arg=./$dst_arg;;
28
+    esac
29
   done
30
 fi
31
 
32
@@ -200,7 +208,11 @@
33
 fi
34
 
35
 if test -z "$dir_arg"; then
36
-  trap '(exit $?); exit' 1 2 13 15
37
+  do_exit='(exit $ret); exit $ret'
38
+  trap "ret=129; $do_exit" 1
39
+  trap "ret=130; $do_exit" 2
40
+  trap "ret=141; $do_exit" 13
41
+  trap "ret=143; $do_exit" 15
42
 
43
   # Set umask so as not to create temps with too-generous modes.
44
   # However, 'strip' requires both read and write access to temps.
45
@@ -228,9 +240,9 @@
46
 
47
 for src
48
 do
49
-  # Protect names starting with `-'.
50
+  # Protect names problematic for `test' and other utilities.
51
   case $src in
52
-    -*) src=./$src;;
53
+    -* | [=\(\)!]) src=./$src;;
54
   esac
55
 
56
   if test -n "$dir_arg"; then
57
@@ -252,12 +264,7 @@
58
       echo "$0: no destination specified." >&2
59
       exit 1
60
     fi
61
-
62
     dst=$dst_arg
63
-    # Protect names starting with `-'.
64
-    case $dst in
65
-      -*) dst=./$dst;;
66
-    esac
67
 
68
     # If destination is a directory, append the input filename; won't work
69
     # if double slashes aren't ignored.
70
@@ -385,7 +392,7 @@
71
 
72
       case $dstdir in
73
    /*) prefix='/';;
74
-   -*) prefix='./';;
75
+   [-=\(\)!]*) prefix='./';;
76
    *)  prefix='';;
77
       esac
78
 
79
@@ -403,7 +410,7 @@
80
 
81
       for d
82
       do
83
-   test -z "$d" && continue
84
+   test X"$d" = X && continue
85
 
86
    prefix=$prefix$d
87
    if test -d "$prefix"; then
88
cclive-0.7.8.tar.bz2/config.aux/missing -> cclive-0.7.9.tar.bz2/config.aux/missing Changed
98
 
1
@@ -1,10 +1,10 @@
2
 #! /bin/sh
3
 # Common stub for a few missing GNU programs while installing.
4
 
5
-scriptversion=2009-04-28.21; # UTC
6
+scriptversion=2012-01-06.13; # UTC
7
 
8
 # Copyright (C) 1996, 1997, 1999, 2000, 2002, 2003, 2004, 2005, 2006,
9
-# 2008, 2009 Free Software Foundation, Inc.
10
+# 2008, 2009, 2010, 2011, 2012 Free Software Foundation, Inc.
11
 # Originally by Fran,cois Pinard <pinard@iro.umontreal.ca>, 1996.
12
 
13
 # This program is free software; you can redistribute it and/or modify
14
@@ -84,7 +84,6 @@
15
   help2man     touch the output file
16
   lex          create \`lex.yy.c', if possible, from existing .c
17
   makeinfo     touch the output file
18
-  tar          try tar, gnutar, gtar, then tar without non-portable flags
19
   yacc         create \`y.tab.[ch]', if possible, from existing .[ch]
20
 
21
 Version suffixes to PROGRAM as well as the prefixes \`gnu-', \`gnu', and
22
@@ -122,15 +121,6 @@
23
     # Not GNU programs, they don't have --version.
24
     ;;
25
 
26
-  tar*)
27
-    if test -n "$run"; then
28
-       echo 1>&2 "ERROR: \`tar' requires --run"
29
-       exit 1
30
-    elif test "x$2" = "x--version" || test "x$2" = "x--help"; then
31
-       exit 1
32
-    fi
33
-    ;;
34
-
35
   *)
36
     if test -z "$run" && ($1 --version) > /dev/null 2>&1; then
37
        # We have it, but it failed.
38
@@ -226,7 +216,7 @@
39
          \`Bison' from any GNU archive site."
40
     rm -f y.tab.c y.tab.h
41
     if test $# -ne 1; then
42
-        eval LASTARG="\${$#}"
43
+        eval LASTARG=\${$#}
44
    case $LASTARG in
45
    *.y)
46
        SRCFILE=`echo "$LASTARG" | sed 's/y$/c/'`
47
@@ -256,7 +246,7 @@
48
          \`Flex' from any GNU archive site."
49
     rm -f lex.yy.c
50
     if test $# -ne 1; then
51
-        eval LASTARG="\${$#}"
52
+        eval LASTARG=\${$#}
53
    case $LASTARG in
54
    *.l)
55
        SRCFILE=`echo "$LASTARG" | sed 's/l$/c/'`
56
@@ -318,41 +308,6 @@
57
     touch $file
58
     ;;
59
 
60
-  tar*)
61
-    shift
62
-
63
-    # We have already tried tar in the generic part.
64
-    # Look for gnutar/gtar before invocation to avoid ugly error
65
-    # messages.
66
-    if (gnutar --version > /dev/null 2>&1); then
67
-       gnutar "$@" && exit 0
68
-    fi
69
-    if (gtar --version > /dev/null 2>&1); then
70
-       gtar "$@" && exit 0
71
-    fi
72
-    firstarg="$1"
73
-    if shift; then
74
-   case $firstarg in
75
-   *o*)
76
-       firstarg=`echo "$firstarg" | sed s/o//`
77
-       tar "$firstarg" "$@" && exit 0
78
-       ;;
79
-   esac
80
-   case $firstarg in
81
-   *h*)
82
-       firstarg=`echo "$firstarg" | sed s/h//`
83
-       tar "$firstarg" "$@" && exit 0
84
-       ;;
85
-   esac
86
-    fi
87
-
88
-    echo 1>&2 "\
89
-WARNING: I can't seem to be able to run \`tar' with the given arguments.
90
-         You may want to install GNU tar or Free paxutils, or check the
91
-         command line arguments."
92
-    exit 1
93
-    ;;
94
-
95
   *)
96
     echo 1>&2 "\
97
 WARNING: \`$1' is needed, and is $msg.
98
cclive-0.7.8.tar.bz2/configure -> cclive-0.7.9.tar.bz2/configure Changed
188
 
1
@@ -1,6 +1,6 @@
2
 #! /bin/sh
3
 # Guess values for system-dependent variables and create Makefiles.
4
-# Generated by GNU Autoconf 2.68 for cclive 0.7.8.
5
+# Generated by GNU Autoconf 2.68 for cclive 0.7.9.
6
 #
7
 # Report bugs to <http://sourceforge.net/apps/trac/cclive>.
8
 #
9
@@ -570,8 +570,8 @@
10
 # Identity of this package.
11
 PACKAGE_NAME='cclive'
12
 PACKAGE_TARNAME='cclive'
13
-PACKAGE_VERSION='0.7.8'
14
-PACKAGE_STRING='cclive 0.7.8'
15
+PACKAGE_VERSION='0.7.9'
16
+PACKAGE_STRING='cclive 0.7.9'
17
 PACKAGE_BUGREPORT='http://sourceforge.net/apps/trac/cclive'
18
 PACKAGE_URL='http://cclive.sourceforge.net/'
19
 
20
@@ -678,9 +678,12 @@
21
 LIBTOOL
22
 AM_BACKSLASH
23
 AM_DEFAULT_VERBOSITY
24
+AM_DEFAULT_V
25
+AM_V
26
 am__fastdepCC_FALSE
27
 am__fastdepCC_TRUE
28
 CCDEPMODE
29
+am__nodep
30
 AMDEPBACKSLASH
31
 AMDEP_FALSE
32
 AMDEP_TRUE
33
@@ -1354,7 +1357,7 @@
34
   # Omit some internal or obsolete options to make the list less imposing.
35
   # This message is too long to be a string in the A/UX 3.1 sh.
36
   cat <<_ACEOF
37
-\`configure' configures cclive 0.7.8 to adapt to many kinds of systems.
38
+\`configure' configures cclive 0.7.9 to adapt to many kinds of systems.
39
 
40
 Usage: $0 [OPTION]... [VAR=VALUE]...
41
 
42
@@ -1425,7 +1428,7 @@
43
 
44
 if test -n "$ac_init_help"; then
45
   case $ac_init_help in
46
-     short | recursive ) echo "Configuration of cclive 0.7.8:";;
47
+     short | recursive ) echo "Configuration of cclive 0.7.9:";;
48
    esac
49
   cat <<\_ACEOF
50
 
51
@@ -1560,7 +1563,7 @@
52
 test -n "$ac_init_help" && exit $ac_status
53
 if $ac_init_version; then
54
   cat <<\_ACEOF
55
-cclive configure 0.7.8
56
+cclive configure 0.7.9
57
 generated by GNU Autoconf 2.68
58
 
59
 Copyright (C) 2010 Free Software Foundation, Inc.
60
@@ -2241,7 +2244,7 @@
61
 This file contains any messages produced by compilers while
62
 running configure, to aid debugging if configure makes a mistake.
63
 
64
-It was created by cclive $as_me 0.7.8, which was
65
+It was created by cclive $as_me 0.7.9, which was
66
 generated by GNU Autoconf 2.68.  Invocation command line was
67
 
68
   $ $0 $@
69
@@ -4465,6 +4468,7 @@
70
 if test "x$enable_dependency_tracking" != xno; then
71
   am_depcomp="$ac_aux_dir/depcomp"
72
   AMDEPBACKSLASH='\'
73
+  am__nodep='_no'
74
 fi
75
  if test "x$enable_dependency_tracking" != xno; then
76
   AMDEP_TRUE=
77
@@ -4497,7 +4501,7 @@
78
 
79
 # Define the identity of the package.
80
  PACKAGE='cclive'
81
- VERSION='0.7.8'
82
+ VERSION='0.7.9'
83
 
84
 
85
 cat >>confdefs.h <<_ACEOF
86
@@ -4527,11 +4531,11 @@
87
 
88
 # We need awk for the "check" target.  The system "awk" is bad on
89
 # some platforms.
90
-# Always define AMTAR for backward compatibility.
91
+# Always define AMTAR for backward compatibility.  Yes, it's still used
92
+# in the wild :-(  We should find a proper way to deprecate it ...
93
+AMTAR='$${TAR-tar}'
94
 
95
-AMTAR=${AMTAR-"${am_missing_run}tar"}
96
-
97
-am__tar='${AMTAR} chof - "$$tardir"'; am__untar='${AMTAR} xf -'
98
+am__tar='$${TAR-tar} chof - "$$tardir"' am__untar='$${TAR-tar} xf -'
99
 
100
 
101
 
102
@@ -4549,6 +4553,7 @@
103
   # instance it was reported that on HP-UX the gcc test will end up
104
   # making a dummy file named `D' -- because `-MD' means `put the output
105
   # in D'.
106
+  rm -rf conftest.dir
107
   mkdir conftest.dir
108
   # Copy depcomp to subdir because otherwise we won't find it if we're
109
   # using a relative directory.
110
@@ -4608,7 +4613,7 @@
111
    break
112
       fi
113
       ;;
114
-    msvisualcpp | msvcmsys)
115
+    msvc7 | msvc7msys | msvisualcpp | msvcmsys)
116
       # This compiler won't grok `-c -o', but also, the minuso test has
117
       # not run yet.  These depmodes are late enough in the game, and
118
       # so weak that their functioning should not be impacted.
119
@@ -4674,6 +4679,33 @@
120
 no)  AM_DEFAULT_VERBOSITY=1;;
121
 *)   AM_DEFAULT_VERBOSITY=0;;
122
 esac
123
+am_make=${MAKE-make}
124
+{ $as_echo "$as_me:${as_lineno-$LINENO}: checking whether $am_make supports nested variables" >&5
125
+$as_echo_n "checking whether $am_make supports nested variables... " >&6; }
126
+if ${am_cv_make_support_nested_variables+:} false; then :
127
+  $as_echo_n "(cached) " >&6
128
+else
129
+  if $as_echo 'TRUE=$(BAR$(V))
130
+BAR0=false
131
+BAR1=true
132
+V=1
133
+am__doit:
134
+   @$(TRUE)
135
+.PHONY: am__doit' | $am_make -f - >/dev/null 2>&1; then
136
+  am_cv_make_support_nested_variables=yes
137
+else
138
+  am_cv_make_support_nested_variables=no
139
+fi
140
+fi
141
+{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $am_cv_make_support_nested_variables" >&5
142
+$as_echo "$am_cv_make_support_nested_variables" >&6; }
143
+if test $am_cv_make_support_nested_variables = yes; then
144
+    AM_V='$(V)'
145
+  AM_DEFAULT_V='$(AM_DEFAULT_VERBOSITY)'
146
+else
147
+  AM_V=$AM_DEFAULT_VERBOSITY
148
+  AM_DEFAULT_V=$AM_DEFAULT_VERBOSITY
149
+fi
150
 AM_BACKSLASH='\'
151
 
152
 
153
@@ -12063,6 +12095,7 @@
154
   # instance it was reported that on HP-UX the gcc test will end up
155
   # making a dummy file named `D' -- because `-MD' means `put the output
156
   # in D'.
157
+  rm -rf conftest.dir
158
   mkdir conftest.dir
159
   # Copy depcomp to subdir because otherwise we won't find it if we're
160
   # using a relative directory.
161
@@ -12122,7 +12155,7 @@
162
    break
163
       fi
164
       ;;
165
-    msvisualcpp | msvcmsys)
166
+    msvc7 | msvc7msys | msvisualcpp | msvcmsys)
167
       # This compiler won't grok `-c -o', but also, the minuso test has
168
       # not run yet.  These depmodes are late enough in the game, and
169
       # so weak that their functioning should not be impacted.
170
@@ -19478,7 +19511,7 @@
171
 # report actual input values of CONFIG_FILES etc. instead of their
172
 # values after options handling.
173
 ac_log="
174
-This file was extended by cclive $as_me 0.7.8, which was
175
+This file was extended by cclive $as_me 0.7.9, which was
176
 generated by GNU Autoconf 2.68.  Invocation command line was
177
 
178
   CONFIG_FILES    = $CONFIG_FILES
179
@@ -19545,7 +19578,7 @@
180
 cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1
181
 ac_cs_config="`$as_echo "$ac_configure_args" | sed 's/^ //; s/[\\""\`\$]/\\\\&/g'`"
182
 ac_cs_version="\\
183
-cclive config.status 0.7.8
184
+cclive config.status 0.7.9
185
 configured by $0, generated by GNU Autoconf 2.68,
186
   with options \\"\$ac_cs_config\\"
187
 
188
cclive-0.7.8.tar.bz2/doc/Makefile.in -> cclive-0.7.9.tar.bz2/doc/Makefile.in Changed
50
 
1
@@ -1,9 +1,9 @@
2
-# Makefile.in generated by automake 1.11.1 from Makefile.am.
3
+# Makefile.in generated by automake 1.11.3 from Makefile.am.
4
 # @configure_input@
5
 
6
 # Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002,
7
-# 2003, 2004, 2005, 2006, 2007, 2008, 2009  Free Software Foundation,
8
-# Inc.
9
+# 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011 Free Software
10
+# Foundation, Inc.
11
 # This Makefile.in is free software; the Free Software Foundation
12
 # gives unlimited permission to copy and/or distribute it,
13
 # with or without modifications, as long as this notice is preserved.
14
@@ -48,11 +48,11 @@
15
 CONFIG_HEADER = $(top_builddir)/config.h
16
 CONFIG_CLEAN_FILES =
17
 CONFIG_CLEAN_VPATH_FILES =
18
-AM_V_GEN = $(am__v_GEN_$(V))
19
-am__v_GEN_ = $(am__v_GEN_$(AM_DEFAULT_VERBOSITY))
20
+AM_V_GEN = $(am__v_GEN_@AM_V@)
21
+am__v_GEN_ = $(am__v_GEN_@AM_DEFAULT_V@)
22
 am__v_GEN_0 = @echo "  GEN   " $@;
23
-AM_V_at = $(am__v_at_$(V))
24
-am__v_at_ = $(am__v_at_$(AM_DEFAULT_VERBOSITY))
25
+AM_V_at = $(am__v_at_@AM_V@)
26
+am__v_at_ = $(am__v_at_@AM_DEFAULT_V@)
27
 am__v_at_0 = @
28
 SOURCES =
29
 DIST_SOURCES =
30
@@ -499,10 +499,15 @@
31
 
32
 installcheck: installcheck-recursive
33
 install-strip:
34
-   $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \
35
-     install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \
36
-     `test -z '$(STRIP)' || \
37
-       echo "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'"` install
38
+   if test -z '$(STRIP)'; then \
39
+     $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \
40
+       install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \
41
+         install; \
42
+   else \
43
+     $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \
44
+       install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \
45
+       "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'" install; \
46
+   fi
47
 mostlyclean-generic:
48
 
49
 clean-generic:
50
cclive-0.7.8.tar.bz2/doc/man1/Makefile.in -> cclive-0.7.9.tar.bz2/doc/man1/Makefile.in Changed
74
 
1
@@ -1,9 +1,9 @@
2
-# Makefile.in generated by automake 1.11.1 from Makefile.am.
3
+# Makefile.in generated by automake 1.11.3 from Makefile.am.
4
 # @configure_input@
5
 
6
 # Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002,
7
-# 2003, 2004, 2005, 2006, 2007, 2008, 2009  Free Software Foundation,
8
-# Inc.
9
+# 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011 Free Software
10
+# Foundation, Inc.
11
 # This Makefile.in is free software; the Free Software Foundation
12
 # gives unlimited permission to copy and/or distribute it,
13
 # with or without modifications, as long as this notice is preserved.
14
@@ -49,11 +49,11 @@
15
 CONFIG_HEADER = $(top_builddir)/config.h
16
 CONFIG_CLEAN_FILES =
17
 CONFIG_CLEAN_VPATH_FILES =
18
-AM_V_GEN = $(am__v_GEN_$(V))
19
-am__v_GEN_ = $(am__v_GEN_$(AM_DEFAULT_VERBOSITY))
20
+AM_V_GEN = $(am__v_GEN_@AM_V@)
21
+am__v_GEN_ = $(am__v_GEN_@AM_DEFAULT_V@)
22
 am__v_GEN_0 = @echo "  GEN   " $@;
23
-AM_V_at = $(am__v_at_$(V))
24
-am__v_at_ = $(am__v_at_$(AM_DEFAULT_VERBOSITY))
25
+AM_V_at = $(am__v_at_@AM_V@)
26
+am__v_at_ = $(am__v_at_@AM_DEFAULT_V@)
27
 am__v_at_0 = @
28
 SOURCES =
29
 DIST_SOURCES =
30
@@ -78,6 +78,12 @@
31
 am__base_list = \
32
   sed '$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;s/\n/ /g' | \
33
   sed '$$!N;$$!N;$$!N;$$!N;s/\n/ /g'
34
+am__uninstall_files_from_dir = { \
35
+  test -z "$$files" \
36
+    || { test ! -d "$$dir" && test ! -f "$$dir" && test ! -r "$$dir"; } \
37
+    || { echo " ( cd '$$dir' && rm -f" $$files ")"; \
38
+         $(am__cd) "$$dir" && rm -f $$files; }; \
39
+  }
40
 man1dir = $(mandir)/man1
41
 am__installdirs = "$(DESTDIR)$(man1dir)"
42
 NROFF = nroff
43
@@ -312,9 +318,7 @@
44
      sed -n '/\.1[a-z]*$$/p'; \
45
    } | sed -e 's,.*/,,;h;s,.*\.,,;s,^[^1][0-9a-z]*$$,1,;x' \
46
          -e 's,\.[0-9a-z]*$$,,;$(transform);G;s,\n,.,'`; \
47
-   test -z "$$files" || { \
48
-     echo " ( cd '$(DESTDIR)$(man1dir)' && rm -f" $$files ")"; \
49
-     cd "$(DESTDIR)$(man1dir)" && rm -f $$files; }
50
+   dir='$(DESTDIR)$(man1dir)'; $(am__uninstall_files_from_dir)
51
 tags: TAGS
52
 TAGS:
53
 
54
@@ -382,10 +386,15 @@
55
 
56
 installcheck: installcheck-am
57
 install-strip:
58
-   $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \
59
-     install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \
60
-     `test -z '$(STRIP)' || \
61
-       echo "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'"` install
62
+   if test -z '$(STRIP)'; then \
63
+     $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \
64
+       install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \
65
+         install; \
66
+   else \
67
+     $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \
68
+       install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \
69
+       "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'" install; \
70
+   fi
71
 mostlyclean-generic:
72
 
73
 clean-generic:
74
cclive-0.7.8.tar.bz2/doc/man1/cclive.1 -> cclive-0.7.9.tar.bz2/doc/man1/cclive.1 Changed
10
 
1
@@ -124,7 +124,7 @@
2
 .\" ========================================================================
3
 .\"
4
 .IX Title "cclive 1"
5
-.TH cclive 1 "2011-11-26" "0.7.8" "cclive manual"
6
+.TH cclive 1 "2011-11-26" "0.7.9" "cclive manual"
7
 .\" For nroff, turn off justification.  Always turn off hyphenation; it makes
8
 .\" way too many mistakes in technical documents.
9
 .if n .ad l
10
cclive-0.7.8.tar.bz2/m4/boost.m4 -> cclive-0.7.9.tar.bz2/m4/boost.m4 Changed
77
 
1
@@ -480,6 +480,33 @@
2
 [BOOST_FIND_HEADER([boost/bind.hpp])])
3
 
4
 
5
+# BOOST_CHRONO()
6
+# ------------------
7
+# Look for Boost.Chrono
8
+BOOST_DEFUN([Chrono],
9
+[# Do we have to check for Boost.System?  This link-time dependency was
10
+# added as of 1.35.0.  If we have a version <1.35, we must not attempt to
11
+# find Boost.System as it didn't exist by then.
12
+if test $boost_major_version -ge 135; then
13
+BOOST_SYSTEM([$1])
14
+fi # end of the Boost.System check.
15
+boost_filesystem_save_LIBS=$LIBS
16
+boost_filesystem_save_LDFLAGS=$LDFLAGS
17
+m4_pattern_allow([^BOOST_SYSTEM_(LIBS|LDFLAGS)$])dnl
18
+LIBS="$LIBS $BOOST_SYSTEM_LIBS"
19
+LDFLAGS="$LDFLAGS $BOOST_SYSTEM_LDFLAGS"
20
+BOOST_FIND_LIB([chrono], [$1],
21
+                [boost/chrono.hpp],
22
+                [boost::chrono::thread_clock d;])
23
+if test $enable_static_boost = yes && test $boost_major_version -ge 135; then
24
+    AC_SUBST([BOOST_FILESYSTEM_LIBS], ["$BOOST_FILESYSTEM_LIBS $BOOST_SYSTEM_LIBS"])
25
+fi
26
+LIBS=$boost_filesystem_save_LIBS
27
+LDFLAGS=$boost_filesystem_save_LDFLAGS               
28
+                
29
+])# BOOST_CHRONO
30
+
31
+
32
 # BOOST_CONVERSION()
33
 # ------------------
34
 # Look for Boost.Conversion (cast / lexical_cast)
35
@@ -809,8 +836,15 @@
36
 dnl -pthread on GNU/Linux.
37
 AC_REQUIRE([_BOOST_PTHREAD_FLAG])dnl
38
 boost_threads_save_LIBS=$LIBS
39
+boost_threads_save_LDFLAGS=$LDFLAGS
40
 boost_threads_save_CPPFLAGS=$CPPFLAGS
41
-LIBS="$LIBS $boost_cv_pthread_flag"
42
+# Link-time dependency from thread to system was added as of 1.49.0.
43
+if test $boost_major_version -ge 149; then
44
+BOOST_SYSTEM([$1])
45
+fi # end of the Boost.System check.
46
+m4_pattern_allow([^BOOST_SYSTEM_(LIBS|LDFLAGS)$])dnl
47
+LIBS="$LIBS $BOOST_SYSTEM_LIBS $boost_cv_pthread_flag"
48
+LDFLAGS="$LDFLAGS $BOOST_SYSTEM_LDFLAGS"
49
 # Yes, we *need* to put the -pthread thing in CPPFLAGS because with GCC3,
50
 # boost/thread.hpp will trigger a #error if -pthread isn't used:
51
 #   boost/config/requires_threads.hpp:47:5: #error "Compiler threading support
52
@@ -819,9 +853,11 @@
53
 CPPFLAGS="$CPPFLAGS $boost_cv_pthread_flag"
54
 BOOST_FIND_LIB([thread], [$1],
55
                [boost/thread.hpp], [boost::thread t; boost::mutex m;])
56
-BOOST_THREAD_LIBS="$BOOST_THREAD_LIBS $boost_cv_pthread_flag"
57
+BOOST_THREAD_LIBS="$BOOST_THREAD_LIBS $BOOST_SYSTEM_LIBS $boost_cv_pthread_flag"
58
+BOOST_THREAD_LDFLAGS="$BOOST_SYSTEM_LDFLAGS"
59
 BOOST_CPPFLAGS="$BOOST_CPPFLAGS $boost_cv_pthread_flag"
60
 LIBS=$boost_threads_save_LIBS
61
+LDFLAGS=$boost_threads_save_LDFLAGS
62
 CPPFLAGS=$boost_threads_save_CPPFLAGS
63
 ])# BOOST_THREADS
64
 
65
@@ -884,9 +920,9 @@
66
 boost_wave_save_LIBS=$LIBS
67
 boost_wave_save_LDFLAGS=$LDFLAGS
68
 m4_pattern_allow([^BOOST_((FILE)?SYSTEM|DATE_TIME|THREAD)_(LIBS|LDFLAGS)$])dnl
69
-LIBS="$LIBS $BOOST_SYSTEM_LIBS $BOOST_FILESYSTEM_LIBS $BOOST_DATE_TIME_LIBS\
70
+LIBS="$LIBS $BOOST_SYSTEM_LIBS $BOOST_FILESYSTEM_LIBS $BOOST_DATE_TIME_LIBS \
71
 $BOOST_THREAD_LIBS"
72
-LDFLAGS="$LDFLAGS $BOOST_SYSTEM_LDFLAGS $BOOST_FILESYSTEM_LDFLAGS\
73
+LDFLAGS="$LDFLAGS $BOOST_SYSTEM_LDFLAGS $BOOST_FILESYSTEM_LDFLAGS \
74
 $BOOST_DATE_TIME_LDFLAGS $BOOST_THREAD_LDFLAGS"
75
 BOOST_FIND_LIB([wave], [$1],
76
                 [boost/wave.hpp],
77
cclive-0.7.8.tar.bz2/m4/version.m4 -> cclive-0.7.9.tar.bz2/m4/version.m4 Changed
4
 
1
@@ -1,1 +1,1 @@
2
-m4_define([_CCLIVE_VERSION], [0.7.8])
3
+m4_define([_CCLIVE_VERSION], [0.7.9])
4
cclive-0.7.8.tar.bz2/src/Makefile.in -> cclive-0.7.9.tar.bz2/src/Makefile.in Changed
517
 
1
@@ -1,9 +1,9 @@
2
-# Makefile.in generated by automake 1.11.1 from Makefile.am.
3
+# Makefile.in generated by automake 1.11.3 from Makefile.am.
4
 # @configure_input@
5
 
6
 # Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002,
7
-# 2003, 2004, 2005, 2006, 2007, 2008, 2009  Free Software Foundation,
8
-# Inc.
9
+# 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011 Free Software
10
+# Foundation, Inc.
11
 # This Makefile.in is free software; the Free Software Foundation
12
 # gives unlimited permission to copy and/or distribute it,
13
 # with or without modifications, as long as this notice is preserved.
14
@@ -67,8 +67,8 @@
15
    $(am__DEPENDENCIES_1) $(am__DEPENDENCIES_1) \
16
    $(am__DEPENDENCIES_1) $(am__DEPENDENCIES_1) \
17
    $(am__DEPENDENCIES_1)
18
-AM_V_lt = $(am__v_lt_$(V))
19
-am__v_lt_ = $(am__v_lt_$(AM_DEFAULT_VERBOSITY))
20
+AM_V_lt = $(am__v_lt_@AM_V@)
21
+am__v_lt_ = $(am__v_lt_@AM_DEFAULT_V@)
22
 am__v_lt_0 = --silent
23
 cclive_LINK = $(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) \
24
    $(LIBTOOLFLAGS) --mode=link $(CXXLD) $(AM_CXXFLAGS) \
25
@@ -83,18 +83,18 @@
26
    $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) \
27
    $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) \
28
    $(AM_CXXFLAGS) $(CXXFLAGS)
29
-AM_V_CXX = $(am__v_CXX_$(V))
30
-am__v_CXX_ = $(am__v_CXX_$(AM_DEFAULT_VERBOSITY))
31
+AM_V_CXX = $(am__v_CXX_@AM_V@)
32
+am__v_CXX_ = $(am__v_CXX_@AM_DEFAULT_V@)
33
 am__v_CXX_0 = @echo "  CXX   " $@;
34
-AM_V_at = $(am__v_at_$(V))
35
-am__v_at_ = $(am__v_at_$(AM_DEFAULT_VERBOSITY))
36
+AM_V_at = $(am__v_at_@AM_V@)
37
+am__v_at_ = $(am__v_at_@AM_DEFAULT_V@)
38
 am__v_at_0 = @
39
 CXXLD = $(CXX)
40
 CXXLINK = $(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) \
41
    $(LIBTOOLFLAGS) --mode=link $(CXXLD) $(AM_CXXFLAGS) \
42
    $(CXXFLAGS) $(AM_LDFLAGS) $(LDFLAGS) -o $@
43
-AM_V_CXXLD = $(am__v_CXXLD_$(V))
44
-am__v_CXXLD_ = $(am__v_CXXLD_$(AM_DEFAULT_VERBOSITY))
45
+AM_V_CXXLD = $(am__v_CXXLD_@AM_V@)
46
+am__v_CXXLD_ = $(am__v_CXXLD_@AM_DEFAULT_V@)
47
 am__v_CXXLD_0 = @echo "  CXXLD " $@;
48
 COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \
49
    $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS)
50
@@ -102,18 +102,18 @@
51
    $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) \
52
    $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) \
53
    $(AM_CFLAGS) $(CFLAGS)
54
-AM_V_CC = $(am__v_CC_$(V))
55
-am__v_CC_ = $(am__v_CC_$(AM_DEFAULT_VERBOSITY))
56
+AM_V_CC = $(am__v_CC_@AM_V@)
57
+am__v_CC_ = $(am__v_CC_@AM_DEFAULT_V@)
58
 am__v_CC_0 = @echo "  CC    " $@;
59
 CCLD = $(CC)
60
 LINK = $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) \
61
    $(LIBTOOLFLAGS) --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \
62
    $(AM_LDFLAGS) $(LDFLAGS) -o $@
63
-AM_V_CCLD = $(am__v_CCLD_$(V))
64
-am__v_CCLD_ = $(am__v_CCLD_$(AM_DEFAULT_VERBOSITY))
65
+AM_V_CCLD = $(am__v_CCLD_@AM_V@)
66
+am__v_CCLD_ = $(am__v_CCLD_@AM_DEFAULT_V@)
67
 am__v_CCLD_0 = @echo "  CCLD  " $@;
68
-AM_V_GEN = $(am__v_GEN_$(V))
69
-am__v_GEN_ = $(am__v_GEN_$(AM_DEFAULT_VERBOSITY))
70
+AM_V_GEN = $(am__v_GEN_@AM_V@)
71
+am__v_GEN_ = $(am__v_GEN_@AM_DEFAULT_V@)
72
 am__v_GEN_0 = @echo "  GEN   " $@;
73
 SOURCES = $(cclive_SOURCES)
74
 DIST_SOURCES = $(cclive_SOURCES)
75
@@ -401,7 +401,7 @@
76
    list=`for p in $$list; do echo "$$p"; done | sed 's/$(EXEEXT)$$//'`; \
77
    echo " rm -f" $$list; \
78
    rm -f $$list
79
-cclive$(EXEEXT): $(cclive_OBJECTS) $(cclive_DEPENDENCIES) 
80
+cclive$(EXEEXT): $(cclive_OBJECTS) $(cclive_DEPENDENCIES) $(EXTRA_cclive_DEPENDENCIES) 
81
    @rm -f cclive$(EXEEXT)
82
    $(AM_V_CXXLD)$(cclive_LINK) $(cclive_OBJECTS) $(cclive_LDADD) $(LIBS)
83
 
84
@@ -434,330 +434,289 @@
85
 .cpp.o:
86
 @am__fastdepCXX_TRUE@  $(AM_V_CXX)$(CXXCOMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $<
87
 @am__fastdepCXX_TRUE@  $(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po
88
-@am__fastdepCXX_FALSE@ $(AM_V_CXX) @AM_BACKSLASH@
89
-@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='$<' object='$@' libtool=no @AMDEPBACKSLASH@
90
+@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='$<' object='$@' libtool=no @AMDEPBACKSLASH@
91
 @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
92
-@am__fastdepCXX_FALSE@ $(CXXCOMPILE) -c -o $@ $<
93
+@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXXCOMPILE) -c -o $@ $<
94
 
95
 .cpp.obj:
96
 @am__fastdepCXX_TRUE@  $(AM_V_CXX)$(CXXCOMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ `$(CYGPATH_W) '$<'`
97
 @am__fastdepCXX_TRUE@  $(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po
98
-@am__fastdepCXX_FALSE@ $(AM_V_CXX) @AM_BACKSLASH@
99
-@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='$<' object='$@' libtool=no @AMDEPBACKSLASH@
100
+@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='$<' object='$@' libtool=no @AMDEPBACKSLASH@
101
 @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
102
-@am__fastdepCXX_FALSE@ $(CXXCOMPILE) -c -o $@ `$(CYGPATH_W) '$<'`
103
+@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXXCOMPILE) -c -o $@ `$(CYGPATH_W) '$<'`
104
 
105
 .cpp.lo:
106
 @am__fastdepCXX_TRUE@  $(AM_V_CXX)$(LTCXXCOMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $<
107
 @am__fastdepCXX_TRUE@  $(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Plo
108
-@am__fastdepCXX_FALSE@ $(AM_V_CXX) @AM_BACKSLASH@
109
-@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='$<' object='$@' libtool=yes @AMDEPBACKSLASH@
110
+@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='$<' object='$@' libtool=yes @AMDEPBACKSLASH@
111
 @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
112
-@am__fastdepCXX_FALSE@ $(LTCXXCOMPILE) -c -o $@ $<
113
+@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(LTCXXCOMPILE) -c -o $@ $<
114
 
115
 error.o: cc/error.cpp
116
 @am__fastdepCXX_TRUE@  $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT error.o -MD -MP -MF $(DEPDIR)/error.Tpo -c -o error.o `test -f 'cc/error.cpp' || echo '$(srcdir)/'`cc/error.cpp
117
 @am__fastdepCXX_TRUE@  $(AM_V_at)$(am__mv) $(DEPDIR)/error.Tpo $(DEPDIR)/error.Po
118
-@am__fastdepCXX_FALSE@ $(AM_V_CXX) @AM_BACKSLASH@
119
-@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='cc/error.cpp' object='error.o' libtool=no @AMDEPBACKSLASH@
120
+@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='cc/error.cpp' object='error.o' libtool=no @AMDEPBACKSLASH@
121
 @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
122
-@am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o error.o `test -f 'cc/error.cpp' || echo '$(srcdir)/'`cc/error.cpp
123
+@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o error.o `test -f 'cc/error.cpp' || echo '$(srcdir)/'`cc/error.cpp
124
 
125
 error.obj: cc/error.cpp
126
 @am__fastdepCXX_TRUE@  $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT error.obj -MD -MP -MF $(DEPDIR)/error.Tpo -c -o error.obj `if test -f 'cc/error.cpp'; then $(CYGPATH_W) 'cc/error.cpp'; else $(CYGPATH_W) '$(srcdir)/cc/error.cpp'; fi`
127
 @am__fastdepCXX_TRUE@  $(AM_V_at)$(am__mv) $(DEPDIR)/error.Tpo $(DEPDIR)/error.Po
128
-@am__fastdepCXX_FALSE@ $(AM_V_CXX) @AM_BACKSLASH@
129
-@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='cc/error.cpp' object='error.obj' libtool=no @AMDEPBACKSLASH@
130
+@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='cc/error.cpp' object='error.obj' libtool=no @AMDEPBACKSLASH@
131
 @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
132
-@am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o error.obj `if test -f 'cc/error.cpp'; then $(CYGPATH_W) 'cc/error.cpp'; else $(CYGPATH_W) '$(srcdir)/cc/error.cpp'; fi`
133
+@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o error.obj `if test -f 'cc/error.cpp'; then $(CYGPATH_W) 'cc/error.cpp'; else $(CYGPATH_W) '$(srcdir)/cc/error.cpp'; fi`
134
 
135
 main.o: cc/main.cpp
136
 @am__fastdepCXX_TRUE@  $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT main.o -MD -MP -MF $(DEPDIR)/main.Tpo -c -o main.o `test -f 'cc/main.cpp' || echo '$(srcdir)/'`cc/main.cpp
137
 @am__fastdepCXX_TRUE@  $(AM_V_at)$(am__mv) $(DEPDIR)/main.Tpo $(DEPDIR)/main.Po
138
-@am__fastdepCXX_FALSE@ $(AM_V_CXX) @AM_BACKSLASH@
139
-@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='cc/main.cpp' object='main.o' libtool=no @AMDEPBACKSLASH@
140
+@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='cc/main.cpp' object='main.o' libtool=no @AMDEPBACKSLASH@
141
 @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
142
-@am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o main.o `test -f 'cc/main.cpp' || echo '$(srcdir)/'`cc/main.cpp
143
+@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o main.o `test -f 'cc/main.cpp' || echo '$(srcdir)/'`cc/main.cpp
144
 
145
 main.obj: cc/main.cpp
146
 @am__fastdepCXX_TRUE@  $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT main.obj -MD -MP -MF $(DEPDIR)/main.Tpo -c -o main.obj `if test -f 'cc/main.cpp'; then $(CYGPATH_W) 'cc/main.cpp'; else $(CYGPATH_W) '$(srcdir)/cc/main.cpp'; fi`
147
 @am__fastdepCXX_TRUE@  $(AM_V_at)$(am__mv) $(DEPDIR)/main.Tpo $(DEPDIR)/main.Po
148
-@am__fastdepCXX_FALSE@ $(AM_V_CXX) @AM_BACKSLASH@
149
-@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='cc/main.cpp' object='main.obj' libtool=no @AMDEPBACKSLASH@
150
+@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='cc/main.cpp' object='main.obj' libtool=no @AMDEPBACKSLASH@
151
 @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
152
-@am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o main.obj `if test -f 'cc/main.cpp'; then $(CYGPATH_W) 'cc/main.cpp'; else $(CYGPATH_W) '$(srcdir)/cc/main.cpp'; fi`
153
+@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o main.obj `if test -f 'cc/main.cpp'; then $(CYGPATH_W) 'cc/main.cpp'; else $(CYGPATH_W) '$(srcdir)/cc/main.cpp'; fi`
154
 
155
 log.o: cc/log.cpp
156
 @am__fastdepCXX_TRUE@  $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT log.o -MD -MP -MF $(DEPDIR)/log.Tpo -c -o log.o `test -f 'cc/log.cpp' || echo '$(srcdir)/'`cc/log.cpp
157
 @am__fastdepCXX_TRUE@  $(AM_V_at)$(am__mv) $(DEPDIR)/log.Tpo $(DEPDIR)/log.Po
158
-@am__fastdepCXX_FALSE@ $(AM_V_CXX) @AM_BACKSLASH@
159
-@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='cc/log.cpp' object='log.o' libtool=no @AMDEPBACKSLASH@
160
+@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='cc/log.cpp' object='log.o' libtool=no @AMDEPBACKSLASH@
161
 @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
162
-@am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o log.o `test -f 'cc/log.cpp' || echo '$(srcdir)/'`cc/log.cpp
163
+@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o log.o `test -f 'cc/log.cpp' || echo '$(srcdir)/'`cc/log.cpp
164
 
165
 log.obj: cc/log.cpp
166
 @am__fastdepCXX_TRUE@  $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT log.obj -MD -MP -MF $(DEPDIR)/log.Tpo -c -o log.obj `if test -f 'cc/log.cpp'; then $(CYGPATH_W) 'cc/log.cpp'; else $(CYGPATH_W) '$(srcdir)/cc/log.cpp'; fi`
167
 @am__fastdepCXX_TRUE@  $(AM_V_at)$(am__mv) $(DEPDIR)/log.Tpo $(DEPDIR)/log.Po
168
-@am__fastdepCXX_FALSE@ $(AM_V_CXX) @AM_BACKSLASH@
169
-@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='cc/log.cpp' object='log.obj' libtool=no @AMDEPBACKSLASH@
170
+@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='cc/log.cpp' object='log.obj' libtool=no @AMDEPBACKSLASH@
171
 @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
172
-@am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o log.obj `if test -f 'cc/log.cpp'; then $(CYGPATH_W) 'cc/log.cpp'; else $(CYGPATH_W) '$(srcdir)/cc/log.cpp'; fi`
173
+@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o log.obj `if test -f 'cc/log.cpp'; then $(CYGPATH_W) 'cc/log.cpp'; else $(CYGPATH_W) '$(srcdir)/cc/log.cpp'; fi`
174
 
175
 background.o: cc/background.cpp
176
 @am__fastdepCXX_TRUE@  $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT background.o -MD -MP -MF $(DEPDIR)/background.Tpo -c -o background.o `test -f 'cc/background.cpp' || echo '$(srcdir)/'`cc/background.cpp
177
 @am__fastdepCXX_TRUE@  $(AM_V_at)$(am__mv) $(DEPDIR)/background.Tpo $(DEPDIR)/background.Po
178
-@am__fastdepCXX_FALSE@ $(AM_V_CXX) @AM_BACKSLASH@
179
-@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='cc/background.cpp' object='background.o' libtool=no @AMDEPBACKSLASH@
180
+@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='cc/background.cpp' object='background.o' libtool=no @AMDEPBACKSLASH@
181
 @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
182
-@am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o background.o `test -f 'cc/background.cpp' || echo '$(srcdir)/'`cc/background.cpp
183
+@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o background.o `test -f 'cc/background.cpp' || echo '$(srcdir)/'`cc/background.cpp
184
 
185
 background.obj: cc/background.cpp
186
 @am__fastdepCXX_TRUE@  $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT background.obj -MD -MP -MF $(DEPDIR)/background.Tpo -c -o background.obj `if test -f 'cc/background.cpp'; then $(CYGPATH_W) 'cc/background.cpp'; else $(CYGPATH_W) '$(srcdir)/cc/background.cpp'; fi`
187
 @am__fastdepCXX_TRUE@  $(AM_V_at)$(am__mv) $(DEPDIR)/background.Tpo $(DEPDIR)/background.Po
188
-@am__fastdepCXX_FALSE@ $(AM_V_CXX) @AM_BACKSLASH@
189
-@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='cc/background.cpp' object='background.obj' libtool=no @AMDEPBACKSLASH@
190
+@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='cc/background.cpp' object='background.obj' libtool=no @AMDEPBACKSLASH@
191
 @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
192
-@am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o background.obj `if test -f 'cc/background.cpp'; then $(CYGPATH_W) 'cc/background.cpp'; else $(CYGPATH_W) '$(srcdir)/cc/background.cpp'; fi`
193
+@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o background.obj `if test -f 'cc/background.cpp'; then $(CYGPATH_W) 'cc/background.cpp'; else $(CYGPATH_W) '$(srcdir)/cc/background.cpp'; fi`
194
 
195
 exec.o: cc/exec.cpp
196
 @am__fastdepCXX_TRUE@  $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT exec.o -MD -MP -MF $(DEPDIR)/exec.Tpo -c -o exec.o `test -f 'cc/exec.cpp' || echo '$(srcdir)/'`cc/exec.cpp
197
 @am__fastdepCXX_TRUE@  $(AM_V_at)$(am__mv) $(DEPDIR)/exec.Tpo $(DEPDIR)/exec.Po
198
-@am__fastdepCXX_FALSE@ $(AM_V_CXX) @AM_BACKSLASH@
199
-@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='cc/exec.cpp' object='exec.o' libtool=no @AMDEPBACKSLASH@
200
+@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='cc/exec.cpp' object='exec.o' libtool=no @AMDEPBACKSLASH@
201
 @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
202
-@am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o exec.o `test -f 'cc/exec.cpp' || echo '$(srcdir)/'`cc/exec.cpp
203
+@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o exec.o `test -f 'cc/exec.cpp' || echo '$(srcdir)/'`cc/exec.cpp
204
 
205
 exec.obj: cc/exec.cpp
206
 @am__fastdepCXX_TRUE@  $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT exec.obj -MD -MP -MF $(DEPDIR)/exec.Tpo -c -o exec.obj `if test -f 'cc/exec.cpp'; then $(CYGPATH_W) 'cc/exec.cpp'; else $(CYGPATH_W) '$(srcdir)/cc/exec.cpp'; fi`
207
 @am__fastdepCXX_TRUE@  $(AM_V_at)$(am__mv) $(DEPDIR)/exec.Tpo $(DEPDIR)/exec.Po
208
-@am__fastdepCXX_FALSE@ $(AM_V_CXX) @AM_BACKSLASH@
209
-@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='cc/exec.cpp' object='exec.obj' libtool=no @AMDEPBACKSLASH@
210
+@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='cc/exec.cpp' object='exec.obj' libtool=no @AMDEPBACKSLASH@
211
 @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
212
-@am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o exec.obj `if test -f 'cc/exec.cpp'; then $(CYGPATH_W) 'cc/exec.cpp'; else $(CYGPATH_W) '$(srcdir)/cc/exec.cpp'; fi`
213
+@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o exec.obj `if test -f 'cc/exec.cpp'; then $(CYGPATH_W) 'cc/exec.cpp'; else $(CYGPATH_W) '$(srcdir)/cc/exec.cpp'; fi`
214
 
215
 file.o: cc/file.cpp
216
 @am__fastdepCXX_TRUE@  $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT file.o -MD -MP -MF $(DEPDIR)/file.Tpo -c -o file.o `test -f 'cc/file.cpp' || echo '$(srcdir)/'`cc/file.cpp
217
 @am__fastdepCXX_TRUE@  $(AM_V_at)$(am__mv) $(DEPDIR)/file.Tpo $(DEPDIR)/file.Po
218
-@am__fastdepCXX_FALSE@ $(AM_V_CXX) @AM_BACKSLASH@
219
-@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='cc/file.cpp' object='file.o' libtool=no @AMDEPBACKSLASH@
220
+@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='cc/file.cpp' object='file.o' libtool=no @AMDEPBACKSLASH@
221
 @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
222
-@am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o file.o `test -f 'cc/file.cpp' || echo '$(srcdir)/'`cc/file.cpp
223
+@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o file.o `test -f 'cc/file.cpp' || echo '$(srcdir)/'`cc/file.cpp
224
 
225
 file.obj: cc/file.cpp
226
 @am__fastdepCXX_TRUE@  $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT file.obj -MD -MP -MF $(DEPDIR)/file.Tpo -c -o file.obj `if test -f 'cc/file.cpp'; then $(CYGPATH_W) 'cc/file.cpp'; else $(CYGPATH_W) '$(srcdir)/cc/file.cpp'; fi`
227
 @am__fastdepCXX_TRUE@  $(AM_V_at)$(am__mv) $(DEPDIR)/file.Tpo $(DEPDIR)/file.Po
228
-@am__fastdepCXX_FALSE@ $(AM_V_CXX) @AM_BACKSLASH@
229
-@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='cc/file.cpp' object='file.obj' libtool=no @AMDEPBACKSLASH@
230
+@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='cc/file.cpp' object='file.obj' libtool=no @AMDEPBACKSLASH@
231
 @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
232
-@am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o file.obj `if test -f 'cc/file.cpp'; then $(CYGPATH_W) 'cc/file.cpp'; else $(CYGPATH_W) '$(srcdir)/cc/file.cpp'; fi`
233
+@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o file.obj `if test -f 'cc/file.cpp'; then $(CYGPATH_W) 'cc/file.cpp'; else $(CYGPATH_W) '$(srcdir)/cc/file.cpp'; fi`
234
 
235
 license.o: cc/license.cpp
236
 @am__fastdepCXX_TRUE@  $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT license.o -MD -MP -MF $(DEPDIR)/license.Tpo -c -o license.o `test -f 'cc/license.cpp' || echo '$(srcdir)/'`cc/license.cpp
237
 @am__fastdepCXX_TRUE@  $(AM_V_at)$(am__mv) $(DEPDIR)/license.Tpo $(DEPDIR)/license.Po
238
-@am__fastdepCXX_FALSE@ $(AM_V_CXX) @AM_BACKSLASH@
239
-@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='cc/license.cpp' object='license.o' libtool=no @AMDEPBACKSLASH@
240
+@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='cc/license.cpp' object='license.o' libtool=no @AMDEPBACKSLASH@
241
 @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
242
-@am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o license.o `test -f 'cc/license.cpp' || echo '$(srcdir)/'`cc/license.cpp
243
+@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o license.o `test -f 'cc/license.cpp' || echo '$(srcdir)/'`cc/license.cpp
244
 
245
 license.obj: cc/license.cpp
246
 @am__fastdepCXX_TRUE@  $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT license.obj -MD -MP -MF $(DEPDIR)/license.Tpo -c -o license.obj `if test -f 'cc/license.cpp'; then $(CYGPATH_W) 'cc/license.cpp'; else $(CYGPATH_W) '$(srcdir)/cc/license.cpp'; fi`
247
 @am__fastdepCXX_TRUE@  $(AM_V_at)$(am__mv) $(DEPDIR)/license.Tpo $(DEPDIR)/license.Po
248
-@am__fastdepCXX_FALSE@ $(AM_V_CXX) @AM_BACKSLASH@
249
-@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='cc/license.cpp' object='license.obj' libtool=no @AMDEPBACKSLASH@
250
+@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='cc/license.cpp' object='license.obj' libtool=no @AMDEPBACKSLASH@
251
 @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
252
-@am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o license.obj `if test -f 'cc/license.cpp'; then $(CYGPATH_W) 'cc/license.cpp'; else $(CYGPATH_W) '$(srcdir)/cc/license.cpp'; fi`
253
+@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o license.obj `if test -f 'cc/license.cpp'; then $(CYGPATH_W) 'cc/license.cpp'; else $(CYGPATH_W) '$(srcdir)/cc/license.cpp'; fi`
254
 
255
 wait.o: cc/wait.cpp
256
 @am__fastdepCXX_TRUE@  $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT wait.o -MD -MP -MF $(DEPDIR)/wait.Tpo -c -o wait.o `test -f 'cc/wait.cpp' || echo '$(srcdir)/'`cc/wait.cpp
257
 @am__fastdepCXX_TRUE@  $(AM_V_at)$(am__mv) $(DEPDIR)/wait.Tpo $(DEPDIR)/wait.Po
258
-@am__fastdepCXX_FALSE@ $(AM_V_CXX) @AM_BACKSLASH@
259
-@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='cc/wait.cpp' object='wait.o' libtool=no @AMDEPBACKSLASH@
260
+@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='cc/wait.cpp' object='wait.o' libtool=no @AMDEPBACKSLASH@
261
 @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
262
-@am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o wait.o `test -f 'cc/wait.cpp' || echo '$(srcdir)/'`cc/wait.cpp
263
+@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o wait.o `test -f 'cc/wait.cpp' || echo '$(srcdir)/'`cc/wait.cpp
264
 
265
 wait.obj: cc/wait.cpp
266
 @am__fastdepCXX_TRUE@  $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT wait.obj -MD -MP -MF $(DEPDIR)/wait.Tpo -c -o wait.obj `if test -f 'cc/wait.cpp'; then $(CYGPATH_W) 'cc/wait.cpp'; else $(CYGPATH_W) '$(srcdir)/cc/wait.cpp'; fi`
267
 @am__fastdepCXX_TRUE@  $(AM_V_at)$(am__mv) $(DEPDIR)/wait.Tpo $(DEPDIR)/wait.Po
268
-@am__fastdepCXX_FALSE@ $(AM_V_CXX) @AM_BACKSLASH@
269
-@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='cc/wait.cpp' object='wait.obj' libtool=no @AMDEPBACKSLASH@
270
+@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='cc/wait.cpp' object='wait.obj' libtool=no @AMDEPBACKSLASH@
271
 @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
272
-@am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o wait.obj `if test -f 'cc/wait.cpp'; then $(CYGPATH_W) 'cc/wait.cpp'; else $(CYGPATH_W) '$(srcdir)/cc/wait.cpp'; fi`
273
+@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o wait.obj `if test -f 'cc/wait.cpp'; then $(CYGPATH_W) 'cc/wait.cpp'; else $(CYGPATH_W) '$(srcdir)/cc/wait.cpp'; fi`
274
 
275
 progressbar.o: cc/progressbar.cpp
276
 @am__fastdepCXX_TRUE@  $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT progressbar.o -MD -MP -MF $(DEPDIR)/progressbar.Tpo -c -o progressbar.o `test -f 'cc/progressbar.cpp' || echo '$(srcdir)/'`cc/progressbar.cpp
277
 @am__fastdepCXX_TRUE@  $(AM_V_at)$(am__mv) $(DEPDIR)/progressbar.Tpo $(DEPDIR)/progressbar.Po
278
-@am__fastdepCXX_FALSE@ $(AM_V_CXX) @AM_BACKSLASH@
279
-@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='cc/progressbar.cpp' object='progressbar.o' libtool=no @AMDEPBACKSLASH@
280
+@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='cc/progressbar.cpp' object='progressbar.o' libtool=no @AMDEPBACKSLASH@
281
 @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
282
-@am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o progressbar.o `test -f 'cc/progressbar.cpp' || echo '$(srcdir)/'`cc/progressbar.cpp
283
+@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o progressbar.o `test -f 'cc/progressbar.cpp' || echo '$(srcdir)/'`cc/progressbar.cpp
284
 
285
 progressbar.obj: cc/progressbar.cpp
286
 @am__fastdepCXX_TRUE@  $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT progressbar.obj -MD -MP -MF $(DEPDIR)/progressbar.Tpo -c -o progressbar.obj `if test -f 'cc/progressbar.cpp'; then $(CYGPATH_W) 'cc/progressbar.cpp'; else $(CYGPATH_W) '$(srcdir)/cc/progressbar.cpp'; fi`
287
 @am__fastdepCXX_TRUE@  $(AM_V_at)$(am__mv) $(DEPDIR)/progressbar.Tpo $(DEPDIR)/progressbar.Po
288
-@am__fastdepCXX_FALSE@ $(AM_V_CXX) @AM_BACKSLASH@
289
-@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='cc/progressbar.cpp' object='progressbar.obj' libtool=no @AMDEPBACKSLASH@
290
+@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='cc/progressbar.cpp' object='progressbar.obj' libtool=no @AMDEPBACKSLASH@
291
 @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
292
-@am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o progressbar.obj `if test -f 'cc/progressbar.cpp'; then $(CYGPATH_W) 'cc/progressbar.cpp'; else $(CYGPATH_W) '$(srcdir)/cc/progressbar.cpp'; fi`
293
+@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o progressbar.obj `if test -f 'cc/progressbar.cpp'; then $(CYGPATH_W) 'cc/progressbar.cpp'; else $(CYGPATH_W) '$(srcdir)/cc/progressbar.cpp'; fi`
294
 
295
 options.o: cc/options.cpp
296
 @am__fastdepCXX_TRUE@  $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT options.o -MD -MP -MF $(DEPDIR)/options.Tpo -c -o options.o `test -f 'cc/options.cpp' || echo '$(srcdir)/'`cc/options.cpp
297
 @am__fastdepCXX_TRUE@  $(AM_V_at)$(am__mv) $(DEPDIR)/options.Tpo $(DEPDIR)/options.Po
298
-@am__fastdepCXX_FALSE@ $(AM_V_CXX) @AM_BACKSLASH@
299
-@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='cc/options.cpp' object='options.o' libtool=no @AMDEPBACKSLASH@
300
+@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='cc/options.cpp' object='options.o' libtool=no @AMDEPBACKSLASH@
301
 @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
302
-@am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o options.o `test -f 'cc/options.cpp' || echo '$(srcdir)/'`cc/options.cpp
303
+@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o options.o `test -f 'cc/options.cpp' || echo '$(srcdir)/'`cc/options.cpp
304
 
305
 options.obj: cc/options.cpp
306
 @am__fastdepCXX_TRUE@  $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT options.obj -MD -MP -MF $(DEPDIR)/options.Tpo -c -o options.obj `if test -f 'cc/options.cpp'; then $(CYGPATH_W) 'cc/options.cpp'; else $(CYGPATH_W) '$(srcdir)/cc/options.cpp'; fi`
307
 @am__fastdepCXX_TRUE@  $(AM_V_at)$(am__mv) $(DEPDIR)/options.Tpo $(DEPDIR)/options.Po
308
-@am__fastdepCXX_FALSE@ $(AM_V_CXX) @AM_BACKSLASH@
309
-@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='cc/options.cpp' object='options.obj' libtool=no @AMDEPBACKSLASH@
310
+@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='cc/options.cpp' object='options.obj' libtool=no @AMDEPBACKSLASH@
311
 @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
312
-@am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o options.obj `if test -f 'cc/options.cpp'; then $(CYGPATH_W) 'cc/options.cpp'; else $(CYGPATH_W) '$(srcdir)/cc/options.cpp'; fi`
313
+@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o options.obj `if test -f 'cc/options.cpp'; then $(CYGPATH_W) 'cc/options.cpp'; else $(CYGPATH_W) '$(srcdir)/cc/options.cpp'; fi`
314
 
315
 re.o: cc/re.cpp
316
 @am__fastdepCXX_TRUE@  $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT re.o -MD -MP -MF $(DEPDIR)/re.Tpo -c -o re.o `test -f 'cc/re.cpp' || echo '$(srcdir)/'`cc/re.cpp
317
 @am__fastdepCXX_TRUE@  $(AM_V_at)$(am__mv) $(DEPDIR)/re.Tpo $(DEPDIR)/re.Po
318
-@am__fastdepCXX_FALSE@ $(AM_V_CXX) @AM_BACKSLASH@
319
-@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='cc/re.cpp' object='re.o' libtool=no @AMDEPBACKSLASH@
320
+@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='cc/re.cpp' object='re.o' libtool=no @AMDEPBACKSLASH@
321
 @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
322
-@am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o re.o `test -f 'cc/re.cpp' || echo '$(srcdir)/'`cc/re.cpp
323
+@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o re.o `test -f 'cc/re.cpp' || echo '$(srcdir)/'`cc/re.cpp
324
 
325
 re.obj: cc/re.cpp
326
 @am__fastdepCXX_TRUE@  $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT re.obj -MD -MP -MF $(DEPDIR)/re.Tpo -c -o re.obj `if test -f 'cc/re.cpp'; then $(CYGPATH_W) 'cc/re.cpp'; else $(CYGPATH_W) '$(srcdir)/cc/re.cpp'; fi`
327
 @am__fastdepCXX_TRUE@  $(AM_V_at)$(am__mv) $(DEPDIR)/re.Tpo $(DEPDIR)/re.Po
328
-@am__fastdepCXX_FALSE@ $(AM_V_CXX) @AM_BACKSLASH@
329
-@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='cc/re.cpp' object='re.obj' libtool=no @AMDEPBACKSLASH@
330
+@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='cc/re.cpp' object='re.obj' libtool=no @AMDEPBACKSLASH@
331
 @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
332
-@am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o re.obj `if test -f 'cc/re.cpp'; then $(CYGPATH_W) 'cc/re.cpp'; else $(CYGPATH_W) '$(srcdir)/cc/re.cpp'; fi`
333
+@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o re.obj `if test -f 'cc/re.cpp'; then $(CYGPATH_W) 'cc/re.cpp'; else $(CYGPATH_W) '$(srcdir)/cc/re.cpp'; fi`
334
 
335
 get.o: cc/get.cpp
336
 @am__fastdepCXX_TRUE@  $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT get.o -MD -MP -MF $(DEPDIR)/get.Tpo -c -o get.o `test -f 'cc/get.cpp' || echo '$(srcdir)/'`cc/get.cpp
337
 @am__fastdepCXX_TRUE@  $(AM_V_at)$(am__mv) $(DEPDIR)/get.Tpo $(DEPDIR)/get.Po
338
-@am__fastdepCXX_FALSE@ $(AM_V_CXX) @AM_BACKSLASH@
339
-@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='cc/get.cpp' object='get.o' libtool=no @AMDEPBACKSLASH@
340
+@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='cc/get.cpp' object='get.o' libtool=no @AMDEPBACKSLASH@
341
 @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
342
-@am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o get.o `test -f 'cc/get.cpp' || echo '$(srcdir)/'`cc/get.cpp
343
+@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o get.o `test -f 'cc/get.cpp' || echo '$(srcdir)/'`cc/get.cpp
344
 
345
 get.obj: cc/get.cpp
346
 @am__fastdepCXX_TRUE@  $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT get.obj -MD -MP -MF $(DEPDIR)/get.Tpo -c -o get.obj `if test -f 'cc/get.cpp'; then $(CYGPATH_W) 'cc/get.cpp'; else $(CYGPATH_W) '$(srcdir)/cc/get.cpp'; fi`
347
 @am__fastdepCXX_TRUE@  $(AM_V_at)$(am__mv) $(DEPDIR)/get.Tpo $(DEPDIR)/get.Po
348
-@am__fastdepCXX_FALSE@ $(AM_V_CXX) @AM_BACKSLASH@
349
-@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='cc/get.cpp' object='get.obj' libtool=no @AMDEPBACKSLASH@
350
+@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='cc/get.cpp' object='get.obj' libtool=no @AMDEPBACKSLASH@
351
 @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
352
-@am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o get.obj `if test -f 'cc/get.cpp'; then $(CYGPATH_W) 'cc/get.cpp'; else $(CYGPATH_W) '$(srcdir)/cc/get.cpp'; fi`
353
+@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o get.obj `if test -f 'cc/get.cpp'; then $(CYGPATH_W) 'cc/get.cpp'; else $(CYGPATH_W) '$(srcdir)/cc/get.cpp'; fi`
354
 
355
 application.o: cc/application.cpp
356
 @am__fastdepCXX_TRUE@  $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT application.o -MD -MP -MF $(DEPDIR)/application.Tpo -c -o application.o `test -f 'cc/application.cpp' || echo '$(srcdir)/'`cc/application.cpp
357
 @am__fastdepCXX_TRUE@  $(AM_V_at)$(am__mv) $(DEPDIR)/application.Tpo $(DEPDIR)/application.Po
358
-@am__fastdepCXX_FALSE@ $(AM_V_CXX) @AM_BACKSLASH@
359
-@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='cc/application.cpp' object='application.o' libtool=no @AMDEPBACKSLASH@
360
+@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='cc/application.cpp' object='application.o' libtool=no @AMDEPBACKSLASH@
361
 @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
362
-@am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o application.o `test -f 'cc/application.cpp' || echo '$(srcdir)/'`cc/application.cpp
363
+@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o application.o `test -f 'cc/application.cpp' || echo '$(srcdir)/'`cc/application.cpp
364
 
365
 application.obj: cc/application.cpp
366
 @am__fastdepCXX_TRUE@  $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT application.obj -MD -MP -MF $(DEPDIR)/application.Tpo -c -o application.obj `if test -f 'cc/application.cpp'; then $(CYGPATH_W) 'cc/application.cpp'; else $(CYGPATH_W) '$(srcdir)/cc/application.cpp'; fi`
367
 @am__fastdepCXX_TRUE@  $(AM_V_at)$(am__mv) $(DEPDIR)/application.Tpo $(DEPDIR)/application.Po
368
-@am__fastdepCXX_FALSE@ $(AM_V_CXX) @AM_BACKSLASH@
369
-@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='cc/application.cpp' object='application.obj' libtool=no @AMDEPBACKSLASH@
370
+@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='cc/application.cpp' object='application.obj' libtool=no @AMDEPBACKSLASH@
371
 @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
372
-@am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o application.obj `if test -f 'cc/application.cpp'; then $(CYGPATH_W) 'cc/application.cpp'; else $(CYGPATH_W) '$(srcdir)/cc/application.cpp'; fi`
373
+@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o application.obj `if test -f 'cc/application.cpp'; then $(CYGPATH_W) 'cc/application.cpp'; else $(CYGPATH_W) '$(srcdir)/cc/application.cpp'; fi`
374
 
375
 err.o: quvi/err.cpp
376
 @am__fastdepCXX_TRUE@  $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT err.o -MD -MP -MF $(DEPDIR)/err.Tpo -c -o err.o `test -f 'quvi/err.cpp' || echo '$(srcdir)/'`quvi/err.cpp
377
 @am__fastdepCXX_TRUE@  $(AM_V_at)$(am__mv) $(DEPDIR)/err.Tpo $(DEPDIR)/err.Po
378
-@am__fastdepCXX_FALSE@ $(AM_V_CXX) @AM_BACKSLASH@
379
-@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='quvi/err.cpp' object='err.o' libtool=no @AMDEPBACKSLASH@
380
+@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='quvi/err.cpp' object='err.o' libtool=no @AMDEPBACKSLASH@
381
 @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
382
-@am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o err.o `test -f 'quvi/err.cpp' || echo '$(srcdir)/'`quvi/err.cpp
383
+@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o err.o `test -f 'quvi/err.cpp' || echo '$(srcdir)/'`quvi/err.cpp
384
 
385
 err.obj: quvi/err.cpp
386
 @am__fastdepCXX_TRUE@  $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT err.obj -MD -MP -MF $(DEPDIR)/err.Tpo -c -o err.obj `if test -f 'quvi/err.cpp'; then $(CYGPATH_W) 'quvi/err.cpp'; else $(CYGPATH_W) '$(srcdir)/quvi/err.cpp'; fi`
387
 @am__fastdepCXX_TRUE@  $(AM_V_at)$(am__mv) $(DEPDIR)/err.Tpo $(DEPDIR)/err.Po
388
-@am__fastdepCXX_FALSE@ $(AM_V_CXX) @AM_BACKSLASH@
389
-@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='quvi/err.cpp' object='err.obj' libtool=no @AMDEPBACKSLASH@
390
+@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='quvi/err.cpp' object='err.obj' libtool=no @AMDEPBACKSLASH@
391
 @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
392
-@am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o err.obj `if test -f 'quvi/err.cpp'; then $(CYGPATH_W) 'quvi/err.cpp'; else $(CYGPATH_W) '$(srcdir)/quvi/err.cpp'; fi`
393
+@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o err.obj `if test -f 'quvi/err.cpp'; then $(CYGPATH_W) 'quvi/err.cpp'; else $(CYGPATH_W) '$(srcdir)/quvi/err.cpp'; fi`
394
 
395
 query.o: quvi/query.cpp
396
 @am__fastdepCXX_TRUE@  $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT query.o -MD -MP -MF $(DEPDIR)/query.Tpo -c -o query.o `test -f 'quvi/query.cpp' || echo '$(srcdir)/'`quvi/query.cpp
397
 @am__fastdepCXX_TRUE@  $(AM_V_at)$(am__mv) $(DEPDIR)/query.Tpo $(DEPDIR)/query.Po
398
-@am__fastdepCXX_FALSE@ $(AM_V_CXX) @AM_BACKSLASH@
399
-@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='quvi/query.cpp' object='query.o' libtool=no @AMDEPBACKSLASH@
400
+@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='quvi/query.cpp' object='query.o' libtool=no @AMDEPBACKSLASH@
401
 @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
402
-@am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o query.o `test -f 'quvi/query.cpp' || echo '$(srcdir)/'`quvi/query.cpp
403
+@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o query.o `test -f 'quvi/query.cpp' || echo '$(srcdir)/'`quvi/query.cpp
404
 
405
 query.obj: quvi/query.cpp
406
 @am__fastdepCXX_TRUE@  $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT query.obj -MD -MP -MF $(DEPDIR)/query.Tpo -c -o query.obj `if test -f 'quvi/query.cpp'; then $(CYGPATH_W) 'quvi/query.cpp'; else $(CYGPATH_W) '$(srcdir)/quvi/query.cpp'; fi`
407
 @am__fastdepCXX_TRUE@  $(AM_V_at)$(am__mv) $(DEPDIR)/query.Tpo $(DEPDIR)/query.Po
408
-@am__fastdepCXX_FALSE@ $(AM_V_CXX) @AM_BACKSLASH@
409
-@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='quvi/query.cpp' object='query.obj' libtool=no @AMDEPBACKSLASH@
410
+@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='quvi/query.cpp' object='query.obj' libtool=no @AMDEPBACKSLASH@
411
 @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
412
-@am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o query.obj `if test -f 'quvi/query.cpp'; then $(CYGPATH_W) 'quvi/query.cpp'; else $(CYGPATH_W) '$(srcdir)/quvi/query.cpp'; fi`
413
+@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o query.obj `if test -f 'quvi/query.cpp'; then $(CYGPATH_W) 'quvi/query.cpp'; else $(CYGPATH_W) '$(srcdir)/quvi/query.cpp'; fi`
414
 
415
 misc.o: quvi/misc.cpp
416
 @am__fastdepCXX_TRUE@  $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT misc.o -MD -MP -MF $(DEPDIR)/misc.Tpo -c -o misc.o `test -f 'quvi/misc.cpp' || echo '$(srcdir)/'`quvi/misc.cpp
417
 @am__fastdepCXX_TRUE@  $(AM_V_at)$(am__mv) $(DEPDIR)/misc.Tpo $(DEPDIR)/misc.Po
418
-@am__fastdepCXX_FALSE@ $(AM_V_CXX) @AM_BACKSLASH@
419
-@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='quvi/misc.cpp' object='misc.o' libtool=no @AMDEPBACKSLASH@
420
+@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='quvi/misc.cpp' object='misc.o' libtool=no @AMDEPBACKSLASH@
421
 @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
422
-@am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o misc.o `test -f 'quvi/misc.cpp' || echo '$(srcdir)/'`quvi/misc.cpp
423
+@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o misc.o `test -f 'quvi/misc.cpp' || echo '$(srcdir)/'`quvi/misc.cpp
424
 
425
 misc.obj: quvi/misc.cpp
426
 @am__fastdepCXX_TRUE@  $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT misc.obj -MD -MP -MF $(DEPDIR)/misc.Tpo -c -o misc.obj `if test -f 'quvi/misc.cpp'; then $(CYGPATH_W) 'quvi/misc.cpp'; else $(CYGPATH_W) '$(srcdir)/quvi/misc.cpp'; fi`
427
 @am__fastdepCXX_TRUE@  $(AM_V_at)$(am__mv) $(DEPDIR)/misc.Tpo $(DEPDIR)/misc.Po
428
-@am__fastdepCXX_FALSE@ $(AM_V_CXX) @AM_BACKSLASH@
429
-@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='quvi/misc.cpp' object='misc.obj' libtool=no @AMDEPBACKSLASH@
430
+@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='quvi/misc.cpp' object='misc.obj' libtool=no @AMDEPBACKSLASH@
431
 @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
432
-@am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o misc.obj `if test -f 'quvi/misc.cpp'; then $(CYGPATH_W) 'quvi/misc.cpp'; else $(CYGPATH_W) '$(srcdir)/quvi/misc.cpp'; fi`
433
+@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o misc.obj `if test -f 'quvi/misc.cpp'; then $(CYGPATH_W) 'quvi/misc.cpp'; else $(CYGPATH_W) '$(srcdir)/quvi/misc.cpp'; fi`
434
 
435
 url.o: quvi/url.cpp
436
 @am__fastdepCXX_TRUE@  $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT url.o -MD -MP -MF $(DEPDIR)/url.Tpo -c -o url.o `test -f 'quvi/url.cpp' || echo '$(srcdir)/'`quvi/url.cpp
437
 @am__fastdepCXX_TRUE@  $(AM_V_at)$(am__mv) $(DEPDIR)/url.Tpo $(DEPDIR)/url.Po
438
-@am__fastdepCXX_FALSE@ $(AM_V_CXX) @AM_BACKSLASH@
439
-@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='quvi/url.cpp' object='url.o' libtool=no @AMDEPBACKSLASH@
440
+@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='quvi/url.cpp' object='url.o' libtool=no @AMDEPBACKSLASH@
441
 @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
442
-@am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o url.o `test -f 'quvi/url.cpp' || echo '$(srcdir)/'`quvi/url.cpp
443
+@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o url.o `test -f 'quvi/url.cpp' || echo '$(srcdir)/'`quvi/url.cpp
444
 
445
 url.obj: quvi/url.cpp
446
 @am__fastdepCXX_TRUE@  $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT url.obj -MD -MP -MF $(DEPDIR)/url.Tpo -c -o url.obj `if test -f 'quvi/url.cpp'; then $(CYGPATH_W) 'quvi/url.cpp'; else $(CYGPATH_W) '$(srcdir)/quvi/url.cpp'; fi`
447
 @am__fastdepCXX_TRUE@  $(AM_V_at)$(am__mv) $(DEPDIR)/url.Tpo $(DEPDIR)/url.Po
448
-@am__fastdepCXX_FALSE@ $(AM_V_CXX) @AM_BACKSLASH@
449
-@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='quvi/url.cpp' object='url.obj' libtool=no @AMDEPBACKSLASH@
450
+@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='quvi/url.cpp' object='url.obj' libtool=no @AMDEPBACKSLASH@
451
 @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
452
-@am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o url.obj `if test -f 'quvi/url.cpp'; then $(CYGPATH_W) 'quvi/url.cpp'; else $(CYGPATH_W) '$(srcdir)/quvi/url.cpp'; fi`
453
+@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o url.obj `if test -f 'quvi/url.cpp'; then $(CYGPATH_W) 'quvi/url.cpp'; else $(CYGPATH_W) '$(srcdir)/quvi/url.cpp'; fi`
454
 
455
 opts.o: quvi/opts.cpp
456
 @am__fastdepCXX_TRUE@  $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT opts.o -MD -MP -MF $(DEPDIR)/opts.Tpo -c -o opts.o `test -f 'quvi/opts.cpp' || echo '$(srcdir)/'`quvi/opts.cpp
457
 @am__fastdepCXX_TRUE@  $(AM_V_at)$(am__mv) $(DEPDIR)/opts.Tpo $(DEPDIR)/opts.Po
458
-@am__fastdepCXX_FALSE@ $(AM_V_CXX) @AM_BACKSLASH@
459
-@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='quvi/opts.cpp' object='opts.o' libtool=no @AMDEPBACKSLASH@
460
+@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='quvi/opts.cpp' object='opts.o' libtool=no @AMDEPBACKSLASH@
461
 @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
462
-@am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o opts.o `test -f 'quvi/opts.cpp' || echo '$(srcdir)/'`quvi/opts.cpp
463
+@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o opts.o `test -f 'quvi/opts.cpp' || echo '$(srcdir)/'`quvi/opts.cpp
464
 
465
 opts.obj: quvi/opts.cpp
466
 @am__fastdepCXX_TRUE@  $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT opts.obj -MD -MP -MF $(DEPDIR)/opts.Tpo -c -o opts.obj `if test -f 'quvi/opts.cpp'; then $(CYGPATH_W) 'quvi/opts.cpp'; else $(CYGPATH_W) '$(srcdir)/quvi/opts.cpp'; fi`
467
 @am__fastdepCXX_TRUE@  $(AM_V_at)$(am__mv) $(DEPDIR)/opts.Tpo $(DEPDIR)/opts.Po
468
-@am__fastdepCXX_FALSE@ $(AM_V_CXX) @AM_BACKSLASH@
469
-@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='quvi/opts.cpp' object='opts.obj' libtool=no @AMDEPBACKSLASH@
470
+@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='quvi/opts.cpp' object='opts.obj' libtool=no @AMDEPBACKSLASH@
471
 @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
472
-@am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o opts.obj `if test -f 'quvi/opts.cpp'; then $(CYGPATH_W) 'quvi/opts.cpp'; else $(CYGPATH_W) '$(srcdir)/quvi/opts.cpp'; fi`
473
+@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o opts.obj `if test -f 'quvi/opts.cpp'; then $(CYGPATH_W) 'quvi/opts.cpp'; else $(CYGPATH_W) '$(srcdir)/quvi/opts.cpp'; fi`
474
 
475
 media.o: quvi/media.cpp
476
 @am__fastdepCXX_TRUE@  $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT media.o -MD -MP -MF $(DEPDIR)/media.Tpo -c -o media.o `test -f 'quvi/media.cpp' || echo '$(srcdir)/'`quvi/media.cpp
477
 @am__fastdepCXX_TRUE@  $(AM_V_at)$(am__mv) $(DEPDIR)/media.Tpo $(DEPDIR)/media.Po
478
-@am__fastdepCXX_FALSE@ $(AM_V_CXX) @AM_BACKSLASH@
479
-@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='quvi/media.cpp' object='media.o' libtool=no @AMDEPBACKSLASH@
480
+@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='quvi/media.cpp' object='media.o' libtool=no @AMDEPBACKSLASH@
481
 @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
482
-@am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o media.o `test -f 'quvi/media.cpp' || echo '$(srcdir)/'`quvi/media.cpp
483
+@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o media.o `test -f 'quvi/media.cpp' || echo '$(srcdir)/'`quvi/media.cpp
484
 
485
 media.obj: quvi/media.cpp
486
 @am__fastdepCXX_TRUE@  $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT media.obj -MD -MP -MF $(DEPDIR)/media.Tpo -c -o media.obj `if test -f 'quvi/media.cpp'; then $(CYGPATH_W) 'quvi/media.cpp'; else $(CYGPATH_W) '$(srcdir)/quvi/media.cpp'; fi`
487
 @am__fastdepCXX_TRUE@  $(AM_V_at)$(am__mv) $(DEPDIR)/media.Tpo $(DEPDIR)/media.Po
488
-@am__fastdepCXX_FALSE@ $(AM_V_CXX) @AM_BACKSLASH@
489
-@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='quvi/media.cpp' object='media.obj' libtool=no @AMDEPBACKSLASH@
490
+@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='quvi/media.cpp' object='media.obj' libtool=no @AMDEPBACKSLASH@
491
 @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
492
-@am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o media.obj `if test -f 'quvi/media.cpp'; then $(CYGPATH_W) 'quvi/media.cpp'; else $(CYGPATH_W) '$(srcdir)/quvi/media.cpp'; fi`
493
+@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o media.obj `if test -f 'quvi/media.cpp'; then $(CYGPATH_W) 'quvi/media.cpp'; else $(CYGPATH_W) '$(srcdir)/quvi/media.cpp'; fi`
494
 
495
 mostlyclean-libtool:
496
    -rm -f *.lo
497
@@ -864,10 +823,15 @@
498
 
499
 installcheck: installcheck-am
500
 install-strip:
501
-   $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \
502
-     install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \
503
-     `test -z '$(STRIP)' || \
504
-       echo "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'"` install
505
+   if test -z '$(STRIP)'; then \
506
+     $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \
507
+       install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \
508
+         install; \
509
+   else \
510
+     $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \
511
+       install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \
512
+       "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'" install; \
513
+   fi
514
 mostlyclean-generic:
515
 
516
 clean-generic:
517
cclive-0.7.8.tar.bz2/src/quvi/misc.cpp -> cclive-0.7.9.tar.bz2/src/quvi/misc.cpp Changed
36
 
1
@@ -15,6 +15,7 @@
2
  * along with this program.  If not, see <http://www.gnu.org/licenses/>.
3
  */
4
 
5
+#include <pcrecpp.h>
6
 #include <sstream>
7
 
8
 #include <ccquvi>
9
@@ -34,15 +35,22 @@
10
   return quvi_version(QUVI_VERSION_LONG);
11
 }
12
 
13
-// To string. Mimic quvi(1) behaviour.
14
+typedef std::map<std::string,std::string>::const_iterator smci;
15
+
16
+static const std::string _domain_patt_to_s(smci i)
17
+{
18
+  std::string d = (*i).first;
19
+  pcrecpp::RE("%w\\+").GlobalReplace("com", &d);
20
+  pcrecpp::RE("%").GlobalReplace("", &d);
21
+  return d;
22
+}
23
 
24
 std::string support_to_s(const std::map<std::string,std::string>& map)
25
 {
26
-  std::map<std::string,std::string>::const_iterator iter;
27
   std::stringstream b;
28
 
29
-  for (iter = map.begin(); iter != map.end(); ++iter)
30
-    b << (*iter).first << "\t" << (*iter).second << "\n";
31
+  for (smci iter = map.begin(); iter != map.end(); ++iter)
32
+    b << _domain_patt_to_s(iter) << "\n";
33
 
34
   return b.str();
35
 }
36
cclive-0.7.8.tar.bz2/src/quvi/query.cpp -> cclive-0.7.9.tar.bz2/src/quvi/query.cpp Changed
12
 
1
@@ -159,6 +159,10 @@
2
   std::map<std::string,std::string> map;
3
   char *d=NULL, *f=NULL;
4
 
5
+  // cclive handles HTTP stream URLs only. Ignore all other
6
+  // categories but HTTP.
7
+  quvi_setopt(_quvi, QUVIOPT_CATEGORY, QUVIPROTO_HTTP);
8
+
9
   while (quvi_next_supported_website(_quvi, &d, &f) == QUVI_OK)
10
     {
11
       map[d] = f;
12
Refresh

No build results available

Refresh

No rpmlint results available

Request History
David Haller's avatar

dnh created request over 11 years ago

update to 2.3.3


Peter Linnell's avatar

mrdocs accepted request over 12 years ago

Thanks. Looks good to me!