Merge lp:~logan/ubuntu/trusty/mtdev/1.1.3-1ubuntu1 into lp:ubuntu/trusty/mtdev

Proposed by Logan Rosen
Status: Merged
Merged at revision: 13
Proposed branch: lp:~logan/ubuntu/trusty/mtdev/1.1.3-1ubuntu1
Merge into: lp:ubuntu/trusty/mtdev
Diff against target: 2992 lines (+1503/-500)
17 files modified
ChangeLog (+90/-0)
Makefile.am (+1/-1)
Makefile.in (+154/-116)
aclocal.m4 (+310/-143)
config-aux/compile (+347/-0)
configure (+262/-47)
configure.ac (+2/-2)
debian/changelog (+13/-0)
src/Makefile.am (+1/-1)
src/Makefile.in (+144/-86)
src/caps.c (+6/-6)
src/common.h (+10/-2)
src/match_four.c (+1/-0)
src/state.h (+2/-2)
test/Makefile.am (+1/-1)
test/Makefile.in (+158/-93)
test/mtdev-kernel.c (+1/-0)
To merge this branch: bzr merge lp:~logan/ubuntu/trusty/mtdev/1.1.3-1ubuntu1
Reviewer Review Type Date Requested Status
Daniel Holbach (community) Approve
Review via email: mp+192796@code.launchpad.net
To post a comment you must log in.
Revision history for this message
Daniel Holbach (dholbach) wrote :

Thanks. Uploaded.

review: Approve

Preview Diff

[H/L] Next/Prev Comment, [J/K] Next/Prev File, [N/P] Next/Prev Hunk
=== modified file 'ChangeLog'
--- ChangeLog 2012-09-05 01:22:39 +0000
+++ ChangeLog 2013-10-26 22:20:55 +0000
@@ -1,3 +1,93 @@
1commit 25070dda4b1aaaf402db621d10fc901b82d78377
2Author: Henrik Rydberg <rydberg@euromail.se>
3Date: Sat Aug 3 22:01:06 2013 +0200
4
5 Release mtdev-1.1.4
6
7 Signed-off-by: Henrik Rydberg <rydberg@euromail.se>
8
9commit 72bbb5f42fe8e47d6314eb92a0ada6554644305c
10Merge: b5d8e8e a9ea316
11Author: Henrik Rydberg <rydberg@euromail.se>
12Date: Wed Jul 31 19:25:50 2013 +0200
13
14 Merge more build fixes from Peter Hutterer, along with a more explicit
15 declaration of the backwards compatibility constraints on the API.
16
17 Signed-off-by: Henrik Rydberg <rydberg@euromail.se>
18
19commit a9ea3168615056360cdb21d6f1576d66be2a43fe
20Author: Peter Hutterer <peter.hutterer@who-t.net>
21Date: Wed Jul 24 14:24:43 2013 +1000
22
23 Enable silent rules by default
24
25 silent rules make it easier to spot compiler errors
26
27 Signed-off-by: Peter Hutterer <peter.hutterer@who-t.net>
28
29commit 0bccf8c5268826bdb0835dd9b7964bcc95bae35f
30Author: Peter Hutterer <peter.hutterer@who-t.net>
31Date: Wed Jul 24 14:23:25 2013 +1000
32
33 test: silence compiler warning - implicit declaration of function ‘atoi’
34
35 mtdev-kernel.c:130:2: warning: implicit declaration of function ‘atoi’
36 [-Wimplicit-function-declaration]
37 eslot = atoi(argv[1]) + 1;
38
39 Signed-off-by: Peter Hutterer <peter.hutterer@who-t.net>
40
41commit 1ddaf0af41098d0a01eac162c6fe4d38f2fbbbad
42Author: Peter Hutterer <peter.hutterer@who-t.net>
43Date: Wed Jul 24 13:00:32 2013 +1000
44
45 Fix compiler warning - implicit declaration of function 'abs'
46
47 match_four.c:80:4: warning: implicit declaration of function 'abs'
48 [-Wimplicit-function-declaration]
49 *dist++ = abs(q->x - p->x) + abs(q->y - p->y);
50
51 Signed-off-by: Peter Hutterer <peter.hutterer@who-t.net>
52
53commit 6f7c5c558006bb69fdf0af73103097c012ccfed5
54Author: Peter Hutterer <peter.hutterer@who-t.net>
55Date: Thu Jul 25 13:21:09 2013 +1000
56
57 Replace hardcoded 11 with a define
58
59 The 11 comes from the legacy API that we need to be binary compatible with.
60 Make this clear with a define and a comment.
61
62 Signed-off-by: Peter Hutterer <peter.hutterer@who-t.net>
63
64commit b5d8e8e26c0116e4b6e556a0f6da8777bc55c590
65Merge: e5eb274 f4fe569
66Author: Henrik Rydberg <rydberg@euromail.se>
67Date: Thu Jul 25 10:05:20 2013 +0200
68
69 Merge build fixes from Peter Hutterer.
70
71 Signed-off-by: Henrik Rydberg <rydberg@euromail.se>
72
73commit f4fe56973a29265e22f049ceed1e299573f90ec4
74Author: Peter Hutterer <peter.hutterer@who-t.net>
75Date: Wed Jul 3 15:49:21 2013 +1000
76
77 Rename INCLUDES to AM_CPPFLAGS
78
79 src/Makefile.am:22: warning: 'INCLUDES' is the old name for 'AM_CPPFLAGS' (or '*_CPPFLAGS')
80
81 Signed-off-by: Peter Hutterer <peter.hutterer@who-t.net>
82
83commit e79f2b211830dec2bae35595c6dfd1d06f75d903
84Author: Peter Hutterer <peter.hutterer@who-t.net>
85Date: Wed Jul 3 15:45:12 2013 +1000
86
87 Drop maintainer mode - enable by default
88
89 Signed-off-by: Peter Hutterer <peter.hutterer@who-t.net>
90
1commit e5eb27494cd237e60645db4d7be5b4acf41cb5e091commit e5eb27494cd237e60645db4d7be5b4acf41cb5e0
2Author: Henrik Rydberg <rydberg@euromail.se>92Author: Henrik Rydberg <rydberg@euromail.se>
3Date: Wed Aug 22 22:20:16 2012 +020093Date: Wed Aug 22 22:20:16 2012 +0200
494
=== modified file 'Makefile.am'
--- Makefile.am 2010-08-04 13:09:48 +0000
+++ Makefile.am 2013-10-26 22:20:55 +0000
@@ -3,7 +3,7 @@
3pkgconfigdir = $(libdir)/pkgconfig3pkgconfigdir = $(libdir)/pkgconfig
4pkgconfig_DATA = mtdev.pc4pkgconfig_DATA = mtdev.pc
55
6INCLUDES = $(top_srcdir)/include/6AM_CPPFLAGS = $(top_srcdir)/include/
77
8.PHONY: ChangeLog INSTALL8.PHONY: ChangeLog INSTALL
9INSTALL:9INSTALL:
1010
=== modified file 'Makefile.in'
--- Makefile.in 2012-09-05 01:22:39 +0000
+++ Makefile.in 2013-10-26 22:20:55 +0000
@@ -1,7 +1,7 @@
1# Makefile.in generated by automake 1.12.3 from Makefile.am.1# Makefile.in generated by automake 1.14 from Makefile.am.
2# @configure_input@2# @configure_input@
33
4# Copyright (C) 1994-2012 Free Software Foundation, Inc.4# Copyright (C) 1994-2013 Free Software Foundation, Inc.
55
6# This Makefile.in is free software; the Free Software Foundation6# This Makefile.in is free software; the Free Software Foundation
7# gives unlimited permission to copy and/or distribute it,7# gives unlimited permission to copy and/or distribute it,
@@ -15,23 +15,51 @@
15@SET_MAKE@15@SET_MAKE@
1616
17VPATH = @srcdir@17VPATH = @srcdir@
18am__make_dryrun = \18am__is_gnu_make = test -n '$(MAKEFILE_LIST)' && test -n '$(MAKELEVEL)'
19 { \19am__make_running_with_option = \
20 am__dry=no; \20 case $${target_option-} in \
21 ?) ;; \
22 *) echo "am__make_running_with_option: internal error: invalid" \
23 "target option '$${target_option-}' specified" >&2; \
24 exit 1;; \
25 esac; \
26 has_opt=no; \
27 sane_makeflags=$$MAKEFLAGS; \
28 if $(am__is_gnu_make); then \
29 sane_makeflags=$$MFLAGS; \
30 else \
21 case $$MAKEFLAGS in \31 case $$MAKEFLAGS in \
22 *\\[\ \ ]*) \32 *\\[\ \ ]*) \
23 echo 'am--echo: ; @echo "AM" OK' | $(MAKE) -f - 2>/dev/null \33 bs=\\; \
24 | grep '^AM OK$$' >/dev/null || am__dry=yes;; \34 sane_makeflags=`printf '%s\n' "$$MAKEFLAGS" \
25 *) \35 | sed "s/$$bs$$bs[$$bs $$bs ]*//g"`;; \
26 for am__flg in $$MAKEFLAGS; do \36 esac; \
27 case $$am__flg in \37 fi; \
28 *=*|--*) ;; \38 skip_next=no; \
29 *n*) am__dry=yes; break;; \39 strip_trailopt () \
30 esac; \40 { \
31 done;; \41 flg=`printf '%s\n' "$$flg" | sed "s/$$1.*$$//"`; \
32 esac; \42 }; \
33 test $$am__dry = yes; \43 for flg in $$sane_makeflags; do \
34 }44 test $$skip_next = yes && { skip_next=no; continue; }; \
45 case $$flg in \
46 *=*|--*) continue;; \
47 -*I) strip_trailopt 'I'; skip_next=yes;; \
48 -*I?*) strip_trailopt 'I';; \
49 -*O) strip_trailopt 'O'; skip_next=yes;; \
50 -*O?*) strip_trailopt 'O';; \
51 -*l) strip_trailopt 'l'; skip_next=yes;; \
52 -*l?*) strip_trailopt 'l';; \
53 -[dEDm]) skip_next=yes;; \
54 -[JT]) skip_next=yes;; \
55 esac; \
56 case $$flg in \
57 *$$target_option*) has_opt=yes; break;; \
58 esac; \
59 done; \
60 test $$has_opt = yes
61am__make_dryrun = (target_option=n; $(am__make_running_with_option))
62am__make_keepgoing = (target_option=k; $(am__make_running_with_option))
35pkgdatadir = $(datadir)/@PACKAGE@63pkgdatadir = $(datadir)/@PACKAGE@
36pkgincludedir = $(includedir)/@PACKAGE@64pkgincludedir = $(includedir)/@PACKAGE@
37pkglibdir = $(libdir)/@PACKAGE@65pkglibdir = $(libdir)/@PACKAGE@
@@ -51,16 +79,18 @@
51build_triplet = @build@79build_triplet = @build@
52host_triplet = @host@80host_triplet = @host@
53subdir = .81subdir = .
54DIST_COMMON = README $(am__configure_deps) $(srcdir)/Makefile.am \82DIST_COMMON = $(srcdir)/Makefile.in $(srcdir)/Makefile.am \
55 $(srcdir)/Makefile.in $(srcdir)/config.h.in \83 $(top_srcdir)/configure $(am__configure_deps) \
56 $(srcdir)/mtdev.pc.in $(top_srcdir)/config-aux/config.guess \84 $(srcdir)/config.h.in $(srcdir)/mtdev.pc.in COPYING ChangeLog \
85 INSTALL README config-aux/compile config-aux/config.guess \
86 config-aux/config.sub config-aux/depcomp config-aux/install-sh \
87 config-aux/missing config-aux/ltmain.sh \
88 $(top_srcdir)/config-aux/compile \
89 $(top_srcdir)/config-aux/config.guess \
57 $(top_srcdir)/config-aux/config.sub \90 $(top_srcdir)/config-aux/config.sub \
58 $(top_srcdir)/config-aux/install-sh \91 $(top_srcdir)/config-aux/install-sh \
59 $(top_srcdir)/config-aux/ltmain.sh \92 $(top_srcdir)/config-aux/ltmain.sh \
60 $(top_srcdir)/config-aux/missing $(top_srcdir)/configure \93 $(top_srcdir)/config-aux/missing
61 COPYING ChangeLog INSTALL config-aux/config.guess \
62 config-aux/config.sub config-aux/depcomp config-aux/install-sh \
63 config-aux/ltmain.sh config-aux/missing
64ACLOCAL_M4 = $(top_srcdir)/aclocal.m494ACLOCAL_M4 = $(top_srcdir)/aclocal.m4
65am__aclocal_m4_deps = $(top_srcdir)/configure.ac95am__aclocal_m4_deps = $(top_srcdir)/configure.ac
66am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \96am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \
@@ -71,15 +101,28 @@
71CONFIG_HEADER = config.h101CONFIG_HEADER = config.h
72CONFIG_CLEAN_FILES = mtdev.pc102CONFIG_CLEAN_FILES = mtdev.pc
73CONFIG_CLEAN_VPATH_FILES =103CONFIG_CLEAN_VPATH_FILES =
104AM_V_P = $(am__v_P_@AM_V@)
105am__v_P_ = $(am__v_P_@AM_DEFAULT_V@)
106am__v_P_0 = false
107am__v_P_1 = :
108AM_V_GEN = $(am__v_GEN_@AM_V@)
109am__v_GEN_ = $(am__v_GEN_@AM_DEFAULT_V@)
110am__v_GEN_0 = @echo " GEN " $@;
111am__v_GEN_1 =
112AM_V_at = $(am__v_at_@AM_V@)
113am__v_at_ = $(am__v_at_@AM_DEFAULT_V@)
114am__v_at_0 = @
115am__v_at_1 =
74SOURCES =116SOURCES =
75DIST_SOURCES =117DIST_SOURCES =
76RECURSIVE_TARGETS = all-recursive check-recursive dvi-recursive \118RECURSIVE_TARGETS = all-recursive check-recursive cscopelist-recursive \
77 html-recursive info-recursive install-data-recursive \119 ctags-recursive dvi-recursive html-recursive info-recursive \
78 install-dvi-recursive install-exec-recursive \120 install-data-recursive install-dvi-recursive \
79 install-html-recursive install-info-recursive \121 install-exec-recursive install-html-recursive \
80 install-pdf-recursive install-ps-recursive install-recursive \122 install-info-recursive install-pdf-recursive \
81 installcheck-recursive installdirs-recursive pdf-recursive \123 install-ps-recursive install-recursive installcheck-recursive \
82 ps-recursive uninstall-recursive124 installdirs-recursive pdf-recursive ps-recursive \
125 tags-recursive uninstall-recursive
83am__can_run_installinfo = \126am__can_run_installinfo = \
84 case $$AM_UPDATE_INFO_DIR in \127 case $$AM_UPDATE_INFO_DIR in \
85 n|no|NO) false;; \128 n|no|NO) false;; \
@@ -116,9 +159,30 @@
116DATA = $(pkgconfig_DATA)159DATA = $(pkgconfig_DATA)
117RECURSIVE_CLEAN_TARGETS = mostlyclean-recursive clean-recursive \160RECURSIVE_CLEAN_TARGETS = mostlyclean-recursive clean-recursive \
118 distclean-recursive maintainer-clean-recursive161 distclean-recursive maintainer-clean-recursive
119AM_RECURSIVE_TARGETS = $(RECURSIVE_TARGETS:-recursive=) \162am__recursive_targets = \
120 $(RECURSIVE_CLEAN_TARGETS:-recursive=) tags TAGS ctags CTAGS \163 $(RECURSIVE_TARGETS) \
164 $(RECURSIVE_CLEAN_TARGETS) \
165 $(am__extra_recursive_targets)
166AM_RECURSIVE_TARGETS = $(am__recursive_targets:-recursive=) TAGS CTAGS \
121 cscope distdir dist dist-all distcheck167 cscope distdir dist dist-all distcheck
168am__tagged_files = $(HEADERS) $(SOURCES) $(TAGS_FILES) \
169 $(LISP)config.h.in
170# Read a list of newline-separated strings from the standard input,
171# and print each of them once, without duplicates. Input order is
172# *not* preserved.
173am__uniquify_input = $(AWK) '\
174 BEGIN { nonempty = 0; } \
175 { items[$$0] = 1; nonempty = 1; } \
176 END { if (nonempty) { for (i in items) print i; }; } \
177'
178# Make sure the list of sources is unique. This is necessary because,
179# e.g., the same source file might be shared among _SOURCES variables
180# for different programs/libraries.
181am__define_uniq_tagged_files = \
182 list='$(am__tagged_files)'; \
183 unique=`for i in $$list; do \
184 if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \
185 done | $(am__uniquify_input)`
122ETAGS = etags186ETAGS = etags
123CTAGS = ctags187CTAGS = ctags
124CSCOPE = cscope188CSCOPE = cscope
@@ -167,6 +231,7 @@
167distcleancheck_listfiles = find . -type f -print231distcleancheck_listfiles = find . -type f -print
168ACLOCAL = @ACLOCAL@232ACLOCAL = @ACLOCAL@
169AMTAR = @AMTAR@233AMTAR = @AMTAR@
234AM_DEFAULT_VERBOSITY = @AM_DEFAULT_VERBOSITY@
170AR = @AR@235AR = @AR@
171AUTOCONF = @AUTOCONF@236AUTOCONF = @AUTOCONF@
172AUTOHEADER = @AUTOHEADER@237AUTOHEADER = @AUTOHEADER@
@@ -204,7 +269,6 @@
204LIPO = @LIPO@269LIPO = @LIPO@
205LN_S = @LN_S@270LN_S = @LN_S@
206LTLIBOBJS = @LTLIBOBJS@271LTLIBOBJS = @LTLIBOBJS@
207MAINT = @MAINT@
208MAKEINFO = @MAKEINFO@272MAKEINFO = @MAKEINFO@
209MANIFEST_TOOL = @MANIFEST_TOOL@273MANIFEST_TOOL = @MANIFEST_TOOL@
210MKDIR_P = @MKDIR_P@274MKDIR_P = @MKDIR_P@
@@ -283,14 +347,14 @@
283SUBDIRS = src test347SUBDIRS = src test
284pkgconfigdir = $(libdir)/pkgconfig348pkgconfigdir = $(libdir)/pkgconfig
285pkgconfig_DATA = mtdev.pc349pkgconfig_DATA = mtdev.pc
286INCLUDES = $(top_srcdir)/include/350AM_CPPFLAGS = $(top_srcdir)/include/
287all: config.h351all: config.h
288 $(MAKE) $(AM_MAKEFLAGS) all-recursive352 $(MAKE) $(AM_MAKEFLAGS) all-recursive
289353
290.SUFFIXES:354.SUFFIXES:
291am--refresh: Makefile355am--refresh: Makefile
292 @:356 @:
293$(srcdir)/Makefile.in: @MAINTAINER_MODE_TRUE@ $(srcdir)/Makefile.am $(am__configure_deps)357$(srcdir)/Makefile.in: $(srcdir)/Makefile.am $(am__configure_deps)
294 @for dep in $?; do \358 @for dep in $?; do \
295 case '$(am__configure_deps)' in \359 case '$(am__configure_deps)' in \
296 *$$dep*) \360 *$$dep*) \
@@ -317,20 +381,20 @@
317$(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES)381$(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES)
318 $(SHELL) ./config.status --recheck382 $(SHELL) ./config.status --recheck
319383
320$(top_srcdir)/configure: @MAINTAINER_MODE_TRUE@ $(am__configure_deps)384$(top_srcdir)/configure: $(am__configure_deps)
321 $(am__cd) $(srcdir) && $(AUTOCONF)385 $(am__cd) $(srcdir) && $(AUTOCONF)
322$(ACLOCAL_M4): @MAINTAINER_MODE_TRUE@ $(am__aclocal_m4_deps)386$(ACLOCAL_M4): $(am__aclocal_m4_deps)
323 $(am__cd) $(srcdir) && $(ACLOCAL) $(ACLOCAL_AMFLAGS)387 $(am__cd) $(srcdir) && $(ACLOCAL) $(ACLOCAL_AMFLAGS)
324$(am__aclocal_m4_deps):388$(am__aclocal_m4_deps):
325389
326config.h: stamp-h1390config.h: stamp-h1
327 @if test ! -f $@; then rm -f stamp-h1; else :; fi391 @test -f $@ || rm -f stamp-h1
328 @if test ! -f $@; then $(MAKE) $(AM_MAKEFLAGS) stamp-h1; else :; fi392 @test -f $@ || $(MAKE) $(AM_MAKEFLAGS) stamp-h1
329393
330stamp-h1: $(srcdir)/config.h.in $(top_builddir)/config.status394stamp-h1: $(srcdir)/config.h.in $(top_builddir)/config.status
331 @rm -f stamp-h1395 @rm -f stamp-h1
332 cd $(top_builddir) && $(SHELL) ./config.status config.h396 cd $(top_builddir) && $(SHELL) ./config.status config.h
333$(srcdir)/config.h.in: @MAINTAINER_MODE_TRUE@ $(am__configure_deps) 397$(srcdir)/config.h.in: $(am__configure_deps)
334 ($(am__cd) $(top_srcdir) && $(AUTOHEADER))398 ($(am__cd) $(top_srcdir) && $(AUTOHEADER))
335 rm -f stamp-h1399 rm -f stamp-h1
336 touch $@400 touch $@
@@ -376,14 +440,13 @@
376# (1) if the variable is set in 'config.status', edit 'config.status'440# (1) if the variable is set in 'config.status', edit 'config.status'
377# (which will cause the Makefiles to be regenerated when you run 'make');441# (which will cause the Makefiles to be regenerated when you run 'make');
378# (2) otherwise, pass the desired values on the 'make' command line.442# (2) otherwise, pass the desired values on the 'make' command line.
379$(RECURSIVE_TARGETS) $(RECURSIVE_CLEAN_TARGETS):443$(am__recursive_targets):
380 @fail= failcom='exit 1'; \444 @fail=; \
381 for f in x $$MAKEFLAGS; do \445 if $(am__make_keepgoing); then \
382 case $$f in \446 failcom='fail=yes'; \
383 *=* | --[!k]*);; \447 else \
384 *k*) failcom='fail=yes';; \448 failcom='exit 1'; \
385 esac; \449 fi; \
386 done; \
387 dot_seen=no; \450 dot_seen=no; \
388 target=`echo $@ | sed s/-recursive//`; \451 target=`echo $@ | sed s/-recursive//`; \
389 case "$@" in \452 case "$@" in \
@@ -404,31 +467,13 @@
404 if test "$$dot_seen" = "no"; then \467 if test "$$dot_seen" = "no"; then \
405 $(MAKE) $(AM_MAKEFLAGS) "$$target-am" || exit 1; \468 $(MAKE) $(AM_MAKEFLAGS) "$$target-am" || exit 1; \
406 fi; test -z "$$fail"469 fi; test -z "$$fail"
407tags-recursive:470
408 list='$(SUBDIRS)'; for subdir in $$list; do \471ID: $(am__tagged_files)
409 test "$$subdir" = . || ($(am__cd) $$subdir && $(MAKE) $(AM_MAKEFLAGS) tags); \472 $(am__define_uniq_tagged_files); mkid -fID $$unique
410 done473tags: tags-recursive
411ctags-recursive:474TAGS: tags
412 list='$(SUBDIRS)'; for subdir in $$list; do \475
413 test "$$subdir" = . || ($(am__cd) $$subdir && $(MAKE) $(AM_MAKEFLAGS) ctags); \476tags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files)
414 done
415cscopelist-recursive:
416 list='$(SUBDIRS)'; for subdir in $$list; do \
417 test "$$subdir" = . || ($(am__cd) $$subdir && $(MAKE) $(AM_MAKEFLAGS) cscopelist); \
418 done
419
420ID: $(HEADERS) $(SOURCES) $(LISP) $(TAGS_FILES)
421 list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \
422 unique=`for i in $$list; do \
423 if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \
424 done | \
425 $(AWK) '{ files[$$0] = 1; nonempty = 1; } \
426 END { if (nonempty) { for (i in files) print i; }; }'`; \
427 mkid -fID $$unique
428tags: TAGS
429
430TAGS: tags-recursive $(HEADERS) $(SOURCES) config.h.in $(TAGS_DEPENDENCIES) \
431 $(TAGS_FILES) $(LISP)
432 set x; \477 set x; \
433 here=`pwd`; \478 here=`pwd`; \
434 if ($(ETAGS) --etags-include --version) >/dev/null 2>&1; then \479 if ($(ETAGS) --etags-include --version) >/dev/null 2>&1; then \
@@ -444,12 +489,7 @@
444 set "$$@" "$$include_option=$$here/$$subdir/TAGS"; \489 set "$$@" "$$include_option=$$here/$$subdir/TAGS"; \
445 fi; \490 fi; \
446 done; \491 done; \
447 list='$(SOURCES) $(HEADERS) config.h.in $(LISP) $(TAGS_FILES)'; \492 $(am__define_uniq_tagged_files); \
448 unique=`for i in $$list; do \
449 if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \
450 done | \
451 $(AWK) '{ files[$$0] = 1; nonempty = 1; } \
452 END { if (nonempty) { for (i in files) print i; }; }'`; \
453 shift; \493 shift; \
454 if test -z "$(ETAGS_ARGS)$$*$$unique"; then :; else \494 if test -z "$(ETAGS_ARGS)$$*$$unique"; then :; else \
455 test -n "$$unique" || unique=$$empty_fix; \495 test -n "$$unique" || unique=$$empty_fix; \
@@ -461,15 +501,11 @@
461 $$unique; \501 $$unique; \
462 fi; \502 fi; \
463 fi503 fi
464ctags: CTAGS504ctags: ctags-recursive
465CTAGS: ctags-recursive $(HEADERS) $(SOURCES) config.h.in $(TAGS_DEPENDENCIES) \505
466 $(TAGS_FILES) $(LISP)506CTAGS: ctags
467 list='$(SOURCES) $(HEADERS) config.h.in $(LISP) $(TAGS_FILES)'; \507ctags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files)
468 unique=`for i in $$list; do \508 $(am__define_uniq_tagged_files); \
469 if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \
470 done | \
471 $(AWK) '{ files[$$0] = 1; nonempty = 1; } \
472 END { if (nonempty) { for (i in files) print i; }; }'`; \
473 test -z "$(CTAGS_ARGS)$$unique" \509 test -z "$(CTAGS_ARGS)$$unique" \
474 || $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \510 || $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \
475 $$unique511 $$unique
@@ -478,18 +514,16 @@
478 here=`$(am__cd) $(top_builddir) && pwd` \514 here=`$(am__cd) $(top_builddir) && pwd` \
479 && $(am__cd) $(top_srcdir) \515 && $(am__cd) $(top_srcdir) \
480 && gtags -i $(GTAGS_ARGS) "$$here"516 && gtags -i $(GTAGS_ARGS) "$$here"
481
482cscope: cscope.files517cscope: cscope.files
483 test ! -s cscope.files \518 test ! -s cscope.files \
484 || $(CSCOPE) -b -q $(AM_CSCOPEFLAGS) $(CSCOPEFLAGS) -i cscope.files $(CSCOPE_ARGS)519 || $(CSCOPE) -b -q $(AM_CSCOPEFLAGS) $(CSCOPEFLAGS) -i cscope.files $(CSCOPE_ARGS)
485
486clean-cscope:520clean-cscope:
487 -rm -f cscope.files521 -rm -f cscope.files
488522cscope.files: clean-cscope cscopelist
489cscope.files: clean-cscope cscopelist-recursive cscopelist523cscopelist: cscopelist-recursive
490524
491cscopelist: cscopelist-recursive $(HEADERS) $(SOURCES) $(LISP)525cscopelist-am: $(am__tagged_files)
492 list='$(SOURCES) $(HEADERS) $(LISP)'; \526 list='$(am__tagged_files)'; \
493 case "$(srcdir)" in \527 case "$(srcdir)" in \
494 [\\/]* | ?:[\\/]*) sdir="$(srcdir)" ;; \528 [\\/]* | ?:[\\/]*) sdir="$(srcdir)" ;; \
495 *) sdir=$(subdir)/$(srcdir) ;; \529 *) sdir=$(subdir)/$(srcdir) ;; \
@@ -589,10 +623,16 @@
589 $(am__post_remove_distdir)623 $(am__post_remove_distdir)
590624
591dist-tarZ: distdir625dist-tarZ: distdir
626 @echo WARNING: "Support for shar distribution archives is" \
627 "deprecated." >&2
628 @echo WARNING: "It will be removed altogether in Automake 2.0" >&2
592 tardir=$(distdir) && $(am__tar) | compress -c >$(distdir).tar.Z629 tardir=$(distdir) && $(am__tar) | compress -c >$(distdir).tar.Z
593 $(am__post_remove_distdir)630 $(am__post_remove_distdir)
594631
595dist-shar: distdir632dist-shar: distdir
633 @echo WARNING: "Support for distribution archives compressed with" \
634 "legacy program 'compress' is deprecated." >&2
635 @echo WARNING: "It will be removed altogether in Automake 2.0" >&2
596 shar $(distdir) | GZIP=$(GZIP_ENV) gzip -c >$(distdir).shar.gz636 shar $(distdir) | GZIP=$(GZIP_ENV) gzip -c >$(distdir).shar.gz
597 $(am__post_remove_distdir)637 $(am__post_remove_distdir)
598638
@@ -797,27 +837,25 @@
797837
798uninstall-am: uninstall-pkgconfigDATA838uninstall-am: uninstall-pkgconfigDATA
799839
800.MAKE: $(RECURSIVE_CLEAN_TARGETS) $(RECURSIVE_TARGETS) all \840.MAKE: $(am__recursive_targets) all install-am install-strip
801 cscopelist-recursive ctags-recursive install-am install-strip \
802 tags-recursive
803841
804.PHONY: $(RECURSIVE_CLEAN_TARGETS) $(RECURSIVE_TARGETS) CTAGS GTAGS \842.PHONY: $(am__recursive_targets) CTAGS GTAGS TAGS all all-am \
805 all all-am am--refresh check check-am clean clean-cscope \843 am--refresh check check-am clean clean-cscope clean-generic \
806 clean-generic clean-libtool cscope cscopelist \844 clean-libtool cscope cscopelist-am ctags ctags-am dist \
807 cscopelist-recursive ctags ctags-recursive dist dist-all \845 dist-all dist-bzip2 dist-gzip dist-hook dist-lzip dist-shar \
808 dist-bzip2 dist-gzip dist-hook dist-lzip dist-shar dist-tarZ \846 dist-tarZ dist-xz dist-zip distcheck distclean \
809 dist-xz dist-zip distcheck distclean distclean-generic \847 distclean-generic distclean-hdr distclean-libtool \
810 distclean-hdr distclean-libtool distclean-tags distcleancheck \848 distclean-tags distcleancheck distdir distuninstallcheck dvi \
811 distdir distuninstallcheck dvi dvi-am html html-am info \849 dvi-am html html-am info info-am install install-am \
812 info-am install install-am install-data install-data-am \850 install-data install-data-am install-dvi install-dvi-am \
813 install-dvi install-dvi-am install-exec install-exec-am \851 install-exec install-exec-am install-html install-html-am \
814 install-html install-html-am install-info install-info-am \852 install-info install-info-am install-man install-pdf \
815 install-man install-pdf install-pdf-am install-pkgconfigDATA \853 install-pdf-am install-pkgconfigDATA install-ps install-ps-am \
816 install-ps install-ps-am install-strip installcheck \854 install-strip installcheck installcheck-am installdirs \
817 installcheck-am installdirs installdirs-am maintainer-clean \855 installdirs-am maintainer-clean maintainer-clean-generic \
818 maintainer-clean-generic mostlyclean mostlyclean-generic \856 mostlyclean mostlyclean-generic mostlyclean-libtool pdf pdf-am \
819 mostlyclean-libtool pdf pdf-am ps ps-am tags tags-recursive \857 ps ps-am tags tags-am uninstall uninstall-am \
820 uninstall uninstall-am uninstall-pkgconfigDATA858 uninstall-pkgconfigDATA
821859
822860
823.PHONY: ChangeLog INSTALL861.PHONY: ChangeLog INSTALL
824862
=== modified file 'aclocal.m4'
--- aclocal.m4 2012-09-05 01:22:39 +0000
+++ aclocal.m4 2013-10-26 22:20:55 +0000
@@ -1,6 +1,6 @@
1# generated automatically by aclocal 1.12.3 -*- Autoconf -*-1# generated automatically by aclocal 1.14 -*- Autoconf -*-
22
3# Copyright (C) 1996-2012 Free Software Foundation, Inc.3# Copyright (C) 1996-2013 Free Software Foundation, Inc.
44
5# This file is free software; the Free Software Foundation5# This file is free software; the Free Software Foundation
6# gives unlimited permission to copy and/or distribute it,6# gives unlimited permission to copy and/or distribute it,
@@ -11,6 +11,7 @@
11# even the implied warranty of MERCHANTABILITY or FITNESS FOR A11# even the implied warranty of MERCHANTABILITY or FITNESS FOR A
12# PARTICULAR PURPOSE.12# PARTICULAR PURPOSE.
1313
14m4_ifndef([AC_CONFIG_MACRO_DIRS], [m4_defun([_AM_CONFIG_MACRO_DIRS], [])m4_defun([AC_CONFIG_MACRO_DIRS], [_AM_CONFIG_MACRO_DIRS($@)])])
14m4_ifndef([AC_AUTOCONF_VERSION],15m4_ifndef([AC_AUTOCONF_VERSION],
15 [m4_copy([m4_PACKAGE_VERSION], [AC_AUTOCONF_VERSION])])dnl16 [m4_copy([m4_PACKAGE_VERSION], [AC_AUTOCONF_VERSION])])dnl
16m4_if(m4_defn([AC_AUTOCONF_VERSION]), [2.69],,17m4_if(m4_defn([AC_AUTOCONF_VERSION]), [2.69],,
@@ -8606,7 +8607,7 @@
8606m4_ifndef([_LT_PROG_FC], [AC_DEFUN([_LT_PROG_FC])])8607m4_ifndef([_LT_PROG_FC], [AC_DEFUN([_LT_PROG_FC])])
8607m4_ifndef([_LT_PROG_CXX], [AC_DEFUN([_LT_PROG_CXX])])8608m4_ifndef([_LT_PROG_CXX], [AC_DEFUN([_LT_PROG_CXX])])
86088609
8609# Copyright (C) 2002-2012 Free Software Foundation, Inc.8610# Copyright (C) 2002-2013 Free Software Foundation, Inc.
8610#8611#
8611# This file is free software; the Free Software Foundation8612# This file is free software; the Free Software Foundation
8612# gives unlimited permission to copy and/or distribute it,8613# gives unlimited permission to copy and/or distribute it,
@@ -8618,10 +8619,10 @@
8618# generated from the m4 files accompanying Automake X.Y.8619# generated from the m4 files accompanying Automake X.Y.
8619# (This private macro should not be called outside this file.)8620# (This private macro should not be called outside this file.)
8620AC_DEFUN([AM_AUTOMAKE_VERSION],8621AC_DEFUN([AM_AUTOMAKE_VERSION],
8621[am__api_version='1.12'8622[am__api_version='1.14'
8622dnl Some users find AM_AUTOMAKE_VERSION and mistake it for a way to8623dnl Some users find AM_AUTOMAKE_VERSION and mistake it for a way to
8623dnl require some minimum version. Point them to the right macro.8624dnl require some minimum version. Point them to the right macro.
8624m4_if([$1], [1.12.3], [],8625m4_if([$1], [1.14], [],
8625 [AC_FATAL([Do not call $0, use AM_INIT_AUTOMAKE([$1]).])])dnl8626 [AC_FATAL([Do not call $0, use AM_INIT_AUTOMAKE([$1]).])])dnl
8626])8627])
86278628
@@ -8637,14 +8638,14 @@
8637# Call AM_AUTOMAKE_VERSION and AM_AUTOMAKE_VERSION so they can be traced.8638# Call AM_AUTOMAKE_VERSION and AM_AUTOMAKE_VERSION so they can be traced.
8638# This function is AC_REQUIREd by AM_INIT_AUTOMAKE.8639# This function is AC_REQUIREd by AM_INIT_AUTOMAKE.
8639AC_DEFUN([AM_SET_CURRENT_AUTOMAKE_VERSION],8640AC_DEFUN([AM_SET_CURRENT_AUTOMAKE_VERSION],
8640[AM_AUTOMAKE_VERSION([1.12.3])dnl8641[AM_AUTOMAKE_VERSION([1.14])dnl
8641m4_ifndef([AC_AUTOCONF_VERSION],8642m4_ifndef([AC_AUTOCONF_VERSION],
8642 [m4_copy([m4_PACKAGE_VERSION], [AC_AUTOCONF_VERSION])])dnl8643 [m4_copy([m4_PACKAGE_VERSION], [AC_AUTOCONF_VERSION])])dnl
8643_AM_AUTOCONF_VERSION(m4_defn([AC_AUTOCONF_VERSION]))])8644_AM_AUTOCONF_VERSION(m4_defn([AC_AUTOCONF_VERSION]))])
86448645
8645# AM_AUX_DIR_EXPAND -*- Autoconf -*-8646# AM_AUX_DIR_EXPAND -*- Autoconf -*-
86468647
8647# Copyright (C) 2001-2012 Free Software Foundation, Inc.8648# Copyright (C) 2001-2013 Free Software Foundation, Inc.
8648#8649#
8649# This file is free software; the Free Software Foundation8650# This file is free software; the Free Software Foundation
8650# gives unlimited permission to copy and/or distribute it,8651# gives unlimited permission to copy and/or distribute it,
@@ -8697,7 +8698,7 @@
86978698
8698# AM_CONDITIONAL -*- Autoconf -*-8699# AM_CONDITIONAL -*- Autoconf -*-
86998700
8700# Copyright (C) 1997-2012 Free Software Foundation, Inc.8701# Copyright (C) 1997-2013 Free Software Foundation, Inc.
8701#8702#
8702# This file is free software; the Free Software Foundation8703# This file is free software; the Free Software Foundation
8703# gives unlimited permission to copy and/or distribute it,8704# gives unlimited permission to copy and/or distribute it,
@@ -8728,7 +8729,7 @@
8728Usually this means the macro was only invoked conditionally.]])8729Usually this means the macro was only invoked conditionally.]])
8729fi])])8730fi])])
87308731
8731# Copyright (C) 1999-2012 Free Software Foundation, Inc.8732# Copyright (C) 1999-2013 Free Software Foundation, Inc.
8732#8733#
8733# This file is free software; the Free Software Foundation8734# This file is free software; the Free Software Foundation
8734# gives unlimited permission to copy and/or distribute it,8735# gives unlimited permission to copy and/or distribute it,
@@ -8919,7 +8920,7 @@
89198920
8920# Generate code to set up dependency tracking. -*- Autoconf -*-8921# Generate code to set up dependency tracking. -*- Autoconf -*-
89218922
8922# Copyright (C) 1999-2012 Free Software Foundation, Inc.8923# Copyright (C) 1999-2013 Free Software Foundation, Inc.
8923#8924#
8924# This file is free software; the Free Software Foundation8925# This file is free software; the Free Software Foundation
8925# gives unlimited permission to copy and/or distribute it,8926# gives unlimited permission to copy and/or distribute it,
@@ -8930,7 +8931,7 @@
8930# ------------------------------8931# ------------------------------
8931AC_DEFUN([_AM_OUTPUT_DEPENDENCY_COMMANDS],8932AC_DEFUN([_AM_OUTPUT_DEPENDENCY_COMMANDS],
8932[{8933[{
8933 # Autoconf 2.62 quotes --file arguments for eval, but not when files8934 # Older Autoconf quotes --file arguments for eval, but not when files
8934 # are listed without --file. Let's play safe and only enable the eval8935 # are listed without --file. Let's play safe and only enable the eval
8935 # if we detect the quoting.8936 # if we detect the quoting.
8936 case $CONFIG_FILES in8937 case $CONFIG_FILES in
@@ -8959,7 +8960,7 @@
8959 DEPDIR=`sed -n 's/^DEPDIR = //p' < "$mf"`8960 DEPDIR=`sed -n 's/^DEPDIR = //p' < "$mf"`
8960 test -z "$DEPDIR" && continue8961 test -z "$DEPDIR" && continue
8961 am__include=`sed -n 's/^am__include = //p' < "$mf"`8962 am__include=`sed -n 's/^am__include = //p' < "$mf"`
8962 test -z "am__include" && continue8963 test -z "$am__include" && continue
8963 am__quote=`sed -n 's/^am__quote = //p' < "$mf"`8964 am__quote=`sed -n 's/^am__quote = //p' < "$mf"`
8964 # Find all dependency output files, they are included files with8965 # Find all dependency output files, they are included files with
8965 # $(DEPDIR) in their names. We invoke sed twice because it is the8966 # $(DEPDIR) in their names. We invoke sed twice because it is the
@@ -8995,7 +8996,7 @@
89958996
8996# Do all the work for Automake. -*- Autoconf -*-8997# Do all the work for Automake. -*- Autoconf -*-
89978998
8998# Copyright (C) 1996-2012 Free Software Foundation, Inc.8999# Copyright (C) 1996-2013 Free Software Foundation, Inc.
8999#9000#
9000# This file is free software; the Free Software Foundation9001# This file is free software; the Free Software Foundation
9001# gives unlimited permission to copy and/or distribute it,9002# gives unlimited permission to copy and/or distribute it,
@@ -9004,6 +9005,12 @@
9004# This macro actually does too much. Some checks are only needed if9005# This macro actually does too much. Some checks are only needed if
9005# your package does certain things. But this isn't really a big deal.9006# your package does certain things. But this isn't really a big deal.
90069007
9008dnl Redefine AC_PROG_CC to automatically invoke _AM_PROG_CC_C_O.
9009m4_define([AC_PROG_CC],
9010m4_defn([AC_PROG_CC])
9011[_AM_PROG_CC_C_O
9012])
9013
9007# AM_INIT_AUTOMAKE(PACKAGE, VERSION, [NO-DEFINE])9014# AM_INIT_AUTOMAKE(PACKAGE, VERSION, [NO-DEFINE])
9008# AM_INIT_AUTOMAKE([OPTIONS])9015# AM_INIT_AUTOMAKE([OPTIONS])
9009# -----------------------------------------------9016# -----------------------------------------------
@@ -9016,7 +9023,7 @@
9016# arguments mandatory, and then we can depend on a new Autoconf9023# arguments mandatory, and then we can depend on a new Autoconf
9017# release and drop the old call support.9024# release and drop the old call support.
9018AC_DEFUN([AM_INIT_AUTOMAKE],9025AC_DEFUN([AM_INIT_AUTOMAKE],
9019[AC_PREREQ([2.62])dnl9026[AC_PREREQ([2.65])dnl
9020dnl Autoconf wants to disallow AM_ names. We explicitly allow9027dnl Autoconf wants to disallow AM_ names. We explicitly allow
9021dnl the ones we care about.9028dnl the ones we care about.
9022m4_pattern_allow([^AM_[A-Z]+FLAGS$])dnl9029m4_pattern_allow([^AM_[A-Z]+FLAGS$])dnl
@@ -9046,8 +9053,7 @@
9046dnl Distinguish between old-style and new-style calls.9053dnl Distinguish between old-style and new-style calls.
9047m4_ifval([$2],9054m4_ifval([$2],
9048[AC_DIAGNOSE([obsolete],9055[AC_DIAGNOSE([obsolete],
9049[$0: two- and three-arguments forms are deprecated. For more info, see:9056 [$0: two- and three-arguments forms are deprecated.])
9050http://www.gnu.org/software/automake/manual/automake.html#Modernize-AM_INIT_AUTOMAKE-invocation])
9051m4_ifval([$3], [_AM_SET_OPTION([no-define])])dnl9057m4_ifval([$3], [_AM_SET_OPTION([no-define])])dnl
9052 AC_SUBST([PACKAGE], [$1])dnl9058 AC_SUBST([PACKAGE], [$1])dnl
9053 AC_SUBST([VERSION], [$2])],9059 AC_SUBST([VERSION], [$2])],
@@ -9101,22 +9107,60 @@
9101 [_AM_DEPENDENCIES([OBJC])],9107 [_AM_DEPENDENCIES([OBJC])],
9102 [m4_define([AC_PROG_OBJC],9108 [m4_define([AC_PROG_OBJC],
9103 m4_defn([AC_PROG_OBJC])[_AM_DEPENDENCIES([OBJC])])])dnl9109 m4_defn([AC_PROG_OBJC])[_AM_DEPENDENCIES([OBJC])])])dnl
9104dnl Support for Objective C++ was only introduced in Autoconf 2.65,9110AC_PROVIDE_IFELSE([AC_PROG_OBJCXX],
9105dnl but we still cater to Autoconf 2.62.
9106m4_ifdef([AC_PROG_OBJCXX],
9107[AC_PROVIDE_IFELSE([AC_PROG_OBJCXX],
9108 [_AM_DEPENDENCIES([OBJCXX])],9111 [_AM_DEPENDENCIES([OBJCXX])],
9109 [m4_define([AC_PROG_OBJCXX],9112 [m4_define([AC_PROG_OBJCXX],
9110 m4_defn([AC_PROG_OBJCXX])[_AM_DEPENDENCIES([OBJCXX])])])])dnl9113 m4_defn([AC_PROG_OBJCXX])[_AM_DEPENDENCIES([OBJCXX])])])dnl
9111])9114])
9112_AM_IF_OPTION([silent-rules], [AC_REQUIRE([AM_SILENT_RULES])])dnl9115AC_REQUIRE([AM_SILENT_RULES])dnl
9113dnl The 'parallel-tests' driver may need to know about EXEEXT, so add the9116dnl The testsuite driver may need to know about EXEEXT, so add the
9114dnl 'am__EXEEXT' conditional if _AM_COMPILER_EXEEXT was seen. This macro9117dnl 'am__EXEEXT' conditional if _AM_COMPILER_EXEEXT was seen. This
9115dnl is hooked onto _AC_COMPILER_EXEEXT early, see below.9118dnl macro is hooked onto _AC_COMPILER_EXEEXT early, see below.
9116AC_CONFIG_COMMANDS_PRE(dnl9119AC_CONFIG_COMMANDS_PRE(dnl
9117[m4_provide_if([_AM_COMPILER_EXEEXT],9120[m4_provide_if([_AM_COMPILER_EXEEXT],
9118 [AM_CONDITIONAL([am__EXEEXT], [test -n "$EXEEXT"])])])dnl9121 [AM_CONDITIONAL([am__EXEEXT], [test -n "$EXEEXT"])])])dnl
9119])9122
9123# POSIX will say in a future version that running "rm -f" with no argument
9124# is OK; and we want to be able to make that assumption in our Makefile
9125# recipes. So use an aggressive probe to check that the usage we want is
9126# actually supported "in the wild" to an acceptable degree.
9127# See automake bug#10828.
9128# To make any issue more visible, cause the running configure to be aborted
9129# by default if the 'rm' program in use doesn't match our expectations; the
9130# user can still override this though.
9131if rm -f && rm -fr && rm -rf; then : OK; else
9132 cat >&2 <<'END'
9133Oops!
9134
9135Your 'rm' program seems unable to run without file operands specified
9136on the command line, even when the '-f' option is present. This is contrary
9137to the behaviour of most rm programs out there, and not conforming with
9138the upcoming POSIX standard: <http://austingroupbugs.net/view.php?id=542>
9139
9140Please tell bug-automake@gnu.org about your system, including the value
9141of your $PATH and any error possibly output before this message. This
9142can help us improve future automake versions.
9143
9144END
9145 if test x"$ACCEPT_INFERIOR_RM_PROGRAM" = x"yes"; then
9146 echo 'Configuration will proceed anyway, since you have set the' >&2
9147 echo 'ACCEPT_INFERIOR_RM_PROGRAM variable to "yes"' >&2
9148 echo >&2
9149 else
9150 cat >&2 <<'END'
9151Aborting the configuration process, to ensure you take notice of the issue.
9152
9153You can download and install GNU coreutils to get an 'rm' implementation
9154that behaves properly: <http://www.gnu.org/software/coreutils/>.
9155
9156If you want to complete the configuration process using your problematic
9157'rm' anyway, export the environment variable ACCEPT_INFERIOR_RM_PROGRAM
9158to "yes", and re-run configure.
9159
9160END
9161 AC_MSG_ERROR([Your 'rm' program is bad, sorry.])
9162 fi
9163fi])
91209164
9121dnl Hook into '_AC_COMPILER_EXEEXT' early to learn its expansion. Do not9165dnl Hook into '_AC_COMPILER_EXEEXT' early to learn its expansion. Do not
9122dnl add the conditional right here, as _AC_COMPILER_EXEEXT may be further9166dnl add the conditional right here, as _AC_COMPILER_EXEEXT may be further
@@ -9124,7 +9168,6 @@
9124m4_define([_AC_COMPILER_EXEEXT],9168m4_define([_AC_COMPILER_EXEEXT],
9125m4_defn([_AC_COMPILER_EXEEXT])[m4_provide([_AM_COMPILER_EXEEXT])])9169m4_defn([_AC_COMPILER_EXEEXT])[m4_provide([_AM_COMPILER_EXEEXT])])
91269170
9127
9128# When config.status generates a header, we must update the stamp-h file.9171# When config.status generates a header, we must update the stamp-h file.
9129# This file resides in the same directory as the config header9172# This file resides in the same directory as the config header
9130# that is generated. The stamp files are numbered to have different names.9173# that is generated. The stamp files are numbered to have different names.
@@ -9146,7 +9189,7 @@
9146done9189done
9147echo "timestamp for $_am_arg" >`AS_DIRNAME(["$_am_arg"])`/stamp-h[]$_am_stamp_count])9190echo "timestamp for $_am_arg" >`AS_DIRNAME(["$_am_arg"])`/stamp-h[]$_am_stamp_count])
91489191
9149# Copyright (C) 2001-2012 Free Software Foundation, Inc.9192# Copyright (C) 2001-2013 Free Software Foundation, Inc.
9150#9193#
9151# This file is free software; the Free Software Foundation9194# This file is free software; the Free Software Foundation
9152# gives unlimited permission to copy and/or distribute it,9195# gives unlimited permission to copy and/or distribute it,
@@ -9167,7 +9210,7 @@
9167fi9210fi
9168AC_SUBST([install_sh])])9211AC_SUBST([install_sh])])
91699212
9170# Copyright (C) 2003-2012 Free Software Foundation, Inc.9213# Copyright (C) 2003-2013 Free Software Foundation, Inc.
9171#9214#
9172# This file is free software; the Free Software Foundation9215# This file is free software; the Free Software Foundation
9173# gives unlimited permission to copy and/or distribute it,9216# gives unlimited permission to copy and/or distribute it,
@@ -9186,47 +9229,9 @@
9186rmdir .tst 2>/dev/null9229rmdir .tst 2>/dev/null
9187AC_SUBST([am__leading_dot])])9230AC_SUBST([am__leading_dot])])
91889231
9189# Add --enable-maintainer-mode option to configure. -*- Autoconf -*-
9190# From Jim Meyering
9191
9192# Copyright (C) 1996-2012 Free Software Foundation, Inc.
9193#
9194# This file is free software; the Free Software Foundation
9195# gives unlimited permission to copy and/or distribute it,
9196# with or without modifications, as long as this notice is preserved.
9197
9198# AM_MAINTAINER_MODE([DEFAULT-MODE])
9199# ----------------------------------
9200# Control maintainer-specific portions of Makefiles.
9201# Default is to disable them, unless 'enable' is passed literally.
9202# For symmetry, 'disable' may be passed as well. Anyway, the user
9203# can override the default with the --enable/--disable switch.
9204AC_DEFUN([AM_MAINTAINER_MODE],
9205[m4_case(m4_default([$1], [disable]),
9206 [enable], [m4_define([am_maintainer_other], [disable])],
9207 [disable], [m4_define([am_maintainer_other], [enable])],
9208 [m4_define([am_maintainer_other], [enable])
9209 m4_warn([syntax], [unexpected argument to AM@&t@_MAINTAINER_MODE: $1])])
9210AC_MSG_CHECKING([whether to enable maintainer-specific portions of Makefiles])
9211 dnl maintainer-mode's default is 'disable' unless 'enable' is passed
9212 AC_ARG_ENABLE([maintainer-mode],
9213 [AS_HELP_STRING([--]am_maintainer_other[-maintainer-mode],
9214 am_maintainer_other[ make rules and dependencies not useful
9215 (and sometimes confusing) to the casual installer])],
9216 [USE_MAINTAINER_MODE=$enableval],
9217 [USE_MAINTAINER_MODE=]m4_if(am_maintainer_other, [enable], [no], [yes]))
9218 AC_MSG_RESULT([$USE_MAINTAINER_MODE])
9219 AM_CONDITIONAL([MAINTAINER_MODE], [test $USE_MAINTAINER_MODE = yes])
9220 MAINT=$MAINTAINER_MODE_TRUE
9221 AC_SUBST([MAINT])dnl
9222]
9223)
9224
9225AU_DEFUN([jm_MAINTAINER_MODE], [AM_MAINTAINER_MODE])
9226
9227# Check to see how 'make' treats includes. -*- Autoconf -*-9232# Check to see how 'make' treats includes. -*- Autoconf -*-
92289233
9229# Copyright (C) 2001-2012 Free Software Foundation, Inc.9234# Copyright (C) 2001-2013 Free Software Foundation, Inc.
9230#9235#
9231# This file is free software; the Free Software Foundation9236# This file is free software; the Free Software Foundation
9232# gives unlimited permission to copy and/or distribute it,9237# gives unlimited permission to copy and/or distribute it,
@@ -9276,7 +9281,7 @@
92769281
9277# Fake the existence of programs that GNU maintainers use. -*- Autoconf -*-9282# Fake the existence of programs that GNU maintainers use. -*- Autoconf -*-
92789283
9279# Copyright (C) 1997-2012 Free Software Foundation, Inc.9284# Copyright (C) 1997-2013 Free Software Foundation, Inc.
9280#9285#
9281# This file is free software; the Free Software Foundation9286# This file is free software; the Free Software Foundation
9282# gives unlimited permission to copy and/or distribute it,9287# gives unlimited permission to copy and/or distribute it,
@@ -9291,8 +9296,8 @@
92919296
9292# AM_MISSING_HAS_RUN9297# AM_MISSING_HAS_RUN
9293# ------------------9298# ------------------
9294# Define MISSING if not defined so far and test if it supports --run.9299# Define MISSING if not defined so far and test if it is modern enough.
9295# If it does, set am_missing_run to use it, otherwise, to nothing.9300# If it is, set am_missing_run to use it, otherwise, to nothing.
9296AC_DEFUN([AM_MISSING_HAS_RUN],9301AC_DEFUN([AM_MISSING_HAS_RUN],
9297[AC_REQUIRE([AM_AUX_DIR_EXPAND])dnl9302[AC_REQUIRE([AM_AUX_DIR_EXPAND])dnl
9298AC_REQUIRE_AUX_FILE([missing])dnl9303AC_REQUIRE_AUX_FILE([missing])dnl
@@ -9305,8 +9310,8 @@
9305 esac9310 esac
9306fi9311fi
9307# Use eval to expand $SHELL9312# Use eval to expand $SHELL
9308if eval "$MISSING --run true"; then9313if eval "$MISSING --is-lightweight"; then
9309 am_missing_run="$MISSING --run "9314 am_missing_run="$MISSING "
9310else9315else
9311 am_missing_run=9316 am_missing_run=
9312 AC_MSG_WARN(['missing' script is too old or missing])9317 AC_MSG_WARN(['missing' script is too old or missing])
@@ -9315,7 +9320,7 @@
93159320
9316# Helper functions for option handling. -*- Autoconf -*-9321# Helper functions for option handling. -*- Autoconf -*-
93179322
9318# Copyright (C) 2001-2012 Free Software Foundation, Inc.9323# Copyright (C) 2001-2013 Free Software Foundation, Inc.
9319#9324#
9320# This file is free software; the Free Software Foundation9325# This file is free software; the Free Software Foundation
9321# gives unlimited permission to copy and/or distribute it,9326# gives unlimited permission to copy and/or distribute it,
@@ -9344,9 +9349,73 @@
9344AC_DEFUN([_AM_IF_OPTION],9349AC_DEFUN([_AM_IF_OPTION],
9345[m4_ifset(_AM_MANGLE_OPTION([$1]), [$2], [$3])])9350[m4_ifset(_AM_MANGLE_OPTION([$1]), [$2], [$3])])
93469351
9352# Copyright (C) 1999-2013 Free Software Foundation, Inc.
9353#
9354# This file is free software; the Free Software Foundation
9355# gives unlimited permission to copy and/or distribute it,
9356# with or without modifications, as long as this notice is preserved.
9357
9358# _AM_PROG_CC_C_O
9359# ---------------
9360# Like AC_PROG_CC_C_O, but changed for automake. We rewrite AC_PROG_CC
9361# to automatically call this.
9362AC_DEFUN([_AM_PROG_CC_C_O],
9363[AC_REQUIRE([AM_AUX_DIR_EXPAND])dnl
9364AC_REQUIRE_AUX_FILE([compile])dnl
9365AC_LANG_PUSH([C])dnl
9366AC_CACHE_CHECK(
9367 [whether $CC understands -c and -o together],
9368 [am_cv_prog_cc_c_o],
9369 [AC_LANG_CONFTEST([AC_LANG_PROGRAM([])])
9370 # Make sure it works both with $CC and with simple cc.
9371 # Following AC_PROG_CC_C_O, we do the test twice because some
9372 # compilers refuse to overwrite an existing .o file with -o,
9373 # though they will create one.
9374 am_cv_prog_cc_c_o=yes
9375 for am_i in 1 2; do
9376 if AM_RUN_LOG([$CC -c conftest.$ac_ext -o conftest2.$ac_objext]) \
9377 && test -f conftest2.$ac_objext; then
9378 : OK
9379 else
9380 am_cv_prog_cc_c_o=no
9381 break
9382 fi
9383 done
9384 rm -f core conftest*
9385 unset am_i])
9386if test "$am_cv_prog_cc_c_o" != yes; then
9387 # Losing compiler, so override with the script.
9388 # FIXME: It is wrong to rewrite CC.
9389 # But if we don't then we get into trouble of one sort or another.
9390 # A longer-term fix would be to have automake use am__CC in this case,
9391 # and then we could set am__CC="\$(top_srcdir)/compile \$(CC)"
9392 CC="$am_aux_dir/compile $CC"
9393fi
9394AC_LANG_POP([C])])
9395
9396# For backward compatibility.
9397AC_DEFUN_ONCE([AM_PROG_CC_C_O], [AC_REQUIRE([AC_PROG_CC])])
9398
9399# Copyright (C) 2001-2013 Free Software Foundation, Inc.
9400#
9401# This file is free software; the Free Software Foundation
9402# gives unlimited permission to copy and/or distribute it,
9403# with or without modifications, as long as this notice is preserved.
9404
9405# AM_RUN_LOG(COMMAND)
9406# -------------------
9407# Run COMMAND, save the exit status in ac_status, and log it.
9408# (This has been adapted from Autoconf's _AC_RUN_LOG macro.)
9409AC_DEFUN([AM_RUN_LOG],
9410[{ echo "$as_me:$LINENO: $1" >&AS_MESSAGE_LOG_FD
9411 ($1) >&AS_MESSAGE_LOG_FD 2>&AS_MESSAGE_LOG_FD
9412 ac_status=$?
9413 echo "$as_me:$LINENO: \$? = $ac_status" >&AS_MESSAGE_LOG_FD
9414 (exit $ac_status); }])
9415
9347# Check to make sure that the build environment is sane. -*- Autoconf -*-9416# Check to make sure that the build environment is sane. -*- Autoconf -*-
93489417
9349# Copyright (C) 1996-2012 Free Software Foundation, Inc.9418# Copyright (C) 1996-2013 Free Software Foundation, Inc.
9350#9419#
9351# This file is free software; the Free Software Foundation9420# This file is free software; the Free Software Foundation
9352# gives unlimited permission to copy and/or distribute it,9421# gives unlimited permission to copy and/or distribute it,
@@ -9427,7 +9496,67 @@
9427rm -f conftest.file9496rm -f conftest.file
9428])9497])
94299498
9430# Copyright (C) 2001-2012 Free Software Foundation, Inc.9499# Copyright (C) 2009-2013 Free Software Foundation, Inc.
9500#
9501# This file is free software; the Free Software Foundation
9502# gives unlimited permission to copy and/or distribute it,
9503# with or without modifications, as long as this notice is preserved.
9504
9505# AM_SILENT_RULES([DEFAULT])
9506# --------------------------
9507# Enable less verbose build rules; with the default set to DEFAULT
9508# ("yes" being less verbose, "no" or empty being verbose).
9509AC_DEFUN([AM_SILENT_RULES],
9510[AC_ARG_ENABLE([silent-rules], [dnl
9511AS_HELP_STRING(
9512 [--enable-silent-rules],
9513 [less verbose build output (undo: "make V=1")])
9514AS_HELP_STRING(
9515 [--disable-silent-rules],
9516 [verbose build output (undo: "make V=0")])dnl
9517])
9518case $enable_silent_rules in @%:@ (((
9519 yes) AM_DEFAULT_VERBOSITY=0;;
9520 no) AM_DEFAULT_VERBOSITY=1;;
9521 *) AM_DEFAULT_VERBOSITY=m4_if([$1], [yes], [0], [1]);;
9522esac
9523dnl
9524dnl A few 'make' implementations (e.g., NonStop OS and NextStep)
9525dnl do not support nested variable expansions.
9526dnl See automake bug#9928 and bug#10237.
9527am_make=${MAKE-make}
9528AC_CACHE_CHECK([whether $am_make supports nested variables],
9529 [am_cv_make_support_nested_variables],
9530 [if AS_ECHO([['TRUE=$(BAR$(V))
9531BAR0=false
9532BAR1=true
9533V=1
9534am__doit:
9535 @$(TRUE)
9536.PHONY: am__doit']]) | $am_make -f - >/dev/null 2>&1; then
9537 am_cv_make_support_nested_variables=yes
9538else
9539 am_cv_make_support_nested_variables=no
9540fi])
9541if test $am_cv_make_support_nested_variables = yes; then
9542 dnl Using '$V' instead of '$(V)' breaks IRIX make.
9543 AM_V='$(V)'
9544 AM_DEFAULT_V='$(AM_DEFAULT_VERBOSITY)'
9545else
9546 AM_V=$AM_DEFAULT_VERBOSITY
9547 AM_DEFAULT_V=$AM_DEFAULT_VERBOSITY
9548fi
9549AC_SUBST([AM_V])dnl
9550AM_SUBST_NOTMAKE([AM_V])dnl
9551AC_SUBST([AM_DEFAULT_V])dnl
9552AM_SUBST_NOTMAKE([AM_DEFAULT_V])dnl
9553AC_SUBST([AM_DEFAULT_VERBOSITY])dnl
9554AM_BACKSLASH='\'
9555AC_SUBST([AM_BACKSLASH])dnl
9556_AM_SUBST_NOTMAKE([AM_BACKSLASH])dnl
9557])
9558
9559# Copyright (C) 2001-2013 Free Software Foundation, Inc.
9431#9560#
9432# This file is free software; the Free Software Foundation9561# This file is free software; the Free Software Foundation
9433# gives unlimited permission to copy and/or distribute it,9562# gives unlimited permission to copy and/or distribute it,
@@ -9455,7 +9584,7 @@
9455INSTALL_STRIP_PROGRAM="\$(install_sh) -c -s"9584INSTALL_STRIP_PROGRAM="\$(install_sh) -c -s"
9456AC_SUBST([INSTALL_STRIP_PROGRAM])])9585AC_SUBST([INSTALL_STRIP_PROGRAM])])
94579586
9458# Copyright (C) 2006-2012 Free Software Foundation, Inc.9587# Copyright (C) 2006-2013 Free Software Foundation, Inc.
9459#9588#
9460# This file is free software; the Free Software Foundation9589# This file is free software; the Free Software Foundation
9461# gives unlimited permission to copy and/or distribute it,9590# gives unlimited permission to copy and/or distribute it,
@@ -9474,7 +9603,7 @@
94749603
9475# Check how to create a tarball. -*- Autoconf -*-9604# Check how to create a tarball. -*- Autoconf -*-
94769605
9477# Copyright (C) 2004-2012 Free Software Foundation, Inc.9606# Copyright (C) 2004-2013 Free Software Foundation, Inc.
9478#9607#
9479# This file is free software; the Free Software Foundation9608# This file is free software; the Free Software Foundation
9480# gives unlimited permission to copy and/or distribute it,9609# gives unlimited permission to copy and/or distribute it,
@@ -9493,76 +9622,114 @@
9493# Substitute a variable $(am__untar) that extract such9622# Substitute a variable $(am__untar) that extract such
9494# a tarball read from stdin.9623# a tarball read from stdin.
9495# $(am__untar) < result.tar9624# $(am__untar) < result.tar
9625#
9496AC_DEFUN([_AM_PROG_TAR],9626AC_DEFUN([_AM_PROG_TAR],
9497[# Always define AMTAR for backward compatibility. Yes, it's still used9627[# Always define AMTAR for backward compatibility. Yes, it's still used
9498# in the wild :-( We should find a proper way to deprecate it ...9628# in the wild :-( We should find a proper way to deprecate it ...
9499AC_SUBST([AMTAR], ['$${TAR-tar}'])9629AC_SUBST([AMTAR], ['$${TAR-tar}'])
9630
9631# We'll loop over all known methods to create a tar archive until one works.
9632_am_tools='gnutar m4_if([$1], [ustar], [plaintar]) pax cpio none'
9633
9500m4_if([$1], [v7],9634m4_if([$1], [v7],
9501 [am__tar='$${TAR-tar} chof - "$$tardir"' am__untar='$${TAR-tar} xf -'],9635 [am__tar='$${TAR-tar} chof - "$$tardir"' am__untar='$${TAR-tar} xf -'],
9502 [m4_case([$1], [ustar],, [pax],,9636
9503 [m4_fatal([Unknown tar format])])9637 [m4_case([$1],
9504AC_MSG_CHECKING([how to create a $1 tar archive])9638 [ustar],
9505# Loop over all known methods to create a tar archive until one works.9639 [# The POSIX 1988 'ustar' format is defined with fixed-size fields.
9506_am_tools='gnutar m4_if([$1], [ustar], [plaintar]) pax cpio none'9640 # There is notably a 21 bits limit for the UID and the GID. In fact,
9507_am_tools=${am_cv_prog_tar_$1-$_am_tools}9641 # the 'pax' utility can hang on bigger UID/GID (see automake bug#8343
9508# Do not fold the above two line into one, because Tru64 sh and9642 # and bug#13588).
9509# Solaris sh will not grok spaces in the rhs of '-'.9643 am_max_uid=2097151 # 2^21 - 1
9510for _am_tool in $_am_tools9644 am_max_gid=$am_max_uid
9511do9645 # The $UID and $GID variables are not portable, so we need to resort
9512 case $_am_tool in9646 # to the POSIX-mandated id(1) utility. Errors in the 'id' calls
9513 gnutar)9647 # below are definitely unexpected, so allow the users to see them
9514 for _am_tar in tar gnutar gtar;9648 # (that is, avoid stderr redirection).
9515 do9649 am_uid=`id -u || echo unknown`
9516 AM_RUN_LOG([$_am_tar --version]) && break9650 am_gid=`id -g || echo unknown`
9517 done9651 AC_MSG_CHECKING([whether UID '$am_uid' is supported by ustar format])
9518 am__tar="$_am_tar --format=m4_if([$1], [pax], [posix], [$1]) -chf - "'"$$tardir"'9652 if test $am_uid -le $am_max_uid; then
9519 am__tar_="$_am_tar --format=m4_if([$1], [pax], [posix], [$1]) -chf - "'"$tardir"'9653 AC_MSG_RESULT([yes])
9520 am__untar="$_am_tar -xf -"9654 else
9521 ;;9655 AC_MSG_RESULT([no])
9522 plaintar)9656 _am_tools=none
9523 # Must skip GNU tar: if it does not support --format= it doesn't create9657 fi
9524 # ustar tarball either.9658 AC_MSG_CHECKING([whether GID '$am_gid' is supported by ustar format])
9525 (tar --version) >/dev/null 2>&1 && continue9659 if test $am_gid -le $am_max_gid; then
9526 am__tar='tar chf - "$$tardir"'9660 AC_MSG_RESULT([yes])
9527 am__tar_='tar chf - "$tardir"'9661 else
9528 am__untar='tar xf -'9662 AC_MSG_RESULT([no])
9529 ;;9663 _am_tools=none
9530 pax)9664 fi],
9531 am__tar='pax -L -x $1 -w "$$tardir"'9665
9532 am__tar_='pax -L -x $1 -w "$tardir"'9666 [pax],
9533 am__untar='pax -r'9667 [],
9534 ;;9668
9535 cpio)9669 [m4_fatal([Unknown tar format])])
9536 am__tar='find "$$tardir" -print | cpio -o -H $1 -L'9670
9537 am__tar_='find "$tardir" -print | cpio -o -H $1 -L'9671 AC_MSG_CHECKING([how to create a $1 tar archive])
9538 am__untar='cpio -i -H $1 -d'9672
9539 ;;9673 # Go ahead even if we have the value already cached. We do so because we
9540 none)9674 # need to set the values for the 'am__tar' and 'am__untar' variables.
9541 am__tar=false9675 _am_tools=${am_cv_prog_tar_$1-$_am_tools}
9542 am__tar_=false9676
9543 am__untar=false9677 for _am_tool in $_am_tools; do
9544 ;;9678 case $_am_tool in
9545 esac9679 gnutar)
95469680 for _am_tar in tar gnutar gtar; do
9547 # If the value was cached, stop now. We just wanted to have am__tar9681 AM_RUN_LOG([$_am_tar --version]) && break
9548 # and am__untar set.9682 done
9549 test -n "${am_cv_prog_tar_$1}" && break9683 am__tar="$_am_tar --format=m4_if([$1], [pax], [posix], [$1]) -chf - "'"$$tardir"'
95509684 am__tar_="$_am_tar --format=m4_if([$1], [pax], [posix], [$1]) -chf - "'"$tardir"'
9551 # tar/untar a dummy directory, and stop if the command works9685 am__untar="$_am_tar -xf -"
9552 rm -rf conftest.dir9686 ;;
9553 mkdir conftest.dir9687 plaintar)
9554 echo GrepMe > conftest.dir/file9688 # Must skip GNU tar: if it does not support --format= it doesn't create
9555 AM_RUN_LOG([tardir=conftest.dir && eval $am__tar_ >conftest.tar])9689 # ustar tarball either.
9556 rm -rf conftest.dir9690 (tar --version) >/dev/null 2>&1 && continue
9557 if test -s conftest.tar; then9691 am__tar='tar chf - "$$tardir"'
9558 AM_RUN_LOG([$am__untar <conftest.tar])9692 am__tar_='tar chf - "$tardir"'
9559 grep GrepMe conftest.dir/file >/dev/null 2>&1 && break9693 am__untar='tar xf -'
9560 fi9694 ;;
9561done9695 pax)
9562rm -rf conftest.dir9696 am__tar='pax -L -x $1 -w "$$tardir"'
95639697 am__tar_='pax -L -x $1 -w "$tardir"'
9564AC_CACHE_VAL([am_cv_prog_tar_$1], [am_cv_prog_tar_$1=$_am_tool])9698 am__untar='pax -r'
9565AC_MSG_RESULT([$am_cv_prog_tar_$1])])9699 ;;
9700 cpio)
9701 am__tar='find "$$tardir" -print | cpio -o -H $1 -L'
9702 am__tar_='find "$tardir" -print | cpio -o -H $1 -L'
9703 am__untar='cpio -i -H $1 -d'
9704 ;;
9705 none)
9706 am__tar=false
9707 am__tar_=false
9708 am__untar=false
9709 ;;
9710 esac
9711
9712 # If the value was cached, stop now. We just wanted to have am__tar
9713 # and am__untar set.
9714 test -n "${am_cv_prog_tar_$1}" && break
9715
9716 # tar/untar a dummy directory, and stop if the command works.
9717 rm -rf conftest.dir
9718 mkdir conftest.dir
9719 echo GrepMe > conftest.dir/file
9720 AM_RUN_LOG([tardir=conftest.dir && eval $am__tar_ >conftest.tar])
9721 rm -rf conftest.dir
9722 if test -s conftest.tar; then
9723 AM_RUN_LOG([$am__untar <conftest.tar])
9724 AM_RUN_LOG([cat conftest.dir/file])
9725 grep GrepMe conftest.dir/file >/dev/null 2>&1 && break
9726 fi
9727 done
9728 rm -rf conftest.dir
9729
9730 AC_CACHE_VAL([am_cv_prog_tar_$1], [am_cv_prog_tar_$1=$_am_tool])
9731 AC_MSG_RESULT([$am_cv_prog_tar_$1])])
9732
9566AC_SUBST([am__tar])9733AC_SUBST([am__tar])
9567AC_SUBST([am__untar])9734AC_SUBST([am__untar])
9568]) # _AM_PROG_TAR9735]) # _AM_PROG_TAR
95699736
=== added file 'config-aux/compile'
--- config-aux/compile 1970-01-01 00:00:00 +0000
+++ config-aux/compile 2013-10-26 22:20:55 +0000
@@ -0,0 +1,347 @@
1#! /bin/sh
2# Wrapper for compilers which do not understand '-c -o'.
3
4scriptversion=2012-10-14.11; # UTC
5
6# Copyright (C) 1999-2013 Free Software Foundation, Inc.
7# Written by Tom Tromey <tromey@cygnus.com>.
8#
9# This program is free software; you can redistribute it and/or modify
10# it under the terms of the GNU General Public License as published by
11# the Free Software Foundation; either version 2, or (at your option)
12# any later version.
13#
14# This program is distributed in the hope that it will be useful,
15# but WITHOUT ANY WARRANTY; without even the implied warranty of
16# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17# GNU General Public License for more details.
18#
19# You should have received a copy of the GNU General Public License
20# along with this program. If not, see <http://www.gnu.org/licenses/>.
21
22# As a special exception to the GNU General Public License, if you
23# distribute this file as part of a program that contains a
24# configuration script generated by Autoconf, you may include it under
25# the same distribution terms that you use for the rest of that program.
26
27# This file is maintained in Automake, please report
28# bugs to <bug-automake@gnu.org> or send patches to
29# <automake-patches@gnu.org>.
30
31nl='
32'
33
34# We need space, tab and new line, in precisely that order. Quoting is
35# there to prevent tools from complaining about whitespace usage.
36IFS=" "" $nl"
37
38file_conv=
39
40# func_file_conv build_file lazy
41# Convert a $build file to $host form and store it in $file
42# Currently only supports Windows hosts. If the determined conversion
43# type is listed in (the comma separated) LAZY, no conversion will
44# take place.
45func_file_conv ()
46{
47 file=$1
48 case $file in
49 / | /[!/]*) # absolute file, and not a UNC file
50 if test -z "$file_conv"; then
51 # lazily determine how to convert abs files
52 case `uname -s` in
53 MINGW*)
54 file_conv=mingw
55 ;;
56 CYGWIN*)
57 file_conv=cygwin
58 ;;
59 *)
60 file_conv=wine
61 ;;
62 esac
63 fi
64 case $file_conv/,$2, in
65 *,$file_conv,*)
66 ;;
67 mingw/*)
68 file=`cmd //C echo "$file " | sed -e 's/"\(.*\) " *$/\1/'`
69 ;;
70 cygwin/*)
71 file=`cygpath -m "$file" || echo "$file"`
72 ;;
73 wine/*)
74 file=`winepath -w "$file" || echo "$file"`
75 ;;
76 esac
77 ;;
78 esac
79}
80
81# func_cl_dashL linkdir
82# Make cl look for libraries in LINKDIR
83func_cl_dashL ()
84{
85 func_file_conv "$1"
86 if test -z "$lib_path"; then
87 lib_path=$file
88 else
89 lib_path="$lib_path;$file"
90 fi
91 linker_opts="$linker_opts -LIBPATH:$file"
92}
93
94# func_cl_dashl library
95# Do a library search-path lookup for cl
96func_cl_dashl ()
97{
98 lib=$1
99 found=no
100 save_IFS=$IFS
101 IFS=';'
102 for dir in $lib_path $LIB
103 do
104 IFS=$save_IFS
105 if $shared && test -f "$dir/$lib.dll.lib"; then
106 found=yes
107 lib=$dir/$lib.dll.lib
108 break
109 fi
110 if test -f "$dir/$lib.lib"; then
111 found=yes
112 lib=$dir/$lib.lib
113 break
114 fi
115 if test -f "$dir/lib$lib.a"; then
116 found=yes
117 lib=$dir/lib$lib.a
118 break
119 fi
120 done
121 IFS=$save_IFS
122
123 if test "$found" != yes; then
124 lib=$lib.lib
125 fi
126}
127
128# func_cl_wrapper cl arg...
129# Adjust compile command to suit cl
130func_cl_wrapper ()
131{
132 # Assume a capable shell
133 lib_path=
134 shared=:
135 linker_opts=
136 for arg
137 do
138 if test -n "$eat"; then
139 eat=
140 else
141 case $1 in
142 -o)
143 # configure might choose to run compile as 'compile cc -o foo foo.c'.
144 eat=1
145 case $2 in
146 *.o | *.[oO][bB][jJ])
147 func_file_conv "$2"
148 set x "$@" -Fo"$file"
149 shift
150 ;;
151 *)
152 func_file_conv "$2"
153 set x "$@" -Fe"$file"
154 shift
155 ;;
156 esac
157 ;;
158 -I)
159 eat=1
160 func_file_conv "$2" mingw
161 set x "$@" -I"$file"
162 shift
163 ;;
164 -I*)
165 func_file_conv "${1#-I}" mingw
166 set x "$@" -I"$file"
167 shift
168 ;;
169 -l)
170 eat=1
171 func_cl_dashl "$2"
172 set x "$@" "$lib"
173 shift
174 ;;
175 -l*)
176 func_cl_dashl "${1#-l}"
177 set x "$@" "$lib"
178 shift
179 ;;
180 -L)
181 eat=1
182 func_cl_dashL "$2"
183 ;;
184 -L*)
185 func_cl_dashL "${1#-L}"
186 ;;
187 -static)
188 shared=false
189 ;;
190 -Wl,*)
191 arg=${1#-Wl,}
192 save_ifs="$IFS"; IFS=','
193 for flag in $arg; do
194 IFS="$save_ifs"
195 linker_opts="$linker_opts $flag"
196 done
197 IFS="$save_ifs"
198 ;;
199 -Xlinker)
200 eat=1
201 linker_opts="$linker_opts $2"
202 ;;
203 -*)
204 set x "$@" "$1"
205 shift
206 ;;
207 *.cc | *.CC | *.cxx | *.CXX | *.[cC]++)
208 func_file_conv "$1"
209 set x "$@" -Tp"$file"
210 shift
211 ;;
212 *.c | *.cpp | *.CPP | *.lib | *.LIB | *.Lib | *.OBJ | *.obj | *.[oO])
213 func_file_conv "$1" mingw
214 set x "$@" "$file"
215 shift
216 ;;
217 *)
218 set x "$@" "$1"
219 shift
220 ;;
221 esac
222 fi
223 shift
224 done
225 if test -n "$linker_opts"; then
226 linker_opts="-link$linker_opts"
227 fi
228 exec "$@" $linker_opts
229 exit 1
230}
231
232eat=
233
234case $1 in
235 '')
236 echo "$0: No command. Try '$0 --help' for more information." 1>&2
237 exit 1;
238 ;;
239 -h | --h*)
240 cat <<\EOF
241Usage: compile [--help] [--version] PROGRAM [ARGS]
242
243Wrapper for compilers which do not understand '-c -o'.
244Remove '-o dest.o' from ARGS, run PROGRAM with the remaining
245arguments, and rename the output as expected.
246
247If you are trying to build a whole package this is not the
248right script to run: please start by reading the file 'INSTALL'.
249
250Report bugs to <bug-automake@gnu.org>.
251EOF
252 exit $?
253 ;;
254 -v | --v*)
255 echo "compile $scriptversion"
256 exit $?
257 ;;
258 cl | *[/\\]cl | cl.exe | *[/\\]cl.exe )
259 func_cl_wrapper "$@" # Doesn't return...
260 ;;
261esac
262
263ofile=
264cfile=
265
266for arg
267do
268 if test -n "$eat"; then
269 eat=
270 else
271 case $1 in
272 -o)
273 # configure might choose to run compile as 'compile cc -o foo foo.c'.
274 # So we strip '-o arg' only if arg is an object.
275 eat=1
276 case $2 in
277 *.o | *.obj)
278 ofile=$2
279 ;;
280 *)
281 set x "$@" -o "$2"
282 shift
283 ;;
284 esac
285 ;;
286 *.c)
287 cfile=$1
288 set x "$@" "$1"
289 shift
290 ;;
291 *)
292 set x "$@" "$1"
293 shift
294 ;;
295 esac
296 fi
297 shift
298done
299
300if test -z "$ofile" || test -z "$cfile"; then
301 # If no '-o' option was seen then we might have been invoked from a
302 # pattern rule where we don't need one. That is ok -- this is a
303 # normal compilation that the losing compiler can handle. If no
304 # '.c' file was seen then we are probably linking. That is also
305 # ok.
306 exec "$@"
307fi
308
309# Name of file we expect compiler to create.
310cofile=`echo "$cfile" | sed 's|^.*[\\/]||; s|^[a-zA-Z]:||; s/\.c$/.o/'`
311
312# Create the lock directory.
313# Note: use '[/\\:.-]' here to ensure that we don't use the same name
314# that we are using for the .o file. Also, base the name on the expected
315# object file name, since that is what matters with a parallel build.
316lockdir=`echo "$cofile" | sed -e 's|[/\\:.-]|_|g'`.d
317while true; do
318 if mkdir "$lockdir" >/dev/null 2>&1; then
319 break
320 fi
321 sleep 1
322done
323# FIXME: race condition here if user kills between mkdir and trap.
324trap "rmdir '$lockdir'; exit 1" 1 2 15
325
326# Run the compile.
327"$@"
328ret=$?
329
330if test -f "$cofile"; then
331 test "$cofile" = "$ofile" || mv "$cofile" "$ofile"
332elif test -f "${cofile}bj"; then
333 test "${cofile}bj" = "$ofile" || mv "${cofile}bj" "$ofile"
334fi
335
336rmdir "$lockdir"
337exit $ret
338
339# Local Variables:
340# mode: shell-script
341# sh-indentation: 2
342# eval: (add-hook 'write-file-hooks 'time-stamp)
343# time-stamp-start: "scriptversion="
344# time-stamp-format: "%:y-%02m-%02d.%02H"
345# time-stamp-time-zone: "UTC"
346# time-stamp-end: "; # UTC"
347# End:
0348
=== modified file 'configure'
--- configure 2012-09-05 01:22:39 +0000
+++ configure 2013-10-26 22:20:55 +0000
@@ -1,6 +1,6 @@
1#! /bin/sh1#! /bin/sh
2# Guess values for system-dependent variables and create Makefiles.2# Guess values for system-dependent variables and create Makefiles.
3# Generated by GNU Autoconf 2.69 for Multitouch Protocol Translation Library 1.1.3.3# Generated by GNU Autoconf 2.69 for Multitouch Protocol Translation Library 1.1.4.
4#4#
5#5#
6# Copyright (C) 1992-1996, 1998-2012 Free Software Foundation, Inc.6# Copyright (C) 1992-1996, 1998-2012 Free Software Foundation, Inc.
@@ -587,8 +587,8 @@
587# Identity of this package.587# Identity of this package.
588PACKAGE_NAME='Multitouch Protocol Translation Library'588PACKAGE_NAME='Multitouch Protocol Translation Library'
589PACKAGE_TARNAME='mtdev'589PACKAGE_TARNAME='mtdev'
590PACKAGE_VERSION='1.1.3'590PACKAGE_VERSION='1.1.4'
591PACKAGE_STRING='Multitouch Protocol Translation Library 1.1.3'591PACKAGE_STRING='Multitouch Protocol Translation Library 1.1.4'
592PACKAGE_BUGREPORT=''592PACKAGE_BUGREPORT=''
593PACKAGE_URL=''593PACKAGE_URL=''
594594
@@ -681,9 +681,10 @@
681build681build
682LIBTOOL682LIBTOOL
683LIB_VERSION683LIB_VERSION
684MAINT684AM_BACKSLASH
685MAINTAINER_MODE_FALSE685AM_DEFAULT_VERBOSITY
686MAINTAINER_MODE_TRUE686AM_DEFAULT_V
687AM_V
687am__untar688am__untar
688am__tar689am__tar
689AMTAR690AMTAR
@@ -748,7 +749,7 @@
748ac_subst_files=''749ac_subst_files=''
749ac_user_opts='750ac_user_opts='
750enable_option_checking751enable_option_checking
751enable_maintainer_mode752enable_silent_rules
752enable_shared753enable_shared
753enable_static754enable_static
754with_pic755with_pic
@@ -1307,7 +1308,7 @@
1307 # Omit some internal or obsolete options to make the list less imposing.1308 # Omit some internal or obsolete options to make the list less imposing.
1308 # This message is too long to be a string in the A/UX 3.1 sh.1309 # This message is too long to be a string in the A/UX 3.1 sh.
1309 cat <<_ACEOF1310 cat <<_ACEOF
1310\`configure' configures Multitouch Protocol Translation Library 1.1.3 to adapt to many kinds of systems.1311\`configure' configures Multitouch Protocol Translation Library 1.1.4 to adapt to many kinds of systems.
13111312
1312Usage: $0 [OPTION]... [VAR=VALUE]...1313Usage: $0 [OPTION]... [VAR=VALUE]...
13131314
@@ -1377,7 +1378,7 @@
13771378
1378if test -n "$ac_init_help"; then1379if test -n "$ac_init_help"; then
1379 case $ac_init_help in1380 case $ac_init_help in
1380 short | recursive ) echo "Configuration of Multitouch Protocol Translation Library 1.1.3:";;1381 short | recursive ) echo "Configuration of Multitouch Protocol Translation Library 1.1.4:";;
1381 esac1382 esac
1382 cat <<\_ACEOF1383 cat <<\_ACEOF
13831384
@@ -1385,9 +1386,8 @@
1385 --disable-option-checking ignore unrecognized --enable/--with options1386 --disable-option-checking ignore unrecognized --enable/--with options
1386 --disable-FEATURE do not include FEATURE (same as --enable-FEATURE=no)1387 --disable-FEATURE do not include FEATURE (same as --enable-FEATURE=no)
1387 --enable-FEATURE[=ARG] include FEATURE [ARG=yes]1388 --enable-FEATURE[=ARG] include FEATURE [ARG=yes]
1388 --enable-maintainer-mode1389 --enable-silent-rules less verbose build output (undo: "make V=1")
1389 enable make rules and dependencies not useful (and1390 --disable-silent-rules verbose build output (undo: "make V=0")
1390 sometimes confusing) to the casual installer
1391 --enable-shared[=PKGS] build shared libraries [default=yes]1391 --enable-shared[=PKGS] build shared libraries [default=yes]
1392 --enable-static[=PKGS] build static libraries [default=yes]1392 --enable-static[=PKGS] build static libraries [default=yes]
1393 --enable-fast-install[=PKGS]1393 --enable-fast-install[=PKGS]
@@ -1483,7 +1483,7 @@
1483test -n "$ac_init_help" && exit $ac_status1483test -n "$ac_init_help" && exit $ac_status
1484if $ac_init_version; then1484if $ac_init_version; then
1485 cat <<\_ACEOF1485 cat <<\_ACEOF
1486Multitouch Protocol Translation Library configure 1.1.31486Multitouch Protocol Translation Library configure 1.1.4
1487generated by GNU Autoconf 2.691487generated by GNU Autoconf 2.69
14881488
1489Copyright (C) 2012 Free Software Foundation, Inc.1489Copyright (C) 2012 Free Software Foundation, Inc.
@@ -1761,7 +1761,7 @@
1761This file contains any messages produced by compilers while1761This file contains any messages produced by compilers while
1762running configure, to aid debugging if configure makes a mistake.1762running configure, to aid debugging if configure makes a mistake.
17631763
1764It was created by Multitouch Protocol Translation Library $as_me 1.1.3, which was1764It was created by Multitouch Protocol Translation Library $as_me 1.1.4, which was
1765generated by GNU Autoconf 2.69. Invocation command line was1765generated by GNU Autoconf 2.69. Invocation command line was
17661766
1767 $ $0 $@1767 $ $0 $@
@@ -2143,7 +2143,7 @@
21432143
21442144
2145# Initialize Automake2145# Initialize Automake
2146am__api_version='1.12'2146am__api_version='1.14'
21472147
2148# Find a good install program. We prefer a C program (faster),2148# Find a good install program. We prefer a C program (faster),
2149# so one script is as good as another. But avoid the broken or2149# so one script is as good as another. But avoid the broken or
@@ -2327,8 +2327,8 @@
2327 esac2327 esac
2328fi2328fi
2329# Use eval to expand $SHELL2329# Use eval to expand $SHELL
2330if eval "$MISSING --run true"; then2330if eval "$MISSING --is-lightweight"; then
2331 am_missing_run="$MISSING --run "2331 am_missing_run="$MISSING "
2332else2332else
2333 am_missing_run=2333 am_missing_run=
2334 { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: 'missing' script is too old or missing" >&52334 { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: 'missing' script is too old or missing" >&5
@@ -2568,6 +2568,45 @@
2568fi2568fi
2569rmdir .tst 2>/dev/null2569rmdir .tst 2>/dev/null
25702570
2571# Check whether --enable-silent-rules was given.
2572if test "${enable_silent_rules+set}" = set; then :
2573 enableval=$enable_silent_rules;
2574fi
2575
2576case $enable_silent_rules in # (((
2577 yes) AM_DEFAULT_VERBOSITY=0;;
2578 no) AM_DEFAULT_VERBOSITY=1;;
2579 *) AM_DEFAULT_VERBOSITY=1;;
2580esac
2581am_make=${MAKE-make}
2582{ $as_echo "$as_me:${as_lineno-$LINENO}: checking whether $am_make supports nested variables" >&5
2583$as_echo_n "checking whether $am_make supports nested variables... " >&6; }
2584if ${am_cv_make_support_nested_variables+:} false; then :
2585 $as_echo_n "(cached) " >&6
2586else
2587 if $as_echo 'TRUE=$(BAR$(V))
2588BAR0=false
2589BAR1=true
2590V=1
2591am__doit:
2592 @$(TRUE)
2593.PHONY: am__doit' | $am_make -f - >/dev/null 2>&1; then
2594 am_cv_make_support_nested_variables=yes
2595else
2596 am_cv_make_support_nested_variables=no
2597fi
2598fi
2599{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $am_cv_make_support_nested_variables" >&5
2600$as_echo "$am_cv_make_support_nested_variables" >&6; }
2601if test $am_cv_make_support_nested_variables = yes; then
2602 AM_V='$(V)'
2603 AM_DEFAULT_V='$(AM_DEFAULT_VERBOSITY)'
2604else
2605 AM_V=$AM_DEFAULT_VERBOSITY
2606 AM_DEFAULT_V=$AM_DEFAULT_VERBOSITY
2607fi
2608AM_BACKSLASH='\'
2609
2571if test "`cd $srcdir && pwd`" != "`pwd`"; then2610if test "`cd $srcdir && pwd`" != "`pwd`"; then
2572 # Use -I$(srcdir) only when $(srcdir) != ., so that make's output2611 # Use -I$(srcdir) only when $(srcdir) != ., so that make's output
2573 # is not polluted with repeated "-I."2612 # is not polluted with repeated "-I."
@@ -2590,7 +2629,7 @@
25902629
2591# Define the identity of the package.2630# Define the identity of the package.
2592 PACKAGE='mtdev'2631 PACKAGE='mtdev'
2593 VERSION='1.1.3'2632 VERSION='1.1.4'
25942633
25952634
2596cat >>confdefs.h <<_ACEOF2635cat >>confdefs.h <<_ACEOF
@@ -2630,6 +2669,10 @@
2630# in the wild :-( We should find a proper way to deprecate it ...2669# in the wild :-( We should find a proper way to deprecate it ...
2631AMTAR='$${TAR-tar}'2670AMTAR='$${TAR-tar}'
26322671
2672
2673# We'll loop over all known methods to create a tar archive until one works.
2674_am_tools='gnutar pax cpio none'
2675
2633am__tar='$${TAR-tar} chof - "$$tardir"' am__untar='$${TAR-tar} xf -'2676am__tar='$${TAR-tar} chof - "$$tardir"' am__untar='$${TAR-tar} xf -'
26342677
26352678
@@ -2637,27 +2680,85 @@
26372680
26382681
26392682
2640{ $as_echo "$as_me:${as_lineno-$LINENO}: checking whether to enable maintainer-specific portions of Makefiles" >&52683# POSIX will say in a future version that running "rm -f" with no argument
2641$as_echo_n "checking whether to enable maintainer-specific portions of Makefiles... " >&6; }2684# is OK; and we want to be able to make that assumption in our Makefile
2642 # Check whether --enable-maintainer-mode was given.2685# recipes. So use an aggressive probe to check that the usage we want is
2643if test "${enable_maintainer_mode+set}" = set; then :2686# actually supported "in the wild" to an acceptable degree.
2644 enableval=$enable_maintainer_mode; USE_MAINTAINER_MODE=$enableval2687# See automake bug#10828.
2645else2688# To make any issue more visible, cause the running configure to be aborted
2646 USE_MAINTAINER_MODE=no2689# by default if the 'rm' program in use doesn't match our expectations; the
2647fi2690# user can still override this though.
26482691if rm -f && rm -fr && rm -rf; then : OK; else
2649 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $USE_MAINTAINER_MODE" >&52692 cat >&2 <<'END'
2650$as_echo "$USE_MAINTAINER_MODE" >&6; }2693Oops!
2651 if test $USE_MAINTAINER_MODE = yes; then2694
2652 MAINTAINER_MODE_TRUE=2695Your 'rm' program seems unable to run without file operands specified
2653 MAINTAINER_MODE_FALSE='#'2696on the command line, even when the '-f' option is present. This is contrary
2654else2697to the behaviour of most rm programs out there, and not conforming with
2655 MAINTAINER_MODE_TRUE='#'2698the upcoming POSIX standard: <http://austingroupbugs.net/view.php?id=542>
2656 MAINTAINER_MODE_FALSE=2699
2657fi2700Please tell bug-automake@gnu.org about your system, including the value
26582701of your $PATH and any error possibly output before this message. This
2659 MAINT=$MAINTAINER_MODE_TRUE2702can help us improve future automake versions.
26602703
2704END
2705 if test x"$ACCEPT_INFERIOR_RM_PROGRAM" = x"yes"; then
2706 echo 'Configuration will proceed anyway, since you have set the' >&2
2707 echo 'ACCEPT_INFERIOR_RM_PROGRAM variable to "yes"' >&2
2708 echo >&2
2709 else
2710 cat >&2 <<'END'
2711Aborting the configuration process, to ensure you take notice of the issue.
2712
2713You can download and install GNU coreutils to get an 'rm' implementation
2714that behaves properly: <http://www.gnu.org/software/coreutils/>.
2715
2716If you want to complete the configuration process using your problematic
2717'rm' anyway, export the environment variable ACCEPT_INFERIOR_RM_PROGRAM
2718to "yes", and re-run configure.
2719
2720END
2721 as_fn_error $? "Your 'rm' program is bad, sorry." "$LINENO" 5
2722 fi
2723fi
2724# Check whether --enable-silent-rules was given.
2725if test "${enable_silent_rules+set}" = set; then :
2726 enableval=$enable_silent_rules;
2727fi
2728
2729case $enable_silent_rules in # (((
2730 yes) AM_DEFAULT_VERBOSITY=0;;
2731 no) AM_DEFAULT_VERBOSITY=1;;
2732 *) AM_DEFAULT_VERBOSITY=0;;
2733esac
2734am_make=${MAKE-make}
2735{ $as_echo "$as_me:${as_lineno-$LINENO}: checking whether $am_make supports nested variables" >&5
2736$as_echo_n "checking whether $am_make supports nested variables... " >&6; }
2737if ${am_cv_make_support_nested_variables+:} false; then :
2738 $as_echo_n "(cached) " >&6
2739else
2740 if $as_echo 'TRUE=$(BAR$(V))
2741BAR0=false
2742BAR1=true
2743V=1
2744am__doit:
2745 @$(TRUE)
2746.PHONY: am__doit' | $am_make -f - >/dev/null 2>&1; then
2747 am_cv_make_support_nested_variables=yes
2748else
2749 am_cv_make_support_nested_variables=no
2750fi
2751fi
2752{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $am_cv_make_support_nested_variables" >&5
2753$as_echo "$am_cv_make_support_nested_variables" >&6; }
2754if test $am_cv_make_support_nested_variables = yes; then
2755 AM_V='$(V)'
2756 AM_DEFAULT_V='$(AM_DEFAULT_VERBOSITY)'
2757else
2758 AM_V=$AM_DEFAULT_VERBOSITY
2759 AM_DEFAULT_V=$AM_DEFAULT_VERBOSITY
2760fi
2761AM_BACKSLASH='\'
26612762
26622763
2663LIB_VERSION=1:0:02764LIB_VERSION=1:0:0
@@ -3681,6 +3782,65 @@
3681ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5'3782ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5'
3682ac_compiler_gnu=$ac_cv_c_compiler_gnu3783ac_compiler_gnu=$ac_cv_c_compiler_gnu
36833784
3785ac_ext=c
3786ac_cpp='$CPP $CPPFLAGS'
3787ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5'
3788ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5'
3789ac_compiler_gnu=$ac_cv_c_compiler_gnu
3790{ $as_echo "$as_me:${as_lineno-$LINENO}: checking whether $CC understands -c and -o together" >&5
3791$as_echo_n "checking whether $CC understands -c and -o together... " >&6; }
3792if ${am_cv_prog_cc_c_o+:} false; then :
3793 $as_echo_n "(cached) " >&6
3794else
3795 cat confdefs.h - <<_ACEOF >conftest.$ac_ext
3796/* end confdefs.h. */
3797
3798int
3799main ()
3800{
3801
3802 ;
3803 return 0;
3804}
3805_ACEOF
3806 # Make sure it works both with $CC and with simple cc.
3807 # Following AC_PROG_CC_C_O, we do the test twice because some
3808 # compilers refuse to overwrite an existing .o file with -o,
3809 # though they will create one.
3810 am_cv_prog_cc_c_o=yes
3811 for am_i in 1 2; do
3812 if { echo "$as_me:$LINENO: $CC -c conftest.$ac_ext -o conftest2.$ac_objext" >&5
3813 ($CC -c conftest.$ac_ext -o conftest2.$ac_objext) >&5 2>&5
3814 ac_status=$?
3815 echo "$as_me:$LINENO: \$? = $ac_status" >&5
3816 (exit $ac_status); } \
3817 && test -f conftest2.$ac_objext; then
3818 : OK
3819 else
3820 am_cv_prog_cc_c_o=no
3821 break
3822 fi
3823 done
3824 rm -f core conftest*
3825 unset am_i
3826fi
3827{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $am_cv_prog_cc_c_o" >&5
3828$as_echo "$am_cv_prog_cc_c_o" >&6; }
3829if test "$am_cv_prog_cc_c_o" != yes; then
3830 # Losing compiler, so override with the script.
3831 # FIXME: It is wrong to rewrite CC.
3832 # But if we don't then we get into trouble of one sort or another.
3833 # A longer-term fix would be to have automake use am__CC in this case,
3834 # and then we could set am__CC="\$(top_srcdir)/compile \$(CC)"
3835 CC="$am_aux_dir/compile $CC"
3836fi
3837ac_ext=c
3838ac_cpp='$CPP $CPPFLAGS'
3839ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5'
3840ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5'
3841ac_compiler_gnu=$ac_cv_c_compiler_gnu
3842
3843
3684depcc="$CC" am_compiler_list=3844depcc="$CC" am_compiler_list=
36853845
3686{ $as_echo "$as_me:${as_lineno-$LINENO}: checking dependency style of $depcc" >&53846{ $as_echo "$as_me:${as_lineno-$LINENO}: checking dependency style of $depcc" >&5
@@ -11763,6 +11923,65 @@
11763ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5'11923ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5'
11764ac_compiler_gnu=$ac_cv_c_compiler_gnu11924ac_compiler_gnu=$ac_cv_c_compiler_gnu
1176511925
11926ac_ext=c
11927ac_cpp='$CPP $CPPFLAGS'
11928ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5'
11929ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5'
11930ac_compiler_gnu=$ac_cv_c_compiler_gnu
11931{ $as_echo "$as_me:${as_lineno-$LINENO}: checking whether $CC understands -c and -o together" >&5
11932$as_echo_n "checking whether $CC understands -c and -o together... " >&6; }
11933if ${am_cv_prog_cc_c_o+:} false; then :
11934 $as_echo_n "(cached) " >&6
11935else
11936 cat confdefs.h - <<_ACEOF >conftest.$ac_ext
11937/* end confdefs.h. */
11938
11939int
11940main ()
11941{
11942
11943 ;
11944 return 0;
11945}
11946_ACEOF
11947 # Make sure it works both with $CC and with simple cc.
11948 # Following AC_PROG_CC_C_O, we do the test twice because some
11949 # compilers refuse to overwrite an existing .o file with -o,
11950 # though they will create one.
11951 am_cv_prog_cc_c_o=yes
11952 for am_i in 1 2; do
11953 if { echo "$as_me:$LINENO: $CC -c conftest.$ac_ext -o conftest2.$ac_objext" >&5
11954 ($CC -c conftest.$ac_ext -o conftest2.$ac_objext) >&5 2>&5
11955 ac_status=$?
11956 echo "$as_me:$LINENO: \$? = $ac_status" >&5
11957 (exit $ac_status); } \
11958 && test -f conftest2.$ac_objext; then
11959 : OK
11960 else
11961 am_cv_prog_cc_c_o=no
11962 break
11963 fi
11964 done
11965 rm -f core conftest*
11966 unset am_i
11967fi
11968{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $am_cv_prog_cc_c_o" >&5
11969$as_echo "$am_cv_prog_cc_c_o" >&6; }
11970if test "$am_cv_prog_cc_c_o" != yes; then
11971 # Losing compiler, so override with the script.
11972 # FIXME: It is wrong to rewrite CC.
11973 # But if we don't then we get into trouble of one sort or another.
11974 # A longer-term fix would be to have automake use am__CC in this case,
11975 # and then we could set am__CC="\$(top_srcdir)/compile \$(CC)"
11976 CC="$am_aux_dir/compile $CC"
11977fi
11978ac_ext=c
11979ac_cpp='$CPP $CPPFLAGS'
11980ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5'
11981ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5'
11982ac_compiler_gnu=$ac_cv_c_compiler_gnu
11983
11984
11766depcc="$CC" am_compiler_list=11985depcc="$CC" am_compiler_list=
1176711986
11768{ $as_echo "$as_me:${as_lineno-$LINENO}: checking dependency style of $depcc" >&511987{ $as_echo "$as_me:${as_lineno-$LINENO}: checking dependency style of $depcc" >&5
@@ -12020,10 +12239,6 @@
12020 am__EXEEXT_FALSE=12239 am__EXEEXT_FALSE=
12021fi12240fi
1202212241
12023if test -z "${MAINTAINER_MODE_TRUE}" && test -z "${MAINTAINER_MODE_FALSE}"; then
12024 as_fn_error $? "conditional \"MAINTAINER_MODE\" was never defined.
12025Usually this means the macro was only invoked conditionally." "$LINENO" 5
12026fi
12027if test -z "${AMDEP_TRUE}" && test -z "${AMDEP_FALSE}"; then12242if test -z "${AMDEP_TRUE}" && test -z "${AMDEP_FALSE}"; then
12028 as_fn_error $? "conditional \"AMDEP\" was never defined.12243 as_fn_error $? "conditional \"AMDEP\" was never defined.
12029Usually this means the macro was only invoked conditionally." "$LINENO" 512244Usually this means the macro was only invoked conditionally." "$LINENO" 5
@@ -12433,7 +12648,7 @@
12433# report actual input values of CONFIG_FILES etc. instead of their12648# report actual input values of CONFIG_FILES etc. instead of their
12434# values after options handling.12649# values after options handling.
12435ac_log="12650ac_log="
12436This file was extended by Multitouch Protocol Translation Library $as_me 1.1.3, which was12651This file was extended by Multitouch Protocol Translation Library $as_me 1.1.4, which was
12437generated by GNU Autoconf 2.69. Invocation command line was12652generated by GNU Autoconf 2.69. Invocation command line was
1243812653
12439 CONFIG_FILES = $CONFIG_FILES12654 CONFIG_FILES = $CONFIG_FILES
@@ -12499,7 +12714,7 @@
12499cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=112714cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1
12500ac_cs_config="`$as_echo "$ac_configure_args" | sed 's/^ //; s/[\\""\`\$]/\\\\&/g'`"12715ac_cs_config="`$as_echo "$ac_configure_args" | sed 's/^ //; s/[\\""\`\$]/\\\\&/g'`"
12501ac_cs_version="\\12716ac_cs_version="\\
12502Multitouch Protocol Translation Library config.status 1.1.312717Multitouch Protocol Translation Library config.status 1.1.4
12503configured by $0, generated by GNU Autoconf 2.69,12718configured by $0, generated by GNU Autoconf 2.69,
12504 with options \\"\$ac_cs_config\\"12719 with options \\"\$ac_cs_config\\"
1250512720
@@ -13508,7 +13723,7 @@
1350813723
13509 case $ac_file$ac_mode in13724 case $ac_file$ac_mode in
13510 "depfiles":C) test x"$AMDEP_TRUE" != x"" || {13725 "depfiles":C) test x"$AMDEP_TRUE" != x"" || {
13511 # Autoconf 2.62 quotes --file arguments for eval, but not when files13726 # Older Autoconf quotes --file arguments for eval, but not when files
13512 # are listed without --file. Let's play safe and only enable the eval13727 # are listed without --file. Let's play safe and only enable the eval
13513 # if we detect the quoting.13728 # if we detect the quoting.
13514 case $CONFIG_FILES in13729 case $CONFIG_FILES in
@@ -13559,7 +13774,7 @@
13559 DEPDIR=`sed -n 's/^DEPDIR = //p' < "$mf"`13774 DEPDIR=`sed -n 's/^DEPDIR = //p' < "$mf"`
13560 test -z "$DEPDIR" && continue13775 test -z "$DEPDIR" && continue
13561 am__include=`sed -n 's/^am__include = //p' < "$mf"`13776 am__include=`sed -n 's/^am__include = //p' < "$mf"`
13562 test -z "am__include" && continue13777 test -z "$am__include" && continue
13563 am__quote=`sed -n 's/^am__quote = //p' < "$mf"`13778 am__quote=`sed -n 's/^am__quote = //p' < "$mf"`
13564 # Find all dependency output files, they are included files with13779 # Find all dependency output files, they are included files with
13565 # $(DEPDIR) in their names. We invoke sed twice because it is the13780 # $(DEPDIR) in their names. We invoke sed twice because it is the
1356613781
=== modified file 'configure.ac'
--- configure.ac 2012-09-05 01:22:39 +0000
+++ configure.ac 2013-10-26 22:20:55 +0000
@@ -1,7 +1,7 @@
1# Initialize Autoconf1# Initialize Autoconf
2AC_PREREQ([2.60])2AC_PREREQ([2.60])
3AC_INIT([Multitouch Protocol Translation Library],3AC_INIT([Multitouch Protocol Translation Library],
4 [1.1.3],4 [1.1.4],
5 [],5 [],
6 [mtdev])6 [mtdev])
7AC_CONFIG_SRCDIR([Makefile.am])7AC_CONFIG_SRCDIR([Makefile.am])
@@ -10,7 +10,7 @@
1010
11# Initialize Automake11# Initialize Automake
12AM_INIT_AUTOMAKE([foreign dist-bzip2])12AM_INIT_AUTOMAKE([foreign dist-bzip2])
13AM_MAINTAINER_MODE13AM_SILENT_RULES([yes])
1414
15LIB_VERSION=1:0:015LIB_VERSION=1:0:0
16AC_SUBST([LIB_VERSION])16AC_SUBST([LIB_VERSION])
1717
=== modified file 'debian/changelog'
--- debian/changelog 2013-05-20 21:16:05 +0000
+++ debian/changelog 2013-10-26 22:20:55 +0000
@@ -1,3 +1,16 @@
1mtdev (1.1.4-1ubuntu1) trusty; urgency=low
2
3 * Merge from Debian unstable. Remaining changes:
4 - debian/libmtdev1.links: Install apport hook links.
5
6 -- Logan Rosen <logan@ubuntu.com> Sat, 26 Oct 2013 18:16:52 -0400
7
8mtdev (1.1.4-1) unstable; urgency=low
9
10 * New upstream release.
11
12 -- Nobuhiro Iwamatsu <iwamatsu@debian.org> Tue, 24 Sep 2013 08:25:26 +0900
13
1mtdev (1.1.3-1ubuntu1) saucy; urgency=low14mtdev (1.1.3-1ubuntu1) saucy; urgency=low
215
3 * Merge from Debian unstable. Remaining changes:16 * Merge from Debian unstable. Remaining changes:
417
=== modified file 'src/Makefile.am'
--- src/Makefile.am 2011-01-31 12:02:10 +0000
+++ src/Makefile.am 2013-10-26 22:20:55 +0000
@@ -18,7 +18,7 @@
1818
19AM_CFLAGS = $(CWARNFLAGS) #-DMTDEV_NO_LEGACY_ABI19AM_CFLAGS = $(CWARNFLAGS) #-DMTDEV_NO_LEGACY_ABI
2020
21INCLUDES = -I$(top_srcdir)/include/21AM_CPPFLAGS = -I$(top_srcdir)/include/
2222
23libmtdevincludedir = $(includedir)23libmtdevincludedir = $(includedir)
24libmtdevinclude_HEADERS = \24libmtdevinclude_HEADERS = \
2525
=== modified file 'src/Makefile.in'
--- src/Makefile.in 2012-09-05 01:22:39 +0000
+++ src/Makefile.in 2013-10-26 22:20:55 +0000
@@ -1,7 +1,7 @@
1# Makefile.in generated by automake 1.12.3 from Makefile.am.1# Makefile.in generated by automake 1.14 from Makefile.am.
2# @configure_input@2# @configure_input@
33
4# Copyright (C) 1994-2012 Free Software Foundation, Inc.4# Copyright (C) 1994-2013 Free Software Foundation, Inc.
55
6# This Makefile.in is free software; the Free Software Foundation6# This Makefile.in is free software; the Free Software Foundation
7# gives unlimited permission to copy and/or distribute it,7# gives unlimited permission to copy and/or distribute it,
@@ -16,23 +16,51 @@
1616
1717
18VPATH = @srcdir@18VPATH = @srcdir@
19am__make_dryrun = \19am__is_gnu_make = test -n '$(MAKEFILE_LIST)' && test -n '$(MAKELEVEL)'
20 { \20am__make_running_with_option = \
21 am__dry=no; \21 case $${target_option-} in \
22 ?) ;; \
23 *) echo "am__make_running_with_option: internal error: invalid" \
24 "target option '$${target_option-}' specified" >&2; \
25 exit 1;; \
26 esac; \
27 has_opt=no; \
28 sane_makeflags=$$MAKEFLAGS; \
29 if $(am__is_gnu_make); then \
30 sane_makeflags=$$MFLAGS; \
31 else \
22 case $$MAKEFLAGS in \32 case $$MAKEFLAGS in \
23 *\\[\ \ ]*) \33 *\\[\ \ ]*) \
24 echo 'am--echo: ; @echo "AM" OK' | $(MAKE) -f - 2>/dev/null \34 bs=\\; \
25 | grep '^AM OK$$' >/dev/null || am__dry=yes;; \35 sane_makeflags=`printf '%s\n' "$$MAKEFLAGS" \
26 *) \36 | sed "s/$$bs$$bs[$$bs $$bs ]*//g"`;; \
27 for am__flg in $$MAKEFLAGS; do \37 esac; \
28 case $$am__flg in \38 fi; \
29 *=*|--*) ;; \39 skip_next=no; \
30 *n*) am__dry=yes; break;; \40 strip_trailopt () \
31 esac; \41 { \
32 done;; \42 flg=`printf '%s\n' "$$flg" | sed "s/$$1.*$$//"`; \
33 esac; \43 }; \
34 test $$am__dry = yes; \44 for flg in $$sane_makeflags; do \
35 }45 test $$skip_next = yes && { skip_next=no; continue; }; \
46 case $$flg in \
47 *=*|--*) continue;; \
48 -*I) strip_trailopt 'I'; skip_next=yes;; \
49 -*I?*) strip_trailopt 'I';; \
50 -*O) strip_trailopt 'O'; skip_next=yes;; \
51 -*O?*) strip_trailopt 'O';; \
52 -*l) strip_trailopt 'l'; skip_next=yes;; \
53 -*l?*) strip_trailopt 'l';; \
54 -[dEDm]) skip_next=yes;; \
55 -[JT]) skip_next=yes;; \
56 esac; \
57 case $$flg in \
58 *$$target_option*) has_opt=yes; break;; \
59 esac; \
60 done; \
61 test $$has_opt = yes
62am__make_dryrun = (target_option=n; $(am__make_running_with_option))
63am__make_keepgoing = (target_option=k; $(am__make_running_with_option))
36pkgdatadir = $(datadir)/@PACKAGE@64pkgdatadir = $(datadir)/@PACKAGE@
37pkgincludedir = $(includedir)/@PACKAGE@65pkgincludedir = $(includedir)/@PACKAGE@
38pkglibdir = $(libdir)/@PACKAGE@66pkglibdir = $(libdir)/@PACKAGE@
@@ -52,8 +80,8 @@
52build_triplet = @build@80build_triplet = @build@
53host_triplet = @host@81host_triplet = @host@
54subdir = src82subdir = src
55DIST_COMMON = $(libmtdevinclude_HEADERS) $(srcdir)/Makefile.am \83DIST_COMMON = $(srcdir)/Makefile.in $(srcdir)/Makefile.am \
56 $(srcdir)/Makefile.in $(top_srcdir)/config-aux/depcomp84 $(top_srcdir)/config-aux/depcomp $(libmtdevinclude_HEADERS)
57ACLOCAL_M4 = $(top_srcdir)/aclocal.m485ACLOCAL_M4 = $(top_srcdir)/aclocal.m4
58am__aclocal_m4_deps = $(top_srcdir)/configure.ac86am__aclocal_m4_deps = $(top_srcdir)/configure.ac
59am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \87am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \
@@ -96,22 +124,47 @@
96am_libmtdev_la_OBJECTS = caps.lo core.lo iobuf.lo match.lo \124am_libmtdev_la_OBJECTS = caps.lo core.lo iobuf.lo match.lo \
97 match_four.lo125 match_four.lo
98libmtdev_la_OBJECTS = $(am_libmtdev_la_OBJECTS)126libmtdev_la_OBJECTS = $(am_libmtdev_la_OBJECTS)
99libmtdev_la_LINK = $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) \127AM_V_lt = $(am__v_lt_@AM_V@)
128am__v_lt_ = $(am__v_lt_@AM_DEFAULT_V@)
129am__v_lt_0 = --silent
130am__v_lt_1 =
131libmtdev_la_LINK = $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) \
100 $(LIBTOOLFLAGS) --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \132 $(LIBTOOLFLAGS) --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \
101 $(libmtdev_la_LDFLAGS) $(LDFLAGS) -o $@133 $(libmtdev_la_LDFLAGS) $(LDFLAGS) -o $@
134AM_V_P = $(am__v_P_@AM_V@)
135am__v_P_ = $(am__v_P_@AM_DEFAULT_V@)
136am__v_P_0 = false
137am__v_P_1 = :
138AM_V_GEN = $(am__v_GEN_@AM_V@)
139am__v_GEN_ = $(am__v_GEN_@AM_DEFAULT_V@)
140am__v_GEN_0 = @echo " GEN " $@;
141am__v_GEN_1 =
142AM_V_at = $(am__v_at_@AM_V@)
143am__v_at_ = $(am__v_at_@AM_DEFAULT_V@)
144am__v_at_0 = @
145am__v_at_1 =
102DEFAULT_INCLUDES = -I.@am__isrc@ -I$(top_builddir)146DEFAULT_INCLUDES = -I.@am__isrc@ -I$(top_builddir)
103depcomp = $(SHELL) $(top_srcdir)/config-aux/depcomp147depcomp = $(SHELL) $(top_srcdir)/config-aux/depcomp
104am__depfiles_maybe = depfiles148am__depfiles_maybe = depfiles
105am__mv = mv -f149am__mv = mv -f
106COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \150COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \
107 $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS)151 $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS)
108LTCOMPILE = $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) \152LTCOMPILE = $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) \
109 --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) \153 $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) \
110 $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS)154 $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) \
155 $(AM_CFLAGS) $(CFLAGS)
156AM_V_CC = $(am__v_CC_@AM_V@)
157am__v_CC_ = $(am__v_CC_@AM_DEFAULT_V@)
158am__v_CC_0 = @echo " CC " $@;
159am__v_CC_1 =
111CCLD = $(CC)160CCLD = $(CC)
112LINK = $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) \161LINK = $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) \
113 --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) $(AM_LDFLAGS) \162 $(LIBTOOLFLAGS) --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \
114 $(LDFLAGS) -o $@163 $(AM_LDFLAGS) $(LDFLAGS) -o $@
164AM_V_CCLD = $(am__v_CCLD_@AM_V@)
165am__v_CCLD_ = $(am__v_CCLD_@AM_DEFAULT_V@)
166am__v_CCLD_0 = @echo " CCLD " $@;
167am__v_CCLD_1 =
115SOURCES = $(libmtdev_la_SOURCES)168SOURCES = $(libmtdev_la_SOURCES)
116DIST_SOURCES = $(libmtdev_la_SOURCES)169DIST_SOURCES = $(libmtdev_la_SOURCES)
117am__can_run_installinfo = \170am__can_run_installinfo = \
@@ -120,11 +173,29 @@
120 *) (install-info --version) >/dev/null 2>&1;; \173 *) (install-info --version) >/dev/null 2>&1;; \
121 esac174 esac
122HEADERS = $(libmtdevinclude_HEADERS)175HEADERS = $(libmtdevinclude_HEADERS)
176am__tagged_files = $(HEADERS) $(SOURCES) $(TAGS_FILES) $(LISP)
177# Read a list of newline-separated strings from the standard input,
178# and print each of them once, without duplicates. Input order is
179# *not* preserved.
180am__uniquify_input = $(AWK) '\
181 BEGIN { nonempty = 0; } \
182 { items[$$0] = 1; nonempty = 1; } \
183 END { if (nonempty) { for (i in items) print i; }; } \
184'
185# Make sure the list of sources is unique. This is necessary because,
186# e.g., the same source file might be shared among _SOURCES variables
187# for different programs/libraries.
188am__define_uniq_tagged_files = \
189 list='$(am__tagged_files)'; \
190 unique=`for i in $$list; do \
191 if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \
192 done | $(am__uniquify_input)`
123ETAGS = etags193ETAGS = etags
124CTAGS = ctags194CTAGS = ctags
125DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST)195DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST)
126ACLOCAL = @ACLOCAL@196ACLOCAL = @ACLOCAL@
127AMTAR = @AMTAR@197AMTAR = @AMTAR@
198AM_DEFAULT_VERBOSITY = @AM_DEFAULT_VERBOSITY@
128AR = @AR@199AR = @AR@
129AUTOCONF = @AUTOCONF@200AUTOCONF = @AUTOCONF@
130AUTOHEADER = @AUTOHEADER@201AUTOHEADER = @AUTOHEADER@
@@ -162,7 +233,6 @@
162LIPO = @LIPO@233LIPO = @LIPO@
163LN_S = @LN_S@234LN_S = @LN_S@
164LTLIBOBJS = @LTLIBOBJS@235LTLIBOBJS = @LTLIBOBJS@
165MAINT = @MAINT@
166MAKEINFO = @MAKEINFO@236MAKEINFO = @MAKEINFO@
167MANIFEST_TOOL = @MANIFEST_TOOL@237MANIFEST_TOOL = @MANIFEST_TOOL@
168MKDIR_P = @MKDIR_P@238MKDIR_P = @MKDIR_P@
@@ -255,7 +325,7 @@
255 match_four.c325 match_four.c
256326
257AM_CFLAGS = $(CWARNFLAGS) #-DMTDEV_NO_LEGACY_ABI327AM_CFLAGS = $(CWARNFLAGS) #-DMTDEV_NO_LEGACY_ABI
258INCLUDES = -I$(top_srcdir)/include/328AM_CPPFLAGS = -I$(top_srcdir)/include/
259libmtdevincludedir = $(includedir)329libmtdevincludedir = $(includedir)
260libmtdevinclude_HEADERS = \330libmtdevinclude_HEADERS = \
261 $(top_srcdir)/include/mtdev-mapping.h \331 $(top_srcdir)/include/mtdev-mapping.h \
@@ -266,7 +336,7 @@
266336
267.SUFFIXES:337.SUFFIXES:
268.SUFFIXES: .c .lo .o .obj338.SUFFIXES: .c .lo .o .obj
269$(srcdir)/Makefile.in: @MAINTAINER_MODE_TRUE@ $(srcdir)/Makefile.am $(am__configure_deps)339$(srcdir)/Makefile.in: $(srcdir)/Makefile.am $(am__configure_deps)
270 @for dep in $?; do \340 @for dep in $?; do \
271 case '$(am__configure_deps)' in \341 case '$(am__configure_deps)' in \
272 *$$dep*) \342 *$$dep*) \
@@ -291,11 +361,12 @@
291$(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES)361$(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES)
292 cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh362 cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh
293363
294$(top_srcdir)/configure: @MAINTAINER_MODE_TRUE@ $(am__configure_deps)364$(top_srcdir)/configure: $(am__configure_deps)
295 cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh365 cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh
296$(ACLOCAL_M4): @MAINTAINER_MODE_TRUE@ $(am__aclocal_m4_deps)366$(ACLOCAL_M4): $(am__aclocal_m4_deps)
297 cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh367 cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh
298$(am__aclocal_m4_deps):368$(am__aclocal_m4_deps):
369
299install-libLTLIBRARIES: $(lib_LTLIBRARIES)370install-libLTLIBRARIES: $(lib_LTLIBRARIES)
300 @$(NORMAL_INSTALL)371 @$(NORMAL_INSTALL)
301 @list='$(lib_LTLIBRARIES)'; test -n "$(libdir)" || list=; \372 @list='$(lib_LTLIBRARIES)'; test -n "$(libdir)" || list=; \
@@ -330,8 +401,9 @@
330 echo rm -f $${locs}; \401 echo rm -f $${locs}; \
331 rm -f $${locs}; \402 rm -f $${locs}; \
332 }403 }
404
333libmtdev.la: $(libmtdev_la_OBJECTS) $(libmtdev_la_DEPENDENCIES) $(EXTRA_libmtdev_la_DEPENDENCIES) 405libmtdev.la: $(libmtdev_la_OBJECTS) $(libmtdev_la_DEPENDENCIES) $(EXTRA_libmtdev_la_DEPENDENCIES)
334 $(libmtdev_la_LINK) -rpath $(libdir) $(libmtdev_la_OBJECTS) $(libmtdev_la_LIBADD) $(LIBS)406 $(AM_V_CCLD)$(libmtdev_la_LINK) -rpath $(libdir) $(libmtdev_la_OBJECTS) $(libmtdev_la_LIBADD) $(LIBS)
335407
336mostlyclean-compile:408mostlyclean-compile:
337 -rm -f *.$(OBJEXT)409 -rm -f *.$(OBJEXT)
@@ -346,25 +418,25 @@
346@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/match_four.Plo@am__quote@418@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/match_four.Plo@am__quote@
347419
348.c.o:420.c.o:
349@am__fastdepCC_TRUE@ $(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $<421@am__fastdepCC_TRUE@ $(AM_V_CC)$(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $<
350@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po422@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po
351@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='$<' object='$@' libtool=no @AMDEPBACKSLASH@423@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='$<' object='$@' libtool=no @AMDEPBACKSLASH@
352@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@424@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
353@am__fastdepCC_FALSE@ $(COMPILE) -c $<425@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(COMPILE) -c -o $@ $<
354426
355.c.obj:427.c.obj:
356@am__fastdepCC_TRUE@ $(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ `$(CYGPATH_W) '$<'`428@am__fastdepCC_TRUE@ $(AM_V_CC)$(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ `$(CYGPATH_W) '$<'`
357@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po429@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po
358@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='$<' object='$@' libtool=no @AMDEPBACKSLASH@430@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='$<' object='$@' libtool=no @AMDEPBACKSLASH@
359@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@431@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
360@am__fastdepCC_FALSE@ $(COMPILE) -c `$(CYGPATH_W) '$<'`432@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(COMPILE) -c -o $@ `$(CYGPATH_W) '$<'`
361433
362.c.lo:434.c.lo:
363@am__fastdepCC_TRUE@ $(LTCOMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $<435@am__fastdepCC_TRUE@ $(AM_V_CC)$(LTCOMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $<
364@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Plo436@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Plo
365@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='$<' object='$@' libtool=yes @AMDEPBACKSLASH@437@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='$<' object='$@' libtool=yes @AMDEPBACKSLASH@
366@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@438@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
367@am__fastdepCC_FALSE@ $(LTCOMPILE) -c -o $@ $<439@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LTCOMPILE) -c -o $@ $<
368440
369mostlyclean-libtool:441mostlyclean-libtool:
370 -rm -f *.lo442 -rm -f *.lo
@@ -393,26 +465,15 @@
393 files=`for p in $$list; do echo $$p; done | sed -e 's|^.*/||'`; \465 files=`for p in $$list; do echo $$p; done | sed -e 's|^.*/||'`; \
394 dir='$(DESTDIR)$(libmtdevincludedir)'; $(am__uninstall_files_from_dir)466 dir='$(DESTDIR)$(libmtdevincludedir)'; $(am__uninstall_files_from_dir)
395467
396ID: $(HEADERS) $(SOURCES) $(LISP) $(TAGS_FILES)468ID: $(am__tagged_files)
397 list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \469 $(am__define_uniq_tagged_files); mkid -fID $$unique
398 unique=`for i in $$list; do \470tags: tags-am
399 if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \471TAGS: tags
400 done | \
401 $(AWK) '{ files[$$0] = 1; nonempty = 1; } \
402 END { if (nonempty) { for (i in files) print i; }; }'`; \
403 mkid -fID $$unique
404tags: TAGS
405472
406TAGS: $(HEADERS) $(SOURCES) $(TAGS_DEPENDENCIES) \473tags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files)
407 $(TAGS_FILES) $(LISP)
408 set x; \474 set x; \
409 here=`pwd`; \475 here=`pwd`; \
410 list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \476 $(am__define_uniq_tagged_files); \
411 unique=`for i in $$list; do \
412 if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \
413 done | \
414 $(AWK) '{ files[$$0] = 1; nonempty = 1; } \
415 END { if (nonempty) { for (i in files) print i; }; }'`; \
416 shift; \477 shift; \
417 if test -z "$(ETAGS_ARGS)$$*$$unique"; then :; else \478 if test -z "$(ETAGS_ARGS)$$*$$unique"; then :; else \
418 test -n "$$unique" || unique=$$empty_fix; \479 test -n "$$unique" || unique=$$empty_fix; \
@@ -424,15 +485,11 @@
424 $$unique; \485 $$unique; \
425 fi; \486 fi; \
426 fi487 fi
427ctags: CTAGS488ctags: ctags-am
428CTAGS: $(HEADERS) $(SOURCES) $(TAGS_DEPENDENCIES) \489
429 $(TAGS_FILES) $(LISP)490CTAGS: ctags
430 list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \491ctags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files)
431 unique=`for i in $$list; do \492 $(am__define_uniq_tagged_files); \
432 if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \
433 done | \
434 $(AWK) '{ files[$$0] = 1; nonempty = 1; } \
435 END { if (nonempty) { for (i in files) print i; }; }'`; \
436 test -z "$(CTAGS_ARGS)$$unique" \493 test -z "$(CTAGS_ARGS)$$unique" \
437 || $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \494 || $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \
438 $$unique495 $$unique
@@ -441,9 +498,10 @@
441 here=`$(am__cd) $(top_builddir) && pwd` \498 here=`$(am__cd) $(top_builddir) && pwd` \
442 && $(am__cd) $(top_srcdir) \499 && $(am__cd) $(top_srcdir) \
443 && gtags -i $(GTAGS_ARGS) "$$here"500 && gtags -i $(GTAGS_ARGS) "$$here"
501cscopelist: cscopelist-am
444502
445cscopelist: $(HEADERS) $(SOURCES) $(LISP)503cscopelist-am: $(am__tagged_files)
446 list='$(SOURCES) $(HEADERS) $(LISP)'; \504 list='$(am__tagged_files)'; \
447 case "$(srcdir)" in \505 case "$(srcdir)" in \
448 [\\/]* | ?:[\\/]*) sdir="$(srcdir)" ;; \506 [\\/]* | ?:[\\/]*) sdir="$(srcdir)" ;; \
449 *) sdir=$(subdir)/$(srcdir) ;; \507 *) sdir=$(subdir)/$(srcdir) ;; \
@@ -600,20 +658,20 @@
600658
601.MAKE: install-am install-strip659.MAKE: install-am install-strip
602660
603.PHONY: CTAGS GTAGS all all-am check check-am clean clean-generic \661.PHONY: CTAGS GTAGS TAGS all all-am check check-am clean clean-generic \
604 clean-libLTLIBRARIES clean-libtool cscopelist ctags distclean \662 clean-libLTLIBRARIES clean-libtool cscopelist-am ctags \
605 distclean-compile distclean-generic distclean-libtool \663 ctags-am distclean distclean-compile distclean-generic \
606 distclean-tags distdir dvi dvi-am html html-am info info-am \664 distclean-libtool distclean-tags distdir dvi dvi-am html \
607 install install-am install-data install-data-am install-dvi \665 html-am info info-am install install-am install-data \
608 install-dvi-am install-exec install-exec-am install-html \666 install-data-am install-dvi install-dvi-am install-exec \
609 install-html-am install-info install-info-am \667 install-exec-am install-html install-html-am install-info \
610 install-libLTLIBRARIES install-libmtdevincludeHEADERS \668 install-info-am install-libLTLIBRARIES \
611 install-man install-pdf install-pdf-am install-ps \669 install-libmtdevincludeHEADERS install-man install-pdf \
612 install-ps-am install-strip installcheck installcheck-am \670 install-pdf-am install-ps install-ps-am install-strip \
613 installdirs maintainer-clean maintainer-clean-generic \671 installcheck installcheck-am installdirs maintainer-clean \
614 mostlyclean mostlyclean-compile mostlyclean-generic \672 maintainer-clean-generic mostlyclean mostlyclean-compile \
615 mostlyclean-libtool pdf pdf-am ps ps-am tags uninstall \673 mostlyclean-generic mostlyclean-libtool pdf pdf-am ps ps-am \
616 uninstall-am uninstall-libLTLIBRARIES \674 tags tags-am uninstall uninstall-am uninstall-libLTLIBRARIES \
617 uninstall-libmtdevincludeHEADERS675 uninstall-libmtdevincludeHEADERS
618676
619677
620678
=== modified file 'src/caps.c'
--- src/caps.c 2012-03-02 15:29:50 +0000
+++ src/caps.c 2013-10-26 22:20:55 +0000
@@ -61,10 +61,10 @@
61 return NULL;61 return NULL;
6262
63 ix = mtdev_abs2mt(code);63 ix = mtdev_abs2mt(code);
64 if (ix < 11)64 if (ix < LEGACY_API_NUM_MT_AXES)
65 return &dev->abs[ix];65 return &dev->abs[ix];
66 else66 else
67 return &dev->state->ext_abs[ix - 11];67 return &dev->state->ext_abs[ix - LEGACY_API_NUM_MT_AXES];
68}68}
6969
70static void set_info(struct mtdev *dev, int code,70static void set_info(struct mtdev *dev, int code,
@@ -156,10 +156,10 @@
156 return 0;156 return 0;
157157
158 ix = mtdev_abs2mt(code);158 ix = mtdev_abs2mt(code);
159 if (ix < 11)159 if (ix < LEGACY_API_NUM_MT_AXES)
160 return dev->has_abs[ix];160 return dev->has_abs[ix];
161 else161 else
162 return dev->state->has_ext_abs[ix - 11];162 return dev->state->has_ext_abs[ix - LEGACY_API_NUM_MT_AXES];
163}163}
164164
165int mtdev_get_abs_minimum(const struct mtdev *dev, int code)165int mtdev_get_abs_minimum(const struct mtdev *dev, int code)
@@ -203,10 +203,10 @@
203 return;203 return;
204204
205 ix = mtdev_abs2mt(code);205 ix = mtdev_abs2mt(code);
206 if (ix < 11)206 if (ix < LEGACY_API_NUM_MT_AXES)
207 dev->has_abs[ix] = value;207 dev->has_abs[ix] = value;
208 else208 else
209 dev->state->has_ext_abs[ix - 11] = value;209 dev->state->has_ext_abs[ix - LEGACY_API_NUM_MT_AXES] = value;
210}210}
211211
212void mtdev_set_abs_maximum(struct mtdev *dev, int code, int value)212void mtdev_set_abs_maximum(struct mtdev *dev, int code, int value)
213213
=== modified file 'src/common.h'
--- src/common.h 2011-01-31 12:02:10 +0000
+++ src/common.h 2013-10-26 22:20:55 +0000
@@ -87,6 +87,14 @@
87/* robust system ioctl calls */87/* robust system ioctl calls */
88#define SYSCALL(call) while (((call) == -1) && (errno == EINTR))88#define SYSCALL(call) while (((call) == -1) && (errno == EINTR))
8989
90/* To be compatible to the original, non-opaque mtdev API, we can only use 11
91 * axes in the basic struct. Everything else is hidden in the state, see the
92 * use of dev->abs[idx] vs dev->state->ext_abs[idx]
93 *
94 * See MT_ABS_SIZE in include/mtdev.h
95 */
96#define LEGACY_API_NUM_MT_AXES 11
97
90/**98/**
91 * struct mtdev - represents an input MT device99 * struct mtdev - represents an input MT device
92 * @has_mtdata: true if the device has MT capabilities100 * @has_mtdata: true if the device has MT capabilities
@@ -105,9 +113,9 @@
105struct mtdev {113struct mtdev {
106 int has_mtdata;114 int has_mtdata;
107 int has_slot;115 int has_slot;
108 int has_abs[11];116 int has_abs[LEGACY_API_NUM_MT_AXES];
109 struct input_absinfo slot;117 struct input_absinfo slot;
110 struct input_absinfo abs[11];118 struct input_absinfo abs[LEGACY_API_NUM_MT_AXES];
111 struct mtdev_state *state;119 struct mtdev_state *state;
112};120};
113121
114122
=== modified file 'src/match_four.c'
--- src/match_four.c 2010-11-15 02:48:21 +0000
+++ src/match_four.c 2013-10-26 22:20:55 +0000
@@ -1,5 +1,6 @@
1#include "match.h"1#include "match.h"
2#include <limits.h>2#include <limits.h>
3#include <stdlib.h>
34
4typedef unsigned char u8;5typedef unsigned char u8;
5typedef unsigned int u32;6typedef unsigned int u32;
67
=== modified file 'src/state.h'
--- src/state.h 2012-03-02 15:29:50 +0000
+++ src/state.h 2013-10-26 22:20:55 +0000
@@ -72,8 +72,8 @@
72 */72 */
73struct mtdev_state {73struct mtdev_state {
7474
75 int has_ext_abs[MT_ABS_SIZE - 11];75 int has_ext_abs[MT_ABS_SIZE - LEGACY_API_NUM_MT_AXES];
76 struct input_absinfo ext_abs[MT_ABS_SIZE - 11];76 struct input_absinfo ext_abs[MT_ABS_SIZE - LEGACY_API_NUM_MT_AXES];
7777
78 struct mtdev_iobuf iobuf;78 struct mtdev_iobuf iobuf;
79 struct mtdev_evbuf inbuf;79 struct mtdev_evbuf inbuf;
8080
=== modified file 'test/Makefile.am'
--- test/Makefile.am 2010-11-15 02:48:21 +0000
+++ test/Makefile.am 2013-10-26 22:20:55 +0000
@@ -1,7 +1,7 @@
1noinst_PROGRAMS = mtdev-mapgen mtdev-matching mtdev-kernel1noinst_PROGRAMS = mtdev-mapgen mtdev-matching mtdev-kernel
2bin_PROGRAMS = mtdev-test2bin_PROGRAMS = mtdev-test
33
4INCLUDES=-I$(top_srcdir)/include/4AM_CPPFLAGS=-I$(top_srcdir)/include/
55
6mtdev_mapgen_SOURCES = mtdev-mapgen.c6mtdev_mapgen_SOURCES = mtdev-mapgen.c
77
88
=== modified file 'test/Makefile.in'
--- test/Makefile.in 2012-09-05 01:22:39 +0000
+++ test/Makefile.in 2013-10-26 22:20:55 +0000
@@ -1,7 +1,7 @@
1# Makefile.in generated by automake 1.12.3 from Makefile.am.1# Makefile.in generated by automake 1.14 from Makefile.am.
2# @configure_input@2# @configure_input@
33
4# Copyright (C) 1994-2012 Free Software Foundation, Inc.4# Copyright (C) 1994-2013 Free Software Foundation, Inc.
55
6# This Makefile.in is free software; the Free Software Foundation6# This Makefile.in is free software; the Free Software Foundation
7# gives unlimited permission to copy and/or distribute it,7# gives unlimited permission to copy and/or distribute it,
@@ -15,23 +15,51 @@
15@SET_MAKE@15@SET_MAKE@
1616
17VPATH = @srcdir@17VPATH = @srcdir@
18am__make_dryrun = \18am__is_gnu_make = test -n '$(MAKEFILE_LIST)' && test -n '$(MAKELEVEL)'
19 { \19am__make_running_with_option = \
20 am__dry=no; \20 case $${target_option-} in \
21 ?) ;; \
22 *) echo "am__make_running_with_option: internal error: invalid" \
23 "target option '$${target_option-}' specified" >&2; \
24 exit 1;; \
25 esac; \
26 has_opt=no; \
27 sane_makeflags=$$MAKEFLAGS; \
28 if $(am__is_gnu_make); then \
29 sane_makeflags=$$MFLAGS; \
30 else \
21 case $$MAKEFLAGS in \31 case $$MAKEFLAGS in \
22 *\\[\ \ ]*) \32 *\\[\ \ ]*) \
23 echo 'am--echo: ; @echo "AM" OK' | $(MAKE) -f - 2>/dev/null \33 bs=\\; \
24 | grep '^AM OK$$' >/dev/null || am__dry=yes;; \34 sane_makeflags=`printf '%s\n' "$$MAKEFLAGS" \
25 *) \35 | sed "s/$$bs$$bs[$$bs $$bs ]*//g"`;; \
26 for am__flg in $$MAKEFLAGS; do \36 esac; \
27 case $$am__flg in \37 fi; \
28 *=*|--*) ;; \38 skip_next=no; \
29 *n*) am__dry=yes; break;; \39 strip_trailopt () \
30 esac; \40 { \
31 done;; \41 flg=`printf '%s\n' "$$flg" | sed "s/$$1.*$$//"`; \
32 esac; \42 }; \
33 test $$am__dry = yes; \43 for flg in $$sane_makeflags; do \
34 }44 test $$skip_next = yes && { skip_next=no; continue; }; \
45 case $$flg in \
46 *=*|--*) continue;; \
47 -*I) strip_trailopt 'I'; skip_next=yes;; \
48 -*I?*) strip_trailopt 'I';; \
49 -*O) strip_trailopt 'O'; skip_next=yes;; \
50 -*O?*) strip_trailopt 'O';; \
51 -*l) strip_trailopt 'l'; skip_next=yes;; \
52 -*l?*) strip_trailopt 'l';; \
53 -[dEDm]) skip_next=yes;; \
54 -[JT]) skip_next=yes;; \
55 esac; \
56 case $$flg in \
57 *$$target_option*) has_opt=yes; break;; \
58 esac; \
59 done; \
60 test $$has_opt = yes
61am__make_dryrun = (target_option=n; $(am__make_running_with_option))
62am__make_keepgoing = (target_option=k; $(am__make_running_with_option))
35pkgdatadir = $(datadir)/@PACKAGE@63pkgdatadir = $(datadir)/@PACKAGE@
36pkgincludedir = $(includedir)/@PACKAGE@64pkgincludedir = $(includedir)/@PACKAGE@
37pkglibdir = $(libdir)/@PACKAGE@65pkglibdir = $(libdir)/@PACKAGE@
@@ -54,7 +82,7 @@
54 mtdev-kernel$(EXEEXT)82 mtdev-kernel$(EXEEXT)
55bin_PROGRAMS = mtdev-test$(EXEEXT)83bin_PROGRAMS = mtdev-test$(EXEEXT)
56subdir = test84subdir = test
57DIST_COMMON = $(srcdir)/Makefile.am $(srcdir)/Makefile.in \85DIST_COMMON = $(srcdir)/Makefile.in $(srcdir)/Makefile.am \
58 $(top_srcdir)/config-aux/depcomp86 $(top_srcdir)/config-aux/depcomp
59ACLOCAL_M4 = $(top_srcdir)/aclocal.m487ACLOCAL_M4 = $(top_srcdir)/aclocal.m4
60am__aclocal_m4_deps = $(top_srcdir)/configure.ac88am__aclocal_m4_deps = $(top_srcdir)/configure.ac
@@ -69,7 +97,11 @@
69am_mtdev_kernel_OBJECTS = mtdev-kernel.$(OBJEXT)97am_mtdev_kernel_OBJECTS = mtdev-kernel.$(OBJEXT)
70mtdev_kernel_OBJECTS = $(am_mtdev_kernel_OBJECTS)98mtdev_kernel_OBJECTS = $(am_mtdev_kernel_OBJECTS)
71mtdev_kernel_LDADD = $(LDADD)99mtdev_kernel_LDADD = $(LDADD)
72mtdev_kernel_LINK = $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) \100AM_V_lt = $(am__v_lt_@AM_V@)
101am__v_lt_ = $(am__v_lt_@AM_DEFAULT_V@)
102am__v_lt_0 = --silent
103am__v_lt_1 =
104mtdev_kernel_LINK = $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) \
73 $(LIBTOOLFLAGS) --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \105 $(LIBTOOLFLAGS) --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \
74 $(mtdev_kernel_LDFLAGS) $(LDFLAGS) -o $@106 $(mtdev_kernel_LDFLAGS) $(LDFLAGS) -o $@
75am_mtdev_mapgen_OBJECTS = mtdev-mapgen.$(OBJEXT)107am_mtdev_mapgen_OBJECTS = mtdev-mapgen.$(OBJEXT)
@@ -78,28 +110,50 @@
78am_mtdev_matching_OBJECTS = mtdev-matching.$(OBJEXT)110am_mtdev_matching_OBJECTS = mtdev-matching.$(OBJEXT)
79mtdev_matching_OBJECTS = $(am_mtdev_matching_OBJECTS)111mtdev_matching_OBJECTS = $(am_mtdev_matching_OBJECTS)
80mtdev_matching_LDADD = $(LDADD)112mtdev_matching_LDADD = $(LDADD)
81mtdev_matching_LINK = $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) \113mtdev_matching_LINK = $(LIBTOOL) $(AM_V_lt) --tag=CC \
82 $(LIBTOOLFLAGS) --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \114 $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=link $(CCLD) \
83 $(mtdev_matching_LDFLAGS) $(LDFLAGS) -o $@115 $(AM_CFLAGS) $(CFLAGS) $(mtdev_matching_LDFLAGS) $(LDFLAGS) -o \
116 $@
84am_mtdev_test_OBJECTS = mtdev-test.$(OBJEXT)117am_mtdev_test_OBJECTS = mtdev-test.$(OBJEXT)
85mtdev_test_OBJECTS = $(am_mtdev_test_OBJECTS)118mtdev_test_OBJECTS = $(am_mtdev_test_OBJECTS)
86mtdev_test_LDADD = $(LDADD)119mtdev_test_LDADD = $(LDADD)
87mtdev_test_LINK = $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) \120mtdev_test_LINK = $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) \
88 $(LIBTOOLFLAGS) --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \121 $(LIBTOOLFLAGS) --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \
89 $(mtdev_test_LDFLAGS) $(LDFLAGS) -o $@122 $(mtdev_test_LDFLAGS) $(LDFLAGS) -o $@
123AM_V_P = $(am__v_P_@AM_V@)
124am__v_P_ = $(am__v_P_@AM_DEFAULT_V@)
125am__v_P_0 = false
126am__v_P_1 = :
127AM_V_GEN = $(am__v_GEN_@AM_V@)
128am__v_GEN_ = $(am__v_GEN_@AM_DEFAULT_V@)
129am__v_GEN_0 = @echo " GEN " $@;
130am__v_GEN_1 =
131AM_V_at = $(am__v_at_@AM_V@)
132am__v_at_ = $(am__v_at_@AM_DEFAULT_V@)
133am__v_at_0 = @
134am__v_at_1 =
90DEFAULT_INCLUDES = -I.@am__isrc@ -I$(top_builddir)135DEFAULT_INCLUDES = -I.@am__isrc@ -I$(top_builddir)
91depcomp = $(SHELL) $(top_srcdir)/config-aux/depcomp136depcomp = $(SHELL) $(top_srcdir)/config-aux/depcomp
92am__depfiles_maybe = depfiles137am__depfiles_maybe = depfiles
93am__mv = mv -f138am__mv = mv -f
94COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \139COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \
95 $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS)140 $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS)
96LTCOMPILE = $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) \141LTCOMPILE = $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) \
97 --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) \142 $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) \
98 $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS)143 $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) \
144 $(AM_CFLAGS) $(CFLAGS)
145AM_V_CC = $(am__v_CC_@AM_V@)
146am__v_CC_ = $(am__v_CC_@AM_DEFAULT_V@)
147am__v_CC_0 = @echo " CC " $@;
148am__v_CC_1 =
99CCLD = $(CC)149CCLD = $(CC)
100LINK = $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) \150LINK = $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) \
101 --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) $(AM_LDFLAGS) \151 $(LIBTOOLFLAGS) --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \
102 $(LDFLAGS) -o $@152 $(AM_LDFLAGS) $(LDFLAGS) -o $@
153AM_V_CCLD = $(am__v_CCLD_@AM_V@)
154am__v_CCLD_ = $(am__v_CCLD_@AM_DEFAULT_V@)
155am__v_CCLD_0 = @echo " CCLD " $@;
156am__v_CCLD_1 =
103SOURCES = $(mtdev_kernel_SOURCES) $(mtdev_mapgen_SOURCES) \157SOURCES = $(mtdev_kernel_SOURCES) $(mtdev_mapgen_SOURCES) \
104 $(mtdev_matching_SOURCES) $(mtdev_test_SOURCES)158 $(mtdev_matching_SOURCES) $(mtdev_test_SOURCES)
105DIST_SOURCES = $(mtdev_kernel_SOURCES) $(mtdev_mapgen_SOURCES) \159DIST_SOURCES = $(mtdev_kernel_SOURCES) $(mtdev_mapgen_SOURCES) \
@@ -109,11 +163,29 @@
109 n|no|NO) false;; \163 n|no|NO) false;; \
110 *) (install-info --version) >/dev/null 2>&1;; \164 *) (install-info --version) >/dev/null 2>&1;; \
111 esac165 esac
166am__tagged_files = $(HEADERS) $(SOURCES) $(TAGS_FILES) $(LISP)
167# Read a list of newline-separated strings from the standard input,
168# and print each of them once, without duplicates. Input order is
169# *not* preserved.
170am__uniquify_input = $(AWK) '\
171 BEGIN { nonempty = 0; } \
172 { items[$$0] = 1; nonempty = 1; } \
173 END { if (nonempty) { for (i in items) print i; }; } \
174'
175# Make sure the list of sources is unique. This is necessary because,
176# e.g., the same source file might be shared among _SOURCES variables
177# for different programs/libraries.
178am__define_uniq_tagged_files = \
179 list='$(am__tagged_files)'; \
180 unique=`for i in $$list; do \
181 if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \
182 done | $(am__uniquify_input)`
112ETAGS = etags183ETAGS = etags
113CTAGS = ctags184CTAGS = ctags
114DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST)185DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST)
115ACLOCAL = @ACLOCAL@186ACLOCAL = @ACLOCAL@
116AMTAR = @AMTAR@187AMTAR = @AMTAR@
188AM_DEFAULT_VERBOSITY = @AM_DEFAULT_VERBOSITY@
117AR = @AR@189AR = @AR@
118AUTOCONF = @AUTOCONF@190AUTOCONF = @AUTOCONF@
119AUTOHEADER = @AUTOHEADER@191AUTOHEADER = @AUTOHEADER@
@@ -151,7 +223,6 @@
151LIPO = @LIPO@223LIPO = @LIPO@
152LN_S = @LN_S@224LN_S = @LN_S@
153LTLIBOBJS = @LTLIBOBJS@225LTLIBOBJS = @LTLIBOBJS@
154MAINT = @MAINT@
155MAKEINFO = @MAKEINFO@226MAKEINFO = @MAKEINFO@
156MANIFEST_TOOL = @MANIFEST_TOOL@227MANIFEST_TOOL = @MANIFEST_TOOL@
157MKDIR_P = @MKDIR_P@228MKDIR_P = @MKDIR_P@
@@ -227,7 +298,7 @@
227top_build_prefix = @top_build_prefix@298top_build_prefix = @top_build_prefix@
228top_builddir = @top_builddir@299top_builddir = @top_builddir@
229top_srcdir = @top_srcdir@300top_srcdir = @top_srcdir@
230INCLUDES = -I$(top_srcdir)/include/301AM_CPPFLAGS = -I$(top_srcdir)/include/
231mtdev_mapgen_SOURCES = mtdev-mapgen.c302mtdev_mapgen_SOURCES = mtdev-mapgen.c
232mtdev_matching_SOURCES = mtdev-matching.c303mtdev_matching_SOURCES = mtdev-matching.c
233mtdev_matching_LDFLAGS = -L$(top_builddir)/src/.libs/ -lmtdev304mtdev_matching_LDFLAGS = -L$(top_builddir)/src/.libs/ -lmtdev
@@ -239,7 +310,7 @@
239310
240.SUFFIXES:311.SUFFIXES:
241.SUFFIXES: .c .lo .o .obj312.SUFFIXES: .c .lo .o .obj
242$(srcdir)/Makefile.in: @MAINTAINER_MODE_TRUE@ $(srcdir)/Makefile.am $(am__configure_deps)313$(srcdir)/Makefile.in: $(srcdir)/Makefile.am $(am__configure_deps)
243 @for dep in $?; do \314 @for dep in $?; do \
244 case '$(am__configure_deps)' in \315 case '$(am__configure_deps)' in \
245 *$$dep*) \316 *$$dep*) \
@@ -264,9 +335,9 @@
264$(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES)335$(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES)
265 cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh336 cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh
266337
267$(top_srcdir)/configure: @MAINTAINER_MODE_TRUE@ $(am__configure_deps)338$(top_srcdir)/configure: $(am__configure_deps)
268 cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh339 cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh
269$(ACLOCAL_M4): @MAINTAINER_MODE_TRUE@ $(am__aclocal_m4_deps)340$(ACLOCAL_M4): $(am__aclocal_m4_deps)
270 cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh341 cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh
271$(am__aclocal_m4_deps):342$(am__aclocal_m4_deps):
272install-binPROGRAMS: $(bin_PROGRAMS)343install-binPROGRAMS: $(bin_PROGRAMS)
@@ -278,10 +349,12 @@
278 fi; \349 fi; \
279 for p in $$list; do echo "$$p $$p"; done | \350 for p in $$list; do echo "$$p $$p"; done | \
280 sed 's/$(EXEEXT)$$//' | \351 sed 's/$(EXEEXT)$$//' | \
281 while read p p1; do if test -f $$p || test -f $$p1; \352 while read p p1; do if test -f $$p \
282 then echo "$$p"; echo "$$p"; else :; fi; \353 || test -f $$p1 \
354 ; then echo "$$p"; echo "$$p"; else :; fi; \
283 done | \355 done | \
284 sed -e 'p;s,.*/,,;n;h' -e 's|.*|.|' \356 sed -e 'p;s,.*/,,;n;h' \
357 -e 's|.*|.|' \
285 -e 'p;x;s,.*/,,;s/$(EXEEXT)$$//;$(transform);s/$$/$(EXEEXT)/' | \358 -e 'p;x;s,.*/,,;s/$(EXEEXT)$$//;$(transform);s/$$/$(EXEEXT)/' | \
286 sed 'N;N;N;s,\n, ,g' | \359 sed 'N;N;N;s,\n, ,g' | \
287 $(AWK) 'BEGIN { files["."] = ""; dirs["."] = 1 } \360 $(AWK) 'BEGIN { files["."] = ""; dirs["."] = 1 } \
@@ -302,7 +375,8 @@
302 @list='$(bin_PROGRAMS)'; test -n "$(bindir)" || list=; \375 @list='$(bin_PROGRAMS)'; test -n "$(bindir)" || list=; \
303 files=`for p in $$list; do echo "$$p"; done | \376 files=`for p in $$list; do echo "$$p"; done | \
304 sed -e 'h;s,^.*/,,;s/$(EXEEXT)$$//;$(transform)' \377 sed -e 'h;s,^.*/,,;s/$(EXEEXT)$$//;$(transform)' \
305 -e 's/$$/$(EXEEXT)/' `; \378 -e 's/$$/$(EXEEXT)/' \
379 `; \
306 test -n "$$list" || exit 0; \380 test -n "$$list" || exit 0; \
307 echo " ( cd '$(DESTDIR)$(bindir)' && rm -f" $$files ")"; \381 echo " ( cd '$(DESTDIR)$(bindir)' && rm -f" $$files ")"; \
308 cd "$(DESTDIR)$(bindir)" && rm -f $$files382 cd "$(DESTDIR)$(bindir)" && rm -f $$files
@@ -324,18 +398,22 @@
324 list=`for p in $$list; do echo "$$p"; done | sed 's/$(EXEEXT)$$//'`; \398 list=`for p in $$list; do echo "$$p"; done | sed 's/$(EXEEXT)$$//'`; \
325 echo " rm -f" $$list; \399 echo " rm -f" $$list; \
326 rm -f $$list400 rm -f $$list
401
327mtdev-kernel$(EXEEXT): $(mtdev_kernel_OBJECTS) $(mtdev_kernel_DEPENDENCIES) $(EXTRA_mtdev_kernel_DEPENDENCIES) 402mtdev-kernel$(EXEEXT): $(mtdev_kernel_OBJECTS) $(mtdev_kernel_DEPENDENCIES) $(EXTRA_mtdev_kernel_DEPENDENCIES)
328 @rm -f mtdev-kernel$(EXEEXT)403 @rm -f mtdev-kernel$(EXEEXT)
329 $(mtdev_kernel_LINK) $(mtdev_kernel_OBJECTS) $(mtdev_kernel_LDADD) $(LIBS)404 $(AM_V_CCLD)$(mtdev_kernel_LINK) $(mtdev_kernel_OBJECTS) $(mtdev_kernel_LDADD) $(LIBS)
405
330mtdev-mapgen$(EXEEXT): $(mtdev_mapgen_OBJECTS) $(mtdev_mapgen_DEPENDENCIES) $(EXTRA_mtdev_mapgen_DEPENDENCIES) 406mtdev-mapgen$(EXEEXT): $(mtdev_mapgen_OBJECTS) $(mtdev_mapgen_DEPENDENCIES) $(EXTRA_mtdev_mapgen_DEPENDENCIES)
331 @rm -f mtdev-mapgen$(EXEEXT)407 @rm -f mtdev-mapgen$(EXEEXT)
332 $(LINK) $(mtdev_mapgen_OBJECTS) $(mtdev_mapgen_LDADD) $(LIBS)408 $(AM_V_CCLD)$(LINK) $(mtdev_mapgen_OBJECTS) $(mtdev_mapgen_LDADD) $(LIBS)
409
333mtdev-matching$(EXEEXT): $(mtdev_matching_OBJECTS) $(mtdev_matching_DEPENDENCIES) $(EXTRA_mtdev_matching_DEPENDENCIES) 410mtdev-matching$(EXEEXT): $(mtdev_matching_OBJECTS) $(mtdev_matching_DEPENDENCIES) $(EXTRA_mtdev_matching_DEPENDENCIES)
334 @rm -f mtdev-matching$(EXEEXT)411 @rm -f mtdev-matching$(EXEEXT)
335 $(mtdev_matching_LINK) $(mtdev_matching_OBJECTS) $(mtdev_matching_LDADD) $(LIBS)412 $(AM_V_CCLD)$(mtdev_matching_LINK) $(mtdev_matching_OBJECTS) $(mtdev_matching_LDADD) $(LIBS)
413
336mtdev-test$(EXEEXT): $(mtdev_test_OBJECTS) $(mtdev_test_DEPENDENCIES) $(EXTRA_mtdev_test_DEPENDENCIES) 414mtdev-test$(EXEEXT): $(mtdev_test_OBJECTS) $(mtdev_test_DEPENDENCIES) $(EXTRA_mtdev_test_DEPENDENCIES)
337 @rm -f mtdev-test$(EXEEXT)415 @rm -f mtdev-test$(EXEEXT)
338 $(mtdev_test_LINK) $(mtdev_test_OBJECTS) $(mtdev_test_LDADD) $(LIBS)416 $(AM_V_CCLD)$(mtdev_test_LINK) $(mtdev_test_OBJECTS) $(mtdev_test_LDADD) $(LIBS)
339417
340mostlyclean-compile:418mostlyclean-compile:
341 -rm -f *.$(OBJEXT)419 -rm -f *.$(OBJEXT)
@@ -349,25 +427,25 @@
349@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/mtdev-test.Po@am__quote@427@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/mtdev-test.Po@am__quote@
350428
351.c.o:429.c.o:
352@am__fastdepCC_TRUE@ $(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $<430@am__fastdepCC_TRUE@ $(AM_V_CC)$(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $<
353@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po431@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po
354@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='$<' object='$@' libtool=no @AMDEPBACKSLASH@432@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='$<' object='$@' libtool=no @AMDEPBACKSLASH@
355@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@433@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
356@am__fastdepCC_FALSE@ $(COMPILE) -c $<434@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(COMPILE) -c -o $@ $<
357435
358.c.obj:436.c.obj:
359@am__fastdepCC_TRUE@ $(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ `$(CYGPATH_W) '$<'`437@am__fastdepCC_TRUE@ $(AM_V_CC)$(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ `$(CYGPATH_W) '$<'`
360@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po438@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po
361@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='$<' object='$@' libtool=no @AMDEPBACKSLASH@439@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='$<' object='$@' libtool=no @AMDEPBACKSLASH@
362@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@440@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
363@am__fastdepCC_FALSE@ $(COMPILE) -c `$(CYGPATH_W) '$<'`441@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(COMPILE) -c -o $@ `$(CYGPATH_W) '$<'`
364442
365.c.lo:443.c.lo:
366@am__fastdepCC_TRUE@ $(LTCOMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $<444@am__fastdepCC_TRUE@ $(AM_V_CC)$(LTCOMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $<
367@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Plo445@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Plo
368@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='$<' object='$@' libtool=yes @AMDEPBACKSLASH@446@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='$<' object='$@' libtool=yes @AMDEPBACKSLASH@
369@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@447@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
370@am__fastdepCC_FALSE@ $(LTCOMPILE) -c -o $@ $<448@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LTCOMPILE) -c -o $@ $<
371449
372mostlyclean-libtool:450mostlyclean-libtool:
373 -rm -f *.lo451 -rm -f *.lo
@@ -375,26 +453,15 @@
375clean-libtool:453clean-libtool:
376 -rm -rf .libs _libs454 -rm -rf .libs _libs
377455
378ID: $(HEADERS) $(SOURCES) $(LISP) $(TAGS_FILES)456ID: $(am__tagged_files)
379 list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \457 $(am__define_uniq_tagged_files); mkid -fID $$unique
380 unique=`for i in $$list; do \458tags: tags-am
381 if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \459TAGS: tags
382 done | \
383 $(AWK) '{ files[$$0] = 1; nonempty = 1; } \
384 END { if (nonempty) { for (i in files) print i; }; }'`; \
385 mkid -fID $$unique
386tags: TAGS
387460
388TAGS: $(HEADERS) $(SOURCES) $(TAGS_DEPENDENCIES) \461tags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files)
389 $(TAGS_FILES) $(LISP)
390 set x; \462 set x; \
391 here=`pwd`; \463 here=`pwd`; \
392 list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \464 $(am__define_uniq_tagged_files); \
393 unique=`for i in $$list; do \
394 if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \
395 done | \
396 $(AWK) '{ files[$$0] = 1; nonempty = 1; } \
397 END { if (nonempty) { for (i in files) print i; }; }'`; \
398 shift; \465 shift; \
399 if test -z "$(ETAGS_ARGS)$$*$$unique"; then :; else \466 if test -z "$(ETAGS_ARGS)$$*$$unique"; then :; else \
400 test -n "$$unique" || unique=$$empty_fix; \467 test -n "$$unique" || unique=$$empty_fix; \
@@ -406,15 +473,11 @@
406 $$unique; \473 $$unique; \
407 fi; \474 fi; \
408 fi475 fi
409ctags: CTAGS476ctags: ctags-am
410CTAGS: $(HEADERS) $(SOURCES) $(TAGS_DEPENDENCIES) \477
411 $(TAGS_FILES) $(LISP)478CTAGS: ctags
412 list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \479ctags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files)
413 unique=`for i in $$list; do \480 $(am__define_uniq_tagged_files); \
414 if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \
415 done | \
416 $(AWK) '{ files[$$0] = 1; nonempty = 1; } \
417 END { if (nonempty) { for (i in files) print i; }; }'`; \
418 test -z "$(CTAGS_ARGS)$$unique" \481 test -z "$(CTAGS_ARGS)$$unique" \
419 || $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \482 || $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \
420 $$unique483 $$unique
@@ -423,9 +486,10 @@
423 here=`$(am__cd) $(top_builddir) && pwd` \486 here=`$(am__cd) $(top_builddir) && pwd` \
424 && $(am__cd) $(top_srcdir) \487 && $(am__cd) $(top_srcdir) \
425 && gtags -i $(GTAGS_ARGS) "$$here"488 && gtags -i $(GTAGS_ARGS) "$$here"
489cscopelist: cscopelist-am
426490
427cscopelist: $(HEADERS) $(SOURCES) $(LISP)491cscopelist-am: $(am__tagged_files)
428 list='$(SOURCES) $(HEADERS) $(LISP)'; \492 list='$(am__tagged_files)'; \
429 case "$(srcdir)" in \493 case "$(srcdir)" in \
430 [\\/]* | ?:[\\/]*) sdir="$(srcdir)" ;; \494 [\\/]* | ?:[\\/]*) sdir="$(srcdir)" ;; \
431 *) sdir=$(subdir)/$(srcdir) ;; \495 *) sdir=$(subdir)/$(srcdir) ;; \
@@ -581,19 +645,20 @@
581645
582.MAKE: install-am install-strip646.MAKE: install-am install-strip
583647
584.PHONY: CTAGS GTAGS all all-am check check-am clean clean-binPROGRAMS \648.PHONY: CTAGS GTAGS TAGS all all-am check check-am clean \
585 clean-generic clean-libtool clean-noinstPROGRAMS cscopelist \649 clean-binPROGRAMS clean-generic clean-libtool \
586 ctags distclean distclean-compile distclean-generic \650 clean-noinstPROGRAMS cscopelist-am ctags ctags-am distclean \
587 distclean-libtool distclean-tags distdir dvi dvi-am html \651 distclean-compile distclean-generic distclean-libtool \
588 html-am info info-am install install-am install-binPROGRAMS \652 distclean-tags distdir dvi dvi-am html html-am info info-am \
589 install-data install-data-am install-dvi install-dvi-am \653 install install-am install-binPROGRAMS install-data \
590 install-exec install-exec-am install-html install-html-am \654 install-data-am install-dvi install-dvi-am install-exec \
591 install-info install-info-am install-man install-pdf \655 install-exec-am install-html install-html-am install-info \
592 install-pdf-am install-ps install-ps-am install-strip \656 install-info-am install-man install-pdf install-pdf-am \
593 installcheck installcheck-am installdirs maintainer-clean \657 install-ps install-ps-am install-strip installcheck \
658 installcheck-am installdirs maintainer-clean \
594 maintainer-clean-generic mostlyclean mostlyclean-compile \659 maintainer-clean-generic mostlyclean mostlyclean-compile \
595 mostlyclean-generic mostlyclean-libtool pdf pdf-am ps ps-am \660 mostlyclean-generic mostlyclean-libtool pdf pdf-am ps ps-am \
596 tags uninstall uninstall-am uninstall-binPROGRAMS661 tags tags-am uninstall uninstall-am uninstall-binPROGRAMS
597662
598663
599# Tell versions [3.59,3.63) of GNU make to not export all variables.664# Tell versions [3.59,3.63) of GNU make to not export all variables.
600665
=== modified file 'test/mtdev-kernel.c'
--- test/mtdev-kernel.c 2010-11-15 02:48:21 +0000
+++ test/mtdev-kernel.c 2013-10-26 22:20:55 +0000
@@ -28,6 +28,7 @@
2828
29#include <../src/common.h>29#include <../src/common.h>
30#include <stdio.h>30#include <stdio.h>
31#include <stdlib.h>
31#include <time.h>32#include <time.h>
3233
33/*34/*

Subscribers

People subscribed via source and target branches

to all changes: