rbnacl-libsodium 0.5.0 → 0.5.0.1.pre

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (35) hide show
  1. checksums.yaml +4 -4
  2. data/README.md +15 -2
  3. data/ext/rbnacl/extconf.rb +0 -1
  4. data/lib/rbnacl/libsodium/version.rb +1 -1
  5. data/vendor/libsodium/Makefile.in +878 -0
  6. data/vendor/libsodium/aclocal.m4 +1214 -0
  7. data/vendor/libsodium/autom4te.cache/output.0 +17434 -0
  8. data/vendor/libsodium/autom4te.cache/output.1 +17434 -0
  9. data/vendor/libsodium/autom4te.cache/output.2 +17434 -0
  10. data/vendor/libsodium/autom4te.cache/requests +554 -0
  11. data/vendor/libsodium/autom4te.cache/traces.0 +2956 -0
  12. data/vendor/libsodium/autom4te.cache/traces.1 +829 -0
  13. data/vendor/libsodium/autom4te.cache/traces.2 +2956 -0
  14. data/vendor/libsodium/compile +347 -0
  15. data/vendor/libsodium/config.guess +1568 -0
  16. data/vendor/libsodium/config.sub +1793 -0
  17. data/vendor/libsodium/configure +17434 -0
  18. data/vendor/libsodium/depcomp +791 -0
  19. data/vendor/libsodium/dist-build/Makefile.in +453 -0
  20. data/vendor/libsodium/install-sh +527 -0
  21. data/vendor/libsodium/ltmain.sh +9655 -0
  22. data/vendor/libsodium/m4/libtool.m4 +7982 -0
  23. data/vendor/libsodium/m4/ltoptions.m4 +384 -0
  24. data/vendor/libsodium/m4/ltsugar.m4 +123 -0
  25. data/vendor/libsodium/m4/ltversion.m4 +23 -0
  26. data/vendor/libsodium/m4/lt~obsolete.m4 +98 -0
  27. data/vendor/libsodium/missing +215 -0
  28. data/vendor/libsodium/msvc-scripts/Makefile.in +448 -0
  29. data/vendor/libsodium/src/Makefile.in +626 -0
  30. data/vendor/libsodium/src/libsodium/Makefile.in +3725 -0
  31. data/vendor/libsodium/src/libsodium/include/Makefile.in +656 -0
  32. data/vendor/libsodium/test-driver +139 -0
  33. data/vendor/libsodium/test/Makefile.in +629 -0
  34. data/vendor/libsodium/test/default/Makefile.in +2047 -0
  35. metadata +35 -4
@@ -0,0 +1,139 @@
1
+ #! /bin/sh
2
+ # test-driver - basic testsuite driver script.
3
+
4
+ scriptversion=2013-07-13.22; # UTC
5
+
6
+ # Copyright (C) 2011-2013 Free Software Foundation, Inc.
7
+ #
8
+ # This program is free software; you can redistribute it and/or modify
9
+ # it under the terms of the GNU General Public License as published by
10
+ # the Free Software Foundation; either version 2, or (at your option)
11
+ # any later version.
12
+ #
13
+ # This program is distributed in the hope that it will be useful,
14
+ # but WITHOUT ANY WARRANTY; without even the implied warranty of
15
+ # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16
+ # GNU General Public License for more details.
17
+ #
18
+ # You should have received a copy of the GNU General Public License
19
+ # along with this program. If not, see <http://www.gnu.org/licenses/>.
20
+
21
+ # As a special exception to the GNU General Public License, if you
22
+ # distribute this file as part of a program that contains a
23
+ # configuration script generated by Autoconf, you may include it under
24
+ # the same distribution terms that you use for the rest of that program.
25
+
26
+ # This file is maintained in Automake, please report
27
+ # bugs to <bug-automake@gnu.org> or send patches to
28
+ # <automake-patches@gnu.org>.
29
+
30
+ # Make unconditional expansion of undefined variables an error. This
31
+ # helps a lot in preventing typo-related bugs.
32
+ set -u
33
+
34
+ usage_error ()
35
+ {
36
+ echo "$0: $*" >&2
37
+ print_usage >&2
38
+ exit 2
39
+ }
40
+
41
+ print_usage ()
42
+ {
43
+ cat <<END
44
+ Usage:
45
+ test-driver --test-name=NAME --log-file=PATH --trs-file=PATH
46
+ [--expect-failure={yes|no}] [--color-tests={yes|no}]
47
+ [--enable-hard-errors={yes|no}] [--]
48
+ TEST-SCRIPT [TEST-SCRIPT-ARGUMENTS]
49
+ The '--test-name', '--log-file' and '--trs-file' options are mandatory.
50
+ END
51
+ }
52
+
53
+ test_name= # Used for reporting.
54
+ log_file= # Where to save the output of the test script.
55
+ trs_file= # Where to save the metadata of the test run.
56
+ expect_failure=no
57
+ color_tests=no
58
+ enable_hard_errors=yes
59
+ while test $# -gt 0; do
60
+ case $1 in
61
+ --help) print_usage; exit $?;;
62
+ --version) echo "test-driver $scriptversion"; exit $?;;
63
+ --test-name) test_name=$2; shift;;
64
+ --log-file) log_file=$2; shift;;
65
+ --trs-file) trs_file=$2; shift;;
66
+ --color-tests) color_tests=$2; shift;;
67
+ --expect-failure) expect_failure=$2; shift;;
68
+ --enable-hard-errors) enable_hard_errors=$2; shift;;
69
+ --) shift; break;;
70
+ -*) usage_error "invalid option: '$1'";;
71
+ *) break;;
72
+ esac
73
+ shift
74
+ done
75
+
76
+ missing_opts=
77
+ test x"$test_name" = x && missing_opts="$missing_opts --test-name"
78
+ test x"$log_file" = x && missing_opts="$missing_opts --log-file"
79
+ test x"$trs_file" = x && missing_opts="$missing_opts --trs-file"
80
+ if test x"$missing_opts" != x; then
81
+ usage_error "the following mandatory options are missing:$missing_opts"
82
+ fi
83
+
84
+ if test $# -eq 0; then
85
+ usage_error "missing argument"
86
+ fi
87
+
88
+ if test $color_tests = yes; then
89
+ # Keep this in sync with 'lib/am/check.am:$(am__tty_colors)'.
90
+ red='' # Red.
91
+ grn='' # Green.
92
+ lgn='' # Light green.
93
+ blu='' # Blue.
94
+ mgn='' # Magenta.
95
+ std='' # No color.
96
+ else
97
+ red= grn= lgn= blu= mgn= std=
98
+ fi
99
+
100
+ do_exit='rm -f $log_file $trs_file; (exit $st); exit $st'
101
+ trap "st=129; $do_exit" 1
102
+ trap "st=130; $do_exit" 2
103
+ trap "st=141; $do_exit" 13
104
+ trap "st=143; $do_exit" 15
105
+
106
+ # Test script is run here.
107
+ "$@" >$log_file 2>&1
108
+ estatus=$?
109
+ if test $enable_hard_errors = no && test $estatus -eq 99; then
110
+ estatus=1
111
+ fi
112
+
113
+ case $estatus:$expect_failure in
114
+ 0:yes) col=$red res=XPASS recheck=yes gcopy=yes;;
115
+ 0:*) col=$grn res=PASS recheck=no gcopy=no;;
116
+ 77:*) col=$blu res=SKIP recheck=no gcopy=yes;;
117
+ 99:*) col=$mgn res=ERROR recheck=yes gcopy=yes;;
118
+ *:yes) col=$lgn res=XFAIL recheck=no gcopy=yes;;
119
+ *:*) col=$red res=FAIL recheck=yes gcopy=yes;;
120
+ esac
121
+
122
+ # Report outcome to console.
123
+ echo "${col}${res}${std}: $test_name"
124
+
125
+ # Register the test result, and other relevant metadata.
126
+ echo ":test-result: $res" > $trs_file
127
+ echo ":global-test-result: $res" >> $trs_file
128
+ echo ":recheck: $recheck" >> $trs_file
129
+ echo ":copy-in-global-log: $gcopy" >> $trs_file
130
+
131
+ # Local Variables:
132
+ # mode: shell-script
133
+ # sh-indentation: 2
134
+ # eval: (add-hook 'write-file-hooks 'time-stamp)
135
+ # time-stamp-start: "scriptversion="
136
+ # time-stamp-format: "%:y-%02m-%02d.%02H"
137
+ # time-stamp-time-zone: "UTC"
138
+ # time-stamp-end: "; # UTC"
139
+ # End:
@@ -0,0 +1,629 @@
1
+ # Makefile.in generated by automake 1.14.1 from Makefile.am.
2
+ # @configure_input@
3
+
4
+ # Copyright (C) 1994-2013 Free Software Foundation, Inc.
5
+
6
+ # This Makefile.in is free software; the Free Software Foundation
7
+ # gives unlimited permission to copy and/or distribute it,
8
+ # with or without modifications, as long as this notice is preserved.
9
+
10
+ # This program is distributed in the hope that it will be useful,
11
+ # but WITHOUT ANY WARRANTY, to the extent permitted by law; without
12
+ # even the implied warranty of MERCHANTABILITY or FITNESS FOR A
13
+ # PARTICULAR PURPOSE.
14
+
15
+ @SET_MAKE@
16
+ VPATH = @srcdir@
17
+ am__is_gnu_make = test -n '$(MAKEFILE_LIST)' && test -n '$(MAKELEVEL)'
18
+ am__make_running_with_option = \
19
+ case $${target_option-} in \
20
+ ?) ;; \
21
+ *) echo "am__make_running_with_option: internal error: invalid" \
22
+ "target option '$${target_option-}' specified" >&2; \
23
+ exit 1;; \
24
+ esac; \
25
+ has_opt=no; \
26
+ sane_makeflags=$$MAKEFLAGS; \
27
+ if $(am__is_gnu_make); then \
28
+ sane_makeflags=$$MFLAGS; \
29
+ else \
30
+ case $$MAKEFLAGS in \
31
+ *\\[\ \ ]*) \
32
+ bs=\\; \
33
+ sane_makeflags=`printf '%s\n' "$$MAKEFLAGS" \
34
+ | sed "s/$$bs$$bs[$$bs $$bs ]*//g"`;; \
35
+ esac; \
36
+ fi; \
37
+ skip_next=no; \
38
+ strip_trailopt () \
39
+ { \
40
+ flg=`printf '%s\n' "$$flg" | sed "s/$$1.*$$//"`; \
41
+ }; \
42
+ for flg in $$sane_makeflags; do \
43
+ test $$skip_next = yes && { skip_next=no; continue; }; \
44
+ case $$flg in \
45
+ *=*|--*) continue;; \
46
+ -*I) strip_trailopt 'I'; skip_next=yes;; \
47
+ -*I?*) strip_trailopt 'I';; \
48
+ -*O) strip_trailopt 'O'; skip_next=yes;; \
49
+ -*O?*) strip_trailopt 'O';; \
50
+ -*l) strip_trailopt 'l'; skip_next=yes;; \
51
+ -*l?*) strip_trailopt 'l';; \
52
+ -[dEDm]) skip_next=yes;; \
53
+ -[JT]) skip_next=yes;; \
54
+ esac; \
55
+ case $$flg in \
56
+ *$$target_option*) has_opt=yes; break;; \
57
+ esac; \
58
+ done; \
59
+ test $$has_opt = yes
60
+ am__make_dryrun = (target_option=n; $(am__make_running_with_option))
61
+ am__make_keepgoing = (target_option=k; $(am__make_running_with_option))
62
+ pkgdatadir = $(datadir)/@PACKAGE@
63
+ pkgincludedir = $(includedir)/@PACKAGE@
64
+ pkglibdir = $(libdir)/@PACKAGE@
65
+ pkglibexecdir = $(libexecdir)/@PACKAGE@
66
+ am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd
67
+ install_sh_DATA = $(install_sh) -c -m 644
68
+ install_sh_PROGRAM = $(install_sh) -c
69
+ install_sh_SCRIPT = $(install_sh) -c
70
+ INSTALL_HEADER = $(INSTALL_DATA)
71
+ transform = $(program_transform_name)
72
+ NORMAL_INSTALL = :
73
+ PRE_INSTALL = :
74
+ POST_INSTALL = :
75
+ NORMAL_UNINSTALL = :
76
+ PRE_UNINSTALL = :
77
+ POST_UNINSTALL = :
78
+ build_triplet = @build@
79
+ host_triplet = @host@
80
+ subdir = test
81
+ DIST_COMMON = $(srcdir)/Makefile.in $(srcdir)/Makefile.am
82
+ ACLOCAL_M4 = $(top_srcdir)/aclocal.m4
83
+ am__aclocal_m4_deps = $(top_srcdir)/m4/ax_check_compile_flag.m4 \
84
+ $(top_srcdir)/m4/ax_check_link_flag.m4 \
85
+ $(top_srcdir)/m4/ld-output-def.m4 $(top_srcdir)/m4/libtool.m4 \
86
+ $(top_srcdir)/m4/ltoptions.m4 $(top_srcdir)/m4/ltsugar.m4 \
87
+ $(top_srcdir)/m4/ltversion.m4 $(top_srcdir)/m4/lt~obsolete.m4 \
88
+ $(top_srcdir)/m4/pkg.m4 $(top_srcdir)/configure.ac
89
+ am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \
90
+ $(ACLOCAL_M4)
91
+ mkinstalldirs = $(install_sh) -d
92
+ CONFIG_CLEAN_FILES =
93
+ CONFIG_CLEAN_VPATH_FILES =
94
+ AM_V_P = $(am__v_P_@AM_V@)
95
+ am__v_P_ = $(am__v_P_@AM_DEFAULT_V@)
96
+ am__v_P_0 = false
97
+ am__v_P_1 = :
98
+ AM_V_GEN = $(am__v_GEN_@AM_V@)
99
+ am__v_GEN_ = $(am__v_GEN_@AM_DEFAULT_V@)
100
+ am__v_GEN_0 = @echo " GEN " $@;
101
+ am__v_GEN_1 =
102
+ AM_V_at = $(am__v_at_@AM_V@)
103
+ am__v_at_ = $(am__v_at_@AM_DEFAULT_V@)
104
+ am__v_at_0 = @
105
+ am__v_at_1 =
106
+ SOURCES =
107
+ DIST_SOURCES =
108
+ RECURSIVE_TARGETS = all-recursive check-recursive cscopelist-recursive \
109
+ ctags-recursive dvi-recursive html-recursive info-recursive \
110
+ install-data-recursive install-dvi-recursive \
111
+ install-exec-recursive install-html-recursive \
112
+ install-info-recursive install-pdf-recursive \
113
+ install-ps-recursive install-recursive installcheck-recursive \
114
+ installdirs-recursive pdf-recursive ps-recursive \
115
+ tags-recursive uninstall-recursive
116
+ am__can_run_installinfo = \
117
+ case $$AM_UPDATE_INFO_DIR in \
118
+ n|no|NO) false;; \
119
+ *) (install-info --version) >/dev/null 2>&1;; \
120
+ esac
121
+ RECURSIVE_CLEAN_TARGETS = mostlyclean-recursive clean-recursive \
122
+ distclean-recursive maintainer-clean-recursive
123
+ am__recursive_targets = \
124
+ $(RECURSIVE_TARGETS) \
125
+ $(RECURSIVE_CLEAN_TARGETS) \
126
+ $(am__extra_recursive_targets)
127
+ AM_RECURSIVE_TARGETS = $(am__recursive_targets:-recursive=) TAGS CTAGS \
128
+ distdir
129
+ am__tagged_files = $(HEADERS) $(SOURCES) $(TAGS_FILES) $(LISP)
130
+ # Read a list of newline-separated strings from the standard input,
131
+ # and print each of them once, without duplicates. Input order is
132
+ # *not* preserved.
133
+ am__uniquify_input = $(AWK) '\
134
+ BEGIN { nonempty = 0; } \
135
+ { items[$$0] = 1; nonempty = 1; } \
136
+ END { if (nonempty) { for (i in items) print i; }; } \
137
+ '
138
+ # Make sure the list of sources is unique. This is necessary because,
139
+ # e.g., the same source file might be shared among _SOURCES variables
140
+ # for different programs/libraries.
141
+ am__define_uniq_tagged_files = \
142
+ list='$(am__tagged_files)'; \
143
+ unique=`for i in $$list; do \
144
+ if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \
145
+ done | $(am__uniquify_input)`
146
+ ETAGS = etags
147
+ CTAGS = ctags
148
+ DIST_SUBDIRS = $(SUBDIRS)
149
+ DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST)
150
+ am__relativize = \
151
+ dir0=`pwd`; \
152
+ sed_first='s,^\([^/]*\)/.*$$,\1,'; \
153
+ sed_rest='s,^[^/]*/*,,'; \
154
+ sed_last='s,^.*/\([^/]*\)$$,\1,'; \
155
+ sed_butlast='s,/*[^/]*$$,,'; \
156
+ while test -n "$$dir1"; do \
157
+ first=`echo "$$dir1" | sed -e "$$sed_first"`; \
158
+ if test "$$first" != "."; then \
159
+ if test "$$first" = ".."; then \
160
+ dir2=`echo "$$dir0" | sed -e "$$sed_last"`/"$$dir2"; \
161
+ dir0=`echo "$$dir0" | sed -e "$$sed_butlast"`; \
162
+ else \
163
+ first2=`echo "$$dir2" | sed -e "$$sed_first"`; \
164
+ if test "$$first2" = "$$first"; then \
165
+ dir2=`echo "$$dir2" | sed -e "$$sed_rest"`; \
166
+ else \
167
+ dir2="../$$dir2"; \
168
+ fi; \
169
+ dir0="$$dir0"/"$$first"; \
170
+ fi; \
171
+ fi; \
172
+ dir1=`echo "$$dir1" | sed -e "$$sed_rest"`; \
173
+ done; \
174
+ reldir="$$dir2"
175
+ ACLOCAL = @ACLOCAL@
176
+ AMTAR = @AMTAR@
177
+ AM_DEFAULT_VERBOSITY = @AM_DEFAULT_VERBOSITY@
178
+ AR = @AR@
179
+ AS = @AS@
180
+ AUTOCONF = @AUTOCONF@
181
+ AUTOHEADER = @AUTOHEADER@
182
+ AUTOMAKE = @AUTOMAKE@
183
+ AWK = @AWK@
184
+ CC = @CC@
185
+ CCAS = @CCAS@
186
+ CCASDEPMODE = @CCASDEPMODE@
187
+ CCASFLAGS = @CCASFLAGS@
188
+ CCDEPMODE = @CCDEPMODE@
189
+ CFLAGS = @CFLAGS@
190
+ CPP = @CPP@
191
+ CPPFLAGS = @CPPFLAGS@
192
+ CWFLAGS = @CWFLAGS@
193
+ CYGPATH_W = @CYGPATH_W@
194
+ DEFS = @DEFS@
195
+ DEPDIR = @DEPDIR@
196
+ DLLTOOL = @DLLTOOL@
197
+ DLL_VERSION = @DLL_VERSION@
198
+ DSYMUTIL = @DSYMUTIL@
199
+ DUMPBIN = @DUMPBIN@
200
+ ECHO_C = @ECHO_C@
201
+ ECHO_N = @ECHO_N@
202
+ ECHO_T = @ECHO_T@
203
+ EGREP = @EGREP@
204
+ EXEEXT = @EXEEXT@
205
+ FGREP = @FGREP@
206
+ GREP = @GREP@
207
+ HAVE_AMD64_ASM_V = @HAVE_AMD64_ASM_V@
208
+ HAVE_CPUID_V = @HAVE_CPUID_V@
209
+ HAVE_PKG_CONFIG = @HAVE_PKG_CONFIG@
210
+ HAVE_TI_MODE_V = @HAVE_TI_MODE_V@
211
+ INSTALL = @INSTALL@
212
+ INSTALL_DATA = @INSTALL_DATA@
213
+ INSTALL_PROGRAM = @INSTALL_PROGRAM@
214
+ INSTALL_SCRIPT = @INSTALL_SCRIPT@
215
+ INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@
216
+ ISODATE = @ISODATE@
217
+ LD = @LD@
218
+ LDFLAGS = @LDFLAGS@
219
+ LIBOBJS = @LIBOBJS@
220
+ LIBS = @LIBS@
221
+ LIBTOOL = @LIBTOOL@
222
+ LIBTOOL_DEPS = @LIBTOOL_DEPS@
223
+ LIBTOOL_EXTRA_FLAGS = @LIBTOOL_EXTRA_FLAGS@
224
+ LIPO = @LIPO@
225
+ LN_S = @LN_S@
226
+ LTLIBOBJS = @LTLIBOBJS@
227
+ MAINT = @MAINT@
228
+ MAKEINFO = @MAKEINFO@
229
+ MANIFEST_TOOL = @MANIFEST_TOOL@
230
+ MKDIR_P = @MKDIR_P@
231
+ NM = @NM@
232
+ NMEDIT = @NMEDIT@
233
+ OBJDUMP = @OBJDUMP@
234
+ OBJEXT = @OBJEXT@
235
+ OTOOL = @OTOOL@
236
+ OTOOL64 = @OTOOL64@
237
+ PACKAGE = @PACKAGE@
238
+ PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@
239
+ PACKAGE_NAME = @PACKAGE_NAME@
240
+ PACKAGE_STRING = @PACKAGE_STRING@
241
+ PACKAGE_TARNAME = @PACKAGE_TARNAME@
242
+ PACKAGE_URL = @PACKAGE_URL@
243
+ PACKAGE_VERSION = @PACKAGE_VERSION@
244
+ PATH_SEPARATOR = @PATH_SEPARATOR@
245
+ PKG_CONFIG = @PKG_CONFIG@
246
+ PKG_CONFIG_LIBDIR = @PKG_CONFIG_LIBDIR@
247
+ PKG_CONFIG_PATH = @PKG_CONFIG_PATH@
248
+ RANLIB = @RANLIB@
249
+ SAFECODE_HOME = @SAFECODE_HOME@
250
+ SED = @SED@
251
+ SET_MAKE = @SET_MAKE@
252
+ SHELL = @SHELL@
253
+ SODIUM_LIBRARY_VERSION = @SODIUM_LIBRARY_VERSION@
254
+ SODIUM_LIBRARY_VERSION_MAJOR = @SODIUM_LIBRARY_VERSION_MAJOR@
255
+ SODIUM_LIBRARY_VERSION_MINOR = @SODIUM_LIBRARY_VERSION_MINOR@
256
+ STRIP = @STRIP@
257
+ VERSION = @VERSION@
258
+ abs_builddir = @abs_builddir@
259
+ abs_srcdir = @abs_srcdir@
260
+ abs_top_builddir = @abs_top_builddir@
261
+ abs_top_srcdir = @abs_top_srcdir@
262
+ ac_ct_AR = @ac_ct_AR@
263
+ ac_ct_CC = @ac_ct_CC@
264
+ ac_ct_DUMPBIN = @ac_ct_DUMPBIN@
265
+ am__include = @am__include@
266
+ am__leading_dot = @am__leading_dot@
267
+ am__quote = @am__quote@
268
+ am__tar = @am__tar@
269
+ am__untar = @am__untar@
270
+ bindir = @bindir@
271
+ build = @build@
272
+ build_alias = @build_alias@
273
+ build_cpu = @build_cpu@
274
+ build_os = @build_os@
275
+ build_vendor = @build_vendor@
276
+ builddir = @builddir@
277
+ datadir = @datadir@
278
+ datarootdir = @datarootdir@
279
+ docdir = @docdir@
280
+ dvidir = @dvidir@
281
+ exec_prefix = @exec_prefix@
282
+ host = @host@
283
+ host_alias = @host_alias@
284
+ host_cpu = @host_cpu@
285
+ host_os = @host_os@
286
+ host_vendor = @host_vendor@
287
+ htmldir = @htmldir@
288
+ includedir = @includedir@
289
+ infodir = @infodir@
290
+ install_sh = @install_sh@
291
+ libdir = @libdir@
292
+ libexecdir = @libexecdir@
293
+ localedir = @localedir@
294
+ localstatedir = @localstatedir@
295
+ mandir = @mandir@
296
+ mkdir_p = @mkdir_p@
297
+ oldincludedir = @oldincludedir@
298
+ pdfdir = @pdfdir@
299
+ prefix = @prefix@
300
+ program_transform_name = @program_transform_name@
301
+ psdir = @psdir@
302
+ sbindir = @sbindir@
303
+ sharedstatedir = @sharedstatedir@
304
+ srcdir = @srcdir@
305
+ sysconfdir = @sysconfdir@
306
+ target_alias = @target_alias@
307
+ top_build_prefix = @top_build_prefix@
308
+ top_builddir = @top_builddir@
309
+ top_srcdir = @top_srcdir@
310
+ SUBDIRS = \
311
+ default
312
+
313
+ EXTRA_DIST = \
314
+ quirks/windows/windows-quirks.h
315
+
316
+ all: all-recursive
317
+
318
+ .SUFFIXES:
319
+ $(srcdir)/Makefile.in: @MAINTAINER_MODE_TRUE@ $(srcdir)/Makefile.am $(am__configure_deps)
320
+ @for dep in $?; do \
321
+ case '$(am__configure_deps)' in \
322
+ *$$dep*) \
323
+ ( cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ) \
324
+ && { if test -f $@; then exit 0; else break; fi; }; \
325
+ exit 1;; \
326
+ esac; \
327
+ done; \
328
+ echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign test/Makefile'; \
329
+ $(am__cd) $(top_srcdir) && \
330
+ $(AUTOMAKE) --foreign test/Makefile
331
+ .PRECIOUS: Makefile
332
+ Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status
333
+ @case '$?' in \
334
+ *config.status*) \
335
+ cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \
336
+ *) \
337
+ echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \
338
+ cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \
339
+ esac;
340
+
341
+ $(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES)
342
+ cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh
343
+
344
+ $(top_srcdir)/configure: @MAINTAINER_MODE_TRUE@ $(am__configure_deps)
345
+ cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh
346
+ $(ACLOCAL_M4): @MAINTAINER_MODE_TRUE@ $(am__aclocal_m4_deps)
347
+ cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh
348
+ $(am__aclocal_m4_deps):
349
+
350
+ mostlyclean-libtool:
351
+ -rm -f *.lo
352
+
353
+ clean-libtool:
354
+ -rm -rf .libs _libs
355
+
356
+ # This directory's subdirectories are mostly independent; you can cd
357
+ # into them and run 'make' without going through this Makefile.
358
+ # To change the values of 'make' variables: instead of editing Makefiles,
359
+ # (1) if the variable is set in 'config.status', edit 'config.status'
360
+ # (which will cause the Makefiles to be regenerated when you run 'make');
361
+ # (2) otherwise, pass the desired values on the 'make' command line.
362
+ $(am__recursive_targets):
363
+ @fail=; \
364
+ if $(am__make_keepgoing); then \
365
+ failcom='fail=yes'; \
366
+ else \
367
+ failcom='exit 1'; \
368
+ fi; \
369
+ dot_seen=no; \
370
+ target=`echo $@ | sed s/-recursive//`; \
371
+ case "$@" in \
372
+ distclean-* | maintainer-clean-*) list='$(DIST_SUBDIRS)' ;; \
373
+ *) list='$(SUBDIRS)' ;; \
374
+ esac; \
375
+ for subdir in $$list; do \
376
+ echo "Making $$target in $$subdir"; \
377
+ if test "$$subdir" = "."; then \
378
+ dot_seen=yes; \
379
+ local_target="$$target-am"; \
380
+ else \
381
+ local_target="$$target"; \
382
+ fi; \
383
+ ($(am__cd) $$subdir && $(MAKE) $(AM_MAKEFLAGS) $$local_target) \
384
+ || eval $$failcom; \
385
+ done; \
386
+ if test "$$dot_seen" = "no"; then \
387
+ $(MAKE) $(AM_MAKEFLAGS) "$$target-am" || exit 1; \
388
+ fi; test -z "$$fail"
389
+
390
+ ID: $(am__tagged_files)
391
+ $(am__define_uniq_tagged_files); mkid -fID $$unique
392
+ tags: tags-recursive
393
+ TAGS: tags
394
+
395
+ tags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files)
396
+ set x; \
397
+ here=`pwd`; \
398
+ if ($(ETAGS) --etags-include --version) >/dev/null 2>&1; then \
399
+ include_option=--etags-include; \
400
+ empty_fix=.; \
401
+ else \
402
+ include_option=--include; \
403
+ empty_fix=; \
404
+ fi; \
405
+ list='$(SUBDIRS)'; for subdir in $$list; do \
406
+ if test "$$subdir" = .; then :; else \
407
+ test ! -f $$subdir/TAGS || \
408
+ set "$$@" "$$include_option=$$here/$$subdir/TAGS"; \
409
+ fi; \
410
+ done; \
411
+ $(am__define_uniq_tagged_files); \
412
+ shift; \
413
+ if test -z "$(ETAGS_ARGS)$$*$$unique"; then :; else \
414
+ test -n "$$unique" || unique=$$empty_fix; \
415
+ if test $$# -gt 0; then \
416
+ $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \
417
+ "$$@" $$unique; \
418
+ else \
419
+ $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \
420
+ $$unique; \
421
+ fi; \
422
+ fi
423
+ ctags: ctags-recursive
424
+
425
+ CTAGS: ctags
426
+ ctags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files)
427
+ $(am__define_uniq_tagged_files); \
428
+ test -z "$(CTAGS_ARGS)$$unique" \
429
+ || $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \
430
+ $$unique
431
+
432
+ GTAGS:
433
+ here=`$(am__cd) $(top_builddir) && pwd` \
434
+ && $(am__cd) $(top_srcdir) \
435
+ && gtags -i $(GTAGS_ARGS) "$$here"
436
+ cscopelist: cscopelist-recursive
437
+
438
+ cscopelist-am: $(am__tagged_files)
439
+ list='$(am__tagged_files)'; \
440
+ case "$(srcdir)" in \
441
+ [\\/]* | ?:[\\/]*) sdir="$(srcdir)" ;; \
442
+ *) sdir=$(subdir)/$(srcdir) ;; \
443
+ esac; \
444
+ for i in $$list; do \
445
+ if test -f "$$i"; then \
446
+ echo "$(subdir)/$$i"; \
447
+ else \
448
+ echo "$$sdir/$$i"; \
449
+ fi; \
450
+ done >> $(top_builddir)/cscope.files
451
+
452
+ distclean-tags:
453
+ -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags
454
+
455
+ distdir: $(DISTFILES)
456
+ @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \
457
+ topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \
458
+ list='$(DISTFILES)'; \
459
+ dist_files=`for file in $$list; do echo $$file; done | \
460
+ sed -e "s|^$$srcdirstrip/||;t" \
461
+ -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \
462
+ case $$dist_files in \
463
+ */*) $(MKDIR_P) `echo "$$dist_files" | \
464
+ sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \
465
+ sort -u` ;; \
466
+ esac; \
467
+ for file in $$dist_files; do \
468
+ if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \
469
+ if test -d $$d/$$file; then \
470
+ dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \
471
+ if test -d "$(distdir)/$$file"; then \
472
+ find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \
473
+ fi; \
474
+ if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \
475
+ cp -fpR $(srcdir)/$$file "$(distdir)$$dir" || exit 1; \
476
+ find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \
477
+ fi; \
478
+ cp -fpR $$d/$$file "$(distdir)$$dir" || exit 1; \
479
+ else \
480
+ test -f "$(distdir)/$$file" \
481
+ || cp -p $$d/$$file "$(distdir)/$$file" \
482
+ || exit 1; \
483
+ fi; \
484
+ done
485
+ @list='$(DIST_SUBDIRS)'; for subdir in $$list; do \
486
+ if test "$$subdir" = .; then :; else \
487
+ $(am__make_dryrun) \
488
+ || test -d "$(distdir)/$$subdir" \
489
+ || $(MKDIR_P) "$(distdir)/$$subdir" \
490
+ || exit 1; \
491
+ dir1=$$subdir; dir2="$(distdir)/$$subdir"; \
492
+ $(am__relativize); \
493
+ new_distdir=$$reldir; \
494
+ dir1=$$subdir; dir2="$(top_distdir)"; \
495
+ $(am__relativize); \
496
+ new_top_distdir=$$reldir; \
497
+ echo " (cd $$subdir && $(MAKE) $(AM_MAKEFLAGS) top_distdir="$$new_top_distdir" distdir="$$new_distdir" \\"; \
498
+ echo " am__remove_distdir=: am__skip_length_check=: am__skip_mode_fix=: distdir)"; \
499
+ ($(am__cd) $$subdir && \
500
+ $(MAKE) $(AM_MAKEFLAGS) \
501
+ top_distdir="$$new_top_distdir" \
502
+ distdir="$$new_distdir" \
503
+ am__remove_distdir=: \
504
+ am__skip_length_check=: \
505
+ am__skip_mode_fix=: \
506
+ distdir) \
507
+ || exit 1; \
508
+ fi; \
509
+ done
510
+ check-am: all-am
511
+ check: check-recursive
512
+ all-am: Makefile
513
+ installdirs: installdirs-recursive
514
+ installdirs-am:
515
+ install: install-recursive
516
+ install-exec: install-exec-recursive
517
+ install-data: install-data-recursive
518
+ uninstall: uninstall-recursive
519
+
520
+ install-am: all-am
521
+ @$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am
522
+
523
+ installcheck: installcheck-recursive
524
+ install-strip:
525
+ if test -z '$(STRIP)'; then \
526
+ $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \
527
+ install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \
528
+ install; \
529
+ else \
530
+ $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \
531
+ install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \
532
+ "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'" install; \
533
+ fi
534
+ mostlyclean-generic:
535
+
536
+ clean-generic:
537
+
538
+ distclean-generic:
539
+ -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES)
540
+ -test . = "$(srcdir)" || test -z "$(CONFIG_CLEAN_VPATH_FILES)" || rm -f $(CONFIG_CLEAN_VPATH_FILES)
541
+
542
+ maintainer-clean-generic:
543
+ @echo "This command is intended for maintainers to use"
544
+ @echo "it deletes files that may require special tools to rebuild."
545
+ clean: clean-recursive
546
+
547
+ clean-am: clean-generic clean-libtool mostlyclean-am
548
+
549
+ distclean: distclean-recursive
550
+ -rm -f Makefile
551
+ distclean-am: clean-am distclean-generic distclean-tags
552
+
553
+ dvi: dvi-recursive
554
+
555
+ dvi-am:
556
+
557
+ html: html-recursive
558
+
559
+ html-am:
560
+
561
+ info: info-recursive
562
+
563
+ info-am:
564
+
565
+ install-data-am:
566
+
567
+ install-dvi: install-dvi-recursive
568
+
569
+ install-dvi-am:
570
+
571
+ install-exec-am:
572
+
573
+ install-html: install-html-recursive
574
+
575
+ install-html-am:
576
+
577
+ install-info: install-info-recursive
578
+
579
+ install-info-am:
580
+
581
+ install-man:
582
+
583
+ install-pdf: install-pdf-recursive
584
+
585
+ install-pdf-am:
586
+
587
+ install-ps: install-ps-recursive
588
+
589
+ install-ps-am:
590
+
591
+ installcheck-am:
592
+
593
+ maintainer-clean: maintainer-clean-recursive
594
+ -rm -f Makefile
595
+ maintainer-clean-am: distclean-am maintainer-clean-generic
596
+
597
+ mostlyclean: mostlyclean-recursive
598
+
599
+ mostlyclean-am: mostlyclean-generic mostlyclean-libtool
600
+
601
+ pdf: pdf-recursive
602
+
603
+ pdf-am:
604
+
605
+ ps: ps-recursive
606
+
607
+ ps-am:
608
+
609
+ uninstall-am:
610
+
611
+ .MAKE: $(am__recursive_targets) install-am install-strip
612
+
613
+ .PHONY: $(am__recursive_targets) CTAGS GTAGS TAGS all all-am check \
614
+ check-am clean clean-generic clean-libtool cscopelist-am ctags \
615
+ ctags-am distclean distclean-generic distclean-libtool \
616
+ distclean-tags distdir dvi dvi-am html html-am info info-am \
617
+ install install-am install-data install-data-am install-dvi \
618
+ install-dvi-am install-exec install-exec-am install-html \
619
+ install-html-am install-info install-info-am install-man \
620
+ install-pdf install-pdf-am install-ps install-ps-am \
621
+ install-strip installcheck installcheck-am installdirs \
622
+ installdirs-am maintainer-clean maintainer-clean-generic \
623
+ mostlyclean mostlyclean-generic mostlyclean-libtool pdf pdf-am \
624
+ ps ps-am tags tags-am uninstall uninstall-am
625
+
626
+
627
+ # Tell versions [3.59,3.63) of GNU make to not export all variables.
628
+ # Otherwise a system limit (for SysV at least) may be exceeded.
629
+ .NOEXPORT: