Merge lp:~xnox/ubuntu/trusty/mountall/remount into lp:ubuntu/trusty/mountall

Proposed by Dimitri John Ledkov
Status: Needs review
Proposed branch: lp:~xnox/ubuntu/trusty/mountall/remount
Merge into: lp:ubuntu/trusty/mountall
Diff against target: 50480 lines (+512/-49588)
25 files modified
.bzrignore (+39/-0)
Makefile.in (+0/-873)
aclocal.m4 (+0/-1175)
apport/Makefile.in (+0/-556)
conf/Makefile.in (+0/-579)
config.guess (+0/-1552)
config.h.in (+0/-401)
config.sub (+0/-1788)
configure (+0/-20995)
configure.ac (+7/-1)
dbus/Makefile.in (+0/-561)
debian/changelog (+15/-0)
debian/control (+1/-1)
debian/initramfs/Makefile.in (+0/-570)
debian/initramfs/upstart-jobs/Makefile.in (+0/-556)
debian/rules (+1/-1)
ltmain.sh (+0/-9661)
m4/libtool.m4 (+0/-7991)
man/Makefile.in (+0/-634)
src/Makefile.am (+25/-0)
src/Makefile.in (+0/-831)
src/fstab (+2/-2)
src/mountall.c (+273/-104)
src/tests/test_mountall.c (+149/-0)
util/Makefile.in (+0/-756)
To merge this branch: bzr merge lp:~xnox/ubuntu/trusty/mountall/remount
Reviewer Review Type Date Requested Status
Upstart Reviewers Pending
Review via email: mp+197840@code.launchpad.net

Description of the change

This is one way to implement/fix "fstab does not honor /proc mount options".

The actual problem is: mount-points are remounted, only if currently mounted "ro" and "ro was not requested.

Implementation is to convert current/requested mount options from character array, to NihHash and then compare the two sets of mount options. I don't like this approach as it is buggy in many subtle ways:
- "complement" options are not parsed properly, e.g. -orw,ro,rw are stored as RW and RO keys.
- ordering of the options is no longer preserved
- requested options, are not necessarily the same after successful mount, e.g. "defaults" get expanded, no-op options are dropped (tmpfs gid=0), relative options expanded (size=10%) etc.

What I think a better approach is to:
- when mountall starts mark up all mountpoints that we didn't mount
- remount them once

That should be a more simple and more robust approach.

I'm leaving code here for now, in case someone wants to pick it up / review. There are other useful changes in this branch (e.g. test-cases and general clean-up).

To post a comment you must log in.

Unmerged revisions

466. By Dimitri John Ledkov

Skip remounting placeholder mountpoints.

465. By Dimitri John Ledkov

and skip no-op requested mount options

464. By Dimitri John Ledkov

and account for mountinfo representing mode in octal without leading 0

463. By Dimitri John Ledkov

Remount each mount point at most once.

462. By Dimitri John Ledkov

add more compare options diff

461. By Dimitri John Ledkov

unless requested mount option value is relative, ends with '%'

460. By Dimitri John Ledkov

Set /sys/fs/cgroup size to 4k (the default)

459. By Dimitri John Ledkov

Remount filesystems, if requested and current mount options are
different (LP: #1039887)

458. By Dimitri John Ledkov

Convert opts/mount_opts for character array to NihHash.

457. By Dimitri John Ledkov

Add test framework, and needs_remount unit tests.

Preview Diff

[H/L] Next/Prev Comment, [J/K] Next/Prev File, [N/P] Next/Prev Hunk
1=== added file '.bzrignore'
2--- .bzrignore 1970-01-01 00:00:00 +0000
3+++ .bzrignore 2013-12-05 10:42:25 +0000
4@@ -0,0 +1,39 @@
5+Makefile
6+Makefile.in
7+.libs/
8+.deps/
9+aclocal.m4
10+autom4te.cache/
11+config.guess
12+config.h
13+config.h.in
14+config.log
15+config.status
16+config.sub
17+configure
18+libtool
19+ltmain.sh
20+stamp-h1
21+tap-driver.sh
22+test-driver
23+debian/autoreconf.after
24+debian/autoreconf.before
25+debian/mountall.debhelper.log
26+m4/libtool.m4
27+po/POTFILES
28+po/mountall.pot
29+po/remove-potcdate.sed
30+src/com.ubuntu.Mountall.Server.c
31+src/com.ubuntu.Mountall.Server.h
32+src/com.ubuntu.Upstart.c
33+src/com.ubuntu.Upstart.h
34+src/mountall
35+src/test-suite.log
36+src/test_mountall
37+src/test_mountall.log
38+src/test_mountall.trs
39+src/tests/.deps/
40+src/tests/.dirstamp
41+util/com.ubuntu.Mountall.Server.c
42+util/com.ubuntu.Mountall.Server.h
43+util/mntctl
44
45=== removed file 'Makefile.in'
46--- Makefile.in 2013-07-02 23:10:21 +0000
47+++ Makefile.in 1970-01-01 00:00:00 +0000
48@@ -1,873 +0,0 @@
49-# Makefile.in generated by automake 1.13.3 from Makefile.am.
50-# @configure_input@
51-
52-# Copyright (C) 1994-2013 Free Software Foundation, Inc.
53-
54-# This Makefile.in is free software; the Free Software Foundation
55-# gives unlimited permission to copy and/or distribute it,
56-# with or without modifications, as long as this notice is preserved.
57-
58-# This program is distributed in the hope that it will be useful,
59-# but WITHOUT ANY WARRANTY, to the extent permitted by law; without
60-# even the implied warranty of MERCHANTABILITY or FITNESS FOR A
61-# PARTICULAR PURPOSE.
62-
63-@SET_MAKE@
64-VPATH = @srcdir@
65-am__is_gnu_make = test -n '$(MAKEFILE_LIST)' && test -n '$(MAKELEVEL)'
66-am__make_running_with_option = \
67- case $${target_option-} in \
68- ?) ;; \
69- *) echo "am__make_running_with_option: internal error: invalid" \
70- "target option '$${target_option-}' specified" >&2; \
71- exit 1;; \
72- esac; \
73- has_opt=no; \
74- sane_makeflags=$$MAKEFLAGS; \
75- if $(am__is_gnu_make); then \
76- sane_makeflags=$$MFLAGS; \
77- else \
78- case $$MAKEFLAGS in \
79- *\\[\ \ ]*) \
80- bs=\\; \
81- sane_makeflags=`printf '%s\n' "$$MAKEFLAGS" \
82- | sed "s/$$bs$$bs[$$bs $$bs ]*//g"`;; \
83- esac; \
84- fi; \
85- skip_next=no; \
86- strip_trailopt () \
87- { \
88- flg=`printf '%s\n' "$$flg" | sed "s/$$1.*$$//"`; \
89- }; \
90- for flg in $$sane_makeflags; do \
91- test $$skip_next = yes && { skip_next=no; continue; }; \
92- case $$flg in \
93- *=*|--*) continue;; \
94- -*I) strip_trailopt 'I'; skip_next=yes;; \
95- -*I?*) strip_trailopt 'I';; \
96- -*O) strip_trailopt 'O'; skip_next=yes;; \
97- -*O?*) strip_trailopt 'O';; \
98- -*l) strip_trailopt 'l'; skip_next=yes;; \
99- -*l?*) strip_trailopt 'l';; \
100- -[dEDm]) skip_next=yes;; \
101- -[JT]) skip_next=yes;; \
102- esac; \
103- case $$flg in \
104- *$$target_option*) has_opt=yes; break;; \
105- esac; \
106- done; \
107- test $$has_opt = yes
108-am__make_dryrun = (target_option=n; $(am__make_running_with_option))
109-am__make_keepgoing = (target_option=k; $(am__make_running_with_option))
110-pkgdatadir = $(datadir)/@PACKAGE@
111-pkgincludedir = $(includedir)/@PACKAGE@
112-pkglibdir = $(libdir)/@PACKAGE@
113-pkglibexecdir = $(libexecdir)/@PACKAGE@
114-am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd
115-install_sh_DATA = $(install_sh) -c -m 644
116-install_sh_PROGRAM = $(install_sh) -c
117-install_sh_SCRIPT = $(install_sh) -c
118-INSTALL_HEADER = $(INSTALL_DATA)
119-transform = $(program_transform_name)
120-NORMAL_INSTALL = :
121-PRE_INSTALL = :
122-POST_INSTALL = :
123-NORMAL_UNINSTALL = :
124-PRE_UNINSTALL = :
125-POST_UNINSTALL = :
126-build_triplet = @build@
127-host_triplet = @host@
128-subdir = .
129-DIST_COMMON = $(srcdir)/Makefile.in $(srcdir)/Makefile.am \
130- $(top_srcdir)/configure $(am__configure_deps) \
131- $(srcdir)/config.h.in $(top_srcdir)/intl/Makefile.in ABOUT-NLS \
132- COPYING compile config.guess config.rpath config.sub depcomp \
133- install-sh missing ltmain.sh
134-ACLOCAL_M4 = $(top_srcdir)/aclocal.m4
135-am__aclocal_m4_deps = $(top_srcdir)/m4/codeset.m4 \
136- $(top_srcdir)/m4/gettext.m4 $(top_srcdir)/m4/glibc2.m4 \
137- $(top_srcdir)/m4/glibc21.m4 $(top_srcdir)/m4/iconv.m4 \
138- $(top_srcdir)/m4/intdiv0.m4 $(top_srcdir)/m4/intl.m4 \
139- $(top_srcdir)/m4/intlmacosx.m4 $(top_srcdir)/m4/intmax.m4 \
140- $(top_srcdir)/m4/inttypes-pri.m4 \
141- $(top_srcdir)/m4/inttypes_h.m4 $(top_srcdir)/m4/lcmessage.m4 \
142- $(top_srcdir)/m4/lib-ld.m4 $(top_srcdir)/m4/lib-link.m4 \
143- $(top_srcdir)/m4/lib-prefix.m4 $(top_srcdir)/m4/libnih.m4 \
144- $(top_srcdir)/m4/libtool.m4 $(top_srcdir)/m4/lock.m4 \
145- $(top_srcdir)/m4/longlong.m4 $(top_srcdir)/m4/ltoptions.m4 \
146- $(top_srcdir)/m4/ltsugar.m4 $(top_srcdir)/m4/ltversion.m4 \
147- $(top_srcdir)/m4/lt~obsolete.m4 $(top_srcdir)/m4/nls.m4 \
148- $(top_srcdir)/m4/pkg.m4 $(top_srcdir)/m4/po.m4 \
149- $(top_srcdir)/m4/printf-posix.m4 $(top_srcdir)/m4/progtest.m4 \
150- $(top_srcdir)/m4/size_max.m4 $(top_srcdir)/m4/stdint_h.m4 \
151- $(top_srcdir)/m4/uintmax_t.m4 $(top_srcdir)/m4/ulonglong.m4 \
152- $(top_srcdir)/m4/visibility.m4 $(top_srcdir)/m4/wchar_t.m4 \
153- $(top_srcdir)/m4/wint_t.m4 $(top_srcdir)/m4/xsize.m4 \
154- $(top_srcdir)/configure.ac
155-am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \
156- $(ACLOCAL_M4)
157-am__CONFIG_DISTCLEAN_FILES = config.status config.cache config.log \
158- configure.lineno config.status.lineno
159-mkinstalldirs = $(install_sh) -d
160-CONFIG_HEADER = config.h
161-CONFIG_CLEAN_FILES = intl/Makefile
162-CONFIG_CLEAN_VPATH_FILES =
163-AM_V_P = $(am__v_P_@AM_V@)
164-am__v_P_ = $(am__v_P_@AM_DEFAULT_V@)
165-am__v_P_0 = false
166-am__v_P_1 = :
167-AM_V_GEN = $(am__v_GEN_@AM_V@)
168-am__v_GEN_ = $(am__v_GEN_@AM_DEFAULT_V@)
169-am__v_GEN_0 = @echo " GEN " $@;
170-am__v_GEN_1 =
171-AM_V_at = $(am__v_at_@AM_V@)
172-am__v_at_ = $(am__v_at_@AM_DEFAULT_V@)
173-am__v_at_0 = @
174-am__v_at_1 =
175-SOURCES =
176-DIST_SOURCES =
177-RECURSIVE_TARGETS = all-recursive check-recursive cscopelist-recursive \
178- ctags-recursive dvi-recursive html-recursive info-recursive \
179- install-data-recursive install-dvi-recursive \
180- install-exec-recursive install-html-recursive \
181- install-info-recursive install-pdf-recursive \
182- install-ps-recursive install-recursive installcheck-recursive \
183- installdirs-recursive pdf-recursive ps-recursive \
184- tags-recursive uninstall-recursive
185-am__can_run_installinfo = \
186- case $$AM_UPDATE_INFO_DIR in \
187- n|no|NO) false;; \
188- *) (install-info --version) >/dev/null 2>&1;; \
189- esac
190-RECURSIVE_CLEAN_TARGETS = mostlyclean-recursive clean-recursive \
191- distclean-recursive maintainer-clean-recursive
192-am__recursive_targets = \
193- $(RECURSIVE_TARGETS) \
194- $(RECURSIVE_CLEAN_TARGETS) \
195- $(am__extra_recursive_targets)
196-AM_RECURSIVE_TARGETS = $(am__recursive_targets:-recursive=) TAGS CTAGS \
197- cscope distdir dist dist-all distcheck
198-am__tagged_files = $(HEADERS) $(SOURCES) $(TAGS_FILES) \
199- $(LISP)config.h.in
200-# Read a list of newline-separated strings from the standard input,
201-# and print each of them once, without duplicates. Input order is
202-# *not* preserved.
203-am__uniquify_input = $(AWK) '\
204- BEGIN { nonempty = 0; } \
205- { items[$$0] = 1; nonempty = 1; } \
206- END { if (nonempty) { for (i in items) print i; }; } \
207-'
208-# Make sure the list of sources is unique. This is necessary because,
209-# e.g., the same source file might be shared among _SOURCES variables
210-# for different programs/libraries.
211-am__define_uniq_tagged_files = \
212- list='$(am__tagged_files)'; \
213- unique=`for i in $$list; do \
214- if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \
215- done | $(am__uniquify_input)`
216-ETAGS = etags
217-CTAGS = ctags
218-CSCOPE = cscope
219-DIST_SUBDIRS = $(SUBDIRS)
220-DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST)
221-distdir = $(PACKAGE)-$(VERSION)
222-top_distdir = $(distdir)
223-am__remove_distdir = \
224- if test -d "$(distdir)"; then \
225- find "$(distdir)" -type d ! -perm -200 -exec chmod u+w {} ';' \
226- && rm -rf "$(distdir)" \
227- || { sleep 5 && rm -rf "$(distdir)"; }; \
228- else :; fi
229-am__post_remove_distdir = $(am__remove_distdir)
230-am__relativize = \
231- dir0=`pwd`; \
232- sed_first='s,^\([^/]*\)/.*$$,\1,'; \
233- sed_rest='s,^[^/]*/*,,'; \
234- sed_last='s,^.*/\([^/]*\)$$,\1,'; \
235- sed_butlast='s,/*[^/]*$$,,'; \
236- while test -n "$$dir1"; do \
237- first=`echo "$$dir1" | sed -e "$$sed_first"`; \
238- if test "$$first" != "."; then \
239- if test "$$first" = ".."; then \
240- dir2=`echo "$$dir0" | sed -e "$$sed_last"`/"$$dir2"; \
241- dir0=`echo "$$dir0" | sed -e "$$sed_butlast"`; \
242- else \
243- first2=`echo "$$dir2" | sed -e "$$sed_first"`; \
244- if test "$$first2" = "$$first"; then \
245- dir2=`echo "$$dir2" | sed -e "$$sed_rest"`; \
246- else \
247- dir2="../$$dir2"; \
248- fi; \
249- dir0="$$dir0"/"$$first"; \
250- fi; \
251- fi; \
252- dir1=`echo "$$dir1" | sed -e "$$sed_rest"`; \
253- done; \
254- reldir="$$dir2"
255-DIST_ARCHIVES = $(distdir).tar.gz
256-GZIP_ENV = --best
257-DIST_TARGETS = dist-gzip
258-distuninstallcheck_listfiles = find . -type f -print
259-am__distuninstallcheck_listfiles = $(distuninstallcheck_listfiles) \
260- | sed 's|^\./|$(prefix)/|' | grep -v '$(infodir)/dir$$'
261-distcleancheck_listfiles = find . -type f -print
262-ACLOCAL = @ACLOCAL@
263-ALLOCA = @ALLOCA@
264-AMTAR = @AMTAR@
265-AM_DEFAULT_VERBOSITY = @AM_DEFAULT_VERBOSITY@
266-AR = @AR@
267-AUTOCONF = @AUTOCONF@
268-AUTOHEADER = @AUTOHEADER@
269-AUTOMAKE = @AUTOMAKE@
270-AWK = @AWK@
271-BUILD_INCLUDED_LIBINTL = @BUILD_INCLUDED_LIBINTL@
272-CATOBJEXT = @CATOBJEXT@
273-CC = @CC@
274-CCDEPMODE = @CCDEPMODE@
275-CFLAGS = @CFLAGS@
276-CFLAG_VISIBILITY = @CFLAG_VISIBILITY@
277-CPP = @CPP@
278-CPPFLAGS = @CPPFLAGS@
279-CYGPATH_W = @CYGPATH_W@
280-DATADIRNAME = @DATADIRNAME@
281-DBUS_CFLAGS = @DBUS_CFLAGS@
282-DBUS_LIBS = @DBUS_LIBS@
283-DEFS = @DEFS@
284-DEPDIR = @DEPDIR@
285-DLLTOOL = @DLLTOOL@
286-DSYMUTIL = @DSYMUTIL@
287-DUMPBIN = @DUMPBIN@
288-ECHO_C = @ECHO_C@
289-ECHO_N = @ECHO_N@
290-ECHO_T = @ECHO_T@
291-EGREP = @EGREP@
292-EXEEXT = @EXEEXT@
293-FGREP = @FGREP@
294-GENCAT = @GENCAT@
295-GETTEXT_MACRO_VERSION = @GETTEXT_MACRO_VERSION@
296-GLIBC2 = @GLIBC2@
297-GLIBC21 = @GLIBC21@
298-GMSGFMT = @GMSGFMT@
299-GMSGFMT_015 = @GMSGFMT_015@
300-GREP = @GREP@
301-HAVE_ASPRINTF = @HAVE_ASPRINTF@
302-HAVE_POSIX_PRINTF = @HAVE_POSIX_PRINTF@
303-HAVE_SNPRINTF = @HAVE_SNPRINTF@
304-HAVE_VISIBILITY = @HAVE_VISIBILITY@
305-HAVE_WPRINTF = @HAVE_WPRINTF@
306-INSTALL = @INSTALL@
307-INSTALL_DATA = @INSTALL_DATA@
308-INSTALL_PROGRAM = @INSTALL_PROGRAM@
309-INSTALL_SCRIPT = @INSTALL_SCRIPT@
310-INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@
311-INSTOBJEXT = @INSTOBJEXT@
312-INTLBISON = @INTLBISON@
313-INTLLIBS = @INTLLIBS@
314-INTLOBJS = @INTLOBJS@
315-INTL_LIBTOOL_SUFFIX_PREFIX = @INTL_LIBTOOL_SUFFIX_PREFIX@
316-INTL_MACOSX_LIBS = @INTL_MACOSX_LIBS@
317-LD = @LD@
318-LDFLAGS = @LDFLAGS@
319-LIBICONV = @LIBICONV@
320-LIBINTL = @LIBINTL@
321-LIBMULTITHREAD = @LIBMULTITHREAD@
322-LIBOBJS = @LIBOBJS@
323-LIBPTH = @LIBPTH@
324-LIBPTH_PREFIX = @LIBPTH_PREFIX@
325-LIBS = @LIBS@
326-LIBTHREAD = @LIBTHREAD@
327-LIBTOOL = @LIBTOOL@
328-LIPO = @LIPO@
329-LN_S = @LN_S@
330-LTLIBC = @LTLIBC@
331-LTLIBICONV = @LTLIBICONV@
332-LTLIBINTL = @LTLIBINTL@
333-LTLIBMULTITHREAD = @LTLIBMULTITHREAD@
334-LTLIBOBJS = @LTLIBOBJS@
335-LTLIBPTH = @LTLIBPTH@
336-LTLIBTHREAD = @LTLIBTHREAD@
337-MAINT = @MAINT@
338-MAKEINFO = @MAKEINFO@
339-MANIFEST_TOOL = @MANIFEST_TOOL@
340-MKDIR_P = @MKDIR_P@
341-MSGFMT = @MSGFMT@
342-MSGFMT_015 = @MSGFMT_015@
343-MSGMERGE = @MSGMERGE@
344-NIH_CFLAGS = @NIH_CFLAGS@
345-NIH_DBUS_CFLAGS = @NIH_DBUS_CFLAGS@
346-NIH_DBUS_LIBS = @NIH_DBUS_LIBS@
347-NIH_DBUS_TOOL = @NIH_DBUS_TOOL@
348-NIH_LIBS = @NIH_LIBS@
349-NM = @NM@
350-NMEDIT = @NMEDIT@
351-OBJDUMP = @OBJDUMP@
352-OBJEXT = @OBJEXT@
353-OTOOL = @OTOOL@
354-OTOOL64 = @OTOOL64@
355-PACKAGE = @PACKAGE@
356-PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@
357-PACKAGE_NAME = @PACKAGE_NAME@
358-PACKAGE_STRING = @PACKAGE_STRING@
359-PACKAGE_TARNAME = @PACKAGE_TARNAME@
360-PACKAGE_URL = @PACKAGE_URL@
361-PACKAGE_VERSION = @PACKAGE_VERSION@
362-PATH_SEPARATOR = @PATH_SEPARATOR@
363-PKG_CONFIG = @PKG_CONFIG@
364-PKG_CONFIG_LIBDIR = @PKG_CONFIG_LIBDIR@
365-PKG_CONFIG_PATH = @PKG_CONFIG_PATH@
366-PLYMOUTH_CFLAGS = @PLYMOUTH_CFLAGS@
367-PLYMOUTH_LIBS = @PLYMOUTH_LIBS@
368-POSUB = @POSUB@
369-PRI_MACROS_BROKEN = @PRI_MACROS_BROKEN@
370-RANLIB = @RANLIB@
371-SED = @SED@
372-SET_MAKE = @SET_MAKE@
373-SHELL = @SHELL@
374-STRIP = @STRIP@
375-UDEV_CFLAGS = @UDEV_CFLAGS@
376-UDEV_LIBS = @UDEV_LIBS@
377-USE_INCLUDED_LIBINTL = @USE_INCLUDED_LIBINTL@
378-USE_NLS = @USE_NLS@
379-VERSION = @VERSION@
380-WINDRES = @WINDRES@
381-WOE32 = @WOE32@
382-WOE32DLL = @WOE32DLL@
383-XGETTEXT = @XGETTEXT@
384-XGETTEXT_015 = @XGETTEXT_015@
385-XGETTEXT_EXTRA_OPTIONS = @XGETTEXT_EXTRA_OPTIONS@
386-abs_builddir = @abs_builddir@
387-abs_srcdir = @abs_srcdir@
388-abs_top_builddir = @abs_top_builddir@
389-abs_top_srcdir = @abs_top_srcdir@
390-ac_ct_AR = @ac_ct_AR@
391-ac_ct_CC = @ac_ct_CC@
392-ac_ct_DUMPBIN = @ac_ct_DUMPBIN@
393-am__include = @am__include@
394-am__leading_dot = @am__leading_dot@
395-am__quote = @am__quote@
396-am__tar = @am__tar@
397-am__untar = @am__untar@
398-bindir = @bindir@
399-build = @build@
400-build_alias = @build_alias@
401-build_cpu = @build_cpu@
402-build_os = @build_os@
403-build_vendor = @build_vendor@
404-builddir = @builddir@
405-datadir = @datadir@
406-datarootdir = @datarootdir@
407-docdir = @docdir@
408-dvidir = @dvidir@
409-exec_prefix = @exec_prefix@
410-host = @host@
411-host_alias = @host_alias@
412-host_cpu = @host_cpu@
413-host_os = @host_os@
414-host_vendor = @host_vendor@
415-htmldir = @htmldir@
416-includedir = @includedir@
417-infodir = @infodir@
418-install_sh = @install_sh@
419-libdir = @libdir@
420-libexecdir = @libexecdir@
421-localedir = @localedir@
422-localstatedir = @localstatedir@
423-mandir = @mandir@
424-mkdir_p = @mkdir_p@
425-oldincludedir = @oldincludedir@
426-pdfdir = @pdfdir@
427-prefix = @prefix@
428-program_transform_name = @program_transform_name@
429-psdir = @psdir@
430-sbindir = @sbindir@
431-sharedstatedir = @sharedstatedir@
432-srcdir = @srcdir@
433-sysconfdir = @sysconfdir@
434-target_alias = @target_alias@
435-top_build_prefix = @top_build_prefix@
436-top_builddir = @top_builddir@
437-top_srcdir = @top_srcdir@
438-SUBDIRS = intl dbus util src conf debian/initramfs debian/initramfs/upstart-jobs/ man po apport
439-EXTRA_DIST = config.rpath
440-ACLOCAL_AMFLAGS = --install -I m4
441-all: config.h
442- $(MAKE) $(AM_MAKEFLAGS) all-recursive
443-
444-.SUFFIXES:
445-am--refresh: Makefile
446- @:
447-$(srcdir)/Makefile.in: @MAINTAINER_MODE_TRUE@ $(srcdir)/Makefile.am $(am__configure_deps)
448- @for dep in $?; do \
449- case '$(am__configure_deps)' in \
450- *$$dep*) \
451- echo ' cd $(srcdir) && $(AUTOMAKE) --foreign'; \
452- $(am__cd) $(srcdir) && $(AUTOMAKE) --foreign \
453- && exit 0; \
454- exit 1;; \
455- esac; \
456- done; \
457- echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign Makefile'; \
458- $(am__cd) $(top_srcdir) && \
459- $(AUTOMAKE) --foreign Makefile
460-.PRECIOUS: Makefile
461-Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status
462- @case '$?' in \
463- *config.status*) \
464- echo ' $(SHELL) ./config.status'; \
465- $(SHELL) ./config.status;; \
466- *) \
467- echo ' cd $(top_builddir) && $(SHELL) ./config.status $@ $(am__depfiles_maybe)'; \
468- cd $(top_builddir) && $(SHELL) ./config.status $@ $(am__depfiles_maybe);; \
469- esac;
470-
471-$(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES)
472- $(SHELL) ./config.status --recheck
473-
474-$(top_srcdir)/configure: @MAINTAINER_MODE_TRUE@ $(am__configure_deps)
475- $(am__cd) $(srcdir) && $(AUTOCONF)
476-$(ACLOCAL_M4): @MAINTAINER_MODE_TRUE@ $(am__aclocal_m4_deps)
477- $(am__cd) $(srcdir) && $(ACLOCAL) $(ACLOCAL_AMFLAGS)
478-$(am__aclocal_m4_deps):
479-
480-config.h: stamp-h1
481- @if test ! -f $@; then rm -f stamp-h1; else :; fi
482- @if test ! -f $@; then $(MAKE) $(AM_MAKEFLAGS) stamp-h1; else :; fi
483-
484-stamp-h1: $(srcdir)/config.h.in $(top_builddir)/config.status
485- @rm -f stamp-h1
486- cd $(top_builddir) && $(SHELL) ./config.status config.h
487-$(srcdir)/config.h.in: @MAINTAINER_MODE_TRUE@ $(am__configure_deps)
488- ($(am__cd) $(top_srcdir) && $(AUTOHEADER))
489- rm -f stamp-h1
490- touch $@
491-
492-distclean-hdr:
493- -rm -f config.h stamp-h1
494-intl/Makefile: $(top_builddir)/config.status $(top_srcdir)/intl/Makefile.in
495- cd $(top_builddir) && $(SHELL) ./config.status $@
496-
497-mostlyclean-libtool:
498- -rm -f *.lo
499-
500-clean-libtool:
501- -rm -rf .libs _libs
502-
503-distclean-libtool:
504- -rm -f libtool config.lt
505-
506-# This directory's subdirectories are mostly independent; you can cd
507-# into them and run 'make' without going through this Makefile.
508-# To change the values of 'make' variables: instead of editing Makefiles,
509-# (1) if the variable is set in 'config.status', edit 'config.status'
510-# (which will cause the Makefiles to be regenerated when you run 'make');
511-# (2) otherwise, pass the desired values on the 'make' command line.
512-$(am__recursive_targets):
513- @fail=; \
514- if $(am__make_keepgoing); then \
515- failcom='fail=yes'; \
516- else \
517- failcom='exit 1'; \
518- fi; \
519- dot_seen=no; \
520- target=`echo $@ | sed s/-recursive//`; \
521- case "$@" in \
522- distclean-* | maintainer-clean-*) list='$(DIST_SUBDIRS)' ;; \
523- *) list='$(SUBDIRS)' ;; \
524- esac; \
525- for subdir in $$list; do \
526- echo "Making $$target in $$subdir"; \
527- if test "$$subdir" = "."; then \
528- dot_seen=yes; \
529- local_target="$$target-am"; \
530- else \
531- local_target="$$target"; \
532- fi; \
533- ($(am__cd) $$subdir && $(MAKE) $(AM_MAKEFLAGS) $$local_target) \
534- || eval $$failcom; \
535- done; \
536- if test "$$dot_seen" = "no"; then \
537- $(MAKE) $(AM_MAKEFLAGS) "$$target-am" || exit 1; \
538- fi; test -z "$$fail"
539-
540-ID: $(am__tagged_files)
541- $(am__define_uniq_tagged_files); mkid -fID $$unique
542-tags: tags-recursive
543-TAGS: tags
544-
545-tags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files)
546- set x; \
547- here=`pwd`; \
548- if ($(ETAGS) --etags-include --version) >/dev/null 2>&1; then \
549- include_option=--etags-include; \
550- empty_fix=.; \
551- else \
552- include_option=--include; \
553- empty_fix=; \
554- fi; \
555- list='$(SUBDIRS)'; for subdir in $$list; do \
556- if test "$$subdir" = .; then :; else \
557- test ! -f $$subdir/TAGS || \
558- set "$$@" "$$include_option=$$here/$$subdir/TAGS"; \
559- fi; \
560- done; \
561- $(am__define_uniq_tagged_files); \
562- shift; \
563- if test -z "$(ETAGS_ARGS)$$*$$unique"; then :; else \
564- test -n "$$unique" || unique=$$empty_fix; \
565- if test $$# -gt 0; then \
566- $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \
567- "$$@" $$unique; \
568- else \
569- $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \
570- $$unique; \
571- fi; \
572- fi
573-ctags: ctags-recursive
574-
575-CTAGS: ctags
576-ctags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files)
577- $(am__define_uniq_tagged_files); \
578- test -z "$(CTAGS_ARGS)$$unique" \
579- || $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \
580- $$unique
581-
582-GTAGS:
583- here=`$(am__cd) $(top_builddir) && pwd` \
584- && $(am__cd) $(top_srcdir) \
585- && gtags -i $(GTAGS_ARGS) "$$here"
586-cscope: cscope.files
587- test ! -s cscope.files \
588- || $(CSCOPE) -b -q $(AM_CSCOPEFLAGS) $(CSCOPEFLAGS) -i cscope.files $(CSCOPE_ARGS)
589-clean-cscope:
590- -rm -f cscope.files
591-cscope.files: clean-cscope cscopelist
592-cscopelist: cscopelist-recursive
593-
594-cscopelist-am: $(am__tagged_files)
595- list='$(am__tagged_files)'; \
596- case "$(srcdir)" in \
597- [\\/]* | ?:[\\/]*) sdir="$(srcdir)" ;; \
598- *) sdir=$(subdir)/$(srcdir) ;; \
599- esac; \
600- for i in $$list; do \
601- if test -f "$$i"; then \
602- echo "$(subdir)/$$i"; \
603- else \
604- echo "$$sdir/$$i"; \
605- fi; \
606- done >> $(top_builddir)/cscope.files
607-
608-distclean-tags:
609- -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags
610- -rm -f cscope.out cscope.in.out cscope.po.out cscope.files
611-
612-distdir: $(DISTFILES)
613- $(am__remove_distdir)
614- test -d "$(distdir)" || mkdir "$(distdir)"
615- @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \
616- topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \
617- list='$(DISTFILES)'; \
618- dist_files=`for file in $$list; do echo $$file; done | \
619- sed -e "s|^$$srcdirstrip/||;t" \
620- -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \
621- case $$dist_files in \
622- */*) $(MKDIR_P) `echo "$$dist_files" | \
623- sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \
624- sort -u` ;; \
625- esac; \
626- for file in $$dist_files; do \
627- if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \
628- if test -d $$d/$$file; then \
629- dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \
630- if test -d "$(distdir)/$$file"; then \
631- find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \
632- fi; \
633- if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \
634- cp -fpR $(srcdir)/$$file "$(distdir)$$dir" || exit 1; \
635- find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \
636- fi; \
637- cp -fpR $$d/$$file "$(distdir)$$dir" || exit 1; \
638- else \
639- test -f "$(distdir)/$$file" \
640- || cp -p $$d/$$file "$(distdir)/$$file" \
641- || exit 1; \
642- fi; \
643- done
644- @list='$(DIST_SUBDIRS)'; for subdir in $$list; do \
645- if test "$$subdir" = .; then :; else \
646- $(am__make_dryrun) \
647- || test -d "$(distdir)/$$subdir" \
648- || $(MKDIR_P) "$(distdir)/$$subdir" \
649- || exit 1; \
650- dir1=$$subdir; dir2="$(distdir)/$$subdir"; \
651- $(am__relativize); \
652- new_distdir=$$reldir; \
653- dir1=$$subdir; dir2="$(top_distdir)"; \
654- $(am__relativize); \
655- new_top_distdir=$$reldir; \
656- echo " (cd $$subdir && $(MAKE) $(AM_MAKEFLAGS) top_distdir="$$new_top_distdir" distdir="$$new_distdir" \\"; \
657- echo " am__remove_distdir=: am__skip_length_check=: am__skip_mode_fix=: distdir)"; \
658- ($(am__cd) $$subdir && \
659- $(MAKE) $(AM_MAKEFLAGS) \
660- top_distdir="$$new_top_distdir" \
661- distdir="$$new_distdir" \
662- am__remove_distdir=: \
663- am__skip_length_check=: \
664- am__skip_mode_fix=: \
665- distdir) \
666- || exit 1; \
667- fi; \
668- done
669- -test -n "$(am__skip_mode_fix)" \
670- || find "$(distdir)" -type d ! -perm -755 \
671- -exec chmod u+rwx,go+rx {} \; -o \
672- ! -type d ! -perm -444 -links 1 -exec chmod a+r {} \; -o \
673- ! -type d ! -perm -400 -exec chmod a+r {} \; -o \
674- ! -type d ! -perm -444 -exec $(install_sh) -c -m a+r {} {} \; \
675- || chmod -R a+r "$(distdir)"
676-dist-gzip: distdir
677- tardir=$(distdir) && $(am__tar) | GZIP=$(GZIP_ENV) gzip -c >$(distdir).tar.gz
678- $(am__post_remove_distdir)
679-
680-dist-bzip2: distdir
681- tardir=$(distdir) && $(am__tar) | BZIP2=$${BZIP2--9} bzip2 -c >$(distdir).tar.bz2
682- $(am__post_remove_distdir)
683-
684-dist-lzip: distdir
685- tardir=$(distdir) && $(am__tar) | lzip -c $${LZIP_OPT--9} >$(distdir).tar.lz
686- $(am__post_remove_distdir)
687-
688-dist-xz: distdir
689- tardir=$(distdir) && $(am__tar) | XZ_OPT=$${XZ_OPT--e} xz -c >$(distdir).tar.xz
690- $(am__post_remove_distdir)
691-
692-dist-tarZ: distdir
693- tardir=$(distdir) && $(am__tar) | compress -c >$(distdir).tar.Z
694- $(am__post_remove_distdir)
695-
696-dist-shar: distdir
697- shar $(distdir) | GZIP=$(GZIP_ENV) gzip -c >$(distdir).shar.gz
698- $(am__post_remove_distdir)
699-
700-dist-zip: distdir
701- -rm -f $(distdir).zip
702- zip -rq $(distdir).zip $(distdir)
703- $(am__post_remove_distdir)
704-
705-dist dist-all:
706- $(MAKE) $(AM_MAKEFLAGS) $(DIST_TARGETS) am__post_remove_distdir='@:'
707- $(am__post_remove_distdir)
708-
709-# This target untars the dist file and tries a VPATH configuration. Then
710-# it guarantees that the distribution is self-contained by making another
711-# tarfile.
712-distcheck: dist
713- case '$(DIST_ARCHIVES)' in \
714- *.tar.gz*) \
715- GZIP=$(GZIP_ENV) gzip -dc $(distdir).tar.gz | $(am__untar) ;;\
716- *.tar.bz2*) \
717- bzip2 -dc $(distdir).tar.bz2 | $(am__untar) ;;\
718- *.tar.lz*) \
719- lzip -dc $(distdir).tar.lz | $(am__untar) ;;\
720- *.tar.xz*) \
721- xz -dc $(distdir).tar.xz | $(am__untar) ;;\
722- *.tar.Z*) \
723- uncompress -c $(distdir).tar.Z | $(am__untar) ;;\
724- *.shar.gz*) \
725- GZIP=$(GZIP_ENV) gzip -dc $(distdir).shar.gz | unshar ;;\
726- *.zip*) \
727- unzip $(distdir).zip ;;\
728- esac
729- chmod -R a-w $(distdir)
730- chmod u+w $(distdir)
731- mkdir $(distdir)/_build $(distdir)/_inst
732- chmod a-w $(distdir)
733- test -d $(distdir)/_build || exit 0; \
734- dc_install_base=`$(am__cd) $(distdir)/_inst && pwd | sed -e 's,^[^:\\/]:[\\/],/,'` \
735- && dc_destdir="$${TMPDIR-/tmp}/am-dc-$$$$/" \
736- && am__cwd=`pwd` \
737- && $(am__cd) $(distdir)/_build \
738- && ../configure --srcdir=.. --prefix="$$dc_install_base" \
739- --with-included-gettext \
740- $(AM_DISTCHECK_CONFIGURE_FLAGS) \
741- $(DISTCHECK_CONFIGURE_FLAGS) \
742- && $(MAKE) $(AM_MAKEFLAGS) \
743- && $(MAKE) $(AM_MAKEFLAGS) dvi \
744- && $(MAKE) $(AM_MAKEFLAGS) check \
745- && $(MAKE) $(AM_MAKEFLAGS) install \
746- && $(MAKE) $(AM_MAKEFLAGS) installcheck \
747- && $(MAKE) $(AM_MAKEFLAGS) uninstall \
748- && $(MAKE) $(AM_MAKEFLAGS) distuninstallcheck_dir="$$dc_install_base" \
749- distuninstallcheck \
750- && chmod -R a-w "$$dc_install_base" \
751- && ({ \
752- (cd ../.. && umask 077 && mkdir "$$dc_destdir") \
753- && $(MAKE) $(AM_MAKEFLAGS) DESTDIR="$$dc_destdir" install \
754- && $(MAKE) $(AM_MAKEFLAGS) DESTDIR="$$dc_destdir" uninstall \
755- && $(MAKE) $(AM_MAKEFLAGS) DESTDIR="$$dc_destdir" \
756- distuninstallcheck_dir="$$dc_destdir" distuninstallcheck; \
757- } || { rm -rf "$$dc_destdir"; exit 1; }) \
758- && rm -rf "$$dc_destdir" \
759- && $(MAKE) $(AM_MAKEFLAGS) dist \
760- && rm -rf $(DIST_ARCHIVES) \
761- && $(MAKE) $(AM_MAKEFLAGS) distcleancheck \
762- && cd "$$am__cwd" \
763- || exit 1
764- $(am__post_remove_distdir)
765- @(echo "$(distdir) archives ready for distribution: "; \
766- list='$(DIST_ARCHIVES)'; for i in $$list; do echo $$i; done) | \
767- sed -e 1h -e 1s/./=/g -e 1p -e 1x -e '$$p' -e '$$x'
768-distuninstallcheck:
769- @test -n '$(distuninstallcheck_dir)' || { \
770- echo 'ERROR: trying to run $@ with an empty' \
771- '$$(distuninstallcheck_dir)' >&2; \
772- exit 1; \
773- }; \
774- $(am__cd) '$(distuninstallcheck_dir)' || { \
775- echo 'ERROR: cannot chdir into $(distuninstallcheck_dir)' >&2; \
776- exit 1; \
777- }; \
778- test `$(am__distuninstallcheck_listfiles) | wc -l` -eq 0 \
779- || { echo "ERROR: files left after uninstall:" ; \
780- if test -n "$(DESTDIR)"; then \
781- echo " (check DESTDIR support)"; \
782- fi ; \
783- $(distuninstallcheck_listfiles) ; \
784- exit 1; } >&2
785-distcleancheck: distclean
786- @if test '$(srcdir)' = . ; then \
787- echo "ERROR: distcleancheck can only run from a VPATH build" ; \
788- exit 1 ; \
789- fi
790- @test `$(distcleancheck_listfiles) | wc -l` -eq 0 \
791- || { echo "ERROR: files left in build directory after distclean:" ; \
792- $(distcleancheck_listfiles) ; \
793- exit 1; } >&2
794-check-am: all-am
795-check: check-recursive
796-all-am: Makefile config.h
797-installdirs: installdirs-recursive
798-installdirs-am:
799-install: install-recursive
800-install-exec: install-exec-recursive
801-install-data: install-data-recursive
802-uninstall: uninstall-recursive
803-
804-install-am: all-am
805- @$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am
806-
807-installcheck: installcheck-recursive
808-install-strip:
809- if test -z '$(STRIP)'; then \
810- $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \
811- install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \
812- install; \
813- else \
814- $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \
815- install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \
816- "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'" install; \
817- fi
818-mostlyclean-generic:
819-
820-clean-generic:
821-
822-distclean-generic:
823- -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES)
824- -test . = "$(srcdir)" || test -z "$(CONFIG_CLEAN_VPATH_FILES)" || rm -f $(CONFIG_CLEAN_VPATH_FILES)
825-
826-maintainer-clean-generic:
827- @echo "This command is intended for maintainers to use"
828- @echo "it deletes files that may require special tools to rebuild."
829-clean: clean-recursive
830-
831-clean-am: clean-generic clean-libtool mostlyclean-am
832-
833-distclean: distclean-recursive
834- -rm -f $(am__CONFIG_DISTCLEAN_FILES)
835- -rm -f Makefile
836-distclean-am: clean-am distclean-generic distclean-hdr \
837- distclean-libtool distclean-tags
838-
839-dvi: dvi-recursive
840-
841-dvi-am:
842-
843-html: html-recursive
844-
845-html-am:
846-
847-info: info-recursive
848-
849-info-am:
850-
851-install-data-am:
852-
853-install-dvi: install-dvi-recursive
854-
855-install-dvi-am:
856-
857-install-exec-am:
858-
859-install-html: install-html-recursive
860-
861-install-html-am:
862-
863-install-info: install-info-recursive
864-
865-install-info-am:
866-
867-install-man:
868-
869-install-pdf: install-pdf-recursive
870-
871-install-pdf-am:
872-
873-install-ps: install-ps-recursive
874-
875-install-ps-am:
876-
877-installcheck-am:
878-
879-maintainer-clean: maintainer-clean-recursive
880- -rm -f $(am__CONFIG_DISTCLEAN_FILES)
881- -rm -rf $(top_srcdir)/autom4te.cache
882- -rm -f Makefile
883-maintainer-clean-am: distclean-am maintainer-clean-generic
884-
885-mostlyclean: mostlyclean-recursive
886-
887-mostlyclean-am: mostlyclean-generic mostlyclean-libtool
888-
889-pdf: pdf-recursive
890-
891-pdf-am:
892-
893-ps: ps-recursive
894-
895-ps-am:
896-
897-uninstall-am:
898-
899-.MAKE: $(am__recursive_targets) all install-am install-strip
900-
901-.PHONY: $(am__recursive_targets) CTAGS GTAGS TAGS all all-am \
902- am--refresh check check-am clean clean-cscope clean-generic \
903- clean-libtool cscope cscopelist-am ctags ctags-am dist \
904- dist-all dist-bzip2 dist-gzip dist-lzip dist-shar dist-tarZ \
905- dist-xz dist-zip distcheck distclean distclean-generic \
906- distclean-hdr distclean-libtool distclean-tags distcleancheck \
907- distdir distuninstallcheck dvi dvi-am html html-am info \
908- info-am install install-am install-data install-data-am \
909- install-dvi install-dvi-am install-exec install-exec-am \
910- install-html install-html-am install-info install-info-am \
911- install-man install-pdf install-pdf-am install-ps \
912- install-ps-am install-strip installcheck installcheck-am \
913- installdirs installdirs-am maintainer-clean \
914- maintainer-clean-generic mostlyclean mostlyclean-generic \
915- mostlyclean-libtool pdf pdf-am ps ps-am tags tags-am uninstall \
916- uninstall-am
917-
918-
919-# Tell versions [3.59,3.63) of GNU make to not export all variables.
920-# Otherwise a system limit (for SysV at least) may be exceeded.
921-.NOEXPORT:
922
923=== removed file 'aclocal.m4'
924--- aclocal.m4 2013-07-02 23:10:21 +0000
925+++ aclocal.m4 1970-01-01 00:00:00 +0000
926@@ -1,1175 +0,0 @@
927-# generated automatically by aclocal 1.13.3 -*- Autoconf -*-
928-
929-# Copyright (C) 1996-2013 Free Software Foundation, Inc.
930-
931-# This file is free software; the Free Software Foundation
932-# gives unlimited permission to copy and/or distribute it,
933-# with or without modifications, as long as this notice is preserved.
934-
935-# This program is distributed in the hope that it will be useful,
936-# but WITHOUT ANY WARRANTY, to the extent permitted by law; without
937-# even the implied warranty of MERCHANTABILITY or FITNESS FOR A
938-# PARTICULAR PURPOSE.
939-
940-m4_ifndef([AC_CONFIG_MACRO_DIRS], [m4_defun([_AM_CONFIG_MACRO_DIRS], [])m4_defun([AC_CONFIG_MACRO_DIRS], [_AM_CONFIG_MACRO_DIRS($@)])])
941-m4_ifndef([AC_AUTOCONF_VERSION],
942- [m4_copy([m4_PACKAGE_VERSION], [AC_AUTOCONF_VERSION])])dnl
943-m4_if(m4_defn([AC_AUTOCONF_VERSION]), [2.69],,
944-[m4_warning([this file was generated for autoconf 2.69.
945-You have another version of autoconf. It may work, but is not guaranteed to.
946-If you have problems, you may need to regenerate the build system entirely.
947-To do so, use the procedure documented by the package, typically 'autoreconf'.])])
948-
949-# Copyright (C) 2002-2013 Free Software Foundation, Inc.
950-#
951-# This file is free software; the Free Software Foundation
952-# gives unlimited permission to copy and/or distribute it,
953-# with or without modifications, as long as this notice is preserved.
954-
955-# AM_AUTOMAKE_VERSION(VERSION)
956-# ----------------------------
957-# Automake X.Y traces this macro to ensure aclocal.m4 has been
958-# generated from the m4 files accompanying Automake X.Y.
959-# (This private macro should not be called outside this file.)
960-AC_DEFUN([AM_AUTOMAKE_VERSION],
961-[am__api_version='1.13'
962-dnl Some users find AM_AUTOMAKE_VERSION and mistake it for a way to
963-dnl require some minimum version. Point them to the right macro.
964-m4_if([$1], [1.13.3], [],
965- [AC_FATAL([Do not call $0, use AM_INIT_AUTOMAKE([$1]).])])dnl
966-])
967-
968-# _AM_AUTOCONF_VERSION(VERSION)
969-# -----------------------------
970-# aclocal traces this macro to find the Autoconf version.
971-# This is a private macro too. Using m4_define simplifies
972-# the logic in aclocal, which can simply ignore this definition.
973-m4_define([_AM_AUTOCONF_VERSION], [])
974-
975-# AM_SET_CURRENT_AUTOMAKE_VERSION
976-# -------------------------------
977-# Call AM_AUTOMAKE_VERSION and AM_AUTOMAKE_VERSION so they can be traced.
978-# This function is AC_REQUIREd by AM_INIT_AUTOMAKE.
979-AC_DEFUN([AM_SET_CURRENT_AUTOMAKE_VERSION],
980-[AM_AUTOMAKE_VERSION([1.13.3])dnl
981-m4_ifndef([AC_AUTOCONF_VERSION],
982- [m4_copy([m4_PACKAGE_VERSION], [AC_AUTOCONF_VERSION])])dnl
983-_AM_AUTOCONF_VERSION(m4_defn([AC_AUTOCONF_VERSION]))])
984-
985-# AM_AUX_DIR_EXPAND -*- Autoconf -*-
986-
987-# Copyright (C) 2001-2013 Free Software Foundation, Inc.
988-#
989-# This file is free software; the Free Software Foundation
990-# gives unlimited permission to copy and/or distribute it,
991-# with or without modifications, as long as this notice is preserved.
992-
993-# For projects using AC_CONFIG_AUX_DIR([foo]), Autoconf sets
994-# $ac_aux_dir to '$srcdir/foo'. In other projects, it is set to
995-# '$srcdir', '$srcdir/..', or '$srcdir/../..'.
996-#
997-# Of course, Automake must honor this variable whenever it calls a
998-# tool from the auxiliary directory. The problem is that $srcdir (and
999-# therefore $ac_aux_dir as well) can be either absolute or relative,
1000-# depending on how configure is run. This is pretty annoying, since
1001-# it makes $ac_aux_dir quite unusable in subdirectories: in the top
1002-# source directory, any form will work fine, but in subdirectories a
1003-# relative path needs to be adjusted first.
1004-#
1005-# $ac_aux_dir/missing
1006-# fails when called from a subdirectory if $ac_aux_dir is relative
1007-# $top_srcdir/$ac_aux_dir/missing
1008-# fails if $ac_aux_dir is absolute,
1009-# fails when called from a subdirectory in a VPATH build with
1010-# a relative $ac_aux_dir
1011-#
1012-# The reason of the latter failure is that $top_srcdir and $ac_aux_dir
1013-# are both prefixed by $srcdir. In an in-source build this is usually
1014-# harmless because $srcdir is '.', but things will broke when you
1015-# start a VPATH build or use an absolute $srcdir.
1016-#
1017-# So we could use something similar to $top_srcdir/$ac_aux_dir/missing,
1018-# iff we strip the leading $srcdir from $ac_aux_dir. That would be:
1019-# am_aux_dir='\$(top_srcdir)/'`expr "$ac_aux_dir" : "$srcdir//*\(.*\)"`
1020-# and then we would define $MISSING as
1021-# MISSING="\${SHELL} $am_aux_dir/missing"
1022-# This will work as long as MISSING is not called from configure, because
1023-# unfortunately $(top_srcdir) has no meaning in configure.
1024-# However there are other variables, like CC, which are often used in
1025-# configure, and could therefore not use this "fixed" $ac_aux_dir.
1026-#
1027-# Another solution, used here, is to always expand $ac_aux_dir to an
1028-# absolute PATH. The drawback is that using absolute paths prevent a
1029-# configured tree to be moved without reconfiguration.
1030-
1031-AC_DEFUN([AM_AUX_DIR_EXPAND],
1032-[dnl Rely on autoconf to set up CDPATH properly.
1033-AC_PREREQ([2.50])dnl
1034-# expand $ac_aux_dir to an absolute path
1035-am_aux_dir=`cd $ac_aux_dir && pwd`
1036-])
1037-
1038-# AM_CONDITIONAL -*- Autoconf -*-
1039-
1040-# Copyright (C) 1997-2013 Free Software Foundation, Inc.
1041-#
1042-# This file is free software; the Free Software Foundation
1043-# gives unlimited permission to copy and/or distribute it,
1044-# with or without modifications, as long as this notice is preserved.
1045-
1046-# AM_CONDITIONAL(NAME, SHELL-CONDITION)
1047-# -------------------------------------
1048-# Define a conditional.
1049-AC_DEFUN([AM_CONDITIONAL],
1050-[AC_PREREQ([2.52])dnl
1051- m4_if([$1], [TRUE], [AC_FATAL([$0: invalid condition: $1])],
1052- [$1], [FALSE], [AC_FATAL([$0: invalid condition: $1])])dnl
1053-AC_SUBST([$1_TRUE])dnl
1054-AC_SUBST([$1_FALSE])dnl
1055-_AM_SUBST_NOTMAKE([$1_TRUE])dnl
1056-_AM_SUBST_NOTMAKE([$1_FALSE])dnl
1057-m4_define([_AM_COND_VALUE_$1], [$2])dnl
1058-if $2; then
1059- $1_TRUE=
1060- $1_FALSE='#'
1061-else
1062- $1_TRUE='#'
1063- $1_FALSE=
1064-fi
1065-AC_CONFIG_COMMANDS_PRE(
1066-[if test -z "${$1_TRUE}" && test -z "${$1_FALSE}"; then
1067- AC_MSG_ERROR([[conditional "$1" was never defined.
1068-Usually this means the macro was only invoked conditionally.]])
1069-fi])])
1070-
1071-# Copyright (C) 1999-2013 Free Software Foundation, Inc.
1072-#
1073-# This file is free software; the Free Software Foundation
1074-# gives unlimited permission to copy and/or distribute it,
1075-# with or without modifications, as long as this notice is preserved.
1076-
1077-
1078-# There are a few dirty hacks below to avoid letting 'AC_PROG_CC' be
1079-# written in clear, in which case automake, when reading aclocal.m4,
1080-# will think it sees a *use*, and therefore will trigger all it's
1081-# C support machinery. Also note that it means that autoscan, seeing
1082-# CC etc. in the Makefile, will ask for an AC_PROG_CC use...
1083-
1084-
1085-# _AM_DEPENDENCIES(NAME)
1086-# ----------------------
1087-# See how the compiler implements dependency checking.
1088-# NAME is "CC", "CXX", "OBJC", "OBJCXX", "UPC", or "GJC".
1089-# We try a few techniques and use that to set a single cache variable.
1090-#
1091-# We don't AC_REQUIRE the corresponding AC_PROG_CC since the latter was
1092-# modified to invoke _AM_DEPENDENCIES(CC); we would have a circular
1093-# dependency, and given that the user is not expected to run this macro,
1094-# just rely on AC_PROG_CC.
1095-AC_DEFUN([_AM_DEPENDENCIES],
1096-[AC_REQUIRE([AM_SET_DEPDIR])dnl
1097-AC_REQUIRE([AM_OUTPUT_DEPENDENCY_COMMANDS])dnl
1098-AC_REQUIRE([AM_MAKE_INCLUDE])dnl
1099-AC_REQUIRE([AM_DEP_TRACK])dnl
1100-
1101-m4_if([$1], [CC], [depcc="$CC" am_compiler_list=],
1102- [$1], [CXX], [depcc="$CXX" am_compiler_list=],
1103- [$1], [OBJC], [depcc="$OBJC" am_compiler_list='gcc3 gcc'],
1104- [$1], [OBJCXX], [depcc="$OBJCXX" am_compiler_list='gcc3 gcc'],
1105- [$1], [UPC], [depcc="$UPC" am_compiler_list=],
1106- [$1], [GCJ], [depcc="$GCJ" am_compiler_list='gcc3 gcc'],
1107- [depcc="$$1" am_compiler_list=])
1108-
1109-AC_CACHE_CHECK([dependency style of $depcc],
1110- [am_cv_$1_dependencies_compiler_type],
1111-[if test -z "$AMDEP_TRUE" && test -f "$am_depcomp"; then
1112- # We make a subdir and do the tests there. Otherwise we can end up
1113- # making bogus files that we don't know about and never remove. For
1114- # instance it was reported that on HP-UX the gcc test will end up
1115- # making a dummy file named 'D' -- because '-MD' means "put the output
1116- # in D".
1117- rm -rf conftest.dir
1118- mkdir conftest.dir
1119- # Copy depcomp to subdir because otherwise we won't find it if we're
1120- # using a relative directory.
1121- cp "$am_depcomp" conftest.dir
1122- cd conftest.dir
1123- # We will build objects and dependencies in a subdirectory because
1124- # it helps to detect inapplicable dependency modes. For instance
1125- # both Tru64's cc and ICC support -MD to output dependencies as a
1126- # side effect of compilation, but ICC will put the dependencies in
1127- # the current directory while Tru64 will put them in the object
1128- # directory.
1129- mkdir sub
1130-
1131- am_cv_$1_dependencies_compiler_type=none
1132- if test "$am_compiler_list" = ""; then
1133- am_compiler_list=`sed -n ['s/^#*\([a-zA-Z0-9]*\))$/\1/p'] < ./depcomp`
1134- fi
1135- am__universal=false
1136- m4_case([$1], [CC],
1137- [case " $depcc " in #(
1138- *\ -arch\ *\ -arch\ *) am__universal=true ;;
1139- esac],
1140- [CXX],
1141- [case " $depcc " in #(
1142- *\ -arch\ *\ -arch\ *) am__universal=true ;;
1143- esac])
1144-
1145- for depmode in $am_compiler_list; do
1146- # Setup a source with many dependencies, because some compilers
1147- # like to wrap large dependency lists on column 80 (with \), and
1148- # we should not choose a depcomp mode which is confused by this.
1149- #
1150- # We need to recreate these files for each test, as the compiler may
1151- # overwrite some of them when testing with obscure command lines.
1152- # This happens at least with the AIX C compiler.
1153- : > sub/conftest.c
1154- for i in 1 2 3 4 5 6; do
1155- echo '#include "conftst'$i'.h"' >> sub/conftest.c
1156- # Using ": > sub/conftst$i.h" creates only sub/conftst1.h with
1157- # Solaris 10 /bin/sh.
1158- echo '/* dummy */' > sub/conftst$i.h
1159- done
1160- echo "${am__include} ${am__quote}sub/conftest.Po${am__quote}" > confmf
1161-
1162- # We check with '-c' and '-o' for the sake of the "dashmstdout"
1163- # mode. It turns out that the SunPro C++ compiler does not properly
1164- # handle '-M -o', and we need to detect this. Also, some Intel
1165- # versions had trouble with output in subdirs.
1166- am__obj=sub/conftest.${OBJEXT-o}
1167- am__minus_obj="-o $am__obj"
1168- case $depmode in
1169- gcc)
1170- # This depmode causes a compiler race in universal mode.
1171- test "$am__universal" = false || continue
1172- ;;
1173- nosideeffect)
1174- # After this tag, mechanisms are not by side-effect, so they'll
1175- # only be used when explicitly requested.
1176- if test "x$enable_dependency_tracking" = xyes; then
1177- continue
1178- else
1179- break
1180- fi
1181- ;;
1182- msvc7 | msvc7msys | msvisualcpp | msvcmsys)
1183- # This compiler won't grok '-c -o', but also, the minuso test has
1184- # not run yet. These depmodes are late enough in the game, and
1185- # so weak that their functioning should not be impacted.
1186- am__obj=conftest.${OBJEXT-o}
1187- am__minus_obj=
1188- ;;
1189- none) break ;;
1190- esac
1191- if depmode=$depmode \
1192- source=sub/conftest.c object=$am__obj \
1193- depfile=sub/conftest.Po tmpdepfile=sub/conftest.TPo \
1194- $SHELL ./depcomp $depcc -c $am__minus_obj sub/conftest.c \
1195- >/dev/null 2>conftest.err &&
1196- grep sub/conftst1.h sub/conftest.Po > /dev/null 2>&1 &&
1197- grep sub/conftst6.h sub/conftest.Po > /dev/null 2>&1 &&
1198- grep $am__obj sub/conftest.Po > /dev/null 2>&1 &&
1199- ${MAKE-make} -s -f confmf > /dev/null 2>&1; then
1200- # icc doesn't choke on unknown options, it will just issue warnings
1201- # or remarks (even with -Werror). So we grep stderr for any message
1202- # that says an option was ignored or not supported.
1203- # When given -MP, icc 7.0 and 7.1 complain thusly:
1204- # icc: Command line warning: ignoring option '-M'; no argument required
1205- # The diagnosis changed in icc 8.0:
1206- # icc: Command line remark: option '-MP' not supported
1207- if (grep 'ignoring option' conftest.err ||
1208- grep 'not supported' conftest.err) >/dev/null 2>&1; then :; else
1209- am_cv_$1_dependencies_compiler_type=$depmode
1210- break
1211- fi
1212- fi
1213- done
1214-
1215- cd ..
1216- rm -rf conftest.dir
1217-else
1218- am_cv_$1_dependencies_compiler_type=none
1219-fi
1220-])
1221-AC_SUBST([$1DEPMODE], [depmode=$am_cv_$1_dependencies_compiler_type])
1222-AM_CONDITIONAL([am__fastdep$1], [
1223- test "x$enable_dependency_tracking" != xno \
1224- && test "$am_cv_$1_dependencies_compiler_type" = gcc3])
1225-])
1226-
1227-
1228-# AM_SET_DEPDIR
1229-# -------------
1230-# Choose a directory name for dependency files.
1231-# This macro is AC_REQUIREd in _AM_DEPENDENCIES.
1232-AC_DEFUN([AM_SET_DEPDIR],
1233-[AC_REQUIRE([AM_SET_LEADING_DOT])dnl
1234-AC_SUBST([DEPDIR], ["${am__leading_dot}deps"])dnl
1235-])
1236-
1237-
1238-# AM_DEP_TRACK
1239-# ------------
1240-AC_DEFUN([AM_DEP_TRACK],
1241-[AC_ARG_ENABLE([dependency-tracking], [dnl
1242-AS_HELP_STRING(
1243- [--enable-dependency-tracking],
1244- [do not reject slow dependency extractors])
1245-AS_HELP_STRING(
1246- [--disable-dependency-tracking],
1247- [speeds up one-time build])])
1248-if test "x$enable_dependency_tracking" != xno; then
1249- am_depcomp="$ac_aux_dir/depcomp"
1250- AMDEPBACKSLASH='\'
1251- am__nodep='_no'
1252-fi
1253-AM_CONDITIONAL([AMDEP], [test "x$enable_dependency_tracking" != xno])
1254-AC_SUBST([AMDEPBACKSLASH])dnl
1255-_AM_SUBST_NOTMAKE([AMDEPBACKSLASH])dnl
1256-AC_SUBST([am__nodep])dnl
1257-_AM_SUBST_NOTMAKE([am__nodep])dnl
1258-])
1259-
1260-# Generate code to set up dependency tracking. -*- Autoconf -*-
1261-
1262-# Copyright (C) 1999-2013 Free Software Foundation, Inc.
1263-#
1264-# This file is free software; the Free Software Foundation
1265-# gives unlimited permission to copy and/or distribute it,
1266-# with or without modifications, as long as this notice is preserved.
1267-
1268-
1269-# _AM_OUTPUT_DEPENDENCY_COMMANDS
1270-# ------------------------------
1271-AC_DEFUN([_AM_OUTPUT_DEPENDENCY_COMMANDS],
1272-[{
1273- # Older Autoconf quotes --file arguments for eval, but not when files
1274- # are listed without --file. Let's play safe and only enable the eval
1275- # if we detect the quoting.
1276- case $CONFIG_FILES in
1277- *\'*) eval set x "$CONFIG_FILES" ;;
1278- *) set x $CONFIG_FILES ;;
1279- esac
1280- shift
1281- for mf
1282- do
1283- # Strip MF so we end up with the name of the file.
1284- mf=`echo "$mf" | sed -e 's/:.*$//'`
1285- # Check whether this is an Automake generated Makefile or not.
1286- # We used to match only the files named 'Makefile.in', but
1287- # some people rename them; so instead we look at the file content.
1288- # Grep'ing the first line is not enough: some people post-process
1289- # each Makefile.in and add a new line on top of each file to say so.
1290- # Grep'ing the whole file is not good either: AIX grep has a line
1291- # limit of 2048, but all sed's we know have understand at least 4000.
1292- if sed -n 's,^#.*generated by automake.*,X,p' "$mf" | grep X >/dev/null 2>&1; then
1293- dirpart=`AS_DIRNAME("$mf")`
1294- else
1295- continue
1296- fi
1297- # Extract the definition of DEPDIR, am__include, and am__quote
1298- # from the Makefile without running 'make'.
1299- DEPDIR=`sed -n 's/^DEPDIR = //p' < "$mf"`
1300- test -z "$DEPDIR" && continue
1301- am__include=`sed -n 's/^am__include = //p' < "$mf"`
1302- test -z "$am__include" && continue
1303- am__quote=`sed -n 's/^am__quote = //p' < "$mf"`
1304- # Find all dependency output files, they are included files with
1305- # $(DEPDIR) in their names. We invoke sed twice because it is the
1306- # simplest approach to changing $(DEPDIR) to its actual value in the
1307- # expansion.
1308- for file in `sed -n "
1309- s/^$am__include $am__quote\(.*(DEPDIR).*\)$am__quote"'$/\1/p' <"$mf" | \
1310- sed -e 's/\$(DEPDIR)/'"$DEPDIR"'/g'`; do
1311- # Make sure the directory exists.
1312- test -f "$dirpart/$file" && continue
1313- fdir=`AS_DIRNAME(["$file"])`
1314- AS_MKDIR_P([$dirpart/$fdir])
1315- # echo "creating $dirpart/$file"
1316- echo '# dummy' > "$dirpart/$file"
1317- done
1318- done
1319-}
1320-])# _AM_OUTPUT_DEPENDENCY_COMMANDS
1321-
1322-
1323-# AM_OUTPUT_DEPENDENCY_COMMANDS
1324-# -----------------------------
1325-# This macro should only be invoked once -- use via AC_REQUIRE.
1326-#
1327-# This code is only required when automatic dependency tracking
1328-# is enabled. FIXME. This creates each '.P' file that we will
1329-# need in order to bootstrap the dependency handling code.
1330-AC_DEFUN([AM_OUTPUT_DEPENDENCY_COMMANDS],
1331-[AC_CONFIG_COMMANDS([depfiles],
1332- [test x"$AMDEP_TRUE" != x"" || _AM_OUTPUT_DEPENDENCY_COMMANDS],
1333- [AMDEP_TRUE="$AMDEP_TRUE" ac_aux_dir="$ac_aux_dir"])
1334-])
1335-
1336-# Do all the work for Automake. -*- Autoconf -*-
1337-
1338-# Copyright (C) 1996-2013 Free Software Foundation, Inc.
1339-#
1340-# This file is free software; the Free Software Foundation
1341-# gives unlimited permission to copy and/or distribute it,
1342-# with or without modifications, as long as this notice is preserved.
1343-
1344-# This macro actually does too much. Some checks are only needed if
1345-# your package does certain things. But this isn't really a big deal.
1346-
1347-# AM_INIT_AUTOMAKE(PACKAGE, VERSION, [NO-DEFINE])
1348-# AM_INIT_AUTOMAKE([OPTIONS])
1349-# -----------------------------------------------
1350-# The call with PACKAGE and VERSION arguments is the old style
1351-# call (pre autoconf-2.50), which is being phased out. PACKAGE
1352-# and VERSION should now be passed to AC_INIT and removed from
1353-# the call to AM_INIT_AUTOMAKE.
1354-# We support both call styles for the transition. After
1355-# the next Automake release, Autoconf can make the AC_INIT
1356-# arguments mandatory, and then we can depend on a new Autoconf
1357-# release and drop the old call support.
1358-AC_DEFUN([AM_INIT_AUTOMAKE],
1359-[AC_PREREQ([2.65])dnl
1360-dnl Autoconf wants to disallow AM_ names. We explicitly allow
1361-dnl the ones we care about.
1362-m4_pattern_allow([^AM_[A-Z]+FLAGS$])dnl
1363-AC_REQUIRE([AM_SET_CURRENT_AUTOMAKE_VERSION])dnl
1364-AC_REQUIRE([AC_PROG_INSTALL])dnl
1365-if test "`cd $srcdir && pwd`" != "`pwd`"; then
1366- # Use -I$(srcdir) only when $(srcdir) != ., so that make's output
1367- # is not polluted with repeated "-I."
1368- AC_SUBST([am__isrc], [' -I$(srcdir)'])_AM_SUBST_NOTMAKE([am__isrc])dnl
1369- # test to see if srcdir already configured
1370- if test -f $srcdir/config.status; then
1371- AC_MSG_ERROR([source directory already configured; run "make distclean" there first])
1372- fi
1373-fi
1374-
1375-# test whether we have cygpath
1376-if test -z "$CYGPATH_W"; then
1377- if (cygpath --version) >/dev/null 2>/dev/null; then
1378- CYGPATH_W='cygpath -w'
1379- else
1380- CYGPATH_W=echo
1381- fi
1382-fi
1383-AC_SUBST([CYGPATH_W])
1384-
1385-# Define the identity of the package.
1386-dnl Distinguish between old-style and new-style calls.
1387-m4_ifval([$2],
1388-[AC_DIAGNOSE([obsolete],
1389- [$0: two- and three-arguments forms are deprecated.])
1390-m4_ifval([$3], [_AM_SET_OPTION([no-define])])dnl
1391- AC_SUBST([PACKAGE], [$1])dnl
1392- AC_SUBST([VERSION], [$2])],
1393-[_AM_SET_OPTIONS([$1])dnl
1394-dnl Diagnose old-style AC_INIT with new-style AM_AUTOMAKE_INIT.
1395-m4_if(
1396- m4_ifdef([AC_PACKAGE_NAME], [ok]):m4_ifdef([AC_PACKAGE_VERSION], [ok]),
1397- [ok:ok],,
1398- [m4_fatal([AC_INIT should be called with package and version arguments])])dnl
1399- AC_SUBST([PACKAGE], ['AC_PACKAGE_TARNAME'])dnl
1400- AC_SUBST([VERSION], ['AC_PACKAGE_VERSION'])])dnl
1401-
1402-_AM_IF_OPTION([no-define],,
1403-[AC_DEFINE_UNQUOTED([PACKAGE], ["$PACKAGE"], [Name of package])
1404- AC_DEFINE_UNQUOTED([VERSION], ["$VERSION"], [Version number of package])])dnl
1405-
1406-# Some tools Automake needs.
1407-AC_REQUIRE([AM_SANITY_CHECK])dnl
1408-AC_REQUIRE([AC_ARG_PROGRAM])dnl
1409-AM_MISSING_PROG([ACLOCAL], [aclocal-${am__api_version}])
1410-AM_MISSING_PROG([AUTOCONF], [autoconf])
1411-AM_MISSING_PROG([AUTOMAKE], [automake-${am__api_version}])
1412-AM_MISSING_PROG([AUTOHEADER], [autoheader])
1413-AM_MISSING_PROG([MAKEINFO], [makeinfo])
1414-AC_REQUIRE([AM_PROG_INSTALL_SH])dnl
1415-AC_REQUIRE([AM_PROG_INSTALL_STRIP])dnl
1416-AC_REQUIRE([AC_PROG_MKDIR_P])dnl
1417-# For better backward compatibility. To be removed once Automake 1.9.x
1418-# dies out for good. For more background, see:
1419-# <http://lists.gnu.org/archive/html/automake/2012-07/msg00001.html>
1420-# <http://lists.gnu.org/archive/html/automake/2012-07/msg00014.html>
1421-AC_SUBST([mkdir_p], ['$(MKDIR_P)'])
1422-# We need awk for the "check" target. The system "awk" is bad on
1423-# some platforms.
1424-AC_REQUIRE([AC_PROG_AWK])dnl
1425-AC_REQUIRE([AC_PROG_MAKE_SET])dnl
1426-AC_REQUIRE([AM_SET_LEADING_DOT])dnl
1427-_AM_IF_OPTION([tar-ustar], [_AM_PROG_TAR([ustar])],
1428- [_AM_IF_OPTION([tar-pax], [_AM_PROG_TAR([pax])],
1429- [_AM_PROG_TAR([v7])])])
1430-_AM_IF_OPTION([no-dependencies],,
1431-[AC_PROVIDE_IFELSE([AC_PROG_CC],
1432- [_AM_DEPENDENCIES([CC])],
1433- [m4_define([AC_PROG_CC],
1434- m4_defn([AC_PROG_CC])[_AM_DEPENDENCIES([CC])])])dnl
1435-AC_PROVIDE_IFELSE([AC_PROG_CXX],
1436- [_AM_DEPENDENCIES([CXX])],
1437- [m4_define([AC_PROG_CXX],
1438- m4_defn([AC_PROG_CXX])[_AM_DEPENDENCIES([CXX])])])dnl
1439-AC_PROVIDE_IFELSE([AC_PROG_OBJC],
1440- [_AM_DEPENDENCIES([OBJC])],
1441- [m4_define([AC_PROG_OBJC],
1442- m4_defn([AC_PROG_OBJC])[_AM_DEPENDENCIES([OBJC])])])dnl
1443-AC_PROVIDE_IFELSE([AC_PROG_OBJCXX],
1444- [_AM_DEPENDENCIES([OBJCXX])],
1445- [m4_define([AC_PROG_OBJCXX],
1446- m4_defn([AC_PROG_OBJCXX])[_AM_DEPENDENCIES([OBJCXX])])])dnl
1447-])
1448-AC_REQUIRE([AM_SILENT_RULES])dnl
1449-dnl The testsuite driver may need to know about EXEEXT, so add the
1450-dnl 'am__EXEEXT' conditional if _AM_COMPILER_EXEEXT was seen. This
1451-dnl macro is hooked onto _AC_COMPILER_EXEEXT early, see below.
1452-AC_CONFIG_COMMANDS_PRE(dnl
1453-[m4_provide_if([_AM_COMPILER_EXEEXT],
1454- [AM_CONDITIONAL([am__EXEEXT], [test -n "$EXEEXT"])])])dnl
1455-])
1456-
1457-dnl Hook into '_AC_COMPILER_EXEEXT' early to learn its expansion. Do not
1458-dnl add the conditional right here, as _AC_COMPILER_EXEEXT may be further
1459-dnl mangled by Autoconf and run in a shell conditional statement.
1460-m4_define([_AC_COMPILER_EXEEXT],
1461-m4_defn([_AC_COMPILER_EXEEXT])[m4_provide([_AM_COMPILER_EXEEXT])])
1462-
1463-
1464-# When config.status generates a header, we must update the stamp-h file.
1465-# This file resides in the same directory as the config header
1466-# that is generated. The stamp files are numbered to have different names.
1467-
1468-# Autoconf calls _AC_AM_CONFIG_HEADER_HOOK (when defined) in the
1469-# loop where config.status creates the headers, so we can generate
1470-# our stamp files there.
1471-AC_DEFUN([_AC_AM_CONFIG_HEADER_HOOK],
1472-[# Compute $1's index in $config_headers.
1473-_am_arg=$1
1474-_am_stamp_count=1
1475-for _am_header in $config_headers :; do
1476- case $_am_header in
1477- $_am_arg | $_am_arg:* )
1478- break ;;
1479- * )
1480- _am_stamp_count=`expr $_am_stamp_count + 1` ;;
1481- esac
1482-done
1483-echo "timestamp for $_am_arg" >`AS_DIRNAME(["$_am_arg"])`/stamp-h[]$_am_stamp_count])
1484-
1485-# Copyright (C) 2001-2013 Free Software Foundation, Inc.
1486-#
1487-# This file is free software; the Free Software Foundation
1488-# gives unlimited permission to copy and/or distribute it,
1489-# with or without modifications, as long as this notice is preserved.
1490-
1491-# AM_PROG_INSTALL_SH
1492-# ------------------
1493-# Define $install_sh.
1494-AC_DEFUN([AM_PROG_INSTALL_SH],
1495-[AC_REQUIRE([AM_AUX_DIR_EXPAND])dnl
1496-if test x"${install_sh}" != xset; then
1497- case $am_aux_dir in
1498- *\ * | *\ *)
1499- install_sh="\${SHELL} '$am_aux_dir/install-sh'" ;;
1500- *)
1501- install_sh="\${SHELL} $am_aux_dir/install-sh"
1502- esac
1503-fi
1504-AC_SUBST([install_sh])])
1505-
1506-# Copyright (C) 2003-2013 Free Software Foundation, Inc.
1507-#
1508-# This file is free software; the Free Software Foundation
1509-# gives unlimited permission to copy and/or distribute it,
1510-# with or without modifications, as long as this notice is preserved.
1511-
1512-# Check whether the underlying file-system supports filenames
1513-# with a leading dot. For instance MS-DOS doesn't.
1514-AC_DEFUN([AM_SET_LEADING_DOT],
1515-[rm -rf .tst 2>/dev/null
1516-mkdir .tst 2>/dev/null
1517-if test -d .tst; then
1518- am__leading_dot=.
1519-else
1520- am__leading_dot=_
1521-fi
1522-rmdir .tst 2>/dev/null
1523-AC_SUBST([am__leading_dot])])
1524-
1525-# Add --enable-maintainer-mode option to configure. -*- Autoconf -*-
1526-# From Jim Meyering
1527-
1528-# Copyright (C) 1996-2013 Free Software Foundation, Inc.
1529-#
1530-# This file is free software; the Free Software Foundation
1531-# gives unlimited permission to copy and/or distribute it,
1532-# with or without modifications, as long as this notice is preserved.
1533-
1534-# AM_MAINTAINER_MODE([DEFAULT-MODE])
1535-# ----------------------------------
1536-# Control maintainer-specific portions of Makefiles.
1537-# Default is to disable them, unless 'enable' is passed literally.
1538-# For symmetry, 'disable' may be passed as well. Anyway, the user
1539-# can override the default with the --enable/--disable switch.
1540-AC_DEFUN([AM_MAINTAINER_MODE],
1541-[m4_case(m4_default([$1], [disable]),
1542- [enable], [m4_define([am_maintainer_other], [disable])],
1543- [disable], [m4_define([am_maintainer_other], [enable])],
1544- [m4_define([am_maintainer_other], [enable])
1545- m4_warn([syntax], [unexpected argument to AM@&t@_MAINTAINER_MODE: $1])])
1546-AC_MSG_CHECKING([whether to enable maintainer-specific portions of Makefiles])
1547- dnl maintainer-mode's default is 'disable' unless 'enable' is passed
1548- AC_ARG_ENABLE([maintainer-mode],
1549- [AS_HELP_STRING([--]am_maintainer_other[-maintainer-mode],
1550- am_maintainer_other[ make rules and dependencies not useful
1551- (and sometimes confusing) to the casual installer])],
1552- [USE_MAINTAINER_MODE=$enableval],
1553- [USE_MAINTAINER_MODE=]m4_if(am_maintainer_other, [enable], [no], [yes]))
1554- AC_MSG_RESULT([$USE_MAINTAINER_MODE])
1555- AM_CONDITIONAL([MAINTAINER_MODE], [test $USE_MAINTAINER_MODE = yes])
1556- MAINT=$MAINTAINER_MODE_TRUE
1557- AC_SUBST([MAINT])dnl
1558-]
1559-)
1560-
1561-# Check to see how 'make' treats includes. -*- Autoconf -*-
1562-
1563-# Copyright (C) 2001-2013 Free Software Foundation, Inc.
1564-#
1565-# This file is free software; the Free Software Foundation
1566-# gives unlimited permission to copy and/or distribute it,
1567-# with or without modifications, as long as this notice is preserved.
1568-
1569-# AM_MAKE_INCLUDE()
1570-# -----------------
1571-# Check to see how make treats includes.
1572-AC_DEFUN([AM_MAKE_INCLUDE],
1573-[am_make=${MAKE-make}
1574-cat > confinc << 'END'
1575-am__doit:
1576- @echo this is the am__doit target
1577-.PHONY: am__doit
1578-END
1579-# If we don't find an include directive, just comment out the code.
1580-AC_MSG_CHECKING([for style of include used by $am_make])
1581-am__include="#"
1582-am__quote=
1583-_am_result=none
1584-# First try GNU make style include.
1585-echo "include confinc" > confmf
1586-# Ignore all kinds of additional output from 'make'.
1587-case `$am_make -s -f confmf 2> /dev/null` in #(
1588-*the\ am__doit\ target*)
1589- am__include=include
1590- am__quote=
1591- _am_result=GNU
1592- ;;
1593-esac
1594-# Now try BSD make style include.
1595-if test "$am__include" = "#"; then
1596- echo '.include "confinc"' > confmf
1597- case `$am_make -s -f confmf 2> /dev/null` in #(
1598- *the\ am__doit\ target*)
1599- am__include=.include
1600- am__quote="\""
1601- _am_result=BSD
1602- ;;
1603- esac
1604-fi
1605-AC_SUBST([am__include])
1606-AC_SUBST([am__quote])
1607-AC_MSG_RESULT([$_am_result])
1608-rm -f confinc confmf
1609-])
1610-
1611-# Copyright (C) 1999-2013 Free Software Foundation, Inc.
1612-#
1613-# This file is free software; the Free Software Foundation
1614-# gives unlimited permission to copy and/or distribute it,
1615-# with or without modifications, as long as this notice is preserved.
1616-
1617-# AM_PROG_CC_C_O
1618-# --------------
1619-# Like AC_PROG_CC_C_O, but changed for automake.
1620-AC_DEFUN([AM_PROG_CC_C_O],
1621-[AC_REQUIRE([AC_PROG_CC_C_O])dnl
1622-AC_REQUIRE([AM_AUX_DIR_EXPAND])dnl
1623-AC_REQUIRE_AUX_FILE([compile])dnl
1624-# FIXME: we rely on the cache variable name because
1625-# there is no other way.
1626-set dummy $CC
1627-am_cc=`echo $[2] | sed ['s/[^a-zA-Z0-9_]/_/g;s/^[0-9]/_/']`
1628-eval am_t=\$ac_cv_prog_cc_${am_cc}_c_o
1629-if test "$am_t" != yes; then
1630- # Losing compiler, so override with the script.
1631- # FIXME: It is wrong to rewrite CC.
1632- # But if we don't then we get into trouble of one sort or another.
1633- # A longer-term fix would be to have automake use am__CC in this case,
1634- # and then we could set am__CC="\$(top_srcdir)/compile \$(CC)"
1635- CC="$am_aux_dir/compile $CC"
1636-fi
1637-dnl Make sure AC_PROG_CC is never called again, or it will override our
1638-dnl setting of CC.
1639-m4_define([AC_PROG_CC],
1640- [m4_fatal([AC_PROG_CC cannot be called after AM_PROG_CC_C_O])])
1641-])
1642-
1643-# Fake the existence of programs that GNU maintainers use. -*- Autoconf -*-
1644-
1645-# Copyright (C) 1997-2013 Free Software Foundation, Inc.
1646-#
1647-# This file is free software; the Free Software Foundation
1648-# gives unlimited permission to copy and/or distribute it,
1649-# with or without modifications, as long as this notice is preserved.
1650-
1651-# AM_MISSING_PROG(NAME, PROGRAM)
1652-# ------------------------------
1653-AC_DEFUN([AM_MISSING_PROG],
1654-[AC_REQUIRE([AM_MISSING_HAS_RUN])
1655-$1=${$1-"${am_missing_run}$2"}
1656-AC_SUBST($1)])
1657-
1658-# AM_MISSING_HAS_RUN
1659-# ------------------
1660-# Define MISSING if not defined so far and test if it is modern enough.
1661-# If it is, set am_missing_run to use it, otherwise, to nothing.
1662-AC_DEFUN([AM_MISSING_HAS_RUN],
1663-[AC_REQUIRE([AM_AUX_DIR_EXPAND])dnl
1664-AC_REQUIRE_AUX_FILE([missing])dnl
1665-if test x"${MISSING+set}" != xset; then
1666- case $am_aux_dir in
1667- *\ * | *\ *)
1668- MISSING="\${SHELL} \"$am_aux_dir/missing\"" ;;
1669- *)
1670- MISSING="\${SHELL} $am_aux_dir/missing" ;;
1671- esac
1672-fi
1673-# Use eval to expand $SHELL
1674-if eval "$MISSING --is-lightweight"; then
1675- am_missing_run="$MISSING "
1676-else
1677- am_missing_run=
1678- AC_MSG_WARN(['missing' script is too old or missing])
1679-fi
1680-])
1681-
1682-# Copyright (C) 2003-2013 Free Software Foundation, Inc.
1683-#
1684-# This file is free software; the Free Software Foundation
1685-# gives unlimited permission to copy and/or distribute it,
1686-# with or without modifications, as long as this notice is preserved.
1687-
1688-# AM_PROG_MKDIR_P
1689-# ---------------
1690-# Check for 'mkdir -p'.
1691-AC_DEFUN([AM_PROG_MKDIR_P],
1692-[AC_PREREQ([2.60])dnl
1693-AC_REQUIRE([AC_PROG_MKDIR_P])dnl
1694-dnl FIXME we are no longer going to remove this! adjust warning
1695-dnl FIXME message accordingly.
1696-AC_DIAGNOSE([obsolete],
1697-[$0: this macro is deprecated, and will soon be removed.
1698-You should use the Autoconf-provided 'AC][_PROG_MKDIR_P' macro instead,
1699-and use '$(MKDIR_P)' instead of '$(mkdir_p)'in your Makefile.am files.])
1700-dnl Automake 1.8 to 1.9.6 used to define mkdir_p. We now use MKDIR_P,
1701-dnl while keeping a definition of mkdir_p for backward compatibility.
1702-dnl @MKDIR_P@ is magic: AC_OUTPUT adjusts its value for each Makefile.
1703-dnl However we cannot define mkdir_p as $(MKDIR_P) for the sake of
1704-dnl Makefile.ins that do not define MKDIR_P, so we do our own
1705-dnl adjustment using top_builddir (which is defined more often than
1706-dnl MKDIR_P).
1707-AC_SUBST([mkdir_p], ["$MKDIR_P"])dnl
1708-case $mkdir_p in
1709- [[\\/$]]* | ?:[[\\/]]*) ;;
1710- */*) mkdir_p="\$(top_builddir)/$mkdir_p" ;;
1711-esac
1712-])
1713-
1714-# Helper functions for option handling. -*- Autoconf -*-
1715-
1716-# Copyright (C) 2001-2013 Free Software Foundation, Inc.
1717-#
1718-# This file is free software; the Free Software Foundation
1719-# gives unlimited permission to copy and/or distribute it,
1720-# with or without modifications, as long as this notice is preserved.
1721-
1722-# _AM_MANGLE_OPTION(NAME)
1723-# -----------------------
1724-AC_DEFUN([_AM_MANGLE_OPTION],
1725-[[_AM_OPTION_]m4_bpatsubst($1, [[^a-zA-Z0-9_]], [_])])
1726-
1727-# _AM_SET_OPTION(NAME)
1728-# --------------------
1729-# Set option NAME. Presently that only means defining a flag for this option.
1730-AC_DEFUN([_AM_SET_OPTION],
1731-[m4_define(_AM_MANGLE_OPTION([$1]), [1])])
1732-
1733-# _AM_SET_OPTIONS(OPTIONS)
1734-# ------------------------
1735-# OPTIONS is a space-separated list of Automake options.
1736-AC_DEFUN([_AM_SET_OPTIONS],
1737-[m4_foreach_w([_AM_Option], [$1], [_AM_SET_OPTION(_AM_Option)])])
1738-
1739-# _AM_IF_OPTION(OPTION, IF-SET, [IF-NOT-SET])
1740-# -------------------------------------------
1741-# Execute IF-SET if OPTION is set, IF-NOT-SET otherwise.
1742-AC_DEFUN([_AM_IF_OPTION],
1743-[m4_ifset(_AM_MANGLE_OPTION([$1]), [$2], [$3])])
1744-
1745-# Check to make sure that the build environment is sane. -*- Autoconf -*-
1746-
1747-# Copyright (C) 1996-2013 Free Software Foundation, Inc.
1748-#
1749-# This file is free software; the Free Software Foundation
1750-# gives unlimited permission to copy and/or distribute it,
1751-# with or without modifications, as long as this notice is preserved.
1752-
1753-# AM_SANITY_CHECK
1754-# ---------------
1755-AC_DEFUN([AM_SANITY_CHECK],
1756-[AC_MSG_CHECKING([whether build environment is sane])
1757-# Reject unsafe characters in $srcdir or the absolute working directory
1758-# name. Accept space and tab only in the latter.
1759-am_lf='
1760-'
1761-case `pwd` in
1762- *[[\\\"\#\$\&\'\`$am_lf]]*)
1763- AC_MSG_ERROR([unsafe absolute working directory name]);;
1764-esac
1765-case $srcdir in
1766- *[[\\\"\#\$\&\'\`$am_lf\ \ ]]*)
1767- AC_MSG_ERROR([unsafe srcdir value: '$srcdir']);;
1768-esac
1769-
1770-# Do 'set' in a subshell so we don't clobber the current shell's
1771-# arguments. Must try -L first in case configure is actually a
1772-# symlink; some systems play weird games with the mod time of symlinks
1773-# (eg FreeBSD returns the mod time of the symlink's containing
1774-# directory).
1775-if (
1776- am_has_slept=no
1777- for am_try in 1 2; do
1778- echo "timestamp, slept: $am_has_slept" > conftest.file
1779- set X `ls -Lt "$srcdir/configure" conftest.file 2> /dev/null`
1780- if test "$[*]" = "X"; then
1781- # -L didn't work.
1782- set X `ls -t "$srcdir/configure" conftest.file`
1783- fi
1784- if test "$[*]" != "X $srcdir/configure conftest.file" \
1785- && test "$[*]" != "X conftest.file $srcdir/configure"; then
1786-
1787- # If neither matched, then we have a broken ls. This can happen
1788- # if, for instance, CONFIG_SHELL is bash and it inherits a
1789- # broken ls alias from the environment. This has actually
1790- # happened. Such a system could not be considered "sane".
1791- AC_MSG_ERROR([ls -t appears to fail. Make sure there is not a broken
1792- alias in your environment])
1793- fi
1794- if test "$[2]" = conftest.file || test $am_try -eq 2; then
1795- break
1796- fi
1797- # Just in case.
1798- sleep 1
1799- am_has_slept=yes
1800- done
1801- test "$[2]" = conftest.file
1802- )
1803-then
1804- # Ok.
1805- :
1806-else
1807- AC_MSG_ERROR([newly created file is older than distributed files!
1808-Check your system clock])
1809-fi
1810-AC_MSG_RESULT([yes])
1811-# If we didn't sleep, we still need to ensure time stamps of config.status and
1812-# generated files are strictly newer.
1813-am_sleep_pid=
1814-if grep 'slept: no' conftest.file >/dev/null 2>&1; then
1815- ( sleep 1 ) &
1816- am_sleep_pid=$!
1817-fi
1818-AC_CONFIG_COMMANDS_PRE(
1819- [AC_MSG_CHECKING([that generated files are newer than configure])
1820- if test -n "$am_sleep_pid"; then
1821- # Hide warnings about reused PIDs.
1822- wait $am_sleep_pid 2>/dev/null
1823- fi
1824- AC_MSG_RESULT([done])])
1825-rm -f conftest.file
1826-])
1827-
1828-# Copyright (C) 2009-2013 Free Software Foundation, Inc.
1829-#
1830-# This file is free software; the Free Software Foundation
1831-# gives unlimited permission to copy and/or distribute it,
1832-# with or without modifications, as long as this notice is preserved.
1833-
1834-# AM_SILENT_RULES([DEFAULT])
1835-# --------------------------
1836-# Enable less verbose build rules; with the default set to DEFAULT
1837-# ("yes" being less verbose, "no" or empty being verbose).
1838-AC_DEFUN([AM_SILENT_RULES],
1839-[AC_ARG_ENABLE([silent-rules], [dnl
1840-AS_HELP_STRING(
1841- [--enable-silent-rules],
1842- [less verbose build output (undo: "make V=1")])
1843-AS_HELP_STRING(
1844- [--disable-silent-rules],
1845- [verbose build output (undo: "make V=0")])dnl
1846-])
1847-case $enable_silent_rules in @%:@ (((
1848- yes) AM_DEFAULT_VERBOSITY=0;;
1849- no) AM_DEFAULT_VERBOSITY=1;;
1850- *) AM_DEFAULT_VERBOSITY=m4_if([$1], [yes], [0], [1]);;
1851-esac
1852-dnl
1853-dnl A few 'make' implementations (e.g., NonStop OS and NextStep)
1854-dnl do not support nested variable expansions.
1855-dnl See automake bug#9928 and bug#10237.
1856-am_make=${MAKE-make}
1857-AC_CACHE_CHECK([whether $am_make supports nested variables],
1858- [am_cv_make_support_nested_variables],
1859- [if AS_ECHO([['TRUE=$(BAR$(V))
1860-BAR0=false
1861-BAR1=true
1862-V=1
1863-am__doit:
1864- @$(TRUE)
1865-.PHONY: am__doit']]) | $am_make -f - >/dev/null 2>&1; then
1866- am_cv_make_support_nested_variables=yes
1867-else
1868- am_cv_make_support_nested_variables=no
1869-fi])
1870-if test $am_cv_make_support_nested_variables = yes; then
1871- dnl Using '$V' instead of '$(V)' breaks IRIX make.
1872- AM_V='$(V)'
1873- AM_DEFAULT_V='$(AM_DEFAULT_VERBOSITY)'
1874-else
1875- AM_V=$AM_DEFAULT_VERBOSITY
1876- AM_DEFAULT_V=$AM_DEFAULT_VERBOSITY
1877-fi
1878-AC_SUBST([AM_V])dnl
1879-AM_SUBST_NOTMAKE([AM_V])dnl
1880-AC_SUBST([AM_DEFAULT_V])dnl
1881-AM_SUBST_NOTMAKE([AM_DEFAULT_V])dnl
1882-AC_SUBST([AM_DEFAULT_VERBOSITY])dnl
1883-AM_BACKSLASH='\'
1884-AC_SUBST([AM_BACKSLASH])dnl
1885-_AM_SUBST_NOTMAKE([AM_BACKSLASH])dnl
1886-])
1887-
1888-# Copyright (C) 2001-2013 Free Software Foundation, Inc.
1889-#
1890-# This file is free software; the Free Software Foundation
1891-# gives unlimited permission to copy and/or distribute it,
1892-# with or without modifications, as long as this notice is preserved.
1893-
1894-# AM_PROG_INSTALL_STRIP
1895-# ---------------------
1896-# One issue with vendor 'install' (even GNU) is that you can't
1897-# specify the program used to strip binaries. This is especially
1898-# annoying in cross-compiling environments, where the build's strip
1899-# is unlikely to handle the host's binaries.
1900-# Fortunately install-sh will honor a STRIPPROG variable, so we
1901-# always use install-sh in "make install-strip", and initialize
1902-# STRIPPROG with the value of the STRIP variable (set by the user).
1903-AC_DEFUN([AM_PROG_INSTALL_STRIP],
1904-[AC_REQUIRE([AM_PROG_INSTALL_SH])dnl
1905-# Installed binaries are usually stripped using 'strip' when the user
1906-# run "make install-strip". However 'strip' might not be the right
1907-# tool to use in cross-compilation environments, therefore Automake
1908-# will honor the 'STRIP' environment variable to overrule this program.
1909-dnl Don't test for $cross_compiling = yes, because it might be 'maybe'.
1910-if test "$cross_compiling" != no; then
1911- AC_CHECK_TOOL([STRIP], [strip], :)
1912-fi
1913-INSTALL_STRIP_PROGRAM="\$(install_sh) -c -s"
1914-AC_SUBST([INSTALL_STRIP_PROGRAM])])
1915-
1916-# Copyright (C) 2006-2013 Free Software Foundation, Inc.
1917-#
1918-# This file is free software; the Free Software Foundation
1919-# gives unlimited permission to copy and/or distribute it,
1920-# with or without modifications, as long as this notice is preserved.
1921-
1922-# _AM_SUBST_NOTMAKE(VARIABLE)
1923-# ---------------------------
1924-# Prevent Automake from outputting VARIABLE = @VARIABLE@ in Makefile.in.
1925-# This macro is traced by Automake.
1926-AC_DEFUN([_AM_SUBST_NOTMAKE])
1927-
1928-# AM_SUBST_NOTMAKE(VARIABLE)
1929-# --------------------------
1930-# Public sister of _AM_SUBST_NOTMAKE.
1931-AC_DEFUN([AM_SUBST_NOTMAKE], [_AM_SUBST_NOTMAKE($@)])
1932-
1933-# Check how to create a tarball. -*- Autoconf -*-
1934-
1935-# Copyright (C) 2004-2013 Free Software Foundation, Inc.
1936-#
1937-# This file is free software; the Free Software Foundation
1938-# gives unlimited permission to copy and/or distribute it,
1939-# with or without modifications, as long as this notice is preserved.
1940-
1941-# _AM_PROG_TAR(FORMAT)
1942-# --------------------
1943-# Check how to create a tarball in format FORMAT.
1944-# FORMAT should be one of 'v7', 'ustar', or 'pax'.
1945-#
1946-# Substitute a variable $(am__tar) that is a command
1947-# writing to stdout a FORMAT-tarball containing the directory
1948-# $tardir.
1949-# tardir=directory && $(am__tar) > result.tar
1950-#
1951-# Substitute a variable $(am__untar) that extract such
1952-# a tarball read from stdin.
1953-# $(am__untar) < result.tar
1954-#
1955-AC_DEFUN([_AM_PROG_TAR],
1956-[# Always define AMTAR for backward compatibility. Yes, it's still used
1957-# in the wild :-( We should find a proper way to deprecate it ...
1958-AC_SUBST([AMTAR], ['$${TAR-tar}'])
1959-
1960-# We'll loop over all known methods to create a tar archive until one works.
1961-_am_tools='gnutar m4_if([$1], [ustar], [plaintar]) pax cpio none'
1962-
1963-m4_if([$1], [v7],
1964- [am__tar='$${TAR-tar} chof - "$$tardir"' am__untar='$${TAR-tar} xf -'],
1965-
1966- [m4_case([$1],
1967- [ustar],
1968- [# The POSIX 1988 'ustar' format is defined with fixed-size fields.
1969- # There is notably a 21 bits limit for the UID and the GID. In fact,
1970- # the 'pax' utility can hang on bigger UID/GID (see automake bug#8343
1971- # and bug#13588).
1972- am_max_uid=2097151 # 2^21 - 1
1973- am_max_gid=$am_max_uid
1974- # The $UID and $GID variables are not portable, so we need to resort
1975- # to the POSIX-mandated id(1) utility. Errors in the 'id' calls
1976- # below are definitely unexpected, so allow the users to see them
1977- # (that is, avoid stderr redirection).
1978- am_uid=`id -u || echo unknown`
1979- am_gid=`id -g || echo unknown`
1980- AC_MSG_CHECKING([whether UID '$am_uid' is supported by ustar format])
1981- if test $am_uid -le $am_max_uid; then
1982- AC_MSG_RESULT([yes])
1983- else
1984- AC_MSG_RESULT([no])
1985- _am_tools=none
1986- fi
1987- AC_MSG_CHECKING([whether GID '$am_gid' is supported by ustar format])
1988- if test $am_gid -le $am_max_gid; then
1989- AC_MSG_RESULT([yes])
1990- else
1991- AC_MSG_RESULT([no])
1992- _am_tools=none
1993- fi],
1994-
1995- [pax],
1996- [],
1997-
1998- [m4_fatal([Unknown tar format])])
1999-
2000- AC_MSG_CHECKING([how to create a $1 tar archive])
2001-
2002- # Go ahead even if we have the value already cached. We do so because we
2003- # need to set the values for the 'am__tar' and 'am__untar' variables.
2004- _am_tools=${am_cv_prog_tar_$1-$_am_tools}
2005-
2006- for _am_tool in $_am_tools; do
2007- case $_am_tool in
2008- gnutar)
2009- for _am_tar in tar gnutar gtar; do
2010- AM_RUN_LOG([$_am_tar --version]) && break
2011- done
2012- am__tar="$_am_tar --format=m4_if([$1], [pax], [posix], [$1]) -chf - "'"$$tardir"'
2013- am__tar_="$_am_tar --format=m4_if([$1], [pax], [posix], [$1]) -chf - "'"$tardir"'
2014- am__untar="$_am_tar -xf -"
2015- ;;
2016- plaintar)
2017- # Must skip GNU tar: if it does not support --format= it doesn't create
2018- # ustar tarball either.
2019- (tar --version) >/dev/null 2>&1 && continue
2020- am__tar='tar chf - "$$tardir"'
2021- am__tar_='tar chf - "$tardir"'
2022- am__untar='tar xf -'
2023- ;;
2024- pax)
2025- am__tar='pax -L -x $1 -w "$$tardir"'
2026- am__tar_='pax -L -x $1 -w "$tardir"'
2027- am__untar='pax -r'
2028- ;;
2029- cpio)
2030- am__tar='find "$$tardir" -print | cpio -o -H $1 -L'
2031- am__tar_='find "$tardir" -print | cpio -o -H $1 -L'
2032- am__untar='cpio -i -H $1 -d'
2033- ;;
2034- none)
2035- am__tar=false
2036- am__tar_=false
2037- am__untar=false
2038- ;;
2039- esac
2040-
2041- # If the value was cached, stop now. We just wanted to have am__tar
2042- # and am__untar set.
2043- test -n "${am_cv_prog_tar_$1}" && break
2044-
2045- # tar/untar a dummy directory, and stop if the command works.
2046- rm -rf conftest.dir
2047- mkdir conftest.dir
2048- echo GrepMe > conftest.dir/file
2049- AM_RUN_LOG([tardir=conftest.dir && eval $am__tar_ >conftest.tar])
2050- rm -rf conftest.dir
2051- if test -s conftest.tar; then
2052- AM_RUN_LOG([$am__untar <conftest.tar])
2053- AM_RUN_LOG([cat conftest.dir/file])
2054- grep GrepMe conftest.dir/file >/dev/null 2>&1 && break
2055- fi
2056- done
2057- rm -rf conftest.dir
2058-
2059- AC_CACHE_VAL([am_cv_prog_tar_$1], [am_cv_prog_tar_$1=$_am_tool])
2060- AC_MSG_RESULT([$am_cv_prog_tar_$1])])
2061-
2062-AC_SUBST([am__tar])
2063-AC_SUBST([am__untar])
2064-]) # _AM_PROG_TAR
2065-
2066-m4_include([m4/codeset.m4])
2067-m4_include([m4/gettext.m4])
2068-m4_include([m4/glibc2.m4])
2069-m4_include([m4/glibc21.m4])
2070-m4_include([m4/iconv.m4])
2071-m4_include([m4/intdiv0.m4])
2072-m4_include([m4/intl.m4])
2073-m4_include([m4/intlmacosx.m4])
2074-m4_include([m4/intmax.m4])
2075-m4_include([m4/inttypes-pri.m4])
2076-m4_include([m4/inttypes_h.m4])
2077-m4_include([m4/lcmessage.m4])
2078-m4_include([m4/lib-ld.m4])
2079-m4_include([m4/lib-link.m4])
2080-m4_include([m4/lib-prefix.m4])
2081-m4_include([m4/libnih.m4])
2082-m4_include([m4/libtool.m4])
2083-m4_include([m4/lock.m4])
2084-m4_include([m4/longlong.m4])
2085-m4_include([m4/ltoptions.m4])
2086-m4_include([m4/ltsugar.m4])
2087-m4_include([m4/ltversion.m4])
2088-m4_include([m4/lt~obsolete.m4])
2089-m4_include([m4/nls.m4])
2090-m4_include([m4/pkg.m4])
2091-m4_include([m4/po.m4])
2092-m4_include([m4/printf-posix.m4])
2093-m4_include([m4/progtest.m4])
2094-m4_include([m4/size_max.m4])
2095-m4_include([m4/stdint_h.m4])
2096-m4_include([m4/uintmax_t.m4])
2097-m4_include([m4/ulonglong.m4])
2098-m4_include([m4/visibility.m4])
2099-m4_include([m4/wchar_t.m4])
2100-m4_include([m4/wint_t.m4])
2101-m4_include([m4/xsize.m4])
2102
2103=== removed file 'apport/Makefile.in'
2104--- apport/Makefile.in 2013-07-02 23:10:21 +0000
2105+++ apport/Makefile.in 1970-01-01 00:00:00 +0000
2106@@ -1,556 +0,0 @@
2107-# Makefile.in generated by automake 1.13.3 from Makefile.am.
2108-# @configure_input@
2109-
2110-# Copyright (C) 1994-2013 Free Software Foundation, Inc.
2111-
2112-# This Makefile.in is free software; the Free Software Foundation
2113-# gives unlimited permission to copy and/or distribute it,
2114-# with or without modifications, as long as this notice is preserved.
2115-
2116-# This program is distributed in the hope that it will be useful,
2117-# but WITHOUT ANY WARRANTY, to the extent permitted by law; without
2118-# even the implied warranty of MERCHANTABILITY or FITNESS FOR A
2119-# PARTICULAR PURPOSE.
2120-
2121-@SET_MAKE@
2122-
2123-VPATH = @srcdir@
2124-am__is_gnu_make = test -n '$(MAKEFILE_LIST)' && test -n '$(MAKELEVEL)'
2125-am__make_running_with_option = \
2126- case $${target_option-} in \
2127- ?) ;; \
2128- *) echo "am__make_running_with_option: internal error: invalid" \
2129- "target option '$${target_option-}' specified" >&2; \
2130- exit 1;; \
2131- esac; \
2132- has_opt=no; \
2133- sane_makeflags=$$MAKEFLAGS; \
2134- if $(am__is_gnu_make); then \
2135- sane_makeflags=$$MFLAGS; \
2136- else \
2137- case $$MAKEFLAGS in \
2138- *\\[\ \ ]*) \
2139- bs=\\; \
2140- sane_makeflags=`printf '%s\n' "$$MAKEFLAGS" \
2141- | sed "s/$$bs$$bs[$$bs $$bs ]*//g"`;; \
2142- esac; \
2143- fi; \
2144- skip_next=no; \
2145- strip_trailopt () \
2146- { \
2147- flg=`printf '%s\n' "$$flg" | sed "s/$$1.*$$//"`; \
2148- }; \
2149- for flg in $$sane_makeflags; do \
2150- test $$skip_next = yes && { skip_next=no; continue; }; \
2151- case $$flg in \
2152- *=*|--*) continue;; \
2153- -*I) strip_trailopt 'I'; skip_next=yes;; \
2154- -*I?*) strip_trailopt 'I';; \
2155- -*O) strip_trailopt 'O'; skip_next=yes;; \
2156- -*O?*) strip_trailopt 'O';; \
2157- -*l) strip_trailopt 'l'; skip_next=yes;; \
2158- -*l?*) strip_trailopt 'l';; \
2159- -[dEDm]) skip_next=yes;; \
2160- -[JT]) skip_next=yes;; \
2161- esac; \
2162- case $$flg in \
2163- *$$target_option*) has_opt=yes; break;; \
2164- esac; \
2165- done; \
2166- test $$has_opt = yes
2167-am__make_dryrun = (target_option=n; $(am__make_running_with_option))
2168-am__make_keepgoing = (target_option=k; $(am__make_running_with_option))
2169-pkgdatadir = $(datadir)/@PACKAGE@
2170-pkgincludedir = $(includedir)/@PACKAGE@
2171-pkglibdir = $(libdir)/@PACKAGE@
2172-pkglibexecdir = $(libexecdir)/@PACKAGE@
2173-am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd
2174-install_sh_DATA = $(install_sh) -c -m 644
2175-install_sh_PROGRAM = $(install_sh) -c
2176-install_sh_SCRIPT = $(install_sh) -c
2177-INSTALL_HEADER = $(INSTALL_DATA)
2178-transform = $(program_transform_name)
2179-NORMAL_INSTALL = :
2180-PRE_INSTALL = :
2181-POST_INSTALL = :
2182-NORMAL_UNINSTALL = :
2183-PRE_UNINSTALL = :
2184-POST_UNINSTALL = :
2185-build_triplet = @build@
2186-host_triplet = @host@
2187-subdir = apport
2188-DIST_COMMON = $(srcdir)/Makefile.in $(srcdir)/Makefile.am
2189-ACLOCAL_M4 = $(top_srcdir)/aclocal.m4
2190-am__aclocal_m4_deps = $(top_srcdir)/m4/codeset.m4 \
2191- $(top_srcdir)/m4/gettext.m4 $(top_srcdir)/m4/glibc2.m4 \
2192- $(top_srcdir)/m4/glibc21.m4 $(top_srcdir)/m4/iconv.m4 \
2193- $(top_srcdir)/m4/intdiv0.m4 $(top_srcdir)/m4/intl.m4 \
2194- $(top_srcdir)/m4/intlmacosx.m4 $(top_srcdir)/m4/intmax.m4 \
2195- $(top_srcdir)/m4/inttypes-pri.m4 \
2196- $(top_srcdir)/m4/inttypes_h.m4 $(top_srcdir)/m4/lcmessage.m4 \
2197- $(top_srcdir)/m4/lib-ld.m4 $(top_srcdir)/m4/lib-link.m4 \
2198- $(top_srcdir)/m4/lib-prefix.m4 $(top_srcdir)/m4/libnih.m4 \
2199- $(top_srcdir)/m4/libtool.m4 $(top_srcdir)/m4/lock.m4 \
2200- $(top_srcdir)/m4/longlong.m4 $(top_srcdir)/m4/ltoptions.m4 \
2201- $(top_srcdir)/m4/ltsugar.m4 $(top_srcdir)/m4/ltversion.m4 \
2202- $(top_srcdir)/m4/lt~obsolete.m4 $(top_srcdir)/m4/nls.m4 \
2203- $(top_srcdir)/m4/pkg.m4 $(top_srcdir)/m4/po.m4 \
2204- $(top_srcdir)/m4/printf-posix.m4 $(top_srcdir)/m4/progtest.m4 \
2205- $(top_srcdir)/m4/size_max.m4 $(top_srcdir)/m4/stdint_h.m4 \
2206- $(top_srcdir)/m4/uintmax_t.m4 $(top_srcdir)/m4/ulonglong.m4 \
2207- $(top_srcdir)/m4/visibility.m4 $(top_srcdir)/m4/wchar_t.m4 \
2208- $(top_srcdir)/m4/wint_t.m4 $(top_srcdir)/m4/xsize.m4 \
2209- $(top_srcdir)/configure.ac
2210-am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \
2211- $(ACLOCAL_M4)
2212-mkinstalldirs = $(install_sh) -d
2213-CONFIG_HEADER = $(top_builddir)/config.h
2214-CONFIG_CLEAN_FILES =
2215-CONFIG_CLEAN_VPATH_FILES =
2216-AM_V_P = $(am__v_P_@AM_V@)
2217-am__v_P_ = $(am__v_P_@AM_DEFAULT_V@)
2218-am__v_P_0 = false
2219-am__v_P_1 = :
2220-AM_V_GEN = $(am__v_GEN_@AM_V@)
2221-am__v_GEN_ = $(am__v_GEN_@AM_DEFAULT_V@)
2222-am__v_GEN_0 = @echo " GEN " $@;
2223-am__v_GEN_1 =
2224-AM_V_at = $(am__v_at_@AM_V@)
2225-am__v_at_ = $(am__v_at_@AM_DEFAULT_V@)
2226-am__v_at_0 = @
2227-am__v_at_1 =
2228-SOURCES =
2229-DIST_SOURCES =
2230-am__can_run_installinfo = \
2231- case $$AM_UPDATE_INFO_DIR in \
2232- n|no|NO) false;; \
2233- *) (install-info --version) >/dev/null 2>&1;; \
2234- esac
2235-am__vpath_adj_setup = srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`;
2236-am__vpath_adj = case $$p in \
2237- $(srcdir)/*) f=`echo "$$p" | sed "s|^$$srcdirstrip/||"`;; \
2238- *) f=$$p;; \
2239- esac;
2240-am__strip_dir = f=`echo $$p | sed -e 's|^.*/||'`;
2241-am__install_max = 40
2242-am__nobase_strip_setup = \
2243- srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*|]/\\\\&/g'`
2244-am__nobase_strip = \
2245- for p in $$list; do echo "$$p"; done | sed -e "s|$$srcdirstrip/||"
2246-am__nobase_list = $(am__nobase_strip_setup); \
2247- for p in $$list; do echo "$$p $$p"; done | \
2248- sed "s| $$srcdirstrip/| |;"' / .*\//!s/ .*/ ./; s,\( .*\)/[^/]*$$,\1,' | \
2249- $(AWK) 'BEGIN { files["."] = "" } { files[$$2] = files[$$2] " " $$1; \
2250- if (++n[$$2] == $(am__install_max)) \
2251- { print $$2, files[$$2]; n[$$2] = 0; files[$$2] = "" } } \
2252- END { for (dir in files) print dir, files[dir] }'
2253-am__base_list = \
2254- sed '$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;s/\n/ /g' | \
2255- sed '$$!N;$$!N;$$!N;$$!N;s/\n/ /g'
2256-am__uninstall_files_from_dir = { \
2257- test -z "$$files" \
2258- || { test ! -d "$$dir" && test ! -f "$$dir" && test ! -r "$$dir"; } \
2259- || { echo " ( cd '$$dir' && rm -f" $$files ")"; \
2260- $(am__cd) "$$dir" && rm -f $$files; }; \
2261- }
2262-am__installdirs = "$(DESTDIR)$(apportdir)"
2263-DATA = $(apport_DATA)
2264-am__tagged_files = $(HEADERS) $(SOURCES) $(TAGS_FILES) $(LISP)
2265-DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST)
2266-ACLOCAL = @ACLOCAL@
2267-ALLOCA = @ALLOCA@
2268-AMTAR = @AMTAR@
2269-AM_DEFAULT_VERBOSITY = @AM_DEFAULT_VERBOSITY@
2270-AR = @AR@
2271-AUTOCONF = @AUTOCONF@
2272-AUTOHEADER = @AUTOHEADER@
2273-AUTOMAKE = @AUTOMAKE@
2274-AWK = @AWK@
2275-BUILD_INCLUDED_LIBINTL = @BUILD_INCLUDED_LIBINTL@
2276-CATOBJEXT = @CATOBJEXT@
2277-CC = @CC@
2278-CCDEPMODE = @CCDEPMODE@
2279-CFLAGS = @CFLAGS@
2280-CFLAG_VISIBILITY = @CFLAG_VISIBILITY@
2281-CPP = @CPP@
2282-CPPFLAGS = @CPPFLAGS@
2283-CYGPATH_W = @CYGPATH_W@
2284-DATADIRNAME = @DATADIRNAME@
2285-DBUS_CFLAGS = @DBUS_CFLAGS@
2286-DBUS_LIBS = @DBUS_LIBS@
2287-DEFS = @DEFS@
2288-DEPDIR = @DEPDIR@
2289-DLLTOOL = @DLLTOOL@
2290-DSYMUTIL = @DSYMUTIL@
2291-DUMPBIN = @DUMPBIN@
2292-ECHO_C = @ECHO_C@
2293-ECHO_N = @ECHO_N@
2294-ECHO_T = @ECHO_T@
2295-EGREP = @EGREP@
2296-EXEEXT = @EXEEXT@
2297-FGREP = @FGREP@
2298-GENCAT = @GENCAT@
2299-GETTEXT_MACRO_VERSION = @GETTEXT_MACRO_VERSION@
2300-GLIBC2 = @GLIBC2@
2301-GLIBC21 = @GLIBC21@
2302-GMSGFMT = @GMSGFMT@
2303-GMSGFMT_015 = @GMSGFMT_015@
2304-GREP = @GREP@
2305-HAVE_ASPRINTF = @HAVE_ASPRINTF@
2306-HAVE_POSIX_PRINTF = @HAVE_POSIX_PRINTF@
2307-HAVE_SNPRINTF = @HAVE_SNPRINTF@
2308-HAVE_VISIBILITY = @HAVE_VISIBILITY@
2309-HAVE_WPRINTF = @HAVE_WPRINTF@
2310-INSTALL = @INSTALL@
2311-INSTALL_DATA = @INSTALL_DATA@
2312-INSTALL_PROGRAM = @INSTALL_PROGRAM@
2313-INSTALL_SCRIPT = @INSTALL_SCRIPT@
2314-INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@
2315-INSTOBJEXT = @INSTOBJEXT@
2316-INTLBISON = @INTLBISON@
2317-INTLLIBS = @INTLLIBS@
2318-INTLOBJS = @INTLOBJS@
2319-INTL_LIBTOOL_SUFFIX_PREFIX = @INTL_LIBTOOL_SUFFIX_PREFIX@
2320-INTL_MACOSX_LIBS = @INTL_MACOSX_LIBS@
2321-LD = @LD@
2322-LDFLAGS = @LDFLAGS@
2323-LIBICONV = @LIBICONV@
2324-LIBINTL = @LIBINTL@
2325-LIBMULTITHREAD = @LIBMULTITHREAD@
2326-LIBOBJS = @LIBOBJS@
2327-LIBPTH = @LIBPTH@
2328-LIBPTH_PREFIX = @LIBPTH_PREFIX@
2329-LIBS = @LIBS@
2330-LIBTHREAD = @LIBTHREAD@
2331-LIBTOOL = @LIBTOOL@
2332-LIPO = @LIPO@
2333-LN_S = @LN_S@
2334-LTLIBC = @LTLIBC@
2335-LTLIBICONV = @LTLIBICONV@
2336-LTLIBINTL = @LTLIBINTL@
2337-LTLIBMULTITHREAD = @LTLIBMULTITHREAD@
2338-LTLIBOBJS = @LTLIBOBJS@
2339-LTLIBPTH = @LTLIBPTH@
2340-LTLIBTHREAD = @LTLIBTHREAD@
2341-MAINT = @MAINT@
2342-MAKEINFO = @MAKEINFO@
2343-MANIFEST_TOOL = @MANIFEST_TOOL@
2344-MKDIR_P = @MKDIR_P@
2345-MSGFMT = @MSGFMT@
2346-MSGFMT_015 = @MSGFMT_015@
2347-MSGMERGE = @MSGMERGE@
2348-NIH_CFLAGS = @NIH_CFLAGS@
2349-NIH_DBUS_CFLAGS = @NIH_DBUS_CFLAGS@
2350-NIH_DBUS_LIBS = @NIH_DBUS_LIBS@
2351-NIH_DBUS_TOOL = @NIH_DBUS_TOOL@
2352-NIH_LIBS = @NIH_LIBS@
2353-NM = @NM@
2354-NMEDIT = @NMEDIT@
2355-OBJDUMP = @OBJDUMP@
2356-OBJEXT = @OBJEXT@
2357-OTOOL = @OTOOL@
2358-OTOOL64 = @OTOOL64@
2359-PACKAGE = @PACKAGE@
2360-PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@
2361-PACKAGE_NAME = @PACKAGE_NAME@
2362-PACKAGE_STRING = @PACKAGE_STRING@
2363-PACKAGE_TARNAME = @PACKAGE_TARNAME@
2364-PACKAGE_URL = @PACKAGE_URL@
2365-PACKAGE_VERSION = @PACKAGE_VERSION@
2366-PATH_SEPARATOR = @PATH_SEPARATOR@
2367-PKG_CONFIG = @PKG_CONFIG@
2368-PKG_CONFIG_LIBDIR = @PKG_CONFIG_LIBDIR@
2369-PKG_CONFIG_PATH = @PKG_CONFIG_PATH@
2370-PLYMOUTH_CFLAGS = @PLYMOUTH_CFLAGS@
2371-PLYMOUTH_LIBS = @PLYMOUTH_LIBS@
2372-POSUB = @POSUB@
2373-PRI_MACROS_BROKEN = @PRI_MACROS_BROKEN@
2374-RANLIB = @RANLIB@
2375-SED = @SED@
2376-SET_MAKE = @SET_MAKE@
2377-SHELL = @SHELL@
2378-STRIP = @STRIP@
2379-UDEV_CFLAGS = @UDEV_CFLAGS@
2380-UDEV_LIBS = @UDEV_LIBS@
2381-USE_INCLUDED_LIBINTL = @USE_INCLUDED_LIBINTL@
2382-USE_NLS = @USE_NLS@
2383-VERSION = @VERSION@
2384-WINDRES = @WINDRES@
2385-WOE32 = @WOE32@
2386-WOE32DLL = @WOE32DLL@
2387-XGETTEXT = @XGETTEXT@
2388-XGETTEXT_015 = @XGETTEXT_015@
2389-XGETTEXT_EXTRA_OPTIONS = @XGETTEXT_EXTRA_OPTIONS@
2390-abs_builddir = @abs_builddir@
2391-abs_srcdir = @abs_srcdir@
2392-abs_top_builddir = @abs_top_builddir@
2393-abs_top_srcdir = @abs_top_srcdir@
2394-ac_ct_AR = @ac_ct_AR@
2395-ac_ct_CC = @ac_ct_CC@
2396-ac_ct_DUMPBIN = @ac_ct_DUMPBIN@
2397-am__include = @am__include@
2398-am__leading_dot = @am__leading_dot@
2399-am__quote = @am__quote@
2400-am__tar = @am__tar@
2401-am__untar = @am__untar@
2402-bindir = @bindir@
2403-build = @build@
2404-build_alias = @build_alias@
2405-build_cpu = @build_cpu@
2406-build_os = @build_os@
2407-build_vendor = @build_vendor@
2408-builddir = @builddir@
2409-datadir = @datadir@
2410-datarootdir = @datarootdir@
2411-docdir = @docdir@
2412-dvidir = @dvidir@
2413-exec_prefix = @exec_prefix@
2414-host = @host@
2415-host_alias = @host_alias@
2416-host_cpu = @host_cpu@
2417-host_os = @host_os@
2418-host_vendor = @host_vendor@
2419-htmldir = @htmldir@
2420-includedir = @includedir@
2421-infodir = @infodir@
2422-install_sh = @install_sh@
2423-libdir = @libdir@
2424-libexecdir = @libexecdir@
2425-localedir = @localedir@
2426-localstatedir = @localstatedir@
2427-mandir = @mandir@
2428-mkdir_p = @mkdir_p@
2429-oldincludedir = @oldincludedir@
2430-pdfdir = @pdfdir@
2431-prefix = @prefix@
2432-program_transform_name = @program_transform_name@
2433-psdir = @psdir@
2434-sbindir = @sbindir@
2435-sharedstatedir = @sharedstatedir@
2436-srcdir = @srcdir@
2437-sysconfdir = @sysconfdir@
2438-target_alias = @target_alias@
2439-top_build_prefix = @top_build_prefix@
2440-top_builddir = @top_builddir@
2441-top_srcdir = @top_srcdir@
2442-apportdir = /usr/share/apport/package-hooks/
2443-apport_DATA = mountall.py
2444-all: all-am
2445-
2446-.SUFFIXES:
2447-$(srcdir)/Makefile.in: @MAINTAINER_MODE_TRUE@ $(srcdir)/Makefile.am $(am__configure_deps)
2448- @for dep in $?; do \
2449- case '$(am__configure_deps)' in \
2450- *$$dep*) \
2451- ( cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ) \
2452- && { if test -f $@; then exit 0; else break; fi; }; \
2453- exit 1;; \
2454- esac; \
2455- done; \
2456- echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign apport/Makefile'; \
2457- $(am__cd) $(top_srcdir) && \
2458- $(AUTOMAKE) --foreign apport/Makefile
2459-.PRECIOUS: Makefile
2460-Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status
2461- @case '$?' in \
2462- *config.status*) \
2463- cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \
2464- *) \
2465- echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \
2466- cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \
2467- esac;
2468-
2469-$(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES)
2470- cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh
2471-
2472-$(top_srcdir)/configure: @MAINTAINER_MODE_TRUE@ $(am__configure_deps)
2473- cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh
2474-$(ACLOCAL_M4): @MAINTAINER_MODE_TRUE@ $(am__aclocal_m4_deps)
2475- cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh
2476-$(am__aclocal_m4_deps):
2477-
2478-mostlyclean-libtool:
2479- -rm -f *.lo
2480-
2481-clean-libtool:
2482- -rm -rf .libs _libs
2483-install-apportDATA: $(apport_DATA)
2484- @$(NORMAL_INSTALL)
2485- @list='$(apport_DATA)'; test -n "$(apportdir)" || list=; \
2486- if test -n "$$list"; then \
2487- echo " $(MKDIR_P) '$(DESTDIR)$(apportdir)'"; \
2488- $(MKDIR_P) "$(DESTDIR)$(apportdir)" || exit 1; \
2489- fi; \
2490- for p in $$list; do \
2491- if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \
2492- echo "$$d$$p"; \
2493- done | $(am__base_list) | \
2494- while read files; do \
2495- echo " $(INSTALL_DATA) $$files '$(DESTDIR)$(apportdir)'"; \
2496- $(INSTALL_DATA) $$files "$(DESTDIR)$(apportdir)" || exit $$?; \
2497- done
2498-
2499-uninstall-apportDATA:
2500- @$(NORMAL_UNINSTALL)
2501- @list='$(apport_DATA)'; test -n "$(apportdir)" || list=; \
2502- files=`for p in $$list; do echo $$p; done | sed -e 's|^.*/||'`; \
2503- dir='$(DESTDIR)$(apportdir)'; $(am__uninstall_files_from_dir)
2504-tags TAGS:
2505-
2506-ctags CTAGS:
2507-
2508-cscope cscopelist:
2509-
2510-
2511-distdir: $(DISTFILES)
2512- @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \
2513- topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \
2514- list='$(DISTFILES)'; \
2515- dist_files=`for file in $$list; do echo $$file; done | \
2516- sed -e "s|^$$srcdirstrip/||;t" \
2517- -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \
2518- case $$dist_files in \
2519- */*) $(MKDIR_P) `echo "$$dist_files" | \
2520- sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \
2521- sort -u` ;; \
2522- esac; \
2523- for file in $$dist_files; do \
2524- if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \
2525- if test -d $$d/$$file; then \
2526- dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \
2527- if test -d "$(distdir)/$$file"; then \
2528- find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \
2529- fi; \
2530- if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \
2531- cp -fpR $(srcdir)/$$file "$(distdir)$$dir" || exit 1; \
2532- find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \
2533- fi; \
2534- cp -fpR $$d/$$file "$(distdir)$$dir" || exit 1; \
2535- else \
2536- test -f "$(distdir)/$$file" \
2537- || cp -p $$d/$$file "$(distdir)/$$file" \
2538- || exit 1; \
2539- fi; \
2540- done
2541-check-am: all-am
2542-check: check-am
2543-all-am: Makefile $(DATA)
2544-installdirs:
2545- for dir in "$(DESTDIR)$(apportdir)"; do \
2546- test -z "$$dir" || $(MKDIR_P) "$$dir"; \
2547- done
2548-install: install-am
2549-install-exec: install-exec-am
2550-install-data: install-data-am
2551-uninstall: uninstall-am
2552-
2553-install-am: all-am
2554- @$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am
2555-
2556-installcheck: installcheck-am
2557-install-strip:
2558- if test -z '$(STRIP)'; then \
2559- $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \
2560- install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \
2561- install; \
2562- else \
2563- $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \
2564- install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \
2565- "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'" install; \
2566- fi
2567-mostlyclean-generic:
2568-
2569-clean-generic:
2570-
2571-distclean-generic:
2572- -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES)
2573- -test . = "$(srcdir)" || test -z "$(CONFIG_CLEAN_VPATH_FILES)" || rm -f $(CONFIG_CLEAN_VPATH_FILES)
2574-
2575-maintainer-clean-generic:
2576- @echo "This command is intended for maintainers to use"
2577- @echo "it deletes files that may require special tools to rebuild."
2578-clean: clean-am
2579-
2580-clean-am: clean-generic clean-libtool mostlyclean-am
2581-
2582-distclean: distclean-am
2583- -rm -f Makefile
2584-distclean-am: clean-am distclean-generic
2585-
2586-dvi: dvi-am
2587-
2588-dvi-am:
2589-
2590-html: html-am
2591-
2592-html-am:
2593-
2594-info: info-am
2595-
2596-info-am:
2597-
2598-install-data-am: install-apportDATA
2599-
2600-install-dvi: install-dvi-am
2601-
2602-install-dvi-am:
2603-
2604-install-exec-am:
2605-
2606-install-html: install-html-am
2607-
2608-install-html-am:
2609-
2610-install-info: install-info-am
2611-
2612-install-info-am:
2613-
2614-install-man:
2615-
2616-install-pdf: install-pdf-am
2617-
2618-install-pdf-am:
2619-
2620-install-ps: install-ps-am
2621-
2622-install-ps-am:
2623-
2624-installcheck-am:
2625-
2626-maintainer-clean: maintainer-clean-am
2627- -rm -f Makefile
2628-maintainer-clean-am: distclean-am maintainer-clean-generic
2629-
2630-mostlyclean: mostlyclean-am
2631-
2632-mostlyclean-am: mostlyclean-generic mostlyclean-libtool
2633-
2634-pdf: pdf-am
2635-
2636-pdf-am:
2637-
2638-ps: ps-am
2639-
2640-ps-am:
2641-
2642-uninstall-am: uninstall-apportDATA
2643-
2644-.MAKE: install-am install-strip
2645-
2646-.PHONY: all all-am check check-am clean clean-generic clean-libtool \
2647- cscopelist-am ctags-am distclean distclean-generic \
2648- distclean-libtool distdir dvi dvi-am html html-am info info-am \
2649- install install-am install-apportDATA install-data \
2650- install-data-am install-dvi install-dvi-am install-exec \
2651- install-exec-am install-html install-html-am install-info \
2652- install-info-am install-man install-pdf install-pdf-am \
2653- install-ps install-ps-am install-strip installcheck \
2654- installcheck-am installdirs maintainer-clean \
2655- maintainer-clean-generic mostlyclean mostlyclean-generic \
2656- mostlyclean-libtool pdf pdf-am ps ps-am tags-am uninstall \
2657- uninstall-am uninstall-apportDATA
2658-
2659-
2660-# Tell versions [3.59,3.63) of GNU make to not export all variables.
2661-# Otherwise a system limit (for SysV at least) may be exceeded.
2662-.NOEXPORT:
2663
2664=== removed file 'conf/Makefile.in'
2665--- conf/Makefile.in 2013-07-02 23:10:21 +0000
2666+++ conf/Makefile.in 1970-01-01 00:00:00 +0000
2667@@ -1,579 +0,0 @@
2668-# Makefile.in generated by automake 1.13.3 from Makefile.am.
2669-# @configure_input@
2670-
2671-# Copyright (C) 1994-2013 Free Software Foundation, Inc.
2672-
2673-# This Makefile.in is free software; the Free Software Foundation
2674-# gives unlimited permission to copy and/or distribute it,
2675-# with or without modifications, as long as this notice is preserved.
2676-
2677-# This program is distributed in the hope that it will be useful,
2678-# but WITHOUT ANY WARRANTY, to the extent permitted by law; without
2679-# even the implied warranty of MERCHANTABILITY or FITNESS FOR A
2680-# PARTICULAR PURPOSE.
2681-
2682-@SET_MAKE@
2683-
2684-VPATH = @srcdir@
2685-am__is_gnu_make = test -n '$(MAKEFILE_LIST)' && test -n '$(MAKELEVEL)'
2686-am__make_running_with_option = \
2687- case $${target_option-} in \
2688- ?) ;; \
2689- *) echo "am__make_running_with_option: internal error: invalid" \
2690- "target option '$${target_option-}' specified" >&2; \
2691- exit 1;; \
2692- esac; \
2693- has_opt=no; \
2694- sane_makeflags=$$MAKEFLAGS; \
2695- if $(am__is_gnu_make); then \
2696- sane_makeflags=$$MFLAGS; \
2697- else \
2698- case $$MAKEFLAGS in \
2699- *\\[\ \ ]*) \
2700- bs=\\; \
2701- sane_makeflags=`printf '%s\n' "$$MAKEFLAGS" \
2702- | sed "s/$$bs$$bs[$$bs $$bs ]*//g"`;; \
2703- esac; \
2704- fi; \
2705- skip_next=no; \
2706- strip_trailopt () \
2707- { \
2708- flg=`printf '%s\n' "$$flg" | sed "s/$$1.*$$//"`; \
2709- }; \
2710- for flg in $$sane_makeflags; do \
2711- test $$skip_next = yes && { skip_next=no; continue; }; \
2712- case $$flg in \
2713- *=*|--*) continue;; \
2714- -*I) strip_trailopt 'I'; skip_next=yes;; \
2715- -*I?*) strip_trailopt 'I';; \
2716- -*O) strip_trailopt 'O'; skip_next=yes;; \
2717- -*O?*) strip_trailopt 'O';; \
2718- -*l) strip_trailopt 'l'; skip_next=yes;; \
2719- -*l?*) strip_trailopt 'l';; \
2720- -[dEDm]) skip_next=yes;; \
2721- -[JT]) skip_next=yes;; \
2722- esac; \
2723- case $$flg in \
2724- *$$target_option*) has_opt=yes; break;; \
2725- esac; \
2726- done; \
2727- test $$has_opt = yes
2728-am__make_dryrun = (target_option=n; $(am__make_running_with_option))
2729-am__make_keepgoing = (target_option=k; $(am__make_running_with_option))
2730-pkgdatadir = $(datadir)/@PACKAGE@
2731-pkgincludedir = $(includedir)/@PACKAGE@
2732-pkglibdir = $(libdir)/@PACKAGE@
2733-pkglibexecdir = $(libexecdir)/@PACKAGE@
2734-am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd
2735-install_sh_DATA = $(install_sh) -c -m 644
2736-install_sh_PROGRAM = $(install_sh) -c
2737-install_sh_SCRIPT = $(install_sh) -c
2738-INSTALL_HEADER = $(INSTALL_DATA)
2739-transform = $(program_transform_name)
2740-NORMAL_INSTALL = :
2741-PRE_INSTALL = :
2742-POST_INSTALL = :
2743-NORMAL_UNINSTALL = :
2744-PRE_UNINSTALL = :
2745-POST_UNINSTALL = :
2746-build_triplet = @build@
2747-host_triplet = @host@
2748-subdir = conf
2749-DIST_COMMON = $(srcdir)/Makefile.in $(srcdir)/Makefile.am \
2750- $(dist_init_DATA)
2751-ACLOCAL_M4 = $(top_srcdir)/aclocal.m4
2752-am__aclocal_m4_deps = $(top_srcdir)/m4/codeset.m4 \
2753- $(top_srcdir)/m4/gettext.m4 $(top_srcdir)/m4/glibc2.m4 \
2754- $(top_srcdir)/m4/glibc21.m4 $(top_srcdir)/m4/iconv.m4 \
2755- $(top_srcdir)/m4/intdiv0.m4 $(top_srcdir)/m4/intl.m4 \
2756- $(top_srcdir)/m4/intlmacosx.m4 $(top_srcdir)/m4/intmax.m4 \
2757- $(top_srcdir)/m4/inttypes-pri.m4 \
2758- $(top_srcdir)/m4/inttypes_h.m4 $(top_srcdir)/m4/lcmessage.m4 \
2759- $(top_srcdir)/m4/lib-ld.m4 $(top_srcdir)/m4/lib-link.m4 \
2760- $(top_srcdir)/m4/lib-prefix.m4 $(top_srcdir)/m4/libnih.m4 \
2761- $(top_srcdir)/m4/libtool.m4 $(top_srcdir)/m4/lock.m4 \
2762- $(top_srcdir)/m4/longlong.m4 $(top_srcdir)/m4/ltoptions.m4 \
2763- $(top_srcdir)/m4/ltsugar.m4 $(top_srcdir)/m4/ltversion.m4 \
2764- $(top_srcdir)/m4/lt~obsolete.m4 $(top_srcdir)/m4/nls.m4 \
2765- $(top_srcdir)/m4/pkg.m4 $(top_srcdir)/m4/po.m4 \
2766- $(top_srcdir)/m4/printf-posix.m4 $(top_srcdir)/m4/progtest.m4 \
2767- $(top_srcdir)/m4/size_max.m4 $(top_srcdir)/m4/stdint_h.m4 \
2768- $(top_srcdir)/m4/uintmax_t.m4 $(top_srcdir)/m4/ulonglong.m4 \
2769- $(top_srcdir)/m4/visibility.m4 $(top_srcdir)/m4/wchar_t.m4 \
2770- $(top_srcdir)/m4/wint_t.m4 $(top_srcdir)/m4/xsize.m4 \
2771- $(top_srcdir)/configure.ac
2772-am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \
2773- $(ACLOCAL_M4)
2774-mkinstalldirs = $(install_sh) -d
2775-CONFIG_HEADER = $(top_builddir)/config.h
2776-CONFIG_CLEAN_FILES =
2777-CONFIG_CLEAN_VPATH_FILES =
2778-AM_V_P = $(am__v_P_@AM_V@)
2779-am__v_P_ = $(am__v_P_@AM_DEFAULT_V@)
2780-am__v_P_0 = false
2781-am__v_P_1 = :
2782-AM_V_GEN = $(am__v_GEN_@AM_V@)
2783-am__v_GEN_ = $(am__v_GEN_@AM_DEFAULT_V@)
2784-am__v_GEN_0 = @echo " GEN " $@;
2785-am__v_GEN_1 =
2786-AM_V_at = $(am__v_at_@AM_V@)
2787-am__v_at_ = $(am__v_at_@AM_DEFAULT_V@)
2788-am__v_at_0 = @
2789-am__v_at_1 =
2790-SOURCES =
2791-DIST_SOURCES =
2792-am__can_run_installinfo = \
2793- case $$AM_UPDATE_INFO_DIR in \
2794- n|no|NO) false;; \
2795- *) (install-info --version) >/dev/null 2>&1;; \
2796- esac
2797-am__vpath_adj_setup = srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`;
2798-am__vpath_adj = case $$p in \
2799- $(srcdir)/*) f=`echo "$$p" | sed "s|^$$srcdirstrip/||"`;; \
2800- *) f=$$p;; \
2801- esac;
2802-am__strip_dir = f=`echo $$p | sed -e 's|^.*/||'`;
2803-am__install_max = 40
2804-am__nobase_strip_setup = \
2805- srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*|]/\\\\&/g'`
2806-am__nobase_strip = \
2807- for p in $$list; do echo "$$p"; done | sed -e "s|$$srcdirstrip/||"
2808-am__nobase_list = $(am__nobase_strip_setup); \
2809- for p in $$list; do echo "$$p $$p"; done | \
2810- sed "s| $$srcdirstrip/| |;"' / .*\//!s/ .*/ ./; s,\( .*\)/[^/]*$$,\1,' | \
2811- $(AWK) 'BEGIN { files["."] = "" } { files[$$2] = files[$$2] " " $$1; \
2812- if (++n[$$2] == $(am__install_max)) \
2813- { print $$2, files[$$2]; n[$$2] = 0; files[$$2] = "" } } \
2814- END { for (dir in files) print dir, files[dir] }'
2815-am__base_list = \
2816- sed '$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;s/\n/ /g' | \
2817- sed '$$!N;$$!N;$$!N;$$!N;s/\n/ /g'
2818-am__uninstall_files_from_dir = { \
2819- test -z "$$files" \
2820- || { test ! -d "$$dir" && test ! -f "$$dir" && test ! -r "$$dir"; } \
2821- || { echo " ( cd '$$dir' && rm -f" $$files ")"; \
2822- $(am__cd) "$$dir" && rm -f $$files; }; \
2823- }
2824-am__installdirs = "$(DESTDIR)$(initdir)"
2825-DATA = $(dist_init_DATA)
2826-am__tagged_files = $(HEADERS) $(SOURCES) $(TAGS_FILES) $(LISP)
2827-DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST)
2828-ACLOCAL = @ACLOCAL@
2829-ALLOCA = @ALLOCA@
2830-AMTAR = @AMTAR@
2831-AM_DEFAULT_VERBOSITY = @AM_DEFAULT_VERBOSITY@
2832-AR = @AR@
2833-AUTOCONF = @AUTOCONF@
2834-AUTOHEADER = @AUTOHEADER@
2835-AUTOMAKE = @AUTOMAKE@
2836-AWK = @AWK@
2837-BUILD_INCLUDED_LIBINTL = @BUILD_INCLUDED_LIBINTL@
2838-CATOBJEXT = @CATOBJEXT@
2839-CC = @CC@
2840-CCDEPMODE = @CCDEPMODE@
2841-CFLAGS = @CFLAGS@
2842-CFLAG_VISIBILITY = @CFLAG_VISIBILITY@
2843-CPP = @CPP@
2844-CPPFLAGS = @CPPFLAGS@
2845-CYGPATH_W = @CYGPATH_W@
2846-DATADIRNAME = @DATADIRNAME@
2847-DBUS_CFLAGS = @DBUS_CFLAGS@
2848-DBUS_LIBS = @DBUS_LIBS@
2849-DEFS = @DEFS@
2850-DEPDIR = @DEPDIR@
2851-DLLTOOL = @DLLTOOL@
2852-DSYMUTIL = @DSYMUTIL@
2853-DUMPBIN = @DUMPBIN@
2854-ECHO_C = @ECHO_C@
2855-ECHO_N = @ECHO_N@
2856-ECHO_T = @ECHO_T@
2857-EGREP = @EGREP@
2858-EXEEXT = @EXEEXT@
2859-FGREP = @FGREP@
2860-GENCAT = @GENCAT@
2861-GETTEXT_MACRO_VERSION = @GETTEXT_MACRO_VERSION@
2862-GLIBC2 = @GLIBC2@
2863-GLIBC21 = @GLIBC21@
2864-GMSGFMT = @GMSGFMT@
2865-GMSGFMT_015 = @GMSGFMT_015@
2866-GREP = @GREP@
2867-HAVE_ASPRINTF = @HAVE_ASPRINTF@
2868-HAVE_POSIX_PRINTF = @HAVE_POSIX_PRINTF@
2869-HAVE_SNPRINTF = @HAVE_SNPRINTF@
2870-HAVE_VISIBILITY = @HAVE_VISIBILITY@
2871-HAVE_WPRINTF = @HAVE_WPRINTF@
2872-INSTALL = @INSTALL@
2873-INSTALL_DATA = @INSTALL_DATA@
2874-INSTALL_PROGRAM = @INSTALL_PROGRAM@
2875-INSTALL_SCRIPT = @INSTALL_SCRIPT@
2876-INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@
2877-INSTOBJEXT = @INSTOBJEXT@
2878-INTLBISON = @INTLBISON@
2879-INTLLIBS = @INTLLIBS@
2880-INTLOBJS = @INTLOBJS@
2881-INTL_LIBTOOL_SUFFIX_PREFIX = @INTL_LIBTOOL_SUFFIX_PREFIX@
2882-INTL_MACOSX_LIBS = @INTL_MACOSX_LIBS@
2883-LD = @LD@
2884-LDFLAGS = @LDFLAGS@
2885-LIBICONV = @LIBICONV@
2886-LIBINTL = @LIBINTL@
2887-LIBMULTITHREAD = @LIBMULTITHREAD@
2888-LIBOBJS = @LIBOBJS@
2889-LIBPTH = @LIBPTH@
2890-LIBPTH_PREFIX = @LIBPTH_PREFIX@
2891-LIBS = @LIBS@
2892-LIBTHREAD = @LIBTHREAD@
2893-LIBTOOL = @LIBTOOL@
2894-LIPO = @LIPO@
2895-LN_S = @LN_S@
2896-LTLIBC = @LTLIBC@
2897-LTLIBICONV = @LTLIBICONV@
2898-LTLIBINTL = @LTLIBINTL@
2899-LTLIBMULTITHREAD = @LTLIBMULTITHREAD@
2900-LTLIBOBJS = @LTLIBOBJS@
2901-LTLIBPTH = @LTLIBPTH@
2902-LTLIBTHREAD = @LTLIBTHREAD@
2903-MAINT = @MAINT@
2904-MAKEINFO = @MAKEINFO@
2905-MANIFEST_TOOL = @MANIFEST_TOOL@
2906-MKDIR_P = @MKDIR_P@
2907-MSGFMT = @MSGFMT@
2908-MSGFMT_015 = @MSGFMT_015@
2909-MSGMERGE = @MSGMERGE@
2910-NIH_CFLAGS = @NIH_CFLAGS@
2911-NIH_DBUS_CFLAGS = @NIH_DBUS_CFLAGS@
2912-NIH_DBUS_LIBS = @NIH_DBUS_LIBS@
2913-NIH_DBUS_TOOL = @NIH_DBUS_TOOL@
2914-NIH_LIBS = @NIH_LIBS@
2915-NM = @NM@
2916-NMEDIT = @NMEDIT@
2917-OBJDUMP = @OBJDUMP@
2918-OBJEXT = @OBJEXT@
2919-OTOOL = @OTOOL@
2920-OTOOL64 = @OTOOL64@
2921-PACKAGE = @PACKAGE@
2922-PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@
2923-PACKAGE_NAME = @PACKAGE_NAME@
2924-PACKAGE_STRING = @PACKAGE_STRING@
2925-PACKAGE_TARNAME = @PACKAGE_TARNAME@
2926-PACKAGE_URL = @PACKAGE_URL@
2927-PACKAGE_VERSION = @PACKAGE_VERSION@
2928-PATH_SEPARATOR = @PATH_SEPARATOR@
2929-PKG_CONFIG = @PKG_CONFIG@
2930-PKG_CONFIG_LIBDIR = @PKG_CONFIG_LIBDIR@
2931-PKG_CONFIG_PATH = @PKG_CONFIG_PATH@
2932-PLYMOUTH_CFLAGS = @PLYMOUTH_CFLAGS@
2933-PLYMOUTH_LIBS = @PLYMOUTH_LIBS@
2934-POSUB = @POSUB@
2935-PRI_MACROS_BROKEN = @PRI_MACROS_BROKEN@
2936-RANLIB = @RANLIB@
2937-SED = @SED@
2938-SET_MAKE = @SET_MAKE@
2939-SHELL = @SHELL@
2940-STRIP = @STRIP@
2941-UDEV_CFLAGS = @UDEV_CFLAGS@
2942-UDEV_LIBS = @UDEV_LIBS@
2943-USE_INCLUDED_LIBINTL = @USE_INCLUDED_LIBINTL@
2944-USE_NLS = @USE_NLS@
2945-VERSION = @VERSION@
2946-WINDRES = @WINDRES@
2947-WOE32 = @WOE32@
2948-WOE32DLL = @WOE32DLL@
2949-XGETTEXT = @XGETTEXT@
2950-XGETTEXT_015 = @XGETTEXT_015@
2951-XGETTEXT_EXTRA_OPTIONS = @XGETTEXT_EXTRA_OPTIONS@
2952-abs_builddir = @abs_builddir@
2953-abs_srcdir = @abs_srcdir@
2954-abs_top_builddir = @abs_top_builddir@
2955-abs_top_srcdir = @abs_top_srcdir@
2956-ac_ct_AR = @ac_ct_AR@
2957-ac_ct_CC = @ac_ct_CC@
2958-ac_ct_DUMPBIN = @ac_ct_DUMPBIN@
2959-am__include = @am__include@
2960-am__leading_dot = @am__leading_dot@
2961-am__quote = @am__quote@
2962-am__tar = @am__tar@
2963-am__untar = @am__untar@
2964-bindir = @bindir@
2965-build = @build@
2966-build_alias = @build_alias@
2967-build_cpu = @build_cpu@
2968-build_os = @build_os@
2969-build_vendor = @build_vendor@
2970-builddir = @builddir@
2971-datadir = @datadir@
2972-datarootdir = @datarootdir@
2973-docdir = @docdir@
2974-dvidir = @dvidir@
2975-exec_prefix = @exec_prefix@
2976-host = @host@
2977-host_alias = @host_alias@
2978-host_cpu = @host_cpu@
2979-host_os = @host_os@
2980-host_vendor = @host_vendor@
2981-htmldir = @htmldir@
2982-includedir = @includedir@
2983-infodir = @infodir@
2984-install_sh = @install_sh@
2985-libdir = @libdir@
2986-libexecdir = @libexecdir@
2987-localedir = @localedir@
2988-localstatedir = @localstatedir@
2989-mandir = @mandir@
2990-mkdir_p = @mkdir_p@
2991-oldincludedir = @oldincludedir@
2992-pdfdir = @pdfdir@
2993-prefix = @prefix@
2994-program_transform_name = @program_transform_name@
2995-psdir = @psdir@
2996-sbindir = @sbindir@
2997-sharedstatedir = @sharedstatedir@
2998-srcdir = @srcdir@
2999-sysconfdir = @sysconfdir@
3000-target_alias = @target_alias@
3001-top_build_prefix = @top_build_prefix@
3002-top_builddir = @top_builddir@
3003-top_srcdir = @top_srcdir@
3004-initdir = $(sysconfdir)/init
3005-dist_init_DATA = \
3006- mountall.conf \
3007- mountall-net.conf \
3008- mountall-reboot.conf \
3009- mountall-shell.conf \
3010- mounted-debugfs.conf \
3011- mounted-dev.conf \
3012- mounted-run.conf \
3013- mounted-proc.conf \
3014- mounted-tmp.conf \
3015- mounted-var.conf \
3016- mountall.sh.conf \
3017- mountall-bootclean.sh.conf \
3018- mountkernfs.sh.conf \
3019- mountdevsubfs.sh.conf \
3020- bootmisc.sh.conf \
3021- checkfs.sh.conf \
3022- checkroot-bootclean.sh.conf \
3023- checkroot.sh.conf \
3024- mountnfs.sh.conf \
3025- mountnfs-bootclean.sh.conf \
3026- mtab.sh.conf
3027-
3028-all: all-am
3029-
3030-.SUFFIXES:
3031-$(srcdir)/Makefile.in: @MAINTAINER_MODE_TRUE@ $(srcdir)/Makefile.am $(am__configure_deps)
3032- @for dep in $?; do \
3033- case '$(am__configure_deps)' in \
3034- *$$dep*) \
3035- ( cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ) \
3036- && { if test -f $@; then exit 0; else break; fi; }; \
3037- exit 1;; \
3038- esac; \
3039- done; \
3040- echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign conf/Makefile'; \
3041- $(am__cd) $(top_srcdir) && \
3042- $(AUTOMAKE) --foreign conf/Makefile
3043-.PRECIOUS: Makefile
3044-Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status
3045- @case '$?' in \
3046- *config.status*) \
3047- cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \
3048- *) \
3049- echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \
3050- cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \
3051- esac;
3052-
3053-$(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES)
3054- cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh
3055-
3056-$(top_srcdir)/configure: @MAINTAINER_MODE_TRUE@ $(am__configure_deps)
3057- cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh
3058-$(ACLOCAL_M4): @MAINTAINER_MODE_TRUE@ $(am__aclocal_m4_deps)
3059- cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh
3060-$(am__aclocal_m4_deps):
3061-
3062-mostlyclean-libtool:
3063- -rm -f *.lo
3064-
3065-clean-libtool:
3066- -rm -rf .libs _libs
3067-install-dist_initDATA: $(dist_init_DATA)
3068- @$(NORMAL_INSTALL)
3069- @list='$(dist_init_DATA)'; test -n "$(initdir)" || list=; \
3070- if test -n "$$list"; then \
3071- echo " $(MKDIR_P) '$(DESTDIR)$(initdir)'"; \
3072- $(MKDIR_P) "$(DESTDIR)$(initdir)" || exit 1; \
3073- fi; \
3074- for p in $$list; do \
3075- if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \
3076- echo "$$d$$p"; \
3077- done | $(am__base_list) | \
3078- while read files; do \
3079- echo " $(INSTALL_DATA) $$files '$(DESTDIR)$(initdir)'"; \
3080- $(INSTALL_DATA) $$files "$(DESTDIR)$(initdir)" || exit $$?; \
3081- done
3082-
3083-uninstall-dist_initDATA:
3084- @$(NORMAL_UNINSTALL)
3085- @list='$(dist_init_DATA)'; test -n "$(initdir)" || list=; \
3086- files=`for p in $$list; do echo $$p; done | sed -e 's|^.*/||'`; \
3087- dir='$(DESTDIR)$(initdir)'; $(am__uninstall_files_from_dir)
3088-tags TAGS:
3089-
3090-ctags CTAGS:
3091-
3092-cscope cscopelist:
3093-
3094-
3095-distdir: $(DISTFILES)
3096- @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \
3097- topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \
3098- list='$(DISTFILES)'; \
3099- dist_files=`for file in $$list; do echo $$file; done | \
3100- sed -e "s|^$$srcdirstrip/||;t" \
3101- -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \
3102- case $$dist_files in \
3103- */*) $(MKDIR_P) `echo "$$dist_files" | \
3104- sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \
3105- sort -u` ;; \
3106- esac; \
3107- for file in $$dist_files; do \
3108- if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \
3109- if test -d $$d/$$file; then \
3110- dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \
3111- if test -d "$(distdir)/$$file"; then \
3112- find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \
3113- fi; \
3114- if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \
3115- cp -fpR $(srcdir)/$$file "$(distdir)$$dir" || exit 1; \
3116- find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \
3117- fi; \
3118- cp -fpR $$d/$$file "$(distdir)$$dir" || exit 1; \
3119- else \
3120- test -f "$(distdir)/$$file" \
3121- || cp -p $$d/$$file "$(distdir)/$$file" \
3122- || exit 1; \
3123- fi; \
3124- done
3125-check-am: all-am
3126-check: check-am
3127-all-am: Makefile $(DATA)
3128-installdirs:
3129- for dir in "$(DESTDIR)$(initdir)"; do \
3130- test -z "$$dir" || $(MKDIR_P) "$$dir"; \
3131- done
3132-install: install-am
3133-install-exec: install-exec-am
3134-install-data: install-data-am
3135-uninstall: uninstall-am
3136-
3137-install-am: all-am
3138- @$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am
3139-
3140-installcheck: installcheck-am
3141-install-strip:
3142- if test -z '$(STRIP)'; then \
3143- $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \
3144- install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \
3145- install; \
3146- else \
3147- $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \
3148- install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \
3149- "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'" install; \
3150- fi
3151-mostlyclean-generic:
3152-
3153-clean-generic:
3154-
3155-distclean-generic:
3156- -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES)
3157- -test . = "$(srcdir)" || test -z "$(CONFIG_CLEAN_VPATH_FILES)" || rm -f $(CONFIG_CLEAN_VPATH_FILES)
3158-
3159-maintainer-clean-generic:
3160- @echo "This command is intended for maintainers to use"
3161- @echo "it deletes files that may require special tools to rebuild."
3162-clean: clean-am
3163-
3164-clean-am: clean-generic clean-libtool mostlyclean-am
3165-
3166-distclean: distclean-am
3167- -rm -f Makefile
3168-distclean-am: clean-am distclean-generic
3169-
3170-dvi: dvi-am
3171-
3172-dvi-am:
3173-
3174-html: html-am
3175-
3176-html-am:
3177-
3178-info: info-am
3179-
3180-info-am:
3181-
3182-install-data-am: install-dist_initDATA
3183-
3184-install-dvi: install-dvi-am
3185-
3186-install-dvi-am:
3187-
3188-install-exec-am:
3189-
3190-install-html: install-html-am
3191-
3192-install-html-am:
3193-
3194-install-info: install-info-am
3195-
3196-install-info-am:
3197-
3198-install-man:
3199-
3200-install-pdf: install-pdf-am
3201-
3202-install-pdf-am:
3203-
3204-install-ps: install-ps-am
3205-
3206-install-ps-am:
3207-
3208-installcheck-am:
3209-
3210-maintainer-clean: maintainer-clean-am
3211- -rm -f Makefile
3212-maintainer-clean-am: distclean-am maintainer-clean-generic
3213-
3214-mostlyclean: mostlyclean-am
3215-
3216-mostlyclean-am: mostlyclean-generic mostlyclean-libtool
3217-
3218-pdf: pdf-am
3219-
3220-pdf-am:
3221-
3222-ps: ps-am
3223-
3224-ps-am:
3225-
3226-uninstall-am: uninstall-dist_initDATA
3227-
3228-.MAKE: install-am install-strip
3229-
3230-.PHONY: all all-am check check-am clean clean-generic clean-libtool \
3231- cscopelist-am ctags-am distclean distclean-generic \
3232- distclean-libtool distdir dvi dvi-am html html-am info info-am \
3233- install install-am install-data install-data-am \
3234- install-dist_initDATA install-dvi install-dvi-am install-exec \
3235- install-exec-am install-html install-html-am install-info \
3236- install-info-am install-man install-pdf install-pdf-am \
3237- install-ps install-ps-am install-strip installcheck \
3238- installcheck-am installdirs maintainer-clean \
3239- maintainer-clean-generic mostlyclean mostlyclean-generic \
3240- mostlyclean-libtool pdf pdf-am ps ps-am tags-am uninstall \
3241- uninstall-am uninstall-dist_initDATA
3242-
3243-
3244-# Tell versions [3.59,3.63) of GNU make to not export all variables.
3245-# Otherwise a system limit (for SysV at least) may be exceeded.
3246-.NOEXPORT:
3247
3248=== removed file 'config.guess'
3249--- config.guess 2013-07-02 23:10:21 +0000
3250+++ config.guess 1970-01-01 00:00:00 +0000
3251@@ -1,1552 +0,0 @@
3252-#! /bin/sh
3253-# Attempt to guess a canonical system name.
3254-# Copyright 1992-2013 Free Software Foundation, Inc.
3255-
3256-timestamp='2013-05-16'
3257-
3258-# This file is free software; you can redistribute it and/or modify it
3259-# under the terms of the GNU General Public License as published by
3260-# the Free Software Foundation; either version 3 of the License, or
3261-# (at your option) any later version.
3262-#
3263-# This program is distributed in the hope that it will be useful, but
3264-# WITHOUT ANY WARRANTY; without even the implied warranty of
3265-# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
3266-# General Public License for more details.
3267-#
3268-# You should have received a copy of the GNU General Public License
3269-# along with this program; if not, see <http://www.gnu.org/licenses/>.
3270-#
3271-# As a special exception to the GNU General Public License, if you
3272-# distribute this file as part of a program that contains a
3273-# configuration script generated by Autoconf, you may include it under
3274-# the same distribution terms that you use for the rest of that
3275-# program. This Exception is an additional permission under section 7
3276-# of the GNU General Public License, version 3 ("GPLv3").
3277-#
3278-# Originally written by Per Bothner.
3279-#
3280-# You can get the latest version of this script from:
3281-# http://git.savannah.gnu.org/gitweb/?p=config.git;a=blob_plain;f=config.guess;hb=HEAD
3282-#
3283-# Please send patches with a ChangeLog entry to config-patches@gnu.org.
3284-
3285-
3286-me=`echo "$0" | sed -e 's,.*/,,'`
3287-
3288-usage="\
3289-Usage: $0 [OPTION]
3290-
3291-Output the configuration name of the system \`$me' is run on.
3292-
3293-Operation modes:
3294- -h, --help print this help, then exit
3295- -t, --time-stamp print date of last modification, then exit
3296- -v, --version print version number, then exit
3297-
3298-Report bugs and patches to <config-patches@gnu.org>."
3299-
3300-version="\
3301-GNU config.guess ($timestamp)
3302-
3303-Originally written by Per Bothner.
3304-Copyright 1992-2013 Free Software Foundation, Inc.
3305-
3306-This is free software; see the source for copying conditions. There is NO
3307-warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE."
3308-
3309-help="
3310-Try \`$me --help' for more information."
3311-
3312-# Parse command line
3313-while test $# -gt 0 ; do
3314- case $1 in
3315- --time-stamp | --time* | -t )
3316- echo "$timestamp" ; exit ;;
3317- --version | -v )
3318- echo "$version" ; exit ;;
3319- --help | --h* | -h )
3320- echo "$usage"; exit ;;
3321- -- ) # Stop option processing
3322- shift; break ;;
3323- - ) # Use stdin as input.
3324- break ;;
3325- -* )
3326- echo "$me: invalid option $1$help" >&2
3327- exit 1 ;;
3328- * )
3329- break ;;
3330- esac
3331-done
3332-
3333-if test $# != 0; then
3334- echo "$me: too many arguments$help" >&2
3335- exit 1
3336-fi
3337-
3338-trap 'exit 1' 1 2 15
3339-
3340-# CC_FOR_BUILD -- compiler used by this script. Note that the use of a
3341-# compiler to aid in system detection is discouraged as it requires
3342-# temporary files to be created and, as you can see below, it is a
3343-# headache to deal with in a portable fashion.
3344-
3345-# Historically, `CC_FOR_BUILD' used to be named `HOST_CC'. We still
3346-# use `HOST_CC' if defined, but it is deprecated.
3347-
3348-# Portable tmp directory creation inspired by the Autoconf team.
3349-
3350-set_cc_for_build='
3351-trap "exitcode=\$?; (rm -f \$tmpfiles 2>/dev/null; rmdir \$tmp 2>/dev/null) && exit \$exitcode" 0 ;
3352-trap "rm -f \$tmpfiles 2>/dev/null; rmdir \$tmp 2>/dev/null; exit 1" 1 2 13 15 ;
3353-: ${TMPDIR=/tmp} ;
3354- { tmp=`(umask 077 && mktemp -d "$TMPDIR/cgXXXXXX") 2>/dev/null` && test -n "$tmp" && test -d "$tmp" ; } ||
3355- { test -n "$RANDOM" && tmp=$TMPDIR/cg$$-$RANDOM && (umask 077 && mkdir $tmp) ; } ||
3356- { tmp=$TMPDIR/cg-$$ && (umask 077 && mkdir $tmp) && echo "Warning: creating insecure temp directory" >&2 ; } ||
3357- { echo "$me: cannot create a temporary directory in $TMPDIR" >&2 ; exit 1 ; } ;
3358-dummy=$tmp/dummy ;
3359-tmpfiles="$dummy.c $dummy.o $dummy.rel $dummy" ;
3360-case $CC_FOR_BUILD,$HOST_CC,$CC in
3361- ,,) echo "int x;" > $dummy.c ;
3362- for c in cc gcc c89 c99 ; do
3363- if ($c -c -o $dummy.o $dummy.c) >/dev/null 2>&1 ; then
3364- CC_FOR_BUILD="$c"; break ;
3365- fi ;
3366- done ;
3367- if test x"$CC_FOR_BUILD" = x ; then
3368- CC_FOR_BUILD=no_compiler_found ;
3369- fi
3370- ;;
3371- ,,*) CC_FOR_BUILD=$CC ;;
3372- ,*,*) CC_FOR_BUILD=$HOST_CC ;;
3373-esac ; set_cc_for_build= ;'
3374-
3375-# This is needed to find uname on a Pyramid OSx when run in the BSD universe.
3376-# (ghazi@noc.rutgers.edu 1994-08-24)
3377-if (test -f /.attbin/uname) >/dev/null 2>&1 ; then
3378- PATH=$PATH:/.attbin ; export PATH
3379-fi
3380-
3381-UNAME_MACHINE=`(uname -m) 2>/dev/null` || UNAME_MACHINE=unknown
3382-UNAME_RELEASE=`(uname -r) 2>/dev/null` || UNAME_RELEASE=unknown
3383-UNAME_SYSTEM=`(uname -s) 2>/dev/null` || UNAME_SYSTEM=unknown
3384-UNAME_VERSION=`(uname -v) 2>/dev/null` || UNAME_VERSION=unknown
3385-
3386-case "${UNAME_SYSTEM}" in
3387-Linux|GNU|GNU/*)
3388- # If the system lacks a compiler, then just pick glibc.
3389- # We could probably try harder.
3390- LIBC=gnu
3391-
3392- eval $set_cc_for_build
3393- cat <<-EOF > $dummy.c
3394- #include <features.h>
3395- #if defined(__UCLIBC__)
3396- LIBC=uclibc
3397- #elif defined(__dietlibc__)
3398- LIBC=dietlibc
3399- #else
3400- LIBC=gnu
3401- #endif
3402- EOF
3403- eval `$CC_FOR_BUILD -E $dummy.c 2>/dev/null | grep '^LIBC'`
3404- ;;
3405-esac
3406-
3407-# Note: order is significant - the case branches are not exclusive.
3408-
3409-case "${UNAME_MACHINE}:${UNAME_SYSTEM}:${UNAME_RELEASE}:${UNAME_VERSION}" in
3410- *:NetBSD:*:*)
3411- # NetBSD (nbsd) targets should (where applicable) match one or
3412- # more of the tuples: *-*-netbsdelf*, *-*-netbsdaout*,
3413- # *-*-netbsdecoff* and *-*-netbsd*. For targets that recently
3414- # switched to ELF, *-*-netbsd* would select the old
3415- # object file format. This provides both forward
3416- # compatibility and a consistent mechanism for selecting the
3417- # object file format.
3418- #
3419- # Note: NetBSD doesn't particularly care about the vendor
3420- # portion of the name. We always set it to "unknown".
3421- sysctl="sysctl -n hw.machine_arch"
3422- UNAME_MACHINE_ARCH=`(/sbin/$sysctl 2>/dev/null || \
3423- /usr/sbin/$sysctl 2>/dev/null || echo unknown)`
3424- case "${UNAME_MACHINE_ARCH}" in
3425- armeb) machine=armeb-unknown ;;
3426- arm*) machine=arm-unknown ;;
3427- sh3el) machine=shl-unknown ;;
3428- sh3eb) machine=sh-unknown ;;
3429- sh5el) machine=sh5le-unknown ;;
3430- *) machine=${UNAME_MACHINE_ARCH}-unknown ;;
3431- esac
3432- # The Operating System including object format, if it has switched
3433- # to ELF recently, or will in the future.
3434- case "${UNAME_MACHINE_ARCH}" in
3435- arm*|i386|m68k|ns32k|sh3*|sparc|vax)
3436- eval $set_cc_for_build
3437- if echo __ELF__ | $CC_FOR_BUILD -E - 2>/dev/null \
3438- | grep -q __ELF__
3439- then
3440- # Once all utilities can be ECOFF (netbsdecoff) or a.out (netbsdaout).
3441- # Return netbsd for either. FIX?
3442- os=netbsd
3443- else
3444- os=netbsdelf
3445- fi
3446- ;;
3447- *)
3448- os=netbsd
3449- ;;
3450- esac
3451- # The OS release
3452- # Debian GNU/NetBSD machines have a different userland, and
3453- # thus, need a distinct triplet. However, they do not need
3454- # kernel version information, so it can be replaced with a
3455- # suitable tag, in the style of linux-gnu.
3456- case "${UNAME_VERSION}" in
3457- Debian*)
3458- release='-gnu'
3459- ;;
3460- *)
3461- release=`echo ${UNAME_RELEASE}|sed -e 's/[-_].*/\./'`
3462- ;;
3463- esac
3464- # Since CPU_TYPE-MANUFACTURER-KERNEL-OPERATING_SYSTEM:
3465- # contains redundant information, the shorter form:
3466- # CPU_TYPE-MANUFACTURER-OPERATING_SYSTEM is used.
3467- echo "${machine}-${os}${release}"
3468- exit ;;
3469- *:Bitrig:*:*)
3470- UNAME_MACHINE_ARCH=`arch | sed 's/Bitrig.//'`
3471- echo ${UNAME_MACHINE_ARCH}-unknown-bitrig${UNAME_RELEASE}
3472- exit ;;
3473- *:OpenBSD:*:*)
3474- UNAME_MACHINE_ARCH=`arch | sed 's/OpenBSD.//'`
3475- echo ${UNAME_MACHINE_ARCH}-unknown-openbsd${UNAME_RELEASE}
3476- exit ;;
3477- *:ekkoBSD:*:*)
3478- echo ${UNAME_MACHINE}-unknown-ekkobsd${UNAME_RELEASE}
3479- exit ;;
3480- *:SolidBSD:*:*)
3481- echo ${UNAME_MACHINE}-unknown-solidbsd${UNAME_RELEASE}
3482- exit ;;
3483- macppc:MirBSD:*:*)
3484- echo powerpc-unknown-mirbsd${UNAME_RELEASE}
3485- exit ;;
3486- *:MirBSD:*:*)
3487- echo ${UNAME_MACHINE}-unknown-mirbsd${UNAME_RELEASE}
3488- exit ;;
3489- alpha:OSF1:*:*)
3490- case $UNAME_RELEASE in
3491- *4.0)
3492- UNAME_RELEASE=`/usr/sbin/sizer -v | awk '{print $3}'`
3493- ;;
3494- *5.*)
3495- UNAME_RELEASE=`/usr/sbin/sizer -v | awk '{print $4}'`
3496- ;;
3497- esac
3498- # According to Compaq, /usr/sbin/psrinfo has been available on
3499- # OSF/1 and Tru64 systems produced since 1995. I hope that
3500- # covers most systems running today. This code pipes the CPU
3501- # types through head -n 1, so we only detect the type of CPU 0.
3502- ALPHA_CPU_TYPE=`/usr/sbin/psrinfo -v | sed -n -e 's/^ The alpha \(.*\) processor.*$/\1/p' | head -n 1`
3503- case "$ALPHA_CPU_TYPE" in
3504- "EV4 (21064)")
3505- UNAME_MACHINE="alpha" ;;
3506- "EV4.5 (21064)")
3507- UNAME_MACHINE="alpha" ;;
3508- "LCA4 (21066/21068)")
3509- UNAME_MACHINE="alpha" ;;
3510- "EV5 (21164)")
3511- UNAME_MACHINE="alphaev5" ;;
3512- "EV5.6 (21164A)")
3513- UNAME_MACHINE="alphaev56" ;;
3514- "EV5.6 (21164PC)")
3515- UNAME_MACHINE="alphapca56" ;;
3516- "EV5.7 (21164PC)")
3517- UNAME_MACHINE="alphapca57" ;;
3518- "EV6 (21264)")
3519- UNAME_MACHINE="alphaev6" ;;
3520- "EV6.7 (21264A)")
3521- UNAME_MACHINE="alphaev67" ;;
3522- "EV6.8CB (21264C)")
3523- UNAME_MACHINE="alphaev68" ;;
3524- "EV6.8AL (21264B)")
3525- UNAME_MACHINE="alphaev68" ;;
3526- "EV6.8CX (21264D)")
3527- UNAME_MACHINE="alphaev68" ;;
3528- "EV6.9A (21264/EV69A)")
3529- UNAME_MACHINE="alphaev69" ;;
3530- "EV7 (21364)")
3531- UNAME_MACHINE="alphaev7" ;;
3532- "EV7.9 (21364A)")
3533- UNAME_MACHINE="alphaev79" ;;
3534- esac
3535- # A Pn.n version is a patched version.
3536- # A Vn.n version is a released version.
3537- # A Tn.n version is a released field test version.
3538- # A Xn.n version is an unreleased experimental baselevel.
3539- # 1.2 uses "1.2" for uname -r.
3540- echo ${UNAME_MACHINE}-dec-osf`echo ${UNAME_RELEASE} | sed -e 's/^[PVTX]//' | tr 'ABCDEFGHIJKLMNOPQRSTUVWXYZ' 'abcdefghijklmnopqrstuvwxyz'`
3541- # Reset EXIT trap before exiting to avoid spurious non-zero exit code.
3542- exitcode=$?
3543- trap '' 0
3544- exit $exitcode ;;
3545- Alpha\ *:Windows_NT*:*)
3546- # How do we know it's Interix rather than the generic POSIX subsystem?
3547- # Should we change UNAME_MACHINE based on the output of uname instead
3548- # of the specific Alpha model?
3549- echo alpha-pc-interix
3550- exit ;;
3551- 21064:Windows_NT:50:3)
3552- echo alpha-dec-winnt3.5
3553- exit ;;
3554- Amiga*:UNIX_System_V:4.0:*)
3555- echo m68k-unknown-sysv4
3556- exit ;;
3557- *:[Aa]miga[Oo][Ss]:*:*)
3558- echo ${UNAME_MACHINE}-unknown-amigaos
3559- exit ;;
3560- *:[Mm]orph[Oo][Ss]:*:*)
3561- echo ${UNAME_MACHINE}-unknown-morphos
3562- exit ;;
3563- *:OS/390:*:*)
3564- echo i370-ibm-openedition
3565- exit ;;
3566- *:z/VM:*:*)
3567- echo s390-ibm-zvmoe
3568- exit ;;
3569- *:OS400:*:*)
3570- echo powerpc-ibm-os400
3571- exit ;;
3572- arm:RISC*:1.[012]*:*|arm:riscix:1.[012]*:*)
3573- echo arm-acorn-riscix${UNAME_RELEASE}
3574- exit ;;
3575- arm*:riscos:*:*|arm*:RISCOS:*:*)
3576- echo arm-unknown-riscos
3577- exit ;;
3578- SR2?01:HI-UX/MPP:*:* | SR8000:HI-UX/MPP:*:*)
3579- echo hppa1.1-hitachi-hiuxmpp
3580- exit ;;
3581- Pyramid*:OSx*:*:* | MIS*:OSx*:*:* | MIS*:SMP_DC-OSx*:*:*)
3582- # akee@wpdis03.wpafb.af.mil (Earle F. Ake) contributed MIS and NILE.
3583- if test "`(/bin/universe) 2>/dev/null`" = att ; then
3584- echo pyramid-pyramid-sysv3
3585- else
3586- echo pyramid-pyramid-bsd
3587- fi
3588- exit ;;
3589- NILE*:*:*:dcosx)
3590- echo pyramid-pyramid-svr4
3591- exit ;;
3592- DRS?6000:unix:4.0:6*)
3593- echo sparc-icl-nx6
3594- exit ;;
3595- DRS?6000:UNIX_SV:4.2*:7* | DRS?6000:isis:4.2*:7*)
3596- case `/usr/bin/uname -p` in
3597- sparc) echo sparc-icl-nx7; exit ;;
3598- esac ;;
3599- s390x:SunOS:*:*)
3600- echo ${UNAME_MACHINE}-ibm-solaris2`echo ${UNAME_RELEASE}|sed -e 's/[^.]*//'`
3601- exit ;;
3602- sun4H:SunOS:5.*:*)
3603- echo sparc-hal-solaris2`echo ${UNAME_RELEASE}|sed -e 's/[^.]*//'`
3604- exit ;;
3605- sun4*:SunOS:5.*:* | tadpole*:SunOS:5.*:*)
3606- echo sparc-sun-solaris2`echo ${UNAME_RELEASE}|sed -e 's/[^.]*//'`
3607- exit ;;
3608- i86pc:AuroraUX:5.*:* | i86xen:AuroraUX:5.*:*)
3609- echo i386-pc-auroraux${UNAME_RELEASE}
3610- exit ;;
3611- i86pc:SunOS:5.*:* | i86xen:SunOS:5.*:*)
3612- eval $set_cc_for_build
3613- SUN_ARCH="i386"
3614- # If there is a compiler, see if it is configured for 64-bit objects.
3615- # Note that the Sun cc does not turn __LP64__ into 1 like gcc does.
3616- # This test works for both compilers.
3617- if [ "$CC_FOR_BUILD" != 'no_compiler_found' ]; then
3618- if (echo '#ifdef __amd64'; echo IS_64BIT_ARCH; echo '#endif') | \
3619- (CCOPTS= $CC_FOR_BUILD -E - 2>/dev/null) | \
3620- grep IS_64BIT_ARCH >/dev/null
3621- then
3622- SUN_ARCH="x86_64"
3623- fi
3624- fi
3625- echo ${SUN_ARCH}-pc-solaris2`echo ${UNAME_RELEASE}|sed -e 's/[^.]*//'`
3626- exit ;;
3627- sun4*:SunOS:6*:*)
3628- # According to config.sub, this is the proper way to canonicalize
3629- # SunOS6. Hard to guess exactly what SunOS6 will be like, but
3630- # it's likely to be more like Solaris than SunOS4.
3631- echo sparc-sun-solaris3`echo ${UNAME_RELEASE}|sed -e 's/[^.]*//'`
3632- exit ;;
3633- sun4*:SunOS:*:*)
3634- case "`/usr/bin/arch -k`" in
3635- Series*|S4*)
3636- UNAME_RELEASE=`uname -v`
3637- ;;
3638- esac
3639- # Japanese Language versions have a version number like `4.1.3-JL'.
3640- echo sparc-sun-sunos`echo ${UNAME_RELEASE}|sed -e 's/-/_/'`
3641- exit ;;
3642- sun3*:SunOS:*:*)
3643- echo m68k-sun-sunos${UNAME_RELEASE}
3644- exit ;;
3645- sun*:*:4.2BSD:*)
3646- UNAME_RELEASE=`(sed 1q /etc/motd | awk '{print substr($5,1,3)}') 2>/dev/null`
3647- test "x${UNAME_RELEASE}" = "x" && UNAME_RELEASE=3
3648- case "`/bin/arch`" in
3649- sun3)
3650- echo m68k-sun-sunos${UNAME_RELEASE}
3651- ;;
3652- sun4)
3653- echo sparc-sun-sunos${UNAME_RELEASE}
3654- ;;
3655- esac
3656- exit ;;
3657- aushp:SunOS:*:*)
3658- echo sparc-auspex-sunos${UNAME_RELEASE}
3659- exit ;;
3660- # The situation for MiNT is a little confusing. The machine name
3661- # can be virtually everything (everything which is not
3662- # "atarist" or "atariste" at least should have a processor
3663- # > m68000). The system name ranges from "MiNT" over "FreeMiNT"
3664- # to the lowercase version "mint" (or "freemint"). Finally
3665- # the system name "TOS" denotes a system which is actually not
3666- # MiNT. But MiNT is downward compatible to TOS, so this should
3667- # be no problem.
3668- atarist[e]:*MiNT:*:* | atarist[e]:*mint:*:* | atarist[e]:*TOS:*:*)
3669- echo m68k-atari-mint${UNAME_RELEASE}
3670- exit ;;
3671- atari*:*MiNT:*:* | atari*:*mint:*:* | atarist[e]:*TOS:*:*)
3672- echo m68k-atari-mint${UNAME_RELEASE}
3673- exit ;;
3674- *falcon*:*MiNT:*:* | *falcon*:*mint:*:* | *falcon*:*TOS:*:*)
3675- echo m68k-atari-mint${UNAME_RELEASE}
3676- exit ;;
3677- milan*:*MiNT:*:* | milan*:*mint:*:* | *milan*:*TOS:*:*)
3678- echo m68k-milan-mint${UNAME_RELEASE}
3679- exit ;;
3680- hades*:*MiNT:*:* | hades*:*mint:*:* | *hades*:*TOS:*:*)
3681- echo m68k-hades-mint${UNAME_RELEASE}
3682- exit ;;
3683- *:*MiNT:*:* | *:*mint:*:* | *:*TOS:*:*)
3684- echo m68k-unknown-mint${UNAME_RELEASE}
3685- exit ;;
3686- m68k:machten:*:*)
3687- echo m68k-apple-machten${UNAME_RELEASE}
3688- exit ;;
3689- powerpc:machten:*:*)
3690- echo powerpc-apple-machten${UNAME_RELEASE}
3691- exit ;;
3692- RISC*:Mach:*:*)
3693- echo mips-dec-mach_bsd4.3
3694- exit ;;
3695- RISC*:ULTRIX:*:*)
3696- echo mips-dec-ultrix${UNAME_RELEASE}
3697- exit ;;
3698- VAX*:ULTRIX*:*:*)
3699- echo vax-dec-ultrix${UNAME_RELEASE}
3700- exit ;;
3701- 2020:CLIX:*:* | 2430:CLIX:*:*)
3702- echo clipper-intergraph-clix${UNAME_RELEASE}
3703- exit ;;
3704- mips:*:*:UMIPS | mips:*:*:RISCos)
3705- eval $set_cc_for_build
3706- sed 's/^ //' << EOF >$dummy.c
3707-#ifdef __cplusplus
3708-#include <stdio.h> /* for printf() prototype */
3709- int main (int argc, char *argv[]) {
3710-#else
3711- int main (argc, argv) int argc; char *argv[]; {
3712-#endif
3713- #if defined (host_mips) && defined (MIPSEB)
3714- #if defined (SYSTYPE_SYSV)
3715- printf ("mips-mips-riscos%ssysv\n", argv[1]); exit (0);
3716- #endif
3717- #if defined (SYSTYPE_SVR4)
3718- printf ("mips-mips-riscos%ssvr4\n", argv[1]); exit (0);
3719- #endif
3720- #if defined (SYSTYPE_BSD43) || defined(SYSTYPE_BSD)
3721- printf ("mips-mips-riscos%sbsd\n", argv[1]); exit (0);
3722- #endif
3723- #endif
3724- exit (-1);
3725- }
3726-EOF
3727- $CC_FOR_BUILD -o $dummy $dummy.c &&
3728- dummyarg=`echo "${UNAME_RELEASE}" | sed -n 's/\([0-9]*\).*/\1/p'` &&
3729- SYSTEM_NAME=`$dummy $dummyarg` &&
3730- { echo "$SYSTEM_NAME"; exit; }
3731- echo mips-mips-riscos${UNAME_RELEASE}
3732- exit ;;
3733- Motorola:PowerMAX_OS:*:*)
3734- echo powerpc-motorola-powermax
3735- exit ;;
3736- Motorola:*:4.3:PL8-*)
3737- echo powerpc-harris-powermax
3738- exit ;;
3739- Night_Hawk:*:*:PowerMAX_OS | Synergy:PowerMAX_OS:*:*)
3740- echo powerpc-harris-powermax
3741- exit ;;
3742- Night_Hawk:Power_UNIX:*:*)
3743- echo powerpc-harris-powerunix
3744- exit ;;
3745- m88k:CX/UX:7*:*)
3746- echo m88k-harris-cxux7
3747- exit ;;
3748- m88k:*:4*:R4*)
3749- echo m88k-motorola-sysv4
3750- exit ;;
3751- m88k:*:3*:R3*)
3752- echo m88k-motorola-sysv3
3753- exit ;;
3754- AViiON:dgux:*:*)
3755- # DG/UX returns AViiON for all architectures
3756- UNAME_PROCESSOR=`/usr/bin/uname -p`
3757- if [ $UNAME_PROCESSOR = mc88100 ] || [ $UNAME_PROCESSOR = mc88110 ]
3758- then
3759- if [ ${TARGET_BINARY_INTERFACE}x = m88kdguxelfx ] || \
3760- [ ${TARGET_BINARY_INTERFACE}x = x ]
3761- then
3762- echo m88k-dg-dgux${UNAME_RELEASE}
3763- else
3764- echo m88k-dg-dguxbcs${UNAME_RELEASE}
3765- fi
3766- else
3767- echo i586-dg-dgux${UNAME_RELEASE}
3768- fi
3769- exit ;;
3770- M88*:DolphinOS:*:*) # DolphinOS (SVR3)
3771- echo m88k-dolphin-sysv3
3772- exit ;;
3773- M88*:*:R3*:*)
3774- # Delta 88k system running SVR3
3775- echo m88k-motorola-sysv3
3776- exit ;;
3777- XD88*:*:*:*) # Tektronix XD88 system running UTekV (SVR3)
3778- echo m88k-tektronix-sysv3
3779- exit ;;
3780- Tek43[0-9][0-9]:UTek:*:*) # Tektronix 4300 system running UTek (BSD)
3781- echo m68k-tektronix-bsd
3782- exit ;;
3783- *:IRIX*:*:*)
3784- echo mips-sgi-irix`echo ${UNAME_RELEASE}|sed -e 's/-/_/g'`
3785- exit ;;
3786- ????????:AIX?:[12].1:2) # AIX 2.2.1 or AIX 2.1.1 is RT/PC AIX.
3787- echo romp-ibm-aix # uname -m gives an 8 hex-code CPU id
3788- exit ;; # Note that: echo "'`uname -s`'" gives 'AIX '
3789- i*86:AIX:*:*)
3790- echo i386-ibm-aix
3791- exit ;;
3792- ia64:AIX:*:*)
3793- if [ -x /usr/bin/oslevel ] ; then
3794- IBM_REV=`/usr/bin/oslevel`
3795- else
3796- IBM_REV=${UNAME_VERSION}.${UNAME_RELEASE}
3797- fi
3798- echo ${UNAME_MACHINE}-ibm-aix${IBM_REV}
3799- exit ;;
3800- *:AIX:2:3)
3801- if grep bos325 /usr/include/stdio.h >/dev/null 2>&1; then
3802- eval $set_cc_for_build
3803- sed 's/^ //' << EOF >$dummy.c
3804- #include <sys/systemcfg.h>
3805-
3806- main()
3807- {
3808- if (!__power_pc())
3809- exit(1);
3810- puts("powerpc-ibm-aix3.2.5");
3811- exit(0);
3812- }
3813-EOF
3814- if $CC_FOR_BUILD -o $dummy $dummy.c && SYSTEM_NAME=`$dummy`
3815- then
3816- echo "$SYSTEM_NAME"
3817- else
3818- echo rs6000-ibm-aix3.2.5
3819- fi
3820- elif grep bos324 /usr/include/stdio.h >/dev/null 2>&1; then
3821- echo rs6000-ibm-aix3.2.4
3822- else
3823- echo rs6000-ibm-aix3.2
3824- fi
3825- exit ;;
3826- *:AIX:*:[4567])
3827- IBM_CPU_ID=`/usr/sbin/lsdev -C -c processor -S available | sed 1q | awk '{ print $1 }'`
3828- if /usr/sbin/lsattr -El ${IBM_CPU_ID} | grep ' POWER' >/dev/null 2>&1; then
3829- IBM_ARCH=rs6000
3830- else
3831- IBM_ARCH=powerpc
3832- fi
3833- if [ -x /usr/bin/oslevel ] ; then
3834- IBM_REV=`/usr/bin/oslevel`
3835- else
3836- IBM_REV=${UNAME_VERSION}.${UNAME_RELEASE}
3837- fi
3838- echo ${IBM_ARCH}-ibm-aix${IBM_REV}
3839- exit ;;
3840- *:AIX:*:*)
3841- echo rs6000-ibm-aix
3842- exit ;;
3843- ibmrt:4.4BSD:*|romp-ibm:BSD:*)
3844- echo romp-ibm-bsd4.4
3845- exit ;;
3846- ibmrt:*BSD:*|romp-ibm:BSD:*) # covers RT/PC BSD and
3847- echo romp-ibm-bsd${UNAME_RELEASE} # 4.3 with uname added to
3848- exit ;; # report: romp-ibm BSD 4.3
3849- *:BOSX:*:*)
3850- echo rs6000-bull-bosx
3851- exit ;;
3852- DPX/2?00:B.O.S.:*:*)
3853- echo m68k-bull-sysv3
3854- exit ;;
3855- 9000/[34]??:4.3bsd:1.*:*)
3856- echo m68k-hp-bsd
3857- exit ;;
3858- hp300:4.4BSD:*:* | 9000/[34]??:4.3bsd:2.*:*)
3859- echo m68k-hp-bsd4.4
3860- exit ;;
3861- 9000/[34678]??:HP-UX:*:*)
3862- HPUX_REV=`echo ${UNAME_RELEASE}|sed -e 's/[^.]*.[0B]*//'`
3863- case "${UNAME_MACHINE}" in
3864- 9000/31? ) HP_ARCH=m68000 ;;
3865- 9000/[34]?? ) HP_ARCH=m68k ;;
3866- 9000/[678][0-9][0-9])
3867- if [ -x /usr/bin/getconf ]; then
3868- sc_cpu_version=`/usr/bin/getconf SC_CPU_VERSION 2>/dev/null`
3869- sc_kernel_bits=`/usr/bin/getconf SC_KERNEL_BITS 2>/dev/null`
3870- case "${sc_cpu_version}" in
3871- 523) HP_ARCH="hppa1.0" ;; # CPU_PA_RISC1_0
3872- 528) HP_ARCH="hppa1.1" ;; # CPU_PA_RISC1_1
3873- 532) # CPU_PA_RISC2_0
3874- case "${sc_kernel_bits}" in
3875- 32) HP_ARCH="hppa2.0n" ;;
3876- 64) HP_ARCH="hppa2.0w" ;;
3877- '') HP_ARCH="hppa2.0" ;; # HP-UX 10.20
3878- esac ;;
3879- esac
3880- fi
3881- if [ "${HP_ARCH}" = "" ]; then
3882- eval $set_cc_for_build
3883- sed 's/^ //' << EOF >$dummy.c
3884-
3885- #define _HPUX_SOURCE
3886- #include <stdlib.h>
3887- #include <unistd.h>
3888-
3889- int main ()
3890- {
3891- #if defined(_SC_KERNEL_BITS)
3892- long bits = sysconf(_SC_KERNEL_BITS);
3893- #endif
3894- long cpu = sysconf (_SC_CPU_VERSION);
3895-
3896- switch (cpu)
3897- {
3898- case CPU_PA_RISC1_0: puts ("hppa1.0"); break;
3899- case CPU_PA_RISC1_1: puts ("hppa1.1"); break;
3900- case CPU_PA_RISC2_0:
3901- #if defined(_SC_KERNEL_BITS)
3902- switch (bits)
3903- {
3904- case 64: puts ("hppa2.0w"); break;
3905- case 32: puts ("hppa2.0n"); break;
3906- default: puts ("hppa2.0"); break;
3907- } break;
3908- #else /* !defined(_SC_KERNEL_BITS) */
3909- puts ("hppa2.0"); break;
3910- #endif
3911- default: puts ("hppa1.0"); break;
3912- }
3913- exit (0);
3914- }
3915-EOF
3916- (CCOPTS= $CC_FOR_BUILD -o $dummy $dummy.c 2>/dev/null) && HP_ARCH=`$dummy`
3917- test -z "$HP_ARCH" && HP_ARCH=hppa
3918- fi ;;
3919- esac
3920- if [ ${HP_ARCH} = "hppa2.0w" ]
3921- then
3922- eval $set_cc_for_build
3923-
3924- # hppa2.0w-hp-hpux* has a 64-bit kernel and a compiler generating
3925- # 32-bit code. hppa64-hp-hpux* has the same kernel and a compiler
3926- # generating 64-bit code. GNU and HP use different nomenclature:
3927- #
3928- # $ CC_FOR_BUILD=cc ./config.guess
3929- # => hppa2.0w-hp-hpux11.23
3930- # $ CC_FOR_BUILD="cc +DA2.0w" ./config.guess
3931- # => hppa64-hp-hpux11.23
3932-
3933- if echo __LP64__ | (CCOPTS= $CC_FOR_BUILD -E - 2>/dev/null) |
3934- grep -q __LP64__
3935- then
3936- HP_ARCH="hppa2.0w"
3937- else
3938- HP_ARCH="hppa64"
3939- fi
3940- fi
3941- echo ${HP_ARCH}-hp-hpux${HPUX_REV}
3942- exit ;;
3943- ia64:HP-UX:*:*)
3944- HPUX_REV=`echo ${UNAME_RELEASE}|sed -e 's/[^.]*.[0B]*//'`
3945- echo ia64-hp-hpux${HPUX_REV}
3946- exit ;;
3947- 3050*:HI-UX:*:*)
3948- eval $set_cc_for_build
3949- sed 's/^ //' << EOF >$dummy.c
3950- #include <unistd.h>
3951- int
3952- main ()
3953- {
3954- long cpu = sysconf (_SC_CPU_VERSION);
3955- /* The order matters, because CPU_IS_HP_MC68K erroneously returns
3956- true for CPU_PA_RISC1_0. CPU_IS_PA_RISC returns correct
3957- results, however. */
3958- if (CPU_IS_PA_RISC (cpu))
3959- {
3960- switch (cpu)
3961- {
3962- case CPU_PA_RISC1_0: puts ("hppa1.0-hitachi-hiuxwe2"); break;
3963- case CPU_PA_RISC1_1: puts ("hppa1.1-hitachi-hiuxwe2"); break;
3964- case CPU_PA_RISC2_0: puts ("hppa2.0-hitachi-hiuxwe2"); break;
3965- default: puts ("hppa-hitachi-hiuxwe2"); break;
3966- }
3967- }
3968- else if (CPU_IS_HP_MC68K (cpu))
3969- puts ("m68k-hitachi-hiuxwe2");
3970- else puts ("unknown-hitachi-hiuxwe2");
3971- exit (0);
3972- }
3973-EOF
3974- $CC_FOR_BUILD -o $dummy $dummy.c && SYSTEM_NAME=`$dummy` &&
3975- { echo "$SYSTEM_NAME"; exit; }
3976- echo unknown-hitachi-hiuxwe2
3977- exit ;;
3978- 9000/7??:4.3bsd:*:* | 9000/8?[79]:4.3bsd:*:* )
3979- echo hppa1.1-hp-bsd
3980- exit ;;
3981- 9000/8??:4.3bsd:*:*)
3982- echo hppa1.0-hp-bsd
3983- exit ;;
3984- *9??*:MPE/iX:*:* | *3000*:MPE/iX:*:*)
3985- echo hppa1.0-hp-mpeix
3986- exit ;;
3987- hp7??:OSF1:*:* | hp8?[79]:OSF1:*:* )
3988- echo hppa1.1-hp-osf
3989- exit ;;
3990- hp8??:OSF1:*:*)
3991- echo hppa1.0-hp-osf
3992- exit ;;
3993- i*86:OSF1:*:*)
3994- if [ -x /usr/sbin/sysversion ] ; then
3995- echo ${UNAME_MACHINE}-unknown-osf1mk
3996- else
3997- echo ${UNAME_MACHINE}-unknown-osf1
3998- fi
3999- exit ;;
4000- parisc*:Lites*:*:*)
4001- echo hppa1.1-hp-lites
4002- exit ;;
4003- C1*:ConvexOS:*:* | convex:ConvexOS:C1*:*)
4004- echo c1-convex-bsd
4005- exit ;;
4006- C2*:ConvexOS:*:* | convex:ConvexOS:C2*:*)
4007- if getsysinfo -f scalar_acc
4008- then echo c32-convex-bsd
4009- else echo c2-convex-bsd
4010- fi
4011- exit ;;
4012- C34*:ConvexOS:*:* | convex:ConvexOS:C34*:*)
4013- echo c34-convex-bsd
4014- exit ;;
4015- C38*:ConvexOS:*:* | convex:ConvexOS:C38*:*)
4016- echo c38-convex-bsd
4017- exit ;;
4018- C4*:ConvexOS:*:* | convex:ConvexOS:C4*:*)
4019- echo c4-convex-bsd
4020- exit ;;
4021- CRAY*Y-MP:*:*:*)
4022- echo ymp-cray-unicos${UNAME_RELEASE} | sed -e 's/\.[^.]*$/.X/'
4023- exit ;;
4024- CRAY*[A-Z]90:*:*:*)
4025- echo ${UNAME_MACHINE}-cray-unicos${UNAME_RELEASE} \
4026- | sed -e 's/CRAY.*\([A-Z]90\)/\1/' \
4027- -e y/ABCDEFGHIJKLMNOPQRSTUVWXYZ/abcdefghijklmnopqrstuvwxyz/ \
4028- -e 's/\.[^.]*$/.X/'
4029- exit ;;
4030- CRAY*TS:*:*:*)
4031- echo t90-cray-unicos${UNAME_RELEASE} | sed -e 's/\.[^.]*$/.X/'
4032- exit ;;
4033- CRAY*T3E:*:*:*)
4034- echo alphaev5-cray-unicosmk${UNAME_RELEASE} | sed -e 's/\.[^.]*$/.X/'
4035- exit ;;
4036- CRAY*SV1:*:*:*)
4037- echo sv1-cray-unicos${UNAME_RELEASE} | sed -e 's/\.[^.]*$/.X/'
4038- exit ;;
4039- *:UNICOS/mp:*:*)
4040- echo craynv-cray-unicosmp${UNAME_RELEASE} | sed -e 's/\.[^.]*$/.X/'
4041- exit ;;
4042- F30[01]:UNIX_System_V:*:* | F700:UNIX_System_V:*:*)
4043- FUJITSU_PROC=`uname -m | tr 'ABCDEFGHIJKLMNOPQRSTUVWXYZ' 'abcdefghijklmnopqrstuvwxyz'`
4044- FUJITSU_SYS=`uname -p | tr 'ABCDEFGHIJKLMNOPQRSTUVWXYZ' 'abcdefghijklmnopqrstuvwxyz' | sed -e 's/\///'`
4045- FUJITSU_REL=`echo ${UNAME_RELEASE} | sed -e 's/ /_/'`
4046- echo "${FUJITSU_PROC}-fujitsu-${FUJITSU_SYS}${FUJITSU_REL}"
4047- exit ;;
4048- 5000:UNIX_System_V:4.*:*)
4049- FUJITSU_SYS=`uname -p | tr 'ABCDEFGHIJKLMNOPQRSTUVWXYZ' 'abcdefghijklmnopqrstuvwxyz' | sed -e 's/\///'`
4050- FUJITSU_REL=`echo ${UNAME_RELEASE} | tr 'ABCDEFGHIJKLMNOPQRSTUVWXYZ' 'abcdefghijklmnopqrstuvwxyz' | sed -e 's/ /_/'`
4051- echo "sparc-fujitsu-${FUJITSU_SYS}${FUJITSU_REL}"
4052- exit ;;
4053- i*86:BSD/386:*:* | i*86:BSD/OS:*:* | *:Ascend\ Embedded/OS:*:*)
4054- echo ${UNAME_MACHINE}-pc-bsdi${UNAME_RELEASE}
4055- exit ;;
4056- sparc*:BSD/OS:*:*)
4057- echo sparc-unknown-bsdi${UNAME_RELEASE}
4058- exit ;;
4059- *:BSD/OS:*:*)
4060- echo ${UNAME_MACHINE}-unknown-bsdi${UNAME_RELEASE}
4061- exit ;;
4062- *:FreeBSD:*:*)
4063- UNAME_PROCESSOR=`/usr/bin/uname -p`
4064- case ${UNAME_PROCESSOR} in
4065- amd64)
4066- echo x86_64-unknown-freebsd`echo ${UNAME_RELEASE}|sed -e 's/[-(].*//'` ;;
4067- *)
4068- echo ${UNAME_PROCESSOR}-unknown-freebsd`echo ${UNAME_RELEASE}|sed -e 's/[-(].*//'` ;;
4069- esac
4070- exit ;;
4071- i*:CYGWIN*:*)
4072- echo ${UNAME_MACHINE}-pc-cygwin
4073- exit ;;
4074- *:MINGW64*:*)
4075- echo ${UNAME_MACHINE}-pc-mingw64
4076- exit ;;
4077- *:MINGW*:*)
4078- echo ${UNAME_MACHINE}-pc-mingw32
4079- exit ;;
4080- i*:MSYS*:*)
4081- echo ${UNAME_MACHINE}-pc-msys
4082- exit ;;
4083- i*:windows32*:*)
4084- # uname -m includes "-pc" on this system.
4085- echo ${UNAME_MACHINE}-mingw32
4086- exit ;;
4087- i*:PW*:*)
4088- echo ${UNAME_MACHINE}-pc-pw32
4089- exit ;;
4090- *:Interix*:*)
4091- case ${UNAME_MACHINE} in
4092- x86)
4093- echo i586-pc-interix${UNAME_RELEASE}
4094- exit ;;
4095- authenticamd | genuineintel | EM64T)
4096- echo x86_64-unknown-interix${UNAME_RELEASE}
4097- exit ;;
4098- IA64)
4099- echo ia64-unknown-interix${UNAME_RELEASE}
4100- exit ;;
4101- esac ;;
4102- [345]86:Windows_95:* | [345]86:Windows_98:* | [345]86:Windows_NT:*)
4103- echo i${UNAME_MACHINE}-pc-mks
4104- exit ;;
4105- 8664:Windows_NT:*)
4106- echo x86_64-pc-mks
4107- exit ;;
4108- i*:Windows_NT*:* | Pentium*:Windows_NT*:*)
4109- # How do we know it's Interix rather than the generic POSIX subsystem?
4110- # It also conflicts with pre-2.0 versions of AT&T UWIN. Should we
4111- # UNAME_MACHINE based on the output of uname instead of i386?
4112- echo i586-pc-interix
4113- exit ;;
4114- i*:UWIN*:*)
4115- echo ${UNAME_MACHINE}-pc-uwin
4116- exit ;;
4117- amd64:CYGWIN*:*:* | x86_64:CYGWIN*:*:*)
4118- echo x86_64-unknown-cygwin
4119- exit ;;
4120- p*:CYGWIN*:*)
4121- echo powerpcle-unknown-cygwin
4122- exit ;;
4123- prep*:SunOS:5.*:*)
4124- echo powerpcle-unknown-solaris2`echo ${UNAME_RELEASE}|sed -e 's/[^.]*//'`
4125- exit ;;
4126- *:GNU:*:*)
4127- # the GNU system
4128- echo `echo ${UNAME_MACHINE}|sed -e 's,[-/].*$,,'`-unknown-${LIBC}`echo ${UNAME_RELEASE}|sed -e 's,/.*$,,'`
4129- exit ;;
4130- *:GNU/*:*:*)
4131- # other systems with GNU libc and userland
4132- echo ${UNAME_MACHINE}-unknown-`echo ${UNAME_SYSTEM} | sed 's,^[^/]*/,,' | tr '[A-Z]' '[a-z]'``echo ${UNAME_RELEASE}|sed -e 's/[-(].*//'`-${LIBC}
4133- exit ;;
4134- i*86:Minix:*:*)
4135- echo ${UNAME_MACHINE}-pc-minix
4136- exit ;;
4137- aarch64:Linux:*:*)
4138- echo ${UNAME_MACHINE}-unknown-linux-${LIBC}
4139- exit ;;
4140- aarch64_be:Linux:*:*)
4141- UNAME_MACHINE=aarch64_be
4142- echo ${UNAME_MACHINE}-unknown-linux-${LIBC}
4143- exit ;;
4144- alpha:Linux:*:*)
4145- case `sed -n '/^cpu model/s/^.*: \(.*\)/\1/p' < /proc/cpuinfo` in
4146- EV5) UNAME_MACHINE=alphaev5 ;;
4147- EV56) UNAME_MACHINE=alphaev56 ;;
4148- PCA56) UNAME_MACHINE=alphapca56 ;;
4149- PCA57) UNAME_MACHINE=alphapca56 ;;
4150- EV6) UNAME_MACHINE=alphaev6 ;;
4151- EV67) UNAME_MACHINE=alphaev67 ;;
4152- EV68*) UNAME_MACHINE=alphaev68 ;;
4153- esac
4154- objdump --private-headers /bin/sh | grep -q ld.so.1
4155- if test "$?" = 0 ; then LIBC="gnulibc1" ; fi
4156- echo ${UNAME_MACHINE}-unknown-linux-${LIBC}
4157- exit ;;
4158- arc:Linux:*:* | arceb:Linux:*:*)
4159- echo ${UNAME_MACHINE}-unknown-linux-${LIBC}
4160- exit ;;
4161- arm*:Linux:*:*)
4162- eval $set_cc_for_build
4163- if echo __ARM_EABI__ | $CC_FOR_BUILD -E - 2>/dev/null \
4164- | grep -q __ARM_EABI__
4165- then
4166- echo ${UNAME_MACHINE}-unknown-linux-${LIBC}
4167- else
4168- if echo __ARM_PCS_VFP | $CC_FOR_BUILD -E - 2>/dev/null \
4169- | grep -q __ARM_PCS_VFP
4170- then
4171- echo ${UNAME_MACHINE}-unknown-linux-${LIBC}eabi
4172- else
4173- echo ${UNAME_MACHINE}-unknown-linux-${LIBC}eabihf
4174- fi
4175- fi
4176- exit ;;
4177- avr32*:Linux:*:*)
4178- echo ${UNAME_MACHINE}-unknown-linux-${LIBC}
4179- exit ;;
4180- cris:Linux:*:*)
4181- echo ${UNAME_MACHINE}-axis-linux-${LIBC}
4182- exit ;;
4183- crisv32:Linux:*:*)
4184- echo ${UNAME_MACHINE}-axis-linux-${LIBC}
4185- exit ;;
4186- frv:Linux:*:*)
4187- echo ${UNAME_MACHINE}-unknown-linux-${LIBC}
4188- exit ;;
4189- hexagon:Linux:*:*)
4190- echo ${UNAME_MACHINE}-unknown-linux-${LIBC}
4191- exit ;;
4192- i*86:Linux:*:*)
4193- echo ${UNAME_MACHINE}-pc-linux-${LIBC}
4194- exit ;;
4195- ia64:Linux:*:*)
4196- echo ${UNAME_MACHINE}-unknown-linux-${LIBC}
4197- exit ;;
4198- m32r*:Linux:*:*)
4199- echo ${UNAME_MACHINE}-unknown-linux-${LIBC}
4200- exit ;;
4201- m68*:Linux:*:*)
4202- echo ${UNAME_MACHINE}-unknown-linux-${LIBC}
4203- exit ;;
4204- mips:Linux:*:* | mips64:Linux:*:*)
4205- eval $set_cc_for_build
4206- sed 's/^ //' << EOF >$dummy.c
4207- #undef CPU
4208- #undef ${UNAME_MACHINE}
4209- #undef ${UNAME_MACHINE}el
4210- #if defined(__MIPSEL__) || defined(__MIPSEL) || defined(_MIPSEL) || defined(MIPSEL)
4211- CPU=${UNAME_MACHINE}el
4212- #else
4213- #if defined(__MIPSEB__) || defined(__MIPSEB) || defined(_MIPSEB) || defined(MIPSEB)
4214- CPU=${UNAME_MACHINE}
4215- #else
4216- CPU=
4217- #endif
4218- #endif
4219-EOF
4220- eval `$CC_FOR_BUILD -E $dummy.c 2>/dev/null | grep '^CPU'`
4221- test x"${CPU}" != x && { echo "${CPU}-unknown-linux-${LIBC}"; exit; }
4222- ;;
4223- or1k:Linux:*:*)
4224- echo ${UNAME_MACHINE}-unknown-linux-${LIBC}
4225- exit ;;
4226- or32:Linux:*:*)
4227- echo ${UNAME_MACHINE}-unknown-linux-${LIBC}
4228- exit ;;
4229- padre:Linux:*:*)
4230- echo sparc-unknown-linux-${LIBC}
4231- exit ;;
4232- parisc64:Linux:*:* | hppa64:Linux:*:*)
4233- echo hppa64-unknown-linux-${LIBC}
4234- exit ;;
4235- parisc:Linux:*:* | hppa:Linux:*:*)
4236- # Look for CPU level
4237- case `grep '^cpu[^a-z]*:' /proc/cpuinfo 2>/dev/null | cut -d' ' -f2` in
4238- PA7*) echo hppa1.1-unknown-linux-${LIBC} ;;
4239- PA8*) echo hppa2.0-unknown-linux-${LIBC} ;;
4240- *) echo hppa-unknown-linux-${LIBC} ;;
4241- esac
4242- exit ;;
4243- ppc64:Linux:*:*)
4244- echo powerpc64-unknown-linux-${LIBC}
4245- exit ;;
4246- ppc:Linux:*:*)
4247- echo powerpc-unknown-linux-${LIBC}
4248- exit ;;
4249- s390:Linux:*:* | s390x:Linux:*:*)
4250- echo ${UNAME_MACHINE}-ibm-linux-${LIBC}
4251- exit ;;
4252- sh64*:Linux:*:*)
4253- echo ${UNAME_MACHINE}-unknown-linux-${LIBC}
4254- exit ;;
4255- sh*:Linux:*:*)
4256- echo ${UNAME_MACHINE}-unknown-linux-${LIBC}
4257- exit ;;
4258- sparc:Linux:*:* | sparc64:Linux:*:*)
4259- echo ${UNAME_MACHINE}-unknown-linux-${LIBC}
4260- exit ;;
4261- tile*:Linux:*:*)
4262- echo ${UNAME_MACHINE}-unknown-linux-${LIBC}
4263- exit ;;
4264- vax:Linux:*:*)
4265- echo ${UNAME_MACHINE}-dec-linux-${LIBC}
4266- exit ;;
4267- x86_64:Linux:*:*)
4268- echo ${UNAME_MACHINE}-unknown-linux-${LIBC}
4269- exit ;;
4270- xtensa*:Linux:*:*)
4271- echo ${UNAME_MACHINE}-unknown-linux-${LIBC}
4272- exit ;;
4273- i*86:DYNIX/ptx:4*:*)
4274- # ptx 4.0 does uname -s correctly, with DYNIX/ptx in there.
4275- # earlier versions are messed up and put the nodename in both
4276- # sysname and nodename.
4277- echo i386-sequent-sysv4
4278- exit ;;
4279- i*86:UNIX_SV:4.2MP:2.*)
4280- # Unixware is an offshoot of SVR4, but it has its own version
4281- # number series starting with 2...
4282- # I am not positive that other SVR4 systems won't match this,
4283- # I just have to hope. -- rms.
4284- # Use sysv4.2uw... so that sysv4* matches it.
4285- echo ${UNAME_MACHINE}-pc-sysv4.2uw${UNAME_VERSION}
4286- exit ;;
4287- i*86:OS/2:*:*)
4288- # If we were able to find `uname', then EMX Unix compatibility
4289- # is probably installed.
4290- echo ${UNAME_MACHINE}-pc-os2-emx
4291- exit ;;
4292- i*86:XTS-300:*:STOP)
4293- echo ${UNAME_MACHINE}-unknown-stop
4294- exit ;;
4295- i*86:atheos:*:*)
4296- echo ${UNAME_MACHINE}-unknown-atheos
4297- exit ;;
4298- i*86:syllable:*:*)
4299- echo ${UNAME_MACHINE}-pc-syllable
4300- exit ;;
4301- i*86:LynxOS:2.*:* | i*86:LynxOS:3.[01]*:* | i*86:LynxOS:4.[02]*:*)
4302- echo i386-unknown-lynxos${UNAME_RELEASE}
4303- exit ;;
4304- i*86:*DOS:*:*)
4305- echo ${UNAME_MACHINE}-pc-msdosdjgpp
4306- exit ;;
4307- i*86:*:4.*:* | i*86:SYSTEM_V:4.*:*)
4308- UNAME_REL=`echo ${UNAME_RELEASE} | sed 's/\/MP$//'`
4309- if grep Novell /usr/include/link.h >/dev/null 2>/dev/null; then
4310- echo ${UNAME_MACHINE}-univel-sysv${UNAME_REL}
4311- else
4312- echo ${UNAME_MACHINE}-pc-sysv${UNAME_REL}
4313- fi
4314- exit ;;
4315- i*86:*:5:[678]*)
4316- # UnixWare 7.x, OpenUNIX and OpenServer 6.
4317- case `/bin/uname -X | grep "^Machine"` in
4318- *486*) UNAME_MACHINE=i486 ;;
4319- *Pentium) UNAME_MACHINE=i586 ;;
4320- *Pent*|*Celeron) UNAME_MACHINE=i686 ;;
4321- esac
4322- echo ${UNAME_MACHINE}-unknown-sysv${UNAME_RELEASE}${UNAME_SYSTEM}${UNAME_VERSION}
4323- exit ;;
4324- i*86:*:3.2:*)
4325- if test -f /usr/options/cb.name; then
4326- UNAME_REL=`sed -n 's/.*Version //p' </usr/options/cb.name`
4327- echo ${UNAME_MACHINE}-pc-isc$UNAME_REL
4328- elif /bin/uname -X 2>/dev/null >/dev/null ; then
4329- UNAME_REL=`(/bin/uname -X|grep Release|sed -e 's/.*= //')`
4330- (/bin/uname -X|grep i80486 >/dev/null) && UNAME_MACHINE=i486
4331- (/bin/uname -X|grep '^Machine.*Pentium' >/dev/null) \
4332- && UNAME_MACHINE=i586
4333- (/bin/uname -X|grep '^Machine.*Pent *II' >/dev/null) \
4334- && UNAME_MACHINE=i686
4335- (/bin/uname -X|grep '^Machine.*Pentium Pro' >/dev/null) \
4336- && UNAME_MACHINE=i686
4337- echo ${UNAME_MACHINE}-pc-sco$UNAME_REL
4338- else
4339- echo ${UNAME_MACHINE}-pc-sysv32
4340- fi
4341- exit ;;
4342- pc:*:*:*)
4343- # Left here for compatibility:
4344- # uname -m prints for DJGPP always 'pc', but it prints nothing about
4345- # the processor, so we play safe by assuming i586.
4346- # Note: whatever this is, it MUST be the same as what config.sub
4347- # prints for the "djgpp" host, or else GDB configury will decide that
4348- # this is a cross-build.
4349- echo i586-pc-msdosdjgpp
4350- exit ;;
4351- Intel:Mach:3*:*)
4352- echo i386-pc-mach3
4353- exit ;;
4354- paragon:*:*:*)
4355- echo i860-intel-osf1
4356- exit ;;
4357- i860:*:4.*:*) # i860-SVR4
4358- if grep Stardent /usr/include/sys/uadmin.h >/dev/null 2>&1 ; then
4359- echo i860-stardent-sysv${UNAME_RELEASE} # Stardent Vistra i860-SVR4
4360- else # Add other i860-SVR4 vendors below as they are discovered.
4361- echo i860-unknown-sysv${UNAME_RELEASE} # Unknown i860-SVR4
4362- fi
4363- exit ;;
4364- mini*:CTIX:SYS*5:*)
4365- # "miniframe"
4366- echo m68010-convergent-sysv
4367- exit ;;
4368- mc68k:UNIX:SYSTEM5:3.51m)
4369- echo m68k-convergent-sysv
4370- exit ;;
4371- M680?0:D-NIX:5.3:*)
4372- echo m68k-diab-dnix
4373- exit ;;
4374- M68*:*:R3V[5678]*:*)
4375- test -r /sysV68 && { echo 'm68k-motorola-sysv'; exit; } ;;
4376- 3[345]??:*:4.0:3.0 | 3[34]??A:*:4.0:3.0 | 3[34]??,*:*:4.0:3.0 | 3[34]??/*:*:4.0:3.0 | 4400:*:4.0:3.0 | 4850:*:4.0:3.0 | SKA40:*:4.0:3.0 | SDS2:*:4.0:3.0 | SHG2:*:4.0:3.0 | S7501*:*:4.0:3.0)
4377- OS_REL=''
4378- test -r /etc/.relid \
4379- && OS_REL=.`sed -n 's/[^ ]* [^ ]* \([0-9][0-9]\).*/\1/p' < /etc/.relid`
4380- /bin/uname -p 2>/dev/null | grep 86 >/dev/null \
4381- && { echo i486-ncr-sysv4.3${OS_REL}; exit; }
4382- /bin/uname -p 2>/dev/null | /bin/grep entium >/dev/null \
4383- && { echo i586-ncr-sysv4.3${OS_REL}; exit; } ;;
4384- 3[34]??:*:4.0:* | 3[34]??,*:*:4.0:*)
4385- /bin/uname -p 2>/dev/null | grep 86 >/dev/null \
4386- && { echo i486-ncr-sysv4; exit; } ;;
4387- NCR*:*:4.2:* | MPRAS*:*:4.2:*)
4388- OS_REL='.3'
4389- test -r /etc/.relid \
4390- && OS_REL=.`sed -n 's/[^ ]* [^ ]* \([0-9][0-9]\).*/\1/p' < /etc/.relid`
4391- /bin/uname -p 2>/dev/null | grep 86 >/dev/null \
4392- && { echo i486-ncr-sysv4.3${OS_REL}; exit; }
4393- /bin/uname -p 2>/dev/null | /bin/grep entium >/dev/null \
4394- && { echo i586-ncr-sysv4.3${OS_REL}; exit; }
4395- /bin/uname -p 2>/dev/null | /bin/grep pteron >/dev/null \
4396- && { echo i586-ncr-sysv4.3${OS_REL}; exit; } ;;
4397- m68*:LynxOS:2.*:* | m68*:LynxOS:3.0*:*)
4398- echo m68k-unknown-lynxos${UNAME_RELEASE}
4399- exit ;;
4400- mc68030:UNIX_System_V:4.*:*)
4401- echo m68k-atari-sysv4
4402- exit ;;
4403- TSUNAMI:LynxOS:2.*:*)
4404- echo sparc-unknown-lynxos${UNAME_RELEASE}
4405- exit ;;
4406- rs6000:LynxOS:2.*:*)
4407- echo rs6000-unknown-lynxos${UNAME_RELEASE}
4408- exit ;;
4409- PowerPC:LynxOS:2.*:* | PowerPC:LynxOS:3.[01]*:* | PowerPC:LynxOS:4.[02]*:*)
4410- echo powerpc-unknown-lynxos${UNAME_RELEASE}
4411- exit ;;
4412- SM[BE]S:UNIX_SV:*:*)
4413- echo mips-dde-sysv${UNAME_RELEASE}
4414- exit ;;
4415- RM*:ReliantUNIX-*:*:*)
4416- echo mips-sni-sysv4
4417- exit ;;
4418- RM*:SINIX-*:*:*)
4419- echo mips-sni-sysv4
4420- exit ;;
4421- *:SINIX-*:*:*)
4422- if uname -p 2>/dev/null >/dev/null ; then
4423- UNAME_MACHINE=`(uname -p) 2>/dev/null`
4424- echo ${UNAME_MACHINE}-sni-sysv4
4425- else
4426- echo ns32k-sni-sysv
4427- fi
4428- exit ;;
4429- PENTIUM:*:4.0*:*) # Unisys `ClearPath HMP IX 4000' SVR4/MP effort
4430- # says <Richard.M.Bartel@ccMail.Census.GOV>
4431- echo i586-unisys-sysv4
4432- exit ;;
4433- *:UNIX_System_V:4*:FTX*)
4434- # From Gerald Hewes <hewes@openmarket.com>.
4435- # How about differentiating between stratus architectures? -djm
4436- echo hppa1.1-stratus-sysv4
4437- exit ;;
4438- *:*:*:FTX*)
4439- # From seanf@swdc.stratus.com.
4440- echo i860-stratus-sysv4
4441- exit ;;
4442- i*86:VOS:*:*)
4443- # From Paul.Green@stratus.com.
4444- echo ${UNAME_MACHINE}-stratus-vos
4445- exit ;;
4446- *:VOS:*:*)
4447- # From Paul.Green@stratus.com.
4448- echo hppa1.1-stratus-vos
4449- exit ;;
4450- mc68*:A/UX:*:*)
4451- echo m68k-apple-aux${UNAME_RELEASE}
4452- exit ;;
4453- news*:NEWS-OS:6*:*)
4454- echo mips-sony-newsos6
4455- exit ;;
4456- R[34]000:*System_V*:*:* | R4000:UNIX_SYSV:*:* | R*000:UNIX_SV:*:*)
4457- if [ -d /usr/nec ]; then
4458- echo mips-nec-sysv${UNAME_RELEASE}
4459- else
4460- echo mips-unknown-sysv${UNAME_RELEASE}
4461- fi
4462- exit ;;
4463- BeBox:BeOS:*:*) # BeOS running on hardware made by Be, PPC only.
4464- echo powerpc-be-beos
4465- exit ;;
4466- BeMac:BeOS:*:*) # BeOS running on Mac or Mac clone, PPC only.
4467- echo powerpc-apple-beos
4468- exit ;;
4469- BePC:BeOS:*:*) # BeOS running on Intel PC compatible.
4470- echo i586-pc-beos
4471- exit ;;
4472- BePC:Haiku:*:*) # Haiku running on Intel PC compatible.
4473- echo i586-pc-haiku
4474- exit ;;
4475- x86_64:Haiku:*:*)
4476- echo x86_64-unknown-haiku
4477- exit ;;
4478- SX-4:SUPER-UX:*:*)
4479- echo sx4-nec-superux${UNAME_RELEASE}
4480- exit ;;
4481- SX-5:SUPER-UX:*:*)
4482- echo sx5-nec-superux${UNAME_RELEASE}
4483- exit ;;
4484- SX-6:SUPER-UX:*:*)
4485- echo sx6-nec-superux${UNAME_RELEASE}
4486- exit ;;
4487- SX-7:SUPER-UX:*:*)
4488- echo sx7-nec-superux${UNAME_RELEASE}
4489- exit ;;
4490- SX-8:SUPER-UX:*:*)
4491- echo sx8-nec-superux${UNAME_RELEASE}
4492- exit ;;
4493- SX-8R:SUPER-UX:*:*)
4494- echo sx8r-nec-superux${UNAME_RELEASE}
4495- exit ;;
4496- Power*:Rhapsody:*:*)
4497- echo powerpc-apple-rhapsody${UNAME_RELEASE}
4498- exit ;;
4499- *:Rhapsody:*:*)
4500- echo ${UNAME_MACHINE}-apple-rhapsody${UNAME_RELEASE}
4501- exit ;;
4502- *:Darwin:*:*)
4503- UNAME_PROCESSOR=`uname -p` || UNAME_PROCESSOR=unknown
4504- eval $set_cc_for_build
4505- if test "$UNAME_PROCESSOR" = unknown ; then
4506- UNAME_PROCESSOR=powerpc
4507- fi
4508- if [ "$CC_FOR_BUILD" != 'no_compiler_found' ]; then
4509- if (echo '#ifdef __LP64__'; echo IS_64BIT_ARCH; echo '#endif') | \
4510- (CCOPTS= $CC_FOR_BUILD -E - 2>/dev/null) | \
4511- grep IS_64BIT_ARCH >/dev/null
4512- then
4513- case $UNAME_PROCESSOR in
4514- i386) UNAME_PROCESSOR=x86_64 ;;
4515- powerpc) UNAME_PROCESSOR=powerpc64 ;;
4516- esac
4517- fi
4518- fi
4519- echo ${UNAME_PROCESSOR}-apple-darwin${UNAME_RELEASE}
4520- exit ;;
4521- *:procnto*:*:* | *:QNX:[0123456789]*:*)
4522- UNAME_PROCESSOR=`uname -p`
4523- if test "$UNAME_PROCESSOR" = "x86"; then
4524- UNAME_PROCESSOR=i386
4525- UNAME_MACHINE=pc
4526- fi
4527- echo ${UNAME_PROCESSOR}-${UNAME_MACHINE}-nto-qnx${UNAME_RELEASE}
4528- exit ;;
4529- *:QNX:*:4*)
4530- echo i386-pc-qnx
4531- exit ;;
4532- NEO-?:NONSTOP_KERNEL:*:*)
4533- echo neo-tandem-nsk${UNAME_RELEASE}
4534- exit ;;
4535- NSE-*:NONSTOP_KERNEL:*:*)
4536- echo nse-tandem-nsk${UNAME_RELEASE}
4537- exit ;;
4538- NSR-?:NONSTOP_KERNEL:*:*)
4539- echo nsr-tandem-nsk${UNAME_RELEASE}
4540- exit ;;
4541- *:NonStop-UX:*:*)
4542- echo mips-compaq-nonstopux
4543- exit ;;
4544- BS2000:POSIX*:*:*)
4545- echo bs2000-siemens-sysv
4546- exit ;;
4547- DS/*:UNIX_System_V:*:*)
4548- echo ${UNAME_MACHINE}-${UNAME_SYSTEM}-${UNAME_RELEASE}
4549- exit ;;
4550- *:Plan9:*:*)
4551- # "uname -m" is not consistent, so use $cputype instead. 386
4552- # is converted to i386 for consistency with other x86
4553- # operating systems.
4554- if test "$cputype" = "386"; then
4555- UNAME_MACHINE=i386
4556- else
4557- UNAME_MACHINE="$cputype"
4558- fi
4559- echo ${UNAME_MACHINE}-unknown-plan9
4560- exit ;;
4561- *:TOPS-10:*:*)
4562- echo pdp10-unknown-tops10
4563- exit ;;
4564- *:TENEX:*:*)
4565- echo pdp10-unknown-tenex
4566- exit ;;
4567- KS10:TOPS-20:*:* | KL10:TOPS-20:*:* | TYPE4:TOPS-20:*:*)
4568- echo pdp10-dec-tops20
4569- exit ;;
4570- XKL-1:TOPS-20:*:* | TYPE5:TOPS-20:*:*)
4571- echo pdp10-xkl-tops20
4572- exit ;;
4573- *:TOPS-20:*:*)
4574- echo pdp10-unknown-tops20
4575- exit ;;
4576- *:ITS:*:*)
4577- echo pdp10-unknown-its
4578- exit ;;
4579- SEI:*:*:SEIUX)
4580- echo mips-sei-seiux${UNAME_RELEASE}
4581- exit ;;
4582- *:DragonFly:*:*)
4583- echo ${UNAME_MACHINE}-unknown-dragonfly`echo ${UNAME_RELEASE}|sed -e 's/[-(].*//'`
4584- exit ;;
4585- *:*VMS:*:*)
4586- UNAME_MACHINE=`(uname -p) 2>/dev/null`
4587- case "${UNAME_MACHINE}" in
4588- A*) echo alpha-dec-vms ; exit ;;
4589- I*) echo ia64-dec-vms ; exit ;;
4590- V*) echo vax-dec-vms ; exit ;;
4591- esac ;;
4592- *:XENIX:*:SysV)
4593- echo i386-pc-xenix
4594- exit ;;
4595- i*86:skyos:*:*)
4596- echo ${UNAME_MACHINE}-pc-skyos`echo ${UNAME_RELEASE}` | sed -e 's/ .*$//'
4597- exit ;;
4598- i*86:rdos:*:*)
4599- echo ${UNAME_MACHINE}-pc-rdos
4600- exit ;;
4601- i*86:AROS:*:*)
4602- echo ${UNAME_MACHINE}-pc-aros
4603- exit ;;
4604- x86_64:VMkernel:*:*)
4605- echo ${UNAME_MACHINE}-unknown-esx
4606- exit ;;
4607-esac
4608-
4609-eval $set_cc_for_build
4610-cat >$dummy.c <<EOF
4611-#ifdef _SEQUENT_
4612-# include <sys/types.h>
4613-# include <sys/utsname.h>
4614-#endif
4615-main ()
4616-{
4617-#if defined (sony)
4618-#if defined (MIPSEB)
4619- /* BFD wants "bsd" instead of "newsos". Perhaps BFD should be changed,
4620- I don't know.... */
4621- printf ("mips-sony-bsd\n"); exit (0);
4622-#else
4623-#include <sys/param.h>
4624- printf ("m68k-sony-newsos%s\n",
4625-#ifdef NEWSOS4
4626- "4"
4627-#else
4628- ""
4629-#endif
4630- ); exit (0);
4631-#endif
4632-#endif
4633-
4634-#if defined (__arm) && defined (__acorn) && defined (__unix)
4635- printf ("arm-acorn-riscix\n"); exit (0);
4636-#endif
4637-
4638-#if defined (hp300) && !defined (hpux)
4639- printf ("m68k-hp-bsd\n"); exit (0);
4640-#endif
4641-
4642-#if defined (NeXT)
4643-#if !defined (__ARCHITECTURE__)
4644-#define __ARCHITECTURE__ "m68k"
4645-#endif
4646- int version;
4647- version=`(hostinfo | sed -n 's/.*NeXT Mach \([0-9]*\).*/\1/p') 2>/dev/null`;
4648- if (version < 4)
4649- printf ("%s-next-nextstep%d\n", __ARCHITECTURE__, version);
4650- else
4651- printf ("%s-next-openstep%d\n", __ARCHITECTURE__, version);
4652- exit (0);
4653-#endif
4654-
4655-#if defined (MULTIMAX) || defined (n16)
4656-#if defined (UMAXV)
4657- printf ("ns32k-encore-sysv\n"); exit (0);
4658-#else
4659-#if defined (CMU)
4660- printf ("ns32k-encore-mach\n"); exit (0);
4661-#else
4662- printf ("ns32k-encore-bsd\n"); exit (0);
4663-#endif
4664-#endif
4665-#endif
4666-
4667-#if defined (__386BSD__)
4668- printf ("i386-pc-bsd\n"); exit (0);
4669-#endif
4670-
4671-#if defined (sequent)
4672-#if defined (i386)
4673- printf ("i386-sequent-dynix\n"); exit (0);
4674-#endif
4675-#if defined (ns32000)
4676- printf ("ns32k-sequent-dynix\n"); exit (0);
4677-#endif
4678-#endif
4679-
4680-#if defined (_SEQUENT_)
4681- struct utsname un;
4682-
4683- uname(&un);
4684-
4685- if (strncmp(un.version, "V2", 2) == 0) {
4686- printf ("i386-sequent-ptx2\n"); exit (0);
4687- }
4688- if (strncmp(un.version, "V1", 2) == 0) { /* XXX is V1 correct? */
4689- printf ("i386-sequent-ptx1\n"); exit (0);
4690- }
4691- printf ("i386-sequent-ptx\n"); exit (0);
4692-
4693-#endif
4694-
4695-#if defined (vax)
4696-# if !defined (ultrix)
4697-# include <sys/param.h>
4698-# if defined (BSD)
4699-# if BSD == 43
4700- printf ("vax-dec-bsd4.3\n"); exit (0);
4701-# else
4702-# if BSD == 199006
4703- printf ("vax-dec-bsd4.3reno\n"); exit (0);
4704-# else
4705- printf ("vax-dec-bsd\n"); exit (0);
4706-# endif
4707-# endif
4708-# else
4709- printf ("vax-dec-bsd\n"); exit (0);
4710-# endif
4711-# else
4712- printf ("vax-dec-ultrix\n"); exit (0);
4713-# endif
4714-#endif
4715-
4716-#if defined (alliant) && defined (i860)
4717- printf ("i860-alliant-bsd\n"); exit (0);
4718-#endif
4719-
4720- exit (1);
4721-}
4722-EOF
4723-
4724-$CC_FOR_BUILD -o $dummy $dummy.c 2>/dev/null && SYSTEM_NAME=`$dummy` &&
4725- { echo "$SYSTEM_NAME"; exit; }
4726-
4727-# Apollos put the system type in the environment.
4728-
4729-test -d /usr/apollo && { echo ${ISP}-apollo-${SYSTYPE}; exit; }
4730-
4731-# Convex versions that predate uname can use getsysinfo(1)
4732-
4733-if [ -x /usr/convex/getsysinfo ]
4734-then
4735- case `getsysinfo -f cpu_type` in
4736- c1*)
4737- echo c1-convex-bsd
4738- exit ;;
4739- c2*)
4740- if getsysinfo -f scalar_acc
4741- then echo c32-convex-bsd
4742- else echo c2-convex-bsd
4743- fi
4744- exit ;;
4745- c34*)
4746- echo c34-convex-bsd
4747- exit ;;
4748- c38*)
4749- echo c38-convex-bsd
4750- exit ;;
4751- c4*)
4752- echo c4-convex-bsd
4753- exit ;;
4754- esac
4755-fi
4756-
4757-cat >&2 <<EOF
4758-$0: unable to guess system type
4759-
4760-This script, last modified $timestamp, has failed to recognize
4761-the operating system you are using. It is advised that you
4762-download the most up to date version of the config scripts from
4763-
4764- http://git.savannah.gnu.org/gitweb/?p=config.git;a=blob_plain;f=config.guess;hb=HEAD
4765-and
4766- http://git.savannah.gnu.org/gitweb/?p=config.git;a=blob_plain;f=config.sub;hb=HEAD
4767-
4768-If the version you run ($0) is already up to date, please
4769-send the following data and any information you think might be
4770-pertinent to <config-patches@gnu.org> in order to provide the needed
4771-information to handle your system.
4772-
4773-config.guess timestamp = $timestamp
4774-
4775-uname -m = `(uname -m) 2>/dev/null || echo unknown`
4776-uname -r = `(uname -r) 2>/dev/null || echo unknown`
4777-uname -s = `(uname -s) 2>/dev/null || echo unknown`
4778-uname -v = `(uname -v) 2>/dev/null || echo unknown`
4779-
4780-/usr/bin/uname -p = `(/usr/bin/uname -p) 2>/dev/null`
4781-/bin/uname -X = `(/bin/uname -X) 2>/dev/null`
4782-
4783-hostinfo = `(hostinfo) 2>/dev/null`
4784-/bin/universe = `(/bin/universe) 2>/dev/null`
4785-/usr/bin/arch -k = `(/usr/bin/arch -k) 2>/dev/null`
4786-/bin/arch = `(/bin/arch) 2>/dev/null`
4787-/usr/bin/oslevel = `(/usr/bin/oslevel) 2>/dev/null`
4788-/usr/convex/getsysinfo = `(/usr/convex/getsysinfo) 2>/dev/null`
4789-
4790-UNAME_MACHINE = ${UNAME_MACHINE}
4791-UNAME_RELEASE = ${UNAME_RELEASE}
4792-UNAME_SYSTEM = ${UNAME_SYSTEM}
4793-UNAME_VERSION = ${UNAME_VERSION}
4794-EOF
4795-
4796-exit 1
4797-
4798-# Local variables:
4799-# eval: (add-hook 'write-file-hooks 'time-stamp)
4800-# time-stamp-start: "timestamp='"
4801-# time-stamp-format: "%:y-%02m-%02d"
4802-# time-stamp-end: "'"
4803-# End:
4804
4805=== removed file 'config.h.in'
4806--- config.h.in 2012-08-31 15:07:35 +0000
4807+++ config.h.in 1970-01-01 00:00:00 +0000
4808@@ -1,401 +0,0 @@
4809-/* config.h.in. Generated from configure.ac by autoheader. */
4810-
4811-/* Define to one of `_getb67', `GETB67', `getb67' for Cray-2 and Cray-YMP
4812- systems. This function is required for `alloca.c' support on those systems.
4813- */
4814-#undef CRAY_STACKSEG_END
4815-
4816-/* Define to 1 if using `alloca.c'. */
4817-#undef C_ALLOCA
4818-
4819-/* Define to 1 if translation of program messages to the user's native
4820- language is requested. */
4821-#undef ENABLE_NLS
4822-
4823-/* Define to 1 if you have `alloca', as a function or macro. */
4824-#undef HAVE_ALLOCA
4825-
4826-/* Define to 1 if you have <alloca.h> and it should be used (not on Ultrix).
4827- */
4828-#undef HAVE_ALLOCA_H
4829-
4830-/* Define to 1 if you have the `argz_count' function. */
4831-#undef HAVE_ARGZ_COUNT
4832-
4833-/* Define to 1 if you have the <argz.h> header file. */
4834-#undef HAVE_ARGZ_H
4835-
4836-/* Define to 1 if you have the `argz_next' function. */
4837-#undef HAVE_ARGZ_NEXT
4838-
4839-/* Define to 1 if you have the `argz_stringify' function. */
4840-#undef HAVE_ARGZ_STRINGIFY
4841-
4842-/* Define to 1 if you have the `asprintf' function. */
4843-#undef HAVE_ASPRINTF
4844-
4845-/* Define to 1 if the compiler understands __builtin_expect. */
4846-#undef HAVE_BUILTIN_EXPECT
4847-
4848-/* Define to 1 if you have the MacOS X function CFLocaleCopyCurrent in the
4849- CoreFoundation framework. */
4850-#undef HAVE_CFLOCALECOPYCURRENT
4851-
4852-/* Define to 1 if you have the MacOS X function CFPreferencesCopyAppValue in
4853- the CoreFoundation framework. */
4854-#undef HAVE_CFPREFERENCESCOPYAPPVALUE
4855-
4856-/* Define if the GNU dcgettext() function is already present or preinstalled.
4857- */
4858-#undef HAVE_DCGETTEXT
4859-
4860-/* Define to 1 if you have the declaration of `feof_unlocked', and to 0 if you
4861- don't. */
4862-#undef HAVE_DECL_FEOF_UNLOCKED
4863-
4864-/* Define to 1 if you have the declaration of `fgets_unlocked', and to 0 if
4865- you don't. */
4866-#undef HAVE_DECL_FGETS_UNLOCKED
4867-
4868-/* Define to 1 if you have the declaration of `getc_unlocked', and to 0 if you
4869- don't. */
4870-#undef HAVE_DECL_GETC_UNLOCKED
4871-
4872-/* Define to 1 if you have the declaration of `_snprintf', and to 0 if you
4873- don't. */
4874-#undef HAVE_DECL__SNPRINTF
4875-
4876-/* Define to 1 if you have the declaration of `_snwprintf', and to 0 if you
4877- don't. */
4878-#undef HAVE_DECL__SNWPRINTF
4879-
4880-/* Define to 1 if you have the <dlfcn.h> header file. */
4881-#undef HAVE_DLFCN_H
4882-
4883-/* Define to 1 if you have the `fwprintf' function. */
4884-#undef HAVE_FWPRINTF
4885-
4886-/* Define to 1 if you have the `getcwd' function. */
4887-#undef HAVE_GETCWD
4888-
4889-/* Define to 1 if you have the `getegid' function. */
4890-#undef HAVE_GETEGID
4891-
4892-/* Define to 1 if you have the `geteuid' function. */
4893-#undef HAVE_GETEUID
4894-
4895-/* Define to 1 if you have the `getgid' function. */
4896-#undef HAVE_GETGID
4897-
4898-/* Define to 1 if you have the `getpagesize' function. */
4899-#undef HAVE_GETPAGESIZE
4900-
4901-/* Define if the GNU gettext() function is already present or preinstalled. */
4902-#undef HAVE_GETTEXT
4903-
4904-/* Define to 1 if you have the `getuid' function. */
4905-#undef HAVE_GETUID
4906-
4907-/* Define if you have the iconv() function and it works. */
4908-#undef HAVE_ICONV
4909-
4910-/* Define if you have the 'intmax_t' type in <stdint.h> or <inttypes.h>. */
4911-#undef HAVE_INTMAX_T
4912-
4913-/* Define to 1 if you have the <inttypes.h> header file. */
4914-#undef HAVE_INTTYPES_H
4915-
4916-/* Define if <inttypes.h> exists, doesn't clash with <sys/types.h>, and
4917- declares uintmax_t. */
4918-#undef HAVE_INTTYPES_H_WITH_UINTMAX
4919-
4920-/* Define if you have <langinfo.h> and nl_langinfo(CODESET). */
4921-#undef HAVE_LANGINFO_CODESET
4922-
4923-/* Define if your <locale.h> file defines LC_MESSAGES. */
4924-#undef HAVE_LC_MESSAGES
4925-
4926-/* Define to 1 if you have the <limits.h> header file. */
4927-#undef HAVE_LIMITS_H
4928-
4929-/* Define to 1 if the system has the type `long long int'. */
4930-#undef HAVE_LONG_LONG_INT
4931-
4932-/* Define to 1 if you have the <memory.h> header file. */
4933-#undef HAVE_MEMORY_H
4934-
4935-/* Define to 1 if you have the `mempcpy' function. */
4936-#undef HAVE_MEMPCPY
4937-
4938-/* Define to 1 if you have a working `mmap' system call. */
4939-#undef HAVE_MMAP
4940-
4941-/* Define to 1 if you have the `munmap' function. */
4942-#undef HAVE_MUNMAP
4943-
4944-/* Define if you have <langinfo.h> and it defines the NL_LOCALE_NAME macro if
4945- _GNU_SOURCE is defined. */
4946-#undef HAVE_NL_LOCALE_NAME
4947-
4948-/* Define if your printf() function supports format strings with positions. */
4949-#undef HAVE_POSIX_PRINTF
4950-
4951-/* Define if the <pthread.h> defines PTHREAD_MUTEX_RECURSIVE. */
4952-#undef HAVE_PTHREAD_MUTEX_RECURSIVE
4953-
4954-/* Define if the POSIX multithreading library has read/write locks. */
4955-#undef HAVE_PTHREAD_RWLOCK
4956-
4957-/* Define to 1 if you have the `putenv' function. */
4958-#undef HAVE_PUTENV
4959-
4960-/* Define to 1 if you have the `setenv' function. */
4961-#undef HAVE_SETENV
4962-
4963-/* Define to 1 if you have the `setlocale' function. */
4964-#undef HAVE_SETLOCALE
4965-
4966-/* Define to 1 if you have the `snprintf' function. */
4967-#undef HAVE_SNPRINTF
4968-
4969-/* Define to 1 if you have the <stddef.h> header file. */
4970-#undef HAVE_STDDEF_H
4971-
4972-/* Define to 1 if you have the <stdint.h> header file. */
4973-#undef HAVE_STDINT_H
4974-
4975-/* Define if <stdint.h> exists, doesn't clash with <sys/types.h>, and declares
4976- uintmax_t. */
4977-#undef HAVE_STDINT_H_WITH_UINTMAX
4978-
4979-/* Define to 1 if you have the <stdlib.h> header file. */
4980-#undef HAVE_STDLIB_H
4981-
4982-/* Define to 1 if you have the `stpcpy' function. */
4983-#undef HAVE_STPCPY
4984-
4985-/* Define to 1 if you have the `strcasecmp' function. */
4986-#undef HAVE_STRCASECMP
4987-
4988-/* Define to 1 if you have the `strdup' function. */
4989-#undef HAVE_STRDUP
4990-
4991-/* Define to 1 if you have the <strings.h> header file. */
4992-#undef HAVE_STRINGS_H
4993-
4994-/* Define to 1 if you have the <string.h> header file. */
4995-#undef HAVE_STRING_H
4996-
4997-/* Define to 1 if you have the `strtoul' function. */
4998-#undef HAVE_STRTOUL
4999-
5000-/* Define to 1 if you have the <sys/param.h> header file. */
The diff has been truncated for viewing.

Subscribers

People subscribed via source and target branches