xnd 0.2.0dev6 → 0.2.0dev7

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 (74) hide show
  1. checksums.yaml +4 -4
  2. data/README.md +2 -0
  3. data/Rakefile +1 -1
  4. data/ext/ruby_xnd/GPATH +0 -0
  5. data/ext/ruby_xnd/GRTAGS +0 -0
  6. data/ext/ruby_xnd/GTAGS +0 -0
  7. data/ext/ruby_xnd/extconf.rb +8 -5
  8. data/ext/ruby_xnd/gc_guard.c +53 -2
  9. data/ext/ruby_xnd/gc_guard.h +8 -2
  10. data/ext/ruby_xnd/include/overflow.h +147 -0
  11. data/ext/ruby_xnd/include/ruby_xnd.h +62 -0
  12. data/ext/ruby_xnd/include/xnd.h +590 -0
  13. data/ext/ruby_xnd/lib/libxnd.a +0 -0
  14. data/ext/ruby_xnd/lib/libxnd.so +1 -0
  15. data/ext/ruby_xnd/lib/libxnd.so.0 +1 -0
  16. data/ext/ruby_xnd/lib/libxnd.so.0.2.0dev3 +0 -0
  17. data/ext/ruby_xnd/ruby_xnd.c +556 -47
  18. data/ext/ruby_xnd/ruby_xnd.h +2 -1
  19. data/ext/ruby_xnd/xnd/Makefile +80 -0
  20. data/ext/ruby_xnd/xnd/config.h +26 -0
  21. data/ext/ruby_xnd/xnd/config.h.in +3 -0
  22. data/ext/ruby_xnd/xnd/config.log +421 -0
  23. data/ext/ruby_xnd/xnd/config.status +1023 -0
  24. data/ext/ruby_xnd/xnd/configure +376 -8
  25. data/ext/ruby_xnd/xnd/configure.ac +48 -7
  26. data/ext/ruby_xnd/xnd/doc/xnd/index.rst +3 -1
  27. data/ext/ruby_xnd/xnd/doc/xnd/{types.rst → xnd.rst} +3 -18
  28. data/ext/ruby_xnd/xnd/libxnd/Makefile +142 -0
  29. data/ext/ruby_xnd/xnd/libxnd/Makefile.in +43 -3
  30. data/ext/ruby_xnd/xnd/libxnd/Makefile.vc +19 -3
  31. data/ext/ruby_xnd/xnd/libxnd/bitmaps.c +42 -3
  32. data/ext/ruby_xnd/xnd/libxnd/bitmaps.o +0 -0
  33. data/ext/ruby_xnd/xnd/libxnd/bounds.c +366 -0
  34. data/ext/ruby_xnd/xnd/libxnd/bounds.o +0 -0
  35. data/ext/ruby_xnd/xnd/libxnd/contrib.h +98 -0
  36. data/ext/ruby_xnd/xnd/libxnd/contrib/bfloat16.h +213 -0
  37. data/ext/ruby_xnd/xnd/libxnd/copy.c +155 -4
  38. data/ext/ruby_xnd/xnd/libxnd/copy.o +0 -0
  39. data/ext/ruby_xnd/xnd/libxnd/cuda/cuda_memory.cu +121 -0
  40. data/ext/ruby_xnd/xnd/libxnd/cuda/cuda_memory.h +58 -0
  41. data/ext/ruby_xnd/xnd/libxnd/equal.c +195 -7
  42. data/ext/ruby_xnd/xnd/libxnd/equal.o +0 -0
  43. data/ext/ruby_xnd/xnd/libxnd/inline.h +32 -0
  44. data/ext/ruby_xnd/xnd/libxnd/libxnd.a +0 -0
  45. data/ext/ruby_xnd/xnd/libxnd/libxnd.so +1 -0
  46. data/ext/ruby_xnd/xnd/libxnd/libxnd.so.0 +1 -0
  47. data/ext/ruby_xnd/xnd/libxnd/libxnd.so.0.2.0dev3 +0 -0
  48. data/ext/ruby_xnd/xnd/libxnd/shape.c +207 -0
  49. data/ext/ruby_xnd/xnd/libxnd/shape.o +0 -0
  50. data/ext/ruby_xnd/xnd/libxnd/split.c +2 -2
  51. data/ext/ruby_xnd/xnd/libxnd/split.o +0 -0
  52. data/ext/ruby_xnd/xnd/libxnd/tests/Makefile +39 -0
  53. data/ext/ruby_xnd/xnd/libxnd/xnd.c +613 -91
  54. data/ext/ruby_xnd/xnd/libxnd/xnd.h +145 -4
  55. data/ext/ruby_xnd/xnd/libxnd/xnd.o +0 -0
  56. data/ext/ruby_xnd/xnd/python/test_xnd.py +1125 -50
  57. data/ext/ruby_xnd/xnd/python/xnd/__init__.py +609 -124
  58. data/ext/ruby_xnd/xnd/python/xnd/_version.py +1 -0
  59. data/ext/ruby_xnd/xnd/python/xnd/_xnd.c +1652 -101
  60. data/ext/ruby_xnd/xnd/python/xnd/libxnd.a +0 -0
  61. data/ext/ruby_xnd/xnd/python/xnd/libxnd.so +1 -0
  62. data/ext/ruby_xnd/xnd/python/xnd/libxnd.so.0 +1 -0
  63. data/ext/ruby_xnd/xnd/python/xnd/libxnd.so.0.2.0dev3 +0 -0
  64. data/ext/ruby_xnd/xnd/python/xnd/pyxnd.h +1 -1
  65. data/ext/ruby_xnd/xnd/python/xnd/util.h +25 -0
  66. data/ext/ruby_xnd/xnd/python/xnd/xnd.h +590 -0
  67. data/ext/ruby_xnd/xnd/python/xnd_randvalue.py +106 -6
  68. data/ext/ruby_xnd/xnd/python/xnd_support.py +4 -0
  69. data/ext/ruby_xnd/xnd/setup.py +46 -4
  70. data/lib/ruby_xnd.so +0 -0
  71. data/lib/xnd.rb +39 -3
  72. data/lib/xnd/version.rb +2 -2
  73. data/xnd.gemspec +2 -1
  74. metadata +58 -5
@@ -0,0 +1,1023 @@
1
+ #! /bin/bash
2
+ # Generated by configure.
3
+ # Run this file to recreate the current configuration.
4
+ # Compiler output produced by configure, useful for debugging
5
+ # configure, is in config.log if it exists.
6
+
7
+ debug=false
8
+ ac_cs_recheck=false
9
+ ac_cs_silent=false
10
+
11
+ SHELL=${CONFIG_SHELL-/bin/bash}
12
+ export SHELL
13
+ ## -------------------- ##
14
+ ## M4sh Initialization. ##
15
+ ## -------------------- ##
16
+
17
+ # Be more Bourne compatible
18
+ DUALCASE=1; export DUALCASE # for MKS sh
19
+ if test -n "${ZSH_VERSION+set}" && (emulate sh) >/dev/null 2>&1; then :
20
+ emulate sh
21
+ NULLCMD=:
22
+ # Pre-4.2 versions of Zsh do word splitting on ${1+"$@"}, which
23
+ # is contrary to our usage. Disable this feature.
24
+ alias -g '${1+"$@"}'='"$@"'
25
+ setopt NO_GLOB_SUBST
26
+ else
27
+ case `(set -o) 2>/dev/null` in #(
28
+ *posix*) :
29
+ set -o posix ;; #(
30
+ *) :
31
+ ;;
32
+ esac
33
+ fi
34
+
35
+
36
+ as_nl='
37
+ '
38
+ export as_nl
39
+ # Printing a long string crashes Solaris 7 /usr/bin/printf.
40
+ as_echo='\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\'
41
+ as_echo=$as_echo$as_echo$as_echo$as_echo$as_echo
42
+ as_echo=$as_echo$as_echo$as_echo$as_echo$as_echo$as_echo
43
+ # Prefer a ksh shell builtin over an external printf program on Solaris,
44
+ # but without wasting forks for bash or zsh.
45
+ if test -z "$BASH_VERSION$ZSH_VERSION" \
46
+ && (test "X`print -r -- $as_echo`" = "X$as_echo") 2>/dev/null; then
47
+ as_echo='print -r --'
48
+ as_echo_n='print -rn --'
49
+ elif (test "X`printf %s $as_echo`" = "X$as_echo") 2>/dev/null; then
50
+ as_echo='printf %s\n'
51
+ as_echo_n='printf %s'
52
+ else
53
+ if test "X`(/usr/ucb/echo -n -n $as_echo) 2>/dev/null`" = "X-n $as_echo"; then
54
+ as_echo_body='eval /usr/ucb/echo -n "$1$as_nl"'
55
+ as_echo_n='/usr/ucb/echo -n'
56
+ else
57
+ as_echo_body='eval expr "X$1" : "X\\(.*\\)"'
58
+ as_echo_n_body='eval
59
+ arg=$1;
60
+ case $arg in #(
61
+ *"$as_nl"*)
62
+ expr "X$arg" : "X\\(.*\\)$as_nl";
63
+ arg=`expr "X$arg" : ".*$as_nl\\(.*\\)"`;;
64
+ esac;
65
+ expr "X$arg" : "X\\(.*\\)" | tr -d "$as_nl"
66
+ '
67
+ export as_echo_n_body
68
+ as_echo_n='sh -c $as_echo_n_body as_echo'
69
+ fi
70
+ export as_echo_body
71
+ as_echo='sh -c $as_echo_body as_echo'
72
+ fi
73
+
74
+ # The user is always right.
75
+ if test "${PATH_SEPARATOR+set}" != set; then
76
+ PATH_SEPARATOR=:
77
+ (PATH='/bin;/bin'; FPATH=$PATH; sh -c :) >/dev/null 2>&1 && {
78
+ (PATH='/bin:/bin'; FPATH=$PATH; sh -c :) >/dev/null 2>&1 ||
79
+ PATH_SEPARATOR=';'
80
+ }
81
+ fi
82
+
83
+
84
+ # IFS
85
+ # We need space, tab and new line, in precisely that order. Quoting is
86
+ # there to prevent editors from complaining about space-tab.
87
+ # (If _AS_PATH_WALK were called with IFS unset, it would disable word
88
+ # splitting by setting IFS to empty value.)
89
+ IFS=" "" $as_nl"
90
+
91
+ # Find who we are. Look in the path if we contain no directory separator.
92
+ as_myself=
93
+ case $0 in #((
94
+ *[\\/]* ) as_myself=$0 ;;
95
+ *) as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
96
+ for as_dir in $PATH
97
+ do
98
+ IFS=$as_save_IFS
99
+ test -z "$as_dir" && as_dir=.
100
+ test -r "$as_dir/$0" && as_myself=$as_dir/$0 && break
101
+ done
102
+ IFS=$as_save_IFS
103
+
104
+ ;;
105
+ esac
106
+ # We did not find ourselves, most probably we were run as `sh COMMAND'
107
+ # in which case we are not to be found in the path.
108
+ if test "x$as_myself" = x; then
109
+ as_myself=$0
110
+ fi
111
+ if test ! -f "$as_myself"; then
112
+ $as_echo "$as_myself: error: cannot find myself; rerun with an absolute file name" >&2
113
+ exit 1
114
+ fi
115
+
116
+ # Unset variables that we do not need and which cause bugs (e.g. in
117
+ # pre-3.0 UWIN ksh). But do not cause bugs in bash 2.01; the "|| exit 1"
118
+ # suppresses any "Segmentation fault" message there. '((' could
119
+ # trigger a bug in pdksh 5.2.14.
120
+ for as_var in BASH_ENV ENV MAIL MAILPATH
121
+ do eval test x\${$as_var+set} = xset \
122
+ && ( (unset $as_var) || exit 1) >/dev/null 2>&1 && unset $as_var || :
123
+ done
124
+ PS1='$ '
125
+ PS2='> '
126
+ PS4='+ '
127
+
128
+ # NLS nuisances.
129
+ LC_ALL=C
130
+ export LC_ALL
131
+ LANGUAGE=C
132
+ export LANGUAGE
133
+
134
+ # CDPATH.
135
+ (unset CDPATH) >/dev/null 2>&1 && unset CDPATH
136
+
137
+
138
+ # as_fn_error STATUS ERROR [LINENO LOG_FD]
139
+ # ----------------------------------------
140
+ # Output "`basename $0`: error: ERROR" to stderr. If LINENO and LOG_FD are
141
+ # provided, also output the error to LOG_FD, referencing LINENO. Then exit the
142
+ # script with STATUS, using 1 if that was 0.
143
+ as_fn_error ()
144
+ {
145
+ as_status=$1; test $as_status -eq 0 && as_status=1
146
+ if test "$4"; then
147
+ as_lineno=${as_lineno-"$3"} as_lineno_stack=as_lineno_stack=$as_lineno_stack
148
+ $as_echo "$as_me:${as_lineno-$LINENO}: error: $2" >&$4
149
+ fi
150
+ $as_echo "$as_me: error: $2" >&2
151
+ as_fn_exit $as_status
152
+ } # as_fn_error
153
+
154
+
155
+ # as_fn_set_status STATUS
156
+ # -----------------------
157
+ # Set $? to STATUS, without forking.
158
+ as_fn_set_status ()
159
+ {
160
+ return $1
161
+ } # as_fn_set_status
162
+
163
+ # as_fn_exit STATUS
164
+ # -----------------
165
+ # Exit the shell with STATUS, even in a "trap 0" or "set -e" context.
166
+ as_fn_exit ()
167
+ {
168
+ set +e
169
+ as_fn_set_status $1
170
+ exit $1
171
+ } # as_fn_exit
172
+
173
+ # as_fn_unset VAR
174
+ # ---------------
175
+ # Portably unset VAR.
176
+ as_fn_unset ()
177
+ {
178
+ { eval $1=; unset $1;}
179
+ }
180
+ as_unset=as_fn_unset
181
+ # as_fn_append VAR VALUE
182
+ # ----------------------
183
+ # Append the text in VALUE to the end of the definition contained in VAR. Take
184
+ # advantage of any shell optimizations that allow amortized linear growth over
185
+ # repeated appends, instead of the typical quadratic growth present in naive
186
+ # implementations.
187
+ if (eval "as_var=1; as_var+=2; test x\$as_var = x12") 2>/dev/null; then :
188
+ eval 'as_fn_append ()
189
+ {
190
+ eval $1+=\$2
191
+ }'
192
+ else
193
+ as_fn_append ()
194
+ {
195
+ eval $1=\$$1\$2
196
+ }
197
+ fi # as_fn_append
198
+
199
+ # as_fn_arith ARG...
200
+ # ------------------
201
+ # Perform arithmetic evaluation on the ARGs, and store the result in the
202
+ # global $as_val. Take advantage of shells that can avoid forks. The arguments
203
+ # must be portable across $(()) and expr.
204
+ if (eval "test \$(( 1 + 1 )) = 2") 2>/dev/null; then :
205
+ eval 'as_fn_arith ()
206
+ {
207
+ as_val=$(( $* ))
208
+ }'
209
+ else
210
+ as_fn_arith ()
211
+ {
212
+ as_val=`expr "$@" || test $? -eq 1`
213
+ }
214
+ fi # as_fn_arith
215
+
216
+
217
+ if expr a : '\(a\)' >/dev/null 2>&1 &&
218
+ test "X`expr 00001 : '.*\(...\)'`" = X001; then
219
+ as_expr=expr
220
+ else
221
+ as_expr=false
222
+ fi
223
+
224
+ if (basename -- /) >/dev/null 2>&1 && test "X`basename -- / 2>&1`" = "X/"; then
225
+ as_basename=basename
226
+ else
227
+ as_basename=false
228
+ fi
229
+
230
+ if (as_dir=`dirname -- /` && test "X$as_dir" = X/) >/dev/null 2>&1; then
231
+ as_dirname=dirname
232
+ else
233
+ as_dirname=false
234
+ fi
235
+
236
+ as_me=`$as_basename -- "$0" ||
237
+ $as_expr X/"$0" : '.*/\([^/][^/]*\)/*$' \| \
238
+ X"$0" : 'X\(//\)$' \| \
239
+ X"$0" : 'X\(/\)' \| . 2>/dev/null ||
240
+ $as_echo X/"$0" |
241
+ sed '/^.*\/\([^/][^/]*\)\/*$/{
242
+ s//\1/
243
+ q
244
+ }
245
+ /^X\/\(\/\/\)$/{
246
+ s//\1/
247
+ q
248
+ }
249
+ /^X\/\(\/\).*/{
250
+ s//\1/
251
+ q
252
+ }
253
+ s/.*/./; q'`
254
+
255
+ # Avoid depending upon Character Ranges.
256
+ as_cr_letters='abcdefghijklmnopqrstuvwxyz'
257
+ as_cr_LETTERS='ABCDEFGHIJKLMNOPQRSTUVWXYZ'
258
+ as_cr_Letters=$as_cr_letters$as_cr_LETTERS
259
+ as_cr_digits='0123456789'
260
+ as_cr_alnum=$as_cr_Letters$as_cr_digits
261
+
262
+ ECHO_C= ECHO_N= ECHO_T=
263
+ case `echo -n x` in #(((((
264
+ -n*)
265
+ case `echo 'xy\c'` in
266
+ *c*) ECHO_T=' ';; # ECHO_T is single tab character.
267
+ xy) ECHO_C='\c';;
268
+ *) echo `echo ksh88 bug on AIX 6.1` > /dev/null
269
+ ECHO_T=' ';;
270
+ esac;;
271
+ *)
272
+ ECHO_N='-n';;
273
+ esac
274
+
275
+ rm -f conf$$ conf$$.exe conf$$.file
276
+ if test -d conf$$.dir; then
277
+ rm -f conf$$.dir/conf$$.file
278
+ else
279
+ rm -f conf$$.dir
280
+ mkdir conf$$.dir 2>/dev/null
281
+ fi
282
+ if (echo >conf$$.file) 2>/dev/null; then
283
+ if ln -s conf$$.file conf$$ 2>/dev/null; then
284
+ as_ln_s='ln -s'
285
+ # ... but there are two gotchas:
286
+ # 1) On MSYS, both `ln -s file dir' and `ln file dir' fail.
287
+ # 2) DJGPP < 2.04 has no symlinks; `ln -s' creates a wrapper executable.
288
+ # In both cases, we have to default to `cp -pR'.
289
+ ln -s conf$$.file conf$$.dir 2>/dev/null && test ! -f conf$$.exe ||
290
+ as_ln_s='cp -pR'
291
+ elif ln conf$$.file conf$$ 2>/dev/null; then
292
+ as_ln_s=ln
293
+ else
294
+ as_ln_s='cp -pR'
295
+ fi
296
+ else
297
+ as_ln_s='cp -pR'
298
+ fi
299
+ rm -f conf$$ conf$$.exe conf$$.dir/conf$$.file conf$$.file
300
+ rmdir conf$$.dir 2>/dev/null
301
+
302
+
303
+ # as_fn_mkdir_p
304
+ # -------------
305
+ # Create "$as_dir" as a directory, including parents if necessary.
306
+ as_fn_mkdir_p ()
307
+ {
308
+
309
+ case $as_dir in #(
310
+ -*) as_dir=./$as_dir;;
311
+ esac
312
+ test -d "$as_dir" || eval $as_mkdir_p || {
313
+ as_dirs=
314
+ while :; do
315
+ case $as_dir in #(
316
+ *\'*) as_qdir=`$as_echo "$as_dir" | sed "s/'/'\\\\\\\\''/g"`;; #'(
317
+ *) as_qdir=$as_dir;;
318
+ esac
319
+ as_dirs="'$as_qdir' $as_dirs"
320
+ as_dir=`$as_dirname -- "$as_dir" ||
321
+ $as_expr X"$as_dir" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \
322
+ X"$as_dir" : 'X\(//\)[^/]' \| \
323
+ X"$as_dir" : 'X\(//\)$' \| \
324
+ X"$as_dir" : 'X\(/\)' \| . 2>/dev/null ||
325
+ $as_echo X"$as_dir" |
326
+ sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{
327
+ s//\1/
328
+ q
329
+ }
330
+ /^X\(\/\/\)[^/].*/{
331
+ s//\1/
332
+ q
333
+ }
334
+ /^X\(\/\/\)$/{
335
+ s//\1/
336
+ q
337
+ }
338
+ /^X\(\/\).*/{
339
+ s//\1/
340
+ q
341
+ }
342
+ s/.*/./; q'`
343
+ test -d "$as_dir" && break
344
+ done
345
+ test -z "$as_dirs" || eval "mkdir $as_dirs"
346
+ } || test -d "$as_dir" || as_fn_error $? "cannot create directory $as_dir"
347
+
348
+
349
+ } # as_fn_mkdir_p
350
+ if mkdir -p . 2>/dev/null; then
351
+ as_mkdir_p='mkdir -p "$as_dir"'
352
+ else
353
+ test -d ./-p && rmdir ./-p
354
+ as_mkdir_p=false
355
+ fi
356
+
357
+
358
+ # as_fn_executable_p FILE
359
+ # -----------------------
360
+ # Test if FILE is an executable regular file.
361
+ as_fn_executable_p ()
362
+ {
363
+ test -f "$1" && test -x "$1"
364
+ } # as_fn_executable_p
365
+ as_test_x='test -x'
366
+ as_executable_p=as_fn_executable_p
367
+
368
+ # Sed expression to map a string onto a valid CPP name.
369
+ as_tr_cpp="eval sed 'y%*$as_cr_letters%P$as_cr_LETTERS%;s%[^_$as_cr_alnum]%_%g'"
370
+
371
+ # Sed expression to map a string onto a valid variable name.
372
+ as_tr_sh="eval sed 'y%*+%pp%;s%[^_$as_cr_alnum]%_%g'"
373
+
374
+
375
+ exec 6>&1
376
+ ## ----------------------------------- ##
377
+ ## Main body of $CONFIG_STATUS script. ##
378
+ ## ----------------------------------- ##
379
+ # Save the log message, to keep $0 and so on meaningful, and to
380
+ # report actual input values of CONFIG_FILES etc. instead of their
381
+ # values after options handling.
382
+ ac_log="
383
+ This file was extended by xnd $as_me 0.2.0dev3, which was
384
+ generated by GNU Autoconf 2.69. Invocation command line was
385
+
386
+ CONFIG_FILES = $CONFIG_FILES
387
+ CONFIG_HEADERS = $CONFIG_HEADERS
388
+ CONFIG_LINKS = $CONFIG_LINKS
389
+ CONFIG_COMMANDS = $CONFIG_COMMANDS
390
+ $ $0 $@
391
+
392
+ on `(hostname || uname -n) 2>/dev/null | sed 1q`
393
+ "
394
+
395
+ # Files that config.status was made for.
396
+ config_files=" Makefile libxnd/Makefile libxnd/tests/Makefile"
397
+ config_headers=" config.h"
398
+
399
+ ac_cs_usage="\
400
+ \`$as_me' instantiates files and other configuration actions
401
+ from templates according to the current configuration. Unless the files
402
+ and actions are specified as TAGs, all are instantiated by default.
403
+
404
+ Usage: $0 [OPTION]... [TAG]...
405
+
406
+ -h, --help print this help, then exit
407
+ -V, --version print version number and configuration settings, then exit
408
+ --config print configuration, then exit
409
+ -q, --quiet, --silent
410
+ do not print progress messages
411
+ -d, --debug don't remove temporary files
412
+ --recheck update $as_me by reconfiguring in the same conditions
413
+ --file=FILE[:TEMPLATE]
414
+ instantiate the configuration file FILE
415
+ --header=FILE[:TEMPLATE]
416
+ instantiate the configuration header FILE
417
+
418
+ Configuration files:
419
+ $config_files
420
+
421
+ Configuration headers:
422
+ $config_headers
423
+
424
+ Report bugs to <skrah@bytereef.org>.
425
+ xnd home page: <https://github.com/plures/>."
426
+
427
+ ac_cs_config="'--prefix=/home/sameer/gitrepos/xnd-ruby/xnd/ext/ruby_xnd' '--with-docs=no' '--with-includes=/home/sameer/.rvm/gems/ruby-2.4.1/gems/ndtypes-0.2.0dev6/ext/ruby_ndtypes/include'"
428
+ ac_cs_version="\
429
+ xnd config.status 0.2.0dev3
430
+ configured by ./configure, generated by GNU Autoconf 2.69,
431
+ with options \"$ac_cs_config\"
432
+
433
+ Copyright (C) 2012 Free Software Foundation, Inc.
434
+ This config.status script is free software; the Free Software Foundation
435
+ gives unlimited permission to copy, distribute and modify it."
436
+
437
+ ac_pwd='/home/sameer/gitrepos/xnd-ruby/xnd/ext/ruby_xnd/xnd'
438
+ srcdir='.'
439
+ INSTALL='/usr/bin/install -c'
440
+ test -n "$AWK" || AWK=awk
441
+ # The default lists apply if the user does not specify any file.
442
+ ac_need_defaults=:
443
+ while test $# != 0
444
+ do
445
+ case $1 in
446
+ --*=?*)
447
+ ac_option=`expr "X$1" : 'X\([^=]*\)='`
448
+ ac_optarg=`expr "X$1" : 'X[^=]*=\(.*\)'`
449
+ ac_shift=:
450
+ ;;
451
+ --*=)
452
+ ac_option=`expr "X$1" : 'X\([^=]*\)='`
453
+ ac_optarg=
454
+ ac_shift=:
455
+ ;;
456
+ *)
457
+ ac_option=$1
458
+ ac_optarg=$2
459
+ ac_shift=shift
460
+ ;;
461
+ esac
462
+
463
+ case $ac_option in
464
+ # Handling of the options.
465
+ -recheck | --recheck | --rechec | --reche | --rech | --rec | --re | --r)
466
+ ac_cs_recheck=: ;;
467
+ --version | --versio | --versi | --vers | --ver | --ve | --v | -V )
468
+ $as_echo "$ac_cs_version"; exit ;;
469
+ --config | --confi | --conf | --con | --co | --c )
470
+ $as_echo "$ac_cs_config"; exit ;;
471
+ --debug | --debu | --deb | --de | --d | -d )
472
+ debug=: ;;
473
+ --file | --fil | --fi | --f )
474
+ $ac_shift
475
+ case $ac_optarg in
476
+ *\'*) ac_optarg=`$as_echo "$ac_optarg" | sed "s/'/'\\\\\\\\''/g"` ;;
477
+ '') as_fn_error $? "missing file argument" ;;
478
+ esac
479
+ as_fn_append CONFIG_FILES " '$ac_optarg'"
480
+ ac_need_defaults=false;;
481
+ --header | --heade | --head | --hea )
482
+ $ac_shift
483
+ case $ac_optarg in
484
+ *\'*) ac_optarg=`$as_echo "$ac_optarg" | sed "s/'/'\\\\\\\\''/g"` ;;
485
+ esac
486
+ as_fn_append CONFIG_HEADERS " '$ac_optarg'"
487
+ ac_need_defaults=false;;
488
+ --he | --h)
489
+ # Conflict between --help and --header
490
+ as_fn_error $? "ambiguous option: \`$1'
491
+ Try \`$0 --help' for more information.";;
492
+ --help | --hel | -h )
493
+ $as_echo "$ac_cs_usage"; exit ;;
494
+ -q | -quiet | --quiet | --quie | --qui | --qu | --q \
495
+ | -silent | --silent | --silen | --sile | --sil | --si | --s)
496
+ ac_cs_silent=: ;;
497
+
498
+ # This is an error.
499
+ -*) as_fn_error $? "unrecognized option: \`$1'
500
+ Try \`$0 --help' for more information." ;;
501
+
502
+ *) as_fn_append ac_config_targets " $1"
503
+ ac_need_defaults=false ;;
504
+
505
+ esac
506
+ shift
507
+ done
508
+
509
+ ac_configure_extra_args=
510
+
511
+ if $ac_cs_silent; then
512
+ exec 6>/dev/null
513
+ ac_configure_extra_args="$ac_configure_extra_args --silent"
514
+ fi
515
+
516
+ if $ac_cs_recheck; then
517
+ set X /bin/bash './configure' '--prefix=/home/sameer/gitrepos/xnd-ruby/xnd/ext/ruby_xnd' '--with-docs=no' '--with-includes=/home/sameer/.rvm/gems/ruby-2.4.1/gems/ndtypes-0.2.0dev6/ext/ruby_ndtypes/include' $ac_configure_extra_args --no-create --no-recursion
518
+ shift
519
+ $as_echo "running CONFIG_SHELL=/bin/bash $*" >&6
520
+ CONFIG_SHELL='/bin/bash'
521
+ export CONFIG_SHELL
522
+ exec "$@"
523
+ fi
524
+
525
+ exec 5>>config.log
526
+ {
527
+ echo
528
+ sed 'h;s/./-/g;s/^.../## /;s/...$/ ##/;p;x;p;x' <<_ASBOX
529
+ ## Running $as_me. ##
530
+ _ASBOX
531
+ $as_echo "$ac_log"
532
+ } >&5
533
+
534
+
535
+ # Handling of arguments.
536
+ for ac_config_target in $ac_config_targets
537
+ do
538
+ case $ac_config_target in
539
+ "config.h") CONFIG_HEADERS="$CONFIG_HEADERS config.h" ;;
540
+ "Makefile") CONFIG_FILES="$CONFIG_FILES Makefile" ;;
541
+ "libxnd/Makefile") CONFIG_FILES="$CONFIG_FILES libxnd/Makefile" ;;
542
+ "libxnd/tests/Makefile") CONFIG_FILES="$CONFIG_FILES libxnd/tests/Makefile" ;;
543
+
544
+ *) as_fn_error $? "invalid argument: \`$ac_config_target'" "$LINENO" 5;;
545
+ esac
546
+ done
547
+
548
+
549
+ # If the user did not use the arguments to specify the items to instantiate,
550
+ # then the envvar interface is used. Set only those that are not.
551
+ # We use the long form for the default assignment because of an extremely
552
+ # bizarre bug on SunOS 4.1.3.
553
+ if $ac_need_defaults; then
554
+ test "${CONFIG_FILES+set}" = set || CONFIG_FILES=$config_files
555
+ test "${CONFIG_HEADERS+set}" = set || CONFIG_HEADERS=$config_headers
556
+ fi
557
+
558
+ # Have a temporary directory for convenience. Make it in the build tree
559
+ # simply because there is no reason against having it here, and in addition,
560
+ # creating and moving files from /tmp can sometimes cause problems.
561
+ # Hook for its removal unless debugging.
562
+ # Note that there is a small window in which the directory will not be cleaned:
563
+ # after its creation but before its name has been assigned to `$tmp'.
564
+ $debug ||
565
+ {
566
+ tmp= ac_tmp=
567
+ trap 'exit_status=$?
568
+ : "${ac_tmp:=$tmp}"
569
+ { test ! -d "$ac_tmp" || rm -fr "$ac_tmp"; } && exit $exit_status
570
+ ' 0
571
+ trap 'as_fn_exit 1' 1 2 13 15
572
+ }
573
+ # Create a (secure) tmp directory for tmp files.
574
+
575
+ {
576
+ tmp=`(umask 077 && mktemp -d "./confXXXXXX") 2>/dev/null` &&
577
+ test -d "$tmp"
578
+ } ||
579
+ {
580
+ tmp=./conf$$-$RANDOM
581
+ (umask 077 && mkdir "$tmp")
582
+ } || as_fn_error $? "cannot create a temporary directory in ." "$LINENO" 5
583
+ ac_tmp=$tmp
584
+
585
+ # Set up the scripts for CONFIG_FILES section.
586
+ # No need to generate them if there are no CONFIG_FILES.
587
+ # This happens for instance with `./config.status config.h'.
588
+ if test -n "$CONFIG_FILES"; then
589
+
590
+
591
+ ac_cr=`echo X | tr X '\015'`
592
+ # On cygwin, bash can eat \r inside `` if the user requested igncr.
593
+ # But we know of no other shell where ac_cr would be empty at this
594
+ # point, so we can use a bashism as a fallback.
595
+ if test "x$ac_cr" = x; then
596
+ eval ac_cr=\$\'\\r\'
597
+ fi
598
+ ac_cs_awk_cr=`$AWK 'BEGIN { print "a\rb" }' </dev/null 2>/dev/null`
599
+ if test "$ac_cs_awk_cr" = "a${ac_cr}b"; then
600
+ ac_cs_awk_cr='\\r'
601
+ else
602
+ ac_cs_awk_cr=$ac_cr
603
+ fi
604
+
605
+ echo 'BEGIN {' >"$ac_tmp/subs1.awk" &&
606
+ cat >>"$ac_tmp/subs1.awk" <<\_ACAWK &&
607
+ S["LTLIBOBJS"]=""
608
+ S["LIBOBJS"]=""
609
+ S["CONFIGURE_LDFLAGS"]=" -shared -Wl,-soname,libxnd.so.0"
610
+ S["CONFIGURE_CXXFLAGS"]=" -Wall -Wextra -O2 -g"
611
+ S["CONFIGURE_CFLAGS"]=" -Wall -Wextra -std=c11 -pedantic -O2 -g"
612
+ S["XND_OPT"]="-O2 -g"
613
+ S["XND_WARN"]="-Wall -Wextra -std=c11 -pedantic"
614
+ S["LD"]="g++"
615
+ S["NDT_INSTALL_DOCS"]=""
616
+ S["CONFIGURE_LIBS_TEST"]="../../ndtypes/libndtypes"
617
+ S["CONFIGURE_LIBS"]="../ndtypes/libndtypes"
618
+ S["CONFIGURE_INCLUDES_TEST"]="/home/sameer/.rvm/gems/ruby-2.4.1/gems/ndtypes-0.2.0dev6/ext/ruby_ndtypes/include"
619
+ S["CONFIGURE_INCLUDES"]="/home/sameer/.rvm/gems/ruby-2.4.1/gems/ndtypes-0.2.0dev6/ext/ruby_ndtypes/include"
620
+ S["CONFIGURE_CUDA_CXXFLAGS"]=""
621
+ S["CUDA_CXX"]=""
622
+ S["INSTALL"]="/usr/bin/install -c"
623
+ S["INSTALL_DATA"]="${INSTALL} -m 644"
624
+ S["INSTALL_SCRIPT"]="${INSTALL}"
625
+ S["INSTALL_PROGRAM"]="${INSTALL}"
626
+ S["EGREP"]="/bin/grep -E"
627
+ S["GREP"]="/bin/grep"
628
+ S["CPP"]="gcc -E"
629
+ S["RANLIB"]="ranlib"
630
+ S["AR"]="ar"
631
+ S["ac_ct_CXX"]="g++"
632
+ S["CXXFLAGS"]=""
633
+ S["CXX"]="g++"
634
+ S["OBJEXT"]="o"
635
+ S["EXEEXT"]=""
636
+ S["ac_ct_CC"]="gcc"
637
+ S["CPPFLAGS"]=""
638
+ S["LDFLAGS"]=""
639
+ S["CFLAGS"]=""
640
+ S["CC"]="gcc"
641
+ S["host_os"]="linux-gnu"
642
+ S["host_vendor"]="unknown"
643
+ S["host_cpu"]="x86_64"
644
+ S["host"]="x86_64-unknown-linux-gnu"
645
+ S["build_os"]="linux-gnu"
646
+ S["build_vendor"]="unknown"
647
+ S["build_cpu"]="x86_64"
648
+ S["build"]="x86_64-unknown-linux-gnu"
649
+ S["LIBSHARED"]="libxnd.so.0.2.0dev3"
650
+ S["LIBSONAME"]="libxnd.so.0"
651
+ S["LIBNAME"]="libxnd.so"
652
+ S["LIBRARY_PATH"]="LD_LIBRARY_PATH"
653
+ S["LIBSTATIC"]="libxnd.a"
654
+ S["target_alias"]=""
655
+ S["host_alias"]=""
656
+ S["build_alias"]=""
657
+ S["LIBS"]=""
658
+ S["ECHO_T"]=""
659
+ S["ECHO_N"]="-n"
660
+ S["ECHO_C"]=""
661
+ S["DEFS"]="-DHAVE_CONFIG_H"
662
+ S["mandir"]="${datarootdir}/man"
663
+ S["localedir"]="${datarootdir}/locale"
664
+ S["libdir"]="${exec_prefix}/lib"
665
+ S["psdir"]="${docdir}"
666
+ S["pdfdir"]="${docdir}"
667
+ S["dvidir"]="${docdir}"
668
+ S["htmldir"]="${docdir}"
669
+ S["infodir"]="${datarootdir}/info"
670
+ S["docdir"]="${datarootdir}/doc/${PACKAGE_TARNAME}"
671
+ S["oldincludedir"]="/usr/include"
672
+ S["includedir"]="${prefix}/include"
673
+ S["runstatedir"]="${localstatedir}/run"
674
+ S["localstatedir"]="${prefix}/var"
675
+ S["sharedstatedir"]="${prefix}/com"
676
+ S["sysconfdir"]="${prefix}/etc"
677
+ S["datadir"]="${datarootdir}"
678
+ S["datarootdir"]="${prefix}/share"
679
+ S["libexecdir"]="${exec_prefix}/libexec"
680
+ S["sbindir"]="${exec_prefix}/sbin"
681
+ S["bindir"]="${exec_prefix}/bin"
682
+ S["program_transform_name"]="s,x,x,"
683
+ S["prefix"]="/home/sameer/gitrepos/xnd-ruby/xnd/ext/ruby_xnd"
684
+ S["exec_prefix"]="${prefix}"
685
+ S["PACKAGE_URL"]="https://github.com/plures/"
686
+ S["PACKAGE_BUGREPORT"]="skrah@bytereef.org"
687
+ S["PACKAGE_STRING"]="xnd 0.2.0dev3"
688
+ S["PACKAGE_VERSION"]="0.2.0dev3"
689
+ S["PACKAGE_TARNAME"]="xnd"
690
+ S["PACKAGE_NAME"]="xnd"
691
+ S["PATH_SEPARATOR"]=":"
692
+ S["SHELL"]="/bin/bash"
693
+ _ACAWK
694
+ cat >>"$ac_tmp/subs1.awk" <<_ACAWK &&
695
+ for (key in S) S_is_set[key] = 1
696
+ FS = ""
697
+
698
+ }
699
+ {
700
+ line = $ 0
701
+ nfields = split(line, field, "@")
702
+ substed = 0
703
+ len = length(field[1])
704
+ for (i = 2; i < nfields; i++) {
705
+ key = field[i]
706
+ keylen = length(key)
707
+ if (S_is_set[key]) {
708
+ value = S[key]
709
+ line = substr(line, 1, len) "" value "" substr(line, len + keylen + 3)
710
+ len += length(value) + length(field[++i])
711
+ substed = 1
712
+ } else
713
+ len += 1 + keylen
714
+ }
715
+
716
+ print line
717
+ }
718
+
719
+ _ACAWK
720
+ if sed "s/$ac_cr//" < /dev/null > /dev/null 2>&1; then
721
+ sed "s/$ac_cr\$//; s/$ac_cr/$ac_cs_awk_cr/g"
722
+ else
723
+ cat
724
+ fi < "$ac_tmp/subs1.awk" > "$ac_tmp/subs.awk" \
725
+ || as_fn_error $? "could not setup config files machinery" "$LINENO" 5
726
+ fi # test -n "$CONFIG_FILES"
727
+
728
+ # Set up the scripts for CONFIG_HEADERS section.
729
+ # No need to generate them if there are no CONFIG_HEADERS.
730
+ # This happens for instance with `./config.status Makefile'.
731
+ if test -n "$CONFIG_HEADERS"; then
732
+ cat >"$ac_tmp/defines.awk" <<\_ACAWK ||
733
+ BEGIN {
734
+ D["PACKAGE_NAME"]=" \"xnd\""
735
+ D["PACKAGE_TARNAME"]=" \"xnd\""
736
+ D["PACKAGE_VERSION"]=" \"0.2.0dev3\""
737
+ D["PACKAGE_STRING"]=" \"xnd 0.2.0dev3\""
738
+ D["PACKAGE_BUGREPORT"]=" \"skrah@bytereef.org\""
739
+ D["PACKAGE_URL"]=" \"https://github.com/plures/\""
740
+ D["STDC_HEADERS"]=" 1"
741
+ for (key in D) D_is_set[key] = 1
742
+ FS = ""
743
+ }
744
+ /^[\t ]*#[\t ]*(define|undef)[\t ]+[_abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ][_abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789]*([\t (]|$)/ {
745
+ line = $ 0
746
+ split(line, arg, " ")
747
+ if (arg[1] == "#") {
748
+ defundef = arg[2]
749
+ mac1 = arg[3]
750
+ } else {
751
+ defundef = substr(arg[1], 2)
752
+ mac1 = arg[2]
753
+ }
754
+ split(mac1, mac2, "(") #)
755
+ macro = mac2[1]
756
+ prefix = substr(line, 1, index(line, defundef) - 1)
757
+ if (D_is_set[macro]) {
758
+ # Preserve the white space surrounding the "#".
759
+ print prefix "define", macro P[macro] D[macro]
760
+ next
761
+ } else {
762
+ # Replace #undef with comments. This is necessary, for example,
763
+ # in the case of _POSIX_SOURCE, which is predefined and required
764
+ # on some systems where configure will not decide to define it.
765
+ if (defundef == "undef") {
766
+ print "/*", prefix defundef, macro, "*/"
767
+ next
768
+ }
769
+ }
770
+ }
771
+ { print }
772
+ _ACAWK
773
+ as_fn_error $? "could not setup config headers machinery" "$LINENO" 5
774
+ fi # test -n "$CONFIG_HEADERS"
775
+
776
+
777
+ eval set X " :F $CONFIG_FILES :H $CONFIG_HEADERS "
778
+ shift
779
+ for ac_tag
780
+ do
781
+ case $ac_tag in
782
+ :[FHLC]) ac_mode=$ac_tag; continue;;
783
+ esac
784
+ case $ac_mode$ac_tag in
785
+ :[FHL]*:*);;
786
+ :L* | :C*:*) as_fn_error $? "invalid tag \`$ac_tag'" "$LINENO" 5;;
787
+ :[FH]-) ac_tag=-:-;;
788
+ :[FH]*) ac_tag=$ac_tag:$ac_tag.in;;
789
+ esac
790
+ ac_save_IFS=$IFS
791
+ IFS=:
792
+ set x $ac_tag
793
+ IFS=$ac_save_IFS
794
+ shift
795
+ ac_file=$1
796
+ shift
797
+
798
+ case $ac_mode in
799
+ :L) ac_source=$1;;
800
+ :[FH])
801
+ ac_file_inputs=
802
+ for ac_f
803
+ do
804
+ case $ac_f in
805
+ -) ac_f="$ac_tmp/stdin";;
806
+ *) # Look for the file first in the build tree, then in the source tree
807
+ # (if the path is not absolute). The absolute path cannot be DOS-style,
808
+ # because $ac_f cannot contain `:'.
809
+ test -f "$ac_f" ||
810
+ case $ac_f in
811
+ [\\/$]*) false;;
812
+ *) test -f "$srcdir/$ac_f" && ac_f="$srcdir/$ac_f";;
813
+ esac ||
814
+ as_fn_error 1 "cannot find input file: \`$ac_f'" "$LINENO" 5;;
815
+ esac
816
+ case $ac_f in *\'*) ac_f=`$as_echo "$ac_f" | sed "s/'/'\\\\\\\\''/g"`;; esac
817
+ as_fn_append ac_file_inputs " '$ac_f'"
818
+ done
819
+
820
+ # Let's still pretend it is `configure' which instantiates (i.e., don't
821
+ # use $as_me), people would be surprised to read:
822
+ # /* config.h. Generated by config.status. */
823
+ configure_input='Generated from '`
824
+ $as_echo "$*" | sed 's|^[^:]*/||;s|:[^:]*/|, |g'
825
+ `' by configure.'
826
+ if test x"$ac_file" != x-; then
827
+ configure_input="$ac_file. $configure_input"
828
+ { $as_echo "$as_me:${as_lineno-$LINENO}: creating $ac_file" >&5
829
+ $as_echo "$as_me: creating $ac_file" >&6;}
830
+ fi
831
+ # Neutralize special characters interpreted by sed in replacement strings.
832
+ case $configure_input in #(
833
+ *\&* | *\|* | *\\* )
834
+ ac_sed_conf_input=`$as_echo "$configure_input" |
835
+ sed 's/[\\\\&|]/\\\\&/g'`;; #(
836
+ *) ac_sed_conf_input=$configure_input;;
837
+ esac
838
+
839
+ case $ac_tag in
840
+ *:-:* | *:-) cat >"$ac_tmp/stdin" \
841
+ || as_fn_error $? "could not create $ac_file" "$LINENO" 5 ;;
842
+ esac
843
+ ;;
844
+ esac
845
+
846
+ ac_dir=`$as_dirname -- "$ac_file" ||
847
+ $as_expr X"$ac_file" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \
848
+ X"$ac_file" : 'X\(//\)[^/]' \| \
849
+ X"$ac_file" : 'X\(//\)$' \| \
850
+ X"$ac_file" : 'X\(/\)' \| . 2>/dev/null ||
851
+ $as_echo X"$ac_file" |
852
+ sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{
853
+ s//\1/
854
+ q
855
+ }
856
+ /^X\(\/\/\)[^/].*/{
857
+ s//\1/
858
+ q
859
+ }
860
+ /^X\(\/\/\)$/{
861
+ s//\1/
862
+ q
863
+ }
864
+ /^X\(\/\).*/{
865
+ s//\1/
866
+ q
867
+ }
868
+ s/.*/./; q'`
869
+ as_dir="$ac_dir"; as_fn_mkdir_p
870
+ ac_builddir=.
871
+
872
+ case "$ac_dir" in
873
+ .) ac_dir_suffix= ac_top_builddir_sub=. ac_top_build_prefix= ;;
874
+ *)
875
+ ac_dir_suffix=/`$as_echo "$ac_dir" | sed 's|^\.[\\/]||'`
876
+ # A ".." for each directory in $ac_dir_suffix.
877
+ ac_top_builddir_sub=`$as_echo "$ac_dir_suffix" | sed 's|/[^\\/]*|/..|g;s|/||'`
878
+ case $ac_top_builddir_sub in
879
+ "") ac_top_builddir_sub=. ac_top_build_prefix= ;;
880
+ *) ac_top_build_prefix=$ac_top_builddir_sub/ ;;
881
+ esac ;;
882
+ esac
883
+ ac_abs_top_builddir=$ac_pwd
884
+ ac_abs_builddir=$ac_pwd$ac_dir_suffix
885
+ # for backward compatibility:
886
+ ac_top_builddir=$ac_top_build_prefix
887
+
888
+ case $srcdir in
889
+ .) # We are building in place.
890
+ ac_srcdir=.
891
+ ac_top_srcdir=$ac_top_builddir_sub
892
+ ac_abs_top_srcdir=$ac_pwd ;;
893
+ [\\/]* | ?:[\\/]* ) # Absolute name.
894
+ ac_srcdir=$srcdir$ac_dir_suffix;
895
+ ac_top_srcdir=$srcdir
896
+ ac_abs_top_srcdir=$srcdir ;;
897
+ *) # Relative name.
898
+ ac_srcdir=$ac_top_build_prefix$srcdir$ac_dir_suffix
899
+ ac_top_srcdir=$ac_top_build_prefix$srcdir
900
+ ac_abs_top_srcdir=$ac_pwd/$srcdir ;;
901
+ esac
902
+ ac_abs_srcdir=$ac_abs_top_srcdir$ac_dir_suffix
903
+
904
+
905
+ case $ac_mode in
906
+ :F)
907
+ #
908
+ # CONFIG_FILE
909
+ #
910
+
911
+ case $INSTALL in
912
+ [\\/$]* | ?:[\\/]* ) ac_INSTALL=$INSTALL ;;
913
+ *) ac_INSTALL=$ac_top_build_prefix$INSTALL ;;
914
+ esac
915
+ # If the template does not know about datarootdir, expand it.
916
+ # FIXME: This hack should be removed a few years after 2.60.
917
+ ac_datarootdir_hack=; ac_datarootdir_seen=
918
+ ac_sed_dataroot='
919
+ /datarootdir/ {
920
+ p
921
+ q
922
+ }
923
+ /@datadir@/p
924
+ /@docdir@/p
925
+ /@infodir@/p
926
+ /@localedir@/p
927
+ /@mandir@/p'
928
+ case `eval "sed -n \"\$ac_sed_dataroot\" $ac_file_inputs"` in
929
+ *datarootdir*) ac_datarootdir_seen=yes;;
930
+ *@datadir@*|*@docdir@*|*@infodir@*|*@localedir@*|*@mandir@*)
931
+ { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: $ac_file_inputs seems to ignore the --datarootdir setting" >&5
932
+ $as_echo "$as_me: WARNING: $ac_file_inputs seems to ignore the --datarootdir setting" >&2;}
933
+ ac_datarootdir_hack='
934
+ s&@datadir@&${datarootdir}&g
935
+ s&@docdir@&${datarootdir}/doc/${PACKAGE_TARNAME}&g
936
+ s&@infodir@&${datarootdir}/info&g
937
+ s&@localedir@&${datarootdir}/locale&g
938
+ s&@mandir@&${datarootdir}/man&g
939
+ s&\${datarootdir}&${prefix}/share&g' ;;
940
+ esac
941
+ ac_sed_extra="/^[ ]*VPATH[ ]*=[ ]*/{
942
+ h
943
+ s///
944
+ s/^/:/
945
+ s/[ ]*$/:/
946
+ s/:\$(srcdir):/:/g
947
+ s/:\${srcdir}:/:/g
948
+ s/:@srcdir@:/:/g
949
+ s/^:*//
950
+ s/:*$//
951
+ x
952
+ s/\(=[ ]*\).*/\1/
953
+ G
954
+ s/\n//
955
+ s/^[^=]*=[ ]*$//
956
+ }
957
+
958
+ :t
959
+ /@[a-zA-Z_][a-zA-Z_0-9]*@/!b
960
+ s|@configure_input@|$ac_sed_conf_input|;t t
961
+ s&@top_builddir@&$ac_top_builddir_sub&;t t
962
+ s&@top_build_prefix@&$ac_top_build_prefix&;t t
963
+ s&@srcdir@&$ac_srcdir&;t t
964
+ s&@abs_srcdir@&$ac_abs_srcdir&;t t
965
+ s&@top_srcdir@&$ac_top_srcdir&;t t
966
+ s&@abs_top_srcdir@&$ac_abs_top_srcdir&;t t
967
+ s&@builddir@&$ac_builddir&;t t
968
+ s&@abs_builddir@&$ac_abs_builddir&;t t
969
+ s&@abs_top_builddir@&$ac_abs_top_builddir&;t t
970
+ s&@INSTALL@&$ac_INSTALL&;t t
971
+ $ac_datarootdir_hack
972
+ "
973
+ eval sed \"\$ac_sed_extra\" "$ac_file_inputs" | $AWK -f "$ac_tmp/subs.awk" \
974
+ >$ac_tmp/out || as_fn_error $? "could not create $ac_file" "$LINENO" 5
975
+
976
+ test -z "$ac_datarootdir_hack$ac_datarootdir_seen" &&
977
+ { ac_out=`sed -n '/\${datarootdir}/p' "$ac_tmp/out"`; test -n "$ac_out"; } &&
978
+ { ac_out=`sed -n '/^[ ]*datarootdir[ ]*:*=/p' \
979
+ "$ac_tmp/out"`; test -z "$ac_out"; } &&
980
+ { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: $ac_file contains a reference to the variable \`datarootdir'
981
+ which seems to be undefined. Please make sure it is defined" >&5
982
+ $as_echo "$as_me: WARNING: $ac_file contains a reference to the variable \`datarootdir'
983
+ which seems to be undefined. Please make sure it is defined" >&2;}
984
+
985
+ rm -f "$ac_tmp/stdin"
986
+ case $ac_file in
987
+ -) cat "$ac_tmp/out" && rm -f "$ac_tmp/out";;
988
+ *) rm -f "$ac_file" && mv "$ac_tmp/out" "$ac_file";;
989
+ esac \
990
+ || as_fn_error $? "could not create $ac_file" "$LINENO" 5
991
+ ;;
992
+ :H)
993
+ #
994
+ # CONFIG_HEADER
995
+ #
996
+ if test x"$ac_file" != x-; then
997
+ {
998
+ $as_echo "/* $configure_input */" \
999
+ && eval '$AWK -f "$ac_tmp/defines.awk"' "$ac_file_inputs"
1000
+ } >"$ac_tmp/config.h" \
1001
+ || as_fn_error $? "could not create $ac_file" "$LINENO" 5
1002
+ if diff "$ac_file" "$ac_tmp/config.h" >/dev/null 2>&1; then
1003
+ { $as_echo "$as_me:${as_lineno-$LINENO}: $ac_file is unchanged" >&5
1004
+ $as_echo "$as_me: $ac_file is unchanged" >&6;}
1005
+ else
1006
+ rm -f "$ac_file"
1007
+ mv "$ac_tmp/config.h" "$ac_file" \
1008
+ || as_fn_error $? "could not create $ac_file" "$LINENO" 5
1009
+ fi
1010
+ else
1011
+ $as_echo "/* $configure_input */" \
1012
+ && eval '$AWK -f "$ac_tmp/defines.awk"' "$ac_file_inputs" \
1013
+ || as_fn_error $? "could not create -" "$LINENO" 5
1014
+ fi
1015
+ ;;
1016
+
1017
+
1018
+ esac
1019
+
1020
+ done # for ac_tag
1021
+
1022
+
1023
+ as_fn_exit 0