~ubuntu-branches/ubuntu/utopic/fcoe-utils/utopic

« back to all changes in this revision

Viewing changes to debian/patches/post-autoreconf.patch

  • Committer: Package Import Robot
  • Author(s): Daniel T Chen
  • Date: 2011-09-14 11:23:39 UTC
  • Revision ID: package-import@ubuntu.com-20110914112339-0372z3lwxr3hmgv7
Tags: 1.0.9-0ubuntu4
Add post-autoreconf.patch: Force a refresh of the build
infrastructure; it seems that lib-link-order-ftbfs-gcc4.6.patch was
not being used correctly on the buildds, which *stillresulted in
FTBFS on amd64. (LP: #770838)

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
diff -Nur -x '*.orig' -x '*~' fcoe-utils-1.0.9//aclocal.m4 fcoe-utils-1.0.9.new//aclocal.m4
 
2
--- fcoe-utils-1.0.9//aclocal.m4        2010-02-16 14:43:05.000000000 -0500
 
3
+++ fcoe-utils-1.0.9.new//aclocal.m4    2011-09-14 11:57:04.000000000 -0400
 
4
@@ -13,13 +13,14 @@
 
5
 
 
6
 m4_ifndef([AC_AUTOCONF_VERSION],
 
7
   [m4_copy([m4_PACKAGE_VERSION], [AC_AUTOCONF_VERSION])])dnl
 
8
-m4_if(m4_defn([AC_AUTOCONF_VERSION]), [2.65],,
 
9
-[m4_warning([this file was generated for autoconf 2.65.
 
10
+m4_if(m4_defn([AC_AUTOCONF_VERSION]), [2.68],,
 
11
+[m4_warning([this file was generated for autoconf 2.68.
 
12
 You have another version of autoconf.  It may work, but is not guaranteed to.
 
13
 If you have problems, you may need to regenerate the build system entirely.
 
14
 To do so, use the procedure documented by the package, typically `autoreconf'.])])
 
15
 
 
16
 # pkg.m4 - Macros to locate and utilise pkg-config.            -*- Autoconf -*-
 
17
+# serial 1 (pkg-config-0.24)
 
18
 # 
 
19
 # Copyright © 2004 Scott James Remnant <scott@netsplit.com>.
 
20
 #
 
21
@@ -46,8 +47,12 @@
 
22
 # ----------------------------------
 
23
 AC_DEFUN([PKG_PROG_PKG_CONFIG],
 
24
 [m4_pattern_forbid([^_?PKG_[A-Z_]+$])
 
25
-m4_pattern_allow([^PKG_CONFIG(_PATH)?$])
 
26
-AC_ARG_VAR([PKG_CONFIG], [path to pkg-config utility])dnl
 
27
+m4_pattern_allow([^PKG_CONFIG(_(PATH|LIBDIR|SYSROOT_DIR|ALLOW_SYSTEM_(CFLAGS|LIBS)))?$])
 
28
+m4_pattern_allow([^PKG_CONFIG_(DISABLE_UNINSTALLED|TOP_BUILD_DIR|DEBUG_SPEW)$])
 
29
+AC_ARG_VAR([PKG_CONFIG], [path to pkg-config utility])
 
30
+AC_ARG_VAR([PKG_CONFIG_PATH], [directories to add to pkg-config's search path])
 
31
+AC_ARG_VAR([PKG_CONFIG_LIBDIR], [path overriding pkg-config's built-in search path])
 
32
+
 
33
 if test "x$ac_cv_env_PKG_CONFIG_set" != "xset"; then
 
34
        AC_PATH_TOOL([PKG_CONFIG], [pkg-config])
 
35
 fi
 
36
@@ -60,7 +65,6 @@
 
37
                AC_MSG_RESULT([no])
 
38
                PKG_CONFIG=""
 
39
        fi
 
40
-               
 
41
 fi[]dnl
 
42
 ])# PKG_PROG_PKG_CONFIG
 
43
 
 
44
@@ -69,34 +73,32 @@
 
45
 # Check to see whether a particular set of modules exists.  Similar
 
46
 # to PKG_CHECK_MODULES(), but does not set variables or print errors.
 
47
 #
 
48
-#
 
49
-# Similar to PKG_CHECK_MODULES, make sure that the first instance of
 
50
-# this or PKG_CHECK_MODULES is called, or make sure to call
 
51
-# PKG_CHECK_EXISTS manually
 
52
+# Please remember that m4 expands AC_REQUIRE([PKG_PROG_PKG_CONFIG])
 
53
+# only at the first occurence in configure.ac, so if the first place
 
54
+# it's called might be skipped (such as if it is within an "if", you
 
55
+# have to call PKG_CHECK_EXISTS manually
 
56
 # --------------------------------------------------------------
 
57
 AC_DEFUN([PKG_CHECK_EXISTS],
 
58
 [AC_REQUIRE([PKG_PROG_PKG_CONFIG])dnl
 
59
 if test -n "$PKG_CONFIG" && \
 
60
     AC_RUN_LOG([$PKG_CONFIG --exists --print-errors "$1"]); then
 
61
-  m4_ifval([$2], [$2], [:])
 
62
+  m4_default([$2], [:])
 
63
 m4_ifvaln([$3], [else
 
64
   $3])dnl
 
65
 fi])
 
66
 
 
67
-
 
68
 # _PKG_CONFIG([VARIABLE], [COMMAND], [MODULES])
 
69
 # ---------------------------------------------
 
70
 m4_define([_PKG_CONFIG],
 
71
-[if test -n "$PKG_CONFIG"; then
 
72
-    if test -n "$$1"; then
 
73
-        pkg_cv_[]$1="$$1"
 
74
-    else
 
75
-        PKG_CHECK_EXISTS([$3],
 
76
-                         [pkg_cv_[]$1=`$PKG_CONFIG --[]$2 "$3" 2>/dev/null`],
 
77
-                        [pkg_failed=yes])
 
78
-    fi
 
79
-else
 
80
-       pkg_failed=untried
 
81
+[if test -n "$$1"; then
 
82
+    pkg_cv_[]$1="$$1"
 
83
+ elif test -n "$PKG_CONFIG"; then
 
84
+    PKG_CHECK_EXISTS([$3],
 
85
+                     [pkg_cv_[]$1=`$PKG_CONFIG --[]$2 "$3" 2>/dev/null`
 
86
+                     test "x$?" != "x0" && pkg_failed=yes ],
 
87
+                    [pkg_failed=yes])
 
88
+ else
 
89
+    pkg_failed=untried
 
90
 fi[]dnl
 
91
 ])# _PKG_CONFIG
 
92
 
 
93
@@ -138,16 +140,17 @@
 
94
 See the pkg-config man page for more details.])
 
95
 
 
96
 if test $pkg_failed = yes; then
 
97
+       AC_MSG_RESULT([no])
 
98
         _PKG_SHORT_ERRORS_SUPPORTED
 
99
         if test $_pkg_short_errors_supported = yes; then
 
100
-               $1[]_PKG_ERRORS=`$PKG_CONFIG --short-errors --errors-to-stdout --print-errors "$2"`
 
101
+               $1[]_PKG_ERRORS=`$PKG_CONFIG --short-errors --print-errors --cflags --libs "$2" 2>&1`
 
102
         else 
 
103
-               $1[]_PKG_ERRORS=`$PKG_CONFIG --errors-to-stdout --print-errors "$2"`
 
104
+               $1[]_PKG_ERRORS=`$PKG_CONFIG --print-errors --cflags --libs "$2" 2>&1`
 
105
         fi
 
106
        # Put the nasty error message in config.log where it belongs
 
107
        echo "$$1[]_PKG_ERRORS" >&AS_MESSAGE_LOG_FD
 
108
 
 
109
-       ifelse([$4], , [AC_MSG_ERROR(dnl
 
110
+       m4_default([$4], [AC_MSG_ERROR(
 
111
 [Package requirements ($2) were not met:
 
112
 
 
113
 $$1_PKG_ERRORS
 
114
@@ -155,25 +158,24 @@
 
115
 Consider adjusting the PKG_CONFIG_PATH environment variable if you
 
116
 installed software in a non-standard prefix.
 
117
 
 
118
-_PKG_TEXT
 
119
-])],
 
120
-               [AC_MSG_RESULT([no])
 
121
-                $4])
 
122
+_PKG_TEXT])[]dnl
 
123
+        ])
 
124
 elif test $pkg_failed = untried; then
 
125
-       ifelse([$4], , [AC_MSG_FAILURE(dnl
 
126
+       AC_MSG_RESULT([no])
 
127
+       m4_default([$4], [AC_MSG_FAILURE(
 
128
 [The pkg-config script could not be found or is too old.  Make sure it
 
129
 is in your PATH or set the PKG_CONFIG environment variable to the full
 
130
 path to pkg-config.
 
131
 
 
132
 _PKG_TEXT
 
133
 
 
134
-To get pkg-config, see <http://pkg-config.freedesktop.org/>.])],
 
135
-               [$4])
 
136
+To get pkg-config, see <http://pkg-config.freedesktop.org/>.])[]dnl
 
137
+        ])
 
138
 else
 
139
        $1[]_CFLAGS=$pkg_cv_[]$1[]_CFLAGS
 
140
        $1[]_LIBS=$pkg_cv_[]$1[]_LIBS
 
141
         AC_MSG_RESULT([yes])
 
142
-       ifelse([$3], , :, [$3])
 
143
+       $3
 
144
 fi[]dnl
 
145
 ])# PKG_CHECK_MODULES
 
146
 
 
147
diff -Nur -x '*.orig' -x '*~' fcoe-utils-1.0.9//autom4te.cache/output.0 fcoe-utils-1.0.9.new//autom4te.cache/output.0
 
148
--- fcoe-utils-1.0.9//autom4te.cache/output.0   1969-12-31 19:00:00.000000000 -0500
 
149
+++ fcoe-utils-1.0.9.new//autom4te.cache/output.0       2011-09-14 11:57:04.000000000 -0400
 
150
@@ -0,0 +1,5049 @@
 
151
+@%:@! /bin/sh
 
152
+@%:@ Guess values for system-dependent variables and create Makefiles.
 
153
+@%:@ Generated by GNU Autoconf 2.68 for fcoe-utils 1.0.9.
 
154
+@%:@
 
155
+@%:@ Report bugs to <devel@open-fcoe.org>.
 
156
+@%:@ 
 
157
+@%:@ 
 
158
+@%:@ Copyright (C) 1992, 1993, 1994, 1995, 1996, 1998, 1999, 2000, 2001,
 
159
+@%:@ 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010 Free Software
 
160
+@%:@ Foundation, Inc.
 
161
+@%:@ 
 
162
+@%:@ 
 
163
+@%:@ This configure script is free software; the Free Software Foundation
 
164
+@%:@ gives unlimited permission to copy, distribute and modify it.
 
165
+## -------------------- ##
 
166
+## M4sh Initialization. ##
 
167
+## -------------------- ##
 
168
+
 
169
+# Be more Bourne compatible
 
170
+DUALCASE=1; export DUALCASE # for MKS sh
 
171
+if test -n "${ZSH_VERSION+set}" && (emulate sh) >/dev/null 2>&1; then :
 
172
+  emulate sh
 
173
+  NULLCMD=:
 
174
+  # Pre-4.2 versions of Zsh do word splitting on ${1+"$@"}, which
 
175
+  # is contrary to our usage.  Disable this feature.
 
176
+  alias -g '${1+"$@"}'='"$@"'
 
177
+  setopt NO_GLOB_SUBST
 
178
+else
 
179
+  case `(set -o) 2>/dev/null` in @%:@(
 
180
+  *posix*) :
 
181
+    set -o posix ;; @%:@(
 
182
+  *) :
 
183
+     ;;
 
184
+esac
 
185
+fi
 
186
+
 
187
+
 
188
+as_nl='
 
189
+'
 
190
+export as_nl
 
191
+# Printing a long string crashes Solaris 7 /usr/bin/printf.
 
192
+as_echo='\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\'
 
193
+as_echo=$as_echo$as_echo$as_echo$as_echo$as_echo
 
194
+as_echo=$as_echo$as_echo$as_echo$as_echo$as_echo$as_echo
 
195
+# Prefer a ksh shell builtin over an external printf program on Solaris,
 
196
+# but without wasting forks for bash or zsh.
 
197
+if test -z "$BASH_VERSION$ZSH_VERSION" \
 
198
+    && (test "X`print -r -- $as_echo`" = "X$as_echo") 2>/dev/null; then
 
199
+  as_echo='print -r --'
 
200
+  as_echo_n='print -rn --'
 
201
+elif (test "X`printf %s $as_echo`" = "X$as_echo") 2>/dev/null; then
 
202
+  as_echo='printf %s\n'
 
203
+  as_echo_n='printf %s'
 
204
+else
 
205
+  if test "X`(/usr/ucb/echo -n -n $as_echo) 2>/dev/null`" = "X-n $as_echo"; then
 
206
+    as_echo_body='eval /usr/ucb/echo -n "$1$as_nl"'
 
207
+    as_echo_n='/usr/ucb/echo -n'
 
208
+  else
 
209
+    as_echo_body='eval expr "X$1" : "X\\(.*\\)"'
 
210
+    as_echo_n_body='eval
 
211
+      arg=$1;
 
212
+      case $arg in @%:@(
 
213
+      *"$as_nl"*)
 
214
+       expr "X$arg" : "X\\(.*\\)$as_nl";
 
215
+       arg=`expr "X$arg" : ".*$as_nl\\(.*\\)"`;;
 
216
+      esac;
 
217
+      expr "X$arg" : "X\\(.*\\)" | tr -d "$as_nl"
 
218
+    '
 
219
+    export as_echo_n_body
 
220
+    as_echo_n='sh -c $as_echo_n_body as_echo'
 
221
+  fi
 
222
+  export as_echo_body
 
223
+  as_echo='sh -c $as_echo_body as_echo'
 
224
+fi
 
225
+
 
226
+# The user is always right.
 
227
+if test "${PATH_SEPARATOR+set}" != set; then
 
228
+  PATH_SEPARATOR=:
 
229
+  (PATH='/bin;/bin'; FPATH=$PATH; sh -c :) >/dev/null 2>&1 && {
 
230
+    (PATH='/bin:/bin'; FPATH=$PATH; sh -c :) >/dev/null 2>&1 ||
 
231
+      PATH_SEPARATOR=';'
 
232
+  }
 
233
+fi
 
234
+
 
235
+
 
236
+# IFS
 
237
+# We need space, tab and new line, in precisely that order.  Quoting is
 
238
+# there to prevent editors from complaining about space-tab.
 
239
+# (If _AS_PATH_WALK were called with IFS unset, it would disable word
 
240
+# splitting by setting IFS to empty value.)
 
241
+IFS=" ""       $as_nl"
 
242
+
 
243
+# Find who we are.  Look in the path if we contain no directory separator.
 
244
+as_myself=
 
245
+case $0 in @%:@((
 
246
+  *[\\/]* ) as_myself=$0 ;;
 
247
+  *) as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
 
248
+for as_dir in $PATH
 
249
+do
 
250
+  IFS=$as_save_IFS
 
251
+  test -z "$as_dir" && as_dir=.
 
252
+    test -r "$as_dir/$0" && as_myself=$as_dir/$0 && break
 
253
+  done
 
254
+IFS=$as_save_IFS
 
255
+
 
256
+     ;;
 
257
+esac
 
258
+# We did not find ourselves, most probably we were run as `sh COMMAND'
 
259
+# in which case we are not to be found in the path.
 
260
+if test "x$as_myself" = x; then
 
261
+  as_myself=$0
 
262
+fi
 
263
+if test ! -f "$as_myself"; then
 
264
+  $as_echo "$as_myself: error: cannot find myself; rerun with an absolute file name" >&2
 
265
+  exit 1
 
266
+fi
 
267
+
 
268
+# Unset variables that we do not need and which cause bugs (e.g. in
 
269
+# pre-3.0 UWIN ksh).  But do not cause bugs in bash 2.01; the "|| exit 1"
 
270
+# suppresses any "Segmentation fault" message there.  '((' could
 
271
+# trigger a bug in pdksh 5.2.14.
 
272
+for as_var in BASH_ENV ENV MAIL MAILPATH
 
273
+do eval test x\${$as_var+set} = xset \
 
274
+  && ( (unset $as_var) || exit 1) >/dev/null 2>&1 && unset $as_var || :
 
275
+done
 
276
+PS1='$ '
 
277
+PS2='> '
 
278
+PS4='+ '
 
279
+
 
280
+# NLS nuisances.
 
281
+LC_ALL=C
 
282
+export LC_ALL
 
283
+LANGUAGE=C
 
284
+export LANGUAGE
 
285
+
 
286
+# CDPATH.
 
287
+(unset CDPATH) >/dev/null 2>&1 && unset CDPATH
 
288
+
 
289
+if test "x$CONFIG_SHELL" = x; then
 
290
+  as_bourne_compatible="if test -n \"\${ZSH_VERSION+set}\" && (emulate sh) >/dev/null 2>&1; then :
 
291
+  emulate sh
 
292
+  NULLCMD=:
 
293
+  # Pre-4.2 versions of Zsh do word splitting on \${1+\"\$@\"}, which
 
294
+  # is contrary to our usage.  Disable this feature.
 
295
+  alias -g '\${1+\"\$@\"}'='\"\$@\"'
 
296
+  setopt NO_GLOB_SUBST
 
297
+else
 
298
+  case \`(set -o) 2>/dev/null\` in @%:@(
 
299
+  *posix*) :
 
300
+    set -o posix ;; @%:@(
 
301
+  *) :
 
302
+     ;;
 
303
+esac
 
304
+fi
 
305
+"
 
306
+  as_required="as_fn_return () { (exit \$1); }
 
307
+as_fn_success () { as_fn_return 0; }
 
308
+as_fn_failure () { as_fn_return 1; }
 
309
+as_fn_ret_success () { return 0; }
 
310
+as_fn_ret_failure () { return 1; }
 
311
+
 
312
+exitcode=0
 
313
+as_fn_success || { exitcode=1; echo as_fn_success failed.; }
 
314
+as_fn_failure && { exitcode=1; echo as_fn_failure succeeded.; }
 
315
+as_fn_ret_success || { exitcode=1; echo as_fn_ret_success failed.; }
 
316
+as_fn_ret_failure && { exitcode=1; echo as_fn_ret_failure succeeded.; }
 
317
+if ( set x; as_fn_ret_success y && test x = \"\$1\" ); then :
 
318
+  
 
319
+else
 
320
+  exitcode=1; echo positional parameters were not saved.
 
321
+fi
 
322
+test x\$exitcode = x0 || exit 1"
 
323
+  as_suggested="  as_lineno_1=";as_suggested=$as_suggested$LINENO;as_suggested=$as_suggested" as_lineno_1a=\$LINENO
 
324
+  as_lineno_2=";as_suggested=$as_suggested$LINENO;as_suggested=$as_suggested" as_lineno_2a=\$LINENO
 
325
+  eval 'test \"x\$as_lineno_1'\$as_run'\" != \"x\$as_lineno_2'\$as_run'\" &&
 
326
+  test \"x\`expr \$as_lineno_1'\$as_run' + 1\`\" = \"x\$as_lineno_2'\$as_run'\"' || exit 1"
 
327
+  if (eval "$as_required") 2>/dev/null; then :
 
328
+  as_have_required=yes
 
329
+else
 
330
+  as_have_required=no
 
331
+fi
 
332
+  if test x$as_have_required = xyes && (eval "$as_suggested") 2>/dev/null; then :
 
333
+  
 
334
+else
 
335
+  as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
 
336
+as_found=false
 
337
+for as_dir in /bin$PATH_SEPARATOR/usr/bin$PATH_SEPARATOR$PATH
 
338
+do
 
339
+  IFS=$as_save_IFS
 
340
+  test -z "$as_dir" && as_dir=.
 
341
+  as_found=:
 
342
+  case $as_dir in @%:@(
 
343
+        /*)
 
344
+          for as_base in sh bash ksh sh5; do
 
345
+            # Try only shells that exist, to save several forks.
 
346
+            as_shell=$as_dir/$as_base
 
347
+            if { test -f "$as_shell" || test -f "$as_shell.exe"; } &&
 
348
+                   { $as_echo "$as_bourne_compatible""$as_required" | as_run=a "$as_shell"; } 2>/dev/null; then :
 
349
+  CONFIG_SHELL=$as_shell as_have_required=yes
 
350
+                  if { $as_echo "$as_bourne_compatible""$as_suggested" | as_run=a "$as_shell"; } 2>/dev/null; then :
 
351
+  break 2
 
352
+fi
 
353
+fi
 
354
+          done;;
 
355
+       esac
 
356
+  as_found=false
 
357
+done
 
358
+$as_found || { if { test -f "$SHELL" || test -f "$SHELL.exe"; } &&
 
359
+             { $as_echo "$as_bourne_compatible""$as_required" | as_run=a "$SHELL"; } 2>/dev/null; then :
 
360
+  CONFIG_SHELL=$SHELL as_have_required=yes
 
361
+fi; }
 
362
+IFS=$as_save_IFS
 
363
+
 
364
+
 
365
+      if test "x$CONFIG_SHELL" != x; then :
 
366
+  # We cannot yet assume a decent shell, so we have to provide a
 
367
+       # neutralization value for shells without unset; and this also
 
368
+       # works around shells that cannot unset nonexistent variables.
 
369
+       # Preserve -v and -x to the replacement shell.
 
370
+       BASH_ENV=/dev/null
 
371
+       ENV=/dev/null
 
372
+       (unset BASH_ENV) >/dev/null 2>&1 && unset BASH_ENV ENV
 
373
+       export CONFIG_SHELL
 
374
+       case $- in @%:@ ((((
 
375
+         *v*x* | *x*v* ) as_opts=-vx ;;
 
376
+         *v* ) as_opts=-v ;;
 
377
+         *x* ) as_opts=-x ;;
 
378
+         * ) as_opts= ;;
 
379
+       esac
 
380
+       exec "$CONFIG_SHELL" $as_opts "$as_myself" ${1+"$@"}
 
381
+fi
 
382
+
 
383
+    if test x$as_have_required = xno; then :
 
384
+  $as_echo "$0: This script requires a shell more modern than all"
 
385
+  $as_echo "$0: the shells that I found on your system."
 
386
+  if test x${ZSH_VERSION+set} = xset ; then
 
387
+    $as_echo "$0: In particular, zsh $ZSH_VERSION has bugs and should"
 
388
+    $as_echo "$0: be upgraded to zsh 4.3.4 or later."
 
389
+  else
 
390
+    $as_echo "$0: Please tell bug-autoconf@gnu.org and
 
391
+$0: devel@open-fcoe.org about your system, including any
 
392
+$0: error possibly output before this message. Then install
 
393
+$0: a modern shell, or manually run the script under such a
 
394
+$0: shell if you do have one."
 
395
+  fi
 
396
+  exit 1
 
397
+fi
 
398
+fi
 
399
+fi
 
400
+SHELL=${CONFIG_SHELL-/bin/sh}
 
401
+export SHELL
 
402
+# Unset more variables known to interfere with behavior of common tools.
 
403
+CLICOLOR_FORCE= GREP_OPTIONS=
 
404
+unset CLICOLOR_FORCE GREP_OPTIONS
 
405
+
 
406
+## --------------------- ##
 
407
+## M4sh Shell Functions. ##
 
408
+## --------------------- ##
 
409
+@%:@ as_fn_unset VAR
 
410
+@%:@ ---------------
 
411
+@%:@ Portably unset VAR.
 
412
+as_fn_unset ()
 
413
+{
 
414
+  { eval $1=; unset $1;}
 
415
+}
 
416
+as_unset=as_fn_unset
 
417
+
 
418
+@%:@ as_fn_set_status STATUS
 
419
+@%:@ -----------------------
 
420
+@%:@ Set @S|@? to STATUS, without forking.
 
421
+as_fn_set_status ()
 
422
+{
 
423
+  return $1
 
424
+} @%:@ as_fn_set_status
 
425
+
 
426
+@%:@ as_fn_exit STATUS
 
427
+@%:@ -----------------
 
428
+@%:@ Exit the shell with STATUS, even in a "trap 0" or "set -e" context.
 
429
+as_fn_exit ()
 
430
+{
 
431
+  set +e
 
432
+  as_fn_set_status $1
 
433
+  exit $1
 
434
+} @%:@ as_fn_exit
 
435
+
 
436
+@%:@ as_fn_mkdir_p
 
437
+@%:@ -------------
 
438
+@%:@ Create "@S|@as_dir" as a directory, including parents if necessary.
 
439
+as_fn_mkdir_p ()
 
440
+{
 
441
+
 
442
+  case $as_dir in #(
 
443
+  -*) as_dir=./$as_dir;;
 
444
+  esac
 
445
+  test -d "$as_dir" || eval $as_mkdir_p || {
 
446
+    as_dirs=
 
447
+    while :; do
 
448
+      case $as_dir in #(
 
449
+      *\'*) as_qdir=`$as_echo "$as_dir" | sed "s/'/'\\\\\\\\''/g"`;; #'(
 
450
+      *) as_qdir=$as_dir;;
 
451
+      esac
 
452
+      as_dirs="'$as_qdir' $as_dirs"
 
453
+      as_dir=`$as_dirname -- "$as_dir" ||
 
454
+$as_expr X"$as_dir" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \
 
455
+        X"$as_dir" : 'X\(//\)[^/]' \| \
 
456
+        X"$as_dir" : 'X\(//\)$' \| \
 
457
+        X"$as_dir" : 'X\(/\)' \| . 2>/dev/null ||
 
458
+$as_echo X"$as_dir" |
 
459
+    sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{
 
460
+           s//\1/
 
461
+           q
 
462
+         }
 
463
+         /^X\(\/\/\)[^/].*/{
 
464
+           s//\1/
 
465
+           q
 
466
+         }
 
467
+         /^X\(\/\/\)$/{
 
468
+           s//\1/
 
469
+           q
 
470
+         }
 
471
+         /^X\(\/\).*/{
 
472
+           s//\1/
 
473
+           q
 
474
+         }
 
475
+         s/.*/./; q'`
 
476
+      test -d "$as_dir" && break
 
477
+    done
 
478
+    test -z "$as_dirs" || eval "mkdir $as_dirs"
 
479
+  } || test -d "$as_dir" || as_fn_error $? "cannot create directory $as_dir"
 
480
+
 
481
+
 
482
+} @%:@ as_fn_mkdir_p
 
483
+@%:@ as_fn_append VAR VALUE
 
484
+@%:@ ----------------------
 
485
+@%:@ Append the text in VALUE to the end of the definition contained in VAR. Take
 
486
+@%:@ advantage of any shell optimizations that allow amortized linear growth over
 
487
+@%:@ repeated appends, instead of the typical quadratic growth present in naive
 
488
+@%:@ implementations.
 
489
+if (eval "as_var=1; as_var+=2; test x\$as_var = x12") 2>/dev/null; then :
 
490
+  eval 'as_fn_append ()
 
491
+  {
 
492
+    eval $1+=\$2
 
493
+  }'
 
494
+else
 
495
+  as_fn_append ()
 
496
+  {
 
497
+    eval $1=\$$1\$2
 
498
+  }
 
499
+fi # as_fn_append
 
500
+
 
501
+@%:@ as_fn_arith ARG...
 
502
+@%:@ ------------------
 
503
+@%:@ Perform arithmetic evaluation on the ARGs, and store the result in the
 
504
+@%:@ global @S|@as_val. Take advantage of shells that can avoid forks. The arguments
 
505
+@%:@ must be portable across @S|@(()) and expr.
 
506
+if (eval "test \$(( 1 + 1 )) = 2") 2>/dev/null; then :
 
507
+  eval 'as_fn_arith ()
 
508
+  {
 
509
+    as_val=$(( $* ))
 
510
+  }'
 
511
+else
 
512
+  as_fn_arith ()
 
513
+  {
 
514
+    as_val=`expr "$@" || test $? -eq 1`
 
515
+  }
 
516
+fi # as_fn_arith
 
517
+
 
518
+
 
519
+@%:@ as_fn_error STATUS ERROR [LINENO LOG_FD]
 
520
+@%:@ ----------------------------------------
 
521
+@%:@ Output "`basename @S|@0`: error: ERROR" to stderr. If LINENO and LOG_FD are
 
522
+@%:@ provided, also output the error to LOG_FD, referencing LINENO. Then exit the
 
523
+@%:@ script with STATUS, using 1 if that was 0.
 
524
+as_fn_error ()
 
525
+{
 
526
+  as_status=$1; test $as_status -eq 0 && as_status=1
 
527
+  if test "$4"; then
 
528
+    as_lineno=${as_lineno-"$3"} as_lineno_stack=as_lineno_stack=$as_lineno_stack
 
529
+    $as_echo "$as_me:${as_lineno-$LINENO}: error: $2" >&$4
 
530
+  fi
 
531
+  $as_echo "$as_me: error: $2" >&2
 
532
+  as_fn_exit $as_status
 
533
+} @%:@ as_fn_error
 
534
+
 
535
+if expr a : '\(a\)' >/dev/null 2>&1 &&
 
536
+   test "X`expr 00001 : '.*\(...\)'`" = X001; then
 
537
+  as_expr=expr
 
538
+else
 
539
+  as_expr=false
 
540
+fi
 
541
+
 
542
+if (basename -- /) >/dev/null 2>&1 && test "X`basename -- / 2>&1`" = "X/"; then
 
543
+  as_basename=basename
 
544
+else
 
545
+  as_basename=false
 
546
+fi
 
547
+
 
548
+if (as_dir=`dirname -- /` && test "X$as_dir" = X/) >/dev/null 2>&1; then
 
549
+  as_dirname=dirname
 
550
+else
 
551
+  as_dirname=false
 
552
+fi
 
553
+
 
554
+as_me=`$as_basename -- "$0" ||
 
555
+$as_expr X/"$0" : '.*/\([^/][^/]*\)/*$' \| \
 
556
+        X"$0" : 'X\(//\)$' \| \
 
557
+        X"$0" : 'X\(/\)' \| . 2>/dev/null ||
 
558
+$as_echo X/"$0" |
 
559
+    sed '/^.*\/\([^/][^/]*\)\/*$/{
 
560
+           s//\1/
 
561
+           q
 
562
+         }
 
563
+         /^X\/\(\/\/\)$/{
 
564
+           s//\1/
 
565
+           q
 
566
+         }
 
567
+         /^X\/\(\/\).*/{
 
568
+           s//\1/
 
569
+           q
 
570
+         }
 
571
+         s/.*/./; q'`
 
572
+
 
573
+# Avoid depending upon Character Ranges.
 
574
+as_cr_letters='abcdefghijklmnopqrstuvwxyz'
 
575
+as_cr_LETTERS='ABCDEFGHIJKLMNOPQRSTUVWXYZ'
 
576
+as_cr_Letters=$as_cr_letters$as_cr_LETTERS
 
577
+as_cr_digits='0123456789'
 
578
+as_cr_alnum=$as_cr_Letters$as_cr_digits
 
579
+
 
580
+
 
581
+  as_lineno_1=$LINENO as_lineno_1a=$LINENO
 
582
+  as_lineno_2=$LINENO as_lineno_2a=$LINENO
 
583
+  eval 'test "x$as_lineno_1'$as_run'" != "x$as_lineno_2'$as_run'" &&
 
584
+  test "x`expr $as_lineno_1'$as_run' + 1`" = "x$as_lineno_2'$as_run'"' || {
 
585
+  # Blame Lee E. McMahon (1931-1989) for sed's syntax.  :-)
 
586
+  sed -n '
 
587
+    p
 
588
+    /[$]LINENO/=
 
589
+  ' <$as_myself |
 
590
+    sed '
 
591
+      s/[$]LINENO.*/&-/
 
592
+      t lineno
 
593
+      b
 
594
+      :lineno
 
595
+      N
 
596
+      :loop
 
597
+      s/[$]LINENO\([^'$as_cr_alnum'_].*\n\)\(.*\)/\2\1\2/
 
598
+      t loop
 
599
+      s/-\n.*//
 
600
+    ' >$as_me.lineno &&
 
601
+  chmod +x "$as_me.lineno" ||
 
602
+    { $as_echo "$as_me: error: cannot create $as_me.lineno; rerun with a POSIX shell" >&2; as_fn_exit 1; }
 
603
+
 
604
+  # Don't try to exec as it changes $[0], causing all sort of problems
 
605
+  # (the dirname of $[0] is not the place where we might find the
 
606
+  # original and so on.  Autoconf is especially sensitive to this).
 
607
+  . "./$as_me.lineno"
 
608
+  # Exit status is that of the last command.
 
609
+  exit
 
610
+}
 
611
+
 
612
+ECHO_C= ECHO_N= ECHO_T=
 
613
+case `echo -n x` in @%:@(((((
 
614
+-n*)
 
615
+  case `echo 'xy\c'` in
 
616
+  *c*) ECHO_T='        ';;     # ECHO_T is single tab character.
 
617
+  xy)  ECHO_C='\c';;
 
618
+  *)   echo `echo ksh88 bug on AIX 6.1` > /dev/null
 
619
+       ECHO_T='        ';;
 
620
+  esac;;
 
621
+*)
 
622
+  ECHO_N='-n';;
 
623
+esac
 
624
+
 
625
+rm -f conf$$ conf$$.exe conf$$.file
 
626
+if test -d conf$$.dir; then
 
627
+  rm -f conf$$.dir/conf$$.file
 
628
+else
 
629
+  rm -f conf$$.dir
 
630
+  mkdir conf$$.dir 2>/dev/null
 
631
+fi
 
632
+if (echo >conf$$.file) 2>/dev/null; then
 
633
+  if ln -s conf$$.file conf$$ 2>/dev/null; then
 
634
+    as_ln_s='ln -s'
 
635
+    # ... but there are two gotchas:
 
636
+    # 1) On MSYS, both `ln -s file dir' and `ln file dir' fail.
 
637
+    # 2) DJGPP < 2.04 has no symlinks; `ln -s' creates a wrapper executable.
 
638
+    # In both cases, we have to default to `cp -p'.
 
639
+    ln -s conf$$.file conf$$.dir 2>/dev/null && test ! -f conf$$.exe ||
 
640
+      as_ln_s='cp -p'
 
641
+  elif ln conf$$.file conf$$ 2>/dev/null; then
 
642
+    as_ln_s=ln
 
643
+  else
 
644
+    as_ln_s='cp -p'
 
645
+  fi
 
646
+else
 
647
+  as_ln_s='cp -p'
 
648
+fi
 
649
+rm -f conf$$ conf$$.exe conf$$.dir/conf$$.file conf$$.file
 
650
+rmdir conf$$.dir 2>/dev/null
 
651
+
 
652
+if mkdir -p . 2>/dev/null; then
 
653
+  as_mkdir_p='mkdir -p "$as_dir"'
 
654
+else
 
655
+  test -d ./-p && rmdir ./-p
 
656
+  as_mkdir_p=false
 
657
+fi
 
658
+
 
659
+if test -x / >/dev/null 2>&1; then
 
660
+  as_test_x='test -x'
 
661
+else
 
662
+  if ls -dL / >/dev/null 2>&1; then
 
663
+    as_ls_L_option=L
 
664
+  else
 
665
+    as_ls_L_option=
 
666
+  fi
 
667
+  as_test_x='
 
668
+    eval sh -c '\''
 
669
+      if test -d "$1"; then
 
670
+       test -d "$1/.";
 
671
+      else
 
672
+       case $1 in @%:@(
 
673
+       -*)set "./$1";;
 
674
+       esac;
 
675
+       case `ls -ld'$as_ls_L_option' "$1" 2>/dev/null` in @%:@((
 
676
+       ???[sx]*):;;*)false;;esac;fi
 
677
+    '\'' sh
 
678
+  '
 
679
+fi
 
680
+as_executable_p=$as_test_x
 
681
+
 
682
+# Sed expression to map a string onto a valid CPP name.
 
683
+as_tr_cpp="eval sed 'y%*$as_cr_letters%P$as_cr_LETTERS%;s%[^_$as_cr_alnum]%_%g'"
 
684
+
 
685
+# Sed expression to map a string onto a valid variable name.
 
686
+as_tr_sh="eval sed 'y%*+%pp%;s%[^_$as_cr_alnum]%_%g'"
 
687
+
 
688
+
 
689
+test -n "$DJDIR" || exec 7<&0 </dev/null
 
690
+exec 6>&1
 
691
+
 
692
+# Name of the host.
 
693
+# hostname on some systems (SVR3.2, old GNU/Linux) returns a bogus exit status,
 
694
+# so uname gets run too.
 
695
+ac_hostname=`(hostname || uname -n) 2>/dev/null | sed 1q`
 
696
+
 
697
+#
 
698
+# Initializations.
 
699
+#
 
700
+ac_default_prefix=/usr/local
 
701
+ac_clean_files=
 
702
+ac_config_libobj_dir=.
 
703
+LIB@&t@OBJS=
 
704
+cross_compiling=no
 
705
+subdirs=
 
706
+MFLAGS=
 
707
+MAKEFLAGS=
 
708
+
 
709
+# Identity of this package.
 
710
+PACKAGE_NAME='fcoe-utils'
 
711
+PACKAGE_TARNAME='fcoe-utils'
 
712
+PACKAGE_VERSION='1.0.9'
 
713
+PACKAGE_STRING='fcoe-utils 1.0.9'
 
714
+PACKAGE_BUGREPORT='devel@open-fcoe.org'
 
715
+PACKAGE_URL=''
 
716
+
 
717
+ac_subst_vars='am__EXEEXT_FALSE
 
718
+am__EXEEXT_TRUE
 
719
+LTLIBOBJS
 
720
+LIB@&t@OBJS
 
721
+DCBD_LIBS
 
722
+DCBD_CFLAGS
 
723
+WITH_DCB_FALSE
 
724
+WITH_DCB_TRUE
 
725
+HBAAPI_LIBS
 
726
+HBAAPI_CFLAGS
 
727
+PKG_CONFIG_LIBDIR
 
728
+PKG_CONFIG_PATH
 
729
+PKG_CONFIG
 
730
+am__fastdepCC_FALSE
 
731
+am__fastdepCC_TRUE
 
732
+CCDEPMODE
 
733
+AMDEPBACKSLASH
 
734
+AMDEP_FALSE
 
735
+AMDEP_TRUE
 
736
+am__quote
 
737
+am__include
 
738
+DEPDIR
 
739
+OBJEXT
 
740
+EXEEXT
 
741
+ac_ct_CC
 
742
+CPPFLAGS
 
743
+LDFLAGS
 
744
+CFLAGS
 
745
+CC
 
746
+am__untar
 
747
+am__tar
 
748
+AMTAR
 
749
+am__leading_dot
 
750
+SET_MAKE
 
751
+AWK
 
752
+mkdir_p
 
753
+MKDIR_P
 
754
+INSTALL_STRIP_PROGRAM
 
755
+STRIP
 
756
+install_sh
 
757
+MAKEINFO
 
758
+AUTOHEADER
 
759
+AUTOMAKE
 
760
+AUTOCONF
 
761
+ACLOCAL
 
762
+VERSION
 
763
+PACKAGE
 
764
+CYGPATH_W
 
765
+am__isrc
 
766
+INSTALL_DATA
 
767
+INSTALL_SCRIPT
 
768
+INSTALL_PROGRAM
 
769
+target_alias
 
770
+host_alias
 
771
+build_alias
 
772
+LIBS
 
773
+ECHO_T
 
774
+ECHO_N
 
775
+ECHO_C
 
776
+DEFS
 
777
+mandir
 
778
+localedir
 
779
+libdir
 
780
+psdir
 
781
+pdfdir
 
782
+dvidir
 
783
+htmldir
 
784
+infodir
 
785
+docdir
 
786
+oldincludedir
 
787
+includedir
 
788
+localstatedir
 
789
+sharedstatedir
 
790
+sysconfdir
 
791
+datadir
 
792
+datarootdir
 
793
+libexecdir
 
794
+sbindir
 
795
+bindir
 
796
+program_transform_name
 
797
+prefix
 
798
+exec_prefix
 
799
+PACKAGE_URL
 
800
+PACKAGE_BUGREPORT
 
801
+PACKAGE_STRING
 
802
+PACKAGE_VERSION
 
803
+PACKAGE_TARNAME
 
804
+PACKAGE_NAME
 
805
+PATH_SEPARATOR
 
806
+SHELL'
 
807
+ac_subst_files=''
 
808
+ac_user_opts='
 
809
+enable_option_checking
 
810
+enable_dependency_tracking
 
811
+with_dcb
 
812
+'
 
813
+      ac_precious_vars='build_alias
 
814
+host_alias
 
815
+target_alias
 
816
+CC
 
817
+CFLAGS
 
818
+LDFLAGS
 
819
+LIBS
 
820
+CPPFLAGS
 
821
+PKG_CONFIG
 
822
+PKG_CONFIG_PATH
 
823
+PKG_CONFIG_LIBDIR
 
824
+HBAAPI_CFLAGS
 
825
+HBAAPI_LIBS
 
826
+DCBD_CFLAGS
 
827
+DCBD_LIBS'
 
828
+
 
829
+
 
830
+# Initialize some variables set by options.
 
831
+ac_init_help=
 
832
+ac_init_version=false
 
833
+ac_unrecognized_opts=
 
834
+ac_unrecognized_sep=
 
835
+# The variables have the same names as the options, with
 
836
+# dashes changed to underlines.
 
837
+cache_file=/dev/null
 
838
+exec_prefix=NONE
 
839
+no_create=
 
840
+no_recursion=
 
841
+prefix=NONE
 
842
+program_prefix=NONE
 
843
+program_suffix=NONE
 
844
+program_transform_name=s,x,x,
 
845
+silent=
 
846
+site=
 
847
+srcdir=
 
848
+verbose=
 
849
+x_includes=NONE
 
850
+x_libraries=NONE
 
851
+
 
852
+# Installation directory options.
 
853
+# These are left unexpanded so users can "make install exec_prefix=/foo"
 
854
+# and all the variables that are supposed to be based on exec_prefix
 
855
+# by default will actually change.
 
856
+# Use braces instead of parens because sh, perl, etc. also accept them.
 
857
+# (The list follows the same order as the GNU Coding Standards.)
 
858
+bindir='${exec_prefix}/bin'
 
859
+sbindir='${exec_prefix}/sbin'
 
860
+libexecdir='${exec_prefix}/libexec'
 
861
+datarootdir='${prefix}/share'
 
862
+datadir='${datarootdir}'
 
863
+sysconfdir='${prefix}/etc'
 
864
+sharedstatedir='${prefix}/com'
 
865
+localstatedir='${prefix}/var'
 
866
+includedir='${prefix}/include'
 
867
+oldincludedir='/usr/include'
 
868
+docdir='${datarootdir}/doc/${PACKAGE_TARNAME}'
 
869
+infodir='${datarootdir}/info'
 
870
+htmldir='${docdir}'
 
871
+dvidir='${docdir}'
 
872
+pdfdir='${docdir}'
 
873
+psdir='${docdir}'
 
874
+libdir='${exec_prefix}/lib'
 
875
+localedir='${datarootdir}/locale'
 
876
+mandir='${datarootdir}/man'
 
877
+
 
878
+ac_prev=
 
879
+ac_dashdash=
 
880
+for ac_option
 
881
+do
 
882
+  # If the previous option needs an argument, assign it.
 
883
+  if test -n "$ac_prev"; then
 
884
+    eval $ac_prev=\$ac_option
 
885
+    ac_prev=
 
886
+    continue
 
887
+  fi
 
888
+
 
889
+  case $ac_option in
 
890
+  *=?*) ac_optarg=`expr "X$ac_option" : '[^=]*=\(.*\)'` ;;
 
891
+  *=)   ac_optarg= ;;
 
892
+  *)    ac_optarg=yes ;;
 
893
+  esac
 
894
+
 
895
+  # Accept the important Cygnus configure options, so we can diagnose typos.
 
896
+
 
897
+  case $ac_dashdash$ac_option in
 
898
+  --)
 
899
+    ac_dashdash=yes ;;
 
900
+
 
901
+  -bindir | --bindir | --bindi | --bind | --bin | --bi)
 
902
+    ac_prev=bindir ;;
 
903
+  -bindir=* | --bindir=* | --bindi=* | --bind=* | --bin=* | --bi=*)
 
904
+    bindir=$ac_optarg ;;
 
905
+
 
906
+  -build | --build | --buil | --bui | --bu)
 
907
+    ac_prev=build_alias ;;
 
908
+  -build=* | --build=* | --buil=* | --bui=* | --bu=*)
 
909
+    build_alias=$ac_optarg ;;
 
910
+
 
911
+  -cache-file | --cache-file | --cache-fil | --cache-fi \
 
912
+  | --cache-f | --cache- | --cache | --cach | --cac | --ca | --c)
 
913
+    ac_prev=cache_file ;;
 
914
+  -cache-file=* | --cache-file=* | --cache-fil=* | --cache-fi=* \
 
915
+  | --cache-f=* | --cache-=* | --cache=* | --cach=* | --cac=* | --ca=* | --c=*)
 
916
+    cache_file=$ac_optarg ;;
 
917
+
 
918
+  --config-cache | -C)
 
919
+    cache_file=config.cache ;;
 
920
+
 
921
+  -datadir | --datadir | --datadi | --datad)
 
922
+    ac_prev=datadir ;;
 
923
+  -datadir=* | --datadir=* | --datadi=* | --datad=*)
 
924
+    datadir=$ac_optarg ;;
 
925
+
 
926
+  -datarootdir | --datarootdir | --datarootdi | --datarootd | --dataroot \
 
927
+  | --dataroo | --dataro | --datar)
 
928
+    ac_prev=datarootdir ;;
 
929
+  -datarootdir=* | --datarootdir=* | --datarootdi=* | --datarootd=* \
 
930
+  | --dataroot=* | --dataroo=* | --dataro=* | --datar=*)
 
931
+    datarootdir=$ac_optarg ;;
 
932
+
 
933
+  -disable-* | --disable-*)
 
934
+    ac_useropt=`expr "x$ac_option" : 'x-*disable-\(.*\)'`
 
935
+    # Reject names that are not valid shell variable names.
 
936
+    expr "x$ac_useropt" : ".*[^-+._$as_cr_alnum]" >/dev/null &&
 
937
+      as_fn_error $? "invalid feature name: $ac_useropt"
 
938
+    ac_useropt_orig=$ac_useropt
 
939
+    ac_useropt=`$as_echo "$ac_useropt" | sed 's/[-+.]/_/g'`
 
940
+    case $ac_user_opts in
 
941
+      *"
 
942
+"enable_$ac_useropt"
 
943
+"*) ;;
 
944
+      *) ac_unrecognized_opts="$ac_unrecognized_opts$ac_unrecognized_sep--disable-$ac_useropt_orig"
 
945
+        ac_unrecognized_sep=', ';;
 
946
+    esac
 
947
+    eval enable_$ac_useropt=no ;;
 
948
+
 
949
+  -docdir | --docdir | --docdi | --doc | --do)
 
950
+    ac_prev=docdir ;;
 
951
+  -docdir=* | --docdir=* | --docdi=* | --doc=* | --do=*)
 
952
+    docdir=$ac_optarg ;;
 
953
+
 
954
+  -dvidir | --dvidir | --dvidi | --dvid | --dvi | --dv)
 
955
+    ac_prev=dvidir ;;
 
956
+  -dvidir=* | --dvidir=* | --dvidi=* | --dvid=* | --dvi=* | --dv=*)
 
957
+    dvidir=$ac_optarg ;;
 
958
+
 
959
+  -enable-* | --enable-*)
 
960
+    ac_useropt=`expr "x$ac_option" : 'x-*enable-\([^=]*\)'`
 
961
+    # Reject names that are not valid shell variable names.
 
962
+    expr "x$ac_useropt" : ".*[^-+._$as_cr_alnum]" >/dev/null &&
 
963
+      as_fn_error $? "invalid feature name: $ac_useropt"
 
964
+    ac_useropt_orig=$ac_useropt
 
965
+    ac_useropt=`$as_echo "$ac_useropt" | sed 's/[-+.]/_/g'`
 
966
+    case $ac_user_opts in
 
967
+      *"
 
968
+"enable_$ac_useropt"
 
969
+"*) ;;
 
970
+      *) ac_unrecognized_opts="$ac_unrecognized_opts$ac_unrecognized_sep--enable-$ac_useropt_orig"
 
971
+        ac_unrecognized_sep=', ';;
 
972
+    esac
 
973
+    eval enable_$ac_useropt=\$ac_optarg ;;
 
974
+
 
975
+  -exec-prefix | --exec_prefix | --exec-prefix | --exec-prefi \
 
976
+  | --exec-pref | --exec-pre | --exec-pr | --exec-p | --exec- \
 
977
+  | --exec | --exe | --ex)
 
978
+    ac_prev=exec_prefix ;;
 
979
+  -exec-prefix=* | --exec_prefix=* | --exec-prefix=* | --exec-prefi=* \
 
980
+  | --exec-pref=* | --exec-pre=* | --exec-pr=* | --exec-p=* | --exec-=* \
 
981
+  | --exec=* | --exe=* | --ex=*)
 
982
+    exec_prefix=$ac_optarg ;;
 
983
+
 
984
+  -gas | --gas | --ga | --g)
 
985
+    # Obsolete; use --with-gas.
 
986
+    with_gas=yes ;;
 
987
+
 
988
+  -help | --help | --hel | --he | -h)
 
989
+    ac_init_help=long ;;
 
990
+  -help=r* | --help=r* | --hel=r* | --he=r* | -hr*)
 
991
+    ac_init_help=recursive ;;
 
992
+  -help=s* | --help=s* | --hel=s* | --he=s* | -hs*)
 
993
+    ac_init_help=short ;;
 
994
+
 
995
+  -host | --host | --hos | --ho)
 
996
+    ac_prev=host_alias ;;
 
997
+  -host=* | --host=* | --hos=* | --ho=*)
 
998
+    host_alias=$ac_optarg ;;
 
999
+
 
1000
+  -htmldir | --htmldir | --htmldi | --htmld | --html | --htm | --ht)
 
1001
+    ac_prev=htmldir ;;
 
1002
+  -htmldir=* | --htmldir=* | --htmldi=* | --htmld=* | --html=* | --htm=* \
 
1003
+  | --ht=*)
 
1004
+    htmldir=$ac_optarg ;;
 
1005
+
 
1006
+  -includedir | --includedir | --includedi | --included | --include \
 
1007
+  | --includ | --inclu | --incl | --inc)
 
1008
+    ac_prev=includedir ;;
 
1009
+  -includedir=* | --includedir=* | --includedi=* | --included=* | --include=* \
 
1010
+  | --includ=* | --inclu=* | --incl=* | --inc=*)
 
1011
+    includedir=$ac_optarg ;;
 
1012
+
 
1013
+  -infodir | --infodir | --infodi | --infod | --info | --inf)
 
1014
+    ac_prev=infodir ;;
 
1015
+  -infodir=* | --infodir=* | --infodi=* | --infod=* | --info=* | --inf=*)
 
1016
+    infodir=$ac_optarg ;;
 
1017
+
 
1018
+  -libdir | --libdir | --libdi | --libd)
 
1019
+    ac_prev=libdir ;;
 
1020
+  -libdir=* | --libdir=* | --libdi=* | --libd=*)
 
1021
+    libdir=$ac_optarg ;;
 
1022
+
 
1023
+  -libexecdir | --libexecdir | --libexecdi | --libexecd | --libexec \
 
1024
+  | --libexe | --libex | --libe)
 
1025
+    ac_prev=libexecdir ;;
 
1026
+  -libexecdir=* | --libexecdir=* | --libexecdi=* | --libexecd=* | --libexec=* \
 
1027
+  | --libexe=* | --libex=* | --libe=*)
 
1028
+    libexecdir=$ac_optarg ;;
 
1029
+
 
1030
+  -localedir | --localedir | --localedi | --localed | --locale)
 
1031
+    ac_prev=localedir ;;
 
1032
+  -localedir=* | --localedir=* | --localedi=* | --localed=* | --locale=*)
 
1033
+    localedir=$ac_optarg ;;
 
1034
+
 
1035
+  -localstatedir | --localstatedir | --localstatedi | --localstated \
 
1036
+  | --localstate | --localstat | --localsta | --localst | --locals)
 
1037
+    ac_prev=localstatedir ;;
 
1038
+  -localstatedir=* | --localstatedir=* | --localstatedi=* | --localstated=* \
 
1039
+  | --localstate=* | --localstat=* | --localsta=* | --localst=* | --locals=*)
 
1040
+    localstatedir=$ac_optarg ;;
 
1041
+
 
1042
+  -mandir | --mandir | --mandi | --mand | --man | --ma | --m)
 
1043
+    ac_prev=mandir ;;
 
1044
+  -mandir=* | --mandir=* | --mandi=* | --mand=* | --man=* | --ma=* | --m=*)
 
1045
+    mandir=$ac_optarg ;;
 
1046
+
 
1047
+  -nfp | --nfp | --nf)
 
1048
+    # Obsolete; use --without-fp.
 
1049
+    with_fp=no ;;
 
1050
+
 
1051
+  -no-create | --no-create | --no-creat | --no-crea | --no-cre \
 
1052
+  | --no-cr | --no-c | -n)
 
1053
+    no_create=yes ;;
 
1054
+
 
1055
+  -no-recursion | --no-recursion | --no-recursio | --no-recursi \
 
1056
+  | --no-recurs | --no-recur | --no-recu | --no-rec | --no-re | --no-r)
 
1057
+    no_recursion=yes ;;
 
1058
+
 
1059
+  -oldincludedir | --oldincludedir | --oldincludedi | --oldincluded \
 
1060
+  | --oldinclude | --oldinclud | --oldinclu | --oldincl | --oldinc \
 
1061
+  | --oldin | --oldi | --old | --ol | --o)
 
1062
+    ac_prev=oldincludedir ;;
 
1063
+  -oldincludedir=* | --oldincludedir=* | --oldincludedi=* | --oldincluded=* \
 
1064
+  | --oldinclude=* | --oldinclud=* | --oldinclu=* | --oldincl=* | --oldinc=* \
 
1065
+  | --oldin=* | --oldi=* | --old=* | --ol=* | --o=*)
 
1066
+    oldincludedir=$ac_optarg ;;
 
1067
+
 
1068
+  -prefix | --prefix | --prefi | --pref | --pre | --pr | --p)
 
1069
+    ac_prev=prefix ;;
 
1070
+  -prefix=* | --prefix=* | --prefi=* | --pref=* | --pre=* | --pr=* | --p=*)
 
1071
+    prefix=$ac_optarg ;;
 
1072
+
 
1073
+  -program-prefix | --program-prefix | --program-prefi | --program-pref \
 
1074
+  | --program-pre | --program-pr | --program-p)
 
1075
+    ac_prev=program_prefix ;;
 
1076
+  -program-prefix=* | --program-prefix=* | --program-prefi=* \
 
1077
+  | --program-pref=* | --program-pre=* | --program-pr=* | --program-p=*)
 
1078
+    program_prefix=$ac_optarg ;;
 
1079
+
 
1080
+  -program-suffix | --program-suffix | --program-suffi | --program-suff \
 
1081
+  | --program-suf | --program-su | --program-s)
 
1082
+    ac_prev=program_suffix ;;
 
1083
+  -program-suffix=* | --program-suffix=* | --program-suffi=* \
 
1084
+  | --program-suff=* | --program-suf=* | --program-su=* | --program-s=*)
 
1085
+    program_suffix=$ac_optarg ;;
 
1086
+
 
1087
+  -program-transform-name | --program-transform-name \
 
1088
+  | --program-transform-nam | --program-transform-na \
 
1089
+  | --program-transform-n | --program-transform- \
 
1090
+  | --program-transform | --program-transfor \
 
1091
+  | --program-transfo | --program-transf \
 
1092
+  | --program-trans | --program-tran \
 
1093
+  | --progr-tra | --program-tr | --program-t)
 
1094
+    ac_prev=program_transform_name ;;
 
1095
+  -program-transform-name=* | --program-transform-name=* \
 
1096
+  | --program-transform-nam=* | --program-transform-na=* \
 
1097
+  | --program-transform-n=* | --program-transform-=* \
 
1098
+  | --program-transform=* | --program-transfor=* \
 
1099
+  | --program-transfo=* | --program-transf=* \
 
1100
+  | --program-trans=* | --program-tran=* \
 
1101
+  | --progr-tra=* | --program-tr=* | --program-t=*)
 
1102
+    program_transform_name=$ac_optarg ;;
 
1103
+
 
1104
+  -pdfdir | --pdfdir | --pdfdi | --pdfd | --pdf | --pd)
 
1105
+    ac_prev=pdfdir ;;
 
1106
+  -pdfdir=* | --pdfdir=* | --pdfdi=* | --pdfd=* | --pdf=* | --pd=*)
 
1107
+    pdfdir=$ac_optarg ;;
 
1108
+
 
1109
+  -psdir | --psdir | --psdi | --psd | --ps)
 
1110
+    ac_prev=psdir ;;
 
1111
+  -psdir=* | --psdir=* | --psdi=* | --psd=* | --ps=*)
 
1112
+    psdir=$ac_optarg ;;
 
1113
+
 
1114
+  -q | -quiet | --quiet | --quie | --qui | --qu | --q \
 
1115
+  | -silent | --silent | --silen | --sile | --sil)
 
1116
+    silent=yes ;;
 
1117
+
 
1118
+  -sbindir | --sbindir | --sbindi | --sbind | --sbin | --sbi | --sb)
 
1119
+    ac_prev=sbindir ;;
 
1120
+  -sbindir=* | --sbindir=* | --sbindi=* | --sbind=* | --sbin=* \
 
1121
+  | --sbi=* | --sb=*)
 
1122
+    sbindir=$ac_optarg ;;
 
1123
+
 
1124
+  -sharedstatedir | --sharedstatedir | --sharedstatedi \
 
1125
+  | --sharedstated | --sharedstate | --sharedstat | --sharedsta \
 
1126
+  | --sharedst | --shareds | --shared | --share | --shar \
 
1127
+  | --sha | --sh)
 
1128
+    ac_prev=sharedstatedir ;;
 
1129
+  -sharedstatedir=* | --sharedstatedir=* | --sharedstatedi=* \
 
1130
+  | --sharedstated=* | --sharedstate=* | --sharedstat=* | --sharedsta=* \
 
1131
+  | --sharedst=* | --shareds=* | --shared=* | --share=* | --shar=* \
 
1132
+  | --sha=* | --sh=*)
 
1133
+    sharedstatedir=$ac_optarg ;;
 
1134
+
 
1135
+  -site | --site | --sit)
 
1136
+    ac_prev=site ;;
 
1137
+  -site=* | --site=* | --sit=*)
 
1138
+    site=$ac_optarg ;;
 
1139
+
 
1140
+  -srcdir | --srcdir | --srcdi | --srcd | --src | --sr)
 
1141
+    ac_prev=srcdir ;;
 
1142
+  -srcdir=* | --srcdir=* | --srcdi=* | --srcd=* | --src=* | --sr=*)
 
1143
+    srcdir=$ac_optarg ;;
 
1144
+
 
1145
+  -sysconfdir | --sysconfdir | --sysconfdi | --sysconfd | --sysconf \
 
1146
+  | --syscon | --sysco | --sysc | --sys | --sy)
 
1147
+    ac_prev=sysconfdir ;;
 
1148
+  -sysconfdir=* | --sysconfdir=* | --sysconfdi=* | --sysconfd=* | --sysconf=* \
 
1149
+  | --syscon=* | --sysco=* | --sysc=* | --sys=* | --sy=*)
 
1150
+    sysconfdir=$ac_optarg ;;
 
1151
+
 
1152
+  -target | --target | --targe | --targ | --tar | --ta | --t)
 
1153
+    ac_prev=target_alias ;;
 
1154
+  -target=* | --target=* | --targe=* | --targ=* | --tar=* | --ta=* | --t=*)
 
1155
+    target_alias=$ac_optarg ;;
 
1156
+
 
1157
+  -v | -verbose | --verbose | --verbos | --verbo | --verb)
 
1158
+    verbose=yes ;;
 
1159
+
 
1160
+  -version | --version | --versio | --versi | --vers | -V)
 
1161
+    ac_init_version=: ;;
 
1162
+
 
1163
+  -with-* | --with-*)
 
1164
+    ac_useropt=`expr "x$ac_option" : 'x-*with-\([^=]*\)'`
 
1165
+    # Reject names that are not valid shell variable names.
 
1166
+    expr "x$ac_useropt" : ".*[^-+._$as_cr_alnum]" >/dev/null &&
 
1167
+      as_fn_error $? "invalid package name: $ac_useropt"
 
1168
+    ac_useropt_orig=$ac_useropt
 
1169
+    ac_useropt=`$as_echo "$ac_useropt" | sed 's/[-+.]/_/g'`
 
1170
+    case $ac_user_opts in
 
1171
+      *"
 
1172
+"with_$ac_useropt"
 
1173
+"*) ;;
 
1174
+      *) ac_unrecognized_opts="$ac_unrecognized_opts$ac_unrecognized_sep--with-$ac_useropt_orig"
 
1175
+        ac_unrecognized_sep=', ';;
 
1176
+    esac
 
1177
+    eval with_$ac_useropt=\$ac_optarg ;;
 
1178
+
 
1179
+  -without-* | --without-*)
 
1180
+    ac_useropt=`expr "x$ac_option" : 'x-*without-\(.*\)'`
 
1181
+    # Reject names that are not valid shell variable names.
 
1182
+    expr "x$ac_useropt" : ".*[^-+._$as_cr_alnum]" >/dev/null &&
 
1183
+      as_fn_error $? "invalid package name: $ac_useropt"
 
1184
+    ac_useropt_orig=$ac_useropt
 
1185
+    ac_useropt=`$as_echo "$ac_useropt" | sed 's/[-+.]/_/g'`
 
1186
+    case $ac_user_opts in
 
1187
+      *"
 
1188
+"with_$ac_useropt"
 
1189
+"*) ;;
 
1190
+      *) ac_unrecognized_opts="$ac_unrecognized_opts$ac_unrecognized_sep--without-$ac_useropt_orig"
 
1191
+        ac_unrecognized_sep=', ';;
 
1192
+    esac
 
1193
+    eval with_$ac_useropt=no ;;
 
1194
+
 
1195
+  --x)
 
1196
+    # Obsolete; use --with-x.
 
1197
+    with_x=yes ;;
 
1198
+
 
1199
+  -x-includes | --x-includes | --x-include | --x-includ | --x-inclu \
 
1200
+  | --x-incl | --x-inc | --x-in | --x-i)
 
1201
+    ac_prev=x_includes ;;
 
1202
+  -x-includes=* | --x-includes=* | --x-include=* | --x-includ=* | --x-inclu=* \
 
1203
+  | --x-incl=* | --x-inc=* | --x-in=* | --x-i=*)
 
1204
+    x_includes=$ac_optarg ;;
 
1205
+
 
1206
+  -x-libraries | --x-libraries | --x-librarie | --x-librari \
 
1207
+  | --x-librar | --x-libra | --x-libr | --x-lib | --x-li | --x-l)
 
1208
+    ac_prev=x_libraries ;;
 
1209
+  -x-libraries=* | --x-libraries=* | --x-librarie=* | --x-librari=* \
 
1210
+  | --x-librar=* | --x-libra=* | --x-libr=* | --x-lib=* | --x-li=* | --x-l=*)
 
1211
+    x_libraries=$ac_optarg ;;
 
1212
+
 
1213
+  -*) as_fn_error $? "unrecognized option: \`$ac_option'
 
1214
+Try \`$0 --help' for more information"
 
1215
+    ;;
 
1216
+
 
1217
+  *=*)
 
1218
+    ac_envvar=`expr "x$ac_option" : 'x\([^=]*\)='`
 
1219
+    # Reject names that are not valid shell variable names.
 
1220
+    case $ac_envvar in #(
 
1221
+      '' | [0-9]* | *[!_$as_cr_alnum]* )
 
1222
+      as_fn_error $? "invalid variable name: \`$ac_envvar'" ;;
 
1223
+    esac
 
1224
+    eval $ac_envvar=\$ac_optarg
 
1225
+    export $ac_envvar ;;
 
1226
+
 
1227
+  *)
 
1228
+    # FIXME: should be removed in autoconf 3.0.
 
1229
+    $as_echo "$as_me: WARNING: you should use --build, --host, --target" >&2
 
1230
+    expr "x$ac_option" : ".*[^-._$as_cr_alnum]" >/dev/null &&
 
1231
+      $as_echo "$as_me: WARNING: invalid host type: $ac_option" >&2
 
1232
+    : "${build_alias=$ac_option} ${host_alias=$ac_option} ${target_alias=$ac_option}"
 
1233
+    ;;
 
1234
+
 
1235
+  esac
 
1236
+done
 
1237
+
 
1238
+if test -n "$ac_prev"; then
 
1239
+  ac_option=--`echo $ac_prev | sed 's/_/-/g'`
 
1240
+  as_fn_error $? "missing argument to $ac_option"
 
1241
+fi
 
1242
+
 
1243
+if test -n "$ac_unrecognized_opts"; then
 
1244
+  case $enable_option_checking in
 
1245
+    no) ;;
 
1246
+    fatal) as_fn_error $? "unrecognized options: $ac_unrecognized_opts" ;;
 
1247
+    *)     $as_echo "$as_me: WARNING: unrecognized options: $ac_unrecognized_opts" >&2 ;;
 
1248
+  esac
 
1249
+fi
 
1250
+
 
1251
+# Check all directory arguments for consistency.
 
1252
+for ac_var in  exec_prefix prefix bindir sbindir libexecdir datarootdir \
 
1253
+               datadir sysconfdir sharedstatedir localstatedir includedir \
 
1254
+               oldincludedir docdir infodir htmldir dvidir pdfdir psdir \
 
1255
+               libdir localedir mandir
 
1256
+do
 
1257
+  eval ac_val=\$$ac_var
 
1258
+  # Remove trailing slashes.
 
1259
+  case $ac_val in
 
1260
+    */ )
 
1261
+      ac_val=`expr "X$ac_val" : 'X\(.*[^/]\)' \| "X$ac_val" : 'X\(.*\)'`
 
1262
+      eval $ac_var=\$ac_val;;
 
1263
+  esac
 
1264
+  # Be sure to have absolute directory names.
 
1265
+  case $ac_val in
 
1266
+    [\\/$]* | ?:[\\/]* )  continue;;
 
1267
+    NONE | '' ) case $ac_var in *prefix ) continue;; esac;;
 
1268
+  esac
 
1269
+  as_fn_error $? "expected an absolute directory name for --$ac_var: $ac_val"
 
1270
+done
 
1271
+
 
1272
+# There might be people who depend on the old broken behavior: `$host'
 
1273
+# used to hold the argument of --host etc.
 
1274
+# FIXME: To remove some day.
 
1275
+build=$build_alias
 
1276
+host=$host_alias
 
1277
+target=$target_alias
 
1278
+
 
1279
+# FIXME: To remove some day.
 
1280
+if test "x$host_alias" != x; then
 
1281
+  if test "x$build_alias" = x; then
 
1282
+    cross_compiling=maybe
 
1283
+    $as_echo "$as_me: WARNING: if you wanted to set the --build type, don't use --host.
 
1284
+    If a cross compiler is detected then cross compile mode will be used" >&2
 
1285
+  elif test "x$build_alias" != "x$host_alias"; then
 
1286
+    cross_compiling=yes
 
1287
+  fi
 
1288
+fi
 
1289
+
 
1290
+ac_tool_prefix=
 
1291
+test -n "$host_alias" && ac_tool_prefix=$host_alias-
 
1292
+
 
1293
+test "$silent" = yes && exec 6>/dev/null
 
1294
+
 
1295
+
 
1296
+ac_pwd=`pwd` && test -n "$ac_pwd" &&
 
1297
+ac_ls_di=`ls -di .` &&
 
1298
+ac_pwd_ls_di=`cd "$ac_pwd" && ls -di .` ||
 
1299
+  as_fn_error $? "working directory cannot be determined"
 
1300
+test "X$ac_ls_di" = "X$ac_pwd_ls_di" ||
 
1301
+  as_fn_error $? "pwd does not report name of working directory"
 
1302
+
 
1303
+
 
1304
+# Find the source files, if location was not specified.
 
1305
+if test -z "$srcdir"; then
 
1306
+  ac_srcdir_defaulted=yes
 
1307
+  # Try the directory containing this script, then the parent directory.
 
1308
+  ac_confdir=`$as_dirname -- "$as_myself" ||
 
1309
+$as_expr X"$as_myself" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \
 
1310
+        X"$as_myself" : 'X\(//\)[^/]' \| \
 
1311
+        X"$as_myself" : 'X\(//\)$' \| \
 
1312
+        X"$as_myself" : 'X\(/\)' \| . 2>/dev/null ||
 
1313
+$as_echo X"$as_myself" |
 
1314
+    sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{
 
1315
+           s//\1/
 
1316
+           q
 
1317
+         }
 
1318
+         /^X\(\/\/\)[^/].*/{
 
1319
+           s//\1/
 
1320
+           q
 
1321
+         }
 
1322
+         /^X\(\/\/\)$/{
 
1323
+           s//\1/
 
1324
+           q
 
1325
+         }
 
1326
+         /^X\(\/\).*/{
 
1327
+           s//\1/
 
1328
+           q
 
1329
+         }
 
1330
+         s/.*/./; q'`
 
1331
+  srcdir=$ac_confdir
 
1332
+  if test ! -r "$srcdir/$ac_unique_file"; then
 
1333
+    srcdir=..
 
1334
+  fi
 
1335
+else
 
1336
+  ac_srcdir_defaulted=no
 
1337
+fi
 
1338
+if test ! -r "$srcdir/$ac_unique_file"; then
 
1339
+  test "$ac_srcdir_defaulted" = yes && srcdir="$ac_confdir or .."
 
1340
+  as_fn_error $? "cannot find sources ($ac_unique_file) in $srcdir"
 
1341
+fi
 
1342
+ac_msg="sources are in $srcdir, but \`cd $srcdir' does not work"
 
1343
+ac_abs_confdir=`(
 
1344
+       cd "$srcdir" && test -r "./$ac_unique_file" || as_fn_error $? "$ac_msg"
 
1345
+       pwd)`
 
1346
+# When building in place, set srcdir=.
 
1347
+if test "$ac_abs_confdir" = "$ac_pwd"; then
 
1348
+  srcdir=.
 
1349
+fi
 
1350
+# Remove unnecessary trailing slashes from srcdir.
 
1351
+# Double slashes in file names in object file debugging info
 
1352
+# mess up M-x gdb in Emacs.
 
1353
+case $srcdir in
 
1354
+*/) srcdir=`expr "X$srcdir" : 'X\(.*[^/]\)' \| "X$srcdir" : 'X\(.*\)'`;;
 
1355
+esac
 
1356
+for ac_var in $ac_precious_vars; do
 
1357
+  eval ac_env_${ac_var}_set=\${${ac_var}+set}
 
1358
+  eval ac_env_${ac_var}_value=\$${ac_var}
 
1359
+  eval ac_cv_env_${ac_var}_set=\${${ac_var}+set}
 
1360
+  eval ac_cv_env_${ac_var}_value=\$${ac_var}
 
1361
+done
 
1362
+
 
1363
+#
 
1364
+# Report the --help message.
 
1365
+#
 
1366
+if test "$ac_init_help" = "long"; then
 
1367
+  # Omit some internal or obsolete options to make the list less imposing.
 
1368
+  # This message is too long to be a string in the A/UX 3.1 sh.
 
1369
+  cat <<_ACEOF
 
1370
+\`configure' configures fcoe-utils 1.0.9 to adapt to many kinds of systems.
 
1371
+
 
1372
+Usage: $0 [OPTION]... [VAR=VALUE]...
 
1373
+
 
1374
+To assign environment variables (e.g., CC, CFLAGS...), specify them as
 
1375
+VAR=VALUE.  See below for descriptions of some of the useful variables.
 
1376
+
 
1377
+Defaults for the options are specified in brackets.
 
1378
+
 
1379
+Configuration:
 
1380
+  -h, --help              display this help and exit
 
1381
+      --help=short        display options specific to this package
 
1382
+      --help=recursive    display the short help of all the included packages
 
1383
+  -V, --version           display version information and exit
 
1384
+  -q, --quiet, --silent   do not print \`checking ...' messages
 
1385
+      --cache-file=FILE   cache test results in FILE [disabled]
 
1386
+  -C, --config-cache      alias for \`--cache-file=config.cache'
 
1387
+  -n, --no-create         do not create output files
 
1388
+      --srcdir=DIR        find the sources in DIR [configure dir or \`..']
 
1389
+
 
1390
+Installation directories:
 
1391
+  --prefix=PREFIX         install architecture-independent files in PREFIX
 
1392
+                          @<:@@S|@ac_default_prefix@:>@
 
1393
+  --exec-prefix=EPREFIX   install architecture-dependent files in EPREFIX
 
1394
+                          @<:@PREFIX@:>@
 
1395
+
 
1396
+By default, \`make install' will install all the files in
 
1397
+\`$ac_default_prefix/bin', \`$ac_default_prefix/lib' etc.  You can specify
 
1398
+an installation prefix other than \`$ac_default_prefix' using \`--prefix',
 
1399
+for instance \`--prefix=\$HOME'.
 
1400
+
 
1401
+For better control, use the options below.
 
1402
+
 
1403
+Fine tuning of the installation directories:
 
1404
+  --bindir=DIR            user executables [EPREFIX/bin]
 
1405
+  --sbindir=DIR           system admin executables [EPREFIX/sbin]
 
1406
+  --libexecdir=DIR        program executables [EPREFIX/libexec]
 
1407
+  --sysconfdir=DIR        read-only single-machine data [PREFIX/etc]
 
1408
+  --sharedstatedir=DIR    modifiable architecture-independent data [PREFIX/com]
 
1409
+  --localstatedir=DIR     modifiable single-machine data [PREFIX/var]
 
1410
+  --libdir=DIR            object code libraries [EPREFIX/lib]
 
1411
+  --includedir=DIR        C header files [PREFIX/include]
 
1412
+  --oldincludedir=DIR     C header files for non-gcc [/usr/include]
 
1413
+  --datarootdir=DIR       read-only arch.-independent data root [PREFIX/share]
 
1414
+  --datadir=DIR           read-only architecture-independent data [DATAROOTDIR]
 
1415
+  --infodir=DIR           info documentation [DATAROOTDIR/info]
 
1416
+  --localedir=DIR         locale-dependent data [DATAROOTDIR/locale]
 
1417
+  --mandir=DIR            man documentation [DATAROOTDIR/man]
 
1418
+  --docdir=DIR            documentation root @<:@DATAROOTDIR/doc/fcoe-utils@:>@
 
1419
+  --htmldir=DIR           html documentation [DOCDIR]
 
1420
+  --dvidir=DIR            dvi documentation [DOCDIR]
 
1421
+  --pdfdir=DIR            pdf documentation [DOCDIR]
 
1422
+  --psdir=DIR             ps documentation [DOCDIR]
 
1423
+_ACEOF
 
1424
+
 
1425
+  cat <<\_ACEOF
 
1426
+
 
1427
+Program names:
 
1428
+  --program-prefix=PREFIX            prepend PREFIX to installed program names
 
1429
+  --program-suffix=SUFFIX            append SUFFIX to installed program names
 
1430
+  --program-transform-name=PROGRAM   run sed PROGRAM on installed program names
 
1431
+_ACEOF
 
1432
+fi
 
1433
+
 
1434
+if test -n "$ac_init_help"; then
 
1435
+  case $ac_init_help in
 
1436
+     short | recursive ) echo "Configuration of fcoe-utils 1.0.9:";;
 
1437
+   esac
 
1438
+  cat <<\_ACEOF
 
1439
+
 
1440
+Optional Features:
 
1441
+  --disable-option-checking  ignore unrecognized --enable/--with options
 
1442
+  --disable-FEATURE       do not include FEATURE (same as --enable-FEATURE=no)
 
1443
+  --enable-FEATURE[=ARG]  include FEATURE [ARG=yes]
 
1444
+  --disable-dependency-tracking  speeds up one-time build
 
1445
+  --enable-dependency-tracking   do not reject slow dependency extractors
 
1446
+
 
1447
+Optional Packages:
 
1448
+  --with-PACKAGE[=ARG]    use PACKAGE [ARG=yes]
 
1449
+  --without-PACKAGE       do not use PACKAGE (same as --with-PACKAGE=no)
 
1450
+  --without-dcb           disable DCB support
 
1451
+
 
1452
+Some influential environment variables:
 
1453
+  CC          C compiler command
 
1454
+  CFLAGS      C compiler flags
 
1455
+  LDFLAGS     linker flags, e.g. -L<lib dir> if you have libraries in a
 
1456
+              nonstandard directory <lib dir>
 
1457
+  LIBS        libraries to pass to the linker, e.g. -l<library>
 
1458
+  CPPFLAGS    (Objective) C/C++ preprocessor flags, e.g. -I<include dir> if
 
1459
+              you have headers in a nonstandard directory <include dir>
 
1460
+  PKG_CONFIG  path to pkg-config utility
 
1461
+  PKG_CONFIG_PATH 
 
1462
+              directories to add to pkg-config's search path
 
1463
+  PKG_CONFIG_LIBDIR 
 
1464
+              path overriding pkg-config's built-in search path
 
1465
+  HBAAPI_CFLAGS 
 
1466
+              C compiler flags for HBAAPI, overriding pkg-config
 
1467
+  HBAAPI_LIBS linker flags for HBAAPI, overriding pkg-config
 
1468
+  DCBD_CFLAGS C compiler flags for DCBD, overriding pkg-config
 
1469
+  DCBD_LIBS   linker flags for DCBD, overriding pkg-config
 
1470
+
 
1471
+Use these variables to override the choices made by `configure' or to help
 
1472
+it to find libraries and programs with nonstandard names/locations.
 
1473
+
 
1474
+Report bugs to <devel@open-fcoe.org>.
 
1475
+_ACEOF
 
1476
+ac_status=$?
 
1477
+fi
 
1478
+
 
1479
+if test "$ac_init_help" = "recursive"; then
 
1480
+  # If there are subdirs, report their specific --help.
 
1481
+  for ac_dir in : $ac_subdirs_all; do test "x$ac_dir" = x: && continue
 
1482
+    test -d "$ac_dir" ||
 
1483
+      { cd "$srcdir" && ac_pwd=`pwd` && srcdir=. && test -d "$ac_dir"; } ||
 
1484
+      continue
 
1485
+    ac_builddir=.
 
1486
+
 
1487
+case "$ac_dir" in
 
1488
+.) ac_dir_suffix= ac_top_builddir_sub=. ac_top_build_prefix= ;;
 
1489
+*)
 
1490
+  ac_dir_suffix=/`$as_echo "$ac_dir" | sed 's|^\.[\\/]||'`
 
1491
+  # A ".." for each directory in $ac_dir_suffix.
 
1492
+  ac_top_builddir_sub=`$as_echo "$ac_dir_suffix" | sed 's|/[^\\/]*|/..|g;s|/||'`
 
1493
+  case $ac_top_builddir_sub in
 
1494
+  "") ac_top_builddir_sub=. ac_top_build_prefix= ;;
 
1495
+  *)  ac_top_build_prefix=$ac_top_builddir_sub/ ;;
 
1496
+  esac ;;
 
1497
+esac
 
1498
+ac_abs_top_builddir=$ac_pwd
 
1499
+ac_abs_builddir=$ac_pwd$ac_dir_suffix
 
1500
+# for backward compatibility:
 
1501
+ac_top_builddir=$ac_top_build_prefix
 
1502
+
 
1503
+case $srcdir in
 
1504
+  .)  # We are building in place.
 
1505
+    ac_srcdir=.
 
1506
+    ac_top_srcdir=$ac_top_builddir_sub
 
1507
+    ac_abs_top_srcdir=$ac_pwd ;;
 
1508
+  [\\/]* | ?:[\\/]* )  # Absolute name.
 
1509
+    ac_srcdir=$srcdir$ac_dir_suffix;
 
1510
+    ac_top_srcdir=$srcdir
 
1511
+    ac_abs_top_srcdir=$srcdir ;;
 
1512
+  *) # Relative name.
 
1513
+    ac_srcdir=$ac_top_build_prefix$srcdir$ac_dir_suffix
 
1514
+    ac_top_srcdir=$ac_top_build_prefix$srcdir
 
1515
+    ac_abs_top_srcdir=$ac_pwd/$srcdir ;;
 
1516
+esac
 
1517
+ac_abs_srcdir=$ac_abs_top_srcdir$ac_dir_suffix
 
1518
+
 
1519
+    cd "$ac_dir" || { ac_status=$?; continue; }
 
1520
+    # Check for guested configure.
 
1521
+    if test -f "$ac_srcdir/configure.gnu"; then
 
1522
+      echo &&
 
1523
+      $SHELL "$ac_srcdir/configure.gnu" --help=recursive
 
1524
+    elif test -f "$ac_srcdir/configure"; then
 
1525
+      echo &&
 
1526
+      $SHELL "$ac_srcdir/configure" --help=recursive
 
1527
+    else
 
1528
+      $as_echo "$as_me: WARNING: no configuration information is in $ac_dir" >&2
 
1529
+    fi || ac_status=$?
 
1530
+    cd "$ac_pwd" || { ac_status=$?; break; }
 
1531
+  done
 
1532
+fi
 
1533
+
 
1534
+test -n "$ac_init_help" && exit $ac_status
 
1535
+if $ac_init_version; then
 
1536
+  cat <<\_ACEOF
 
1537
+fcoe-utils configure 1.0.9
 
1538
+generated by GNU Autoconf 2.68
 
1539
+
 
1540
+Copyright (C) 2010 Free Software Foundation, Inc.
 
1541
+This configure script is free software; the Free Software Foundation
 
1542
+gives unlimited permission to copy, distribute and modify it.
 
1543
+_ACEOF
 
1544
+  exit
 
1545
+fi
 
1546
+
 
1547
+## ------------------------ ##
 
1548
+## Autoconf initialization. ##
 
1549
+## ------------------------ ##
 
1550
+
 
1551
+@%:@ ac_fn_c_try_compile LINENO
 
1552
+@%:@ --------------------------
 
1553
+@%:@ Try to compile conftest.@S|@ac_ext, and return whether this succeeded.
 
1554
+ac_fn_c_try_compile ()
 
1555
+{
 
1556
+  as_lineno=${as_lineno-"$1"} as_lineno_stack=as_lineno_stack=$as_lineno_stack
 
1557
+  rm -f conftest.$ac_objext
 
1558
+  if { { ac_try="$ac_compile"
 
1559
+case "(($ac_try" in
 
1560
+  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
 
1561
+  *) ac_try_echo=$ac_try;;
 
1562
+esac
 
1563
+eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\""
 
1564
+$as_echo "$ac_try_echo"; } >&5
 
1565
+  (eval "$ac_compile") 2>conftest.err
 
1566
+  ac_status=$?
 
1567
+  if test -s conftest.err; then
 
1568
+    grep -v '^ *+' conftest.err >conftest.er1
 
1569
+    cat conftest.er1 >&5
 
1570
+    mv -f conftest.er1 conftest.err
 
1571
+  fi
 
1572
+  $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5
 
1573
+  test $ac_status = 0; } && {
 
1574
+        test -z "$ac_c_werror_flag" ||
 
1575
+        test ! -s conftest.err
 
1576
+       } && test -s conftest.$ac_objext; then :
 
1577
+  ac_retval=0
 
1578
+else
 
1579
+  $as_echo "$as_me: failed program was:" >&5
 
1580
+sed 's/^/| /' conftest.$ac_ext >&5
 
1581
+
 
1582
+       ac_retval=1
 
1583
+fi
 
1584
+  eval $as_lineno_stack; ${as_lineno_stack:+:} unset as_lineno
 
1585
+  as_fn_set_status $ac_retval
 
1586
+
 
1587
+} @%:@ ac_fn_c_try_compile
 
1588
+cat >config.log <<_ACEOF
 
1589
+This file contains any messages produced by compilers while
 
1590
+running configure, to aid debugging if configure makes a mistake.
 
1591
+
 
1592
+It was created by fcoe-utils $as_me 1.0.9, which was
 
1593
+generated by GNU Autoconf 2.68.  Invocation command line was
 
1594
+
 
1595
+  $ $0 $@
 
1596
+
 
1597
+_ACEOF
 
1598
+exec 5>>config.log
 
1599
+{
 
1600
+cat <<_ASUNAME
 
1601
+## --------- ##
 
1602
+## Platform. ##
 
1603
+## --------- ##
 
1604
+
 
1605
+hostname = `(hostname || uname -n) 2>/dev/null | sed 1q`
 
1606
+uname -m = `(uname -m) 2>/dev/null || echo unknown`
 
1607
+uname -r = `(uname -r) 2>/dev/null || echo unknown`
 
1608
+uname -s = `(uname -s) 2>/dev/null || echo unknown`
 
1609
+uname -v = `(uname -v) 2>/dev/null || echo unknown`
 
1610
+
 
1611
+/usr/bin/uname -p = `(/usr/bin/uname -p) 2>/dev/null || echo unknown`
 
1612
+/bin/uname -X     = `(/bin/uname -X) 2>/dev/null     || echo unknown`
 
1613
+
 
1614
+/bin/arch              = `(/bin/arch) 2>/dev/null              || echo unknown`
 
1615
+/usr/bin/arch -k       = `(/usr/bin/arch -k) 2>/dev/null       || echo unknown`
 
1616
+/usr/convex/getsysinfo = `(/usr/convex/getsysinfo) 2>/dev/null || echo unknown`
 
1617
+/usr/bin/hostinfo      = `(/usr/bin/hostinfo) 2>/dev/null      || echo unknown`
 
1618
+/bin/machine           = `(/bin/machine) 2>/dev/null           || echo unknown`
 
1619
+/usr/bin/oslevel       = `(/usr/bin/oslevel) 2>/dev/null       || echo unknown`
 
1620
+/bin/universe          = `(/bin/universe) 2>/dev/null          || echo unknown`
 
1621
+
 
1622
+_ASUNAME
 
1623
+
 
1624
+as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
 
1625
+for as_dir in $PATH
 
1626
+do
 
1627
+  IFS=$as_save_IFS
 
1628
+  test -z "$as_dir" && as_dir=.
 
1629
+    $as_echo "PATH: $as_dir"
 
1630
+  done
 
1631
+IFS=$as_save_IFS
 
1632
+
 
1633
+} >&5
 
1634
+
 
1635
+cat >&5 <<_ACEOF
 
1636
+
 
1637
+
 
1638
+## ----------- ##
 
1639
+## Core tests. ##
 
1640
+## ----------- ##
 
1641
+
 
1642
+_ACEOF
 
1643
+
 
1644
+
 
1645
+# Keep a trace of the command line.
 
1646
+# Strip out --no-create and --no-recursion so they do not pile up.
 
1647
+# Strip out --silent because we don't want to record it for future runs.
 
1648
+# Also quote any args containing shell meta-characters.
 
1649
+# Make two passes to allow for proper duplicate-argument suppression.
 
1650
+ac_configure_args=
 
1651
+ac_configure_args0=
 
1652
+ac_configure_args1=
 
1653
+ac_must_keep_next=false
 
1654
+for ac_pass in 1 2
 
1655
+do
 
1656
+  for ac_arg
 
1657
+  do
 
1658
+    case $ac_arg in
 
1659
+    -no-create | --no-c* | -n | -no-recursion | --no-r*) continue ;;
 
1660
+    -q | -quiet | --quiet | --quie | --qui | --qu | --q \
 
1661
+    | -silent | --silent | --silen | --sile | --sil)
 
1662
+      continue ;;
 
1663
+    *\'*)
 
1664
+      ac_arg=`$as_echo "$ac_arg" | sed "s/'/'\\\\\\\\''/g"` ;;
 
1665
+    esac
 
1666
+    case $ac_pass in
 
1667
+    1) as_fn_append ac_configure_args0 " '$ac_arg'" ;;
 
1668
+    2)
 
1669
+      as_fn_append ac_configure_args1 " '$ac_arg'"
 
1670
+      if test $ac_must_keep_next = true; then
 
1671
+       ac_must_keep_next=false # Got value, back to normal.
 
1672
+      else
 
1673
+       case $ac_arg in
 
1674
+         *=* | --config-cache | -C | -disable-* | --disable-* \
 
1675
+         | -enable-* | --enable-* | -gas | --g* | -nfp | --nf* \
 
1676
+         | -q | -quiet | --q* | -silent | --sil* | -v | -verb* \
 
1677
+         | -with-* | --with-* | -without-* | --without-* | --x)
 
1678
+           case "$ac_configure_args0 " in
 
1679
+             "$ac_configure_args1"*" '$ac_arg' "* ) continue ;;
 
1680
+           esac
 
1681
+           ;;
 
1682
+         -* ) ac_must_keep_next=true ;;
 
1683
+       esac
 
1684
+      fi
 
1685
+      as_fn_append ac_configure_args " '$ac_arg'"
 
1686
+      ;;
 
1687
+    esac
 
1688
+  done
 
1689
+done
 
1690
+{ ac_configure_args0=; unset ac_configure_args0;}
 
1691
+{ ac_configure_args1=; unset ac_configure_args1;}
 
1692
+
 
1693
+# When interrupted or exit'd, cleanup temporary files, and complete
 
1694
+# config.log.  We remove comments because anyway the quotes in there
 
1695
+# would cause problems or look ugly.
 
1696
+# WARNING: Use '\'' to represent an apostrophe within the trap.
 
1697
+# WARNING: Do not start the trap code with a newline, due to a FreeBSD 4.0 bug.
 
1698
+trap 'exit_status=$?
 
1699
+  # Save into config.log some information that might help in debugging.
 
1700
+  {
 
1701
+    echo
 
1702
+
 
1703
+    $as_echo "## ---------------- ##
 
1704
+## Cache variables. ##
 
1705
+## ---------------- ##"
 
1706
+    echo
 
1707
+    # The following way of writing the cache mishandles newlines in values,
 
1708
+(
 
1709
+  for ac_var in `(set) 2>&1 | sed -n '\''s/^\([a-zA-Z_][a-zA-Z0-9_]*\)=.*/\1/p'\''`; do
 
1710
+    eval ac_val=\$$ac_var
 
1711
+    case $ac_val in #(
 
1712
+    *${as_nl}*)
 
1713
+      case $ac_var in #(
 
1714
+      *_cv_*) { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: cache variable $ac_var contains a newline" >&5
 
1715
+$as_echo "$as_me: WARNING: cache variable $ac_var contains a newline" >&2;} ;;
 
1716
+      esac
 
1717
+      case $ac_var in #(
 
1718
+      _ | IFS | as_nl) ;; #(
 
1719
+      BASH_ARGV | BASH_SOURCE) eval $ac_var= ;; #(
 
1720
+      *) { eval $ac_var=; unset $ac_var;} ;;
 
1721
+      esac ;;
 
1722
+    esac
 
1723
+  done
 
1724
+  (set) 2>&1 |
 
1725
+    case $as_nl`(ac_space='\'' '\''; set) 2>&1` in #(
 
1726
+    *${as_nl}ac_space=\ *)
 
1727
+      sed -n \
 
1728
+       "s/'\''/'\''\\\\'\'''\''/g;
 
1729
+         s/^\\([_$as_cr_alnum]*_cv_[_$as_cr_alnum]*\\)=\\(.*\\)/\\1='\''\\2'\''/p"
 
1730
+      ;; #(
 
1731
+    *)
 
1732
+      sed -n "/^[_$as_cr_alnum]*_cv_[_$as_cr_alnum]*=/p"
 
1733
+      ;;
 
1734
+    esac |
 
1735
+    sort
 
1736
+)
 
1737
+    echo
 
1738
+
 
1739
+    $as_echo "## ----------------- ##
 
1740
+## Output variables. ##
 
1741
+## ----------------- ##"
 
1742
+    echo
 
1743
+    for ac_var in $ac_subst_vars
 
1744
+    do
 
1745
+      eval ac_val=\$$ac_var
 
1746
+      case $ac_val in
 
1747
+      *\'\''*) ac_val=`$as_echo "$ac_val" | sed "s/'\''/'\''\\\\\\\\'\'''\''/g"`;;
 
1748
+      esac
 
1749
+      $as_echo "$ac_var='\''$ac_val'\''"
 
1750
+    done | sort
 
1751
+    echo
 
1752
+
 
1753
+    if test -n "$ac_subst_files"; then
 
1754
+      $as_echo "## ------------------- ##
 
1755
+## File substitutions. ##
 
1756
+## ------------------- ##"
 
1757
+      echo
 
1758
+      for ac_var in $ac_subst_files
 
1759
+      do
 
1760
+       eval ac_val=\$$ac_var
 
1761
+       case $ac_val in
 
1762
+       *\'\''*) ac_val=`$as_echo "$ac_val" | sed "s/'\''/'\''\\\\\\\\'\'''\''/g"`;;
 
1763
+       esac
 
1764
+       $as_echo "$ac_var='\''$ac_val'\''"
 
1765
+      done | sort
 
1766
+      echo
 
1767
+    fi
 
1768
+
 
1769
+    if test -s confdefs.h; then
 
1770
+      $as_echo "## ----------- ##
 
1771
+## confdefs.h. ##
 
1772
+## ----------- ##"
 
1773
+      echo
 
1774
+      cat confdefs.h
 
1775
+      echo
 
1776
+    fi
 
1777
+    test "$ac_signal" != 0 &&
 
1778
+      $as_echo "$as_me: caught signal $ac_signal"
 
1779
+    $as_echo "$as_me: exit $exit_status"
 
1780
+  } >&5
 
1781
+  rm -f core *.core core.conftest.* &&
 
1782
+    rm -f -r conftest* confdefs* conf$$* $ac_clean_files &&
 
1783
+    exit $exit_status
 
1784
+' 0
 
1785
+for ac_signal in 1 2 13 15; do
 
1786
+  trap 'ac_signal='$ac_signal'; as_fn_exit 1' $ac_signal
 
1787
+done
 
1788
+ac_signal=0
 
1789
+
 
1790
+# confdefs.h avoids OS command line length limits that DEFS can exceed.
 
1791
+rm -f -r conftest* confdefs.h
 
1792
+
 
1793
+$as_echo "/* confdefs.h */" > confdefs.h
 
1794
+
 
1795
+# Predefined preprocessor variables.
 
1796
+
 
1797
+cat >>confdefs.h <<_ACEOF
 
1798
+@%:@define PACKAGE_NAME "$PACKAGE_NAME"
 
1799
+_ACEOF
 
1800
+
 
1801
+cat >>confdefs.h <<_ACEOF
 
1802
+@%:@define PACKAGE_TARNAME "$PACKAGE_TARNAME"
 
1803
+_ACEOF
 
1804
+
 
1805
+cat >>confdefs.h <<_ACEOF
 
1806
+@%:@define PACKAGE_VERSION "$PACKAGE_VERSION"
 
1807
+_ACEOF
 
1808
+
 
1809
+cat >>confdefs.h <<_ACEOF
 
1810
+@%:@define PACKAGE_STRING "$PACKAGE_STRING"
 
1811
+_ACEOF
 
1812
+
 
1813
+cat >>confdefs.h <<_ACEOF
 
1814
+@%:@define PACKAGE_BUGREPORT "$PACKAGE_BUGREPORT"
 
1815
+_ACEOF
 
1816
+
 
1817
+cat >>confdefs.h <<_ACEOF
 
1818
+@%:@define PACKAGE_URL "$PACKAGE_URL"
 
1819
+_ACEOF
 
1820
+
 
1821
+
 
1822
+# Let the site file select an alternate cache file if it wants to.
 
1823
+# Prefer an explicitly selected file to automatically selected ones.
 
1824
+ac_site_file1=NONE
 
1825
+ac_site_file2=NONE
 
1826
+if test -n "$CONFIG_SITE"; then
 
1827
+  # We do not want a PATH search for config.site.
 
1828
+  case $CONFIG_SITE in @%:@((
 
1829
+    -*)  ac_site_file1=./$CONFIG_SITE;;
 
1830
+    */*) ac_site_file1=$CONFIG_SITE;;
 
1831
+    *)   ac_site_file1=./$CONFIG_SITE;;
 
1832
+  esac
 
1833
+elif test "x$prefix" != xNONE; then
 
1834
+  ac_site_file1=$prefix/share/config.site
 
1835
+  ac_site_file2=$prefix/etc/config.site
 
1836
+else
 
1837
+  ac_site_file1=$ac_default_prefix/share/config.site
 
1838
+  ac_site_file2=$ac_default_prefix/etc/config.site
 
1839
+fi
 
1840
+for ac_site_file in "$ac_site_file1" "$ac_site_file2"
 
1841
+do
 
1842
+  test "x$ac_site_file" = xNONE && continue
 
1843
+  if test /dev/null != "$ac_site_file" && test -r "$ac_site_file"; then
 
1844
+    { $as_echo "$as_me:${as_lineno-$LINENO}: loading site script $ac_site_file" >&5
 
1845
+$as_echo "$as_me: loading site script $ac_site_file" >&6;}
 
1846
+    sed 's/^/| /' "$ac_site_file" >&5
 
1847
+    . "$ac_site_file" \
 
1848
+      || { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5
 
1849
+$as_echo "$as_me: error: in \`$ac_pwd':" >&2;}
 
1850
+as_fn_error $? "failed to load site script $ac_site_file
 
1851
+See \`config.log' for more details" "$LINENO" 5; }
 
1852
+  fi
 
1853
+done
 
1854
+
 
1855
+if test -r "$cache_file"; then
 
1856
+  # Some versions of bash will fail to source /dev/null (special files
 
1857
+  # actually), so we avoid doing that.  DJGPP emulates it as a regular file.
 
1858
+  if test /dev/null != "$cache_file" && test -f "$cache_file"; then
 
1859
+    { $as_echo "$as_me:${as_lineno-$LINENO}: loading cache $cache_file" >&5
 
1860
+$as_echo "$as_me: loading cache $cache_file" >&6;}
 
1861
+    case $cache_file in
 
1862
+      [\\/]* | ?:[\\/]* ) . "$cache_file";;
 
1863
+      *)                      . "./$cache_file";;
 
1864
+    esac
 
1865
+  fi
 
1866
+else
 
1867
+  { $as_echo "$as_me:${as_lineno-$LINENO}: creating cache $cache_file" >&5
 
1868
+$as_echo "$as_me: creating cache $cache_file" >&6;}
 
1869
+  >$cache_file
 
1870
+fi
 
1871
+
 
1872
+# Check that the precious variables saved in the cache have kept the same
 
1873
+# value.
 
1874
+ac_cache_corrupted=false
 
1875
+for ac_var in $ac_precious_vars; do
 
1876
+  eval ac_old_set=\$ac_cv_env_${ac_var}_set
 
1877
+  eval ac_new_set=\$ac_env_${ac_var}_set
 
1878
+  eval ac_old_val=\$ac_cv_env_${ac_var}_value
 
1879
+  eval ac_new_val=\$ac_env_${ac_var}_value
 
1880
+  case $ac_old_set,$ac_new_set in
 
1881
+    set,)
 
1882
+      { $as_echo "$as_me:${as_lineno-$LINENO}: error: \`$ac_var' was set to \`$ac_old_val' in the previous run" >&5
 
1883
+$as_echo "$as_me: error: \`$ac_var' was set to \`$ac_old_val' in the previous run" >&2;}
 
1884
+      ac_cache_corrupted=: ;;
 
1885
+    ,set)
 
1886
+      { $as_echo "$as_me:${as_lineno-$LINENO}: error: \`$ac_var' was not set in the previous run" >&5
 
1887
+$as_echo "$as_me: error: \`$ac_var' was not set in the previous run" >&2;}
 
1888
+      ac_cache_corrupted=: ;;
 
1889
+    ,);;
 
1890
+    *)
 
1891
+      if test "x$ac_old_val" != "x$ac_new_val"; then
 
1892
+       # differences in whitespace do not lead to failure.
 
1893
+       ac_old_val_w=`echo x $ac_old_val`
 
1894
+       ac_new_val_w=`echo x $ac_new_val`
 
1895
+       if test "$ac_old_val_w" != "$ac_new_val_w"; then
 
1896
+         { $as_echo "$as_me:${as_lineno-$LINENO}: error: \`$ac_var' has changed since the previous run:" >&5
 
1897
+$as_echo "$as_me: error: \`$ac_var' has changed since the previous run:" >&2;}
 
1898
+         ac_cache_corrupted=:
 
1899
+       else
 
1900
+         { $as_echo "$as_me:${as_lineno-$LINENO}: warning: ignoring whitespace changes in \`$ac_var' since the previous run:" >&5
 
1901
+$as_echo "$as_me: warning: ignoring whitespace changes in \`$ac_var' since the previous run:" >&2;}
 
1902
+         eval $ac_var=\$ac_old_val
 
1903
+       fi
 
1904
+       { $as_echo "$as_me:${as_lineno-$LINENO}:   former value:  \`$ac_old_val'" >&5
 
1905
+$as_echo "$as_me:   former value:  \`$ac_old_val'" >&2;}
 
1906
+       { $as_echo "$as_me:${as_lineno-$LINENO}:   current value: \`$ac_new_val'" >&5
 
1907
+$as_echo "$as_me:   current value: \`$ac_new_val'" >&2;}
 
1908
+      fi;;
 
1909
+  esac
 
1910
+  # Pass precious variables to config.status.
 
1911
+  if test "$ac_new_set" = set; then
 
1912
+    case $ac_new_val in
 
1913
+    *\'*) ac_arg=$ac_var=`$as_echo "$ac_new_val" | sed "s/'/'\\\\\\\\''/g"` ;;
 
1914
+    *) ac_arg=$ac_var=$ac_new_val ;;
 
1915
+    esac
 
1916
+    case " $ac_configure_args " in
 
1917
+      *" '$ac_arg' "*) ;; # Avoid dups.  Use of quotes ensures accuracy.
 
1918
+      *) as_fn_append ac_configure_args " '$ac_arg'" ;;
 
1919
+    esac
 
1920
+  fi
 
1921
+done
 
1922
+if $ac_cache_corrupted; then
 
1923
+  { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5
 
1924
+$as_echo "$as_me: error: in \`$ac_pwd':" >&2;}
 
1925
+  { $as_echo "$as_me:${as_lineno-$LINENO}: error: changes in the environment can compromise the build" >&5
 
1926
+$as_echo "$as_me: error: changes in the environment can compromise the build" >&2;}
 
1927
+  as_fn_error $? "run \`make distclean' and/or \`rm $cache_file' and start over" "$LINENO" 5
 
1928
+fi
 
1929
+## -------------------- ##
 
1930
+## Main body of script. ##
 
1931
+## -------------------- ##
 
1932
+
 
1933
+ac_ext=c
 
1934
+ac_cpp='$CPP $CPPFLAGS'
 
1935
+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5'
 
1936
+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5'
 
1937
+ac_compiler_gnu=$ac_cv_c_compiler_gnu
 
1938
+
 
1939
+
 
1940
+am__api_version='1.11'
 
1941
+
 
1942
+ac_aux_dir=
 
1943
+for ac_dir in "$srcdir" "$srcdir/.." "$srcdir/../.."; do
 
1944
+  if test -f "$ac_dir/install-sh"; then
 
1945
+    ac_aux_dir=$ac_dir
 
1946
+    ac_install_sh="$ac_aux_dir/install-sh -c"
 
1947
+    break
 
1948
+  elif test -f "$ac_dir/install.sh"; then
 
1949
+    ac_aux_dir=$ac_dir
 
1950
+    ac_install_sh="$ac_aux_dir/install.sh -c"
 
1951
+    break
 
1952
+  elif test -f "$ac_dir/shtool"; then
 
1953
+    ac_aux_dir=$ac_dir
 
1954
+    ac_install_sh="$ac_aux_dir/shtool install -c"
 
1955
+    break
 
1956
+  fi
 
1957
+done
 
1958
+if test -z "$ac_aux_dir"; then
 
1959
+  as_fn_error $? "cannot find install-sh, install.sh, or shtool in \"$srcdir\" \"$srcdir/..\" \"$srcdir/../..\"" "$LINENO" 5
 
1960
+fi
 
1961
+
 
1962
+# These three variables are undocumented and unsupported,
 
1963
+# and are intended to be withdrawn in a future Autoconf release.
 
1964
+# They can cause serious problems if a builder's source tree is in a directory
 
1965
+# whose full name contains unusual characters.
 
1966
+ac_config_guess="$SHELL $ac_aux_dir/config.guess"  # Please don't use this var.
 
1967
+ac_config_sub="$SHELL $ac_aux_dir/config.sub"  # Please don't use this var.
 
1968
+ac_configure="$SHELL $ac_aux_dir/configure"  # Please don't use this var.
 
1969
+
 
1970
+
 
1971
+# Find a good install program.  We prefer a C program (faster),
 
1972
+# so one script is as good as another.  But avoid the broken or
 
1973
+# incompatible versions:
 
1974
+# SysV /etc/install, /usr/sbin/install
 
1975
+# SunOS /usr/etc/install
 
1976
+# IRIX /sbin/install
 
1977
+# AIX /bin/install
 
1978
+# AmigaOS /C/install, which installs bootblocks on floppy discs
 
1979
+# AIX 4 /usr/bin/installbsd, which doesn't work without a -g flag
 
1980
+# AFS /usr/afsws/bin/install, which mishandles nonexistent args
 
1981
+# SVR4 /usr/ucb/install, which tries to use the nonexistent group "staff"
 
1982
+# OS/2's system install, which has a completely different semantic
 
1983
+# ./install, which can be erroneously created by make from ./install.sh.
 
1984
+# Reject install programs that cannot install multiple files.
 
1985
+{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for a BSD-compatible install" >&5
 
1986
+$as_echo_n "checking for a BSD-compatible install... " >&6; }
 
1987
+if test -z "$INSTALL"; then
 
1988
+if ${ac_cv_path_install+:} false; then :
 
1989
+  $as_echo_n "(cached) " >&6
 
1990
+else
 
1991
+  as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
 
1992
+for as_dir in $PATH
 
1993
+do
 
1994
+  IFS=$as_save_IFS
 
1995
+  test -z "$as_dir" && as_dir=.
 
1996
+    # Account for people who put trailing slashes in PATH elements.
 
1997
+case $as_dir/ in @%:@((
 
1998
+  ./ | .// | /[cC]/* | \
 
1999
+  /etc/* | /usr/sbin/* | /usr/etc/* | /sbin/* | /usr/afsws/bin/* | \
 
2000
+  ?:[\\/]os2[\\/]install[\\/]* | ?:[\\/]OS2[\\/]INSTALL[\\/]* | \
 
2001
+  /usr/ucb/* ) ;;
 
2002
+  *)
 
2003
+    # OSF1 and SCO ODT 3.0 have their own names for install.
 
2004
+    # Don't use installbsd from OSF since it installs stuff as root
 
2005
+    # by default.
 
2006
+    for ac_prog in ginstall scoinst install; do
 
2007
+      for ac_exec_ext in '' $ac_executable_extensions; do
 
2008
+       if { test -f "$as_dir/$ac_prog$ac_exec_ext" && $as_test_x "$as_dir/$ac_prog$ac_exec_ext"; }; then
 
2009
+         if test $ac_prog = install &&
 
2010
+           grep dspmsg "$as_dir/$ac_prog$ac_exec_ext" >/dev/null 2>&1; then
 
2011
+           # AIX install.  It has an incompatible calling convention.
 
2012
+           :
 
2013
+         elif test $ac_prog = install &&
 
2014
+           grep pwplus "$as_dir/$ac_prog$ac_exec_ext" >/dev/null 2>&1; then
 
2015
+           # program-specific install script used by HP pwplus--don't use.
 
2016
+           :
 
2017
+         else
 
2018
+           rm -rf conftest.one conftest.two conftest.dir
 
2019
+           echo one > conftest.one
 
2020
+           echo two > conftest.two
 
2021
+           mkdir conftest.dir
 
2022
+           if "$as_dir/$ac_prog$ac_exec_ext" -c conftest.one conftest.two "`pwd`/conftest.dir" &&
 
2023
+             test -s conftest.one && test -s conftest.two &&
 
2024
+             test -s conftest.dir/conftest.one &&
 
2025
+             test -s conftest.dir/conftest.two
 
2026
+           then
 
2027
+             ac_cv_path_install="$as_dir/$ac_prog$ac_exec_ext -c"
 
2028
+             break 3
 
2029
+           fi
 
2030
+         fi
 
2031
+       fi
 
2032
+      done
 
2033
+    done
 
2034
+    ;;
 
2035
+esac
 
2036
+
 
2037
+  done
 
2038
+IFS=$as_save_IFS
 
2039
+
 
2040
+rm -rf conftest.one conftest.two conftest.dir
 
2041
+
 
2042
+fi
 
2043
+  if test "${ac_cv_path_install+set}" = set; then
 
2044
+    INSTALL=$ac_cv_path_install
 
2045
+  else
 
2046
+    # As a last resort, use the slow shell script.  Don't cache a
 
2047
+    # value for INSTALL within a source directory, because that will
 
2048
+    # break other packages using the cache if that directory is
 
2049
+    # removed, or if the value is a relative name.
 
2050
+    INSTALL=$ac_install_sh
 
2051
+  fi
 
2052
+fi
 
2053
+{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $INSTALL" >&5
 
2054
+$as_echo "$INSTALL" >&6; }
 
2055
+
 
2056
+# Use test -z because SunOS4 sh mishandles braces in ${var-val}.
 
2057
+# It thinks the first close brace ends the variable substitution.
 
2058
+test -z "$INSTALL_PROGRAM" && INSTALL_PROGRAM='${INSTALL}'
 
2059
+
 
2060
+test -z "$INSTALL_SCRIPT" && INSTALL_SCRIPT='${INSTALL}'
 
2061
+
 
2062
+test -z "$INSTALL_DATA" && INSTALL_DATA='${INSTALL} -m 644'
 
2063
+
 
2064
+{ $as_echo "$as_me:${as_lineno-$LINENO}: checking whether build environment is sane" >&5
 
2065
+$as_echo_n "checking whether build environment is sane... " >&6; }
 
2066
+# Just in case
 
2067
+sleep 1
 
2068
+echo timestamp > conftest.file
 
2069
+# Reject unsafe characters in $srcdir or the absolute working directory
 
2070
+# name.  Accept space and tab only in the latter.
 
2071
+am_lf='
 
2072
+'
 
2073
+case `pwd` in
 
2074
+  *[\\\"\#\$\&\'\`$am_lf]*)
 
2075
+    as_fn_error $? "unsafe absolute working directory name" "$LINENO" 5;;
 
2076
+esac
 
2077
+case $srcdir in
 
2078
+  *[\\\"\#\$\&\'\`$am_lf\ \    ]*)
 
2079
+    as_fn_error $? "unsafe srcdir value: \`$srcdir'" "$LINENO" 5;;
 
2080
+esac
 
2081
+
 
2082
+# Do `set' in a subshell so we don't clobber the current shell's
 
2083
+# arguments.  Must try -L first in case configure is actually a
 
2084
+# symlink; some systems play weird games with the mod time of symlinks
 
2085
+# (eg FreeBSD returns the mod time of the symlink's containing
 
2086
+# directory).
 
2087
+if (
 
2088
+   set X `ls -Lt "$srcdir/configure" conftest.file 2> /dev/null`
 
2089
+   if test "$*" = "X"; then
 
2090
+      # -L didn't work.
 
2091
+      set X `ls -t "$srcdir/configure" conftest.file`
 
2092
+   fi
 
2093
+   rm -f conftest.file
 
2094
+   if test "$*" != "X $srcdir/configure conftest.file" \
 
2095
+      && test "$*" != "X conftest.file $srcdir/configure"; then
 
2096
+
 
2097
+      # If neither matched, then we have a broken ls.  This can happen
 
2098
+      # if, for instance, CONFIG_SHELL is bash and it inherits a
 
2099
+      # broken ls alias from the environment.  This has actually
 
2100
+      # happened.  Such a system could not be considered "sane".
 
2101
+      as_fn_error $? "ls -t appears to fail.  Make sure there is not a broken
 
2102
+alias in your environment" "$LINENO" 5
 
2103
+   fi
 
2104
+
 
2105
+   test "$2" = conftest.file
 
2106
+   )
 
2107
+then
 
2108
+   # Ok.
 
2109
+   :
 
2110
+else
 
2111
+   as_fn_error $? "newly created file is older than distributed files!
 
2112
+Check your system clock" "$LINENO" 5
 
2113
+fi
 
2114
+{ $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5
 
2115
+$as_echo "yes" >&6; }
 
2116
+test "$program_prefix" != NONE &&
 
2117
+  program_transform_name="s&^&$program_prefix&;$program_transform_name"
 
2118
+# Use a double $ so make ignores it.
 
2119
+test "$program_suffix" != NONE &&
 
2120
+  program_transform_name="s&\$&$program_suffix&;$program_transform_name"
 
2121
+# Double any \ or $.
 
2122
+# By default was `s,x,x', remove it if useless.
 
2123
+ac_script='s/[\\$]/&&/g;s/;s,x,x,$//'
 
2124
+program_transform_name=`$as_echo "$program_transform_name" | sed "$ac_script"`
 
2125
+
 
2126
+# expand $ac_aux_dir to an absolute path
 
2127
+am_aux_dir=`cd $ac_aux_dir && pwd`
 
2128
+
 
2129
+if test x"${MISSING+set}" != xset; then
 
2130
+  case $am_aux_dir in
 
2131
+  *\ * | *\    *)
 
2132
+    MISSING="\${SHELL} \"$am_aux_dir/missing\"" ;;
 
2133
+  *)
 
2134
+    MISSING="\${SHELL} $am_aux_dir/missing" ;;
 
2135
+  esac
 
2136
+fi
 
2137
+# Use eval to expand $SHELL
 
2138
+if eval "$MISSING --run true"; then
 
2139
+  am_missing_run="$MISSING --run "
 
2140
+else
 
2141
+  am_missing_run=
 
2142
+  { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: \`missing' script is too old or missing" >&5
 
2143
+$as_echo "$as_me: WARNING: \`missing' script is too old or missing" >&2;}
 
2144
+fi
 
2145
+
 
2146
+if test x"${install_sh}" != xset; then
 
2147
+  case $am_aux_dir in
 
2148
+  *\ * | *\    *)
 
2149
+    install_sh="\${SHELL} '$am_aux_dir/install-sh'" ;;
 
2150
+  *)
 
2151
+    install_sh="\${SHELL} $am_aux_dir/install-sh"
 
2152
+  esac
 
2153
+fi
 
2154
+
 
2155
+# Installed binaries are usually stripped using `strip' when the user
 
2156
+# run `make install-strip'.  However `strip' might not be the right
 
2157
+# tool to use in cross-compilation environments, therefore Automake
 
2158
+# will honor the `STRIP' environment variable to overrule this program.
 
2159
+if test "$cross_compiling" != no; then
 
2160
+  if test -n "$ac_tool_prefix"; then
 
2161
+  # Extract the first word of "${ac_tool_prefix}strip", so it can be a program name with args.
 
2162
+set dummy ${ac_tool_prefix}strip; ac_word=$2
 
2163
+{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
 
2164
+$as_echo_n "checking for $ac_word... " >&6; }
 
2165
+if ${ac_cv_prog_STRIP+:} false; then :
 
2166
+  $as_echo_n "(cached) " >&6
 
2167
+else
 
2168
+  if test -n "$STRIP"; then
 
2169
+  ac_cv_prog_STRIP="$STRIP" # Let the user override the test.
 
2170
+else
 
2171
+as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
 
2172
+for as_dir in $PATH
 
2173
+do
 
2174
+  IFS=$as_save_IFS
 
2175
+  test -z "$as_dir" && as_dir=.
 
2176
+    for ac_exec_ext in '' $ac_executable_extensions; do
 
2177
+  if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then
 
2178
+    ac_cv_prog_STRIP="${ac_tool_prefix}strip"
 
2179
+    $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5
 
2180
+    break 2
 
2181
+  fi
 
2182
+done
 
2183
+  done
 
2184
+IFS=$as_save_IFS
 
2185
+
 
2186
+fi
 
2187
+fi
 
2188
+STRIP=$ac_cv_prog_STRIP
 
2189
+if test -n "$STRIP"; then
 
2190
+  { $as_echo "$as_me:${as_lineno-$LINENO}: result: $STRIP" >&5
 
2191
+$as_echo "$STRIP" >&6; }
 
2192
+else
 
2193
+  { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5
 
2194
+$as_echo "no" >&6; }
 
2195
+fi
 
2196
+
 
2197
+
 
2198
+fi
 
2199
+if test -z "$ac_cv_prog_STRIP"; then
 
2200
+  ac_ct_STRIP=$STRIP
 
2201
+  # Extract the first word of "strip", so it can be a program name with args.
 
2202
+set dummy strip; ac_word=$2
 
2203
+{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
 
2204
+$as_echo_n "checking for $ac_word... " >&6; }
 
2205
+if ${ac_cv_prog_ac_ct_STRIP+:} false; then :
 
2206
+  $as_echo_n "(cached) " >&6
 
2207
+else
 
2208
+  if test -n "$ac_ct_STRIP"; then
 
2209
+  ac_cv_prog_ac_ct_STRIP="$ac_ct_STRIP" # Let the user override the test.
 
2210
+else
 
2211
+as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
 
2212
+for as_dir in $PATH
 
2213
+do
 
2214
+  IFS=$as_save_IFS
 
2215
+  test -z "$as_dir" && as_dir=.
 
2216
+    for ac_exec_ext in '' $ac_executable_extensions; do
 
2217
+  if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then
 
2218
+    ac_cv_prog_ac_ct_STRIP="strip"
 
2219
+    $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5
 
2220
+    break 2
 
2221
+  fi
 
2222
+done
 
2223
+  done
 
2224
+IFS=$as_save_IFS
 
2225
+
 
2226
+fi
 
2227
+fi
 
2228
+ac_ct_STRIP=$ac_cv_prog_ac_ct_STRIP
 
2229
+if test -n "$ac_ct_STRIP"; then
 
2230
+  { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_ct_STRIP" >&5
 
2231
+$as_echo "$ac_ct_STRIP" >&6; }
 
2232
+else
 
2233
+  { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5
 
2234
+$as_echo "no" >&6; }
 
2235
+fi
 
2236
+
 
2237
+  if test "x$ac_ct_STRIP" = x; then
 
2238
+    STRIP=":"
 
2239
+  else
 
2240
+    case $cross_compiling:$ac_tool_warned in
 
2241
+yes:)
 
2242
+{ $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet" >&5
 
2243
+$as_echo "$as_me: WARNING: using cross tools not prefixed with host triplet" >&2;}
 
2244
+ac_tool_warned=yes ;;
 
2245
+esac
 
2246
+    STRIP=$ac_ct_STRIP
 
2247
+  fi
 
2248
+else
 
2249
+  STRIP="$ac_cv_prog_STRIP"
 
2250
+fi
 
2251
+
 
2252
+fi
 
2253
+INSTALL_STRIP_PROGRAM="\$(install_sh) -c -s"
 
2254
+
 
2255
+{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for a thread-safe mkdir -p" >&5
 
2256
+$as_echo_n "checking for a thread-safe mkdir -p... " >&6; }
 
2257
+if test -z "$MKDIR_P"; then
 
2258
+  if ${ac_cv_path_mkdir+:} false; then :
 
2259
+  $as_echo_n "(cached) " >&6
 
2260
+else
 
2261
+  as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
 
2262
+for as_dir in $PATH$PATH_SEPARATOR/opt/sfw/bin
 
2263
+do
 
2264
+  IFS=$as_save_IFS
 
2265
+  test -z "$as_dir" && as_dir=.
 
2266
+    for ac_prog in mkdir gmkdir; do
 
2267
+        for ac_exec_ext in '' $ac_executable_extensions; do
 
2268
+          { test -f "$as_dir/$ac_prog$ac_exec_ext" && $as_test_x "$as_dir/$ac_prog$ac_exec_ext"; } || continue
 
2269
+          case `"$as_dir/$ac_prog$ac_exec_ext" --version 2>&1` in #(
 
2270
+            'mkdir (GNU coreutils) '* | \
 
2271
+            'mkdir (coreutils) '* | \
 
2272
+            'mkdir (fileutils) '4.1*)
 
2273
+              ac_cv_path_mkdir=$as_dir/$ac_prog$ac_exec_ext
 
2274
+              break 3;;
 
2275
+          esac
 
2276
+        done
 
2277
+       done
 
2278
+  done
 
2279
+IFS=$as_save_IFS
 
2280
+
 
2281
+fi
 
2282
+
 
2283
+  test -d ./--version && rmdir ./--version
 
2284
+  if test "${ac_cv_path_mkdir+set}" = set; then
 
2285
+    MKDIR_P="$ac_cv_path_mkdir -p"
 
2286
+  else
 
2287
+    # As a last resort, use the slow shell script.  Don't cache a
 
2288
+    # value for MKDIR_P within a source directory, because that will
 
2289
+    # break other packages using the cache if that directory is
 
2290
+    # removed, or if the value is a relative name.
 
2291
+    MKDIR_P="$ac_install_sh -d"
 
2292
+  fi
 
2293
+fi
 
2294
+{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $MKDIR_P" >&5
 
2295
+$as_echo "$MKDIR_P" >&6; }
 
2296
+
 
2297
+mkdir_p="$MKDIR_P"
 
2298
+case $mkdir_p in
 
2299
+  [\\/$]* | ?:[\\/]*) ;;
 
2300
+  */*) mkdir_p="\$(top_builddir)/$mkdir_p" ;;
 
2301
+esac
 
2302
+
 
2303
+for ac_prog in gawk mawk nawk awk
 
2304
+do
 
2305
+  # Extract the first word of "$ac_prog", so it can be a program name with args.
 
2306
+set dummy $ac_prog; ac_word=$2
 
2307
+{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
 
2308
+$as_echo_n "checking for $ac_word... " >&6; }
 
2309
+if ${ac_cv_prog_AWK+:} false; then :
 
2310
+  $as_echo_n "(cached) " >&6
 
2311
+else
 
2312
+  if test -n "$AWK"; then
 
2313
+  ac_cv_prog_AWK="$AWK" # Let the user override the test.
 
2314
+else
 
2315
+as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
 
2316
+for as_dir in $PATH
 
2317
+do
 
2318
+  IFS=$as_save_IFS
 
2319
+  test -z "$as_dir" && as_dir=.
 
2320
+    for ac_exec_ext in '' $ac_executable_extensions; do
 
2321
+  if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then
 
2322
+    ac_cv_prog_AWK="$ac_prog"
 
2323
+    $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5
 
2324
+    break 2
 
2325
+  fi
 
2326
+done
 
2327
+  done
 
2328
+IFS=$as_save_IFS
 
2329
+
 
2330
+fi
 
2331
+fi
 
2332
+AWK=$ac_cv_prog_AWK
 
2333
+if test -n "$AWK"; then
 
2334
+  { $as_echo "$as_me:${as_lineno-$LINENO}: result: $AWK" >&5
 
2335
+$as_echo "$AWK" >&6; }
 
2336
+else
 
2337
+  { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5
 
2338
+$as_echo "no" >&6; }
 
2339
+fi
 
2340
+
 
2341
+
 
2342
+  test -n "$AWK" && break
 
2343
+done
 
2344
+
 
2345
+{ $as_echo "$as_me:${as_lineno-$LINENO}: checking whether ${MAKE-make} sets \$(MAKE)" >&5
 
2346
+$as_echo_n "checking whether ${MAKE-make} sets \$(MAKE)... " >&6; }
 
2347
+set x ${MAKE-make}
 
2348
+ac_make=`$as_echo "$2" | sed 's/+/p/g; s/[^a-zA-Z0-9_]/_/g'`
 
2349
+if eval \${ac_cv_prog_make_${ac_make}_set+:} false; then :
 
2350
+  $as_echo_n "(cached) " >&6
 
2351
+else
 
2352
+  cat >conftest.make <<\_ACEOF
 
2353
+SHELL = /bin/sh
 
2354
+all:
 
2355
+       @echo '@@@%%%=$(MAKE)=@@@%%%'
 
2356
+_ACEOF
 
2357
+# GNU make sometimes prints "make[1]: Entering ...", which would confuse us.
 
2358
+case `${MAKE-make} -f conftest.make 2>/dev/null` in
 
2359
+  *@@@%%%=?*=@@@%%%*)
 
2360
+    eval ac_cv_prog_make_${ac_make}_set=yes;;
 
2361
+  *)
 
2362
+    eval ac_cv_prog_make_${ac_make}_set=no;;
 
2363
+esac
 
2364
+rm -f conftest.make
 
2365
+fi
 
2366
+if eval test \$ac_cv_prog_make_${ac_make}_set = yes; then
 
2367
+  { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5
 
2368
+$as_echo "yes" >&6; }
 
2369
+  SET_MAKE=
 
2370
+else
 
2371
+  { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5
 
2372
+$as_echo "no" >&6; }
 
2373
+  SET_MAKE="MAKE=${MAKE-make}"
 
2374
+fi
 
2375
+
 
2376
+rm -rf .tst 2>/dev/null
 
2377
+mkdir .tst 2>/dev/null
 
2378
+if test -d .tst; then
 
2379
+  am__leading_dot=.
 
2380
+else
 
2381
+  am__leading_dot=_
 
2382
+fi
 
2383
+rmdir .tst 2>/dev/null
 
2384
+
 
2385
+if test "`cd $srcdir && pwd`" != "`pwd`"; then
 
2386
+  # Use -I$(srcdir) only when $(srcdir) != ., so that make's output
 
2387
+  # is not polluted with repeated "-I."
 
2388
+  am__isrc=' -I$(srcdir)'
 
2389
+  # test to see if srcdir already configured
 
2390
+  if test -f $srcdir/config.status; then
 
2391
+    as_fn_error $? "source directory already configured; run \"make distclean\" there first" "$LINENO" 5
 
2392
+  fi
 
2393
+fi
 
2394
+
 
2395
+# test whether we have cygpath
 
2396
+if test -z "$CYGPATH_W"; then
 
2397
+  if (cygpath --version) >/dev/null 2>/dev/null; then
 
2398
+    CYGPATH_W='cygpath -w'
 
2399
+  else
 
2400
+    CYGPATH_W=echo
 
2401
+  fi
 
2402
+fi
 
2403
+
 
2404
+
 
2405
+# Define the identity of the package.
 
2406
+ PACKAGE='fcoe-utils'
 
2407
+ VERSION='1.0.9'
 
2408
+
 
2409
+
 
2410
+cat >>confdefs.h <<_ACEOF
 
2411
+@%:@define PACKAGE "$PACKAGE"
 
2412
+_ACEOF
 
2413
+
 
2414
 
2415
+cat >>confdefs.h <<_ACEOF
 
2416
+@%:@define VERSION "$VERSION"
 
2417
+_ACEOF
 
2418
+
 
2419
+# Some tools Automake needs.
 
2420
+
 
2421
+ACLOCAL=${ACLOCAL-"${am_missing_run}aclocal-${am__api_version}"}
 
2422
+
 
2423
+
 
2424
+AUTOCONF=${AUTOCONF-"${am_missing_run}autoconf"}
 
2425
+
 
2426
+
 
2427
+AUTOMAKE=${AUTOMAKE-"${am_missing_run}automake-${am__api_version}"}
 
2428
+
 
2429
+
 
2430
+AUTOHEADER=${AUTOHEADER-"${am_missing_run}autoheader"}
 
2431
+
 
2432
+
 
2433
+MAKEINFO=${MAKEINFO-"${am_missing_run}makeinfo"}
 
2434
+
 
2435
+# We need awk for the "check" target.  The system "awk" is bad on
 
2436
+# some platforms.
 
2437
+# Always define AMTAR for backward compatibility.
 
2438
+
 
2439
+AMTAR=${AMTAR-"${am_missing_run}tar"}
 
2440
+
 
2441
+am__tar='${AMTAR} chof - "$$tardir"'; am__untar='${AMTAR} xf -'
 
2442
+
 
2443
+
 
2444
+
 
2445
+
 
2446
+
 
2447
+
 
2448
+ac_ext=c
 
2449
+ac_cpp='$CPP $CPPFLAGS'
 
2450
+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5'
 
2451
+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5'
 
2452
+ac_compiler_gnu=$ac_cv_c_compiler_gnu
 
2453
+if test -n "$ac_tool_prefix"; then
 
2454
+  # Extract the first word of "${ac_tool_prefix}gcc", so it can be a program name with args.
 
2455
+set dummy ${ac_tool_prefix}gcc; ac_word=$2
 
2456
+{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
 
2457
+$as_echo_n "checking for $ac_word... " >&6; }
 
2458
+if ${ac_cv_prog_CC+:} false; then :
 
2459
+  $as_echo_n "(cached) " >&6
 
2460
+else
 
2461
+  if test -n "$CC"; then
 
2462
+  ac_cv_prog_CC="$CC" # Let the user override the test.
 
2463
+else
 
2464
+as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
 
2465
+for as_dir in $PATH
 
2466
+do
 
2467
+  IFS=$as_save_IFS
 
2468
+  test -z "$as_dir" && as_dir=.
 
2469
+    for ac_exec_ext in '' $ac_executable_extensions; do
 
2470
+  if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then
 
2471
+    ac_cv_prog_CC="${ac_tool_prefix}gcc"
 
2472
+    $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5
 
2473
+    break 2
 
2474
+  fi
 
2475
+done
 
2476
+  done
 
2477
+IFS=$as_save_IFS
 
2478
+
 
2479
+fi
 
2480
+fi
 
2481
+CC=$ac_cv_prog_CC
 
2482
+if test -n "$CC"; then
 
2483
+  { $as_echo "$as_me:${as_lineno-$LINENO}: result: $CC" >&5
 
2484
+$as_echo "$CC" >&6; }
 
2485
+else
 
2486
+  { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5
 
2487
+$as_echo "no" >&6; }
 
2488
+fi
 
2489
+
 
2490
+
 
2491
+fi
 
2492
+if test -z "$ac_cv_prog_CC"; then
 
2493
+  ac_ct_CC=$CC
 
2494
+  # Extract the first word of "gcc", so it can be a program name with args.
 
2495
+set dummy gcc; ac_word=$2
 
2496
+{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
 
2497
+$as_echo_n "checking for $ac_word... " >&6; }
 
2498
+if ${ac_cv_prog_ac_ct_CC+:} false; then :
 
2499
+  $as_echo_n "(cached) " >&6
 
2500
+else
 
2501
+  if test -n "$ac_ct_CC"; then
 
2502
+  ac_cv_prog_ac_ct_CC="$ac_ct_CC" # Let the user override the test.
 
2503
+else
 
2504
+as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
 
2505
+for as_dir in $PATH
 
2506
+do
 
2507
+  IFS=$as_save_IFS
 
2508
+  test -z "$as_dir" && as_dir=.
 
2509
+    for ac_exec_ext in '' $ac_executable_extensions; do
 
2510
+  if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then
 
2511
+    ac_cv_prog_ac_ct_CC="gcc"
 
2512
+    $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5
 
2513
+    break 2
 
2514
+  fi
 
2515
+done
 
2516
+  done
 
2517
+IFS=$as_save_IFS
 
2518
+
 
2519
+fi
 
2520
+fi
 
2521
+ac_ct_CC=$ac_cv_prog_ac_ct_CC
 
2522
+if test -n "$ac_ct_CC"; then
 
2523
+  { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_ct_CC" >&5
 
2524
+$as_echo "$ac_ct_CC" >&6; }
 
2525
+else
 
2526
+  { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5
 
2527
+$as_echo "no" >&6; }
 
2528
+fi
 
2529
+
 
2530
+  if test "x$ac_ct_CC" = x; then
 
2531
+    CC=""
 
2532
+  else
 
2533
+    case $cross_compiling:$ac_tool_warned in
 
2534
+yes:)
 
2535
+{ $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet" >&5
 
2536
+$as_echo "$as_me: WARNING: using cross tools not prefixed with host triplet" >&2;}
 
2537
+ac_tool_warned=yes ;;
 
2538
+esac
 
2539
+    CC=$ac_ct_CC
 
2540
+  fi
 
2541
+else
 
2542
+  CC="$ac_cv_prog_CC"
 
2543
+fi
 
2544
+
 
2545
+if test -z "$CC"; then
 
2546
+          if test -n "$ac_tool_prefix"; then
 
2547
+    # Extract the first word of "${ac_tool_prefix}cc", so it can be a program name with args.
 
2548
+set dummy ${ac_tool_prefix}cc; ac_word=$2
 
2549
+{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
 
2550
+$as_echo_n "checking for $ac_word... " >&6; }
 
2551
+if ${ac_cv_prog_CC+:} false; then :
 
2552
+  $as_echo_n "(cached) " >&6
 
2553
+else
 
2554
+  if test -n "$CC"; then
 
2555
+  ac_cv_prog_CC="$CC" # Let the user override the test.
 
2556
+else
 
2557
+as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
 
2558
+for as_dir in $PATH
 
2559
+do
 
2560
+  IFS=$as_save_IFS
 
2561
+  test -z "$as_dir" && as_dir=.
 
2562
+    for ac_exec_ext in '' $ac_executable_extensions; do
 
2563
+  if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then
 
2564
+    ac_cv_prog_CC="${ac_tool_prefix}cc"
 
2565
+    $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5
 
2566
+    break 2
 
2567
+  fi
 
2568
+done
 
2569
+  done
 
2570
+IFS=$as_save_IFS
 
2571
+
 
2572
+fi
 
2573
+fi
 
2574
+CC=$ac_cv_prog_CC
 
2575
+if test -n "$CC"; then
 
2576
+  { $as_echo "$as_me:${as_lineno-$LINENO}: result: $CC" >&5
 
2577
+$as_echo "$CC" >&6; }
 
2578
+else
 
2579
+  { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5
 
2580
+$as_echo "no" >&6; }
 
2581
+fi
 
2582
+
 
2583
+
 
2584
+  fi
 
2585
+fi
 
2586
+if test -z "$CC"; then
 
2587
+  # Extract the first word of "cc", so it can be a program name with args.
 
2588
+set dummy cc; ac_word=$2
 
2589
+{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
 
2590
+$as_echo_n "checking for $ac_word... " >&6; }
 
2591
+if ${ac_cv_prog_CC+:} false; then :
 
2592
+  $as_echo_n "(cached) " >&6
 
2593
+else
 
2594
+  if test -n "$CC"; then
 
2595
+  ac_cv_prog_CC="$CC" # Let the user override the test.
 
2596
+else
 
2597
+  ac_prog_rejected=no
 
2598
+as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
 
2599
+for as_dir in $PATH
 
2600
+do
 
2601
+  IFS=$as_save_IFS
 
2602
+  test -z "$as_dir" && as_dir=.
 
2603
+    for ac_exec_ext in '' $ac_executable_extensions; do
 
2604
+  if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then
 
2605
+    if test "$as_dir/$ac_word$ac_exec_ext" = "/usr/ucb/cc"; then
 
2606
+       ac_prog_rejected=yes
 
2607
+       continue
 
2608
+     fi
 
2609
+    ac_cv_prog_CC="cc"
 
2610
+    $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5
 
2611
+    break 2
 
2612
+  fi
 
2613
+done
 
2614
+  done
 
2615
+IFS=$as_save_IFS
 
2616
+
 
2617
+if test $ac_prog_rejected = yes; then
 
2618
+  # We found a bogon in the path, so make sure we never use it.
 
2619
+  set dummy $ac_cv_prog_CC
 
2620
+  shift
 
2621
+  if test $@%:@ != 0; then
 
2622
+    # We chose a different compiler from the bogus one.
 
2623
+    # However, it has the same basename, so the bogon will be chosen
 
2624
+    # first if we set CC to just the basename; use the full file name.
 
2625
+    shift
 
2626
+    ac_cv_prog_CC="$as_dir/$ac_word${1+' '}$@"
 
2627
+  fi
 
2628
+fi
 
2629
+fi
 
2630
+fi
 
2631
+CC=$ac_cv_prog_CC
 
2632
+if test -n "$CC"; then
 
2633
+  { $as_echo "$as_me:${as_lineno-$LINENO}: result: $CC" >&5
 
2634
+$as_echo "$CC" >&6; }
 
2635
+else
 
2636
+  { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5
 
2637
+$as_echo "no" >&6; }
 
2638
+fi
 
2639
+
 
2640
+
 
2641
+fi
 
2642
+if test -z "$CC"; then
 
2643
+  if test -n "$ac_tool_prefix"; then
 
2644
+  for ac_prog in cl.exe
 
2645
+  do
 
2646
+    # Extract the first word of "$ac_tool_prefix$ac_prog", so it can be a program name with args.
 
2647
+set dummy $ac_tool_prefix$ac_prog; ac_word=$2
 
2648
+{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
 
2649
+$as_echo_n "checking for $ac_word... " >&6; }
 
2650
+if ${ac_cv_prog_CC+:} false; then :
 
2651
+  $as_echo_n "(cached) " >&6
 
2652
+else
 
2653
+  if test -n "$CC"; then
 
2654
+  ac_cv_prog_CC="$CC" # Let the user override the test.
 
2655
+else
 
2656
+as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
 
2657
+for as_dir in $PATH
 
2658
+do
 
2659
+  IFS=$as_save_IFS
 
2660
+  test -z "$as_dir" && as_dir=.
 
2661
+    for ac_exec_ext in '' $ac_executable_extensions; do
 
2662
+  if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then
 
2663
+    ac_cv_prog_CC="$ac_tool_prefix$ac_prog"
 
2664
+    $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5
 
2665
+    break 2
 
2666
+  fi
 
2667
+done
 
2668
+  done
 
2669
+IFS=$as_save_IFS
 
2670
+
 
2671
+fi
 
2672
+fi
 
2673
+CC=$ac_cv_prog_CC
 
2674
+if test -n "$CC"; then
 
2675
+  { $as_echo "$as_me:${as_lineno-$LINENO}: result: $CC" >&5
 
2676
+$as_echo "$CC" >&6; }
 
2677
+else
 
2678
+  { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5
 
2679
+$as_echo "no" >&6; }
 
2680
+fi
 
2681
+
 
2682
+
 
2683
+    test -n "$CC" && break
 
2684
+  done
 
2685
+fi
 
2686
+if test -z "$CC"; then
 
2687
+  ac_ct_CC=$CC
 
2688
+  for ac_prog in cl.exe
 
2689
+do
 
2690
+  # Extract the first word of "$ac_prog", so it can be a program name with args.
 
2691
+set dummy $ac_prog; ac_word=$2
 
2692
+{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
 
2693
+$as_echo_n "checking for $ac_word... " >&6; }
 
2694
+if ${ac_cv_prog_ac_ct_CC+:} false; then :
 
2695
+  $as_echo_n "(cached) " >&6
 
2696
+else
 
2697
+  if test -n "$ac_ct_CC"; then
 
2698
+  ac_cv_prog_ac_ct_CC="$ac_ct_CC" # Let the user override the test.
 
2699
+else
 
2700
+as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
 
2701
+for as_dir in $PATH
 
2702
+do
 
2703
+  IFS=$as_save_IFS
 
2704
+  test -z "$as_dir" && as_dir=.
 
2705
+    for ac_exec_ext in '' $ac_executable_extensions; do
 
2706
+  if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then
 
2707
+    ac_cv_prog_ac_ct_CC="$ac_prog"
 
2708
+    $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5
 
2709
+    break 2
 
2710
+  fi
 
2711
+done
 
2712
+  done
 
2713
+IFS=$as_save_IFS
 
2714
+
 
2715
+fi
 
2716
+fi
 
2717
+ac_ct_CC=$ac_cv_prog_ac_ct_CC
 
2718
+if test -n "$ac_ct_CC"; then
 
2719
+  { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_ct_CC" >&5
 
2720
+$as_echo "$ac_ct_CC" >&6; }
 
2721
+else
 
2722
+  { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5
 
2723
+$as_echo "no" >&6; }
 
2724
+fi
 
2725
+
 
2726
+
 
2727
+  test -n "$ac_ct_CC" && break
 
2728
+done
 
2729
+
 
2730
+  if test "x$ac_ct_CC" = x; then
 
2731
+    CC=""
 
2732
+  else
 
2733
+    case $cross_compiling:$ac_tool_warned in
 
2734
+yes:)
 
2735
+{ $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet" >&5
 
2736
+$as_echo "$as_me: WARNING: using cross tools not prefixed with host triplet" >&2;}
 
2737
+ac_tool_warned=yes ;;
 
2738
+esac
 
2739
+    CC=$ac_ct_CC
 
2740
+  fi
 
2741
+fi
 
2742
+
 
2743
+fi
 
2744
+
 
2745
+
 
2746
+test -z "$CC" && { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5
 
2747
+$as_echo "$as_me: error: in \`$ac_pwd':" >&2;}
 
2748
+as_fn_error $? "no acceptable C compiler found in \$PATH
 
2749
+See \`config.log' for more details" "$LINENO" 5; }
 
2750
+
 
2751
+# Provide some information about the compiler.
 
2752
+$as_echo "$as_me:${as_lineno-$LINENO}: checking for C compiler version" >&5
 
2753
+set X $ac_compile
 
2754
+ac_compiler=$2
 
2755
+for ac_option in --version -v -V -qversion; do
 
2756
+  { { ac_try="$ac_compiler $ac_option >&5"
 
2757
+case "(($ac_try" in
 
2758
+  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
 
2759
+  *) ac_try_echo=$ac_try;;
 
2760
+esac
 
2761
+eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\""
 
2762
+$as_echo "$ac_try_echo"; } >&5
 
2763
+  (eval "$ac_compiler $ac_option >&5") 2>conftest.err
 
2764
+  ac_status=$?
 
2765
+  if test -s conftest.err; then
 
2766
+    sed '10a\
 
2767
+... rest of stderr output deleted ...
 
2768
+         10q' conftest.err >conftest.er1
 
2769
+    cat conftest.er1 >&5
 
2770
+  fi
 
2771
+  rm -f conftest.er1 conftest.err
 
2772
+  $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5
 
2773
+  test $ac_status = 0; }
 
2774
+done
 
2775
+
 
2776
+cat confdefs.h - <<_ACEOF >conftest.$ac_ext
 
2777
+/* end confdefs.h.  */
 
2778
+
 
2779
+int
 
2780
+main ()
 
2781
+{
 
2782
+
 
2783
+  ;
 
2784
+  return 0;
 
2785
+}
 
2786
+_ACEOF
 
2787
+ac_clean_files_save=$ac_clean_files
 
2788
+ac_clean_files="$ac_clean_files a.out a.out.dSYM a.exe b.out"
 
2789
+# Try to create an executable without -o first, disregard a.out.
 
2790
+# It will help us diagnose broken compilers, and finding out an intuition
 
2791
+# of exeext.
 
2792
+{ $as_echo "$as_me:${as_lineno-$LINENO}: checking whether the C compiler works" >&5
 
2793
+$as_echo_n "checking whether the C compiler works... " >&6; }
 
2794
+ac_link_default=`$as_echo "$ac_link" | sed 's/ -o *conftest[^ ]*//'`
 
2795
+
 
2796
+# The possible output files:
 
2797
+ac_files="a.out conftest.exe conftest a.exe a_out.exe b.out conftest.*"
 
2798
+
 
2799
+ac_rmfiles=
 
2800
+for ac_file in $ac_files
 
2801
+do
 
2802
+  case $ac_file in
 
2803
+    *.$ac_ext | *.xcoff | *.tds | *.d | *.pdb | *.xSYM | *.bb | *.bbg | *.map | *.inf | *.dSYM | *.o | *.obj ) ;;
 
2804
+    * ) ac_rmfiles="$ac_rmfiles $ac_file";;
 
2805
+  esac
 
2806
+done
 
2807
+rm -f $ac_rmfiles
 
2808
+
 
2809
+if { { ac_try="$ac_link_default"
 
2810
+case "(($ac_try" in
 
2811
+  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
 
2812
+  *) ac_try_echo=$ac_try;;
 
2813
+esac
 
2814
+eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\""
 
2815
+$as_echo "$ac_try_echo"; } >&5
 
2816
+  (eval "$ac_link_default") 2>&5
 
2817
+  ac_status=$?
 
2818
+  $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5
 
2819
+  test $ac_status = 0; }; then :
 
2820
+  # Autoconf-2.13 could set the ac_cv_exeext variable to `no'.
 
2821
+# So ignore a value of `no', otherwise this would lead to `EXEEXT = no'
 
2822
+# in a Makefile.  We should not override ac_cv_exeext if it was cached,
 
2823
+# so that the user can short-circuit this test for compilers unknown to
 
2824
+# Autoconf.
 
2825
+for ac_file in $ac_files ''
 
2826
+do
 
2827
+  test -f "$ac_file" || continue
 
2828
+  case $ac_file in
 
2829
+    *.$ac_ext | *.xcoff | *.tds | *.d | *.pdb | *.xSYM | *.bb | *.bbg | *.map | *.inf | *.dSYM | *.o | *.obj )
 
2830
+       ;;
 
2831
+    [ab].out )
 
2832
+       # We found the default executable, but exeext='' is most
 
2833
+       # certainly right.
 
2834
+       break;;
 
2835
+    *.* )
 
2836
+       if test "${ac_cv_exeext+set}" = set && test "$ac_cv_exeext" != no;
 
2837
+       then :; else
 
2838
+          ac_cv_exeext=`expr "$ac_file" : '[^.]*\(\..*\)'`
 
2839
+       fi
 
2840
+       # We set ac_cv_exeext here because the later test for it is not
 
2841
+       # safe: cross compilers may not add the suffix if given an `-o'
 
2842
+       # argument, so we may need to know it at that point already.
 
2843
+       # Even if this section looks crufty: it has the advantage of
 
2844
+       # actually working.
 
2845
+       break;;
 
2846
+    * )
 
2847
+       break;;
 
2848
+  esac
 
2849
+done
 
2850
+test "$ac_cv_exeext" = no && ac_cv_exeext=
 
2851
+
 
2852
+else
 
2853
+  ac_file=''
 
2854
+fi
 
2855
+if test -z "$ac_file"; then :
 
2856
+  { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5
 
2857
+$as_echo "no" >&6; }
 
2858
+$as_echo "$as_me: failed program was:" >&5
 
2859
+sed 's/^/| /' conftest.$ac_ext >&5
 
2860
+
 
2861
+{ { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5
 
2862
+$as_echo "$as_me: error: in \`$ac_pwd':" >&2;}
 
2863
+as_fn_error 77 "C compiler cannot create executables
 
2864
+See \`config.log' for more details" "$LINENO" 5; }
 
2865
+else
 
2866
+  { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5
 
2867
+$as_echo "yes" >&6; }
 
2868
+fi
 
2869
+{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for C compiler default output file name" >&5
 
2870
+$as_echo_n "checking for C compiler default output file name... " >&6; }
 
2871
+{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_file" >&5
 
2872
+$as_echo "$ac_file" >&6; }
 
2873
+ac_exeext=$ac_cv_exeext
 
2874
+
 
2875
+rm -f -r a.out a.out.dSYM a.exe conftest$ac_cv_exeext b.out
 
2876
+ac_clean_files=$ac_clean_files_save
 
2877
+{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for suffix of executables" >&5
 
2878
+$as_echo_n "checking for suffix of executables... " >&6; }
 
2879
+if { { ac_try="$ac_link"
 
2880
+case "(($ac_try" in
 
2881
+  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
 
2882
+  *) ac_try_echo=$ac_try;;
 
2883
+esac
 
2884
+eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\""
 
2885
+$as_echo "$ac_try_echo"; } >&5
 
2886
+  (eval "$ac_link") 2>&5
 
2887
+  ac_status=$?
 
2888
+  $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5
 
2889
+  test $ac_status = 0; }; then :
 
2890
+  # If both `conftest.exe' and `conftest' are `present' (well, observable)
 
2891
+# catch `conftest.exe'.  For instance with Cygwin, `ls conftest' will
 
2892
+# work properly (i.e., refer to `conftest.exe'), while it won't with
 
2893
+# `rm'.
 
2894
+for ac_file in conftest.exe conftest conftest.*; do
 
2895
+  test -f "$ac_file" || continue
 
2896
+  case $ac_file in
 
2897
+    *.$ac_ext | *.xcoff | *.tds | *.d | *.pdb | *.xSYM | *.bb | *.bbg | *.map | *.inf | *.dSYM | *.o | *.obj ) ;;
 
2898
+    *.* ) ac_cv_exeext=`expr "$ac_file" : '[^.]*\(\..*\)'`
 
2899
+         break;;
 
2900
+    * ) break;;
 
2901
+  esac
 
2902
+done
 
2903
+else
 
2904
+  { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5
 
2905
+$as_echo "$as_me: error: in \`$ac_pwd':" >&2;}
 
2906
+as_fn_error $? "cannot compute suffix of executables: cannot compile and link
 
2907
+See \`config.log' for more details" "$LINENO" 5; }
 
2908
+fi
 
2909
+rm -f conftest conftest$ac_cv_exeext
 
2910
+{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_exeext" >&5
 
2911
+$as_echo "$ac_cv_exeext" >&6; }
 
2912
+
 
2913
+rm -f conftest.$ac_ext
 
2914
+EXEEXT=$ac_cv_exeext
 
2915
+ac_exeext=$EXEEXT
 
2916
+cat confdefs.h - <<_ACEOF >conftest.$ac_ext
 
2917
+/* end confdefs.h.  */
 
2918
+@%:@include <stdio.h>
 
2919
+int
 
2920
+main ()
 
2921
+{
 
2922
+FILE *f = fopen ("conftest.out", "w");
 
2923
+ return ferror (f) || fclose (f) != 0;
 
2924
+
 
2925
+  ;
 
2926
+  return 0;
 
2927
+}
 
2928
+_ACEOF
 
2929
+ac_clean_files="$ac_clean_files conftest.out"
 
2930
+# Check that the compiler produces executables we can run.  If not, either
 
2931
+# the compiler is broken, or we cross compile.
 
2932
+{ $as_echo "$as_me:${as_lineno-$LINENO}: checking whether we are cross compiling" >&5
 
2933
+$as_echo_n "checking whether we are cross compiling... " >&6; }
 
2934
+if test "$cross_compiling" != yes; then
 
2935
+  { { ac_try="$ac_link"
 
2936
+case "(($ac_try" in
 
2937
+  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
 
2938
+  *) ac_try_echo=$ac_try;;
 
2939
+esac
 
2940
+eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\""
 
2941
+$as_echo "$ac_try_echo"; } >&5
 
2942
+  (eval "$ac_link") 2>&5
 
2943
+  ac_status=$?
 
2944
+  $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5
 
2945
+  test $ac_status = 0; }
 
2946
+  if { ac_try='./conftest$ac_cv_exeext'
 
2947
+  { { case "(($ac_try" in
 
2948
+  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
 
2949
+  *) ac_try_echo=$ac_try;;
 
2950
+esac
 
2951
+eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\""
 
2952
+$as_echo "$ac_try_echo"; } >&5
 
2953
+  (eval "$ac_try") 2>&5
 
2954
+  ac_status=$?
 
2955
+  $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5
 
2956
+  test $ac_status = 0; }; }; then
 
2957
+    cross_compiling=no
 
2958
+  else
 
2959
+    if test "$cross_compiling" = maybe; then
 
2960
+       cross_compiling=yes
 
2961
+    else
 
2962
+       { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5
 
2963
+$as_echo "$as_me: error: in \`$ac_pwd':" >&2;}
 
2964
+as_fn_error $? "cannot run C compiled programs.
 
2965
+If you meant to cross compile, use \`--host'.
 
2966
+See \`config.log' for more details" "$LINENO" 5; }
 
2967
+    fi
 
2968
+  fi
 
2969
+fi
 
2970
+{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $cross_compiling" >&5
 
2971
+$as_echo "$cross_compiling" >&6; }
 
2972
+
 
2973
+rm -f conftest.$ac_ext conftest$ac_cv_exeext conftest.out
 
2974
+ac_clean_files=$ac_clean_files_save
 
2975
+{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for suffix of object files" >&5
 
2976
+$as_echo_n "checking for suffix of object files... " >&6; }
 
2977
+if ${ac_cv_objext+:} false; then :
 
2978
+  $as_echo_n "(cached) " >&6
 
2979
+else
 
2980
+  cat confdefs.h - <<_ACEOF >conftest.$ac_ext
 
2981
+/* end confdefs.h.  */
 
2982
+
 
2983
+int
 
2984
+main ()
 
2985
+{
 
2986
+
 
2987
+  ;
 
2988
+  return 0;
 
2989
+}
 
2990
+_ACEOF
 
2991
+rm -f conftest.o conftest.obj
 
2992
+if { { ac_try="$ac_compile"
 
2993
+case "(($ac_try" in
 
2994
+  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
 
2995
+  *) ac_try_echo=$ac_try;;
 
2996
+esac
 
2997
+eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\""
 
2998
+$as_echo "$ac_try_echo"; } >&5
 
2999
+  (eval "$ac_compile") 2>&5
 
3000
+  ac_status=$?
 
3001
+  $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5
 
3002
+  test $ac_status = 0; }; then :
 
3003
+  for ac_file in conftest.o conftest.obj conftest.*; do
 
3004
+  test -f "$ac_file" || continue;
 
3005
+  case $ac_file in
 
3006
+    *.$ac_ext | *.xcoff | *.tds | *.d | *.pdb | *.xSYM | *.bb | *.bbg | *.map | *.inf | *.dSYM ) ;;
 
3007
+    *) ac_cv_objext=`expr "$ac_file" : '.*\.\(.*\)'`
 
3008
+       break;;
 
3009
+  esac
 
3010
+done
 
3011
+else
 
3012
+  $as_echo "$as_me: failed program was:" >&5
 
3013
+sed 's/^/| /' conftest.$ac_ext >&5
 
3014
+
 
3015
+{ { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5
 
3016
+$as_echo "$as_me: error: in \`$ac_pwd':" >&2;}
 
3017
+as_fn_error $? "cannot compute suffix of object files: cannot compile
 
3018
+See \`config.log' for more details" "$LINENO" 5; }
 
3019
+fi
 
3020
+rm -f conftest.$ac_cv_objext conftest.$ac_ext
 
3021
+fi
 
3022
+{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_objext" >&5
 
3023
+$as_echo "$ac_cv_objext" >&6; }
 
3024
+OBJEXT=$ac_cv_objext
 
3025
+ac_objext=$OBJEXT
 
3026
+{ $as_echo "$as_me:${as_lineno-$LINENO}: checking whether we are using the GNU C compiler" >&5
 
3027
+$as_echo_n "checking whether we are using the GNU C compiler... " >&6; }
 
3028
+if ${ac_cv_c_compiler_gnu+:} false; then :
 
3029
+  $as_echo_n "(cached) " >&6
 
3030
+else
 
3031
+  cat confdefs.h - <<_ACEOF >conftest.$ac_ext
 
3032
+/* end confdefs.h.  */
 
3033
+
 
3034
+int
 
3035
+main ()
 
3036
+{
 
3037
+#ifndef __GNUC__
 
3038
+       choke me
 
3039
+#endif
 
3040
+
 
3041
+  ;
 
3042
+  return 0;
 
3043
+}
 
3044
+_ACEOF
 
3045
+if ac_fn_c_try_compile "$LINENO"; then :
 
3046
+  ac_compiler_gnu=yes
 
3047
+else
 
3048
+  ac_compiler_gnu=no
 
3049
+fi
 
3050
+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext
 
3051
+ac_cv_c_compiler_gnu=$ac_compiler_gnu
 
3052
+
 
3053
+fi
 
3054
+{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_c_compiler_gnu" >&5
 
3055
+$as_echo "$ac_cv_c_compiler_gnu" >&6; }
 
3056
+if test $ac_compiler_gnu = yes; then
 
3057
+  GCC=yes
 
3058
+else
 
3059
+  GCC=
 
3060
+fi
 
3061
+ac_test_CFLAGS=${CFLAGS+set}
 
3062
+ac_save_CFLAGS=$CFLAGS
 
3063
+{ $as_echo "$as_me:${as_lineno-$LINENO}: checking whether $CC accepts -g" >&5
 
3064
+$as_echo_n "checking whether $CC accepts -g... " >&6; }
 
3065
+if ${ac_cv_prog_cc_g+:} false; then :
 
3066
+  $as_echo_n "(cached) " >&6
 
3067
+else
 
3068
+  ac_save_c_werror_flag=$ac_c_werror_flag
 
3069
+   ac_c_werror_flag=yes
 
3070
+   ac_cv_prog_cc_g=no
 
3071
+   CFLAGS="-g"
 
3072
+   cat confdefs.h - <<_ACEOF >conftest.$ac_ext
 
3073
+/* end confdefs.h.  */
 
3074
+
 
3075
+int
 
3076
+main ()
 
3077
+{
 
3078
+
 
3079
+  ;
 
3080
+  return 0;
 
3081
+}
 
3082
+_ACEOF
 
3083
+if ac_fn_c_try_compile "$LINENO"; then :
 
3084
+  ac_cv_prog_cc_g=yes
 
3085
+else
 
3086
+  CFLAGS=""
 
3087
+      cat confdefs.h - <<_ACEOF >conftest.$ac_ext
 
3088
+/* end confdefs.h.  */
 
3089
+
 
3090
+int
 
3091
+main ()
 
3092
+{
 
3093
+
 
3094
+  ;
 
3095
+  return 0;
 
3096
+}
 
3097
+_ACEOF
 
3098
+if ac_fn_c_try_compile "$LINENO"; then :
 
3099
+  
 
3100
+else
 
3101
+  ac_c_werror_flag=$ac_save_c_werror_flag
 
3102
+        CFLAGS="-g"
 
3103
+        cat confdefs.h - <<_ACEOF >conftest.$ac_ext
 
3104
+/* end confdefs.h.  */
 
3105
+
 
3106
+int
 
3107
+main ()
 
3108
+{
 
3109
+
 
3110
+  ;
 
3111
+  return 0;
 
3112
+}
 
3113
+_ACEOF
 
3114
+if ac_fn_c_try_compile "$LINENO"; then :
 
3115
+  ac_cv_prog_cc_g=yes
 
3116
+fi
 
3117
+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext
 
3118
+fi
 
3119
+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext
 
3120
+fi
 
3121
+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext
 
3122
+   ac_c_werror_flag=$ac_save_c_werror_flag
 
3123
+fi
 
3124
+{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_prog_cc_g" >&5
 
3125
+$as_echo "$ac_cv_prog_cc_g" >&6; }
 
3126
+if test "$ac_test_CFLAGS" = set; then
 
3127
+  CFLAGS=$ac_save_CFLAGS
 
3128
+elif test $ac_cv_prog_cc_g = yes; then
 
3129
+  if test "$GCC" = yes; then
 
3130
+    CFLAGS="-g -O2"
 
3131
+  else
 
3132
+    CFLAGS="-g"
 
3133
+  fi
 
3134
+else
 
3135
+  if test "$GCC" = yes; then
 
3136
+    CFLAGS="-O2"
 
3137
+  else
 
3138
+    CFLAGS=
 
3139
+  fi
 
3140
+fi
 
3141
+{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $CC option to accept ISO C89" >&5
 
3142
+$as_echo_n "checking for $CC option to accept ISO C89... " >&6; }
 
3143
+if ${ac_cv_prog_cc_c89+:} false; then :
 
3144
+  $as_echo_n "(cached) " >&6
 
3145
+else
 
3146
+  ac_cv_prog_cc_c89=no
 
3147
+ac_save_CC=$CC
 
3148
+cat confdefs.h - <<_ACEOF >conftest.$ac_ext
 
3149
+/* end confdefs.h.  */
 
3150
+#include <stdarg.h>
 
3151
+#include <stdio.h>
 
3152
+#include <sys/types.h>
 
3153
+#include <sys/stat.h>
 
3154
+/* Most of the following tests are stolen from RCS 5.7's src/conf.sh.  */
 
3155
+struct buf { int x; };
 
3156
+FILE * (*rcsopen) (struct buf *, struct stat *, int);
 
3157
+static char *e (p, i)
 
3158
+     char **p;
 
3159
+     int i;
 
3160
+{
 
3161
+  return p[i];
 
3162
+}
 
3163
+static char *f (char * (*g) (char **, int), char **p, ...)
 
3164
+{
 
3165
+  char *s;
 
3166
+  va_list v;
 
3167
+  va_start (v,p);
 
3168
+  s = g (p, va_arg (v,int));
 
3169
+  va_end (v);
 
3170
+  return s;
 
3171
+}
 
3172
+
 
3173
+/* OSF 4.0 Compaq cc is some sort of almost-ANSI by default.  It has
 
3174
+   function prototypes and stuff, but not '\xHH' hex character constants.
 
3175
+   These don't provoke an error unfortunately, instead are silently treated
 
3176
+   as 'x'.  The following induces an error, until -std is added to get
 
3177
+   proper ANSI mode.  Curiously '\x00'!='x' always comes out true, for an
 
3178
+   array size at least.  It's necessary to write '\x00'==0 to get something
 
3179
+   that's true only with -std.  */
 
3180
+int osf4_cc_array ['\x00' == 0 ? 1 : -1];
 
3181
+
 
3182
+/* IBM C 6 for AIX is almost-ANSI by default, but it replaces macro parameters
 
3183
+   inside strings and character constants.  */
 
3184
+#define FOO(x) 'x'
 
3185
+int xlc6_cc_array[FOO(a) == 'x' ? 1 : -1];
 
3186
+
 
3187
+int test (int i, double x);
 
3188
+struct s1 {int (*f) (int a);};
 
3189
+struct s2 {int (*f) (double a);};
 
3190
+int pairnames (int, char **, FILE *(*)(struct buf *, struct stat *, int), int, int);
 
3191
+int argc;
 
3192
+char **argv;
 
3193
+int
 
3194
+main ()
 
3195
+{
 
3196
+return f (e, argv, 0) != argv[0]  ||  f (e, argv, 1) != argv[1];
 
3197
+  ;
 
3198
+  return 0;
 
3199
+}
 
3200
+_ACEOF
 
3201
+for ac_arg in '' -qlanglvl=extc89 -qlanglvl=ansi -std \
 
3202
+       -Ae "-Aa -D_HPUX_SOURCE" "-Xc -D__EXTENSIONS__"
 
3203
+do
 
3204
+  CC="$ac_save_CC $ac_arg"
 
3205
+  if ac_fn_c_try_compile "$LINENO"; then :
 
3206
+  ac_cv_prog_cc_c89=$ac_arg
 
3207
+fi
 
3208
+rm -f core conftest.err conftest.$ac_objext
 
3209
+  test "x$ac_cv_prog_cc_c89" != "xno" && break
 
3210
+done
 
3211
+rm -f conftest.$ac_ext
 
3212
+CC=$ac_save_CC
 
3213
+
 
3214
+fi
 
3215
+# AC_CACHE_VAL
 
3216
+case "x$ac_cv_prog_cc_c89" in
 
3217
+  x)
 
3218
+    { $as_echo "$as_me:${as_lineno-$LINENO}: result: none needed" >&5
 
3219
+$as_echo "none needed" >&6; } ;;
 
3220
+  xno)
 
3221
+    { $as_echo "$as_me:${as_lineno-$LINENO}: result: unsupported" >&5
 
3222
+$as_echo "unsupported" >&6; } ;;
 
3223
+  *)
 
3224
+    CC="$CC $ac_cv_prog_cc_c89"
 
3225
+    { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_prog_cc_c89" >&5
 
3226
+$as_echo "$ac_cv_prog_cc_c89" >&6; } ;;
 
3227
+esac
 
3228
+if test "x$ac_cv_prog_cc_c89" != xno; then :
 
3229
+  
 
3230
+fi
 
3231
+
 
3232
+ac_ext=c
 
3233
+ac_cpp='$CPP $CPPFLAGS'
 
3234
+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5'
 
3235
+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5'
 
3236
+ac_compiler_gnu=$ac_cv_c_compiler_gnu
 
3237
+DEPDIR="${am__leading_dot}deps"
 
3238
+
 
3239
+ac_config_commands="$ac_config_commands depfiles"
 
3240
+
 
3241
+
 
3242
+am_make=${MAKE-make}
 
3243
+cat > confinc << 'END'
 
3244
+am__doit:
 
3245
+       @echo this is the am__doit target
 
3246
+.PHONY: am__doit
 
3247
+END
 
3248
+# If we don't find an include directive, just comment out the code.
 
3249
+{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for style of include used by $am_make" >&5
 
3250
+$as_echo_n "checking for style of include used by $am_make... " >&6; }
 
3251
+am__include="#"
 
3252
+am__quote=
 
3253
+_am_result=none
 
3254
+# First try GNU make style include.
 
3255
+echo "include confinc" > confmf
 
3256
+# Ignore all kinds of additional output from `make'.
 
3257
+case `$am_make -s -f confmf 2> /dev/null` in #(
 
3258
+*the\ am__doit\ target*)
 
3259
+  am__include=include
 
3260
+  am__quote=
 
3261
+  _am_result=GNU
 
3262
+  ;;
 
3263
+esac
 
3264
+# Now try BSD make style include.
 
3265
+if test "$am__include" = "#"; then
 
3266
+   echo '.include "confinc"' > confmf
 
3267
+   case `$am_make -s -f confmf 2> /dev/null` in #(
 
3268
+   *the\ am__doit\ target*)
 
3269
+     am__include=.include
 
3270
+     am__quote="\""
 
3271
+     _am_result=BSD
 
3272
+     ;;
 
3273
+   esac
 
3274
+fi
 
3275
+
 
3276
+
 
3277
+{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $_am_result" >&5
 
3278
+$as_echo "$_am_result" >&6; }
 
3279
+rm -f confinc confmf
 
3280
+
 
3281
+@%:@ Check whether --enable-dependency-tracking was given.
 
3282
+if test "${enable_dependency_tracking+set}" = set; then :
 
3283
+  enableval=$enable_dependency_tracking; 
 
3284
+fi
 
3285
+
 
3286
+if test "x$enable_dependency_tracking" != xno; then
 
3287
+  am_depcomp="$ac_aux_dir/depcomp"
 
3288
+  AMDEPBACKSLASH='\'
 
3289
+fi
 
3290
+ if test "x$enable_dependency_tracking" != xno; then
 
3291
+  AMDEP_TRUE=
 
3292
+  AMDEP_FALSE='#'
 
3293
+else
 
3294
+  AMDEP_TRUE='#'
 
3295
+  AMDEP_FALSE=
 
3296
+fi
 
3297
+
 
3298
+
 
3299
+
 
3300
+depcc="$CC"   am_compiler_list=
 
3301
+
 
3302
+{ $as_echo "$as_me:${as_lineno-$LINENO}: checking dependency style of $depcc" >&5
 
3303
+$as_echo_n "checking dependency style of $depcc... " >&6; }
 
3304
+if ${am_cv_CC_dependencies_compiler_type+:} false; then :
 
3305
+  $as_echo_n "(cached) " >&6
 
3306
+else
 
3307
+  if test -z "$AMDEP_TRUE" && test -f "$am_depcomp"; then
 
3308
+  # We make a subdir and do the tests there.  Otherwise we can end up
 
3309
+  # making bogus files that we don't know about and never remove.  For
 
3310
+  # instance it was reported that on HP-UX the gcc test will end up
 
3311
+  # making a dummy file named `D' -- because `-MD' means `put the output
 
3312
+  # in D'.
 
3313
+  mkdir conftest.dir
 
3314
+  # Copy depcomp to subdir because otherwise we won't find it if we're
 
3315
+  # using a relative directory.
 
3316
+  cp "$am_depcomp" conftest.dir
 
3317
+  cd conftest.dir
 
3318
+  # We will build objects and dependencies in a subdirectory because
 
3319
+  # it helps to detect inapplicable dependency modes.  For instance
 
3320
+  # both Tru64's cc and ICC support -MD to output dependencies as a
 
3321
+  # side effect of compilation, but ICC will put the dependencies in
 
3322
+  # the current directory while Tru64 will put them in the object
 
3323
+  # directory.
 
3324
+  mkdir sub
 
3325
+
 
3326
+  am_cv_CC_dependencies_compiler_type=none
 
3327
+  if test "$am_compiler_list" = ""; then
 
3328
+     am_compiler_list=`sed -n 's/^#*\([a-zA-Z0-9]*\))$/\1/p' < ./depcomp`
 
3329
+  fi
 
3330
+  am__universal=false
 
3331
+  case " $depcc " in #(
 
3332
+     *\ -arch\ *\ -arch\ *) am__universal=true ;;
 
3333
+     esac
 
3334
+
 
3335
+  for depmode in $am_compiler_list; do
 
3336
+    # Setup a source with many dependencies, because some compilers
 
3337
+    # like to wrap large dependency lists on column 80 (with \), and
 
3338
+    # we should not choose a depcomp mode which is confused by this.
 
3339
+    #
 
3340
+    # We need to recreate these files for each test, as the compiler may
 
3341
+    # overwrite some of them when testing with obscure command lines.
 
3342
+    # This happens at least with the AIX C compiler.
 
3343
+    : > sub/conftest.c
 
3344
+    for i in 1 2 3 4 5 6; do
 
3345
+      echo '#include "conftst'$i'.h"' >> sub/conftest.c
 
3346
+      # Using `: > sub/conftst$i.h' creates only sub/conftst1.h with
 
3347
+      # Solaris 8's {/usr,}/bin/sh.
 
3348
+      touch sub/conftst$i.h
 
3349
+    done
 
3350
+    echo "${am__include} ${am__quote}sub/conftest.Po${am__quote}" > confmf
 
3351
+
 
3352
+    # We check with `-c' and `-o' for the sake of the "dashmstdout"
 
3353
+    # mode.  It turns out that the SunPro C++ compiler does not properly
 
3354
+    # handle `-M -o', and we need to detect this.  Also, some Intel
 
3355
+    # versions had trouble with output in subdirs
 
3356
+    am__obj=sub/conftest.${OBJEXT-o}
 
3357
+    am__minus_obj="-o $am__obj"
 
3358
+    case $depmode in
 
3359
+    gcc)
 
3360
+      # This depmode causes a compiler race in universal mode.
 
3361
+      test "$am__universal" = false || continue
 
3362
+      ;;
 
3363
+    nosideeffect)
 
3364
+      # after this tag, mechanisms are not by side-effect, so they'll
 
3365
+      # only be used when explicitly requested
 
3366
+      if test "x$enable_dependency_tracking" = xyes; then
 
3367
+       continue
 
3368
+      else
 
3369
+       break
 
3370
+      fi
 
3371
+      ;;
 
3372
+    msvisualcpp | msvcmsys)
 
3373
+      # This compiler won't grok `-c -o', but also, the minuso test has
 
3374
+      # not run yet.  These depmodes are late enough in the game, and
 
3375
+      # so weak that their functioning should not be impacted.
 
3376
+      am__obj=conftest.${OBJEXT-o}
 
3377
+      am__minus_obj=
 
3378
+      ;;
 
3379
+    none) break ;;
 
3380
+    esac
 
3381
+    if depmode=$depmode \
 
3382
+       source=sub/conftest.c object=$am__obj \
 
3383
+       depfile=sub/conftest.Po tmpdepfile=sub/conftest.TPo \
 
3384
+       $SHELL ./depcomp $depcc -c $am__minus_obj sub/conftest.c \
 
3385
+         >/dev/null 2>conftest.err &&
 
3386
+       grep sub/conftst1.h sub/conftest.Po > /dev/null 2>&1 &&
 
3387
+       grep sub/conftst6.h sub/conftest.Po > /dev/null 2>&1 &&
 
3388
+       grep $am__obj sub/conftest.Po > /dev/null 2>&1 &&
 
3389
+       ${MAKE-make} -s -f confmf > /dev/null 2>&1; then
 
3390
+      # icc doesn't choke on unknown options, it will just issue warnings
 
3391
+      # or remarks (even with -Werror).  So we grep stderr for any message
 
3392
+      # that says an option was ignored or not supported.
 
3393
+      # When given -MP, icc 7.0 and 7.1 complain thusly:
 
3394
+      #   icc: Command line warning: ignoring option '-M'; no argument required
 
3395
+      # The diagnosis changed in icc 8.0:
 
3396
+      #   icc: Command line remark: option '-MP' not supported
 
3397
+      if (grep 'ignoring option' conftest.err ||
 
3398
+          grep 'not supported' conftest.err) >/dev/null 2>&1; then :; else
 
3399
+        am_cv_CC_dependencies_compiler_type=$depmode
 
3400
+        break
 
3401
+      fi
 
3402
+    fi
 
3403
+  done
 
3404
+
 
3405
+  cd ..
 
3406
+  rm -rf conftest.dir
 
3407
+else
 
3408
+  am_cv_CC_dependencies_compiler_type=none
 
3409
+fi
 
3410
+
 
3411
+fi
 
3412
+{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $am_cv_CC_dependencies_compiler_type" >&5
 
3413
+$as_echo "$am_cv_CC_dependencies_compiler_type" >&6; }
 
3414
+CCDEPMODE=depmode=$am_cv_CC_dependencies_compiler_type
 
3415
+
 
3416
+ if 
 
3417
+  test "x$enable_dependency_tracking" != xno \
 
3418
+  && test "$am_cv_CC_dependencies_compiler_type" = gcc3; then
 
3419
+  am__fastdepCC_TRUE=
 
3420
+  am__fastdepCC_FALSE='#'
 
3421
+else
 
3422
+  am__fastdepCC_TRUE='#'
 
3423
+  am__fastdepCC_FALSE=
 
3424
+fi
 
3425
+
 
3426
+
 
3427
+if test "x$CC" != xcc; then
 
3428
+  { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether $CC and cc understand -c and -o together" >&5
 
3429
+$as_echo_n "checking whether $CC and cc understand -c and -o together... " >&6; }
 
3430
+else
 
3431
+  { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether cc understands -c and -o together" >&5
 
3432
+$as_echo_n "checking whether cc understands -c and -o together... " >&6; }
 
3433
+fi
 
3434
+set dummy $CC; ac_cc=`$as_echo "$2" |
 
3435
+                     sed 's/[^a-zA-Z0-9_]/_/g;s/^[0-9]/_/'`
 
3436
+if eval \${ac_cv_prog_cc_${ac_cc}_c_o+:} false; then :
 
3437
+  $as_echo_n "(cached) " >&6
 
3438
+else
 
3439
+  cat confdefs.h - <<_ACEOF >conftest.$ac_ext
 
3440
+/* end confdefs.h.  */
 
3441
+
 
3442
+int
 
3443
+main ()
 
3444
+{
 
3445
+
 
3446
+  ;
 
3447
+  return 0;
 
3448
+}
 
3449
+_ACEOF
 
3450
+# Make sure it works both with $CC and with simple cc.
 
3451
+# We do the test twice because some compilers refuse to overwrite an
 
3452
+# existing .o file with -o, though they will create one.
 
3453
+ac_try='$CC -c conftest.$ac_ext -o conftest2.$ac_objext >&5'
 
3454
+rm -f conftest2.*
 
3455
+if { { case "(($ac_try" in
 
3456
+  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
 
3457
+  *) ac_try_echo=$ac_try;;
 
3458
+esac
 
3459
+eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\""
 
3460
+$as_echo "$ac_try_echo"; } >&5
 
3461
+  (eval "$ac_try") 2>&5
 
3462
+  ac_status=$?
 
3463
+  $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5
 
3464
+  test $ac_status = 0; } &&
 
3465
+   test -f conftest2.$ac_objext && { { case "(($ac_try" in
 
3466
+  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
 
3467
+  *) ac_try_echo=$ac_try;;
 
3468
+esac
 
3469
+eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\""
 
3470
+$as_echo "$ac_try_echo"; } >&5
 
3471
+  (eval "$ac_try") 2>&5
 
3472
+  ac_status=$?
 
3473
+  $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5
 
3474
+  test $ac_status = 0; };
 
3475
+then
 
3476
+  eval ac_cv_prog_cc_${ac_cc}_c_o=yes
 
3477
+  if test "x$CC" != xcc; then
 
3478
+    # Test first that cc exists at all.
 
3479
+    if { ac_try='cc -c conftest.$ac_ext >&5'
 
3480
+  { { case "(($ac_try" in
 
3481
+  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
 
3482
+  *) ac_try_echo=$ac_try;;
 
3483
+esac
 
3484
+eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\""
 
3485
+$as_echo "$ac_try_echo"; } >&5
 
3486
+  (eval "$ac_try") 2>&5
 
3487
+  ac_status=$?
 
3488
+  $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5
 
3489
+  test $ac_status = 0; }; }; then
 
3490
+      ac_try='cc -c conftest.$ac_ext -o conftest2.$ac_objext >&5'
 
3491
+      rm -f conftest2.*
 
3492
+      if { { case "(($ac_try" in
 
3493
+  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
 
3494
+  *) ac_try_echo=$ac_try;;
 
3495
+esac
 
3496
+eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\""
 
3497
+$as_echo "$ac_try_echo"; } >&5
 
3498
+  (eval "$ac_try") 2>&5
 
3499
+  ac_status=$?
 
3500
+  $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5
 
3501
+  test $ac_status = 0; } &&
 
3502
+        test -f conftest2.$ac_objext && { { case "(($ac_try" in
 
3503
+  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
 
3504
+  *) ac_try_echo=$ac_try;;
 
3505
+esac
 
3506
+eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\""
 
3507
+$as_echo "$ac_try_echo"; } >&5
 
3508
+  (eval "$ac_try") 2>&5
 
3509
+  ac_status=$?
 
3510
+  $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5
 
3511
+  test $ac_status = 0; };
 
3512
+      then
 
3513
+       # cc works too.
 
3514
+       :
 
3515
+      else
 
3516
+       # cc exists but doesn't like -o.
 
3517
+       eval ac_cv_prog_cc_${ac_cc}_c_o=no
 
3518
+      fi
 
3519
+    fi
 
3520
+  fi
 
3521
+else
 
3522
+  eval ac_cv_prog_cc_${ac_cc}_c_o=no
 
3523
+fi
 
3524
+rm -f core conftest*
 
3525
+
 
3526
+fi
 
3527
+if eval test \$ac_cv_prog_cc_${ac_cc}_c_o = yes; then
 
3528
+  { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5
 
3529
+$as_echo "yes" >&6; }
 
3530
+else
 
3531
+  { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5
 
3532
+$as_echo "no" >&6; }
 
3533
+  
 
3534
+$as_echo "@%:@define NO_MINUS_C_MINUS_O 1" >>confdefs.h
 
3535
+
 
3536
+fi
 
3537
+
 
3538
+# FIXME: we rely on the cache variable name because
 
3539
+# there is no other way.
 
3540
+set dummy $CC
 
3541
+am_cc=`echo $2 | sed 's/[^a-zA-Z0-9_]/_/g;s/^[0-9]/_/'`
 
3542
+eval am_t=\$ac_cv_prog_cc_${am_cc}_c_o
 
3543
+if test "$am_t" != yes; then
 
3544
+   # Losing compiler, so override with the script.
 
3545
+   # FIXME: It is wrong to rewrite CC.
 
3546
+   # But if we don't then we get into trouble of one sort or another.
 
3547
+   # A longer-term fix would be to have automake use am__CC in this case,
 
3548
+   # and then we could set am__CC="\$(top_srcdir)/compile \$(CC)"
 
3549
+   CC="$am_aux_dir/compile $CC"
 
3550
+fi
 
3551
+
 
3552
+
 
3553
+
 
3554
+
 
3555
+
 
3556
+
 
3557
+
 
3558
+
 
3559
+
 
3560
+
 
3561
+if test "x$ac_cv_env_PKG_CONFIG_set" != "xset"; then
 
3562
+       if test -n "$ac_tool_prefix"; then
 
3563
+  # Extract the first word of "${ac_tool_prefix}pkg-config", so it can be a program name with args.
 
3564
+set dummy ${ac_tool_prefix}pkg-config; ac_word=$2
 
3565
+{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
 
3566
+$as_echo_n "checking for $ac_word... " >&6; }
 
3567
+if ${ac_cv_path_PKG_CONFIG+:} false; then :
 
3568
+  $as_echo_n "(cached) " >&6
 
3569
+else
 
3570
+  case $PKG_CONFIG in
 
3571
+  [\\/]* | ?:[\\/]*)
 
3572
+  ac_cv_path_PKG_CONFIG="$PKG_CONFIG" # Let the user override the test with a path.
 
3573
+  ;;
 
3574
+  *)
 
3575
+  as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
 
3576
+for as_dir in $PATH
 
3577
+do
 
3578
+  IFS=$as_save_IFS
 
3579
+  test -z "$as_dir" && as_dir=.
 
3580
+    for ac_exec_ext in '' $ac_executable_extensions; do
 
3581
+  if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then
 
3582
+    ac_cv_path_PKG_CONFIG="$as_dir/$ac_word$ac_exec_ext"
 
3583
+    $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5
 
3584
+    break 2
 
3585
+  fi
 
3586
+done
 
3587
+  done
 
3588
+IFS=$as_save_IFS
 
3589
+
 
3590
+  ;;
 
3591
+esac
 
3592
+fi
 
3593
+PKG_CONFIG=$ac_cv_path_PKG_CONFIG
 
3594
+if test -n "$PKG_CONFIG"; then
 
3595
+  { $as_echo "$as_me:${as_lineno-$LINENO}: result: $PKG_CONFIG" >&5
 
3596
+$as_echo "$PKG_CONFIG" >&6; }
 
3597
+else
 
3598
+  { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5
 
3599
+$as_echo "no" >&6; }
 
3600
+fi
 
3601
+
 
3602
+
 
3603
+fi
 
3604
+if test -z "$ac_cv_path_PKG_CONFIG"; then
 
3605
+  ac_pt_PKG_CONFIG=$PKG_CONFIG
 
3606
+  # Extract the first word of "pkg-config", so it can be a program name with args.
 
3607
+set dummy pkg-config; ac_word=$2
 
3608
+{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
 
3609
+$as_echo_n "checking for $ac_word... " >&6; }
 
3610
+if ${ac_cv_path_ac_pt_PKG_CONFIG+:} false; then :
 
3611
+  $as_echo_n "(cached) " >&6
 
3612
+else
 
3613
+  case $ac_pt_PKG_CONFIG in
 
3614
+  [\\/]* | ?:[\\/]*)
 
3615
+  ac_cv_path_ac_pt_PKG_CONFIG="$ac_pt_PKG_CONFIG" # Let the user override the test with a path.
 
3616
+  ;;
 
3617
+  *)
 
3618
+  as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
 
3619
+for as_dir in $PATH
 
3620
+do
 
3621
+  IFS=$as_save_IFS
 
3622
+  test -z "$as_dir" && as_dir=.
 
3623
+    for ac_exec_ext in '' $ac_executable_extensions; do
 
3624
+  if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then
 
3625
+    ac_cv_path_ac_pt_PKG_CONFIG="$as_dir/$ac_word$ac_exec_ext"
 
3626
+    $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5
 
3627
+    break 2
 
3628
+  fi
 
3629
+done
 
3630
+  done
 
3631
+IFS=$as_save_IFS
 
3632
+
 
3633
+  ;;
 
3634
+esac
 
3635
+fi
 
3636
+ac_pt_PKG_CONFIG=$ac_cv_path_ac_pt_PKG_CONFIG
 
3637
+if test -n "$ac_pt_PKG_CONFIG"; then
 
3638
+  { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_pt_PKG_CONFIG" >&5
 
3639
+$as_echo "$ac_pt_PKG_CONFIG" >&6; }
 
3640
+else
 
3641
+  { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5
 
3642
+$as_echo "no" >&6; }
 
3643
+fi
 
3644
+
 
3645
+  if test "x$ac_pt_PKG_CONFIG" = x; then
 
3646
+    PKG_CONFIG=""
 
3647
+  else
 
3648
+    case $cross_compiling:$ac_tool_warned in
 
3649
+yes:)
 
3650
+{ $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet" >&5
 
3651
+$as_echo "$as_me: WARNING: using cross tools not prefixed with host triplet" >&2;}
 
3652
+ac_tool_warned=yes ;;
 
3653
+esac
 
3654
+    PKG_CONFIG=$ac_pt_PKG_CONFIG
 
3655
+  fi
 
3656
+else
 
3657
+  PKG_CONFIG="$ac_cv_path_PKG_CONFIG"
 
3658
+fi
 
3659
+
 
3660
+fi
 
3661
+if test -n "$PKG_CONFIG"; then
 
3662
+       _pkg_min_version=0.9.0
 
3663
+       { $as_echo "$as_me:${as_lineno-$LINENO}: checking pkg-config is at least version $_pkg_min_version" >&5
 
3664
+$as_echo_n "checking pkg-config is at least version $_pkg_min_version... " >&6; }
 
3665
+       if $PKG_CONFIG --atleast-pkgconfig-version $_pkg_min_version; then
 
3666
+               { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5
 
3667
+$as_echo "yes" >&6; }
 
3668
+       else
 
3669
+               { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5
 
3670
+$as_echo "no" >&6; }
 
3671
+               PKG_CONFIG=""
 
3672
+       fi
 
3673
+fi
 
3674
+
 
3675
+pkg_failed=no
 
3676
+{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for HBAAPI" >&5
 
3677
+$as_echo_n "checking for HBAAPI... " >&6; }
 
3678
+
 
3679
+if test -n "$HBAAPI_CFLAGS"; then
 
3680
+    pkg_cv_HBAAPI_CFLAGS="$HBAAPI_CFLAGS"
 
3681
+ elif test -n "$PKG_CONFIG"; then
 
3682
+    if test -n "$PKG_CONFIG" && \
 
3683
+    { { $as_echo "$as_me:${as_lineno-$LINENO}: \$PKG_CONFIG --exists --print-errors \"HBAAPI\""; } >&5
 
3684
+  ($PKG_CONFIG --exists --print-errors "HBAAPI") 2>&5
 
3685
+  ac_status=$?
 
3686
+  $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5
 
3687
+  test $ac_status = 0; }; then
 
3688
+  pkg_cv_HBAAPI_CFLAGS=`$PKG_CONFIG --cflags "HBAAPI" 2>/dev/null`
 
3689
+                     test "x$?" != "x0" && pkg_failed=yes 
 
3690
+else
 
3691
+  pkg_failed=yes
 
3692
+fi
 
3693
+ else
 
3694
+    pkg_failed=untried
 
3695
+fi
 
3696
+if test -n "$HBAAPI_LIBS"; then
 
3697
+    pkg_cv_HBAAPI_LIBS="$HBAAPI_LIBS"
 
3698
+ elif test -n "$PKG_CONFIG"; then
 
3699
+    if test -n "$PKG_CONFIG" && \
 
3700
+    { { $as_echo "$as_me:${as_lineno-$LINENO}: \$PKG_CONFIG --exists --print-errors \"HBAAPI\""; } >&5
 
3701
+  ($PKG_CONFIG --exists --print-errors "HBAAPI") 2>&5
 
3702
+  ac_status=$?
 
3703
+  $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5
 
3704
+  test $ac_status = 0; }; then
 
3705
+  pkg_cv_HBAAPI_LIBS=`$PKG_CONFIG --libs "HBAAPI" 2>/dev/null`
 
3706
+                     test "x$?" != "x0" && pkg_failed=yes 
 
3707
+else
 
3708
+  pkg_failed=yes
 
3709
+fi
 
3710
+ else
 
3711
+    pkg_failed=untried
 
3712
+fi
 
3713
+
 
3714
+
 
3715
+
 
3716
+if test $pkg_failed = yes; then
 
3717
+       { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5
 
3718
+$as_echo "no" >&6; }
 
3719
+        
 
3720
+if $PKG_CONFIG --atleast-pkgconfig-version 0.20; then
 
3721
+        _pkg_short_errors_supported=yes
 
3722
+else
 
3723
+        _pkg_short_errors_supported=no
 
3724
+fi
 
3725
+        if test $_pkg_short_errors_supported = yes; then
 
3726
+               HBAAPI_PKG_ERRORS=`$PKG_CONFIG --short-errors --print-errors --cflags --libs "HBAAPI" 2>&1`
 
3727
+        else 
 
3728
+               HBAAPI_PKG_ERRORS=`$PKG_CONFIG --print-errors --cflags --libs "HBAAPI" 2>&1`
 
3729
+        fi
 
3730
+       # Put the nasty error message in config.log where it belongs
 
3731
+       echo "$HBAAPI_PKG_ERRORS" >&5
 
3732
+
 
3733
+       as_fn_error $? "Package requirements (HBAAPI) were not met:
 
3734
+
 
3735
+$HBAAPI_PKG_ERRORS
 
3736
+
 
3737
+Consider adjusting the PKG_CONFIG_PATH environment variable if you
 
3738
+installed software in a non-standard prefix.
 
3739
+
 
3740
+Alternatively, you may set the environment variables HBAAPI_CFLAGS
 
3741
+and HBAAPI_LIBS to avoid the need to call pkg-config.
 
3742
+See the pkg-config man page for more details." "$LINENO" 5        
 
3743
+elif test $pkg_failed = untried; then
 
3744
+       { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5
 
3745
+$as_echo "no" >&6; }
 
3746
+       { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5
 
3747
+$as_echo "$as_me: error: in \`$ac_pwd':" >&2;}
 
3748
+as_fn_error $? "The pkg-config script could not be found or is too old.  Make sure it
 
3749
+is in your PATH or set the PKG_CONFIG environment variable to the full
 
3750
+path to pkg-config.
 
3751
+
 
3752
+Alternatively, you may set the environment variables HBAAPI_CFLAGS
 
3753
+and HBAAPI_LIBS to avoid the need to call pkg-config.
 
3754
+See the pkg-config man page for more details.
 
3755
+
 
3756
+To get pkg-config, see <http://pkg-config.freedesktop.org/>.
 
3757
+See \`config.log' for more details" "$LINENO" 5; }        
 
3758
+else
 
3759
+       HBAAPI_CFLAGS=$pkg_cv_HBAAPI_CFLAGS
 
3760
+       HBAAPI_LIBS=$pkg_cv_HBAAPI_LIBS
 
3761
+        { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5
 
3762
+$as_echo "yes" >&6; }
 
3763
+       
 
3764
+fi
 
3765
+
 
3766
+
 
3767
+
 
3768
+
 
3769
+@%:@ Check whether --with-dcb was given.
 
3770
+if test "${with_dcb+set}" = set; then :
 
3771
+  withval=$with_dcb; 
 
3772
+else
 
3773
+  with_dcb=yes
 
3774
+fi
 
3775
+
 
3776
+
 
3777
+ if test "X$with_dcb" != Xno; then
 
3778
+  WITH_DCB_TRUE=
 
3779
+  WITH_DCB_FALSE='#'
 
3780
+else
 
3781
+  WITH_DCB_TRUE='#'
 
3782
+  WITH_DCB_FALSE=
 
3783
+fi
 
3784
+
 
3785
+
 
3786
+if test "X$with_dcb" != Xno; then :
 
3787
+  
 
3788
+pkg_failed=no
 
3789
+{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for DCBD" >&5
 
3790
+$as_echo_n "checking for DCBD... " >&6; }
 
3791
+
 
3792
+if test -n "$DCBD_CFLAGS"; then
 
3793
+    pkg_cv_DCBD_CFLAGS="$DCBD_CFLAGS"
 
3794
+ elif test -n "$PKG_CONFIG"; then
 
3795
+    if test -n "$PKG_CONFIG" && \
 
3796
+    { { $as_echo "$as_me:${as_lineno-$LINENO}: \$PKG_CONFIG --exists --print-errors \"dcbd\""; } >&5
 
3797
+  ($PKG_CONFIG --exists --print-errors "dcbd") 2>&5
 
3798
+  ac_status=$?
 
3799
+  $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5
 
3800
+  test $ac_status = 0; }; then
 
3801
+  pkg_cv_DCBD_CFLAGS=`$PKG_CONFIG --cflags "dcbd" 2>/dev/null`
 
3802
+                     test "x$?" != "x0" && pkg_failed=yes 
 
3803
+else
 
3804
+  pkg_failed=yes
 
3805
+fi
 
3806
+ else
 
3807
+    pkg_failed=untried
 
3808
+fi
 
3809
+if test -n "$DCBD_LIBS"; then
 
3810
+    pkg_cv_DCBD_LIBS="$DCBD_LIBS"
 
3811
+ elif test -n "$PKG_CONFIG"; then
 
3812
+    if test -n "$PKG_CONFIG" && \
 
3813
+    { { $as_echo "$as_me:${as_lineno-$LINENO}: \$PKG_CONFIG --exists --print-errors \"dcbd\""; } >&5
 
3814
+  ($PKG_CONFIG --exists --print-errors "dcbd") 2>&5
 
3815
+  ac_status=$?
 
3816
+  $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5
 
3817
+  test $ac_status = 0; }; then
 
3818
+  pkg_cv_DCBD_LIBS=`$PKG_CONFIG --libs "dcbd" 2>/dev/null`
 
3819
+                     test "x$?" != "x0" && pkg_failed=yes 
 
3820
+else
 
3821
+  pkg_failed=yes
 
3822
+fi
 
3823
+ else
 
3824
+    pkg_failed=untried
 
3825
+fi
 
3826
+
 
3827
+
 
3828
+
 
3829
+if test $pkg_failed = yes; then
 
3830
+       { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5
 
3831
+$as_echo "no" >&6; }
 
3832
+        
 
3833
+if $PKG_CONFIG --atleast-pkgconfig-version 0.20; then
 
3834
+        _pkg_short_errors_supported=yes
 
3835
+else
 
3836
+        _pkg_short_errors_supported=no
 
3837
+fi
 
3838
+        if test $_pkg_short_errors_supported = yes; then
 
3839
+               DCBD_PKG_ERRORS=`$PKG_CONFIG --short-errors --print-errors --cflags --libs "dcbd" 2>&1`
 
3840
+        else 
 
3841
+               DCBD_PKG_ERRORS=`$PKG_CONFIG --print-errors --cflags --libs "dcbd" 2>&1`
 
3842
+        fi
 
3843
+       # Put the nasty error message in config.log where it belongs
 
3844
+       echo "$DCBD_PKG_ERRORS" >&5
 
3845
+
 
3846
+       as_fn_error $? "Package requirements (dcbd) were not met:
 
3847
+
 
3848
+$DCBD_PKG_ERRORS
 
3849
+
 
3850
+Consider adjusting the PKG_CONFIG_PATH environment variable if you
 
3851
+installed software in a non-standard prefix.
 
3852
+
 
3853
+Alternatively, you may set the environment variables DCBD_CFLAGS
 
3854
+and DCBD_LIBS to avoid the need to call pkg-config.
 
3855
+See the pkg-config man page for more details." "$LINENO" 5        
 
3856
+elif test $pkg_failed = untried; then
 
3857
+       { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5
 
3858
+$as_echo "no" >&6; }
 
3859
+       { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5
 
3860
+$as_echo "$as_me: error: in \`$ac_pwd':" >&2;}
 
3861
+as_fn_error $? "The pkg-config script could not be found or is too old.  Make sure it
 
3862
+is in your PATH or set the PKG_CONFIG environment variable to the full
 
3863
+path to pkg-config.
 
3864
+
 
3865
+Alternatively, you may set the environment variables DCBD_CFLAGS
 
3866
+and DCBD_LIBS to avoid the need to call pkg-config.
 
3867
+See the pkg-config man page for more details.
 
3868
+
 
3869
+To get pkg-config, see <http://pkg-config.freedesktop.org/>.
 
3870
+See \`config.log' for more details" "$LINENO" 5; }        
 
3871
+else
 
3872
+       DCBD_CFLAGS=$pkg_cv_DCBD_CFLAGS
 
3873
+       DCBD_LIBS=$pkg_cv_DCBD_LIBS
 
3874
+        { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5
 
3875
+$as_echo "yes" >&6; }
 
3876
+       
 
3877
+fi
 
3878
+       
 
3879
+fi
 
3880
+
 
3881
+ac_config_files="$ac_config_files Makefile fcoeplumb fcoe-utils.spec fcoe_utils.h"
 
3882
+
 
3883
+cat >confcache <<\_ACEOF
 
3884
+# This file is a shell script that caches the results of configure
 
3885
+# tests run on this system so they can be shared between configure
 
3886
+# scripts and configure runs, see configure's option --config-cache.
 
3887
+# It is not useful on other systems.  If it contains results you don't
 
3888
+# want to keep, you may remove or edit it.
 
3889
+#
 
3890
+# config.status only pays attention to the cache file if you give it
 
3891
+# the --recheck option to rerun configure.
 
3892
+#
 
3893
+# `ac_cv_env_foo' variables (set or unset) will be overridden when
 
3894
+# loading this file, other *unset* `ac_cv_foo' will be assigned the
 
3895
+# following values.
 
3896
+
 
3897
+_ACEOF
 
3898
+
 
3899
+# The following way of writing the cache mishandles newlines in values,
 
3900
+# but we know of no workaround that is simple, portable, and efficient.
 
3901
+# So, we kill variables containing newlines.
 
3902
+# Ultrix sh set writes to stderr and can't be redirected directly,
 
3903
+# and sets the high bit in the cache file unless we assign to the vars.
 
3904
+(
 
3905
+  for ac_var in `(set) 2>&1 | sed -n 's/^\([a-zA-Z_][a-zA-Z0-9_]*\)=.*/\1/p'`; do
 
3906
+    eval ac_val=\$$ac_var
 
3907
+    case $ac_val in #(
 
3908
+    *${as_nl}*)
 
3909
+      case $ac_var in #(
 
3910
+      *_cv_*) { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: cache variable $ac_var contains a newline" >&5
 
3911
+$as_echo "$as_me: WARNING: cache variable $ac_var contains a newline" >&2;} ;;
 
3912
+      esac
 
3913
+      case $ac_var in #(
 
3914
+      _ | IFS | as_nl) ;; #(
 
3915
+      BASH_ARGV | BASH_SOURCE) eval $ac_var= ;; #(
 
3916
+      *) { eval $ac_var=; unset $ac_var;} ;;
 
3917
+      esac ;;
 
3918
+    esac
 
3919
+  done
 
3920
+
 
3921
+  (set) 2>&1 |
 
3922
+    case $as_nl`(ac_space=' '; set) 2>&1` in #(
 
3923
+    *${as_nl}ac_space=\ *)
 
3924
+      # `set' does not quote correctly, so add quotes: double-quote
 
3925
+      # substitution turns \\\\ into \\, and sed turns \\ into \.
 
3926
+      sed -n \
 
3927
+       "s/'/'\\\\''/g;
 
3928
+         s/^\\([_$as_cr_alnum]*_cv_[_$as_cr_alnum]*\\)=\\(.*\\)/\\1='\\2'/p"
 
3929
+      ;; #(
 
3930
+    *)
 
3931
+      # `set' quotes correctly as required by POSIX, so do not add quotes.
 
3932
+      sed -n "/^[_$as_cr_alnum]*_cv_[_$as_cr_alnum]*=/p"
 
3933
+      ;;
 
3934
+    esac |
 
3935
+    sort
 
3936
+) |
 
3937
+  sed '
 
3938
+     /^ac_cv_env_/b end
 
3939
+     t clear
 
3940
+     :clear
 
3941
+     s/^\([^=]*\)=\(.*[{}].*\)$/test "${\1+set}" = set || &/
 
3942
+     t end
 
3943
+     s/^\([^=]*\)=\(.*\)$/\1=${\1=\2}/
 
3944
+     :end' >>confcache
 
3945
+if diff "$cache_file" confcache >/dev/null 2>&1; then :; else
 
3946
+  if test -w "$cache_file"; then
 
3947
+    if test "x$cache_file" != "x/dev/null"; then
 
3948
+      { $as_echo "$as_me:${as_lineno-$LINENO}: updating cache $cache_file" >&5
 
3949
+$as_echo "$as_me: updating cache $cache_file" >&6;}
 
3950
+      if test ! -f "$cache_file" || test -h "$cache_file"; then
 
3951
+       cat confcache >"$cache_file"
 
3952
+      else
 
3953
+        case $cache_file in #(
 
3954
+        */* | ?:*)
 
3955
+         mv -f confcache "$cache_file"$$ &&
 
3956
+         mv -f "$cache_file"$$ "$cache_file" ;; #(
 
3957
+        *)
 
3958
+         mv -f confcache "$cache_file" ;;
 
3959
+       esac
 
3960
+      fi
 
3961
+    fi
 
3962
+  else
 
3963
+    { $as_echo "$as_me:${as_lineno-$LINENO}: not updating unwritable cache $cache_file" >&5
 
3964
+$as_echo "$as_me: not updating unwritable cache $cache_file" >&6;}
 
3965
+  fi
 
3966
+fi
 
3967
+rm -f confcache
 
3968
+
 
3969
+test "x$prefix" = xNONE && prefix=$ac_default_prefix
 
3970
+# Let make expand exec_prefix.
 
3971
+test "x$exec_prefix" = xNONE && exec_prefix='${prefix}'
 
3972
+
 
3973
+# Transform confdefs.h into DEFS.
 
3974
+# Protect against shell expansion while executing Makefile rules.
 
3975
+# Protect against Makefile macro expansion.
 
3976
+#
 
3977
+# If the first sed substitution is executed (which looks for macros that
 
3978
+# take arguments), then branch to the quote section.  Otherwise,
 
3979
+# look for a macro that doesn't take arguments.
 
3980
+ac_script='
 
3981
+:mline
 
3982
+/\\$/{
 
3983
+ N
 
3984
+ s,\\\n,,
 
3985
+ b mline
 
3986
+}
 
3987
+t clear
 
3988
+:clear
 
3989
+s/^[    ]*#[    ]*define[       ][      ]*\([^  (][^    (]*([^)]*)\)[   ]*\(.*\)/-D\1=\2/g
 
3990
+t quote
 
3991
+s/^[    ]*#[    ]*define[       ][      ]*\([^  ][^     ]*\)[   ]*\(.*\)/-D\1=\2/g
 
3992
+t quote
 
3993
+b any
 
3994
+:quote
 
3995
+s/[     `~#$^&*(){}\\|;'\''"<>?]/\\&/g
 
3996
+s/\[/\\&/g
 
3997
+s/\]/\\&/g
 
3998
+s/\$/$$/g
 
3999
+H
 
4000
+:any
 
4001
+${
 
4002
+       g
 
4003
+       s/^\n//
 
4004
+       s/\n/ /g
 
4005
+       p
 
4006
+}
 
4007
+'
 
4008
+DEFS=`sed -n "$ac_script" confdefs.h`
 
4009
+
 
4010
+
 
4011
+ac_libobjs=
 
4012
+ac_ltlibobjs=
 
4013
+U=
 
4014
+for ac_i in : $LIB@&t@OBJS; do test "x$ac_i" = x: && continue
 
4015
+  # 1. Remove the extension, and $U if already installed.
 
4016
+  ac_script='s/\$U\././;s/\.o$//;s/\.obj$//'
 
4017
+  ac_i=`$as_echo "$ac_i" | sed "$ac_script"`
 
4018
+  # 2. Prepend LIBOBJDIR.  When used with automake>=1.10 LIBOBJDIR
 
4019
+  #    will be set to the directory where LIBOBJS objects are built.
 
4020
+  as_fn_append ac_libobjs " \${LIBOBJDIR}$ac_i\$U.$ac_objext"
 
4021
+  as_fn_append ac_ltlibobjs " \${LIBOBJDIR}$ac_i"'$U.lo'
 
4022
+done
 
4023
+LIB@&t@OBJS=$ac_libobjs
 
4024
+
 
4025
+LTLIBOBJS=$ac_ltlibobjs
 
4026
+
 
4027
+
 
4028
+ if test -n "$EXEEXT"; then
 
4029
+  am__EXEEXT_TRUE=
 
4030
+  am__EXEEXT_FALSE='#'
 
4031
+else
 
4032
+  am__EXEEXT_TRUE='#'
 
4033
+  am__EXEEXT_FALSE=
 
4034
+fi
 
4035
+
 
4036
+if test -z "${AMDEP_TRUE}" && test -z "${AMDEP_FALSE}"; then
 
4037
+  as_fn_error $? "conditional \"AMDEP\" was never defined.
 
4038
+Usually this means the macro was only invoked conditionally." "$LINENO" 5
 
4039
+fi
 
4040
+if test -z "${am__fastdepCC_TRUE}" && test -z "${am__fastdepCC_FALSE}"; then
 
4041
+  as_fn_error $? "conditional \"am__fastdepCC\" was never defined.
 
4042
+Usually this means the macro was only invoked conditionally." "$LINENO" 5
 
4043
+fi
 
4044
+if test -z "${WITH_DCB_TRUE}" && test -z "${WITH_DCB_FALSE}"; then
 
4045
+  as_fn_error $? "conditional \"WITH_DCB\" was never defined.
 
4046
+Usually this means the macro was only invoked conditionally." "$LINENO" 5
 
4047
+fi
 
4048
+
 
4049
+: "${CONFIG_STATUS=./config.status}"
 
4050
+ac_write_fail=0
 
4051
+ac_clean_files_save=$ac_clean_files
 
4052
+ac_clean_files="$ac_clean_files $CONFIG_STATUS"
 
4053
+{ $as_echo "$as_me:${as_lineno-$LINENO}: creating $CONFIG_STATUS" >&5
 
4054
+$as_echo "$as_me: creating $CONFIG_STATUS" >&6;}
 
4055
+as_write_fail=0
 
4056
+cat >$CONFIG_STATUS <<_ASEOF || as_write_fail=1
 
4057
+#! $SHELL
 
4058
+# Generated by $as_me.
 
4059
+# Run this file to recreate the current configuration.
 
4060
+# Compiler output produced by configure, useful for debugging
 
4061
+# configure, is in config.log if it exists.
 
4062
+
 
4063
+debug=false
 
4064
+ac_cs_recheck=false
 
4065
+ac_cs_silent=false
 
4066
+
 
4067
+SHELL=\${CONFIG_SHELL-$SHELL}
 
4068
+export SHELL
 
4069
+_ASEOF
 
4070
+cat >>$CONFIG_STATUS <<\_ASEOF || as_write_fail=1
 
4071
+## -------------------- ##
 
4072
+## M4sh Initialization. ##
 
4073
+## -------------------- ##
 
4074
+
 
4075
+# Be more Bourne compatible
 
4076
+DUALCASE=1; export DUALCASE # for MKS sh
 
4077
+if test -n "${ZSH_VERSION+set}" && (emulate sh) >/dev/null 2>&1; then :
 
4078
+  emulate sh
 
4079
+  NULLCMD=:
 
4080
+  # Pre-4.2 versions of Zsh do word splitting on ${1+"$@"}, which
 
4081
+  # is contrary to our usage.  Disable this feature.
 
4082
+  alias -g '${1+"$@"}'='"$@"'
 
4083
+  setopt NO_GLOB_SUBST
 
4084
+else
 
4085
+  case `(set -o) 2>/dev/null` in @%:@(
 
4086
+  *posix*) :
 
4087
+    set -o posix ;; @%:@(
 
4088
+  *) :
 
4089
+     ;;
 
4090
+esac
 
4091
+fi
 
4092
+
 
4093
+
 
4094
+as_nl='
 
4095
+'
 
4096
+export as_nl
 
4097
+# Printing a long string crashes Solaris 7 /usr/bin/printf.
 
4098
+as_echo='\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\'
 
4099
+as_echo=$as_echo$as_echo$as_echo$as_echo$as_echo
 
4100
+as_echo=$as_echo$as_echo$as_echo$as_echo$as_echo$as_echo
 
4101
+# Prefer a ksh shell builtin over an external printf program on Solaris,
 
4102
+# but without wasting forks for bash or zsh.
 
4103
+if test -z "$BASH_VERSION$ZSH_VERSION" \
 
4104
+    && (test "X`print -r -- $as_echo`" = "X$as_echo") 2>/dev/null; then
 
4105
+  as_echo='print -r --'
 
4106
+  as_echo_n='print -rn --'
 
4107
+elif (test "X`printf %s $as_echo`" = "X$as_echo") 2>/dev/null; then
 
4108
+  as_echo='printf %s\n'
 
4109
+  as_echo_n='printf %s'
 
4110
+else
 
4111
+  if test "X`(/usr/ucb/echo -n -n $as_echo) 2>/dev/null`" = "X-n $as_echo"; then
 
4112
+    as_echo_body='eval /usr/ucb/echo -n "$1$as_nl"'
 
4113
+    as_echo_n='/usr/ucb/echo -n'
 
4114
+  else
 
4115
+    as_echo_body='eval expr "X$1" : "X\\(.*\\)"'
 
4116
+    as_echo_n_body='eval
 
4117
+      arg=$1;
 
4118
+      case $arg in @%:@(
 
4119
+      *"$as_nl"*)
 
4120
+       expr "X$arg" : "X\\(.*\\)$as_nl";
 
4121
+       arg=`expr "X$arg" : ".*$as_nl\\(.*\\)"`;;
 
4122
+      esac;
 
4123
+      expr "X$arg" : "X\\(.*\\)" | tr -d "$as_nl"
 
4124
+    '
 
4125
+    export as_echo_n_body
 
4126
+    as_echo_n='sh -c $as_echo_n_body as_echo'
 
4127
+  fi
 
4128
+  export as_echo_body
 
4129
+  as_echo='sh -c $as_echo_body as_echo'
 
4130
+fi
 
4131
+
 
4132
+# The user is always right.
 
4133
+if test "${PATH_SEPARATOR+set}" != set; then
 
4134
+  PATH_SEPARATOR=:
 
4135
+  (PATH='/bin;/bin'; FPATH=$PATH; sh -c :) >/dev/null 2>&1 && {
 
4136
+    (PATH='/bin:/bin'; FPATH=$PATH; sh -c :) >/dev/null 2>&1 ||
 
4137
+      PATH_SEPARATOR=';'
 
4138
+  }
 
4139
+fi
 
4140
+
 
4141
+
 
4142
+# IFS
 
4143
+# We need space, tab and new line, in precisely that order.  Quoting is
 
4144
+# there to prevent editors from complaining about space-tab.
 
4145
+# (If _AS_PATH_WALK were called with IFS unset, it would disable word
 
4146
+# splitting by setting IFS to empty value.)
 
4147
+IFS=" ""       $as_nl"
 
4148
+
 
4149
+# Find who we are.  Look in the path if we contain no directory separator.
 
4150
+as_myself=
 
4151
+case $0 in @%:@((
 
4152
+  *[\\/]* ) as_myself=$0 ;;
 
4153
+  *) as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
 
4154
+for as_dir in $PATH
 
4155
+do
 
4156
+  IFS=$as_save_IFS
 
4157
+  test -z "$as_dir" && as_dir=.
 
4158
+    test -r "$as_dir/$0" && as_myself=$as_dir/$0 && break
 
4159
+  done
 
4160
+IFS=$as_save_IFS
 
4161
+
 
4162
+     ;;
 
4163
+esac
 
4164
+# We did not find ourselves, most probably we were run as `sh COMMAND'
 
4165
+# in which case we are not to be found in the path.
 
4166
+if test "x$as_myself" = x; then
 
4167
+  as_myself=$0
 
4168
+fi
 
4169
+if test ! -f "$as_myself"; then
 
4170
+  $as_echo "$as_myself: error: cannot find myself; rerun with an absolute file name" >&2
 
4171
+  exit 1
 
4172
+fi
 
4173
+
 
4174
+# Unset variables that we do not need and which cause bugs (e.g. in
 
4175
+# pre-3.0 UWIN ksh).  But do not cause bugs in bash 2.01; the "|| exit 1"
 
4176
+# suppresses any "Segmentation fault" message there.  '((' could
 
4177
+# trigger a bug in pdksh 5.2.14.
 
4178
+for as_var in BASH_ENV ENV MAIL MAILPATH
 
4179
+do eval test x\${$as_var+set} = xset \
 
4180
+  && ( (unset $as_var) || exit 1) >/dev/null 2>&1 && unset $as_var || :
 
4181
+done
 
4182
+PS1='$ '
 
4183
+PS2='> '
 
4184
+PS4='+ '
 
4185
+
 
4186
+# NLS nuisances.
 
4187
+LC_ALL=C
 
4188
+export LC_ALL
 
4189
+LANGUAGE=C
 
4190
+export LANGUAGE
 
4191
+
 
4192
+# CDPATH.
 
4193
+(unset CDPATH) >/dev/null 2>&1 && unset CDPATH
 
4194
+
 
4195
+
 
4196
+@%:@ as_fn_error STATUS ERROR [LINENO LOG_FD]
 
4197
+@%:@ ----------------------------------------
 
4198
+@%:@ Output "`basename @S|@0`: error: ERROR" to stderr. If LINENO and LOG_FD are
 
4199
+@%:@ provided, also output the error to LOG_FD, referencing LINENO. Then exit the
 
4200
+@%:@ script with STATUS, using 1 if that was 0.
 
4201
+as_fn_error ()
 
4202
+{
 
4203
+  as_status=$1; test $as_status -eq 0 && as_status=1
 
4204
+  if test "$4"; then
 
4205
+    as_lineno=${as_lineno-"$3"} as_lineno_stack=as_lineno_stack=$as_lineno_stack
 
4206
+    $as_echo "$as_me:${as_lineno-$LINENO}: error: $2" >&$4
 
4207
+  fi
 
4208
+  $as_echo "$as_me: error: $2" >&2
 
4209
+  as_fn_exit $as_status
 
4210
+} @%:@ as_fn_error
 
4211
+
 
4212
+
 
4213
+@%:@ as_fn_set_status STATUS
 
4214
+@%:@ -----------------------
 
4215
+@%:@ Set @S|@? to STATUS, without forking.
 
4216
+as_fn_set_status ()
 
4217
+{
 
4218
+  return $1
 
4219
+} @%:@ as_fn_set_status
 
4220
+
 
4221
+@%:@ as_fn_exit STATUS
 
4222
+@%:@ -----------------
 
4223
+@%:@ Exit the shell with STATUS, even in a "trap 0" or "set -e" context.
 
4224
+as_fn_exit ()
 
4225
+{
 
4226
+  set +e
 
4227
+  as_fn_set_status $1
 
4228
+  exit $1
 
4229
+} @%:@ as_fn_exit
 
4230
+
 
4231
+@%:@ as_fn_unset VAR
 
4232
+@%:@ ---------------
 
4233
+@%:@ Portably unset VAR.
 
4234
+as_fn_unset ()
 
4235
+{
 
4236
+  { eval $1=; unset $1;}
 
4237
+}
 
4238
+as_unset=as_fn_unset
 
4239
+@%:@ as_fn_append VAR VALUE
 
4240
+@%:@ ----------------------
 
4241
+@%:@ Append the text in VALUE to the end of the definition contained in VAR. Take
 
4242
+@%:@ advantage of any shell optimizations that allow amortized linear growth over
 
4243
+@%:@ repeated appends, instead of the typical quadratic growth present in naive
 
4244
+@%:@ implementations.
 
4245
+if (eval "as_var=1; as_var+=2; test x\$as_var = x12") 2>/dev/null; then :
 
4246
+  eval 'as_fn_append ()
 
4247
+  {
 
4248
+    eval $1+=\$2
 
4249
+  }'
 
4250
+else
 
4251
+  as_fn_append ()
 
4252
+  {
 
4253
+    eval $1=\$$1\$2
 
4254
+  }
 
4255
+fi # as_fn_append
 
4256
+
 
4257
+@%:@ as_fn_arith ARG...
 
4258
+@%:@ ------------------
 
4259
+@%:@ Perform arithmetic evaluation on the ARGs, and store the result in the
 
4260
+@%:@ global @S|@as_val. Take advantage of shells that can avoid forks. The arguments
 
4261
+@%:@ must be portable across @S|@(()) and expr.
 
4262
+if (eval "test \$(( 1 + 1 )) = 2") 2>/dev/null; then :
 
4263
+  eval 'as_fn_arith ()
 
4264
+  {
 
4265
+    as_val=$(( $* ))
 
4266
+  }'
 
4267
+else
 
4268
+  as_fn_arith ()
 
4269
+  {
 
4270
+    as_val=`expr "$@" || test $? -eq 1`
 
4271
+  }
 
4272
+fi # as_fn_arith
 
4273
+
 
4274
+
 
4275
+if expr a : '\(a\)' >/dev/null 2>&1 &&
 
4276
+   test "X`expr 00001 : '.*\(...\)'`" = X001; then
 
4277
+  as_expr=expr
 
4278
+else
 
4279
+  as_expr=false
 
4280
+fi
 
4281
+
 
4282
+if (basename -- /) >/dev/null 2>&1 && test "X`basename -- / 2>&1`" = "X/"; then
 
4283
+  as_basename=basename
 
4284
+else
 
4285
+  as_basename=false
 
4286
+fi
 
4287
+
 
4288
+if (as_dir=`dirname -- /` && test "X$as_dir" = X/) >/dev/null 2>&1; then
 
4289
+  as_dirname=dirname
 
4290
+else
 
4291
+  as_dirname=false
 
4292
+fi
 
4293
+
 
4294
+as_me=`$as_basename -- "$0" ||
 
4295
+$as_expr X/"$0" : '.*/\([^/][^/]*\)/*$' \| \
 
4296
+        X"$0" : 'X\(//\)$' \| \
 
4297
+        X"$0" : 'X\(/\)' \| . 2>/dev/null ||
 
4298
+$as_echo X/"$0" |
 
4299
+    sed '/^.*\/\([^/][^/]*\)\/*$/{
 
4300
+           s//\1/
 
4301
+           q
 
4302
+         }
 
4303
+         /^X\/\(\/\/\)$/{
 
4304
+           s//\1/
 
4305
+           q
 
4306
+         }
 
4307
+         /^X\/\(\/\).*/{
 
4308
+           s//\1/
 
4309
+           q
 
4310
+         }
 
4311
+         s/.*/./; q'`
 
4312
+
 
4313
+# Avoid depending upon Character Ranges.
 
4314
+as_cr_letters='abcdefghijklmnopqrstuvwxyz'
 
4315
+as_cr_LETTERS='ABCDEFGHIJKLMNOPQRSTUVWXYZ'
 
4316
+as_cr_Letters=$as_cr_letters$as_cr_LETTERS
 
4317
+as_cr_digits='0123456789'
 
4318
+as_cr_alnum=$as_cr_Letters$as_cr_digits
 
4319
+
 
4320
+ECHO_C= ECHO_N= ECHO_T=
 
4321
+case `echo -n x` in @%:@(((((
 
4322
+-n*)
 
4323
+  case `echo 'xy\c'` in
 
4324
+  *c*) ECHO_T='        ';;     # ECHO_T is single tab character.
 
4325
+  xy)  ECHO_C='\c';;
 
4326
+  *)   echo `echo ksh88 bug on AIX 6.1` > /dev/null
 
4327
+       ECHO_T='        ';;
 
4328
+  esac;;
 
4329
+*)
 
4330
+  ECHO_N='-n';;
 
4331
+esac
 
4332
+
 
4333
+rm -f conf$$ conf$$.exe conf$$.file
 
4334
+if test -d conf$$.dir; then
 
4335
+  rm -f conf$$.dir/conf$$.file
 
4336
+else
 
4337
+  rm -f conf$$.dir
 
4338
+  mkdir conf$$.dir 2>/dev/null
 
4339
+fi
 
4340
+if (echo >conf$$.file) 2>/dev/null; then
 
4341
+  if ln -s conf$$.file conf$$ 2>/dev/null; then
 
4342
+    as_ln_s='ln -s'
 
4343
+    # ... but there are two gotchas:
 
4344
+    # 1) On MSYS, both `ln -s file dir' and `ln file dir' fail.
 
4345
+    # 2) DJGPP < 2.04 has no symlinks; `ln -s' creates a wrapper executable.
 
4346
+    # In both cases, we have to default to `cp -p'.
 
4347
+    ln -s conf$$.file conf$$.dir 2>/dev/null && test ! -f conf$$.exe ||
 
4348
+      as_ln_s='cp -p'
 
4349
+  elif ln conf$$.file conf$$ 2>/dev/null; then
 
4350
+    as_ln_s=ln
 
4351
+  else
 
4352
+    as_ln_s='cp -p'
 
4353
+  fi
 
4354
+else
 
4355
+  as_ln_s='cp -p'
 
4356
+fi
 
4357
+rm -f conf$$ conf$$.exe conf$$.dir/conf$$.file conf$$.file
 
4358
+rmdir conf$$.dir 2>/dev/null
 
4359
+
 
4360
+
 
4361
+@%:@ as_fn_mkdir_p
 
4362
+@%:@ -------------
 
4363
+@%:@ Create "@S|@as_dir" as a directory, including parents if necessary.
 
4364
+as_fn_mkdir_p ()
 
4365
+{
 
4366
+
 
4367
+  case $as_dir in #(
 
4368
+  -*) as_dir=./$as_dir;;
 
4369
+  esac
 
4370
+  test -d "$as_dir" || eval $as_mkdir_p || {
 
4371
+    as_dirs=
 
4372
+    while :; do
 
4373
+      case $as_dir in #(
 
4374
+      *\'*) as_qdir=`$as_echo "$as_dir" | sed "s/'/'\\\\\\\\''/g"`;; #'(
 
4375
+      *) as_qdir=$as_dir;;
 
4376
+      esac
 
4377
+      as_dirs="'$as_qdir' $as_dirs"
 
4378
+      as_dir=`$as_dirname -- "$as_dir" ||
 
4379
+$as_expr X"$as_dir" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \
 
4380
+        X"$as_dir" : 'X\(//\)[^/]' \| \
 
4381
+        X"$as_dir" : 'X\(//\)$' \| \
 
4382
+        X"$as_dir" : 'X\(/\)' \| . 2>/dev/null ||
 
4383
+$as_echo X"$as_dir" |
 
4384
+    sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{
 
4385
+           s//\1/
 
4386
+           q
 
4387
+         }
 
4388
+         /^X\(\/\/\)[^/].*/{
 
4389
+           s//\1/
 
4390
+           q
 
4391
+         }
 
4392
+         /^X\(\/\/\)$/{
 
4393
+           s//\1/
 
4394
+           q
 
4395
+         }
 
4396
+         /^X\(\/\).*/{
 
4397
+           s//\1/
 
4398
+           q
 
4399
+         }
 
4400
+         s/.*/./; q'`
 
4401
+      test -d "$as_dir" && break
 
4402
+    done
 
4403
+    test -z "$as_dirs" || eval "mkdir $as_dirs"
 
4404
+  } || test -d "$as_dir" || as_fn_error $? "cannot create directory $as_dir"
 
4405
+
 
4406
+
 
4407
+} @%:@ as_fn_mkdir_p
 
4408
+if mkdir -p . 2>/dev/null; then
 
4409
+  as_mkdir_p='mkdir -p "$as_dir"'
 
4410
+else
 
4411
+  test -d ./-p && rmdir ./-p
 
4412
+  as_mkdir_p=false
 
4413
+fi
 
4414
+
 
4415
+if test -x / >/dev/null 2>&1; then
 
4416
+  as_test_x='test -x'
 
4417
+else
 
4418
+  if ls -dL / >/dev/null 2>&1; then
 
4419
+    as_ls_L_option=L
 
4420
+  else
 
4421
+    as_ls_L_option=
 
4422
+  fi
 
4423
+  as_test_x='
 
4424
+    eval sh -c '\''
 
4425
+      if test -d "$1"; then
 
4426
+       test -d "$1/.";
 
4427
+      else
 
4428
+       case $1 in @%:@(
 
4429
+       -*)set "./$1";;
 
4430
+       esac;
 
4431
+       case `ls -ld'$as_ls_L_option' "$1" 2>/dev/null` in @%:@((
 
4432
+       ???[sx]*):;;*)false;;esac;fi
 
4433
+    '\'' sh
 
4434
+  '
 
4435
+fi
 
4436
+as_executable_p=$as_test_x
 
4437
+
 
4438
+# Sed expression to map a string onto a valid CPP name.
 
4439
+as_tr_cpp="eval sed 'y%*$as_cr_letters%P$as_cr_LETTERS%;s%[^_$as_cr_alnum]%_%g'"
 
4440
+
 
4441
+# Sed expression to map a string onto a valid variable name.
 
4442
+as_tr_sh="eval sed 'y%*+%pp%;s%[^_$as_cr_alnum]%_%g'"
 
4443
+
 
4444
+
 
4445
+exec 6>&1
 
4446
+## ----------------------------------- ##
 
4447
+## Main body of $CONFIG_STATUS script. ##
 
4448
+## ----------------------------------- ##
 
4449
+_ASEOF
 
4450
+test $as_write_fail = 0 && chmod +x $CONFIG_STATUS || ac_write_fail=1
 
4451
+
 
4452
+cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1
 
4453
+# Save the log message, to keep $0 and so on meaningful, and to
 
4454
+# report actual input values of CONFIG_FILES etc. instead of their
 
4455
+# values after options handling.
 
4456
+ac_log="
 
4457
+This file was extended by fcoe-utils $as_me 1.0.9, which was
 
4458
+generated by GNU Autoconf 2.68.  Invocation command line was
 
4459
+
 
4460
+  CONFIG_FILES    = $CONFIG_FILES
 
4461
+  CONFIG_HEADERS  = $CONFIG_HEADERS
 
4462
+  CONFIG_LINKS    = $CONFIG_LINKS
 
4463
+  CONFIG_COMMANDS = $CONFIG_COMMANDS
 
4464
+  $ $0 $@
 
4465
+
 
4466
+on `(hostname || uname -n) 2>/dev/null | sed 1q`
 
4467
+"
 
4468
+
 
4469
+_ACEOF
 
4470
+
 
4471
+case $ac_config_files in *"
 
4472
+"*) set x $ac_config_files; shift; ac_config_files=$*;;
 
4473
+esac
 
4474
+
 
4475
+
 
4476
+
 
4477
+cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1
 
4478
+# Files that config.status was made for.
 
4479
+config_files="$ac_config_files"
 
4480
+config_commands="$ac_config_commands"
 
4481
+
 
4482
+_ACEOF
 
4483
+
 
4484
+cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1
 
4485
+ac_cs_usage="\
 
4486
+\`$as_me' instantiates files and other configuration actions
 
4487
+from templates according to the current configuration.  Unless the files
 
4488
+and actions are specified as TAGs, all are instantiated by default.
 
4489
+
 
4490
+Usage: $0 [OPTION]... [TAG]...
 
4491
+
 
4492
+  -h, --help       print this help, then exit
 
4493
+  -V, --version    print version number and configuration settings, then exit
 
4494
+      --config     print configuration, then exit
 
4495
+  -q, --quiet, --silent
 
4496
+                   do not print progress messages
 
4497
+  -d, --debug      don't remove temporary files
 
4498
+      --recheck    update $as_me by reconfiguring in the same conditions
 
4499
+      --file=FILE[:TEMPLATE] 
 
4500
+                   instantiate the configuration file FILE
 
4501
+
 
4502
+Configuration files:
 
4503
+$config_files
 
4504
+
 
4505
+Configuration commands:
 
4506
+$config_commands
 
4507
+
 
4508
+Report bugs to <devel@open-fcoe.org>."
 
4509
+
 
4510
+_ACEOF
 
4511
+cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1
 
4512
+ac_cs_config="`$as_echo "$ac_configure_args" | sed 's/^ //; s/[\\""\`\$]/\\\\&/g'`"
 
4513
+ac_cs_version="\\
 
4514
+fcoe-utils config.status 1.0.9
 
4515
+configured by $0, generated by GNU Autoconf 2.68,
 
4516
+  with options \\"\$ac_cs_config\\"
 
4517
+
 
4518
+Copyright (C) 2010 Free Software Foundation, Inc.
 
4519
+This config.status script is free software; the Free Software Foundation
 
4520
+gives unlimited permission to copy, distribute and modify it."
 
4521
+
 
4522
+ac_pwd='$ac_pwd'
 
4523
+srcdir='$srcdir'
 
4524
+INSTALL='$INSTALL'
 
4525
+MKDIR_P='$MKDIR_P'
 
4526
+AWK='$AWK'
 
4527
+test -n "\$AWK" || AWK=awk
 
4528
+_ACEOF
 
4529
+
 
4530
+cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1
 
4531
+# The default lists apply if the user does not specify any file.
 
4532
+ac_need_defaults=:
 
4533
+while test $# != 0
 
4534
+do
 
4535
+  case $1 in
 
4536
+  --*=?*)
 
4537
+    ac_option=`expr "X$1" : 'X\([^=]*\)='`
 
4538
+    ac_optarg=`expr "X$1" : 'X[^=]*=\(.*\)'`
 
4539
+    ac_shift=:
 
4540
+    ;;
 
4541
+  --*=)
 
4542
+    ac_option=`expr "X$1" : 'X\([^=]*\)='`
 
4543
+    ac_optarg=
 
4544
+    ac_shift=:
 
4545
+    ;;
 
4546
+  *)
 
4547
+    ac_option=$1
 
4548
+    ac_optarg=$2
 
4549
+    ac_shift=shift
 
4550
+    ;;
 
4551
+  esac
 
4552
+
 
4553
+  case $ac_option in
 
4554
+  # Handling of the options.
 
4555
+  -recheck | --recheck | --rechec | --reche | --rech | --rec | --re | --r)
 
4556
+    ac_cs_recheck=: ;;
 
4557
+  --version | --versio | --versi | --vers | --ver | --ve | --v | -V )
 
4558
+    $as_echo "$ac_cs_version"; exit ;;
 
4559
+  --config | --confi | --conf | --con | --co | --c )
 
4560
+    $as_echo "$ac_cs_config"; exit ;;
 
4561
+  --debug | --debu | --deb | --de | --d | -d )
 
4562
+    debug=: ;;
 
4563
+  --file | --fil | --fi | --f )
 
4564
+    $ac_shift
 
4565
+    case $ac_optarg in
 
4566
+    *\'*) ac_optarg=`$as_echo "$ac_optarg" | sed "s/'/'\\\\\\\\''/g"` ;;
 
4567
+    '') as_fn_error $? "missing file argument" ;;
 
4568
+    esac
 
4569
+    as_fn_append CONFIG_FILES " '$ac_optarg'"
 
4570
+    ac_need_defaults=false;;
 
4571
+  --he | --h |  --help | --hel | -h )
 
4572
+    $as_echo "$ac_cs_usage"; exit ;;
 
4573
+  -q | -quiet | --quiet | --quie | --qui | --qu | --q \
 
4574
+  | -silent | --silent | --silen | --sile | --sil | --si | --s)
 
4575
+    ac_cs_silent=: ;;
 
4576
+
 
4577
+  # This is an error.
 
4578
+  -*) as_fn_error $? "unrecognized option: \`$1'
 
4579
+Try \`$0 --help' for more information." ;;
 
4580
+
 
4581
+  *) as_fn_append ac_config_targets " $1"
 
4582
+     ac_need_defaults=false ;;
 
4583
+
 
4584
+  esac
 
4585
+  shift
 
4586
+done
 
4587
+
 
4588
+ac_configure_extra_args=
 
4589
+
 
4590
+if $ac_cs_silent; then
 
4591
+  exec 6>/dev/null
 
4592
+  ac_configure_extra_args="$ac_configure_extra_args --silent"
 
4593
+fi
 
4594
+
 
4595
+_ACEOF
 
4596
+cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1
 
4597
+if \$ac_cs_recheck; then
 
4598
+  set X '$SHELL' '$0' $ac_configure_args \$ac_configure_extra_args --no-create --no-recursion
 
4599
+  shift
 
4600
+  \$as_echo "running CONFIG_SHELL=$SHELL \$*" >&6
 
4601
+  CONFIG_SHELL='$SHELL'
 
4602
+  export CONFIG_SHELL
 
4603
+  exec "\$@"
 
4604
+fi
 
4605
+
 
4606
+_ACEOF
 
4607
+cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1
 
4608
+exec 5>>config.log
 
4609
+{
 
4610
+  echo
 
4611
+  sed 'h;s/./-/g;s/^.../@%:@@%:@ /;s/...$/ @%:@@%:@/;p;x;p;x' <<_ASBOX
 
4612
+@%:@@%:@ Running $as_me. @%:@@%:@
 
4613
+_ASBOX
 
4614
+  $as_echo "$ac_log"
 
4615
+} >&5
 
4616
+
 
4617
+_ACEOF
 
4618
+cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1
 
4619
+#
 
4620
+# INIT-COMMANDS
 
4621
+#
 
4622
+AMDEP_TRUE="$AMDEP_TRUE" ac_aux_dir="$ac_aux_dir"
 
4623
+
 
4624
+_ACEOF
 
4625
+
 
4626
+cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1
 
4627
+
 
4628
+# Handling of arguments.
 
4629
+for ac_config_target in $ac_config_targets
 
4630
+do
 
4631
+  case $ac_config_target in
 
4632
+    "depfiles") CONFIG_COMMANDS="$CONFIG_COMMANDS depfiles" ;;
 
4633
+    "Makefile") CONFIG_FILES="$CONFIG_FILES Makefile" ;;
 
4634
+    "fcoeplumb") CONFIG_FILES="$CONFIG_FILES fcoeplumb" ;;
 
4635
+    "fcoe-utils.spec") CONFIG_FILES="$CONFIG_FILES fcoe-utils.spec" ;;
 
4636
+    "fcoe_utils.h") CONFIG_FILES="$CONFIG_FILES fcoe_utils.h" ;;
 
4637
+
 
4638
+  *) as_fn_error $? "invalid argument: \`$ac_config_target'" "$LINENO" 5;;
 
4639
+  esac
 
4640
+done
 
4641
+
 
4642
+
 
4643
+# If the user did not use the arguments to specify the items to instantiate,
 
4644
+# then the envvar interface is used.  Set only those that are not.
 
4645
+# We use the long form for the default assignment because of an extremely
 
4646
+# bizarre bug on SunOS 4.1.3.
 
4647
+if $ac_need_defaults; then
 
4648
+  test "${CONFIG_FILES+set}" = set || CONFIG_FILES=$config_files
 
4649
+  test "${CONFIG_COMMANDS+set}" = set || CONFIG_COMMANDS=$config_commands
 
4650
+fi
 
4651
+
 
4652
+# Have a temporary directory for convenience.  Make it in the build tree
 
4653
+# simply because there is no reason against having it here, and in addition,
 
4654
+# creating and moving files from /tmp can sometimes cause problems.
 
4655
+# Hook for its removal unless debugging.
 
4656
+# Note that there is a small window in which the directory will not be cleaned:
 
4657
+# after its creation but before its name has been assigned to `$tmp'.
 
4658
+$debug ||
 
4659
+{
 
4660
+  tmp= ac_tmp=
 
4661
+  trap 'exit_status=$?
 
4662
+  : "${ac_tmp:=$tmp}"
 
4663
+  { test ! -d "$ac_tmp" || rm -fr "$ac_tmp"; } && exit $exit_status
 
4664
+' 0
 
4665
+  trap 'as_fn_exit 1' 1 2 13 15
 
4666
+}
 
4667
+# Create a (secure) tmp directory for tmp files.
 
4668
+
 
4669
+{
 
4670
+  tmp=`(umask 077 && mktemp -d "./confXXXXXX") 2>/dev/null` &&
 
4671
+  test -d "$tmp"
 
4672
+}  ||
 
4673
+{
 
4674
+  tmp=./conf$$-$RANDOM
 
4675
+  (umask 077 && mkdir "$tmp")
 
4676
+} || as_fn_error $? "cannot create a temporary directory in ." "$LINENO" 5
 
4677
+ac_tmp=$tmp
 
4678
+
 
4679
+# Set up the scripts for CONFIG_FILES section.
 
4680
+# No need to generate them if there are no CONFIG_FILES.
 
4681
+# This happens for instance with `./config.status config.h'.
 
4682
+if test -n "$CONFIG_FILES"; then
 
4683
+
 
4684
+
 
4685
+ac_cr=`echo X | tr X '\015'`
 
4686
+# On cygwin, bash can eat \r inside `` if the user requested igncr.
 
4687
+# But we know of no other shell where ac_cr would be empty at this
 
4688
+# point, so we can use a bashism as a fallback.
 
4689
+if test "x$ac_cr" = x; then
 
4690
+  eval ac_cr=\$\'\\r\'
 
4691
+fi
 
4692
+ac_cs_awk_cr=`$AWK 'BEGIN { print "a\rb" }' </dev/null 2>/dev/null`
 
4693
+if test "$ac_cs_awk_cr" = "a${ac_cr}b"; then
 
4694
+  ac_cs_awk_cr='\\r'
 
4695
+else
 
4696
+  ac_cs_awk_cr=$ac_cr
 
4697
+fi
 
4698
+
 
4699
+echo 'BEGIN {' >"$ac_tmp/subs1.awk" &&
 
4700
+_ACEOF
 
4701
+
 
4702
+
 
4703
+{
 
4704
+  echo "cat >conf$$subs.awk <<_ACEOF" &&
 
4705
+  echo "$ac_subst_vars" | sed 's/.*/&!$&$ac_delim/' &&
 
4706
+  echo "_ACEOF"
 
4707
+} >conf$$subs.sh ||
 
4708
+  as_fn_error $? "could not make $CONFIG_STATUS" "$LINENO" 5
 
4709
+ac_delim_num=`echo "$ac_subst_vars" | grep -c '^'`
 
4710
+ac_delim='%!_!# '
 
4711
+for ac_last_try in false false false false false :; do
 
4712
+  . ./conf$$subs.sh ||
 
4713
+    as_fn_error $? "could not make $CONFIG_STATUS" "$LINENO" 5
 
4714
+
 
4715
+  ac_delim_n=`sed -n "s/.*$ac_delim\$/X/p" conf$$subs.awk | grep -c X`
 
4716
+  if test $ac_delim_n = $ac_delim_num; then
 
4717
+    break
 
4718
+  elif $ac_last_try; then
 
4719
+    as_fn_error $? "could not make $CONFIG_STATUS" "$LINENO" 5
 
4720
+  else
 
4721
+    ac_delim="$ac_delim!$ac_delim _$ac_delim!! "
 
4722
+  fi
 
4723
+done
 
4724
+rm -f conf$$subs.sh
 
4725
+
 
4726
+cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1
 
4727
+cat >>"\$ac_tmp/subs1.awk" <<\\_ACAWK &&
 
4728
+_ACEOF
 
4729
+sed -n '
 
4730
+h
 
4731
+s/^/S["/; s/!.*/"]=/
 
4732
+p
 
4733
+g
 
4734
+s/^[^!]*!//
 
4735
+:repl
 
4736
+t repl
 
4737
+s/'"$ac_delim"'$//
 
4738
+t delim
 
4739
+:nl
 
4740
+h
 
4741
+s/\(.\{148\}\)..*/\1/
 
4742
+t more1
 
4743
+s/["\\]/\\&/g; s/^/"/; s/$/\\n"\\/
 
4744
+p
 
4745
+n
 
4746
+b repl
 
4747
+:more1
 
4748
+s/["\\]/\\&/g; s/^/"/; s/$/"\\/
 
4749
+p
 
4750
+g
 
4751
+s/.\{148\}//
 
4752
+t nl
 
4753
+:delim
 
4754
+h
 
4755
+s/\(.\{148\}\)..*/\1/
 
4756
+t more2
 
4757
+s/["\\]/\\&/g; s/^/"/; s/$/"/
 
4758
+p
 
4759
+b
 
4760
+:more2
 
4761
+s/["\\]/\\&/g; s/^/"/; s/$/"\\/
 
4762
+p
 
4763
+g
 
4764
+s/.\{148\}//
 
4765
+t delim
 
4766
+' <conf$$subs.awk | sed '
 
4767
+/^[^""]/{
 
4768
+  N
 
4769
+  s/\n//
 
4770
+}
 
4771
+' >>$CONFIG_STATUS || ac_write_fail=1
 
4772
+rm -f conf$$subs.awk
 
4773
+cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1
 
4774
+_ACAWK
 
4775
+cat >>"\$ac_tmp/subs1.awk" <<_ACAWK &&
 
4776
+  for (key in S) S_is_set[key] = 1
 
4777
+  FS = ""
 
4778
+
 
4779
+}
 
4780
+{
 
4781
+  line = $ 0
 
4782
+  nfields = split(line, field, "@")
 
4783
+  substed = 0
 
4784
+  len = length(field[1])
 
4785
+  for (i = 2; i < nfields; i++) {
 
4786
+    key = field[i]
 
4787
+    keylen = length(key)
 
4788
+    if (S_is_set[key]) {
 
4789
+      value = S[key]
 
4790
+      line = substr(line, 1, len) "" value "" substr(line, len + keylen + 3)
 
4791
+      len += length(value) + length(field[++i])
 
4792
+      substed = 1
 
4793
+    } else
 
4794
+      len += 1 + keylen
 
4795
+  }
 
4796
+
 
4797
+  print line
 
4798
+}
 
4799
+
 
4800
+_ACAWK
 
4801
+_ACEOF
 
4802
+cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1
 
4803
+if sed "s/$ac_cr//" < /dev/null > /dev/null 2>&1; then
 
4804
+  sed "s/$ac_cr\$//; s/$ac_cr/$ac_cs_awk_cr/g"
 
4805
+else
 
4806
+  cat
 
4807
+fi < "$ac_tmp/subs1.awk" > "$ac_tmp/subs.awk" \
 
4808
+  || as_fn_error $? "could not setup config files machinery" "$LINENO" 5
 
4809
+_ACEOF
 
4810
+
 
4811
+# VPATH may cause trouble with some makes, so we remove sole $(srcdir),
 
4812
+# ${srcdir} and @srcdir@ entries from VPATH if srcdir is ".", strip leading and
 
4813
+# trailing colons and then remove the whole line if VPATH becomes empty
 
4814
+# (actually we leave an empty line to preserve line numbers).
 
4815
+if test "x$srcdir" = x.; then
 
4816
+  ac_vpsub='/^[         ]*VPATH[        ]*=[    ]*/{
 
4817
+h
 
4818
+s///
 
4819
+s/^/:/
 
4820
+s/[     ]*$/:/
 
4821
+s/:\$(srcdir):/:/g
 
4822
+s/:\${srcdir}:/:/g
 
4823
+s/:@srcdir@:/:/g
 
4824
+s/^:*//
 
4825
+s/:*$//
 
4826
+x
 
4827
+s/\(=[  ]*\).*/\1/
 
4828
+G
 
4829
+s/\n//
 
4830
+s/^[^=]*=[      ]*$//
 
4831
+}'
 
4832
+fi
 
4833
+
 
4834
+cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1
 
4835
+fi # test -n "$CONFIG_FILES"
 
4836
+
 
4837
+
 
4838
+eval set X "  :F $CONFIG_FILES      :C $CONFIG_COMMANDS"
 
4839
+shift
 
4840
+for ac_tag
 
4841
+do
 
4842
+  case $ac_tag in
 
4843
+  :[FHLC]) ac_mode=$ac_tag; continue;;
 
4844
+  esac
 
4845
+  case $ac_mode$ac_tag in
 
4846
+  :[FHL]*:*);;
 
4847
+  :L* | :C*:*) as_fn_error $? "invalid tag \`$ac_tag'" "$LINENO" 5;;
 
4848
+  :[FH]-) ac_tag=-:-;;
 
4849
+  :[FH]*) ac_tag=$ac_tag:$ac_tag.in;;
 
4850
+  esac
 
4851
+  ac_save_IFS=$IFS
 
4852
+  IFS=:
 
4853
+  set x $ac_tag
 
4854
+  IFS=$ac_save_IFS
 
4855
+  shift
 
4856
+  ac_file=$1
 
4857
+  shift
 
4858
+
 
4859
+  case $ac_mode in
 
4860
+  :L) ac_source=$1;;
 
4861
+  :[FH])
 
4862
+    ac_file_inputs=
 
4863
+    for ac_f
 
4864
+    do
 
4865
+      case $ac_f in
 
4866
+      -) ac_f="$ac_tmp/stdin";;
 
4867
+      *) # Look for the file first in the build tree, then in the source tree
 
4868
+        # (if the path is not absolute).  The absolute path cannot be DOS-style,
 
4869
+        # because $ac_f cannot contain `:'.
 
4870
+        test -f "$ac_f" ||
 
4871
+          case $ac_f in
 
4872
+          [\\/$]*) false;;
 
4873
+          *) test -f "$srcdir/$ac_f" && ac_f="$srcdir/$ac_f";;
 
4874
+          esac ||
 
4875
+          as_fn_error 1 "cannot find input file: \`$ac_f'" "$LINENO" 5;;
 
4876
+      esac
 
4877
+      case $ac_f in *\'*) ac_f=`$as_echo "$ac_f" | sed "s/'/'\\\\\\\\''/g"`;; esac
 
4878
+      as_fn_append ac_file_inputs " '$ac_f'"
 
4879
+    done
 
4880
+
 
4881
+    # Let's still pretend it is `configure' which instantiates (i.e., don't
 
4882
+    # use $as_me), people would be surprised to read:
 
4883
+    #    /* config.h.  Generated by config.status.  */
 
4884
+    configure_input='Generated from '`
 
4885
+         $as_echo "$*" | sed 's|^[^:]*/||;s|:[^:]*/|, |g'
 
4886
+       `' by configure.'
 
4887
+    if test x"$ac_file" != x-; then
 
4888
+      configure_input="$ac_file.  $configure_input"
 
4889
+      { $as_echo "$as_me:${as_lineno-$LINENO}: creating $ac_file" >&5
 
4890
+$as_echo "$as_me: creating $ac_file" >&6;}
 
4891
+    fi
 
4892
+    # Neutralize special characters interpreted by sed in replacement strings.
 
4893
+    case $configure_input in #(
 
4894
+    *\&* | *\|* | *\\* )
 
4895
+       ac_sed_conf_input=`$as_echo "$configure_input" |
 
4896
+       sed 's/[\\\\&|]/\\\\&/g'`;; #(
 
4897
+    *) ac_sed_conf_input=$configure_input;;
 
4898
+    esac
 
4899
+
 
4900
+    case $ac_tag in
 
4901
+    *:-:* | *:-) cat >"$ac_tmp/stdin" \
 
4902
+      || as_fn_error $? "could not create $ac_file" "$LINENO" 5 ;;
 
4903
+    esac
 
4904
+    ;;
 
4905
+  esac
 
4906
+
 
4907
+  ac_dir=`$as_dirname -- "$ac_file" ||
 
4908
+$as_expr X"$ac_file" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \
 
4909
+        X"$ac_file" : 'X\(//\)[^/]' \| \
 
4910
+        X"$ac_file" : 'X\(//\)$' \| \
 
4911
+        X"$ac_file" : 'X\(/\)' \| . 2>/dev/null ||
 
4912
+$as_echo X"$ac_file" |
 
4913
+    sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{
 
4914
+           s//\1/
 
4915
+           q
 
4916
+         }
 
4917
+         /^X\(\/\/\)[^/].*/{
 
4918
+           s//\1/
 
4919
+           q
 
4920
+         }
 
4921
+         /^X\(\/\/\)$/{
 
4922
+           s//\1/
 
4923
+           q
 
4924
+         }
 
4925
+         /^X\(\/\).*/{
 
4926
+           s//\1/
 
4927
+           q
 
4928
+         }
 
4929
+         s/.*/./; q'`
 
4930
+  as_dir="$ac_dir"; as_fn_mkdir_p
 
4931
+  ac_builddir=.
 
4932
+
 
4933
+case "$ac_dir" in
 
4934
+.) ac_dir_suffix= ac_top_builddir_sub=. ac_top_build_prefix= ;;
 
4935
+*)
 
4936
+  ac_dir_suffix=/`$as_echo "$ac_dir" | sed 's|^\.[\\/]||'`
 
4937
+  # A ".." for each directory in $ac_dir_suffix.
 
4938
+  ac_top_builddir_sub=`$as_echo "$ac_dir_suffix" | sed 's|/[^\\/]*|/..|g;s|/||'`
 
4939
+  case $ac_top_builddir_sub in
 
4940
+  "") ac_top_builddir_sub=. ac_top_build_prefix= ;;
 
4941
+  *)  ac_top_build_prefix=$ac_top_builddir_sub/ ;;
 
4942
+  esac ;;
 
4943
+esac
 
4944
+ac_abs_top_builddir=$ac_pwd
 
4945
+ac_abs_builddir=$ac_pwd$ac_dir_suffix
 
4946
+# for backward compatibility:
 
4947
+ac_top_builddir=$ac_top_build_prefix
 
4948
+
 
4949
+case $srcdir in
 
4950
+  .)  # We are building in place.
 
4951
+    ac_srcdir=.
 
4952
+    ac_top_srcdir=$ac_top_builddir_sub
 
4953
+    ac_abs_top_srcdir=$ac_pwd ;;
 
4954
+  [\\/]* | ?:[\\/]* )  # Absolute name.
 
4955
+    ac_srcdir=$srcdir$ac_dir_suffix;
 
4956
+    ac_top_srcdir=$srcdir
 
4957
+    ac_abs_top_srcdir=$srcdir ;;
 
4958
+  *) # Relative name.
 
4959
+    ac_srcdir=$ac_top_build_prefix$srcdir$ac_dir_suffix
 
4960
+    ac_top_srcdir=$ac_top_build_prefix$srcdir
 
4961
+    ac_abs_top_srcdir=$ac_pwd/$srcdir ;;
 
4962
+esac
 
4963
+ac_abs_srcdir=$ac_abs_top_srcdir$ac_dir_suffix
 
4964
+
 
4965
+
 
4966
+  case $ac_mode in
 
4967
+  :F)
 
4968
+  #
 
4969
+  # CONFIG_FILE
 
4970
+  #
 
4971
+
 
4972
+  case $INSTALL in
 
4973
+  [\\/$]* | ?:[\\/]* ) ac_INSTALL=$INSTALL ;;
 
4974
+  *) ac_INSTALL=$ac_top_build_prefix$INSTALL ;;
 
4975
+  esac
 
4976
+  ac_MKDIR_P=$MKDIR_P
 
4977
+  case $MKDIR_P in
 
4978
+  [\\/$]* | ?:[\\/]* ) ;;
 
4979
+  */*) ac_MKDIR_P=$ac_top_build_prefix$MKDIR_P ;;
 
4980
+  esac
 
4981
+_ACEOF
 
4982
+
 
4983
+cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1
 
4984
+# If the template does not know about datarootdir, expand it.
 
4985
+# FIXME: This hack should be removed a few years after 2.60.
 
4986
+ac_datarootdir_hack=; ac_datarootdir_seen=
 
4987
+ac_sed_dataroot='
 
4988
+/datarootdir/ {
 
4989
+  p
 
4990
+  q
 
4991
+}
 
4992
+/@datadir@/p
 
4993
+/@docdir@/p
 
4994
+/@infodir@/p
 
4995
+/@localedir@/p
 
4996
+/@mandir@/p'
 
4997
+case `eval "sed -n \"\$ac_sed_dataroot\" $ac_file_inputs"` in
 
4998
+*datarootdir*) ac_datarootdir_seen=yes;;
 
4999
+*@datadir@*|*@docdir@*|*@infodir@*|*@localedir@*|*@mandir@*)
 
5000
+  { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: $ac_file_inputs seems to ignore the --datarootdir setting" >&5
 
5001
+$as_echo "$as_me: WARNING: $ac_file_inputs seems to ignore the --datarootdir setting" >&2;}
 
5002
+_ACEOF
 
5003
+cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1
 
5004
+  ac_datarootdir_hack='
 
5005
+  s&@datadir@&$datadir&g
 
5006
+  s&@docdir@&$docdir&g
 
5007
+  s&@infodir@&$infodir&g
 
5008
+  s&@localedir@&$localedir&g
 
5009
+  s&@mandir@&$mandir&g
 
5010
+  s&\\\${datarootdir}&$datarootdir&g' ;;
 
5011
+esac
 
5012
+_ACEOF
 
5013
+
 
5014
+# Neutralize VPATH when `$srcdir' = `.'.
 
5015
+# Shell code in configure.ac might set extrasub.
 
5016
+# FIXME: do we really want to maintain this feature?
 
5017
+cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1
 
5018
+ac_sed_extra="$ac_vpsub
 
5019
+$extrasub
 
5020
+_ACEOF
 
5021
+cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1
 
5022
+:t
 
5023
+/@[a-zA-Z_][a-zA-Z_0-9]*@/!b
 
5024
+s|@configure_input@|$ac_sed_conf_input|;t t
 
5025
+s&@top_builddir@&$ac_top_builddir_sub&;t t
 
5026
+s&@top_build_prefix@&$ac_top_build_prefix&;t t
 
5027
+s&@srcdir@&$ac_srcdir&;t t
 
5028
+s&@abs_srcdir@&$ac_abs_srcdir&;t t
 
5029
+s&@top_srcdir@&$ac_top_srcdir&;t t
 
5030
+s&@abs_top_srcdir@&$ac_abs_top_srcdir&;t t
 
5031
+s&@builddir@&$ac_builddir&;t t
 
5032
+s&@abs_builddir@&$ac_abs_builddir&;t t
 
5033
+s&@abs_top_builddir@&$ac_abs_top_builddir&;t t
 
5034
+s&@INSTALL@&$ac_INSTALL&;t t
 
5035
+s&@MKDIR_P@&$ac_MKDIR_P&;t t
 
5036
+$ac_datarootdir_hack
 
5037
+"
 
5038
+eval sed \"\$ac_sed_extra\" "$ac_file_inputs" | $AWK -f "$ac_tmp/subs.awk" \
 
5039
+  >$ac_tmp/out || as_fn_error $? "could not create $ac_file" "$LINENO" 5
 
5040
+
 
5041
+test -z "$ac_datarootdir_hack$ac_datarootdir_seen" &&
 
5042
+  { ac_out=`sed -n '/\${datarootdir}/p' "$ac_tmp/out"`; test -n "$ac_out"; } &&
 
5043
+  { ac_out=`sed -n '/^[         ]*datarootdir[  ]*:*=/p' \
 
5044
+      "$ac_tmp/out"`; test -z "$ac_out"; } &&
 
5045
+  { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: $ac_file contains a reference to the variable \`datarootdir'
 
5046
+which seems to be undefined.  Please make sure it is defined" >&5
 
5047
+$as_echo "$as_me: WARNING: $ac_file contains a reference to the variable \`datarootdir'
 
5048
+which seems to be undefined.  Please make sure it is defined" >&2;}
 
5049
+
 
5050
+  rm -f "$ac_tmp/stdin"
 
5051
+  case $ac_file in
 
5052
+  -) cat "$ac_tmp/out" && rm -f "$ac_tmp/out";;
 
5053
+  *) rm -f "$ac_file" && mv "$ac_tmp/out" "$ac_file";;
 
5054
+  esac \
 
5055
+  || as_fn_error $? "could not create $ac_file" "$LINENO" 5
 
5056
+ ;;
 
5057
+  
 
5058
+  
 
5059
+  :C)  { $as_echo "$as_me:${as_lineno-$LINENO}: executing $ac_file commands" >&5
 
5060
+$as_echo "$as_me: executing $ac_file commands" >&6;}
 
5061
+ ;;
 
5062
+  esac
 
5063
+
 
5064
+
 
5065
+  case $ac_file$ac_mode in
 
5066
+    "depfiles":C) test x"$AMDEP_TRUE" != x"" || {
 
5067
+  # Autoconf 2.62 quotes --file arguments for eval, but not when files
 
5068
+  # are listed without --file.  Let's play safe and only enable the eval
 
5069
+  # if we detect the quoting.
 
5070
+  case $CONFIG_FILES in
 
5071
+  *\'*) eval set x "$CONFIG_FILES" ;;
 
5072
+  *)   set x $CONFIG_FILES ;;
 
5073
+  esac
 
5074
+  shift
 
5075
+  for mf
 
5076
+  do
 
5077
+    # Strip MF so we end up with the name of the file.
 
5078
+    mf=`echo "$mf" | sed -e 's/:.*$//'`
 
5079
+    # Check whether this is an Automake generated Makefile or not.
 
5080
+    # We used to match only the files named `Makefile.in', but
 
5081
+    # some people rename them; so instead we look at the file content.
 
5082
+    # Grep'ing the first line is not enough: some people post-process
 
5083
+    # each Makefile.in and add a new line on top of each file to say so.
 
5084
+    # Grep'ing the whole file is not good either: AIX grep has a line
 
5085
+    # limit of 2048, but all sed's we know have understand at least 4000.
 
5086
+    if sed -n 's,^#.*generated by automake.*,X,p' "$mf" | grep X >/dev/null 2>&1; then
 
5087
+      dirpart=`$as_dirname -- "$mf" ||
 
5088
+$as_expr X"$mf" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \
 
5089
+        X"$mf" : 'X\(//\)[^/]' \| \
 
5090
+        X"$mf" : 'X\(//\)$' \| \
 
5091
+        X"$mf" : 'X\(/\)' \| . 2>/dev/null ||
 
5092
+$as_echo X"$mf" |
 
5093
+    sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{
 
5094
+           s//\1/
 
5095
+           q
 
5096
+         }
 
5097
+         /^X\(\/\/\)[^/].*/{
 
5098
+           s//\1/
 
5099
+           q
 
5100
+         }
 
5101
+         /^X\(\/\/\)$/{
 
5102
+           s//\1/
 
5103
+           q
 
5104
+         }
 
5105
+         /^X\(\/\).*/{
 
5106
+           s//\1/
 
5107
+           q
 
5108
+         }
 
5109
+         s/.*/./; q'`
 
5110
+    else
 
5111
+      continue
 
5112
+    fi
 
5113
+    # Extract the definition of DEPDIR, am__include, and am__quote
 
5114
+    # from the Makefile without running `make'.
 
5115
+    DEPDIR=`sed -n 's/^DEPDIR = //p' < "$mf"`
 
5116
+    test -z "$DEPDIR" && continue
 
5117
+    am__include=`sed -n 's/^am__include = //p' < "$mf"`
 
5118
+    test -z "am__include" && continue
 
5119
+    am__quote=`sed -n 's/^am__quote = //p' < "$mf"`
 
5120
+    # When using ansi2knr, U may be empty or an underscore; expand it
 
5121
+    U=`sed -n 's/^U = //p' < "$mf"`
 
5122
+    # Find all dependency output files, they are included files with
 
5123
+    # $(DEPDIR) in their names.  We invoke sed twice because it is the
 
5124
+    # simplest approach to changing $(DEPDIR) to its actual value in the
 
5125
+    # expansion.
 
5126
+    for file in `sed -n "
 
5127
+      s/^$am__include $am__quote\(.*(DEPDIR).*\)$am__quote"'$/\1/p' <"$mf" | \
 
5128
+        sed -e 's/\$(DEPDIR)/'"$DEPDIR"'/g' -e 's/\$U/'"$U"'/g'`; do
 
5129
+      # Make sure the directory exists.
 
5130
+      test -f "$dirpart/$file" && continue
 
5131
+      fdir=`$as_dirname -- "$file" ||
 
5132
+$as_expr X"$file" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \
 
5133
+        X"$file" : 'X\(//\)[^/]' \| \
 
5134
+        X"$file" : 'X\(//\)$' \| \
 
5135
+        X"$file" : 'X\(/\)' \| . 2>/dev/null ||
 
5136
+$as_echo X"$file" |
 
5137
+    sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{
 
5138
+           s//\1/
 
5139
+           q
 
5140
+         }
 
5141
+         /^X\(\/\/\)[^/].*/{
 
5142
+           s//\1/
 
5143
+           q
 
5144
+         }
 
5145
+         /^X\(\/\/\)$/{
 
5146
+           s//\1/
 
5147
+           q
 
5148
+         }
 
5149
+         /^X\(\/\).*/{
 
5150
+           s//\1/
 
5151
+           q
 
5152
+         }
 
5153
+         s/.*/./; q'`
 
5154
+      as_dir=$dirpart/$fdir; as_fn_mkdir_p
 
5155
+      # echo "creating $dirpart/$file"
 
5156
+      echo '# dummy' > "$dirpart/$file"
 
5157
+    done
 
5158
+  done
 
5159
+}
 
5160
+ ;;
 
5161
+
 
5162
+  esac
 
5163
+done # for ac_tag
 
5164
+
 
5165
+
 
5166
+as_fn_exit 0
 
5167
+_ACEOF
 
5168
+ac_clean_files=$ac_clean_files_save
 
5169
+
 
5170
+test $ac_write_fail = 0 ||
 
5171
+  as_fn_error $? "write failure creating $CONFIG_STATUS" "$LINENO" 5
 
5172
+
 
5173
+
 
5174
+# configure is writing to config.log, and then calls config.status.
 
5175
+# config.status does its own redirection, appending to config.log.
 
5176
+# Unfortunately, on DOS this fails, as config.log is still kept open
 
5177
+# by configure, so config.status won't be able to write to it; its
 
5178
+# output is simply discarded.  So we exec the FD to /dev/null,
 
5179
+# effectively closing config.log, so it can be properly (re)opened and
 
5180
+# appended to by config.status.  When coming back to configure, we
 
5181
+# need to make the FD available again.
 
5182
+if test "$no_create" != yes; then
 
5183
+  ac_cs_success=:
 
5184
+  ac_config_status_args=
 
5185
+  test "$silent" = yes &&
 
5186
+    ac_config_status_args="$ac_config_status_args --quiet"
 
5187
+  exec 5>/dev/null
 
5188
+  $SHELL $CONFIG_STATUS $ac_config_status_args || ac_cs_success=false
 
5189
+  exec 5>>config.log
 
5190
+  # Use ||, not &&, to avoid exiting from the if with $? = 1, which
 
5191
+  # would make configure fail if this is the last instruction.
 
5192
+  $ac_cs_success || as_fn_exit 1
 
5193
+fi
 
5194
+if test -n "$ac_unrecognized_opts" && test "$enable_option_checking" != no; then
 
5195
+  { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: unrecognized options: $ac_unrecognized_opts" >&5
 
5196
+$as_echo "$as_me: WARNING: unrecognized options: $ac_unrecognized_opts" >&2;}
 
5197
+fi
 
5198
+
 
5199
+
 
5200
diff -Nur -x '*.orig' -x '*~' fcoe-utils-1.0.9//autom4te.cache/output.1 fcoe-utils-1.0.9.new//autom4te.cache/output.1
 
5201
--- fcoe-utils-1.0.9//autom4te.cache/output.1   1969-12-31 19:00:00.000000000 -0500
 
5202
+++ fcoe-utils-1.0.9.new//autom4te.cache/output.1       2011-09-14 11:57:05.000000000 -0400
 
5203
@@ -0,0 +1,5049 @@
 
5204
+@%:@! /bin/sh
 
5205
+@%:@ Guess values for system-dependent variables and create Makefiles.
 
5206
+@%:@ Generated by GNU Autoconf 2.68 for fcoe-utils 1.0.9.
 
5207
+@%:@
 
5208
+@%:@ Report bugs to <devel@open-fcoe.org>.
 
5209
+@%:@ 
 
5210
+@%:@ 
 
5211
+@%:@ Copyright (C) 1992, 1993, 1994, 1995, 1996, 1998, 1999, 2000, 2001,
 
5212
+@%:@ 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010 Free Software
 
5213
+@%:@ Foundation, Inc.
 
5214
+@%:@ 
 
5215
+@%:@ 
 
5216
+@%:@ This configure script is free software; the Free Software Foundation
 
5217
+@%:@ gives unlimited permission to copy, distribute and modify it.
 
5218
+## -------------------- ##
 
5219
+## M4sh Initialization. ##
 
5220
+## -------------------- ##
 
5221
+
 
5222
+# Be more Bourne compatible
 
5223
+DUALCASE=1; export DUALCASE # for MKS sh
 
5224
+if test -n "${ZSH_VERSION+set}" && (emulate sh) >/dev/null 2>&1; then :
 
5225
+  emulate sh
 
5226
+  NULLCMD=:
 
5227
+  # Pre-4.2 versions of Zsh do word splitting on ${1+"$@"}, which
 
5228
+  # is contrary to our usage.  Disable this feature.
 
5229
+  alias -g '${1+"$@"}'='"$@"'
 
5230
+  setopt NO_GLOB_SUBST
 
5231
+else
 
5232
+  case `(set -o) 2>/dev/null` in @%:@(
 
5233
+  *posix*) :
 
5234
+    set -o posix ;; @%:@(
 
5235
+  *) :
 
5236
+     ;;
 
5237
+esac
 
5238
+fi
 
5239
+
 
5240
+
 
5241
+as_nl='
 
5242
+'
 
5243
+export as_nl
 
5244
+# Printing a long string crashes Solaris 7 /usr/bin/printf.
 
5245
+as_echo='\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\'
 
5246
+as_echo=$as_echo$as_echo$as_echo$as_echo$as_echo
 
5247
+as_echo=$as_echo$as_echo$as_echo$as_echo$as_echo$as_echo
 
5248
+# Prefer a ksh shell builtin over an external printf program on Solaris,
 
5249
+# but without wasting forks for bash or zsh.
 
5250
+if test -z "$BASH_VERSION$ZSH_VERSION" \
 
5251
+    && (test "X`print -r -- $as_echo`" = "X$as_echo") 2>/dev/null; then
 
5252
+  as_echo='print -r --'
 
5253
+  as_echo_n='print -rn --'
 
5254
+elif (test "X`printf %s $as_echo`" = "X$as_echo") 2>/dev/null; then
 
5255
+  as_echo='printf %s\n'
 
5256
+  as_echo_n='printf %s'
 
5257
+else
 
5258
+  if test "X`(/usr/ucb/echo -n -n $as_echo) 2>/dev/null`" = "X-n $as_echo"; then
 
5259
+    as_echo_body='eval /usr/ucb/echo -n "$1$as_nl"'
 
5260
+    as_echo_n='/usr/ucb/echo -n'
 
5261
+  else
 
5262
+    as_echo_body='eval expr "X$1" : "X\\(.*\\)"'
 
5263
+    as_echo_n_body='eval
 
5264
+      arg=$1;
 
5265
+      case $arg in @%:@(
 
5266
+      *"$as_nl"*)
 
5267
+       expr "X$arg" : "X\\(.*\\)$as_nl";
 
5268
+       arg=`expr "X$arg" : ".*$as_nl\\(.*\\)"`;;
 
5269
+      esac;
 
5270
+      expr "X$arg" : "X\\(.*\\)" | tr -d "$as_nl"
 
5271
+    '
 
5272
+    export as_echo_n_body
 
5273
+    as_echo_n='sh -c $as_echo_n_body as_echo'
 
5274
+  fi
 
5275
+  export as_echo_body
 
5276
+  as_echo='sh -c $as_echo_body as_echo'
 
5277
+fi
 
5278
+
 
5279
+# The user is always right.
 
5280
+if test "${PATH_SEPARATOR+set}" != set; then
 
5281
+  PATH_SEPARATOR=:
 
5282
+  (PATH='/bin;/bin'; FPATH=$PATH; sh -c :) >/dev/null 2>&1 && {
 
5283
+    (PATH='/bin:/bin'; FPATH=$PATH; sh -c :) >/dev/null 2>&1 ||
 
5284
+      PATH_SEPARATOR=';'
 
5285
+  }
 
5286
+fi
 
5287
+
 
5288
+
 
5289
+# IFS
 
5290
+# We need space, tab and new line, in precisely that order.  Quoting is
 
5291
+# there to prevent editors from complaining about space-tab.
 
5292
+# (If _AS_PATH_WALK were called with IFS unset, it would disable word
 
5293
+# splitting by setting IFS to empty value.)
 
5294
+IFS=" ""       $as_nl"
 
5295
+
 
5296
+# Find who we are.  Look in the path if we contain no directory separator.
 
5297
+as_myself=
 
5298
+case $0 in @%:@((
 
5299
+  *[\\/]* ) as_myself=$0 ;;
 
5300
+  *) as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
 
5301
+for as_dir in $PATH
 
5302
+do
 
5303
+  IFS=$as_save_IFS
 
5304
+  test -z "$as_dir" && as_dir=.
 
5305
+    test -r "$as_dir/$0" && as_myself=$as_dir/$0 && break
 
5306
+  done
 
5307
+IFS=$as_save_IFS
 
5308
+
 
5309
+     ;;
 
5310
+esac
 
5311
+# We did not find ourselves, most probably we were run as `sh COMMAND'
 
5312
+# in which case we are not to be found in the path.
 
5313
+if test "x$as_myself" = x; then
 
5314
+  as_myself=$0
 
5315
+fi
 
5316
+if test ! -f "$as_myself"; then
 
5317
+  $as_echo "$as_myself: error: cannot find myself; rerun with an absolute file name" >&2
 
5318
+  exit 1
 
5319
+fi
 
5320
+
 
5321
+# Unset variables that we do not need and which cause bugs (e.g. in
 
5322
+# pre-3.0 UWIN ksh).  But do not cause bugs in bash 2.01; the "|| exit 1"
 
5323
+# suppresses any "Segmentation fault" message there.  '((' could
 
5324
+# trigger a bug in pdksh 5.2.14.
 
5325
+for as_var in BASH_ENV ENV MAIL MAILPATH
 
5326
+do eval test x\${$as_var+set} = xset \
 
5327
+  && ( (unset $as_var) || exit 1) >/dev/null 2>&1 && unset $as_var || :
 
5328
+done
 
5329
+PS1='$ '
 
5330
+PS2='> '
 
5331
+PS4='+ '
 
5332
+
 
5333
+# NLS nuisances.
 
5334
+LC_ALL=C
 
5335
+export LC_ALL
 
5336
+LANGUAGE=C
 
5337
+export LANGUAGE
 
5338
+
 
5339
+# CDPATH.
 
5340
+(unset CDPATH) >/dev/null 2>&1 && unset CDPATH
 
5341
+
 
5342
+if test "x$CONFIG_SHELL" = x; then
 
5343
+  as_bourne_compatible="if test -n \"\${ZSH_VERSION+set}\" && (emulate sh) >/dev/null 2>&1; then :
 
5344
+  emulate sh
 
5345
+  NULLCMD=:
 
5346
+  # Pre-4.2 versions of Zsh do word splitting on \${1+\"\$@\"}, which
 
5347
+  # is contrary to our usage.  Disable this feature.
 
5348
+  alias -g '\${1+\"\$@\"}'='\"\$@\"'
 
5349
+  setopt NO_GLOB_SUBST
 
5350
+else
 
5351
+  case \`(set -o) 2>/dev/null\` in @%:@(
 
5352
+  *posix*) :
 
5353
+    set -o posix ;; @%:@(
 
5354
+  *) :
 
5355
+     ;;
 
5356
+esac
 
5357
+fi
 
5358
+"
 
5359
+  as_required="as_fn_return () { (exit \$1); }
 
5360
+as_fn_success () { as_fn_return 0; }
 
5361
+as_fn_failure () { as_fn_return 1; }
 
5362
+as_fn_ret_success () { return 0; }
 
5363
+as_fn_ret_failure () { return 1; }
 
5364
+
 
5365
+exitcode=0
 
5366
+as_fn_success || { exitcode=1; echo as_fn_success failed.; }
 
5367
+as_fn_failure && { exitcode=1; echo as_fn_failure succeeded.; }
 
5368
+as_fn_ret_success || { exitcode=1; echo as_fn_ret_success failed.; }
 
5369
+as_fn_ret_failure && { exitcode=1; echo as_fn_ret_failure succeeded.; }
 
5370
+if ( set x; as_fn_ret_success y && test x = \"\$1\" ); then :
 
5371
+  
 
5372
+else
 
5373
+  exitcode=1; echo positional parameters were not saved.
 
5374
+fi
 
5375
+test x\$exitcode = x0 || exit 1"
 
5376
+  as_suggested="  as_lineno_1=";as_suggested=$as_suggested$LINENO;as_suggested=$as_suggested" as_lineno_1a=\$LINENO
 
5377
+  as_lineno_2=";as_suggested=$as_suggested$LINENO;as_suggested=$as_suggested" as_lineno_2a=\$LINENO
 
5378
+  eval 'test \"x\$as_lineno_1'\$as_run'\" != \"x\$as_lineno_2'\$as_run'\" &&
 
5379
+  test \"x\`expr \$as_lineno_1'\$as_run' + 1\`\" = \"x\$as_lineno_2'\$as_run'\"' || exit 1"
 
5380
+  if (eval "$as_required") 2>/dev/null; then :
 
5381
+  as_have_required=yes
 
5382
+else
 
5383
+  as_have_required=no
 
5384
+fi
 
5385
+  if test x$as_have_required = xyes && (eval "$as_suggested") 2>/dev/null; then :
 
5386
+  
 
5387
+else
 
5388
+  as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
 
5389
+as_found=false
 
5390
+for as_dir in /bin$PATH_SEPARATOR/usr/bin$PATH_SEPARATOR$PATH
 
5391
+do
 
5392
+  IFS=$as_save_IFS
 
5393
+  test -z "$as_dir" && as_dir=.
 
5394
+  as_found=:
 
5395
+  case $as_dir in @%:@(
 
5396
+        /*)
 
5397
+          for as_base in sh bash ksh sh5; do
 
5398
+            # Try only shells that exist, to save several forks.
 
5399
+            as_shell=$as_dir/$as_base
 
5400
+            if { test -f "$as_shell" || test -f "$as_shell.exe"; } &&
 
5401
+                   { $as_echo "$as_bourne_compatible""$as_required" | as_run=a "$as_shell"; } 2>/dev/null; then :
 
5402
+  CONFIG_SHELL=$as_shell as_have_required=yes
 
5403
+                  if { $as_echo "$as_bourne_compatible""$as_suggested" | as_run=a "$as_shell"; } 2>/dev/null; then :
 
5404
+  break 2
 
5405
+fi
 
5406
+fi
 
5407
+          done;;
 
5408
+       esac
 
5409
+  as_found=false
 
5410
+done
 
5411
+$as_found || { if { test -f "$SHELL" || test -f "$SHELL.exe"; } &&
 
5412
+             { $as_echo "$as_bourne_compatible""$as_required" | as_run=a "$SHELL"; } 2>/dev/null; then :
 
5413
+  CONFIG_SHELL=$SHELL as_have_required=yes
 
5414
+fi; }
 
5415
+IFS=$as_save_IFS
 
5416
+
 
5417
+
 
5418
+      if test "x$CONFIG_SHELL" != x; then :
 
5419
+  # We cannot yet assume a decent shell, so we have to provide a
 
5420
+       # neutralization value for shells without unset; and this also
 
5421
+       # works around shells that cannot unset nonexistent variables.
 
5422
+       # Preserve -v and -x to the replacement shell.
 
5423
+       BASH_ENV=/dev/null
 
5424
+       ENV=/dev/null
 
5425
+       (unset BASH_ENV) >/dev/null 2>&1 && unset BASH_ENV ENV
 
5426
+       export CONFIG_SHELL
 
5427
+       case $- in @%:@ ((((
 
5428
+         *v*x* | *x*v* ) as_opts=-vx ;;
 
5429
+         *v* ) as_opts=-v ;;
 
5430
+         *x* ) as_opts=-x ;;
 
5431
+         * ) as_opts= ;;
 
5432
+       esac
 
5433
+       exec "$CONFIG_SHELL" $as_opts "$as_myself" ${1+"$@"}
 
5434
+fi
 
5435
+
 
5436
+    if test x$as_have_required = xno; then :
 
5437
+  $as_echo "$0: This script requires a shell more modern than all"
 
5438
+  $as_echo "$0: the shells that I found on your system."
 
5439
+  if test x${ZSH_VERSION+set} = xset ; then
 
5440
+    $as_echo "$0: In particular, zsh $ZSH_VERSION has bugs and should"
 
5441
+    $as_echo "$0: be upgraded to zsh 4.3.4 or later."
 
5442
+  else
 
5443
+    $as_echo "$0: Please tell bug-autoconf@gnu.org and
 
5444
+$0: devel@open-fcoe.org about your system, including any
 
5445
+$0: error possibly output before this message. Then install
 
5446
+$0: a modern shell, or manually run the script under such a
 
5447
+$0: shell if you do have one."
 
5448
+  fi
 
5449
+  exit 1
 
5450
+fi
 
5451
+fi
 
5452
+fi
 
5453
+SHELL=${CONFIG_SHELL-/bin/sh}
 
5454
+export SHELL
 
5455
+# Unset more variables known to interfere with behavior of common tools.
 
5456
+CLICOLOR_FORCE= GREP_OPTIONS=
 
5457
+unset CLICOLOR_FORCE GREP_OPTIONS
 
5458
+
 
5459
+## --------------------- ##
 
5460
+## M4sh Shell Functions. ##
 
5461
+## --------------------- ##
 
5462
+@%:@ as_fn_unset VAR
 
5463
+@%:@ ---------------
 
5464
+@%:@ Portably unset VAR.
 
5465
+as_fn_unset ()
 
5466
+{
 
5467
+  { eval $1=; unset $1;}
 
5468
+}
 
5469
+as_unset=as_fn_unset
 
5470
+
 
5471
+@%:@ as_fn_set_status STATUS
 
5472
+@%:@ -----------------------
 
5473
+@%:@ Set @S|@? to STATUS, without forking.
 
5474
+as_fn_set_status ()
 
5475
+{
 
5476
+  return $1
 
5477
+} @%:@ as_fn_set_status
 
5478
+
 
5479
+@%:@ as_fn_exit STATUS
 
5480
+@%:@ -----------------
 
5481
+@%:@ Exit the shell with STATUS, even in a "trap 0" or "set -e" context.
 
5482
+as_fn_exit ()
 
5483
+{
 
5484
+  set +e
 
5485
+  as_fn_set_status $1
 
5486
+  exit $1
 
5487
+} @%:@ as_fn_exit
 
5488
+
 
5489
+@%:@ as_fn_mkdir_p
 
5490
+@%:@ -------------
 
5491
+@%:@ Create "@S|@as_dir" as a directory, including parents if necessary.
 
5492
+as_fn_mkdir_p ()
 
5493
+{
 
5494
+
 
5495
+  case $as_dir in #(
 
5496
+  -*) as_dir=./$as_dir;;
 
5497
+  esac
 
5498
+  test -d "$as_dir" || eval $as_mkdir_p || {
 
5499
+    as_dirs=
 
5500
+    while :; do
 
5501
+      case $as_dir in #(
 
5502
+      *\'*) as_qdir=`$as_echo "$as_dir" | sed "s/'/'\\\\\\\\''/g"`;; #'(
 
5503
+      *) as_qdir=$as_dir;;
 
5504
+      esac
 
5505
+      as_dirs="'$as_qdir' $as_dirs"
 
5506
+      as_dir=`$as_dirname -- "$as_dir" ||
 
5507
+$as_expr X"$as_dir" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \
 
5508
+        X"$as_dir" : 'X\(//\)[^/]' \| \
 
5509
+        X"$as_dir" : 'X\(//\)$' \| \
 
5510
+        X"$as_dir" : 'X\(/\)' \| . 2>/dev/null ||
 
5511
+$as_echo X"$as_dir" |
 
5512
+    sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{
 
5513
+           s//\1/
 
5514
+           q
 
5515
+         }
 
5516
+         /^X\(\/\/\)[^/].*/{
 
5517
+           s//\1/
 
5518
+           q
 
5519
+         }
 
5520
+         /^X\(\/\/\)$/{
 
5521
+           s//\1/
 
5522
+           q
 
5523
+         }
 
5524
+         /^X\(\/\).*/{
 
5525
+           s//\1/
 
5526
+           q
 
5527
+         }
 
5528
+         s/.*/./; q'`
 
5529
+      test -d "$as_dir" && break
 
5530
+    done
 
5531
+    test -z "$as_dirs" || eval "mkdir $as_dirs"
 
5532
+  } || test -d "$as_dir" || as_fn_error $? "cannot create directory $as_dir"
 
5533
+
 
5534
+
 
5535
+} @%:@ as_fn_mkdir_p
 
5536
+@%:@ as_fn_append VAR VALUE
 
5537
+@%:@ ----------------------
 
5538
+@%:@ Append the text in VALUE to the end of the definition contained in VAR. Take
 
5539
+@%:@ advantage of any shell optimizations that allow amortized linear growth over
 
5540
+@%:@ repeated appends, instead of the typical quadratic growth present in naive
 
5541
+@%:@ implementations.
 
5542
+if (eval "as_var=1; as_var+=2; test x\$as_var = x12") 2>/dev/null; then :
 
5543
+  eval 'as_fn_append ()
 
5544
+  {
 
5545
+    eval $1+=\$2
 
5546
+  }'
 
5547
+else
 
5548
+  as_fn_append ()
 
5549
+  {
 
5550
+    eval $1=\$$1\$2
 
5551
+  }
 
5552
+fi # as_fn_append
 
5553
+
 
5554
+@%:@ as_fn_arith ARG...
 
5555
+@%:@ ------------------
 
5556
+@%:@ Perform arithmetic evaluation on the ARGs, and store the result in the
 
5557
+@%:@ global @S|@as_val. Take advantage of shells that can avoid forks. The arguments
 
5558
+@%:@ must be portable across @S|@(()) and expr.
 
5559
+if (eval "test \$(( 1 + 1 )) = 2") 2>/dev/null; then :
 
5560
+  eval 'as_fn_arith ()
 
5561
+  {
 
5562
+    as_val=$(( $* ))
 
5563
+  }'
 
5564
+else
 
5565
+  as_fn_arith ()
 
5566
+  {
 
5567
+    as_val=`expr "$@" || test $? -eq 1`
 
5568
+  }
 
5569
+fi # as_fn_arith
 
5570
+
 
5571
+
 
5572
+@%:@ as_fn_error STATUS ERROR [LINENO LOG_FD]
 
5573
+@%:@ ----------------------------------------
 
5574
+@%:@ Output "`basename @S|@0`: error: ERROR" to stderr. If LINENO and LOG_FD are
 
5575
+@%:@ provided, also output the error to LOG_FD, referencing LINENO. Then exit the
 
5576
+@%:@ script with STATUS, using 1 if that was 0.
 
5577
+as_fn_error ()
 
5578
+{
 
5579
+  as_status=$1; test $as_status -eq 0 && as_status=1
 
5580
+  if test "$4"; then
 
5581
+    as_lineno=${as_lineno-"$3"} as_lineno_stack=as_lineno_stack=$as_lineno_stack
 
5582
+    $as_echo "$as_me:${as_lineno-$LINENO}: error: $2" >&$4
 
5583
+  fi
 
5584
+  $as_echo "$as_me: error: $2" >&2
 
5585
+  as_fn_exit $as_status
 
5586
+} @%:@ as_fn_error
 
5587
+
 
5588
+if expr a : '\(a\)' >/dev/null 2>&1 &&
 
5589
+   test "X`expr 00001 : '.*\(...\)'`" = X001; then
 
5590
+  as_expr=expr
 
5591
+else
 
5592
+  as_expr=false
 
5593
+fi
 
5594
+
 
5595
+if (basename -- /) >/dev/null 2>&1 && test "X`basename -- / 2>&1`" = "X/"; then
 
5596
+  as_basename=basename
 
5597
+else
 
5598
+  as_basename=false
 
5599
+fi
 
5600
+
 
5601
+if (as_dir=`dirname -- /` && test "X$as_dir" = X/) >/dev/null 2>&1; then
 
5602
+  as_dirname=dirname
 
5603
+else
 
5604
+  as_dirname=false
 
5605
+fi
 
5606
+
 
5607
+as_me=`$as_basename -- "$0" ||
 
5608
+$as_expr X/"$0" : '.*/\([^/][^/]*\)/*$' \| \
 
5609
+        X"$0" : 'X\(//\)$' \| \
 
5610
+        X"$0" : 'X\(/\)' \| . 2>/dev/null ||
 
5611
+$as_echo X/"$0" |
 
5612
+    sed '/^.*\/\([^/][^/]*\)\/*$/{
 
5613
+           s//\1/
 
5614
+           q
 
5615
+         }
 
5616
+         /^X\/\(\/\/\)$/{
 
5617
+           s//\1/
 
5618
+           q
 
5619
+         }
 
5620
+         /^X\/\(\/\).*/{
 
5621
+           s//\1/
 
5622
+           q
 
5623
+         }
 
5624
+         s/.*/./; q'`
 
5625
+
 
5626
+# Avoid depending upon Character Ranges.
 
5627
+as_cr_letters='abcdefghijklmnopqrstuvwxyz'
 
5628
+as_cr_LETTERS='ABCDEFGHIJKLMNOPQRSTUVWXYZ'
 
5629
+as_cr_Letters=$as_cr_letters$as_cr_LETTERS
 
5630
+as_cr_digits='0123456789'
 
5631
+as_cr_alnum=$as_cr_Letters$as_cr_digits
 
5632
+
 
5633
+
 
5634
+  as_lineno_1=$LINENO as_lineno_1a=$LINENO
 
5635
+  as_lineno_2=$LINENO as_lineno_2a=$LINENO
 
5636
+  eval 'test "x$as_lineno_1'$as_run'" != "x$as_lineno_2'$as_run'" &&
 
5637
+  test "x`expr $as_lineno_1'$as_run' + 1`" = "x$as_lineno_2'$as_run'"' || {
 
5638
+  # Blame Lee E. McMahon (1931-1989) for sed's syntax.  :-)
 
5639
+  sed -n '
 
5640
+    p
 
5641
+    /[$]LINENO/=
 
5642
+  ' <$as_myself |
 
5643
+    sed '
 
5644
+      s/[$]LINENO.*/&-/
 
5645
+      t lineno
 
5646
+      b
 
5647
+      :lineno
 
5648
+      N
 
5649
+      :loop
 
5650
+      s/[$]LINENO\([^'$as_cr_alnum'_].*\n\)\(.*\)/\2\1\2/
 
5651
+      t loop
 
5652
+      s/-\n.*//
 
5653
+    ' >$as_me.lineno &&
 
5654
+  chmod +x "$as_me.lineno" ||
 
5655
+    { $as_echo "$as_me: error: cannot create $as_me.lineno; rerun with a POSIX shell" >&2; as_fn_exit 1; }
 
5656
+
 
5657
+  # Don't try to exec as it changes $[0], causing all sort of problems
 
5658
+  # (the dirname of $[0] is not the place where we might find the
 
5659
+  # original and so on.  Autoconf is especially sensitive to this).
 
5660
+  . "./$as_me.lineno"
 
5661
+  # Exit status is that of the last command.
 
5662
+  exit
 
5663
+}
 
5664
+
 
5665
+ECHO_C= ECHO_N= ECHO_T=
 
5666
+case `echo -n x` in @%:@(((((
 
5667
+-n*)
 
5668
+  case `echo 'xy\c'` in
 
5669
+  *c*) ECHO_T='        ';;     # ECHO_T is single tab character.
 
5670
+  xy)  ECHO_C='\c';;
 
5671
+  *)   echo `echo ksh88 bug on AIX 6.1` > /dev/null
 
5672
+       ECHO_T='        ';;
 
5673
+  esac;;
 
5674
+*)
 
5675
+  ECHO_N='-n';;
 
5676
+esac
 
5677
+
 
5678
+rm -f conf$$ conf$$.exe conf$$.file
 
5679
+if test -d conf$$.dir; then
 
5680
+  rm -f conf$$.dir/conf$$.file
 
5681
+else
 
5682
+  rm -f conf$$.dir
 
5683
+  mkdir conf$$.dir 2>/dev/null
 
5684
+fi
 
5685
+if (echo >conf$$.file) 2>/dev/null; then
 
5686
+  if ln -s conf$$.file conf$$ 2>/dev/null; then
 
5687
+    as_ln_s='ln -s'
 
5688
+    # ... but there are two gotchas:
 
5689
+    # 1) On MSYS, both `ln -s file dir' and `ln file dir' fail.
 
5690
+    # 2) DJGPP < 2.04 has no symlinks; `ln -s' creates a wrapper executable.
 
5691
+    # In both cases, we have to default to `cp -p'.
 
5692
+    ln -s conf$$.file conf$$.dir 2>/dev/null && test ! -f conf$$.exe ||
 
5693
+      as_ln_s='cp -p'
 
5694
+  elif ln conf$$.file conf$$ 2>/dev/null; then
 
5695
+    as_ln_s=ln
 
5696
+  else
 
5697
+    as_ln_s='cp -p'
 
5698
+  fi
 
5699
+else
 
5700
+  as_ln_s='cp -p'
 
5701
+fi
 
5702
+rm -f conf$$ conf$$.exe conf$$.dir/conf$$.file conf$$.file
 
5703
+rmdir conf$$.dir 2>/dev/null
 
5704
+
 
5705
+if mkdir -p . 2>/dev/null; then
 
5706
+  as_mkdir_p='mkdir -p "$as_dir"'
 
5707
+else
 
5708
+  test -d ./-p && rmdir ./-p
 
5709
+  as_mkdir_p=false
 
5710
+fi
 
5711
+
 
5712
+if test -x / >/dev/null 2>&1; then
 
5713
+  as_test_x='test -x'
 
5714
+else
 
5715
+  if ls -dL / >/dev/null 2>&1; then
 
5716
+    as_ls_L_option=L
 
5717
+  else
 
5718
+    as_ls_L_option=
 
5719
+  fi
 
5720
+  as_test_x='
 
5721
+    eval sh -c '\''
 
5722
+      if test -d "$1"; then
 
5723
+       test -d "$1/.";
 
5724
+      else
 
5725
+       case $1 in @%:@(
 
5726
+       -*)set "./$1";;
 
5727
+       esac;
 
5728
+       case `ls -ld'$as_ls_L_option' "$1" 2>/dev/null` in @%:@((
 
5729
+       ???[sx]*):;;*)false;;esac;fi
 
5730
+    '\'' sh
 
5731
+  '
 
5732
+fi
 
5733
+as_executable_p=$as_test_x
 
5734
+
 
5735
+# Sed expression to map a string onto a valid CPP name.
 
5736
+as_tr_cpp="eval sed 'y%*$as_cr_letters%P$as_cr_LETTERS%;s%[^_$as_cr_alnum]%_%g'"
 
5737
+
 
5738
+# Sed expression to map a string onto a valid variable name.
 
5739
+as_tr_sh="eval sed 'y%*+%pp%;s%[^_$as_cr_alnum]%_%g'"
 
5740
+
 
5741
+
 
5742
+test -n "$DJDIR" || exec 7<&0 </dev/null
 
5743
+exec 6>&1
 
5744
+
 
5745
+# Name of the host.
 
5746
+# hostname on some systems (SVR3.2, old GNU/Linux) returns a bogus exit status,
 
5747
+# so uname gets run too.
 
5748
+ac_hostname=`(hostname || uname -n) 2>/dev/null | sed 1q`
 
5749
+
 
5750
+#
 
5751
+# Initializations.
 
5752
+#
 
5753
+ac_default_prefix=/usr/local
 
5754
+ac_clean_files=
 
5755
+ac_config_libobj_dir=.
 
5756
+LIB@&t@OBJS=
 
5757
+cross_compiling=no
 
5758
+subdirs=
 
5759
+MFLAGS=
 
5760
+MAKEFLAGS=
 
5761
+
 
5762
+# Identity of this package.
 
5763
+PACKAGE_NAME='fcoe-utils'
 
5764
+PACKAGE_TARNAME='fcoe-utils'
 
5765
+PACKAGE_VERSION='1.0.9'
 
5766
+PACKAGE_STRING='fcoe-utils 1.0.9'
 
5767
+PACKAGE_BUGREPORT='devel@open-fcoe.org'
 
5768
+PACKAGE_URL=''
 
5769
+
 
5770
+ac_subst_vars='am__EXEEXT_FALSE
 
5771
+am__EXEEXT_TRUE
 
5772
+LTLIBOBJS
 
5773
+LIB@&t@OBJS
 
5774
+DCBD_LIBS
 
5775
+DCBD_CFLAGS
 
5776
+WITH_DCB_FALSE
 
5777
+WITH_DCB_TRUE
 
5778
+HBAAPI_LIBS
 
5779
+HBAAPI_CFLAGS
 
5780
+PKG_CONFIG_LIBDIR
 
5781
+PKG_CONFIG_PATH
 
5782
+PKG_CONFIG
 
5783
+am__fastdepCC_FALSE
 
5784
+am__fastdepCC_TRUE
 
5785
+CCDEPMODE
 
5786
+AMDEPBACKSLASH
 
5787
+AMDEP_FALSE
 
5788
+AMDEP_TRUE
 
5789
+am__quote
 
5790
+am__include
 
5791
+DEPDIR
 
5792
+OBJEXT
 
5793
+EXEEXT
 
5794
+ac_ct_CC
 
5795
+CPPFLAGS
 
5796
+LDFLAGS
 
5797
+CFLAGS
 
5798
+CC
 
5799
+am__untar
 
5800
+am__tar
 
5801
+AMTAR
 
5802
+am__leading_dot
 
5803
+SET_MAKE
 
5804
+AWK
 
5805
+mkdir_p
 
5806
+MKDIR_P
 
5807
+INSTALL_STRIP_PROGRAM
 
5808
+STRIP
 
5809
+install_sh
 
5810
+MAKEINFO
 
5811
+AUTOHEADER
 
5812
+AUTOMAKE
 
5813
+AUTOCONF
 
5814
+ACLOCAL
 
5815
+VERSION
 
5816
+PACKAGE
 
5817
+CYGPATH_W
 
5818
+am__isrc
 
5819
+INSTALL_DATA
 
5820
+INSTALL_SCRIPT
 
5821
+INSTALL_PROGRAM
 
5822
+target_alias
 
5823
+host_alias
 
5824
+build_alias
 
5825
+LIBS
 
5826
+ECHO_T
 
5827
+ECHO_N
 
5828
+ECHO_C
 
5829
+DEFS
 
5830
+mandir
 
5831
+localedir
 
5832
+libdir
 
5833
+psdir
 
5834
+pdfdir
 
5835
+dvidir
 
5836
+htmldir
 
5837
+infodir
 
5838
+docdir
 
5839
+oldincludedir
 
5840
+includedir
 
5841
+localstatedir
 
5842
+sharedstatedir
 
5843
+sysconfdir
 
5844
+datadir
 
5845
+datarootdir
 
5846
+libexecdir
 
5847
+sbindir
 
5848
+bindir
 
5849
+program_transform_name
 
5850
+prefix
 
5851
+exec_prefix
 
5852
+PACKAGE_URL
 
5853
+PACKAGE_BUGREPORT
 
5854
+PACKAGE_STRING
 
5855
+PACKAGE_VERSION
 
5856
+PACKAGE_TARNAME
 
5857
+PACKAGE_NAME
 
5858
+PATH_SEPARATOR
 
5859
+SHELL'
 
5860
+ac_subst_files=''
 
5861
+ac_user_opts='
 
5862
+enable_option_checking
 
5863
+enable_dependency_tracking
 
5864
+with_dcb
 
5865
+'
 
5866
+      ac_precious_vars='build_alias
 
5867
+host_alias
 
5868
+target_alias
 
5869
+CC
 
5870
+CFLAGS
 
5871
+LDFLAGS
 
5872
+LIBS
 
5873
+CPPFLAGS
 
5874
+PKG_CONFIG
 
5875
+PKG_CONFIG_PATH
 
5876
+PKG_CONFIG_LIBDIR
 
5877
+HBAAPI_CFLAGS
 
5878
+HBAAPI_LIBS
 
5879
+DCBD_CFLAGS
 
5880
+DCBD_LIBS'
 
5881
+
 
5882
+
 
5883
+# Initialize some variables set by options.
 
5884
+ac_init_help=
 
5885
+ac_init_version=false
 
5886
+ac_unrecognized_opts=
 
5887
+ac_unrecognized_sep=
 
5888
+# The variables have the same names as the options, with
 
5889
+# dashes changed to underlines.
 
5890
+cache_file=/dev/null
 
5891
+exec_prefix=NONE
 
5892
+no_create=
 
5893
+no_recursion=
 
5894
+prefix=NONE
 
5895
+program_prefix=NONE
 
5896
+program_suffix=NONE
 
5897
+program_transform_name=s,x,x,
 
5898
+silent=
 
5899
+site=
 
5900
+srcdir=
 
5901
+verbose=
 
5902
+x_includes=NONE
 
5903
+x_libraries=NONE
 
5904
+
 
5905
+# Installation directory options.
 
5906
+# These are left unexpanded so users can "make install exec_prefix=/foo"
 
5907
+# and all the variables that are supposed to be based on exec_prefix
 
5908
+# by default will actually change.
 
5909
+# Use braces instead of parens because sh, perl, etc. also accept them.
 
5910
+# (The list follows the same order as the GNU Coding Standards.)
 
5911
+bindir='${exec_prefix}/bin'
 
5912
+sbindir='${exec_prefix}/sbin'
 
5913
+libexecdir='${exec_prefix}/libexec'
 
5914
+datarootdir='${prefix}/share'
 
5915
+datadir='${datarootdir}'
 
5916
+sysconfdir='${prefix}/etc'
 
5917
+sharedstatedir='${prefix}/com'
 
5918
+localstatedir='${prefix}/var'
 
5919
+includedir='${prefix}/include'
 
5920
+oldincludedir='/usr/include'
 
5921
+docdir='${datarootdir}/doc/${PACKAGE_TARNAME}'
 
5922
+infodir='${datarootdir}/info'
 
5923
+htmldir='${docdir}'
 
5924
+dvidir='${docdir}'
 
5925
+pdfdir='${docdir}'
 
5926
+psdir='${docdir}'
 
5927
+libdir='${exec_prefix}/lib'
 
5928
+localedir='${datarootdir}/locale'
 
5929
+mandir='${datarootdir}/man'
 
5930
+
 
5931
+ac_prev=
 
5932
+ac_dashdash=
 
5933
+for ac_option
 
5934
+do
 
5935
+  # If the previous option needs an argument, assign it.
 
5936
+  if test -n "$ac_prev"; then
 
5937
+    eval $ac_prev=\$ac_option
 
5938
+    ac_prev=
 
5939
+    continue
 
5940
+  fi
 
5941
+
 
5942
+  case $ac_option in
 
5943
+  *=?*) ac_optarg=`expr "X$ac_option" : '[^=]*=\(.*\)'` ;;
 
5944
+  *=)   ac_optarg= ;;
 
5945
+  *)    ac_optarg=yes ;;
 
5946
+  esac
 
5947
+
 
5948
+  # Accept the important Cygnus configure options, so we can diagnose typos.
 
5949
+
 
5950
+  case $ac_dashdash$ac_option in
 
5951
+  --)
 
5952
+    ac_dashdash=yes ;;
 
5953
+
 
5954
+  -bindir | --bindir | --bindi | --bind | --bin | --bi)
 
5955
+    ac_prev=bindir ;;
 
5956
+  -bindir=* | --bindir=* | --bindi=* | --bind=* | --bin=* | --bi=*)
 
5957
+    bindir=$ac_optarg ;;
 
5958
+
 
5959
+  -build | --build | --buil | --bui | --bu)
 
5960
+    ac_prev=build_alias ;;
 
5961
+  -build=* | --build=* | --buil=* | --bui=* | --bu=*)
 
5962
+    build_alias=$ac_optarg ;;
 
5963
+
 
5964
+  -cache-file | --cache-file | --cache-fil | --cache-fi \
 
5965
+  | --cache-f | --cache- | --cache | --cach | --cac | --ca | --c)
 
5966
+    ac_prev=cache_file ;;
 
5967
+  -cache-file=* | --cache-file=* | --cache-fil=* | --cache-fi=* \
 
5968
+  | --cache-f=* | --cache-=* | --cache=* | --cach=* | --cac=* | --ca=* | --c=*)
 
5969
+    cache_file=$ac_optarg ;;
 
5970
+
 
5971
+  --config-cache | -C)
 
5972
+    cache_file=config.cache ;;
 
5973
+
 
5974
+  -datadir | --datadir | --datadi | --datad)
 
5975
+    ac_prev=datadir ;;
 
5976
+  -datadir=* | --datadir=* | --datadi=* | --datad=*)
 
5977
+    datadir=$ac_optarg ;;
 
5978
+
 
5979
+  -datarootdir | --datarootdir | --datarootdi | --datarootd | --dataroot \
 
5980
+  | --dataroo | --dataro | --datar)
 
5981
+    ac_prev=datarootdir ;;
 
5982
+  -datarootdir=* | --datarootdir=* | --datarootdi=* | --datarootd=* \
 
5983
+  | --dataroot=* | --dataroo=* | --dataro=* | --datar=*)
 
5984
+    datarootdir=$ac_optarg ;;
 
5985
+
 
5986
+  -disable-* | --disable-*)
 
5987
+    ac_useropt=`expr "x$ac_option" : 'x-*disable-\(.*\)'`
 
5988
+    # Reject names that are not valid shell variable names.
 
5989
+    expr "x$ac_useropt" : ".*[^-+._$as_cr_alnum]" >/dev/null &&
 
5990
+      as_fn_error $? "invalid feature name: $ac_useropt"
 
5991
+    ac_useropt_orig=$ac_useropt
 
5992
+    ac_useropt=`$as_echo "$ac_useropt" | sed 's/[-+.]/_/g'`
 
5993
+    case $ac_user_opts in
 
5994
+      *"
 
5995
+"enable_$ac_useropt"
 
5996
+"*) ;;
 
5997
+      *) ac_unrecognized_opts="$ac_unrecognized_opts$ac_unrecognized_sep--disable-$ac_useropt_orig"
 
5998
+        ac_unrecognized_sep=', ';;
 
5999
+    esac
 
6000
+    eval enable_$ac_useropt=no ;;
 
6001
+
 
6002
+  -docdir | --docdir | --docdi | --doc | --do)
 
6003
+    ac_prev=docdir ;;
 
6004
+  -docdir=* | --docdir=* | --docdi=* | --doc=* | --do=*)
 
6005
+    docdir=$ac_optarg ;;
 
6006
+
 
6007
+  -dvidir | --dvidir | --dvidi | --dvid | --dvi | --dv)
 
6008
+    ac_prev=dvidir ;;
 
6009
+  -dvidir=* | --dvidir=* | --dvidi=* | --dvid=* | --dvi=* | --dv=*)
 
6010
+    dvidir=$ac_optarg ;;
 
6011
+
 
6012
+  -enable-* | --enable-*)
 
6013
+    ac_useropt=`expr "x$ac_option" : 'x-*enable-\([^=]*\)'`
 
6014
+    # Reject names that are not valid shell variable names.
 
6015
+    expr "x$ac_useropt" : ".*[^-+._$as_cr_alnum]" >/dev/null &&
 
6016
+      as_fn_error $? "invalid feature name: $ac_useropt"
 
6017
+    ac_useropt_orig=$ac_useropt
 
6018
+    ac_useropt=`$as_echo "$ac_useropt" | sed 's/[-+.]/_/g'`
 
6019
+    case $ac_user_opts in
 
6020
+      *"
 
6021
+"enable_$ac_useropt"
 
6022
+"*) ;;
 
6023
+      *) ac_unrecognized_opts="$ac_unrecognized_opts$ac_unrecognized_sep--enable-$ac_useropt_orig"
 
6024
+        ac_unrecognized_sep=', ';;
 
6025
+    esac
 
6026
+    eval enable_$ac_useropt=\$ac_optarg ;;
 
6027
+
 
6028
+  -exec-prefix | --exec_prefix | --exec-prefix | --exec-prefi \
 
6029
+  | --exec-pref | --exec-pre | --exec-pr | --exec-p | --exec- \
 
6030
+  | --exec | --exe | --ex)
 
6031
+    ac_prev=exec_prefix ;;
 
6032
+  -exec-prefix=* | --exec_prefix=* | --exec-prefix=* | --exec-prefi=* \
 
6033
+  | --exec-pref=* | --exec-pre=* | --exec-pr=* | --exec-p=* | --exec-=* \
 
6034
+  | --exec=* | --exe=* | --ex=*)
 
6035
+    exec_prefix=$ac_optarg ;;
 
6036
+
 
6037
+  -gas | --gas | --ga | --g)
 
6038
+    # Obsolete; use --with-gas.
 
6039
+    with_gas=yes ;;
 
6040
+
 
6041
+  -help | --help | --hel | --he | -h)
 
6042
+    ac_init_help=long ;;
 
6043
+  -help=r* | --help=r* | --hel=r* | --he=r* | -hr*)
 
6044
+    ac_init_help=recursive ;;
 
6045
+  -help=s* | --help=s* | --hel=s* | --he=s* | -hs*)
 
6046
+    ac_init_help=short ;;
 
6047
+
 
6048
+  -host | --host | --hos | --ho)
 
6049
+    ac_prev=host_alias ;;
 
6050
+  -host=* | --host=* | --hos=* | --ho=*)
 
6051
+    host_alias=$ac_optarg ;;
 
6052
+
 
6053
+  -htmldir | --htmldir | --htmldi | --htmld | --html | --htm | --ht)
 
6054
+    ac_prev=htmldir ;;
 
6055
+  -htmldir=* | --htmldir=* | --htmldi=* | --htmld=* | --html=* | --htm=* \
 
6056
+  | --ht=*)
 
6057
+    htmldir=$ac_optarg ;;
 
6058
+
 
6059
+  -includedir | --includedir | --includedi | --included | --include \
 
6060
+  | --includ | --inclu | --incl | --inc)
 
6061
+    ac_prev=includedir ;;
 
6062
+  -includedir=* | --includedir=* | --includedi=* | --included=* | --include=* \
 
6063
+  | --includ=* | --inclu=* | --incl=* | --inc=*)
 
6064
+    includedir=$ac_optarg ;;
 
6065
+
 
6066
+  -infodir | --infodir | --infodi | --infod | --info | --inf)
 
6067
+    ac_prev=infodir ;;
 
6068
+  -infodir=* | --infodir=* | --infodi=* | --infod=* | --info=* | --inf=*)
 
6069
+    infodir=$ac_optarg ;;
 
6070
+
 
6071
+  -libdir | --libdir | --libdi | --libd)
 
6072
+    ac_prev=libdir ;;
 
6073
+  -libdir=* | --libdir=* | --libdi=* | --libd=*)
 
6074
+    libdir=$ac_optarg ;;
 
6075
+
 
6076
+  -libexecdir | --libexecdir | --libexecdi | --libexecd | --libexec \
 
6077
+  | --libexe | --libex | --libe)
 
6078
+    ac_prev=libexecdir ;;
 
6079
+  -libexecdir=* | --libexecdir=* | --libexecdi=* | --libexecd=* | --libexec=* \
 
6080
+  | --libexe=* | --libex=* | --libe=*)
 
6081
+    libexecdir=$ac_optarg ;;
 
6082
+
 
6083
+  -localedir | --localedir | --localedi | --localed | --locale)
 
6084
+    ac_prev=localedir ;;
 
6085
+  -localedir=* | --localedir=* | --localedi=* | --localed=* | --locale=*)
 
6086
+    localedir=$ac_optarg ;;
 
6087
+
 
6088
+  -localstatedir | --localstatedir | --localstatedi | --localstated \
 
6089
+  | --localstate | --localstat | --localsta | --localst | --locals)
 
6090
+    ac_prev=localstatedir ;;
 
6091
+  -localstatedir=* | --localstatedir=* | --localstatedi=* | --localstated=* \
 
6092
+  | --localstate=* | --localstat=* | --localsta=* | --localst=* | --locals=*)
 
6093
+    localstatedir=$ac_optarg ;;
 
6094
+
 
6095
+  -mandir | --mandir | --mandi | --mand | --man | --ma | --m)
 
6096
+    ac_prev=mandir ;;
 
6097
+  -mandir=* | --mandir=* | --mandi=* | --mand=* | --man=* | --ma=* | --m=*)
 
6098
+    mandir=$ac_optarg ;;
 
6099
+
 
6100
+  -nfp | --nfp | --nf)
 
6101
+    # Obsolete; use --without-fp.
 
6102
+    with_fp=no ;;
 
6103
+
 
6104
+  -no-create | --no-create | --no-creat | --no-crea | --no-cre \
 
6105
+  | --no-cr | --no-c | -n)
 
6106
+    no_create=yes ;;
 
6107
+
 
6108
+  -no-recursion | --no-recursion | --no-recursio | --no-recursi \
 
6109
+  | --no-recurs | --no-recur | --no-recu | --no-rec | --no-re | --no-r)
 
6110
+    no_recursion=yes ;;
 
6111
+
 
6112
+  -oldincludedir | --oldincludedir | --oldincludedi | --oldincluded \
 
6113
+  | --oldinclude | --oldinclud | --oldinclu | --oldincl | --oldinc \
 
6114
+  | --oldin | --oldi | --old | --ol | --o)
 
6115
+    ac_prev=oldincludedir ;;
 
6116
+  -oldincludedir=* | --oldincludedir=* | --oldincludedi=* | --oldincluded=* \
 
6117
+  | --oldinclude=* | --oldinclud=* | --oldinclu=* | --oldincl=* | --oldinc=* \
 
6118
+  | --oldin=* | --oldi=* | --old=* | --ol=* | --o=*)
 
6119
+    oldincludedir=$ac_optarg ;;
 
6120
+
 
6121
+  -prefix | --prefix | --prefi | --pref | --pre | --pr | --p)
 
6122
+    ac_prev=prefix ;;
 
6123
+  -prefix=* | --prefix=* | --prefi=* | --pref=* | --pre=* | --pr=* | --p=*)
 
6124
+    prefix=$ac_optarg ;;
 
6125
+
 
6126
+  -program-prefix | --program-prefix | --program-prefi | --program-pref \
 
6127
+  | --program-pre | --program-pr | --program-p)
 
6128
+    ac_prev=program_prefix ;;
 
6129
+  -program-prefix=* | --program-prefix=* | --program-prefi=* \
 
6130
+  | --program-pref=* | --program-pre=* | --program-pr=* | --program-p=*)
 
6131
+    program_prefix=$ac_optarg ;;
 
6132
+
 
6133
+  -program-suffix | --program-suffix | --program-suffi | --program-suff \
 
6134
+  | --program-suf | --program-su | --program-s)
 
6135
+    ac_prev=program_suffix ;;
 
6136
+  -program-suffix=* | --program-suffix=* | --program-suffi=* \
 
6137
+  | --program-suff=* | --program-suf=* | --program-su=* | --program-s=*)
 
6138
+    program_suffix=$ac_optarg ;;
 
6139
+
 
6140
+  -program-transform-name | --program-transform-name \
 
6141
+  | --program-transform-nam | --program-transform-na \
 
6142
+  | --program-transform-n | --program-transform- \
 
6143
+  | --program-transform | --program-transfor \
 
6144
+  | --program-transfo | --program-transf \
 
6145
+  | --program-trans | --program-tran \
 
6146
+  | --progr-tra | --program-tr | --program-t)
 
6147
+    ac_prev=program_transform_name ;;
 
6148
+  -program-transform-name=* | --program-transform-name=* \
 
6149
+  | --program-transform-nam=* | --program-transform-na=* \
 
6150
+  | --program-transform-n=* | --program-transform-=* \
 
6151
+  | --program-transform=* | --program-transfor=* \
 
6152
+  | --program-transfo=* | --program-transf=* \
 
6153
+  | --program-trans=* | --program-tran=* \
 
6154
+  | --progr-tra=* | --program-tr=* | --program-t=*)
 
6155
+    program_transform_name=$ac_optarg ;;
 
6156
+
 
6157
+  -pdfdir | --pdfdir | --pdfdi | --pdfd | --pdf | --pd)
 
6158
+    ac_prev=pdfdir ;;
 
6159
+  -pdfdir=* | --pdfdir=* | --pdfdi=* | --pdfd=* | --pdf=* | --pd=*)
 
6160
+    pdfdir=$ac_optarg ;;
 
6161
+
 
6162
+  -psdir | --psdir | --psdi | --psd | --ps)
 
6163
+    ac_prev=psdir ;;
 
6164
+  -psdir=* | --psdir=* | --psdi=* | --psd=* | --ps=*)
 
6165
+    psdir=$ac_optarg ;;
 
6166
+
 
6167
+  -q | -quiet | --quiet | --quie | --qui | --qu | --q \
 
6168
+  | -silent | --silent | --silen | --sile | --sil)
 
6169
+    silent=yes ;;
 
6170
+
 
6171
+  -sbindir | --sbindir | --sbindi | --sbind | --sbin | --sbi | --sb)
 
6172
+    ac_prev=sbindir ;;
 
6173
+  -sbindir=* | --sbindir=* | --sbindi=* | --sbind=* | --sbin=* \
 
6174
+  | --sbi=* | --sb=*)
 
6175
+    sbindir=$ac_optarg ;;
 
6176
+
 
6177
+  -sharedstatedir | --sharedstatedir | --sharedstatedi \
 
6178
+  | --sharedstated | --sharedstate | --sharedstat | --sharedsta \
 
6179
+  | --sharedst | --shareds | --shared | --share | --shar \
 
6180
+  | --sha | --sh)
 
6181
+    ac_prev=sharedstatedir ;;
 
6182
+  -sharedstatedir=* | --sharedstatedir=* | --sharedstatedi=* \
 
6183
+  | --sharedstated=* | --sharedstate=* | --sharedstat=* | --sharedsta=* \
 
6184
+  | --sharedst=* | --shareds=* | --shared=* | --share=* | --shar=* \
 
6185
+  | --sha=* | --sh=*)
 
6186
+    sharedstatedir=$ac_optarg ;;
 
6187
+
 
6188
+  -site | --site | --sit)
 
6189
+    ac_prev=site ;;
 
6190
+  -site=* | --site=* | --sit=*)
 
6191
+    site=$ac_optarg ;;
 
6192
+
 
6193
+  -srcdir | --srcdir | --srcdi | --srcd | --src | --sr)
 
6194
+    ac_prev=srcdir ;;
 
6195
+  -srcdir=* | --srcdir=* | --srcdi=* | --srcd=* | --src=* | --sr=*)
 
6196
+    srcdir=$ac_optarg ;;
 
6197
+
 
6198
+  -sysconfdir | --sysconfdir | --sysconfdi | --sysconfd | --sysconf \
 
6199
+  | --syscon | --sysco | --sysc | --sys | --sy)
 
6200
+    ac_prev=sysconfdir ;;
 
6201
+  -sysconfdir=* | --sysconfdir=* | --sysconfdi=* | --sysconfd=* | --sysconf=* \
 
6202
+  | --syscon=* | --sysco=* | --sysc=* | --sys=* | --sy=*)
 
6203
+    sysconfdir=$ac_optarg ;;
 
6204
+
 
6205
+  -target | --target | --targe | --targ | --tar | --ta | --t)
 
6206
+    ac_prev=target_alias ;;
 
6207
+  -target=* | --target=* | --targe=* | --targ=* | --tar=* | --ta=* | --t=*)
 
6208
+    target_alias=$ac_optarg ;;
 
6209
+
 
6210
+  -v | -verbose | --verbose | --verbos | --verbo | --verb)
 
6211
+    verbose=yes ;;
 
6212
+
 
6213
+  -version | --version | --versio | --versi | --vers | -V)
 
6214
+    ac_init_version=: ;;
 
6215
+
 
6216
+  -with-* | --with-*)
 
6217
+    ac_useropt=`expr "x$ac_option" : 'x-*with-\([^=]*\)'`
 
6218
+    # Reject names that are not valid shell variable names.
 
6219
+    expr "x$ac_useropt" : ".*[^-+._$as_cr_alnum]" >/dev/null &&
 
6220
+      as_fn_error $? "invalid package name: $ac_useropt"
 
6221
+    ac_useropt_orig=$ac_useropt
 
6222
+    ac_useropt=`$as_echo "$ac_useropt" | sed 's/[-+.]/_/g'`
 
6223
+    case $ac_user_opts in
 
6224
+      *"
 
6225
+"with_$ac_useropt"
 
6226
+"*) ;;
 
6227
+      *) ac_unrecognized_opts="$ac_unrecognized_opts$ac_unrecognized_sep--with-$ac_useropt_orig"
 
6228
+        ac_unrecognized_sep=', ';;
 
6229
+    esac
 
6230
+    eval with_$ac_useropt=\$ac_optarg ;;
 
6231
+
 
6232
+  -without-* | --without-*)
 
6233
+    ac_useropt=`expr "x$ac_option" : 'x-*without-\(.*\)'`
 
6234
+    # Reject names that are not valid shell variable names.
 
6235
+    expr "x$ac_useropt" : ".*[^-+._$as_cr_alnum]" >/dev/null &&
 
6236
+      as_fn_error $? "invalid package name: $ac_useropt"
 
6237
+    ac_useropt_orig=$ac_useropt
 
6238
+    ac_useropt=`$as_echo "$ac_useropt" | sed 's/[-+.]/_/g'`
 
6239
+    case $ac_user_opts in
 
6240
+      *"
 
6241
+"with_$ac_useropt"
 
6242
+"*) ;;
 
6243
+      *) ac_unrecognized_opts="$ac_unrecognized_opts$ac_unrecognized_sep--without-$ac_useropt_orig"
 
6244
+        ac_unrecognized_sep=', ';;
 
6245
+    esac
 
6246
+    eval with_$ac_useropt=no ;;
 
6247
+
 
6248
+  --x)
 
6249
+    # Obsolete; use --with-x.
 
6250
+    with_x=yes ;;
 
6251
+
 
6252
+  -x-includes | --x-includes | --x-include | --x-includ | --x-inclu \
 
6253
+  | --x-incl | --x-inc | --x-in | --x-i)
 
6254
+    ac_prev=x_includes ;;
 
6255
+  -x-includes=* | --x-includes=* | --x-include=* | --x-includ=* | --x-inclu=* \
 
6256
+  | --x-incl=* | --x-inc=* | --x-in=* | --x-i=*)
 
6257
+    x_includes=$ac_optarg ;;
 
6258
+
 
6259
+  -x-libraries | --x-libraries | --x-librarie | --x-librari \
 
6260
+  | --x-librar | --x-libra | --x-libr | --x-lib | --x-li | --x-l)
 
6261
+    ac_prev=x_libraries ;;
 
6262
+  -x-libraries=* | --x-libraries=* | --x-librarie=* | --x-librari=* \
 
6263
+  | --x-librar=* | --x-libra=* | --x-libr=* | --x-lib=* | --x-li=* | --x-l=*)
 
6264
+    x_libraries=$ac_optarg ;;
 
6265
+
 
6266
+  -*) as_fn_error $? "unrecognized option: \`$ac_option'
 
6267
+Try \`$0 --help' for more information"
 
6268
+    ;;
 
6269
+
 
6270
+  *=*)
 
6271
+    ac_envvar=`expr "x$ac_option" : 'x\([^=]*\)='`
 
6272
+    # Reject names that are not valid shell variable names.
 
6273
+    case $ac_envvar in #(
 
6274
+      '' | [0-9]* | *[!_$as_cr_alnum]* )
 
6275
+      as_fn_error $? "invalid variable name: \`$ac_envvar'" ;;
 
6276
+    esac
 
6277
+    eval $ac_envvar=\$ac_optarg
 
6278
+    export $ac_envvar ;;
 
6279
+
 
6280
+  *)
 
6281
+    # FIXME: should be removed in autoconf 3.0.
 
6282
+    $as_echo "$as_me: WARNING: you should use --build, --host, --target" >&2
 
6283
+    expr "x$ac_option" : ".*[^-._$as_cr_alnum]" >/dev/null &&
 
6284
+      $as_echo "$as_me: WARNING: invalid host type: $ac_option" >&2
 
6285
+    : "${build_alias=$ac_option} ${host_alias=$ac_option} ${target_alias=$ac_option}"
 
6286
+    ;;
 
6287
+
 
6288
+  esac
 
6289
+done
 
6290
+
 
6291
+if test -n "$ac_prev"; then
 
6292
+  ac_option=--`echo $ac_prev | sed 's/_/-/g'`
 
6293
+  as_fn_error $? "missing argument to $ac_option"
 
6294
+fi
 
6295
+
 
6296
+if test -n "$ac_unrecognized_opts"; then
 
6297
+  case $enable_option_checking in
 
6298
+    no) ;;
 
6299
+    fatal) as_fn_error $? "unrecognized options: $ac_unrecognized_opts" ;;
 
6300
+    *)     $as_echo "$as_me: WARNING: unrecognized options: $ac_unrecognized_opts" >&2 ;;
 
6301
+  esac
 
6302
+fi
 
6303
+
 
6304
+# Check all directory arguments for consistency.
 
6305
+for ac_var in  exec_prefix prefix bindir sbindir libexecdir datarootdir \
 
6306
+               datadir sysconfdir sharedstatedir localstatedir includedir \
 
6307
+               oldincludedir docdir infodir htmldir dvidir pdfdir psdir \
 
6308
+               libdir localedir mandir
 
6309
+do
 
6310
+  eval ac_val=\$$ac_var
 
6311
+  # Remove trailing slashes.
 
6312
+  case $ac_val in
 
6313
+    */ )
 
6314
+      ac_val=`expr "X$ac_val" : 'X\(.*[^/]\)' \| "X$ac_val" : 'X\(.*\)'`
 
6315
+      eval $ac_var=\$ac_val;;
 
6316
+  esac
 
6317
+  # Be sure to have absolute directory names.
 
6318
+  case $ac_val in
 
6319
+    [\\/$]* | ?:[\\/]* )  continue;;
 
6320
+    NONE | '' ) case $ac_var in *prefix ) continue;; esac;;
 
6321
+  esac
 
6322
+  as_fn_error $? "expected an absolute directory name for --$ac_var: $ac_val"
 
6323
+done
 
6324
+
 
6325
+# There might be people who depend on the old broken behavior: `$host'
 
6326
+# used to hold the argument of --host etc.
 
6327
+# FIXME: To remove some day.
 
6328
+build=$build_alias
 
6329
+host=$host_alias
 
6330
+target=$target_alias
 
6331
+
 
6332
+# FIXME: To remove some day.
 
6333
+if test "x$host_alias" != x; then
 
6334
+  if test "x$build_alias" = x; then
 
6335
+    cross_compiling=maybe
 
6336
+    $as_echo "$as_me: WARNING: if you wanted to set the --build type, don't use --host.
 
6337
+    If a cross compiler is detected then cross compile mode will be used" >&2
 
6338
+  elif test "x$build_alias" != "x$host_alias"; then
 
6339
+    cross_compiling=yes
 
6340
+  fi
 
6341
+fi
 
6342
+
 
6343
+ac_tool_prefix=
 
6344
+test -n "$host_alias" && ac_tool_prefix=$host_alias-
 
6345
+
 
6346
+test "$silent" = yes && exec 6>/dev/null
 
6347
+
 
6348
+
 
6349
+ac_pwd=`pwd` && test -n "$ac_pwd" &&
 
6350
+ac_ls_di=`ls -di .` &&
 
6351
+ac_pwd_ls_di=`cd "$ac_pwd" && ls -di .` ||
 
6352
+  as_fn_error $? "working directory cannot be determined"
 
6353
+test "X$ac_ls_di" = "X$ac_pwd_ls_di" ||
 
6354
+  as_fn_error $? "pwd does not report name of working directory"
 
6355
+
 
6356
+
 
6357
+# Find the source files, if location was not specified.
 
6358
+if test -z "$srcdir"; then
 
6359
+  ac_srcdir_defaulted=yes
 
6360
+  # Try the directory containing this script, then the parent directory.
 
6361
+  ac_confdir=`$as_dirname -- "$as_myself" ||
 
6362
+$as_expr X"$as_myself" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \
 
6363
+        X"$as_myself" : 'X\(//\)[^/]' \| \
 
6364
+        X"$as_myself" : 'X\(//\)$' \| \
 
6365
+        X"$as_myself" : 'X\(/\)' \| . 2>/dev/null ||
 
6366
+$as_echo X"$as_myself" |
 
6367
+    sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{
 
6368
+           s//\1/
 
6369
+           q
 
6370
+         }
 
6371
+         /^X\(\/\/\)[^/].*/{
 
6372
+           s//\1/
 
6373
+           q
 
6374
+         }
 
6375
+         /^X\(\/\/\)$/{
 
6376
+           s//\1/
 
6377
+           q
 
6378
+         }
 
6379
+         /^X\(\/\).*/{
 
6380
+           s//\1/
 
6381
+           q
 
6382
+         }
 
6383
+         s/.*/./; q'`
 
6384
+  srcdir=$ac_confdir
 
6385
+  if test ! -r "$srcdir/$ac_unique_file"; then
 
6386
+    srcdir=..
 
6387
+  fi
 
6388
+else
 
6389
+  ac_srcdir_defaulted=no
 
6390
+fi
 
6391
+if test ! -r "$srcdir/$ac_unique_file"; then
 
6392
+  test "$ac_srcdir_defaulted" = yes && srcdir="$ac_confdir or .."
 
6393
+  as_fn_error $? "cannot find sources ($ac_unique_file) in $srcdir"
 
6394
+fi
 
6395
+ac_msg="sources are in $srcdir, but \`cd $srcdir' does not work"
 
6396
+ac_abs_confdir=`(
 
6397
+       cd "$srcdir" && test -r "./$ac_unique_file" || as_fn_error $? "$ac_msg"
 
6398
+       pwd)`
 
6399
+# When building in place, set srcdir=.
 
6400
+if test "$ac_abs_confdir" = "$ac_pwd"; then
 
6401
+  srcdir=.
 
6402
+fi
 
6403
+# Remove unnecessary trailing slashes from srcdir.
 
6404
+# Double slashes in file names in object file debugging info
 
6405
+# mess up M-x gdb in Emacs.
 
6406
+case $srcdir in
 
6407
+*/) srcdir=`expr "X$srcdir" : 'X\(.*[^/]\)' \| "X$srcdir" : 'X\(.*\)'`;;
 
6408
+esac
 
6409
+for ac_var in $ac_precious_vars; do
 
6410
+  eval ac_env_${ac_var}_set=\${${ac_var}+set}
 
6411
+  eval ac_env_${ac_var}_value=\$${ac_var}
 
6412
+  eval ac_cv_env_${ac_var}_set=\${${ac_var}+set}
 
6413
+  eval ac_cv_env_${ac_var}_value=\$${ac_var}
 
6414
+done
 
6415
+
 
6416
+#
 
6417
+# Report the --help message.
 
6418
+#
 
6419
+if test "$ac_init_help" = "long"; then
 
6420
+  # Omit some internal or obsolete options to make the list less imposing.
 
6421
+  # This message is too long to be a string in the A/UX 3.1 sh.
 
6422
+  cat <<_ACEOF
 
6423
+\`configure' configures fcoe-utils 1.0.9 to adapt to many kinds of systems.
 
6424
+
 
6425
+Usage: $0 [OPTION]... [VAR=VALUE]...
 
6426
+
 
6427
+To assign environment variables (e.g., CC, CFLAGS...), specify them as
 
6428
+VAR=VALUE.  See below for descriptions of some of the useful variables.
 
6429
+
 
6430
+Defaults for the options are specified in brackets.
 
6431
+
 
6432
+Configuration:
 
6433
+  -h, --help              display this help and exit
 
6434
+      --help=short        display options specific to this package
 
6435
+      --help=recursive    display the short help of all the included packages
 
6436
+  -V, --version           display version information and exit
 
6437
+  -q, --quiet, --silent   do not print \`checking ...' messages
 
6438
+      --cache-file=FILE   cache test results in FILE [disabled]
 
6439
+  -C, --config-cache      alias for \`--cache-file=config.cache'
 
6440
+  -n, --no-create         do not create output files
 
6441
+      --srcdir=DIR        find the sources in DIR [configure dir or \`..']
 
6442
+
 
6443
+Installation directories:
 
6444
+  --prefix=PREFIX         install architecture-independent files in PREFIX
 
6445
+                          @<:@@S|@ac_default_prefix@:>@
 
6446
+  --exec-prefix=EPREFIX   install architecture-dependent files in EPREFIX
 
6447
+                          @<:@PREFIX@:>@
 
6448
+
 
6449
+By default, \`make install' will install all the files in
 
6450
+\`$ac_default_prefix/bin', \`$ac_default_prefix/lib' etc.  You can specify
 
6451
+an installation prefix other than \`$ac_default_prefix' using \`--prefix',
 
6452
+for instance \`--prefix=\$HOME'.
 
6453
+
 
6454
+For better control, use the options below.
 
6455
+
 
6456
+Fine tuning of the installation directories:
 
6457
+  --bindir=DIR            user executables [EPREFIX/bin]
 
6458
+  --sbindir=DIR           system admin executables [EPREFIX/sbin]
 
6459
+  --libexecdir=DIR        program executables [EPREFIX/libexec]
 
6460
+  --sysconfdir=DIR        read-only single-machine data [PREFIX/etc]
 
6461
+  --sharedstatedir=DIR    modifiable architecture-independent data [PREFIX/com]
 
6462
+  --localstatedir=DIR     modifiable single-machine data [PREFIX/var]
 
6463
+  --libdir=DIR            object code libraries [EPREFIX/lib]
 
6464
+  --includedir=DIR        C header files [PREFIX/include]
 
6465
+  --oldincludedir=DIR     C header files for non-gcc [/usr/include]
 
6466
+  --datarootdir=DIR       read-only arch.-independent data root [PREFIX/share]
 
6467
+  --datadir=DIR           read-only architecture-independent data [DATAROOTDIR]
 
6468
+  --infodir=DIR           info documentation [DATAROOTDIR/info]
 
6469
+  --localedir=DIR         locale-dependent data [DATAROOTDIR/locale]
 
6470
+  --mandir=DIR            man documentation [DATAROOTDIR/man]
 
6471
+  --docdir=DIR            documentation root @<:@DATAROOTDIR/doc/fcoe-utils@:>@
 
6472
+  --htmldir=DIR           html documentation [DOCDIR]
 
6473
+  --dvidir=DIR            dvi documentation [DOCDIR]
 
6474
+  --pdfdir=DIR            pdf documentation [DOCDIR]
 
6475
+  --psdir=DIR             ps documentation [DOCDIR]
 
6476
+_ACEOF
 
6477
+
 
6478
+  cat <<\_ACEOF
 
6479
+
 
6480
+Program names:
 
6481
+  --program-prefix=PREFIX            prepend PREFIX to installed program names
 
6482
+  --program-suffix=SUFFIX            append SUFFIX to installed program names
 
6483
+  --program-transform-name=PROGRAM   run sed PROGRAM on installed program names
 
6484
+_ACEOF
 
6485
+fi
 
6486
+
 
6487
+if test -n "$ac_init_help"; then
 
6488
+  case $ac_init_help in
 
6489
+     short | recursive ) echo "Configuration of fcoe-utils 1.0.9:";;
 
6490
+   esac
 
6491
+  cat <<\_ACEOF
 
6492
+
 
6493
+Optional Features:
 
6494
+  --disable-option-checking  ignore unrecognized --enable/--with options
 
6495
+  --disable-FEATURE       do not include FEATURE (same as --enable-FEATURE=no)
 
6496
+  --enable-FEATURE[=ARG]  include FEATURE [ARG=yes]
 
6497
+  --disable-dependency-tracking  speeds up one-time build
 
6498
+  --enable-dependency-tracking   do not reject slow dependency extractors
 
6499
+
 
6500
+Optional Packages:
 
6501
+  --with-PACKAGE[=ARG]    use PACKAGE [ARG=yes]
 
6502
+  --without-PACKAGE       do not use PACKAGE (same as --with-PACKAGE=no)
 
6503
+  --without-dcb           disable DCB support
 
6504
+
 
6505
+Some influential environment variables:
 
6506
+  CC          C compiler command
 
6507
+  CFLAGS      C compiler flags
 
6508
+  LDFLAGS     linker flags, e.g. -L<lib dir> if you have libraries in a
 
6509
+              nonstandard directory <lib dir>
 
6510
+  LIBS        libraries to pass to the linker, e.g. -l<library>
 
6511
+  CPPFLAGS    (Objective) C/C++ preprocessor flags, e.g. -I<include dir> if
 
6512
+              you have headers in a nonstandard directory <include dir>
 
6513
+  PKG_CONFIG  path to pkg-config utility
 
6514
+  PKG_CONFIG_PATH 
 
6515
+              directories to add to pkg-config's search path
 
6516
+  PKG_CONFIG_LIBDIR 
 
6517
+              path overriding pkg-config's built-in search path
 
6518
+  HBAAPI_CFLAGS 
 
6519
+              C compiler flags for HBAAPI, overriding pkg-config
 
6520
+  HBAAPI_LIBS linker flags for HBAAPI, overriding pkg-config
 
6521
+  DCBD_CFLAGS C compiler flags for DCBD, overriding pkg-config
 
6522
+  DCBD_LIBS   linker flags for DCBD, overriding pkg-config
 
6523
+
 
6524
+Use these variables to override the choices made by `configure' or to help
 
6525
+it to find libraries and programs with nonstandard names/locations.
 
6526
+
 
6527
+Report bugs to <devel@open-fcoe.org>.
 
6528
+_ACEOF
 
6529
+ac_status=$?
 
6530
+fi
 
6531
+
 
6532
+if test "$ac_init_help" = "recursive"; then
 
6533
+  # If there are subdirs, report their specific --help.
 
6534
+  for ac_dir in : $ac_subdirs_all; do test "x$ac_dir" = x: && continue
 
6535
+    test -d "$ac_dir" ||
 
6536
+      { cd "$srcdir" && ac_pwd=`pwd` && srcdir=. && test -d "$ac_dir"; } ||
 
6537
+      continue
 
6538
+    ac_builddir=.
 
6539
+
 
6540
+case "$ac_dir" in
 
6541
+.) ac_dir_suffix= ac_top_builddir_sub=. ac_top_build_prefix= ;;
 
6542
+*)
 
6543
+  ac_dir_suffix=/`$as_echo "$ac_dir" | sed 's|^\.[\\/]||'`
 
6544
+  # A ".." for each directory in $ac_dir_suffix.
 
6545
+  ac_top_builddir_sub=`$as_echo "$ac_dir_suffix" | sed 's|/[^\\/]*|/..|g;s|/||'`
 
6546
+  case $ac_top_builddir_sub in
 
6547
+  "") ac_top_builddir_sub=. ac_top_build_prefix= ;;
 
6548
+  *)  ac_top_build_prefix=$ac_top_builddir_sub/ ;;
 
6549
+  esac ;;
 
6550
+esac
 
6551
+ac_abs_top_builddir=$ac_pwd
 
6552
+ac_abs_builddir=$ac_pwd$ac_dir_suffix
 
6553
+# for backward compatibility:
 
6554
+ac_top_builddir=$ac_top_build_prefix
 
6555
+
 
6556
+case $srcdir in
 
6557
+  .)  # We are building in place.
 
6558
+    ac_srcdir=.
 
6559
+    ac_top_srcdir=$ac_top_builddir_sub
 
6560
+    ac_abs_top_srcdir=$ac_pwd ;;
 
6561
+  [\\/]* | ?:[\\/]* )  # Absolute name.
 
6562
+    ac_srcdir=$srcdir$ac_dir_suffix;
 
6563
+    ac_top_srcdir=$srcdir
 
6564
+    ac_abs_top_srcdir=$srcdir ;;
 
6565
+  *) # Relative name.
 
6566
+    ac_srcdir=$ac_top_build_prefix$srcdir$ac_dir_suffix
 
6567
+    ac_top_srcdir=$ac_top_build_prefix$srcdir
 
6568
+    ac_abs_top_srcdir=$ac_pwd/$srcdir ;;
 
6569
+esac
 
6570
+ac_abs_srcdir=$ac_abs_top_srcdir$ac_dir_suffix
 
6571
+
 
6572
+    cd "$ac_dir" || { ac_status=$?; continue; }
 
6573
+    # Check for guested configure.
 
6574
+    if test -f "$ac_srcdir/configure.gnu"; then
 
6575
+      echo &&
 
6576
+      $SHELL "$ac_srcdir/configure.gnu" --help=recursive
 
6577
+    elif test -f "$ac_srcdir/configure"; then
 
6578
+      echo &&
 
6579
+      $SHELL "$ac_srcdir/configure" --help=recursive
 
6580
+    else
 
6581
+      $as_echo "$as_me: WARNING: no configuration information is in $ac_dir" >&2
 
6582
+    fi || ac_status=$?
 
6583
+    cd "$ac_pwd" || { ac_status=$?; break; }
 
6584
+  done
 
6585
+fi
 
6586
+
 
6587
+test -n "$ac_init_help" && exit $ac_status
 
6588
+if $ac_init_version; then
 
6589
+  cat <<\_ACEOF
 
6590
+fcoe-utils configure 1.0.9
 
6591
+generated by GNU Autoconf 2.68
 
6592
+
 
6593
+Copyright (C) 2010 Free Software Foundation, Inc.
 
6594
+This configure script is free software; the Free Software Foundation
 
6595
+gives unlimited permission to copy, distribute and modify it.
 
6596
+_ACEOF
 
6597
+  exit
 
6598
+fi
 
6599
+
 
6600
+## ------------------------ ##
 
6601
+## Autoconf initialization. ##
 
6602
+## ------------------------ ##
 
6603
+
 
6604
+@%:@ ac_fn_c_try_compile LINENO
 
6605
+@%:@ --------------------------
 
6606
+@%:@ Try to compile conftest.@S|@ac_ext, and return whether this succeeded.
 
6607
+ac_fn_c_try_compile ()
 
6608
+{
 
6609
+  as_lineno=${as_lineno-"$1"} as_lineno_stack=as_lineno_stack=$as_lineno_stack
 
6610
+  rm -f conftest.$ac_objext
 
6611
+  if { { ac_try="$ac_compile"
 
6612
+case "(($ac_try" in
 
6613
+  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
 
6614
+  *) ac_try_echo=$ac_try;;
 
6615
+esac
 
6616
+eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\""
 
6617
+$as_echo "$ac_try_echo"; } >&5
 
6618
+  (eval "$ac_compile") 2>conftest.err
 
6619
+  ac_status=$?
 
6620
+  if test -s conftest.err; then
 
6621
+    grep -v '^ *+' conftest.err >conftest.er1
 
6622
+    cat conftest.er1 >&5
 
6623
+    mv -f conftest.er1 conftest.err
 
6624
+  fi
 
6625
+  $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5
 
6626
+  test $ac_status = 0; } && {
 
6627
+        test -z "$ac_c_werror_flag" ||
 
6628
+        test ! -s conftest.err
 
6629
+       } && test -s conftest.$ac_objext; then :
 
6630
+  ac_retval=0
 
6631
+else
 
6632
+  $as_echo "$as_me: failed program was:" >&5
 
6633
+sed 's/^/| /' conftest.$ac_ext >&5
 
6634
+
 
6635
+       ac_retval=1
 
6636
+fi
 
6637
+  eval $as_lineno_stack; ${as_lineno_stack:+:} unset as_lineno
 
6638
+  as_fn_set_status $ac_retval
 
6639
+
 
6640
+} @%:@ ac_fn_c_try_compile
 
6641
+cat >config.log <<_ACEOF
 
6642
+This file contains any messages produced by compilers while
 
6643
+running configure, to aid debugging if configure makes a mistake.
 
6644
+
 
6645
+It was created by fcoe-utils $as_me 1.0.9, which was
 
6646
+generated by GNU Autoconf 2.68.  Invocation command line was
 
6647
+
 
6648
+  $ $0 $@
 
6649
+
 
6650
+_ACEOF
 
6651
+exec 5>>config.log
 
6652
+{
 
6653
+cat <<_ASUNAME
 
6654
+## --------- ##
 
6655
+## Platform. ##
 
6656
+## --------- ##
 
6657
+
 
6658
+hostname = `(hostname || uname -n) 2>/dev/null | sed 1q`
 
6659
+uname -m = `(uname -m) 2>/dev/null || echo unknown`
 
6660
+uname -r = `(uname -r) 2>/dev/null || echo unknown`
 
6661
+uname -s = `(uname -s) 2>/dev/null || echo unknown`
 
6662
+uname -v = `(uname -v) 2>/dev/null || echo unknown`
 
6663
+
 
6664
+/usr/bin/uname -p = `(/usr/bin/uname -p) 2>/dev/null || echo unknown`
 
6665
+/bin/uname -X     = `(/bin/uname -X) 2>/dev/null     || echo unknown`
 
6666
+
 
6667
+/bin/arch              = `(/bin/arch) 2>/dev/null              || echo unknown`
 
6668
+/usr/bin/arch -k       = `(/usr/bin/arch -k) 2>/dev/null       || echo unknown`
 
6669
+/usr/convex/getsysinfo = `(/usr/convex/getsysinfo) 2>/dev/null || echo unknown`
 
6670
+/usr/bin/hostinfo      = `(/usr/bin/hostinfo) 2>/dev/null      || echo unknown`
 
6671
+/bin/machine           = `(/bin/machine) 2>/dev/null           || echo unknown`
 
6672
+/usr/bin/oslevel       = `(/usr/bin/oslevel) 2>/dev/null       || echo unknown`
 
6673
+/bin/universe          = `(/bin/universe) 2>/dev/null          || echo unknown`
 
6674
+
 
6675
+_ASUNAME
 
6676
+
 
6677
+as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
 
6678
+for as_dir in $PATH
 
6679
+do
 
6680
+  IFS=$as_save_IFS
 
6681
+  test -z "$as_dir" && as_dir=.
 
6682
+    $as_echo "PATH: $as_dir"
 
6683
+  done
 
6684
+IFS=$as_save_IFS
 
6685
+
 
6686
+} >&5
 
6687
+
 
6688
+cat >&5 <<_ACEOF
 
6689
+
 
6690
+
 
6691
+## ----------- ##
 
6692
+## Core tests. ##
 
6693
+## ----------- ##
 
6694
+
 
6695
+_ACEOF
 
6696
+
 
6697
+
 
6698
+# Keep a trace of the command line.
 
6699
+# Strip out --no-create and --no-recursion so they do not pile up.
 
6700
+# Strip out --silent because we don't want to record it for future runs.
 
6701
+# Also quote any args containing shell meta-characters.
 
6702
+# Make two passes to allow for proper duplicate-argument suppression.
 
6703
+ac_configure_args=
 
6704
+ac_configure_args0=
 
6705
+ac_configure_args1=
 
6706
+ac_must_keep_next=false
 
6707
+for ac_pass in 1 2
 
6708
+do
 
6709
+  for ac_arg
 
6710
+  do
 
6711
+    case $ac_arg in
 
6712
+    -no-create | --no-c* | -n | -no-recursion | --no-r*) continue ;;
 
6713
+    -q | -quiet | --quiet | --quie | --qui | --qu | --q \
 
6714
+    | -silent | --silent | --silen | --sile | --sil)
 
6715
+      continue ;;
 
6716
+    *\'*)
 
6717
+      ac_arg=`$as_echo "$ac_arg" | sed "s/'/'\\\\\\\\''/g"` ;;
 
6718
+    esac
 
6719
+    case $ac_pass in
 
6720
+    1) as_fn_append ac_configure_args0 " '$ac_arg'" ;;
 
6721
+    2)
 
6722
+      as_fn_append ac_configure_args1 " '$ac_arg'"
 
6723
+      if test $ac_must_keep_next = true; then
 
6724
+       ac_must_keep_next=false # Got value, back to normal.
 
6725
+      else
 
6726
+       case $ac_arg in
 
6727
+         *=* | --config-cache | -C | -disable-* | --disable-* \
 
6728
+         | -enable-* | --enable-* | -gas | --g* | -nfp | --nf* \
 
6729
+         | -q | -quiet | --q* | -silent | --sil* | -v | -verb* \
 
6730
+         | -with-* | --with-* | -without-* | --without-* | --x)
 
6731
+           case "$ac_configure_args0 " in
 
6732
+             "$ac_configure_args1"*" '$ac_arg' "* ) continue ;;
 
6733
+           esac
 
6734
+           ;;
 
6735
+         -* ) ac_must_keep_next=true ;;
 
6736
+       esac
 
6737
+      fi
 
6738
+      as_fn_append ac_configure_args " '$ac_arg'"
 
6739
+      ;;
 
6740
+    esac
 
6741
+  done
 
6742
+done
 
6743
+{ ac_configure_args0=; unset ac_configure_args0;}
 
6744
+{ ac_configure_args1=; unset ac_configure_args1;}
 
6745
+
 
6746
+# When interrupted or exit'd, cleanup temporary files, and complete
 
6747
+# config.log.  We remove comments because anyway the quotes in there
 
6748
+# would cause problems or look ugly.
 
6749
+# WARNING: Use '\'' to represent an apostrophe within the trap.
 
6750
+# WARNING: Do not start the trap code with a newline, due to a FreeBSD 4.0 bug.
 
6751
+trap 'exit_status=$?
 
6752
+  # Save into config.log some information that might help in debugging.
 
6753
+  {
 
6754
+    echo
 
6755
+
 
6756
+    $as_echo "## ---------------- ##
 
6757
+## Cache variables. ##
 
6758
+## ---------------- ##"
 
6759
+    echo
 
6760
+    # The following way of writing the cache mishandles newlines in values,
 
6761
+(
 
6762
+  for ac_var in `(set) 2>&1 | sed -n '\''s/^\([a-zA-Z_][a-zA-Z0-9_]*\)=.*/\1/p'\''`; do
 
6763
+    eval ac_val=\$$ac_var
 
6764
+    case $ac_val in #(
 
6765
+    *${as_nl}*)
 
6766
+      case $ac_var in #(
 
6767
+      *_cv_*) { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: cache variable $ac_var contains a newline" >&5
 
6768
+$as_echo "$as_me: WARNING: cache variable $ac_var contains a newline" >&2;} ;;
 
6769
+      esac
 
6770
+      case $ac_var in #(
 
6771
+      _ | IFS | as_nl) ;; #(
 
6772
+      BASH_ARGV | BASH_SOURCE) eval $ac_var= ;; #(
 
6773
+      *) { eval $ac_var=; unset $ac_var;} ;;
 
6774
+      esac ;;
 
6775
+    esac
 
6776
+  done
 
6777
+  (set) 2>&1 |
 
6778
+    case $as_nl`(ac_space='\'' '\''; set) 2>&1` in #(
 
6779
+    *${as_nl}ac_space=\ *)
 
6780
+      sed -n \
 
6781
+       "s/'\''/'\''\\\\'\'''\''/g;
 
6782
+         s/^\\([_$as_cr_alnum]*_cv_[_$as_cr_alnum]*\\)=\\(.*\\)/\\1='\''\\2'\''/p"
 
6783
+      ;; #(
 
6784
+    *)
 
6785
+      sed -n "/^[_$as_cr_alnum]*_cv_[_$as_cr_alnum]*=/p"
 
6786
+      ;;
 
6787
+    esac |
 
6788
+    sort
 
6789
+)
 
6790
+    echo
 
6791
+
 
6792
+    $as_echo "## ----------------- ##
 
6793
+## Output variables. ##
 
6794
+## ----------------- ##"
 
6795
+    echo
 
6796
+    for ac_var in $ac_subst_vars
 
6797
+    do
 
6798
+      eval ac_val=\$$ac_var
 
6799
+      case $ac_val in
 
6800
+      *\'\''*) ac_val=`$as_echo "$ac_val" | sed "s/'\''/'\''\\\\\\\\'\'''\''/g"`;;
 
6801
+      esac
 
6802
+      $as_echo "$ac_var='\''$ac_val'\''"
 
6803
+    done | sort
 
6804
+    echo
 
6805
+
 
6806
+    if test -n "$ac_subst_files"; then
 
6807
+      $as_echo "## ------------------- ##
 
6808
+## File substitutions. ##
 
6809
+## ------------------- ##"
 
6810
+      echo
 
6811
+      for ac_var in $ac_subst_files
 
6812
+      do
 
6813
+       eval ac_val=\$$ac_var
 
6814
+       case $ac_val in
 
6815
+       *\'\''*) ac_val=`$as_echo "$ac_val" | sed "s/'\''/'\''\\\\\\\\'\'''\''/g"`;;
 
6816
+       esac
 
6817
+       $as_echo "$ac_var='\''$ac_val'\''"
 
6818
+      done | sort
 
6819
+      echo
 
6820
+    fi
 
6821
+
 
6822
+    if test -s confdefs.h; then
 
6823
+      $as_echo "## ----------- ##
 
6824
+## confdefs.h. ##
 
6825
+## ----------- ##"
 
6826
+      echo
 
6827
+      cat confdefs.h
 
6828
+      echo
 
6829
+    fi
 
6830
+    test "$ac_signal" != 0 &&
 
6831
+      $as_echo "$as_me: caught signal $ac_signal"
 
6832
+    $as_echo "$as_me: exit $exit_status"
 
6833
+  } >&5
 
6834
+  rm -f core *.core core.conftest.* &&
 
6835
+    rm -f -r conftest* confdefs* conf$$* $ac_clean_files &&
 
6836
+    exit $exit_status
 
6837
+' 0
 
6838
+for ac_signal in 1 2 13 15; do
 
6839
+  trap 'ac_signal='$ac_signal'; as_fn_exit 1' $ac_signal
 
6840
+done
 
6841
+ac_signal=0
 
6842
+
 
6843
+# confdefs.h avoids OS command line length limits that DEFS can exceed.
 
6844
+rm -f -r conftest* confdefs.h
 
6845
+
 
6846
+$as_echo "/* confdefs.h */" > confdefs.h
 
6847
+
 
6848
+# Predefined preprocessor variables.
 
6849
+
 
6850
+cat >>confdefs.h <<_ACEOF
 
6851
+@%:@define PACKAGE_NAME "$PACKAGE_NAME"
 
6852
+_ACEOF
 
6853
+
 
6854
+cat >>confdefs.h <<_ACEOF
 
6855
+@%:@define PACKAGE_TARNAME "$PACKAGE_TARNAME"
 
6856
+_ACEOF
 
6857
+
 
6858
+cat >>confdefs.h <<_ACEOF
 
6859
+@%:@define PACKAGE_VERSION "$PACKAGE_VERSION"
 
6860
+_ACEOF
 
6861
+
 
6862
+cat >>confdefs.h <<_ACEOF
 
6863
+@%:@define PACKAGE_STRING "$PACKAGE_STRING"
 
6864
+_ACEOF
 
6865
+
 
6866
+cat >>confdefs.h <<_ACEOF
 
6867
+@%:@define PACKAGE_BUGREPORT "$PACKAGE_BUGREPORT"
 
6868
+_ACEOF
 
6869
+
 
6870
+cat >>confdefs.h <<_ACEOF
 
6871
+@%:@define PACKAGE_URL "$PACKAGE_URL"
 
6872
+_ACEOF
 
6873
+
 
6874
+
 
6875
+# Let the site file select an alternate cache file if it wants to.
 
6876
+# Prefer an explicitly selected file to automatically selected ones.
 
6877
+ac_site_file1=NONE
 
6878
+ac_site_file2=NONE
 
6879
+if test -n "$CONFIG_SITE"; then
 
6880
+  # We do not want a PATH search for config.site.
 
6881
+  case $CONFIG_SITE in @%:@((
 
6882
+    -*)  ac_site_file1=./$CONFIG_SITE;;
 
6883
+    */*) ac_site_file1=$CONFIG_SITE;;
 
6884
+    *)   ac_site_file1=./$CONFIG_SITE;;
 
6885
+  esac
 
6886
+elif test "x$prefix" != xNONE; then
 
6887
+  ac_site_file1=$prefix/share/config.site
 
6888
+  ac_site_file2=$prefix/etc/config.site
 
6889
+else
 
6890
+  ac_site_file1=$ac_default_prefix/share/config.site
 
6891
+  ac_site_file2=$ac_default_prefix/etc/config.site
 
6892
+fi
 
6893
+for ac_site_file in "$ac_site_file1" "$ac_site_file2"
 
6894
+do
 
6895
+  test "x$ac_site_file" = xNONE && continue
 
6896
+  if test /dev/null != "$ac_site_file" && test -r "$ac_site_file"; then
 
6897
+    { $as_echo "$as_me:${as_lineno-$LINENO}: loading site script $ac_site_file" >&5
 
6898
+$as_echo "$as_me: loading site script $ac_site_file" >&6;}
 
6899
+    sed 's/^/| /' "$ac_site_file" >&5
 
6900
+    . "$ac_site_file" \
 
6901
+      || { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5
 
6902
+$as_echo "$as_me: error: in \`$ac_pwd':" >&2;}
 
6903
+as_fn_error $? "failed to load site script $ac_site_file
 
6904
+See \`config.log' for more details" "$LINENO" 5; }
 
6905
+  fi
 
6906
+done
 
6907
+
 
6908
+if test -r "$cache_file"; then
 
6909
+  # Some versions of bash will fail to source /dev/null (special files
 
6910
+  # actually), so we avoid doing that.  DJGPP emulates it as a regular file.
 
6911
+  if test /dev/null != "$cache_file" && test -f "$cache_file"; then
 
6912
+    { $as_echo "$as_me:${as_lineno-$LINENO}: loading cache $cache_file" >&5
 
6913
+$as_echo "$as_me: loading cache $cache_file" >&6;}
 
6914
+    case $cache_file in
 
6915
+      [\\/]* | ?:[\\/]* ) . "$cache_file";;
 
6916
+      *)                      . "./$cache_file";;
 
6917
+    esac
 
6918
+  fi
 
6919
+else
 
6920
+  { $as_echo "$as_me:${as_lineno-$LINENO}: creating cache $cache_file" >&5
 
6921
+$as_echo "$as_me: creating cache $cache_file" >&6;}
 
6922
+  >$cache_file
 
6923
+fi
 
6924
+
 
6925
+# Check that the precious variables saved in the cache have kept the same
 
6926
+# value.
 
6927
+ac_cache_corrupted=false
 
6928
+for ac_var in $ac_precious_vars; do
 
6929
+  eval ac_old_set=\$ac_cv_env_${ac_var}_set
 
6930
+  eval ac_new_set=\$ac_env_${ac_var}_set
 
6931
+  eval ac_old_val=\$ac_cv_env_${ac_var}_value
 
6932
+  eval ac_new_val=\$ac_env_${ac_var}_value
 
6933
+  case $ac_old_set,$ac_new_set in
 
6934
+    set,)
 
6935
+      { $as_echo "$as_me:${as_lineno-$LINENO}: error: \`$ac_var' was set to \`$ac_old_val' in the previous run" >&5
 
6936
+$as_echo "$as_me: error: \`$ac_var' was set to \`$ac_old_val' in the previous run" >&2;}
 
6937
+      ac_cache_corrupted=: ;;
 
6938
+    ,set)
 
6939
+      { $as_echo "$as_me:${as_lineno-$LINENO}: error: \`$ac_var' was not set in the previous run" >&5
 
6940
+$as_echo "$as_me: error: \`$ac_var' was not set in the previous run" >&2;}
 
6941
+      ac_cache_corrupted=: ;;
 
6942
+    ,);;
 
6943
+    *)
 
6944
+      if test "x$ac_old_val" != "x$ac_new_val"; then
 
6945
+       # differences in whitespace do not lead to failure.
 
6946
+       ac_old_val_w=`echo x $ac_old_val`
 
6947
+       ac_new_val_w=`echo x $ac_new_val`
 
6948
+       if test "$ac_old_val_w" != "$ac_new_val_w"; then
 
6949
+         { $as_echo "$as_me:${as_lineno-$LINENO}: error: \`$ac_var' has changed since the previous run:" >&5
 
6950
+$as_echo "$as_me: error: \`$ac_var' has changed since the previous run:" >&2;}
 
6951
+         ac_cache_corrupted=:
 
6952
+       else
 
6953
+         { $as_echo "$as_me:${as_lineno-$LINENO}: warning: ignoring whitespace changes in \`$ac_var' since the previous run:" >&5
 
6954
+$as_echo "$as_me: warning: ignoring whitespace changes in \`$ac_var' since the previous run:" >&2;}
 
6955
+         eval $ac_var=\$ac_old_val
 
6956
+       fi
 
6957
+       { $as_echo "$as_me:${as_lineno-$LINENO}:   former value:  \`$ac_old_val'" >&5
 
6958
+$as_echo "$as_me:   former value:  \`$ac_old_val'" >&2;}
 
6959
+       { $as_echo "$as_me:${as_lineno-$LINENO}:   current value: \`$ac_new_val'" >&5
 
6960
+$as_echo "$as_me:   current value: \`$ac_new_val'" >&2;}
 
6961
+      fi;;
 
6962
+  esac
 
6963
+  # Pass precious variables to config.status.
 
6964
+  if test "$ac_new_set" = set; then
 
6965
+    case $ac_new_val in
 
6966
+    *\'*) ac_arg=$ac_var=`$as_echo "$ac_new_val" | sed "s/'/'\\\\\\\\''/g"` ;;
 
6967
+    *) ac_arg=$ac_var=$ac_new_val ;;
 
6968
+    esac
 
6969
+    case " $ac_configure_args " in
 
6970
+      *" '$ac_arg' "*) ;; # Avoid dups.  Use of quotes ensures accuracy.
 
6971
+      *) as_fn_append ac_configure_args " '$ac_arg'" ;;
 
6972
+    esac
 
6973
+  fi
 
6974
+done
 
6975
+if $ac_cache_corrupted; then
 
6976
+  { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5
 
6977
+$as_echo "$as_me: error: in \`$ac_pwd':" >&2;}
 
6978
+  { $as_echo "$as_me:${as_lineno-$LINENO}: error: changes in the environment can compromise the build" >&5
 
6979
+$as_echo "$as_me: error: changes in the environment can compromise the build" >&2;}
 
6980
+  as_fn_error $? "run \`make distclean' and/or \`rm $cache_file' and start over" "$LINENO" 5
 
6981
+fi
 
6982
+## -------------------- ##
 
6983
+## Main body of script. ##
 
6984
+## -------------------- ##
 
6985
+
 
6986
+ac_ext=c
 
6987
+ac_cpp='$CPP $CPPFLAGS'
 
6988
+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5'
 
6989
+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5'
 
6990
+ac_compiler_gnu=$ac_cv_c_compiler_gnu
 
6991
+
 
6992
+
 
6993
+am__api_version='1.11'
 
6994
+
 
6995
+ac_aux_dir=
 
6996
+for ac_dir in "$srcdir" "$srcdir/.." "$srcdir/../.."; do
 
6997
+  if test -f "$ac_dir/install-sh"; then
 
6998
+    ac_aux_dir=$ac_dir
 
6999
+    ac_install_sh="$ac_aux_dir/install-sh -c"
 
7000
+    break
 
7001
+  elif test -f "$ac_dir/install.sh"; then
 
7002
+    ac_aux_dir=$ac_dir
 
7003
+    ac_install_sh="$ac_aux_dir/install.sh -c"
 
7004
+    break
 
7005
+  elif test -f "$ac_dir/shtool"; then
 
7006
+    ac_aux_dir=$ac_dir
 
7007
+    ac_install_sh="$ac_aux_dir/shtool install -c"
 
7008
+    break
 
7009
+  fi
 
7010
+done
 
7011
+if test -z "$ac_aux_dir"; then
 
7012
+  as_fn_error $? "cannot find install-sh, install.sh, or shtool in \"$srcdir\" \"$srcdir/..\" \"$srcdir/../..\"" "$LINENO" 5
 
7013
+fi
 
7014
+
 
7015
+# These three variables are undocumented and unsupported,
 
7016
+# and are intended to be withdrawn in a future Autoconf release.
 
7017
+# They can cause serious problems if a builder's source tree is in a directory
 
7018
+# whose full name contains unusual characters.
 
7019
+ac_config_guess="$SHELL $ac_aux_dir/config.guess"  # Please don't use this var.
 
7020
+ac_config_sub="$SHELL $ac_aux_dir/config.sub"  # Please don't use this var.
 
7021
+ac_configure="$SHELL $ac_aux_dir/configure"  # Please don't use this var.
 
7022
+
 
7023
+
 
7024
+# Find a good install program.  We prefer a C program (faster),
 
7025
+# so one script is as good as another.  But avoid the broken or
 
7026
+# incompatible versions:
 
7027
+# SysV /etc/install, /usr/sbin/install
 
7028
+# SunOS /usr/etc/install
 
7029
+# IRIX /sbin/install
 
7030
+# AIX /bin/install
 
7031
+# AmigaOS /C/install, which installs bootblocks on floppy discs
 
7032
+# AIX 4 /usr/bin/installbsd, which doesn't work without a -g flag
 
7033
+# AFS /usr/afsws/bin/install, which mishandles nonexistent args
 
7034
+# SVR4 /usr/ucb/install, which tries to use the nonexistent group "staff"
 
7035
+# OS/2's system install, which has a completely different semantic
 
7036
+# ./install, which can be erroneously created by make from ./install.sh.
 
7037
+# Reject install programs that cannot install multiple files.
 
7038
+{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for a BSD-compatible install" >&5
 
7039
+$as_echo_n "checking for a BSD-compatible install... " >&6; }
 
7040
+if test -z "$INSTALL"; then
 
7041
+if ${ac_cv_path_install+:} false; then :
 
7042
+  $as_echo_n "(cached) " >&6
 
7043
+else
 
7044
+  as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
 
7045
+for as_dir in $PATH
 
7046
+do
 
7047
+  IFS=$as_save_IFS
 
7048
+  test -z "$as_dir" && as_dir=.
 
7049
+    # Account for people who put trailing slashes in PATH elements.
 
7050
+case $as_dir/ in @%:@((
 
7051
+  ./ | .// | /[cC]/* | \
 
7052
+  /etc/* | /usr/sbin/* | /usr/etc/* | /sbin/* | /usr/afsws/bin/* | \
 
7053
+  ?:[\\/]os2[\\/]install[\\/]* | ?:[\\/]OS2[\\/]INSTALL[\\/]* | \
 
7054
+  /usr/ucb/* ) ;;
 
7055
+  *)
 
7056
+    # OSF1 and SCO ODT 3.0 have their own names for install.
 
7057
+    # Don't use installbsd from OSF since it installs stuff as root
 
7058
+    # by default.
 
7059
+    for ac_prog in ginstall scoinst install; do
 
7060
+      for ac_exec_ext in '' $ac_executable_extensions; do
 
7061
+       if { test -f "$as_dir/$ac_prog$ac_exec_ext" && $as_test_x "$as_dir/$ac_prog$ac_exec_ext"; }; then
 
7062
+         if test $ac_prog = install &&
 
7063
+           grep dspmsg "$as_dir/$ac_prog$ac_exec_ext" >/dev/null 2>&1; then
 
7064
+           # AIX install.  It has an incompatible calling convention.
 
7065
+           :
 
7066
+         elif test $ac_prog = install &&
 
7067
+           grep pwplus "$as_dir/$ac_prog$ac_exec_ext" >/dev/null 2>&1; then
 
7068
+           # program-specific install script used by HP pwplus--don't use.
 
7069
+           :
 
7070
+         else
 
7071
+           rm -rf conftest.one conftest.two conftest.dir
 
7072
+           echo one > conftest.one
 
7073
+           echo two > conftest.two
 
7074
+           mkdir conftest.dir
 
7075
+           if "$as_dir/$ac_prog$ac_exec_ext" -c conftest.one conftest.two "`pwd`/conftest.dir" &&
 
7076
+             test -s conftest.one && test -s conftest.two &&
 
7077
+             test -s conftest.dir/conftest.one &&
 
7078
+             test -s conftest.dir/conftest.two
 
7079
+           then
 
7080
+             ac_cv_path_install="$as_dir/$ac_prog$ac_exec_ext -c"
 
7081
+             break 3
 
7082
+           fi
 
7083
+         fi
 
7084
+       fi
 
7085
+      done
 
7086
+    done
 
7087
+    ;;
 
7088
+esac
 
7089
+
 
7090
+  done
 
7091
+IFS=$as_save_IFS
 
7092
+
 
7093
+rm -rf conftest.one conftest.two conftest.dir
 
7094
+
 
7095
+fi
 
7096
+  if test "${ac_cv_path_install+set}" = set; then
 
7097
+    INSTALL=$ac_cv_path_install
 
7098
+  else
 
7099
+    # As a last resort, use the slow shell script.  Don't cache a
 
7100
+    # value for INSTALL within a source directory, because that will
 
7101
+    # break other packages using the cache if that directory is
 
7102
+    # removed, or if the value is a relative name.
 
7103
+    INSTALL=$ac_install_sh
 
7104
+  fi
 
7105
+fi
 
7106
+{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $INSTALL" >&5
 
7107
+$as_echo "$INSTALL" >&6; }
 
7108
+
 
7109
+# Use test -z because SunOS4 sh mishandles braces in ${var-val}.
 
7110
+# It thinks the first close brace ends the variable substitution.
 
7111
+test -z "$INSTALL_PROGRAM" && INSTALL_PROGRAM='${INSTALL}'
 
7112
+
 
7113
+test -z "$INSTALL_SCRIPT" && INSTALL_SCRIPT='${INSTALL}'
 
7114
+
 
7115
+test -z "$INSTALL_DATA" && INSTALL_DATA='${INSTALL} -m 644'
 
7116
+
 
7117
+{ $as_echo "$as_me:${as_lineno-$LINENO}: checking whether build environment is sane" >&5
 
7118
+$as_echo_n "checking whether build environment is sane... " >&6; }
 
7119
+# Just in case
 
7120
+sleep 1
 
7121
+echo timestamp > conftest.file
 
7122
+# Reject unsafe characters in $srcdir or the absolute working directory
 
7123
+# name.  Accept space and tab only in the latter.
 
7124
+am_lf='
 
7125
+'
 
7126
+case `pwd` in
 
7127
+  *[\\\"\#\$\&\'\`$am_lf]*)
 
7128
+    as_fn_error $? "unsafe absolute working directory name" "$LINENO" 5;;
 
7129
+esac
 
7130
+case $srcdir in
 
7131
+  *[\\\"\#\$\&\'\`$am_lf\ \    ]*)
 
7132
+    as_fn_error $? "unsafe srcdir value: \`$srcdir'" "$LINENO" 5;;
 
7133
+esac
 
7134
+
 
7135
+# Do `set' in a subshell so we don't clobber the current shell's
 
7136
+# arguments.  Must try -L first in case configure is actually a
 
7137
+# symlink; some systems play weird games with the mod time of symlinks
 
7138
+# (eg FreeBSD returns the mod time of the symlink's containing
 
7139
+# directory).
 
7140
+if (
 
7141
+   set X `ls -Lt "$srcdir/configure" conftest.file 2> /dev/null`
 
7142
+   if test "$*" = "X"; then
 
7143
+      # -L didn't work.
 
7144
+      set X `ls -t "$srcdir/configure" conftest.file`
 
7145
+   fi
 
7146
+   rm -f conftest.file
 
7147
+   if test "$*" != "X $srcdir/configure conftest.file" \
 
7148
+      && test "$*" != "X conftest.file $srcdir/configure"; then
 
7149
+
 
7150
+      # If neither matched, then we have a broken ls.  This can happen
 
7151
+      # if, for instance, CONFIG_SHELL is bash and it inherits a
 
7152
+      # broken ls alias from the environment.  This has actually
 
7153
+      # happened.  Such a system could not be considered "sane".
 
7154
+      as_fn_error $? "ls -t appears to fail.  Make sure there is not a broken
 
7155
+alias in your environment" "$LINENO" 5
 
7156
+   fi
 
7157
+
 
7158
+   test "$2" = conftest.file
 
7159
+   )
 
7160
+then
 
7161
+   # Ok.
 
7162
+   :
 
7163
+else
 
7164
+   as_fn_error $? "newly created file is older than distributed files!
 
7165
+Check your system clock" "$LINENO" 5
 
7166
+fi
 
7167
+{ $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5
 
7168
+$as_echo "yes" >&6; }
 
7169
+test "$program_prefix" != NONE &&
 
7170
+  program_transform_name="s&^&$program_prefix&;$program_transform_name"
 
7171
+# Use a double $ so make ignores it.
 
7172
+test "$program_suffix" != NONE &&
 
7173
+  program_transform_name="s&\$&$program_suffix&;$program_transform_name"
 
7174
+# Double any \ or $.
 
7175
+# By default was `s,x,x', remove it if useless.
 
7176
+ac_script='s/[\\$]/&&/g;s/;s,x,x,$//'
 
7177
+program_transform_name=`$as_echo "$program_transform_name" | sed "$ac_script"`
 
7178
+
 
7179
+# expand $ac_aux_dir to an absolute path
 
7180
+am_aux_dir=`cd $ac_aux_dir && pwd`
 
7181
+
 
7182
+if test x"${MISSING+set}" != xset; then
 
7183
+  case $am_aux_dir in
 
7184
+  *\ * | *\    *)
 
7185
+    MISSING="\${SHELL} \"$am_aux_dir/missing\"" ;;
 
7186
+  *)
 
7187
+    MISSING="\${SHELL} $am_aux_dir/missing" ;;
 
7188
+  esac
 
7189
+fi
 
7190
+# Use eval to expand $SHELL
 
7191
+if eval "$MISSING --run true"; then
 
7192
+  am_missing_run="$MISSING --run "
 
7193
+else
 
7194
+  am_missing_run=
 
7195
+  { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: \`missing' script is too old or missing" >&5
 
7196
+$as_echo "$as_me: WARNING: \`missing' script is too old or missing" >&2;}
 
7197
+fi
 
7198
+
 
7199
+if test x"${install_sh}" != xset; then
 
7200
+  case $am_aux_dir in
 
7201
+  *\ * | *\    *)
 
7202
+    install_sh="\${SHELL} '$am_aux_dir/install-sh'" ;;
 
7203
+  *)
 
7204
+    install_sh="\${SHELL} $am_aux_dir/install-sh"
 
7205
+  esac
 
7206
+fi
 
7207
+
 
7208
+# Installed binaries are usually stripped using `strip' when the user
 
7209
+# run `make install-strip'.  However `strip' might not be the right
 
7210
+# tool to use in cross-compilation environments, therefore Automake
 
7211
+# will honor the `STRIP' environment variable to overrule this program.
 
7212
+if test "$cross_compiling" != no; then
 
7213
+  if test -n "$ac_tool_prefix"; then
 
7214
+  # Extract the first word of "${ac_tool_prefix}strip", so it can be a program name with args.
 
7215
+set dummy ${ac_tool_prefix}strip; ac_word=$2
 
7216
+{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
 
7217
+$as_echo_n "checking for $ac_word... " >&6; }
 
7218
+if ${ac_cv_prog_STRIP+:} false; then :
 
7219
+  $as_echo_n "(cached) " >&6
 
7220
+else
 
7221
+  if test -n "$STRIP"; then
 
7222
+  ac_cv_prog_STRIP="$STRIP" # Let the user override the test.
 
7223
+else
 
7224
+as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
 
7225
+for as_dir in $PATH
 
7226
+do
 
7227
+  IFS=$as_save_IFS
 
7228
+  test -z "$as_dir" && as_dir=.
 
7229
+    for ac_exec_ext in '' $ac_executable_extensions; do
 
7230
+  if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then
 
7231
+    ac_cv_prog_STRIP="${ac_tool_prefix}strip"
 
7232
+    $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5
 
7233
+    break 2
 
7234
+  fi
 
7235
+done
 
7236
+  done
 
7237
+IFS=$as_save_IFS
 
7238
+
 
7239
+fi
 
7240
+fi
 
7241
+STRIP=$ac_cv_prog_STRIP
 
7242
+if test -n "$STRIP"; then
 
7243
+  { $as_echo "$as_me:${as_lineno-$LINENO}: result: $STRIP" >&5
 
7244
+$as_echo "$STRIP" >&6; }
 
7245
+else
 
7246
+  { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5
 
7247
+$as_echo "no" >&6; }
 
7248
+fi
 
7249
+
 
7250
+
 
7251
+fi
 
7252
+if test -z "$ac_cv_prog_STRIP"; then
 
7253
+  ac_ct_STRIP=$STRIP
 
7254
+  # Extract the first word of "strip", so it can be a program name with args.
 
7255
+set dummy strip; ac_word=$2
 
7256
+{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
 
7257
+$as_echo_n "checking for $ac_word... " >&6; }
 
7258
+if ${ac_cv_prog_ac_ct_STRIP+:} false; then :
 
7259
+  $as_echo_n "(cached) " >&6
 
7260
+else
 
7261
+  if test -n "$ac_ct_STRIP"; then
 
7262
+  ac_cv_prog_ac_ct_STRIP="$ac_ct_STRIP" # Let the user override the test.
 
7263
+else
 
7264
+as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
 
7265
+for as_dir in $PATH
 
7266
+do
 
7267
+  IFS=$as_save_IFS
 
7268
+  test -z "$as_dir" && as_dir=.
 
7269
+    for ac_exec_ext in '' $ac_executable_extensions; do
 
7270
+  if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then
 
7271
+    ac_cv_prog_ac_ct_STRIP="strip"
 
7272
+    $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5
 
7273
+    break 2
 
7274
+  fi
 
7275
+done
 
7276
+  done
 
7277
+IFS=$as_save_IFS
 
7278
+
 
7279
+fi
 
7280
+fi
 
7281
+ac_ct_STRIP=$ac_cv_prog_ac_ct_STRIP
 
7282
+if test -n "$ac_ct_STRIP"; then
 
7283
+  { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_ct_STRIP" >&5
 
7284
+$as_echo "$ac_ct_STRIP" >&6; }
 
7285
+else
 
7286
+  { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5
 
7287
+$as_echo "no" >&6; }
 
7288
+fi
 
7289
+
 
7290
+  if test "x$ac_ct_STRIP" = x; then
 
7291
+    STRIP=":"
 
7292
+  else
 
7293
+    case $cross_compiling:$ac_tool_warned in
 
7294
+yes:)
 
7295
+{ $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet" >&5
 
7296
+$as_echo "$as_me: WARNING: using cross tools not prefixed with host triplet" >&2;}
 
7297
+ac_tool_warned=yes ;;
 
7298
+esac
 
7299
+    STRIP=$ac_ct_STRIP
 
7300
+  fi
 
7301
+else
 
7302
+  STRIP="$ac_cv_prog_STRIP"
 
7303
+fi
 
7304
+
 
7305
+fi
 
7306
+INSTALL_STRIP_PROGRAM="\$(install_sh) -c -s"
 
7307
+
 
7308
+{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for a thread-safe mkdir -p" >&5
 
7309
+$as_echo_n "checking for a thread-safe mkdir -p... " >&6; }
 
7310
+if test -z "$MKDIR_P"; then
 
7311
+  if ${ac_cv_path_mkdir+:} false; then :
 
7312
+  $as_echo_n "(cached) " >&6
 
7313
+else
 
7314
+  as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
 
7315
+for as_dir in $PATH$PATH_SEPARATOR/opt/sfw/bin
 
7316
+do
 
7317
+  IFS=$as_save_IFS
 
7318
+  test -z "$as_dir" && as_dir=.
 
7319
+    for ac_prog in mkdir gmkdir; do
 
7320
+        for ac_exec_ext in '' $ac_executable_extensions; do
 
7321
+          { test -f "$as_dir/$ac_prog$ac_exec_ext" && $as_test_x "$as_dir/$ac_prog$ac_exec_ext"; } || continue
 
7322
+          case `"$as_dir/$ac_prog$ac_exec_ext" --version 2>&1` in #(
 
7323
+            'mkdir (GNU coreutils) '* | \
 
7324
+            'mkdir (coreutils) '* | \
 
7325
+            'mkdir (fileutils) '4.1*)
 
7326
+              ac_cv_path_mkdir=$as_dir/$ac_prog$ac_exec_ext
 
7327
+              break 3;;
 
7328
+          esac
 
7329
+        done
 
7330
+       done
 
7331
+  done
 
7332
+IFS=$as_save_IFS
 
7333
+
 
7334
+fi
 
7335
+
 
7336
+  test -d ./--version && rmdir ./--version
 
7337
+  if test "${ac_cv_path_mkdir+set}" = set; then
 
7338
+    MKDIR_P="$ac_cv_path_mkdir -p"
 
7339
+  else
 
7340
+    # As a last resort, use the slow shell script.  Don't cache a
 
7341
+    # value for MKDIR_P within a source directory, because that will
 
7342
+    # break other packages using the cache if that directory is
 
7343
+    # removed, or if the value is a relative name.
 
7344
+    MKDIR_P="$ac_install_sh -d"
 
7345
+  fi
 
7346
+fi
 
7347
+{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $MKDIR_P" >&5
 
7348
+$as_echo "$MKDIR_P" >&6; }
 
7349
+
 
7350
+mkdir_p="$MKDIR_P"
 
7351
+case $mkdir_p in
 
7352
+  [\\/$]* | ?:[\\/]*) ;;
 
7353
+  */*) mkdir_p="\$(top_builddir)/$mkdir_p" ;;
 
7354
+esac
 
7355
+
 
7356
+for ac_prog in gawk mawk nawk awk
 
7357
+do
 
7358
+  # Extract the first word of "$ac_prog", so it can be a program name with args.
 
7359
+set dummy $ac_prog; ac_word=$2
 
7360
+{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
 
7361
+$as_echo_n "checking for $ac_word... " >&6; }
 
7362
+if ${ac_cv_prog_AWK+:} false; then :
 
7363
+  $as_echo_n "(cached) " >&6
 
7364
+else
 
7365
+  if test -n "$AWK"; then
 
7366
+  ac_cv_prog_AWK="$AWK" # Let the user override the test.
 
7367
+else
 
7368
+as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
 
7369
+for as_dir in $PATH
 
7370
+do
 
7371
+  IFS=$as_save_IFS
 
7372
+  test -z "$as_dir" && as_dir=.
 
7373
+    for ac_exec_ext in '' $ac_executable_extensions; do
 
7374
+  if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then
 
7375
+    ac_cv_prog_AWK="$ac_prog"
 
7376
+    $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5
 
7377
+    break 2
 
7378
+  fi
 
7379
+done
 
7380
+  done
 
7381
+IFS=$as_save_IFS
 
7382
+
 
7383
+fi
 
7384
+fi
 
7385
+AWK=$ac_cv_prog_AWK
 
7386
+if test -n "$AWK"; then
 
7387
+  { $as_echo "$as_me:${as_lineno-$LINENO}: result: $AWK" >&5
 
7388
+$as_echo "$AWK" >&6; }
 
7389
+else
 
7390
+  { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5
 
7391
+$as_echo "no" >&6; }
 
7392
+fi
 
7393
+
 
7394
+
 
7395
+  test -n "$AWK" && break
 
7396
+done
 
7397
+
 
7398
+{ $as_echo "$as_me:${as_lineno-$LINENO}: checking whether ${MAKE-make} sets \$(MAKE)" >&5
 
7399
+$as_echo_n "checking whether ${MAKE-make} sets \$(MAKE)... " >&6; }
 
7400
+set x ${MAKE-make}
 
7401
+ac_make=`$as_echo "$2" | sed 's/+/p/g; s/[^a-zA-Z0-9_]/_/g'`
 
7402
+if eval \${ac_cv_prog_make_${ac_make}_set+:} false; then :
 
7403
+  $as_echo_n "(cached) " >&6
 
7404
+else
 
7405
+  cat >conftest.make <<\_ACEOF
 
7406
+SHELL = /bin/sh
 
7407
+all:
 
7408
+       @echo '@@@%%%=$(MAKE)=@@@%%%'
 
7409
+_ACEOF
 
7410
+# GNU make sometimes prints "make[1]: Entering ...", which would confuse us.
 
7411
+case `${MAKE-make} -f conftest.make 2>/dev/null` in
 
7412
+  *@@@%%%=?*=@@@%%%*)
 
7413
+    eval ac_cv_prog_make_${ac_make}_set=yes;;
 
7414
+  *)
 
7415
+    eval ac_cv_prog_make_${ac_make}_set=no;;
 
7416
+esac
 
7417
+rm -f conftest.make
 
7418
+fi
 
7419
+if eval test \$ac_cv_prog_make_${ac_make}_set = yes; then
 
7420
+  { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5
 
7421
+$as_echo "yes" >&6; }
 
7422
+  SET_MAKE=
 
7423
+else
 
7424
+  { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5
 
7425
+$as_echo "no" >&6; }
 
7426
+  SET_MAKE="MAKE=${MAKE-make}"
 
7427
+fi
 
7428
+
 
7429
+rm -rf .tst 2>/dev/null
 
7430
+mkdir .tst 2>/dev/null
 
7431
+if test -d .tst; then
 
7432
+  am__leading_dot=.
 
7433
+else
 
7434
+  am__leading_dot=_
 
7435
+fi
 
7436
+rmdir .tst 2>/dev/null
 
7437
+
 
7438
+if test "`cd $srcdir && pwd`" != "`pwd`"; then
 
7439
+  # Use -I$(srcdir) only when $(srcdir) != ., so that make's output
 
7440
+  # is not polluted with repeated "-I."
 
7441
+  am__isrc=' -I$(srcdir)'
 
7442
+  # test to see if srcdir already configured
 
7443
+  if test -f $srcdir/config.status; then
 
7444
+    as_fn_error $? "source directory already configured; run \"make distclean\" there first" "$LINENO" 5
 
7445
+  fi
 
7446
+fi
 
7447
+
 
7448
+# test whether we have cygpath
 
7449
+if test -z "$CYGPATH_W"; then
 
7450
+  if (cygpath --version) >/dev/null 2>/dev/null; then
 
7451
+    CYGPATH_W='cygpath -w'
 
7452
+  else
 
7453
+    CYGPATH_W=echo
 
7454
+  fi
 
7455
+fi
 
7456
+
 
7457
+
 
7458
+# Define the identity of the package.
 
7459
+ PACKAGE='fcoe-utils'
 
7460
+ VERSION='1.0.9'
 
7461
+
 
7462
+
 
7463
+cat >>confdefs.h <<_ACEOF
 
7464
+@%:@define PACKAGE "$PACKAGE"
 
7465
+_ACEOF
 
7466
+
 
7467
 
7468
+cat >>confdefs.h <<_ACEOF
 
7469
+@%:@define VERSION "$VERSION"
 
7470
+_ACEOF
 
7471
+
 
7472
+# Some tools Automake needs.
 
7473
+
 
7474
+ACLOCAL=${ACLOCAL-"${am_missing_run}aclocal-${am__api_version}"}
 
7475
+
 
7476
+
 
7477
+AUTOCONF=${AUTOCONF-"${am_missing_run}autoconf"}
 
7478
+
 
7479
+
 
7480
+AUTOMAKE=${AUTOMAKE-"${am_missing_run}automake-${am__api_version}"}
 
7481
+
 
7482
+
 
7483
+AUTOHEADER=${AUTOHEADER-"${am_missing_run}autoheader"}
 
7484
+
 
7485
+
 
7486
+MAKEINFO=${MAKEINFO-"${am_missing_run}makeinfo"}
 
7487
+
 
7488
+# We need awk for the "check" target.  The system "awk" is bad on
 
7489
+# some platforms.
 
7490
+# Always define AMTAR for backward compatibility.
 
7491
+
 
7492
+AMTAR=${AMTAR-"${am_missing_run}tar"}
 
7493
+
 
7494
+am__tar='${AMTAR} chof - "$$tardir"'; am__untar='${AMTAR} xf -'
 
7495
+
 
7496
+
 
7497
+
 
7498
+
 
7499
+
 
7500
+
 
7501
+ac_ext=c
 
7502
+ac_cpp='$CPP $CPPFLAGS'
 
7503
+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5'
 
7504
+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5'
 
7505
+ac_compiler_gnu=$ac_cv_c_compiler_gnu
 
7506
+if test -n "$ac_tool_prefix"; then
 
7507
+  # Extract the first word of "${ac_tool_prefix}gcc", so it can be a program name with args.
 
7508
+set dummy ${ac_tool_prefix}gcc; ac_word=$2
 
7509
+{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
 
7510
+$as_echo_n "checking for $ac_word... " >&6; }
 
7511
+if ${ac_cv_prog_CC+:} false; then :
 
7512
+  $as_echo_n "(cached) " >&6
 
7513
+else
 
7514
+  if test -n "$CC"; then
 
7515
+  ac_cv_prog_CC="$CC" # Let the user override the test.
 
7516
+else
 
7517
+as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
 
7518
+for as_dir in $PATH
 
7519
+do
 
7520
+  IFS=$as_save_IFS
 
7521
+  test -z "$as_dir" && as_dir=.
 
7522
+    for ac_exec_ext in '' $ac_executable_extensions; do
 
7523
+  if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then
 
7524
+    ac_cv_prog_CC="${ac_tool_prefix}gcc"
 
7525
+    $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5
 
7526
+    break 2
 
7527
+  fi
 
7528
+done
 
7529
+  done
 
7530
+IFS=$as_save_IFS
 
7531
+
 
7532
+fi
 
7533
+fi
 
7534
+CC=$ac_cv_prog_CC
 
7535
+if test -n "$CC"; then
 
7536
+  { $as_echo "$as_me:${as_lineno-$LINENO}: result: $CC" >&5
 
7537
+$as_echo "$CC" >&6; }
 
7538
+else
 
7539
+  { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5
 
7540
+$as_echo "no" >&6; }
 
7541
+fi
 
7542
+
 
7543
+
 
7544
+fi
 
7545
+if test -z "$ac_cv_prog_CC"; then
 
7546
+  ac_ct_CC=$CC
 
7547
+  # Extract the first word of "gcc", so it can be a program name with args.
 
7548
+set dummy gcc; ac_word=$2
 
7549
+{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
 
7550
+$as_echo_n "checking for $ac_word... " >&6; }
 
7551
+if ${ac_cv_prog_ac_ct_CC+:} false; then :
 
7552
+  $as_echo_n "(cached) " >&6
 
7553
+else
 
7554
+  if test -n "$ac_ct_CC"; then
 
7555
+  ac_cv_prog_ac_ct_CC="$ac_ct_CC" # Let the user override the test.
 
7556
+else
 
7557
+as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
 
7558
+for as_dir in $PATH
 
7559
+do
 
7560
+  IFS=$as_save_IFS
 
7561
+  test -z "$as_dir" && as_dir=.
 
7562
+    for ac_exec_ext in '' $ac_executable_extensions; do
 
7563
+  if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then
 
7564
+    ac_cv_prog_ac_ct_CC="gcc"
 
7565
+    $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5
 
7566
+    break 2
 
7567
+  fi
 
7568
+done
 
7569
+  done
 
7570
+IFS=$as_save_IFS
 
7571
+
 
7572
+fi
 
7573
+fi
 
7574
+ac_ct_CC=$ac_cv_prog_ac_ct_CC
 
7575
+if test -n "$ac_ct_CC"; then
 
7576
+  { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_ct_CC" >&5
 
7577
+$as_echo "$ac_ct_CC" >&6; }
 
7578
+else
 
7579
+  { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5
 
7580
+$as_echo "no" >&6; }
 
7581
+fi
 
7582
+
 
7583
+  if test "x$ac_ct_CC" = x; then
 
7584
+    CC=""
 
7585
+  else
 
7586
+    case $cross_compiling:$ac_tool_warned in
 
7587
+yes:)
 
7588
+{ $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet" >&5
 
7589
+$as_echo "$as_me: WARNING: using cross tools not prefixed with host triplet" >&2;}
 
7590
+ac_tool_warned=yes ;;
 
7591
+esac
 
7592
+    CC=$ac_ct_CC
 
7593
+  fi
 
7594
+else
 
7595
+  CC="$ac_cv_prog_CC"
 
7596
+fi
 
7597
+
 
7598
+if test -z "$CC"; then
 
7599
+          if test -n "$ac_tool_prefix"; then
 
7600
+    # Extract the first word of "${ac_tool_prefix}cc", so it can be a program name with args.
 
7601
+set dummy ${ac_tool_prefix}cc; ac_word=$2
 
7602
+{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
 
7603
+$as_echo_n "checking for $ac_word... " >&6; }
 
7604
+if ${ac_cv_prog_CC+:} false; then :
 
7605
+  $as_echo_n "(cached) " >&6
 
7606
+else
 
7607
+  if test -n "$CC"; then
 
7608
+  ac_cv_prog_CC="$CC" # Let the user override the test.
 
7609
+else
 
7610
+as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
 
7611
+for as_dir in $PATH
 
7612
+do
 
7613
+  IFS=$as_save_IFS
 
7614
+  test -z "$as_dir" && as_dir=.
 
7615
+    for ac_exec_ext in '' $ac_executable_extensions; do
 
7616
+  if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then
 
7617
+    ac_cv_prog_CC="${ac_tool_prefix}cc"
 
7618
+    $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5
 
7619
+    break 2
 
7620
+  fi
 
7621
+done
 
7622
+  done
 
7623
+IFS=$as_save_IFS
 
7624
+
 
7625
+fi
 
7626
+fi
 
7627
+CC=$ac_cv_prog_CC
 
7628
+if test -n "$CC"; then
 
7629
+  { $as_echo "$as_me:${as_lineno-$LINENO}: result: $CC" >&5
 
7630
+$as_echo "$CC" >&6; }
 
7631
+else
 
7632
+  { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5
 
7633
+$as_echo "no" >&6; }
 
7634
+fi
 
7635
+
 
7636
+
 
7637
+  fi
 
7638
+fi
 
7639
+if test -z "$CC"; then
 
7640
+  # Extract the first word of "cc", so it can be a program name with args.
 
7641
+set dummy cc; ac_word=$2
 
7642
+{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
 
7643
+$as_echo_n "checking for $ac_word... " >&6; }
 
7644
+if ${ac_cv_prog_CC+:} false; then :
 
7645
+  $as_echo_n "(cached) " >&6
 
7646
+else
 
7647
+  if test -n "$CC"; then
 
7648
+  ac_cv_prog_CC="$CC" # Let the user override the test.
 
7649
+else
 
7650
+  ac_prog_rejected=no
 
7651
+as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
 
7652
+for as_dir in $PATH
 
7653
+do
 
7654
+  IFS=$as_save_IFS
 
7655
+  test -z "$as_dir" && as_dir=.
 
7656
+    for ac_exec_ext in '' $ac_executable_extensions; do
 
7657
+  if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then
 
7658
+    if test "$as_dir/$ac_word$ac_exec_ext" = "/usr/ucb/cc"; then
 
7659
+       ac_prog_rejected=yes
 
7660
+       continue
 
7661
+     fi
 
7662
+    ac_cv_prog_CC="cc"
 
7663
+    $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5
 
7664
+    break 2
 
7665
+  fi
 
7666
+done
 
7667
+  done
 
7668
+IFS=$as_save_IFS
 
7669
+
 
7670
+if test $ac_prog_rejected = yes; then
 
7671
+  # We found a bogon in the path, so make sure we never use it.
 
7672
+  set dummy $ac_cv_prog_CC
 
7673
+  shift
 
7674
+  if test $@%:@ != 0; then
 
7675
+    # We chose a different compiler from the bogus one.
 
7676
+    # However, it has the same basename, so the bogon will be chosen
 
7677
+    # first if we set CC to just the basename; use the full file name.
 
7678
+    shift
 
7679
+    ac_cv_prog_CC="$as_dir/$ac_word${1+' '}$@"
 
7680
+  fi
 
7681
+fi
 
7682
+fi
 
7683
+fi
 
7684
+CC=$ac_cv_prog_CC
 
7685
+if test -n "$CC"; then
 
7686
+  { $as_echo "$as_me:${as_lineno-$LINENO}: result: $CC" >&5
 
7687
+$as_echo "$CC" >&6; }
 
7688
+else
 
7689
+  { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5
 
7690
+$as_echo "no" >&6; }
 
7691
+fi
 
7692
+
 
7693
+
 
7694
+fi
 
7695
+if test -z "$CC"; then
 
7696
+  if test -n "$ac_tool_prefix"; then
 
7697
+  for ac_prog in cl.exe
 
7698
+  do
 
7699
+    # Extract the first word of "$ac_tool_prefix$ac_prog", so it can be a program name with args.
 
7700
+set dummy $ac_tool_prefix$ac_prog; ac_word=$2
 
7701
+{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
 
7702
+$as_echo_n "checking for $ac_word... " >&6; }
 
7703
+if ${ac_cv_prog_CC+:} false; then :
 
7704
+  $as_echo_n "(cached) " >&6
 
7705
+else
 
7706
+  if test -n "$CC"; then
 
7707
+  ac_cv_prog_CC="$CC" # Let the user override the test.
 
7708
+else
 
7709
+as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
 
7710
+for as_dir in $PATH
 
7711
+do
 
7712
+  IFS=$as_save_IFS
 
7713
+  test -z "$as_dir" && as_dir=.
 
7714
+    for ac_exec_ext in '' $ac_executable_extensions; do
 
7715
+  if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then
 
7716
+    ac_cv_prog_CC="$ac_tool_prefix$ac_prog"
 
7717
+    $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5
 
7718
+    break 2
 
7719
+  fi
 
7720
+done
 
7721
+  done
 
7722
+IFS=$as_save_IFS
 
7723
+
 
7724
+fi
 
7725
+fi
 
7726
+CC=$ac_cv_prog_CC
 
7727
+if test -n "$CC"; then
 
7728
+  { $as_echo "$as_me:${as_lineno-$LINENO}: result: $CC" >&5
 
7729
+$as_echo "$CC" >&6; }
 
7730
+else
 
7731
+  { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5
 
7732
+$as_echo "no" >&6; }
 
7733
+fi
 
7734
+
 
7735
+
 
7736
+    test -n "$CC" && break
 
7737
+  done
 
7738
+fi
 
7739
+if test -z "$CC"; then
 
7740
+  ac_ct_CC=$CC
 
7741
+  for ac_prog in cl.exe
 
7742
+do
 
7743
+  # Extract the first word of "$ac_prog", so it can be a program name with args.
 
7744
+set dummy $ac_prog; ac_word=$2
 
7745
+{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
 
7746
+$as_echo_n "checking for $ac_word... " >&6; }
 
7747
+if ${ac_cv_prog_ac_ct_CC+:} false; then :
 
7748
+  $as_echo_n "(cached) " >&6
 
7749
+else
 
7750
+  if test -n "$ac_ct_CC"; then
 
7751
+  ac_cv_prog_ac_ct_CC="$ac_ct_CC" # Let the user override the test.
 
7752
+else
 
7753
+as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
 
7754
+for as_dir in $PATH
 
7755
+do
 
7756
+  IFS=$as_save_IFS
 
7757
+  test -z "$as_dir" && as_dir=.
 
7758
+    for ac_exec_ext in '' $ac_executable_extensions; do
 
7759
+  if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then
 
7760
+    ac_cv_prog_ac_ct_CC="$ac_prog"
 
7761
+    $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5
 
7762
+    break 2
 
7763
+  fi
 
7764
+done
 
7765
+  done
 
7766
+IFS=$as_save_IFS
 
7767
+
 
7768
+fi
 
7769
+fi
 
7770
+ac_ct_CC=$ac_cv_prog_ac_ct_CC
 
7771
+if test -n "$ac_ct_CC"; then
 
7772
+  { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_ct_CC" >&5
 
7773
+$as_echo "$ac_ct_CC" >&6; }
 
7774
+else
 
7775
+  { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5
 
7776
+$as_echo "no" >&6; }
 
7777
+fi
 
7778
+
 
7779
+
 
7780
+  test -n "$ac_ct_CC" && break
 
7781
+done
 
7782
+
 
7783
+  if test "x$ac_ct_CC" = x; then
 
7784
+    CC=""
 
7785
+  else
 
7786
+    case $cross_compiling:$ac_tool_warned in
 
7787
+yes:)
 
7788
+{ $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet" >&5
 
7789
+$as_echo "$as_me: WARNING: using cross tools not prefixed with host triplet" >&2;}
 
7790
+ac_tool_warned=yes ;;
 
7791
+esac
 
7792
+    CC=$ac_ct_CC
 
7793
+  fi
 
7794
+fi
 
7795
+
 
7796
+fi
 
7797
+
 
7798
+
 
7799
+test -z "$CC" && { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5
 
7800
+$as_echo "$as_me: error: in \`$ac_pwd':" >&2;}
 
7801
+as_fn_error $? "no acceptable C compiler found in \$PATH
 
7802
+See \`config.log' for more details" "$LINENO" 5; }
 
7803
+
 
7804
+# Provide some information about the compiler.
 
7805
+$as_echo "$as_me:${as_lineno-$LINENO}: checking for C compiler version" >&5
 
7806
+set X $ac_compile
 
7807
+ac_compiler=$2
 
7808
+for ac_option in --version -v -V -qversion; do
 
7809
+  { { ac_try="$ac_compiler $ac_option >&5"
 
7810
+case "(($ac_try" in
 
7811
+  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
 
7812
+  *) ac_try_echo=$ac_try;;
 
7813
+esac
 
7814
+eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\""
 
7815
+$as_echo "$ac_try_echo"; } >&5
 
7816
+  (eval "$ac_compiler $ac_option >&5") 2>conftest.err
 
7817
+  ac_status=$?
 
7818
+  if test -s conftest.err; then
 
7819
+    sed '10a\
 
7820
+... rest of stderr output deleted ...
 
7821
+         10q' conftest.err >conftest.er1
 
7822
+    cat conftest.er1 >&5
 
7823
+  fi
 
7824
+  rm -f conftest.er1 conftest.err
 
7825
+  $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5
 
7826
+  test $ac_status = 0; }
 
7827
+done
 
7828
+
 
7829
+cat confdefs.h - <<_ACEOF >conftest.$ac_ext
 
7830
+/* end confdefs.h.  */
 
7831
+
 
7832
+int
 
7833
+main ()
 
7834
+{
 
7835
+
 
7836
+  ;
 
7837
+  return 0;
 
7838
+}
 
7839
+_ACEOF
 
7840
+ac_clean_files_save=$ac_clean_files
 
7841
+ac_clean_files="$ac_clean_files a.out a.out.dSYM a.exe b.out"
 
7842
+# Try to create an executable without -o first, disregard a.out.
 
7843
+# It will help us diagnose broken compilers, and finding out an intuition
 
7844
+# of exeext.
 
7845
+{ $as_echo "$as_me:${as_lineno-$LINENO}: checking whether the C compiler works" >&5
 
7846
+$as_echo_n "checking whether the C compiler works... " >&6; }
 
7847
+ac_link_default=`$as_echo "$ac_link" | sed 's/ -o *conftest[^ ]*//'`
 
7848
+
 
7849
+# The possible output files:
 
7850
+ac_files="a.out conftest.exe conftest a.exe a_out.exe b.out conftest.*"
 
7851
+
 
7852
+ac_rmfiles=
 
7853
+for ac_file in $ac_files
 
7854
+do
 
7855
+  case $ac_file in
 
7856
+    *.$ac_ext | *.xcoff | *.tds | *.d | *.pdb | *.xSYM | *.bb | *.bbg | *.map | *.inf | *.dSYM | *.o | *.obj ) ;;
 
7857
+    * ) ac_rmfiles="$ac_rmfiles $ac_file";;
 
7858
+  esac
 
7859
+done
 
7860
+rm -f $ac_rmfiles
 
7861
+
 
7862
+if { { ac_try="$ac_link_default"
 
7863
+case "(($ac_try" in
 
7864
+  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
 
7865
+  *) ac_try_echo=$ac_try;;
 
7866
+esac
 
7867
+eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\""
 
7868
+$as_echo "$ac_try_echo"; } >&5
 
7869
+  (eval "$ac_link_default") 2>&5
 
7870
+  ac_status=$?
 
7871
+  $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5
 
7872
+  test $ac_status = 0; }; then :
 
7873
+  # Autoconf-2.13 could set the ac_cv_exeext variable to `no'.
 
7874
+# So ignore a value of `no', otherwise this would lead to `EXEEXT = no'
 
7875
+# in a Makefile.  We should not override ac_cv_exeext if it was cached,
 
7876
+# so that the user can short-circuit this test for compilers unknown to
 
7877
+# Autoconf.
 
7878
+for ac_file in $ac_files ''
 
7879
+do
 
7880
+  test -f "$ac_file" || continue
 
7881
+  case $ac_file in
 
7882
+    *.$ac_ext | *.xcoff | *.tds | *.d | *.pdb | *.xSYM | *.bb | *.bbg | *.map | *.inf | *.dSYM | *.o | *.obj )
 
7883
+       ;;
 
7884
+    [ab].out )
 
7885
+       # We found the default executable, but exeext='' is most
 
7886
+       # certainly right.
 
7887
+       break;;
 
7888
+    *.* )
 
7889
+       if test "${ac_cv_exeext+set}" = set && test "$ac_cv_exeext" != no;
 
7890
+       then :; else
 
7891
+          ac_cv_exeext=`expr "$ac_file" : '[^.]*\(\..*\)'`
 
7892
+       fi
 
7893
+       # We set ac_cv_exeext here because the later test for it is not
 
7894
+       # safe: cross compilers may not add the suffix if given an `-o'
 
7895
+       # argument, so we may need to know it at that point already.
 
7896
+       # Even if this section looks crufty: it has the advantage of
 
7897
+       # actually working.
 
7898
+       break;;
 
7899
+    * )
 
7900
+       break;;
 
7901
+  esac
 
7902
+done
 
7903
+test "$ac_cv_exeext" = no && ac_cv_exeext=
 
7904
+
 
7905
+else
 
7906
+  ac_file=''
 
7907
+fi
 
7908
+if test -z "$ac_file"; then :
 
7909
+  { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5
 
7910
+$as_echo "no" >&6; }
 
7911
+$as_echo "$as_me: failed program was:" >&5
 
7912
+sed 's/^/| /' conftest.$ac_ext >&5
 
7913
+
 
7914
+{ { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5
 
7915
+$as_echo "$as_me: error: in \`$ac_pwd':" >&2;}
 
7916
+as_fn_error 77 "C compiler cannot create executables
 
7917
+See \`config.log' for more details" "$LINENO" 5; }
 
7918
+else
 
7919
+  { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5
 
7920
+$as_echo "yes" >&6; }
 
7921
+fi
 
7922
+{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for C compiler default output file name" >&5
 
7923
+$as_echo_n "checking for C compiler default output file name... " >&6; }
 
7924
+{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_file" >&5
 
7925
+$as_echo "$ac_file" >&6; }
 
7926
+ac_exeext=$ac_cv_exeext
 
7927
+
 
7928
+rm -f -r a.out a.out.dSYM a.exe conftest$ac_cv_exeext b.out
 
7929
+ac_clean_files=$ac_clean_files_save
 
7930
+{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for suffix of executables" >&5
 
7931
+$as_echo_n "checking for suffix of executables... " >&6; }
 
7932
+if { { ac_try="$ac_link"
 
7933
+case "(($ac_try" in
 
7934
+  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
 
7935
+  *) ac_try_echo=$ac_try;;
 
7936
+esac
 
7937
+eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\""
 
7938
+$as_echo "$ac_try_echo"; } >&5
 
7939
+  (eval "$ac_link") 2>&5
 
7940
+  ac_status=$?
 
7941
+  $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5
 
7942
+  test $ac_status = 0; }; then :
 
7943
+  # If both `conftest.exe' and `conftest' are `present' (well, observable)
 
7944
+# catch `conftest.exe'.  For instance with Cygwin, `ls conftest' will
 
7945
+# work properly (i.e., refer to `conftest.exe'), while it won't with
 
7946
+# `rm'.
 
7947
+for ac_file in conftest.exe conftest conftest.*; do
 
7948
+  test -f "$ac_file" || continue
 
7949
+  case $ac_file in
 
7950
+    *.$ac_ext | *.xcoff | *.tds | *.d | *.pdb | *.xSYM | *.bb | *.bbg | *.map | *.inf | *.dSYM | *.o | *.obj ) ;;
 
7951
+    *.* ) ac_cv_exeext=`expr "$ac_file" : '[^.]*\(\..*\)'`
 
7952
+         break;;
 
7953
+    * ) break;;
 
7954
+  esac
 
7955
+done
 
7956
+else
 
7957
+  { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5
 
7958
+$as_echo "$as_me: error: in \`$ac_pwd':" >&2;}
 
7959
+as_fn_error $? "cannot compute suffix of executables: cannot compile and link
 
7960
+See \`config.log' for more details" "$LINENO" 5; }
 
7961
+fi
 
7962
+rm -f conftest conftest$ac_cv_exeext
 
7963
+{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_exeext" >&5
 
7964
+$as_echo "$ac_cv_exeext" >&6; }
 
7965
+
 
7966
+rm -f conftest.$ac_ext
 
7967
+EXEEXT=$ac_cv_exeext
 
7968
+ac_exeext=$EXEEXT
 
7969
+cat confdefs.h - <<_ACEOF >conftest.$ac_ext
 
7970
+/* end confdefs.h.  */
 
7971
+@%:@include <stdio.h>
 
7972
+int
 
7973
+main ()
 
7974
+{
 
7975
+FILE *f = fopen ("conftest.out", "w");
 
7976
+ return ferror (f) || fclose (f) != 0;
 
7977
+
 
7978
+  ;
 
7979
+  return 0;
 
7980
+}
 
7981
+_ACEOF
 
7982
+ac_clean_files="$ac_clean_files conftest.out"
 
7983
+# Check that the compiler produces executables we can run.  If not, either
 
7984
+# the compiler is broken, or we cross compile.
 
7985
+{ $as_echo "$as_me:${as_lineno-$LINENO}: checking whether we are cross compiling" >&5
 
7986
+$as_echo_n "checking whether we are cross compiling... " >&6; }
 
7987
+if test "$cross_compiling" != yes; then
 
7988
+  { { ac_try="$ac_link"
 
7989
+case "(($ac_try" in
 
7990
+  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
 
7991
+  *) ac_try_echo=$ac_try;;
 
7992
+esac
 
7993
+eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\""
 
7994
+$as_echo "$ac_try_echo"; } >&5
 
7995
+  (eval "$ac_link") 2>&5
 
7996
+  ac_status=$?
 
7997
+  $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5
 
7998
+  test $ac_status = 0; }
 
7999
+  if { ac_try='./conftest$ac_cv_exeext'
 
8000
+  { { case "(($ac_try" in
 
8001
+  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
 
8002
+  *) ac_try_echo=$ac_try;;
 
8003
+esac
 
8004
+eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\""
 
8005
+$as_echo "$ac_try_echo"; } >&5
 
8006
+  (eval "$ac_try") 2>&5
 
8007
+  ac_status=$?
 
8008
+  $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5
 
8009
+  test $ac_status = 0; }; }; then
 
8010
+    cross_compiling=no
 
8011
+  else
 
8012
+    if test "$cross_compiling" = maybe; then
 
8013
+       cross_compiling=yes
 
8014
+    else
 
8015
+       { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5
 
8016
+$as_echo "$as_me: error: in \`$ac_pwd':" >&2;}
 
8017
+as_fn_error $? "cannot run C compiled programs.
 
8018
+If you meant to cross compile, use \`--host'.
 
8019
+See \`config.log' for more details" "$LINENO" 5; }
 
8020
+    fi
 
8021
+  fi
 
8022
+fi
 
8023
+{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $cross_compiling" >&5
 
8024
+$as_echo "$cross_compiling" >&6; }
 
8025
+
 
8026
+rm -f conftest.$ac_ext conftest$ac_cv_exeext conftest.out
 
8027
+ac_clean_files=$ac_clean_files_save
 
8028
+{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for suffix of object files" >&5
 
8029
+$as_echo_n "checking for suffix of object files... " >&6; }
 
8030
+if ${ac_cv_objext+:} false; then :
 
8031
+  $as_echo_n "(cached) " >&6
 
8032
+else
 
8033
+  cat confdefs.h - <<_ACEOF >conftest.$ac_ext
 
8034
+/* end confdefs.h.  */
 
8035
+
 
8036
+int
 
8037
+main ()
 
8038
+{
 
8039
+
 
8040
+  ;
 
8041
+  return 0;
 
8042
+}
 
8043
+_ACEOF
 
8044
+rm -f conftest.o conftest.obj
 
8045
+if { { ac_try="$ac_compile"
 
8046
+case "(($ac_try" in
 
8047
+  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
 
8048
+  *) ac_try_echo=$ac_try;;
 
8049
+esac
 
8050
+eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\""
 
8051
+$as_echo "$ac_try_echo"; } >&5
 
8052
+  (eval "$ac_compile") 2>&5
 
8053
+  ac_status=$?
 
8054
+  $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5
 
8055
+  test $ac_status = 0; }; then :
 
8056
+  for ac_file in conftest.o conftest.obj conftest.*; do
 
8057
+  test -f "$ac_file" || continue;
 
8058
+  case $ac_file in
 
8059
+    *.$ac_ext | *.xcoff | *.tds | *.d | *.pdb | *.xSYM | *.bb | *.bbg | *.map | *.inf | *.dSYM ) ;;
 
8060
+    *) ac_cv_objext=`expr "$ac_file" : '.*\.\(.*\)'`
 
8061
+       break;;
 
8062
+  esac
 
8063
+done
 
8064
+else
 
8065
+  $as_echo "$as_me: failed program was:" >&5
 
8066
+sed 's/^/| /' conftest.$ac_ext >&5
 
8067
+
 
8068
+{ { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5
 
8069
+$as_echo "$as_me: error: in \`$ac_pwd':" >&2;}
 
8070
+as_fn_error $? "cannot compute suffix of object files: cannot compile
 
8071
+See \`config.log' for more details" "$LINENO" 5; }
 
8072
+fi
 
8073
+rm -f conftest.$ac_cv_objext conftest.$ac_ext
 
8074
+fi
 
8075
+{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_objext" >&5
 
8076
+$as_echo "$ac_cv_objext" >&6; }
 
8077
+OBJEXT=$ac_cv_objext
 
8078
+ac_objext=$OBJEXT
 
8079
+{ $as_echo "$as_me:${as_lineno-$LINENO}: checking whether we are using the GNU C compiler" >&5
 
8080
+$as_echo_n "checking whether we are using the GNU C compiler... " >&6; }
 
8081
+if ${ac_cv_c_compiler_gnu+:} false; then :
 
8082
+  $as_echo_n "(cached) " >&6
 
8083
+else
 
8084
+  cat confdefs.h - <<_ACEOF >conftest.$ac_ext
 
8085
+/* end confdefs.h.  */
 
8086
+
 
8087
+int
 
8088
+main ()
 
8089
+{
 
8090
+#ifndef __GNUC__
 
8091
+       choke me
 
8092
+#endif
 
8093
+
 
8094
+  ;
 
8095
+  return 0;
 
8096
+}
 
8097
+_ACEOF
 
8098
+if ac_fn_c_try_compile "$LINENO"; then :
 
8099
+  ac_compiler_gnu=yes
 
8100
+else
 
8101
+  ac_compiler_gnu=no
 
8102
+fi
 
8103
+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext
 
8104
+ac_cv_c_compiler_gnu=$ac_compiler_gnu
 
8105
+
 
8106
+fi
 
8107
+{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_c_compiler_gnu" >&5
 
8108
+$as_echo "$ac_cv_c_compiler_gnu" >&6; }
 
8109
+if test $ac_compiler_gnu = yes; then
 
8110
+  GCC=yes
 
8111
+else
 
8112
+  GCC=
 
8113
+fi
 
8114
+ac_test_CFLAGS=${CFLAGS+set}
 
8115
+ac_save_CFLAGS=$CFLAGS
 
8116
+{ $as_echo "$as_me:${as_lineno-$LINENO}: checking whether $CC accepts -g" >&5
 
8117
+$as_echo_n "checking whether $CC accepts -g... " >&6; }
 
8118
+if ${ac_cv_prog_cc_g+:} false; then :
 
8119
+  $as_echo_n "(cached) " >&6
 
8120
+else
 
8121
+  ac_save_c_werror_flag=$ac_c_werror_flag
 
8122
+   ac_c_werror_flag=yes
 
8123
+   ac_cv_prog_cc_g=no
 
8124
+   CFLAGS="-g"
 
8125
+   cat confdefs.h - <<_ACEOF >conftest.$ac_ext
 
8126
+/* end confdefs.h.  */
 
8127
+
 
8128
+int
 
8129
+main ()
 
8130
+{
 
8131
+
 
8132
+  ;
 
8133
+  return 0;
 
8134
+}
 
8135
+_ACEOF
 
8136
+if ac_fn_c_try_compile "$LINENO"; then :
 
8137
+  ac_cv_prog_cc_g=yes
 
8138
+else
 
8139
+  CFLAGS=""
 
8140
+      cat confdefs.h - <<_ACEOF >conftest.$ac_ext
 
8141
+/* end confdefs.h.  */
 
8142
+
 
8143
+int
 
8144
+main ()
 
8145
+{
 
8146
+
 
8147
+  ;
 
8148
+  return 0;
 
8149
+}
 
8150
+_ACEOF
 
8151
+if ac_fn_c_try_compile "$LINENO"; then :
 
8152
+  
 
8153
+else
 
8154
+  ac_c_werror_flag=$ac_save_c_werror_flag
 
8155
+        CFLAGS="-g"
 
8156
+        cat confdefs.h - <<_ACEOF >conftest.$ac_ext
 
8157
+/* end confdefs.h.  */
 
8158
+
 
8159
+int
 
8160
+main ()
 
8161
+{
 
8162
+
 
8163
+  ;
 
8164
+  return 0;
 
8165
+}
 
8166
+_ACEOF
 
8167
+if ac_fn_c_try_compile "$LINENO"; then :
 
8168
+  ac_cv_prog_cc_g=yes
 
8169
+fi
 
8170
+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext
 
8171
+fi
 
8172
+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext
 
8173
+fi
 
8174
+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext
 
8175
+   ac_c_werror_flag=$ac_save_c_werror_flag
 
8176
+fi
 
8177
+{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_prog_cc_g" >&5
 
8178
+$as_echo "$ac_cv_prog_cc_g" >&6; }
 
8179
+if test "$ac_test_CFLAGS" = set; then
 
8180
+  CFLAGS=$ac_save_CFLAGS
 
8181
+elif test $ac_cv_prog_cc_g = yes; then
 
8182
+  if test "$GCC" = yes; then
 
8183
+    CFLAGS="-g -O2"
 
8184
+  else
 
8185
+    CFLAGS="-g"
 
8186
+  fi
 
8187
+else
 
8188
+  if test "$GCC" = yes; then
 
8189
+    CFLAGS="-O2"
 
8190
+  else
 
8191
+    CFLAGS=
 
8192
+  fi
 
8193
+fi
 
8194
+{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $CC option to accept ISO C89" >&5
 
8195
+$as_echo_n "checking for $CC option to accept ISO C89... " >&6; }
 
8196
+if ${ac_cv_prog_cc_c89+:} false; then :
 
8197
+  $as_echo_n "(cached) " >&6
 
8198
+else
 
8199
+  ac_cv_prog_cc_c89=no
 
8200
+ac_save_CC=$CC
 
8201
+cat confdefs.h - <<_ACEOF >conftest.$ac_ext
 
8202
+/* end confdefs.h.  */
 
8203
+#include <stdarg.h>
 
8204
+#include <stdio.h>
 
8205
+#include <sys/types.h>
 
8206
+#include <sys/stat.h>
 
8207
+/* Most of the following tests are stolen from RCS 5.7's src/conf.sh.  */
 
8208
+struct buf { int x; };
 
8209
+FILE * (*rcsopen) (struct buf *, struct stat *, int);
 
8210
+static char *e (p, i)
 
8211
+     char **p;
 
8212
+     int i;
 
8213
+{
 
8214
+  return p[i];
 
8215
+}
 
8216
+static char *f (char * (*g) (char **, int), char **p, ...)
 
8217
+{
 
8218
+  char *s;
 
8219
+  va_list v;
 
8220
+  va_start (v,p);
 
8221
+  s = g (p, va_arg (v,int));
 
8222
+  va_end (v);
 
8223
+  return s;
 
8224
+}
 
8225
+
 
8226
+/* OSF 4.0 Compaq cc is some sort of almost-ANSI by default.  It has
 
8227
+   function prototypes and stuff, but not '\xHH' hex character constants.
 
8228
+   These don't provoke an error unfortunately, instead are silently treated
 
8229
+   as 'x'.  The following induces an error, until -std is added to get
 
8230
+   proper ANSI mode.  Curiously '\x00'!='x' always comes out true, for an
 
8231
+   array size at least.  It's necessary to write '\x00'==0 to get something
 
8232
+   that's true only with -std.  */
 
8233
+int osf4_cc_array ['\x00' == 0 ? 1 : -1];
 
8234
+
 
8235
+/* IBM C 6 for AIX is almost-ANSI by default, but it replaces macro parameters
 
8236
+   inside strings and character constants.  */
 
8237
+#define FOO(x) 'x'
 
8238
+int xlc6_cc_array[FOO(a) == 'x' ? 1 : -1];
 
8239
+
 
8240
+int test (int i, double x);
 
8241
+struct s1 {int (*f) (int a);};
 
8242
+struct s2 {int (*f) (double a);};
 
8243
+int pairnames (int, char **, FILE *(*)(struct buf *, struct stat *, int), int, int);
 
8244
+int argc;
 
8245
+char **argv;
 
8246
+int
 
8247
+main ()
 
8248
+{
 
8249
+return f (e, argv, 0) != argv[0]  ||  f (e, argv, 1) != argv[1];
 
8250
+  ;
 
8251
+  return 0;
 
8252
+}
 
8253
+_ACEOF
 
8254
+for ac_arg in '' -qlanglvl=extc89 -qlanglvl=ansi -std \
 
8255
+       -Ae "-Aa -D_HPUX_SOURCE" "-Xc -D__EXTENSIONS__"
 
8256
+do
 
8257
+  CC="$ac_save_CC $ac_arg"
 
8258
+  if ac_fn_c_try_compile "$LINENO"; then :
 
8259
+  ac_cv_prog_cc_c89=$ac_arg
 
8260
+fi
 
8261
+rm -f core conftest.err conftest.$ac_objext
 
8262
+  test "x$ac_cv_prog_cc_c89" != "xno" && break
 
8263
+done
 
8264
+rm -f conftest.$ac_ext
 
8265
+CC=$ac_save_CC
 
8266
+
 
8267
+fi
 
8268
+# AC_CACHE_VAL
 
8269
+case "x$ac_cv_prog_cc_c89" in
 
8270
+  x)
 
8271
+    { $as_echo "$as_me:${as_lineno-$LINENO}: result: none needed" >&5
 
8272
+$as_echo "none needed" >&6; } ;;
 
8273
+  xno)
 
8274
+    { $as_echo "$as_me:${as_lineno-$LINENO}: result: unsupported" >&5
 
8275
+$as_echo "unsupported" >&6; } ;;
 
8276
+  *)
 
8277
+    CC="$CC $ac_cv_prog_cc_c89"
 
8278
+    { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_prog_cc_c89" >&5
 
8279
+$as_echo "$ac_cv_prog_cc_c89" >&6; } ;;
 
8280
+esac
 
8281
+if test "x$ac_cv_prog_cc_c89" != xno; then :
 
8282
+  
 
8283
+fi
 
8284
+
 
8285
+ac_ext=c
 
8286
+ac_cpp='$CPP $CPPFLAGS'
 
8287
+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5'
 
8288
+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5'
 
8289
+ac_compiler_gnu=$ac_cv_c_compiler_gnu
 
8290
+DEPDIR="${am__leading_dot}deps"
 
8291
+
 
8292
+ac_config_commands="$ac_config_commands depfiles"
 
8293
+
 
8294
+
 
8295
+am_make=${MAKE-make}
 
8296
+cat > confinc << 'END'
 
8297
+am__doit:
 
8298
+       @echo this is the am__doit target
 
8299
+.PHONY: am__doit
 
8300
+END
 
8301
+# If we don't find an include directive, just comment out the code.
 
8302
+{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for style of include used by $am_make" >&5
 
8303
+$as_echo_n "checking for style of include used by $am_make... " >&6; }
 
8304
+am__include="#"
 
8305
+am__quote=
 
8306
+_am_result=none
 
8307
+# First try GNU make style include.
 
8308
+echo "include confinc" > confmf
 
8309
+# Ignore all kinds of additional output from `make'.
 
8310
+case `$am_make -s -f confmf 2> /dev/null` in #(
 
8311
+*the\ am__doit\ target*)
 
8312
+  am__include=include
 
8313
+  am__quote=
 
8314
+  _am_result=GNU
 
8315
+  ;;
 
8316
+esac
 
8317
+# Now try BSD make style include.
 
8318
+if test "$am__include" = "#"; then
 
8319
+   echo '.include "confinc"' > confmf
 
8320
+   case `$am_make -s -f confmf 2> /dev/null` in #(
 
8321
+   *the\ am__doit\ target*)
 
8322
+     am__include=.include
 
8323
+     am__quote="\""
 
8324
+     _am_result=BSD
 
8325
+     ;;
 
8326
+   esac
 
8327
+fi
 
8328
+
 
8329
+
 
8330
+{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $_am_result" >&5
 
8331
+$as_echo "$_am_result" >&6; }
 
8332
+rm -f confinc confmf
 
8333
+
 
8334
+@%:@ Check whether --enable-dependency-tracking was given.
 
8335
+if test "${enable_dependency_tracking+set}" = set; then :
 
8336
+  enableval=$enable_dependency_tracking; 
 
8337
+fi
 
8338
+
 
8339
+if test "x$enable_dependency_tracking" != xno; then
 
8340
+  am_depcomp="$ac_aux_dir/depcomp"
 
8341
+  AMDEPBACKSLASH='\'
 
8342
+fi
 
8343
+ if test "x$enable_dependency_tracking" != xno; then
 
8344
+  AMDEP_TRUE=
 
8345
+  AMDEP_FALSE='#'
 
8346
+else
 
8347
+  AMDEP_TRUE='#'
 
8348
+  AMDEP_FALSE=
 
8349
+fi
 
8350
+
 
8351
+
 
8352
+
 
8353
+depcc="$CC"   am_compiler_list=
 
8354
+
 
8355
+{ $as_echo "$as_me:${as_lineno-$LINENO}: checking dependency style of $depcc" >&5
 
8356
+$as_echo_n "checking dependency style of $depcc... " >&6; }
 
8357
+if ${am_cv_CC_dependencies_compiler_type+:} false; then :
 
8358
+  $as_echo_n "(cached) " >&6
 
8359
+else
 
8360
+  if test -z "$AMDEP_TRUE" && test -f "$am_depcomp"; then
 
8361
+  # We make a subdir and do the tests there.  Otherwise we can end up
 
8362
+  # making bogus files that we don't know about and never remove.  For
 
8363
+  # instance it was reported that on HP-UX the gcc test will end up
 
8364
+  # making a dummy file named `D' -- because `-MD' means `put the output
 
8365
+  # in D'.
 
8366
+  mkdir conftest.dir
 
8367
+  # Copy depcomp to subdir because otherwise we won't find it if we're
 
8368
+  # using a relative directory.
 
8369
+  cp "$am_depcomp" conftest.dir
 
8370
+  cd conftest.dir
 
8371
+  # We will build objects and dependencies in a subdirectory because
 
8372
+  # it helps to detect inapplicable dependency modes.  For instance
 
8373
+  # both Tru64's cc and ICC support -MD to output dependencies as a
 
8374
+  # side effect of compilation, but ICC will put the dependencies in
 
8375
+  # the current directory while Tru64 will put them in the object
 
8376
+  # directory.
 
8377
+  mkdir sub
 
8378
+
 
8379
+  am_cv_CC_dependencies_compiler_type=none
 
8380
+  if test "$am_compiler_list" = ""; then
 
8381
+     am_compiler_list=`sed -n 's/^#*\([a-zA-Z0-9]*\))$/\1/p' < ./depcomp`
 
8382
+  fi
 
8383
+  am__universal=false
 
8384
+  case " $depcc " in #(
 
8385
+     *\ -arch\ *\ -arch\ *) am__universal=true ;;
 
8386
+     esac
 
8387
+
 
8388
+  for depmode in $am_compiler_list; do
 
8389
+    # Setup a source with many dependencies, because some compilers
 
8390
+    # like to wrap large dependency lists on column 80 (with \), and
 
8391
+    # we should not choose a depcomp mode which is confused by this.
 
8392
+    #
 
8393
+    # We need to recreate these files for each test, as the compiler may
 
8394
+    # overwrite some of them when testing with obscure command lines.
 
8395
+    # This happens at least with the AIX C compiler.
 
8396
+    : > sub/conftest.c
 
8397
+    for i in 1 2 3 4 5 6; do
 
8398
+      echo '#include "conftst'$i'.h"' >> sub/conftest.c
 
8399
+      # Using `: > sub/conftst$i.h' creates only sub/conftst1.h with
 
8400
+      # Solaris 8's {/usr,}/bin/sh.
 
8401
+      touch sub/conftst$i.h
 
8402
+    done
 
8403
+    echo "${am__include} ${am__quote}sub/conftest.Po${am__quote}" > confmf
 
8404
+
 
8405
+    # We check with `-c' and `-o' for the sake of the "dashmstdout"
 
8406
+    # mode.  It turns out that the SunPro C++ compiler does not properly
 
8407
+    # handle `-M -o', and we need to detect this.  Also, some Intel
 
8408
+    # versions had trouble with output in subdirs
 
8409
+    am__obj=sub/conftest.${OBJEXT-o}
 
8410
+    am__minus_obj="-o $am__obj"
 
8411
+    case $depmode in
 
8412
+    gcc)
 
8413
+      # This depmode causes a compiler race in universal mode.
 
8414
+      test "$am__universal" = false || continue
 
8415
+      ;;
 
8416
+    nosideeffect)
 
8417
+      # after this tag, mechanisms are not by side-effect, so they'll
 
8418
+      # only be used when explicitly requested
 
8419
+      if test "x$enable_dependency_tracking" = xyes; then
 
8420
+       continue
 
8421
+      else
 
8422
+       break
 
8423
+      fi
 
8424
+      ;;
 
8425
+    msvisualcpp | msvcmsys)
 
8426
+      # This compiler won't grok `-c -o', but also, the minuso test has
 
8427
+      # not run yet.  These depmodes are late enough in the game, and
 
8428
+      # so weak that their functioning should not be impacted.
 
8429
+      am__obj=conftest.${OBJEXT-o}
 
8430
+      am__minus_obj=
 
8431
+      ;;
 
8432
+    none) break ;;
 
8433
+    esac
 
8434
+    if depmode=$depmode \
 
8435
+       source=sub/conftest.c object=$am__obj \
 
8436
+       depfile=sub/conftest.Po tmpdepfile=sub/conftest.TPo \
 
8437
+       $SHELL ./depcomp $depcc -c $am__minus_obj sub/conftest.c \
 
8438
+         >/dev/null 2>conftest.err &&
 
8439
+       grep sub/conftst1.h sub/conftest.Po > /dev/null 2>&1 &&
 
8440
+       grep sub/conftst6.h sub/conftest.Po > /dev/null 2>&1 &&
 
8441
+       grep $am__obj sub/conftest.Po > /dev/null 2>&1 &&
 
8442
+       ${MAKE-make} -s -f confmf > /dev/null 2>&1; then
 
8443
+      # icc doesn't choke on unknown options, it will just issue warnings
 
8444
+      # or remarks (even with -Werror).  So we grep stderr for any message
 
8445
+      # that says an option was ignored or not supported.
 
8446
+      # When given -MP, icc 7.0 and 7.1 complain thusly:
 
8447
+      #   icc: Command line warning: ignoring option '-M'; no argument required
 
8448
+      # The diagnosis changed in icc 8.0:
 
8449
+      #   icc: Command line remark: option '-MP' not supported
 
8450
+      if (grep 'ignoring option' conftest.err ||
 
8451
+          grep 'not supported' conftest.err) >/dev/null 2>&1; then :; else
 
8452
+        am_cv_CC_dependencies_compiler_type=$depmode
 
8453
+        break
 
8454
+      fi
 
8455
+    fi
 
8456
+  done
 
8457
+
 
8458
+  cd ..
 
8459
+  rm -rf conftest.dir
 
8460
+else
 
8461
+  am_cv_CC_dependencies_compiler_type=none
 
8462
+fi
 
8463
+
 
8464
+fi
 
8465
+{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $am_cv_CC_dependencies_compiler_type" >&5
 
8466
+$as_echo "$am_cv_CC_dependencies_compiler_type" >&6; }
 
8467
+CCDEPMODE=depmode=$am_cv_CC_dependencies_compiler_type
 
8468
+
 
8469
+ if 
 
8470
+  test "x$enable_dependency_tracking" != xno \
 
8471
+  && test "$am_cv_CC_dependencies_compiler_type" = gcc3; then
 
8472
+  am__fastdepCC_TRUE=
 
8473
+  am__fastdepCC_FALSE='#'
 
8474
+else
 
8475
+  am__fastdepCC_TRUE='#'
 
8476
+  am__fastdepCC_FALSE=
 
8477
+fi
 
8478
+
 
8479
+
 
8480
+if test "x$CC" != xcc; then
 
8481
+  { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether $CC and cc understand -c and -o together" >&5
 
8482
+$as_echo_n "checking whether $CC and cc understand -c and -o together... " >&6; }
 
8483
+else
 
8484
+  { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether cc understands -c and -o together" >&5
 
8485
+$as_echo_n "checking whether cc understands -c and -o together... " >&6; }
 
8486
+fi
 
8487
+set dummy $CC; ac_cc=`$as_echo "$2" |
 
8488
+                     sed 's/[^a-zA-Z0-9_]/_/g;s/^[0-9]/_/'`
 
8489
+if eval \${ac_cv_prog_cc_${ac_cc}_c_o+:} false; then :
 
8490
+  $as_echo_n "(cached) " >&6
 
8491
+else
 
8492
+  cat confdefs.h - <<_ACEOF >conftest.$ac_ext
 
8493
+/* end confdefs.h.  */
 
8494
+
 
8495
+int
 
8496
+main ()
 
8497
+{
 
8498
+
 
8499
+  ;
 
8500
+  return 0;
 
8501
+}
 
8502
+_ACEOF
 
8503
+# Make sure it works both with $CC and with simple cc.
 
8504
+# We do the test twice because some compilers refuse to overwrite an
 
8505
+# existing .o file with -o, though they will create one.
 
8506
+ac_try='$CC -c conftest.$ac_ext -o conftest2.$ac_objext >&5'
 
8507
+rm -f conftest2.*
 
8508
+if { { case "(($ac_try" in
 
8509
+  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
 
8510
+  *) ac_try_echo=$ac_try;;
 
8511
+esac
 
8512
+eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\""
 
8513
+$as_echo "$ac_try_echo"; } >&5
 
8514
+  (eval "$ac_try") 2>&5
 
8515
+  ac_status=$?
 
8516
+  $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5
 
8517
+  test $ac_status = 0; } &&
 
8518
+   test -f conftest2.$ac_objext && { { case "(($ac_try" in
 
8519
+  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
 
8520
+  *) ac_try_echo=$ac_try;;
 
8521
+esac
 
8522
+eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\""
 
8523
+$as_echo "$ac_try_echo"; } >&5
 
8524
+  (eval "$ac_try") 2>&5
 
8525
+  ac_status=$?
 
8526
+  $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5
 
8527
+  test $ac_status = 0; };
 
8528
+then
 
8529
+  eval ac_cv_prog_cc_${ac_cc}_c_o=yes
 
8530
+  if test "x$CC" != xcc; then
 
8531
+    # Test first that cc exists at all.
 
8532
+    if { ac_try='cc -c conftest.$ac_ext >&5'
 
8533
+  { { case "(($ac_try" in
 
8534
+  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
 
8535
+  *) ac_try_echo=$ac_try;;
 
8536
+esac
 
8537
+eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\""
 
8538
+$as_echo "$ac_try_echo"; } >&5
 
8539
+  (eval "$ac_try") 2>&5
 
8540
+  ac_status=$?
 
8541
+  $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5
 
8542
+  test $ac_status = 0; }; }; then
 
8543
+      ac_try='cc -c conftest.$ac_ext -o conftest2.$ac_objext >&5'
 
8544
+      rm -f conftest2.*
 
8545
+      if { { case "(($ac_try" in
 
8546
+  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
 
8547
+  *) ac_try_echo=$ac_try;;
 
8548
+esac
 
8549
+eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\""
 
8550
+$as_echo "$ac_try_echo"; } >&5
 
8551
+  (eval "$ac_try") 2>&5
 
8552
+  ac_status=$?
 
8553
+  $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5
 
8554
+  test $ac_status = 0; } &&
 
8555
+        test -f conftest2.$ac_objext && { { case "(($ac_try" in
 
8556
+  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
 
8557
+  *) ac_try_echo=$ac_try;;
 
8558
+esac
 
8559
+eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\""
 
8560
+$as_echo "$ac_try_echo"; } >&5
 
8561
+  (eval "$ac_try") 2>&5
 
8562
+  ac_status=$?
 
8563
+  $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5
 
8564
+  test $ac_status = 0; };
 
8565
+      then
 
8566
+       # cc works too.
 
8567
+       :
 
8568
+      else
 
8569
+       # cc exists but doesn't like -o.
 
8570
+       eval ac_cv_prog_cc_${ac_cc}_c_o=no
 
8571
+      fi
 
8572
+    fi
 
8573
+  fi
 
8574
+else
 
8575
+  eval ac_cv_prog_cc_${ac_cc}_c_o=no
 
8576
+fi
 
8577
+rm -f core conftest*
 
8578
+
 
8579
+fi
 
8580
+if eval test \$ac_cv_prog_cc_${ac_cc}_c_o = yes; then
 
8581
+  { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5
 
8582
+$as_echo "yes" >&6; }
 
8583
+else
 
8584
+  { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5
 
8585
+$as_echo "no" >&6; }
 
8586
+  
 
8587
+$as_echo "@%:@define NO_MINUS_C_MINUS_O 1" >>confdefs.h
 
8588
+
 
8589
+fi
 
8590
+
 
8591
+# FIXME: we rely on the cache variable name because
 
8592
+# there is no other way.
 
8593
+set dummy $CC
 
8594
+am_cc=`echo $2 | sed 's/[^a-zA-Z0-9_]/_/g;s/^[0-9]/_/'`
 
8595
+eval am_t=\$ac_cv_prog_cc_${am_cc}_c_o
 
8596
+if test "$am_t" != yes; then
 
8597
+   # Losing compiler, so override with the script.
 
8598
+   # FIXME: It is wrong to rewrite CC.
 
8599
+   # But if we don't then we get into trouble of one sort or another.
 
8600
+   # A longer-term fix would be to have automake use am__CC in this case,
 
8601
+   # and then we could set am__CC="\$(top_srcdir)/compile \$(CC)"
 
8602
+   CC="$am_aux_dir/compile $CC"
 
8603
+fi
 
8604
+
 
8605
+
 
8606
+
 
8607
+
 
8608
+
 
8609
+
 
8610
+
 
8611
+
 
8612
+
 
8613
+
 
8614
+if test "x$ac_cv_env_PKG_CONFIG_set" != "xset"; then
 
8615
+       if test -n "$ac_tool_prefix"; then
 
8616
+  # Extract the first word of "${ac_tool_prefix}pkg-config", so it can be a program name with args.
 
8617
+set dummy ${ac_tool_prefix}pkg-config; ac_word=$2
 
8618
+{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
 
8619
+$as_echo_n "checking for $ac_word... " >&6; }
 
8620
+if ${ac_cv_path_PKG_CONFIG+:} false; then :
 
8621
+  $as_echo_n "(cached) " >&6
 
8622
+else
 
8623
+  case $PKG_CONFIG in
 
8624
+  [\\/]* | ?:[\\/]*)
 
8625
+  ac_cv_path_PKG_CONFIG="$PKG_CONFIG" # Let the user override the test with a path.
 
8626
+  ;;
 
8627
+  *)
 
8628
+  as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
 
8629
+for as_dir in $PATH
 
8630
+do
 
8631
+  IFS=$as_save_IFS
 
8632
+  test -z "$as_dir" && as_dir=.
 
8633
+    for ac_exec_ext in '' $ac_executable_extensions; do
 
8634
+  if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then
 
8635
+    ac_cv_path_PKG_CONFIG="$as_dir/$ac_word$ac_exec_ext"
 
8636
+    $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5
 
8637
+    break 2
 
8638
+  fi
 
8639
+done
 
8640
+  done
 
8641
+IFS=$as_save_IFS
 
8642
+
 
8643
+  ;;
 
8644
+esac
 
8645
+fi
 
8646
+PKG_CONFIG=$ac_cv_path_PKG_CONFIG
 
8647
+if test -n "$PKG_CONFIG"; then
 
8648
+  { $as_echo "$as_me:${as_lineno-$LINENO}: result: $PKG_CONFIG" >&5
 
8649
+$as_echo "$PKG_CONFIG" >&6; }
 
8650
+else
 
8651
+  { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5
 
8652
+$as_echo "no" >&6; }
 
8653
+fi
 
8654
+
 
8655
+
 
8656
+fi
 
8657
+if test -z "$ac_cv_path_PKG_CONFIG"; then
 
8658
+  ac_pt_PKG_CONFIG=$PKG_CONFIG
 
8659
+  # Extract the first word of "pkg-config", so it can be a program name with args.
 
8660
+set dummy pkg-config; ac_word=$2
 
8661
+{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
 
8662
+$as_echo_n "checking for $ac_word... " >&6; }
 
8663
+if ${ac_cv_path_ac_pt_PKG_CONFIG+:} false; then :
 
8664
+  $as_echo_n "(cached) " >&6
 
8665
+else
 
8666
+  case $ac_pt_PKG_CONFIG in
 
8667
+  [\\/]* | ?:[\\/]*)
 
8668
+  ac_cv_path_ac_pt_PKG_CONFIG="$ac_pt_PKG_CONFIG" # Let the user override the test with a path.
 
8669
+  ;;
 
8670
+  *)
 
8671
+  as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
 
8672
+for as_dir in $PATH
 
8673
+do
 
8674
+  IFS=$as_save_IFS
 
8675
+  test -z "$as_dir" && as_dir=.
 
8676
+    for ac_exec_ext in '' $ac_executable_extensions; do
 
8677
+  if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then
 
8678
+    ac_cv_path_ac_pt_PKG_CONFIG="$as_dir/$ac_word$ac_exec_ext"
 
8679
+    $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5
 
8680
+    break 2
 
8681
+  fi
 
8682
+done
 
8683
+  done
 
8684
+IFS=$as_save_IFS
 
8685
+
 
8686
+  ;;
 
8687
+esac
 
8688
+fi
 
8689
+ac_pt_PKG_CONFIG=$ac_cv_path_ac_pt_PKG_CONFIG
 
8690
+if test -n "$ac_pt_PKG_CONFIG"; then
 
8691
+  { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_pt_PKG_CONFIG" >&5
 
8692
+$as_echo "$ac_pt_PKG_CONFIG" >&6; }
 
8693
+else
 
8694
+  { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5
 
8695
+$as_echo "no" >&6; }
 
8696
+fi
 
8697
+
 
8698
+  if test "x$ac_pt_PKG_CONFIG" = x; then
 
8699
+    PKG_CONFIG=""
 
8700
+  else
 
8701
+    case $cross_compiling:$ac_tool_warned in
 
8702
+yes:)
 
8703
+{ $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet" >&5
 
8704
+$as_echo "$as_me: WARNING: using cross tools not prefixed with host triplet" >&2;}
 
8705
+ac_tool_warned=yes ;;
 
8706
+esac
 
8707
+    PKG_CONFIG=$ac_pt_PKG_CONFIG
 
8708
+  fi
 
8709
+else
 
8710
+  PKG_CONFIG="$ac_cv_path_PKG_CONFIG"
 
8711
+fi
 
8712
+
 
8713
+fi
 
8714
+if test -n "$PKG_CONFIG"; then
 
8715
+       _pkg_min_version=0.9.0
 
8716
+       { $as_echo "$as_me:${as_lineno-$LINENO}: checking pkg-config is at least version $_pkg_min_version" >&5
 
8717
+$as_echo_n "checking pkg-config is at least version $_pkg_min_version... " >&6; }
 
8718
+       if $PKG_CONFIG --atleast-pkgconfig-version $_pkg_min_version; then
 
8719
+               { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5
 
8720
+$as_echo "yes" >&6; }
 
8721
+       else
 
8722
+               { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5
 
8723
+$as_echo "no" >&6; }
 
8724
+               PKG_CONFIG=""
 
8725
+       fi
 
8726
+fi
 
8727
+
 
8728
+pkg_failed=no
 
8729
+{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for HBAAPI" >&5
 
8730
+$as_echo_n "checking for HBAAPI... " >&6; }
 
8731
+
 
8732
+if test -n "$HBAAPI_CFLAGS"; then
 
8733
+    pkg_cv_HBAAPI_CFLAGS="$HBAAPI_CFLAGS"
 
8734
+ elif test -n "$PKG_CONFIG"; then
 
8735
+    if test -n "$PKG_CONFIG" && \
 
8736
+    { { $as_echo "$as_me:${as_lineno-$LINENO}: \$PKG_CONFIG --exists --print-errors \"HBAAPI\""; } >&5
 
8737
+  ($PKG_CONFIG --exists --print-errors "HBAAPI") 2>&5
 
8738
+  ac_status=$?
 
8739
+  $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5
 
8740
+  test $ac_status = 0; }; then
 
8741
+  pkg_cv_HBAAPI_CFLAGS=`$PKG_CONFIG --cflags "HBAAPI" 2>/dev/null`
 
8742
+                     test "x$?" != "x0" && pkg_failed=yes 
 
8743
+else
 
8744
+  pkg_failed=yes
 
8745
+fi
 
8746
+ else
 
8747
+    pkg_failed=untried
 
8748
+fi
 
8749
+if test -n "$HBAAPI_LIBS"; then
 
8750
+    pkg_cv_HBAAPI_LIBS="$HBAAPI_LIBS"
 
8751
+ elif test -n "$PKG_CONFIG"; then
 
8752
+    if test -n "$PKG_CONFIG" && \
 
8753
+    { { $as_echo "$as_me:${as_lineno-$LINENO}: \$PKG_CONFIG --exists --print-errors \"HBAAPI\""; } >&5
 
8754
+  ($PKG_CONFIG --exists --print-errors "HBAAPI") 2>&5
 
8755
+  ac_status=$?
 
8756
+  $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5
 
8757
+  test $ac_status = 0; }; then
 
8758
+  pkg_cv_HBAAPI_LIBS=`$PKG_CONFIG --libs "HBAAPI" 2>/dev/null`
 
8759
+                     test "x$?" != "x0" && pkg_failed=yes 
 
8760
+else
 
8761
+  pkg_failed=yes
 
8762
+fi
 
8763
+ else
 
8764
+    pkg_failed=untried
 
8765
+fi
 
8766
+
 
8767
+
 
8768
+
 
8769
+if test $pkg_failed = yes; then
 
8770
+       { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5
 
8771
+$as_echo "no" >&6; }
 
8772
+        
 
8773
+if $PKG_CONFIG --atleast-pkgconfig-version 0.20; then
 
8774
+        _pkg_short_errors_supported=yes
 
8775
+else
 
8776
+        _pkg_short_errors_supported=no
 
8777
+fi
 
8778
+        if test $_pkg_short_errors_supported = yes; then
 
8779
+               HBAAPI_PKG_ERRORS=`$PKG_CONFIG --short-errors --print-errors --cflags --libs "HBAAPI" 2>&1`
 
8780
+        else 
 
8781
+               HBAAPI_PKG_ERRORS=`$PKG_CONFIG --print-errors --cflags --libs "HBAAPI" 2>&1`
 
8782
+        fi
 
8783
+       # Put the nasty error message in config.log where it belongs
 
8784
+       echo "$HBAAPI_PKG_ERRORS" >&5
 
8785
+
 
8786
+       as_fn_error $? "Package requirements (HBAAPI) were not met:
 
8787
+
 
8788
+$HBAAPI_PKG_ERRORS
 
8789
+
 
8790
+Consider adjusting the PKG_CONFIG_PATH environment variable if you
 
8791
+installed software in a non-standard prefix.
 
8792
+
 
8793
+Alternatively, you may set the environment variables HBAAPI_CFLAGS
 
8794
+and HBAAPI_LIBS to avoid the need to call pkg-config.
 
8795
+See the pkg-config man page for more details." "$LINENO" 5        
 
8796
+elif test $pkg_failed = untried; then
 
8797
+       { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5
 
8798
+$as_echo "no" >&6; }
 
8799
+       { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5
 
8800
+$as_echo "$as_me: error: in \`$ac_pwd':" >&2;}
 
8801
+as_fn_error $? "The pkg-config script could not be found or is too old.  Make sure it
 
8802
+is in your PATH or set the PKG_CONFIG environment variable to the full
 
8803
+path to pkg-config.
 
8804
+
 
8805
+Alternatively, you may set the environment variables HBAAPI_CFLAGS
 
8806
+and HBAAPI_LIBS to avoid the need to call pkg-config.
 
8807
+See the pkg-config man page for more details.
 
8808
+
 
8809
+To get pkg-config, see <http://pkg-config.freedesktop.org/>.
 
8810
+See \`config.log' for more details" "$LINENO" 5; }        
 
8811
+else
 
8812
+       HBAAPI_CFLAGS=$pkg_cv_HBAAPI_CFLAGS
 
8813
+       HBAAPI_LIBS=$pkg_cv_HBAAPI_LIBS
 
8814
+        { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5
 
8815
+$as_echo "yes" >&6; }
 
8816
+       
 
8817
+fi
 
8818
+
 
8819
+
 
8820
+
 
8821
+
 
8822
+@%:@ Check whether --with-dcb was given.
 
8823
+if test "${with_dcb+set}" = set; then :
 
8824
+  withval=$with_dcb; 
 
8825
+else
 
8826
+  with_dcb=yes
 
8827
+fi
 
8828
+
 
8829
+
 
8830
+ if test "X$with_dcb" != Xno; then
 
8831
+  WITH_DCB_TRUE=
 
8832
+  WITH_DCB_FALSE='#'
 
8833
+else
 
8834
+  WITH_DCB_TRUE='#'
 
8835
+  WITH_DCB_FALSE=
 
8836
+fi
 
8837
+
 
8838
+
 
8839
+if test "X$with_dcb" != Xno; then :
 
8840
+  
 
8841
+pkg_failed=no
 
8842
+{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for DCBD" >&5
 
8843
+$as_echo_n "checking for DCBD... " >&6; }
 
8844
+
 
8845
+if test -n "$DCBD_CFLAGS"; then
 
8846
+    pkg_cv_DCBD_CFLAGS="$DCBD_CFLAGS"
 
8847
+ elif test -n "$PKG_CONFIG"; then
 
8848
+    if test -n "$PKG_CONFIG" && \
 
8849
+    { { $as_echo "$as_me:${as_lineno-$LINENO}: \$PKG_CONFIG --exists --print-errors \"dcbd\""; } >&5
 
8850
+  ($PKG_CONFIG --exists --print-errors "dcbd") 2>&5
 
8851
+  ac_status=$?
 
8852
+  $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5
 
8853
+  test $ac_status = 0; }; then
 
8854
+  pkg_cv_DCBD_CFLAGS=`$PKG_CONFIG --cflags "dcbd" 2>/dev/null`
 
8855
+                     test "x$?" != "x0" && pkg_failed=yes 
 
8856
+else
 
8857
+  pkg_failed=yes
 
8858
+fi
 
8859
+ else
 
8860
+    pkg_failed=untried
 
8861
+fi
 
8862
+if test -n "$DCBD_LIBS"; then
 
8863
+    pkg_cv_DCBD_LIBS="$DCBD_LIBS"
 
8864
+ elif test -n "$PKG_CONFIG"; then
 
8865
+    if test -n "$PKG_CONFIG" && \
 
8866
+    { { $as_echo "$as_me:${as_lineno-$LINENO}: \$PKG_CONFIG --exists --print-errors \"dcbd\""; } >&5
 
8867
+  ($PKG_CONFIG --exists --print-errors "dcbd") 2>&5
 
8868
+  ac_status=$?
 
8869
+  $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5
 
8870
+  test $ac_status = 0; }; then
 
8871
+  pkg_cv_DCBD_LIBS=`$PKG_CONFIG --libs "dcbd" 2>/dev/null`
 
8872
+                     test "x$?" != "x0" && pkg_failed=yes 
 
8873
+else
 
8874
+  pkg_failed=yes
 
8875
+fi
 
8876
+ else
 
8877
+    pkg_failed=untried
 
8878
+fi
 
8879
+
 
8880
+
 
8881
+
 
8882
+if test $pkg_failed = yes; then
 
8883
+       { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5
 
8884
+$as_echo "no" >&6; }
 
8885
+        
 
8886
+if $PKG_CONFIG --atleast-pkgconfig-version 0.20; then
 
8887
+        _pkg_short_errors_supported=yes
 
8888
+else
 
8889
+        _pkg_short_errors_supported=no
 
8890
+fi
 
8891
+        if test $_pkg_short_errors_supported = yes; then
 
8892
+               DCBD_PKG_ERRORS=`$PKG_CONFIG --short-errors --print-errors --cflags --libs "dcbd" 2>&1`
 
8893
+        else 
 
8894
+               DCBD_PKG_ERRORS=`$PKG_CONFIG --print-errors --cflags --libs "dcbd" 2>&1`
 
8895
+        fi
 
8896
+       # Put the nasty error message in config.log where it belongs
 
8897
+       echo "$DCBD_PKG_ERRORS" >&5
 
8898
+
 
8899
+       as_fn_error $? "Package requirements (dcbd) were not met:
 
8900
+
 
8901
+$DCBD_PKG_ERRORS
 
8902
+
 
8903
+Consider adjusting the PKG_CONFIG_PATH environment variable if you
 
8904
+installed software in a non-standard prefix.
 
8905
+
 
8906
+Alternatively, you may set the environment variables DCBD_CFLAGS
 
8907
+and DCBD_LIBS to avoid the need to call pkg-config.
 
8908
+See the pkg-config man page for more details." "$LINENO" 5        
 
8909
+elif test $pkg_failed = untried; then
 
8910
+       { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5
 
8911
+$as_echo "no" >&6; }
 
8912
+       { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5
 
8913
+$as_echo "$as_me: error: in \`$ac_pwd':" >&2;}
 
8914
+as_fn_error $? "The pkg-config script could not be found or is too old.  Make sure it
 
8915
+is in your PATH or set the PKG_CONFIG environment variable to the full
 
8916
+path to pkg-config.
 
8917
+
 
8918
+Alternatively, you may set the environment variables DCBD_CFLAGS
 
8919
+and DCBD_LIBS to avoid the need to call pkg-config.
 
8920
+See the pkg-config man page for more details.
 
8921
+
 
8922
+To get pkg-config, see <http://pkg-config.freedesktop.org/>.
 
8923
+See \`config.log' for more details" "$LINENO" 5; }        
 
8924
+else
 
8925
+       DCBD_CFLAGS=$pkg_cv_DCBD_CFLAGS
 
8926
+       DCBD_LIBS=$pkg_cv_DCBD_LIBS
 
8927
+        { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5
 
8928
+$as_echo "yes" >&6; }
 
8929
+       
 
8930
+fi
 
8931
+       
 
8932
+fi
 
8933
+
 
8934
+ac_config_files="$ac_config_files Makefile fcoeplumb fcoe-utils.spec fcoe_utils.h"
 
8935
+
 
8936
+cat >confcache <<\_ACEOF
 
8937
+# This file is a shell script that caches the results of configure
 
8938
+# tests run on this system so they can be shared between configure
 
8939
+# scripts and configure runs, see configure's option --config-cache.
 
8940
+# It is not useful on other systems.  If it contains results you don't
 
8941
+# want to keep, you may remove or edit it.
 
8942
+#
 
8943
+# config.status only pays attention to the cache file if you give it
 
8944
+# the --recheck option to rerun configure.
 
8945
+#
 
8946
+# `ac_cv_env_foo' variables (set or unset) will be overridden when
 
8947
+# loading this file, other *unset* `ac_cv_foo' will be assigned the
 
8948
+# following values.
 
8949
+
 
8950
+_ACEOF
 
8951
+
 
8952
+# The following way of writing the cache mishandles newlines in values,
 
8953
+# but we know of no workaround that is simple, portable, and efficient.
 
8954
+# So, we kill variables containing newlines.
 
8955
+# Ultrix sh set writes to stderr and can't be redirected directly,
 
8956
+# and sets the high bit in the cache file unless we assign to the vars.
 
8957
+(
 
8958
+  for ac_var in `(set) 2>&1 | sed -n 's/^\([a-zA-Z_][a-zA-Z0-9_]*\)=.*/\1/p'`; do
 
8959
+    eval ac_val=\$$ac_var
 
8960
+    case $ac_val in #(
 
8961
+    *${as_nl}*)
 
8962
+      case $ac_var in #(
 
8963
+      *_cv_*) { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: cache variable $ac_var contains a newline" >&5
 
8964
+$as_echo "$as_me: WARNING: cache variable $ac_var contains a newline" >&2;} ;;
 
8965
+      esac
 
8966
+      case $ac_var in #(
 
8967
+      _ | IFS | as_nl) ;; #(
 
8968
+      BASH_ARGV | BASH_SOURCE) eval $ac_var= ;; #(
 
8969
+      *) { eval $ac_var=; unset $ac_var;} ;;
 
8970
+      esac ;;
 
8971
+    esac
 
8972
+  done
 
8973
+
 
8974
+  (set) 2>&1 |
 
8975
+    case $as_nl`(ac_space=' '; set) 2>&1` in #(
 
8976
+    *${as_nl}ac_space=\ *)
 
8977
+      # `set' does not quote correctly, so add quotes: double-quote
 
8978
+      # substitution turns \\\\ into \\, and sed turns \\ into \.
 
8979
+      sed -n \
 
8980
+       "s/'/'\\\\''/g;
 
8981
+         s/^\\([_$as_cr_alnum]*_cv_[_$as_cr_alnum]*\\)=\\(.*\\)/\\1='\\2'/p"
 
8982
+      ;; #(
 
8983
+    *)
 
8984
+      # `set' quotes correctly as required by POSIX, so do not add quotes.
 
8985
+      sed -n "/^[_$as_cr_alnum]*_cv_[_$as_cr_alnum]*=/p"
 
8986
+      ;;
 
8987
+    esac |
 
8988
+    sort
 
8989
+) |
 
8990
+  sed '
 
8991
+     /^ac_cv_env_/b end
 
8992
+     t clear
 
8993
+     :clear
 
8994
+     s/^\([^=]*\)=\(.*[{}].*\)$/test "${\1+set}" = set || &/
 
8995
+     t end
 
8996
+     s/^\([^=]*\)=\(.*\)$/\1=${\1=\2}/
 
8997
+     :end' >>confcache
 
8998
+if diff "$cache_file" confcache >/dev/null 2>&1; then :; else
 
8999
+  if test -w "$cache_file"; then
 
9000
+    if test "x$cache_file" != "x/dev/null"; then
 
9001
+      { $as_echo "$as_me:${as_lineno-$LINENO}: updating cache $cache_file" >&5
 
9002
+$as_echo "$as_me: updating cache $cache_file" >&6;}
 
9003
+      if test ! -f "$cache_file" || test -h "$cache_file"; then
 
9004
+       cat confcache >"$cache_file"
 
9005
+      else
 
9006
+        case $cache_file in #(
 
9007
+        */* | ?:*)
 
9008
+         mv -f confcache "$cache_file"$$ &&
 
9009
+         mv -f "$cache_file"$$ "$cache_file" ;; #(
 
9010
+        *)
 
9011
+         mv -f confcache "$cache_file" ;;
 
9012
+       esac
 
9013
+      fi
 
9014
+    fi
 
9015
+  else
 
9016
+    { $as_echo "$as_me:${as_lineno-$LINENO}: not updating unwritable cache $cache_file" >&5
 
9017
+$as_echo "$as_me: not updating unwritable cache $cache_file" >&6;}
 
9018
+  fi
 
9019
+fi
 
9020
+rm -f confcache
 
9021
+
 
9022
+test "x$prefix" = xNONE && prefix=$ac_default_prefix
 
9023
+# Let make expand exec_prefix.
 
9024
+test "x$exec_prefix" = xNONE && exec_prefix='${prefix}'
 
9025
+
 
9026
+# Transform confdefs.h into DEFS.
 
9027
+# Protect against shell expansion while executing Makefile rules.
 
9028
+# Protect against Makefile macro expansion.
 
9029
+#
 
9030
+# If the first sed substitution is executed (which looks for macros that
 
9031
+# take arguments), then branch to the quote section.  Otherwise,
 
9032
+# look for a macro that doesn't take arguments.
 
9033
+ac_script='
 
9034
+:mline
 
9035
+/\\$/{
 
9036
+ N
 
9037
+ s,\\\n,,
 
9038
+ b mline
 
9039
+}
 
9040
+t clear
 
9041
+:clear
 
9042
+s/^[    ]*#[    ]*define[       ][      ]*\([^  (][^    (]*([^)]*)\)[   ]*\(.*\)/-D\1=\2/g
 
9043
+t quote
 
9044
+s/^[    ]*#[    ]*define[       ][      ]*\([^  ][^     ]*\)[   ]*\(.*\)/-D\1=\2/g
 
9045
+t quote
 
9046
+b any
 
9047
+:quote
 
9048
+s/[     `~#$^&*(){}\\|;'\''"<>?]/\\&/g
 
9049
+s/\[/\\&/g
 
9050
+s/\]/\\&/g
 
9051
+s/\$/$$/g
 
9052
+H
 
9053
+:any
 
9054
+${
 
9055
+       g
 
9056
+       s/^\n//
 
9057
+       s/\n/ /g
 
9058
+       p
 
9059
+}
 
9060
+'
 
9061
+DEFS=`sed -n "$ac_script" confdefs.h`
 
9062
+
 
9063
+
 
9064
+ac_libobjs=
 
9065
+ac_ltlibobjs=
 
9066
+U=
 
9067
+for ac_i in : $LIB@&t@OBJS; do test "x$ac_i" = x: && continue
 
9068
+  # 1. Remove the extension, and $U if already installed.
 
9069
+  ac_script='s/\$U\././;s/\.o$//;s/\.obj$//'
 
9070
+  ac_i=`$as_echo "$ac_i" | sed "$ac_script"`
 
9071
+  # 2. Prepend LIBOBJDIR.  When used with automake>=1.10 LIBOBJDIR
 
9072
+  #    will be set to the directory where LIBOBJS objects are built.
 
9073
+  as_fn_append ac_libobjs " \${LIBOBJDIR}$ac_i\$U.$ac_objext"
 
9074
+  as_fn_append ac_ltlibobjs " \${LIBOBJDIR}$ac_i"'$U.lo'
 
9075
+done
 
9076
+LIB@&t@OBJS=$ac_libobjs
 
9077
+
 
9078
+LTLIBOBJS=$ac_ltlibobjs
 
9079
+
 
9080
+
 
9081
+ if test -n "$EXEEXT"; then
 
9082
+  am__EXEEXT_TRUE=
 
9083
+  am__EXEEXT_FALSE='#'
 
9084
+else
 
9085
+  am__EXEEXT_TRUE='#'
 
9086
+  am__EXEEXT_FALSE=
 
9087
+fi
 
9088
+
 
9089
+if test -z "${AMDEP_TRUE}" && test -z "${AMDEP_FALSE}"; then
 
9090
+  as_fn_error $? "conditional \"AMDEP\" was never defined.
 
9091
+Usually this means the macro was only invoked conditionally." "$LINENO" 5
 
9092
+fi
 
9093
+if test -z "${am__fastdepCC_TRUE}" && test -z "${am__fastdepCC_FALSE}"; then
 
9094
+  as_fn_error $? "conditional \"am__fastdepCC\" was never defined.
 
9095
+Usually this means the macro was only invoked conditionally." "$LINENO" 5
 
9096
+fi
 
9097
+if test -z "${WITH_DCB_TRUE}" && test -z "${WITH_DCB_FALSE}"; then
 
9098
+  as_fn_error $? "conditional \"WITH_DCB\" was never defined.
 
9099
+Usually this means the macro was only invoked conditionally." "$LINENO" 5
 
9100
+fi
 
9101
+
 
9102
+: "${CONFIG_STATUS=./config.status}"
 
9103
+ac_write_fail=0
 
9104
+ac_clean_files_save=$ac_clean_files
 
9105
+ac_clean_files="$ac_clean_files $CONFIG_STATUS"
 
9106
+{ $as_echo "$as_me:${as_lineno-$LINENO}: creating $CONFIG_STATUS" >&5
 
9107
+$as_echo "$as_me: creating $CONFIG_STATUS" >&6;}
 
9108
+as_write_fail=0
 
9109
+cat >$CONFIG_STATUS <<_ASEOF || as_write_fail=1
 
9110
+#! $SHELL
 
9111
+# Generated by $as_me.
 
9112
+# Run this file to recreate the current configuration.
 
9113
+# Compiler output produced by configure, useful for debugging
 
9114
+# configure, is in config.log if it exists.
 
9115
+
 
9116
+debug=false
 
9117
+ac_cs_recheck=false
 
9118
+ac_cs_silent=false
 
9119
+
 
9120
+SHELL=\${CONFIG_SHELL-$SHELL}
 
9121
+export SHELL
 
9122
+_ASEOF
 
9123
+cat >>$CONFIG_STATUS <<\_ASEOF || as_write_fail=1
 
9124
+## -------------------- ##
 
9125
+## M4sh Initialization. ##
 
9126
+## -------------------- ##
 
9127
+
 
9128
+# Be more Bourne compatible
 
9129
+DUALCASE=1; export DUALCASE # for MKS sh
 
9130
+if test -n "${ZSH_VERSION+set}" && (emulate sh) >/dev/null 2>&1; then :
 
9131
+  emulate sh
 
9132
+  NULLCMD=:
 
9133
+  # Pre-4.2 versions of Zsh do word splitting on ${1+"$@"}, which
 
9134
+  # is contrary to our usage.  Disable this feature.
 
9135
+  alias -g '${1+"$@"}'='"$@"'
 
9136
+  setopt NO_GLOB_SUBST
 
9137
+else
 
9138
+  case `(set -o) 2>/dev/null` in @%:@(
 
9139
+  *posix*) :
 
9140
+    set -o posix ;; @%:@(
 
9141
+  *) :
 
9142
+     ;;
 
9143
+esac
 
9144
+fi
 
9145
+
 
9146
+
 
9147
+as_nl='
 
9148
+'
 
9149
+export as_nl
 
9150
+# Printing a long string crashes Solaris 7 /usr/bin/printf.
 
9151
+as_echo='\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\'
 
9152
+as_echo=$as_echo$as_echo$as_echo$as_echo$as_echo
 
9153
+as_echo=$as_echo$as_echo$as_echo$as_echo$as_echo$as_echo
 
9154
+# Prefer a ksh shell builtin over an external printf program on Solaris,
 
9155
+# but without wasting forks for bash or zsh.
 
9156
+if test -z "$BASH_VERSION$ZSH_VERSION" \
 
9157
+    && (test "X`print -r -- $as_echo`" = "X$as_echo") 2>/dev/null; then
 
9158
+  as_echo='print -r --'
 
9159
+  as_echo_n='print -rn --'
 
9160
+elif (test "X`printf %s $as_echo`" = "X$as_echo") 2>/dev/null; then
 
9161
+  as_echo='printf %s\n'
 
9162
+  as_echo_n='printf %s'
 
9163
+else
 
9164
+  if test "X`(/usr/ucb/echo -n -n $as_echo) 2>/dev/null`" = "X-n $as_echo"; then
 
9165
+    as_echo_body='eval /usr/ucb/echo -n "$1$as_nl"'
 
9166
+    as_echo_n='/usr/ucb/echo -n'
 
9167
+  else
 
9168
+    as_echo_body='eval expr "X$1" : "X\\(.*\\)"'
 
9169
+    as_echo_n_body='eval
 
9170
+      arg=$1;
 
9171
+      case $arg in @%:@(
 
9172
+      *"$as_nl"*)
 
9173
+       expr "X$arg" : "X\\(.*\\)$as_nl";
 
9174
+       arg=`expr "X$arg" : ".*$as_nl\\(.*\\)"`;;
 
9175
+      esac;
 
9176
+      expr "X$arg" : "X\\(.*\\)" | tr -d "$as_nl"
 
9177
+    '
 
9178
+    export as_echo_n_body
 
9179
+    as_echo_n='sh -c $as_echo_n_body as_echo'
 
9180
+  fi
 
9181
+  export as_echo_body
 
9182
+  as_echo='sh -c $as_echo_body as_echo'
 
9183
+fi
 
9184
+
 
9185
+# The user is always right.
 
9186
+if test "${PATH_SEPARATOR+set}" != set; then
 
9187
+  PATH_SEPARATOR=:
 
9188
+  (PATH='/bin;/bin'; FPATH=$PATH; sh -c :) >/dev/null 2>&1 && {
 
9189
+    (PATH='/bin:/bin'; FPATH=$PATH; sh -c :) >/dev/null 2>&1 ||
 
9190
+      PATH_SEPARATOR=';'
 
9191
+  }
 
9192
+fi
 
9193
+
 
9194
+
 
9195
+# IFS
 
9196
+# We need space, tab and new line, in precisely that order.  Quoting is
 
9197
+# there to prevent editors from complaining about space-tab.
 
9198
+# (If _AS_PATH_WALK were called with IFS unset, it would disable word
 
9199
+# splitting by setting IFS to empty value.)
 
9200
+IFS=" ""       $as_nl"
 
9201
+
 
9202
+# Find who we are.  Look in the path if we contain no directory separator.
 
9203
+as_myself=
 
9204
+case $0 in @%:@((
 
9205
+  *[\\/]* ) as_myself=$0 ;;
 
9206
+  *) as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
 
9207
+for as_dir in $PATH
 
9208
+do
 
9209
+  IFS=$as_save_IFS
 
9210
+  test -z "$as_dir" && as_dir=.
 
9211
+    test -r "$as_dir/$0" && as_myself=$as_dir/$0 && break
 
9212
+  done
 
9213
+IFS=$as_save_IFS
 
9214
+
 
9215
+     ;;
 
9216
+esac
 
9217
+# We did not find ourselves, most probably we were run as `sh COMMAND'
 
9218
+# in which case we are not to be found in the path.
 
9219
+if test "x$as_myself" = x; then
 
9220
+  as_myself=$0
 
9221
+fi
 
9222
+if test ! -f "$as_myself"; then
 
9223
+  $as_echo "$as_myself: error: cannot find myself; rerun with an absolute file name" >&2
 
9224
+  exit 1
 
9225
+fi
 
9226
+
 
9227
+# Unset variables that we do not need and which cause bugs (e.g. in
 
9228
+# pre-3.0 UWIN ksh).  But do not cause bugs in bash 2.01; the "|| exit 1"
 
9229
+# suppresses any "Segmentation fault" message there.  '((' could
 
9230
+# trigger a bug in pdksh 5.2.14.
 
9231
+for as_var in BASH_ENV ENV MAIL MAILPATH
 
9232
+do eval test x\${$as_var+set} = xset \
 
9233
+  && ( (unset $as_var) || exit 1) >/dev/null 2>&1 && unset $as_var || :
 
9234
+done
 
9235
+PS1='$ '
 
9236
+PS2='> '
 
9237
+PS4='+ '
 
9238
+
 
9239
+# NLS nuisances.
 
9240
+LC_ALL=C
 
9241
+export LC_ALL
 
9242
+LANGUAGE=C
 
9243
+export LANGUAGE
 
9244
+
 
9245
+# CDPATH.
 
9246
+(unset CDPATH) >/dev/null 2>&1 && unset CDPATH
 
9247
+
 
9248
+
 
9249
+@%:@ as_fn_error STATUS ERROR [LINENO LOG_FD]
 
9250
+@%:@ ----------------------------------------
 
9251
+@%:@ Output "`basename @S|@0`: error: ERROR" to stderr. If LINENO and LOG_FD are
 
9252
+@%:@ provided, also output the error to LOG_FD, referencing LINENO. Then exit the
 
9253
+@%:@ script with STATUS, using 1 if that was 0.
 
9254
+as_fn_error ()
 
9255
+{
 
9256
+  as_status=$1; test $as_status -eq 0 && as_status=1
 
9257
+  if test "$4"; then
 
9258
+    as_lineno=${as_lineno-"$3"} as_lineno_stack=as_lineno_stack=$as_lineno_stack
 
9259
+    $as_echo "$as_me:${as_lineno-$LINENO}: error: $2" >&$4
 
9260
+  fi
 
9261
+  $as_echo "$as_me: error: $2" >&2
 
9262
+  as_fn_exit $as_status
 
9263
+} @%:@ as_fn_error
 
9264
+
 
9265
+
 
9266
+@%:@ as_fn_set_status STATUS
 
9267
+@%:@ -----------------------
 
9268
+@%:@ Set @S|@? to STATUS, without forking.
 
9269
+as_fn_set_status ()
 
9270
+{
 
9271
+  return $1
 
9272
+} @%:@ as_fn_set_status
 
9273
+
 
9274
+@%:@ as_fn_exit STATUS
 
9275
+@%:@ -----------------
 
9276
+@%:@ Exit the shell with STATUS, even in a "trap 0" or "set -e" context.
 
9277
+as_fn_exit ()
 
9278
+{
 
9279
+  set +e
 
9280
+  as_fn_set_status $1
 
9281
+  exit $1
 
9282
+} @%:@ as_fn_exit
 
9283
+
 
9284
+@%:@ as_fn_unset VAR
 
9285
+@%:@ ---------------
 
9286
+@%:@ Portably unset VAR.
 
9287
+as_fn_unset ()
 
9288
+{
 
9289
+  { eval $1=; unset $1;}
 
9290
+}
 
9291
+as_unset=as_fn_unset
 
9292
+@%:@ as_fn_append VAR VALUE
 
9293
+@%:@ ----------------------
 
9294
+@%:@ Append the text in VALUE to the end of the definition contained in VAR. Take
 
9295
+@%:@ advantage of any shell optimizations that allow amortized linear growth over
 
9296
+@%:@ repeated appends, instead of the typical quadratic growth present in naive
 
9297
+@%:@ implementations.
 
9298
+if (eval "as_var=1; as_var+=2; test x\$as_var = x12") 2>/dev/null; then :
 
9299
+  eval 'as_fn_append ()
 
9300
+  {
 
9301
+    eval $1+=\$2
 
9302
+  }'
 
9303
+else
 
9304
+  as_fn_append ()
 
9305
+  {
 
9306
+    eval $1=\$$1\$2
 
9307
+  }
 
9308
+fi # as_fn_append
 
9309
+
 
9310
+@%:@ as_fn_arith ARG...
 
9311
+@%:@ ------------------
 
9312
+@%:@ Perform arithmetic evaluation on the ARGs, and store the result in the
 
9313
+@%:@ global @S|@as_val. Take advantage of shells that can avoid forks. The arguments
 
9314
+@%:@ must be portable across @S|@(()) and expr.
 
9315
+if (eval "test \$(( 1 + 1 )) = 2") 2>/dev/null; then :
 
9316
+  eval 'as_fn_arith ()
 
9317
+  {
 
9318
+    as_val=$(( $* ))
 
9319
+  }'
 
9320
+else
 
9321
+  as_fn_arith ()
 
9322
+  {
 
9323
+    as_val=`expr "$@" || test $? -eq 1`
 
9324
+  }
 
9325
+fi # as_fn_arith
 
9326
+
 
9327
+
 
9328
+if expr a : '\(a\)' >/dev/null 2>&1 &&
 
9329
+   test "X`expr 00001 : '.*\(...\)'`" = X001; then
 
9330
+  as_expr=expr
 
9331
+else
 
9332
+  as_expr=false
 
9333
+fi
 
9334
+
 
9335
+if (basename -- /) >/dev/null 2>&1 && test "X`basename -- / 2>&1`" = "X/"; then
 
9336
+  as_basename=basename
 
9337
+else
 
9338
+  as_basename=false
 
9339
+fi
 
9340
+
 
9341
+if (as_dir=`dirname -- /` && test "X$as_dir" = X/) >/dev/null 2>&1; then
 
9342
+  as_dirname=dirname
 
9343
+else
 
9344
+  as_dirname=false
 
9345
+fi
 
9346
+
 
9347
+as_me=`$as_basename -- "$0" ||
 
9348
+$as_expr X/"$0" : '.*/\([^/][^/]*\)/*$' \| \
 
9349
+        X"$0" : 'X\(//\)$' \| \
 
9350
+        X"$0" : 'X\(/\)' \| . 2>/dev/null ||
 
9351
+$as_echo X/"$0" |
 
9352
+    sed '/^.*\/\([^/][^/]*\)\/*$/{
 
9353
+           s//\1/
 
9354
+           q
 
9355
+         }
 
9356
+         /^X\/\(\/\/\)$/{
 
9357
+           s//\1/
 
9358
+           q
 
9359
+         }
 
9360
+         /^X\/\(\/\).*/{
 
9361
+           s//\1/
 
9362
+           q
 
9363
+         }
 
9364
+         s/.*/./; q'`
 
9365
+
 
9366
+# Avoid depending upon Character Ranges.
 
9367
+as_cr_letters='abcdefghijklmnopqrstuvwxyz'
 
9368
+as_cr_LETTERS='ABCDEFGHIJKLMNOPQRSTUVWXYZ'
 
9369
+as_cr_Letters=$as_cr_letters$as_cr_LETTERS
 
9370
+as_cr_digits='0123456789'
 
9371
+as_cr_alnum=$as_cr_Letters$as_cr_digits
 
9372
+
 
9373
+ECHO_C= ECHO_N= ECHO_T=
 
9374
+case `echo -n x` in @%:@(((((
 
9375
+-n*)
 
9376
+  case `echo 'xy\c'` in
 
9377
+  *c*) ECHO_T='        ';;     # ECHO_T is single tab character.
 
9378
+  xy)  ECHO_C='\c';;
 
9379
+  *)   echo `echo ksh88 bug on AIX 6.1` > /dev/null
 
9380
+       ECHO_T='        ';;
 
9381
+  esac;;
 
9382
+*)
 
9383
+  ECHO_N='-n';;
 
9384
+esac
 
9385
+
 
9386
+rm -f conf$$ conf$$.exe conf$$.file
 
9387
+if test -d conf$$.dir; then
 
9388
+  rm -f conf$$.dir/conf$$.file
 
9389
+else
 
9390
+  rm -f conf$$.dir
 
9391
+  mkdir conf$$.dir 2>/dev/null
 
9392
+fi
 
9393
+if (echo >conf$$.file) 2>/dev/null; then
 
9394
+  if ln -s conf$$.file conf$$ 2>/dev/null; then
 
9395
+    as_ln_s='ln -s'
 
9396
+    # ... but there are two gotchas:
 
9397
+    # 1) On MSYS, both `ln -s file dir' and `ln file dir' fail.
 
9398
+    # 2) DJGPP < 2.04 has no symlinks; `ln -s' creates a wrapper executable.
 
9399
+    # In both cases, we have to default to `cp -p'.
 
9400
+    ln -s conf$$.file conf$$.dir 2>/dev/null && test ! -f conf$$.exe ||
 
9401
+      as_ln_s='cp -p'
 
9402
+  elif ln conf$$.file conf$$ 2>/dev/null; then
 
9403
+    as_ln_s=ln
 
9404
+  else
 
9405
+    as_ln_s='cp -p'
 
9406
+  fi
 
9407
+else
 
9408
+  as_ln_s='cp -p'
 
9409
+fi
 
9410
+rm -f conf$$ conf$$.exe conf$$.dir/conf$$.file conf$$.file
 
9411
+rmdir conf$$.dir 2>/dev/null
 
9412
+
 
9413
+
 
9414
+@%:@ as_fn_mkdir_p
 
9415
+@%:@ -------------
 
9416
+@%:@ Create "@S|@as_dir" as a directory, including parents if necessary.
 
9417
+as_fn_mkdir_p ()
 
9418
+{
 
9419
+
 
9420
+  case $as_dir in #(
 
9421
+  -*) as_dir=./$as_dir;;
 
9422
+  esac
 
9423
+  test -d "$as_dir" || eval $as_mkdir_p || {
 
9424
+    as_dirs=
 
9425
+    while :; do
 
9426
+      case $as_dir in #(
 
9427
+      *\'*) as_qdir=`$as_echo "$as_dir" | sed "s/'/'\\\\\\\\''/g"`;; #'(
 
9428
+      *) as_qdir=$as_dir;;
 
9429
+      esac
 
9430
+      as_dirs="'$as_qdir' $as_dirs"
 
9431
+      as_dir=`$as_dirname -- "$as_dir" ||
 
9432
+$as_expr X"$as_dir" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \
 
9433
+        X"$as_dir" : 'X\(//\)[^/]' \| \
 
9434
+        X"$as_dir" : 'X\(//\)$' \| \
 
9435
+        X"$as_dir" : 'X\(/\)' \| . 2>/dev/null ||
 
9436
+$as_echo X"$as_dir" |
 
9437
+    sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{
 
9438
+           s//\1/
 
9439
+           q
 
9440
+         }
 
9441
+         /^X\(\/\/\)[^/].*/{
 
9442
+           s//\1/
 
9443
+           q
 
9444
+         }
 
9445
+         /^X\(\/\/\)$/{
 
9446
+           s//\1/
 
9447
+           q
 
9448
+         }
 
9449
+         /^X\(\/\).*/{
 
9450
+           s//\1/
 
9451
+           q
 
9452
+         }
 
9453
+         s/.*/./; q'`
 
9454
+      test -d "$as_dir" && break
 
9455
+    done
 
9456
+    test -z "$as_dirs" || eval "mkdir $as_dirs"
 
9457
+  } || test -d "$as_dir" || as_fn_error $? "cannot create directory $as_dir"
 
9458
+
 
9459
+
 
9460
+} @%:@ as_fn_mkdir_p
 
9461
+if mkdir -p . 2>/dev/null; then
 
9462
+  as_mkdir_p='mkdir -p "$as_dir"'
 
9463
+else
 
9464
+  test -d ./-p && rmdir ./-p
 
9465
+  as_mkdir_p=false
 
9466
+fi
 
9467
+
 
9468
+if test -x / >/dev/null 2>&1; then
 
9469
+  as_test_x='test -x'
 
9470
+else
 
9471
+  if ls -dL / >/dev/null 2>&1; then
 
9472
+    as_ls_L_option=L
 
9473
+  else
 
9474
+    as_ls_L_option=
 
9475
+  fi
 
9476
+  as_test_x='
 
9477
+    eval sh -c '\''
 
9478
+      if test -d "$1"; then
 
9479
+       test -d "$1/.";
 
9480
+      else
 
9481
+       case $1 in @%:@(
 
9482
+       -*)set "./$1";;
 
9483
+       esac;
 
9484
+       case `ls -ld'$as_ls_L_option' "$1" 2>/dev/null` in @%:@((
 
9485
+       ???[sx]*):;;*)false;;esac;fi
 
9486
+    '\'' sh
 
9487
+  '
 
9488
+fi
 
9489
+as_executable_p=$as_test_x
 
9490
+
 
9491
+# Sed expression to map a string onto a valid CPP name.
 
9492
+as_tr_cpp="eval sed 'y%*$as_cr_letters%P$as_cr_LETTERS%;s%[^_$as_cr_alnum]%_%g'"
 
9493
+
 
9494
+# Sed expression to map a string onto a valid variable name.
 
9495
+as_tr_sh="eval sed 'y%*+%pp%;s%[^_$as_cr_alnum]%_%g'"
 
9496
+
 
9497
+
 
9498
+exec 6>&1
 
9499
+## ----------------------------------- ##
 
9500
+## Main body of $CONFIG_STATUS script. ##
 
9501
+## ----------------------------------- ##
 
9502
+_ASEOF
 
9503
+test $as_write_fail = 0 && chmod +x $CONFIG_STATUS || ac_write_fail=1
 
9504
+
 
9505
+cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1
 
9506
+# Save the log message, to keep $0 and so on meaningful, and to
 
9507
+# report actual input values of CONFIG_FILES etc. instead of their
 
9508
+# values after options handling.
 
9509
+ac_log="
 
9510
+This file was extended by fcoe-utils $as_me 1.0.9, which was
 
9511
+generated by GNU Autoconf 2.68.  Invocation command line was
 
9512
+
 
9513
+  CONFIG_FILES    = $CONFIG_FILES
 
9514
+  CONFIG_HEADERS  = $CONFIG_HEADERS
 
9515
+  CONFIG_LINKS    = $CONFIG_LINKS
 
9516
+  CONFIG_COMMANDS = $CONFIG_COMMANDS
 
9517
+  $ $0 $@
 
9518
+
 
9519
+on `(hostname || uname -n) 2>/dev/null | sed 1q`
 
9520
+"
 
9521
+
 
9522
+_ACEOF
 
9523
+
 
9524
+case $ac_config_files in *"
 
9525
+"*) set x $ac_config_files; shift; ac_config_files=$*;;
 
9526
+esac
 
9527
+
 
9528
+
 
9529
+
 
9530
+cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1
 
9531
+# Files that config.status was made for.
 
9532
+config_files="$ac_config_files"
 
9533
+config_commands="$ac_config_commands"
 
9534
+
 
9535
+_ACEOF
 
9536
+
 
9537
+cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1
 
9538
+ac_cs_usage="\
 
9539
+\`$as_me' instantiates files and other configuration actions
 
9540
+from templates according to the current configuration.  Unless the files
 
9541
+and actions are specified as TAGs, all are instantiated by default.
 
9542
+
 
9543
+Usage: $0 [OPTION]... [TAG]...
 
9544
+
 
9545
+  -h, --help       print this help, then exit
 
9546
+  -V, --version    print version number and configuration settings, then exit
 
9547
+      --config     print configuration, then exit
 
9548
+  -q, --quiet, --silent
 
9549
+                   do not print progress messages
 
9550
+  -d, --debug      don't remove temporary files
 
9551
+      --recheck    update $as_me by reconfiguring in the same conditions
 
9552
+      --file=FILE[:TEMPLATE] 
 
9553
+                   instantiate the configuration file FILE
 
9554
+
 
9555
+Configuration files:
 
9556
+$config_files
 
9557
+
 
9558
+Configuration commands:
 
9559
+$config_commands
 
9560
+
 
9561
+Report bugs to <devel@open-fcoe.org>."
 
9562
+
 
9563
+_ACEOF
 
9564
+cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1
 
9565
+ac_cs_config="`$as_echo "$ac_configure_args" | sed 's/^ //; s/[\\""\`\$]/\\\\&/g'`"
 
9566
+ac_cs_version="\\
 
9567
+fcoe-utils config.status 1.0.9
 
9568
+configured by $0, generated by GNU Autoconf 2.68,
 
9569
+  with options \\"\$ac_cs_config\\"
 
9570
+
 
9571
+Copyright (C) 2010 Free Software Foundation, Inc.
 
9572
+This config.status script is free software; the Free Software Foundation
 
9573
+gives unlimited permission to copy, distribute and modify it."
 
9574
+
 
9575
+ac_pwd='$ac_pwd'
 
9576
+srcdir='$srcdir'
 
9577
+INSTALL='$INSTALL'
 
9578
+MKDIR_P='$MKDIR_P'
 
9579
+AWK='$AWK'
 
9580
+test -n "\$AWK" || AWK=awk
 
9581
+_ACEOF
 
9582
+
 
9583
+cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1
 
9584
+# The default lists apply if the user does not specify any file.
 
9585
+ac_need_defaults=:
 
9586
+while test $# != 0
 
9587
+do
 
9588
+  case $1 in
 
9589
+  --*=?*)
 
9590
+    ac_option=`expr "X$1" : 'X\([^=]*\)='`
 
9591
+    ac_optarg=`expr "X$1" : 'X[^=]*=\(.*\)'`
 
9592
+    ac_shift=:
 
9593
+    ;;
 
9594
+  --*=)
 
9595
+    ac_option=`expr "X$1" : 'X\([^=]*\)='`
 
9596
+    ac_optarg=
 
9597
+    ac_shift=:
 
9598
+    ;;
 
9599
+  *)
 
9600
+    ac_option=$1
 
9601
+    ac_optarg=$2
 
9602
+    ac_shift=shift
 
9603
+    ;;
 
9604
+  esac
 
9605
+
 
9606
+  case $ac_option in
 
9607
+  # Handling of the options.
 
9608
+  -recheck | --recheck | --rechec | --reche | --rech | --rec | --re | --r)
 
9609
+    ac_cs_recheck=: ;;
 
9610
+  --version | --versio | --versi | --vers | --ver | --ve | --v | -V )
 
9611
+    $as_echo "$ac_cs_version"; exit ;;
 
9612
+  --config | --confi | --conf | --con | --co | --c )
 
9613
+    $as_echo "$ac_cs_config"; exit ;;
 
9614
+  --debug | --debu | --deb | --de | --d | -d )
 
9615
+    debug=: ;;
 
9616
+  --file | --fil | --fi | --f )
 
9617
+    $ac_shift
 
9618
+    case $ac_optarg in
 
9619
+    *\'*) ac_optarg=`$as_echo "$ac_optarg" | sed "s/'/'\\\\\\\\''/g"` ;;
 
9620
+    '') as_fn_error $? "missing file argument" ;;
 
9621
+    esac
 
9622
+    as_fn_append CONFIG_FILES " '$ac_optarg'"
 
9623
+    ac_need_defaults=false;;
 
9624
+  --he | --h |  --help | --hel | -h )
 
9625
+    $as_echo "$ac_cs_usage"; exit ;;
 
9626
+  -q | -quiet | --quiet | --quie | --qui | --qu | --q \
 
9627
+  | -silent | --silent | --silen | --sile | --sil | --si | --s)
 
9628
+    ac_cs_silent=: ;;
 
9629
+
 
9630
+  # This is an error.
 
9631
+  -*) as_fn_error $? "unrecognized option: \`$1'
 
9632
+Try \`$0 --help' for more information." ;;
 
9633
+
 
9634
+  *) as_fn_append ac_config_targets " $1"
 
9635
+     ac_need_defaults=false ;;
 
9636
+
 
9637
+  esac
 
9638
+  shift
 
9639
+done
 
9640
+
 
9641
+ac_configure_extra_args=
 
9642
+
 
9643
+if $ac_cs_silent; then
 
9644
+  exec 6>/dev/null
 
9645
+  ac_configure_extra_args="$ac_configure_extra_args --silent"
 
9646
+fi
 
9647
+
 
9648
+_ACEOF
 
9649
+cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1
 
9650
+if \$ac_cs_recheck; then
 
9651
+  set X '$SHELL' '$0' $ac_configure_args \$ac_configure_extra_args --no-create --no-recursion
 
9652
+  shift
 
9653
+  \$as_echo "running CONFIG_SHELL=$SHELL \$*" >&6
 
9654
+  CONFIG_SHELL='$SHELL'
 
9655
+  export CONFIG_SHELL
 
9656
+  exec "\$@"
 
9657
+fi
 
9658
+
 
9659
+_ACEOF
 
9660
+cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1
 
9661
+exec 5>>config.log
 
9662
+{
 
9663
+  echo
 
9664
+  sed 'h;s/./-/g;s/^.../@%:@@%:@ /;s/...$/ @%:@@%:@/;p;x;p;x' <<_ASBOX
 
9665
+@%:@@%:@ Running $as_me. @%:@@%:@
 
9666
+_ASBOX
 
9667
+  $as_echo "$ac_log"
 
9668
+} >&5
 
9669
+
 
9670
+_ACEOF
 
9671
+cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1
 
9672
+#
 
9673
+# INIT-COMMANDS
 
9674
+#
 
9675
+AMDEP_TRUE="$AMDEP_TRUE" ac_aux_dir="$ac_aux_dir"
 
9676
+
 
9677
+_ACEOF
 
9678
+
 
9679
+cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1
 
9680
+
 
9681
+# Handling of arguments.
 
9682
+for ac_config_target in $ac_config_targets
 
9683
+do
 
9684
+  case $ac_config_target in
 
9685
+    "depfiles") CONFIG_COMMANDS="$CONFIG_COMMANDS depfiles" ;;
 
9686
+    "Makefile") CONFIG_FILES="$CONFIG_FILES Makefile" ;;
 
9687
+    "fcoeplumb") CONFIG_FILES="$CONFIG_FILES fcoeplumb" ;;
 
9688
+    "fcoe-utils.spec") CONFIG_FILES="$CONFIG_FILES fcoe-utils.spec" ;;
 
9689
+    "fcoe_utils.h") CONFIG_FILES="$CONFIG_FILES fcoe_utils.h" ;;
 
9690
+
 
9691
+  *) as_fn_error $? "invalid argument: \`$ac_config_target'" "$LINENO" 5;;
 
9692
+  esac
 
9693
+done
 
9694
+
 
9695
+
 
9696
+# If the user did not use the arguments to specify the items to instantiate,
 
9697
+# then the envvar interface is used.  Set only those that are not.
 
9698
+# We use the long form for the default assignment because of an extremely
 
9699
+# bizarre bug on SunOS 4.1.3.
 
9700
+if $ac_need_defaults; then
 
9701
+  test "${CONFIG_FILES+set}" = set || CONFIG_FILES=$config_files
 
9702
+  test "${CONFIG_COMMANDS+set}" = set || CONFIG_COMMANDS=$config_commands
 
9703
+fi
 
9704
+
 
9705
+# Have a temporary directory for convenience.  Make it in the build tree
 
9706
+# simply because there is no reason against having it here, and in addition,
 
9707
+# creating and moving files from /tmp can sometimes cause problems.
 
9708
+# Hook for its removal unless debugging.
 
9709
+# Note that there is a small window in which the directory will not be cleaned:
 
9710
+# after its creation but before its name has been assigned to `$tmp'.
 
9711
+$debug ||
 
9712
+{
 
9713
+  tmp= ac_tmp=
 
9714
+  trap 'exit_status=$?
 
9715
+  : "${ac_tmp:=$tmp}"
 
9716
+  { test ! -d "$ac_tmp" || rm -fr "$ac_tmp"; } && exit $exit_status
 
9717
+' 0
 
9718
+  trap 'as_fn_exit 1' 1 2 13 15
 
9719
+}
 
9720
+# Create a (secure) tmp directory for tmp files.
 
9721
+
 
9722
+{
 
9723
+  tmp=`(umask 077 && mktemp -d "./confXXXXXX") 2>/dev/null` &&
 
9724
+  test -d "$tmp"
 
9725
+}  ||
 
9726
+{
 
9727
+  tmp=./conf$$-$RANDOM
 
9728
+  (umask 077 && mkdir "$tmp")
 
9729
+} || as_fn_error $? "cannot create a temporary directory in ." "$LINENO" 5
 
9730
+ac_tmp=$tmp
 
9731
+
 
9732
+# Set up the scripts for CONFIG_FILES section.
 
9733
+# No need to generate them if there are no CONFIG_FILES.
 
9734
+# This happens for instance with `./config.status config.h'.
 
9735
+if test -n "$CONFIG_FILES"; then
 
9736
+
 
9737
+
 
9738
+ac_cr=`echo X | tr X '\015'`
 
9739
+# On cygwin, bash can eat \r inside `` if the user requested igncr.
 
9740
+# But we know of no other shell where ac_cr would be empty at this
 
9741
+# point, so we can use a bashism as a fallback.
 
9742
+if test "x$ac_cr" = x; then
 
9743
+  eval ac_cr=\$\'\\r\'
 
9744
+fi
 
9745
+ac_cs_awk_cr=`$AWK 'BEGIN { print "a\rb" }' </dev/null 2>/dev/null`
 
9746
+if test "$ac_cs_awk_cr" = "a${ac_cr}b"; then
 
9747
+  ac_cs_awk_cr='\\r'
 
9748
+else
 
9749
+  ac_cs_awk_cr=$ac_cr
 
9750
+fi
 
9751
+
 
9752
+echo 'BEGIN {' >"$ac_tmp/subs1.awk" &&
 
9753
+_ACEOF
 
9754
+
 
9755
+
 
9756
+{
 
9757
+  echo "cat >conf$$subs.awk <<_ACEOF" &&
 
9758
+  echo "$ac_subst_vars" | sed 's/.*/&!$&$ac_delim/' &&
 
9759
+  echo "_ACEOF"
 
9760
+} >conf$$subs.sh ||
 
9761
+  as_fn_error $? "could not make $CONFIG_STATUS" "$LINENO" 5
 
9762
+ac_delim_num=`echo "$ac_subst_vars" | grep -c '^'`
 
9763
+ac_delim='%!_!# '
 
9764
+for ac_last_try in false false false false false :; do
 
9765
+  . ./conf$$subs.sh ||
 
9766
+    as_fn_error $? "could not make $CONFIG_STATUS" "$LINENO" 5
 
9767
+
 
9768
+  ac_delim_n=`sed -n "s/.*$ac_delim\$/X/p" conf$$subs.awk | grep -c X`
 
9769
+  if test $ac_delim_n = $ac_delim_num; then
 
9770
+    break
 
9771
+  elif $ac_last_try; then
 
9772
+    as_fn_error $? "could not make $CONFIG_STATUS" "$LINENO" 5
 
9773
+  else
 
9774
+    ac_delim="$ac_delim!$ac_delim _$ac_delim!! "
 
9775
+  fi
 
9776
+done
 
9777
+rm -f conf$$subs.sh
 
9778
+
 
9779
+cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1
 
9780
+cat >>"\$ac_tmp/subs1.awk" <<\\_ACAWK &&
 
9781
+_ACEOF
 
9782
+sed -n '
 
9783
+h
 
9784
+s/^/S["/; s/!.*/"]=/
 
9785
+p
 
9786
+g
 
9787
+s/^[^!]*!//
 
9788
+:repl
 
9789
+t repl
 
9790
+s/'"$ac_delim"'$//
 
9791
+t delim
 
9792
+:nl
 
9793
+h
 
9794
+s/\(.\{148\}\)..*/\1/
 
9795
+t more1
 
9796
+s/["\\]/\\&/g; s/^/"/; s/$/\\n"\\/
 
9797
+p
 
9798
+n
 
9799
+b repl
 
9800
+:more1
 
9801
+s/["\\]/\\&/g; s/^/"/; s/$/"\\/
 
9802
+p
 
9803
+g
 
9804
+s/.\{148\}//
 
9805
+t nl
 
9806
+:delim
 
9807
+h
 
9808
+s/\(.\{148\}\)..*/\1/
 
9809
+t more2
 
9810
+s/["\\]/\\&/g; s/^/"/; s/$/"/
 
9811
+p
 
9812
+b
 
9813
+:more2
 
9814
+s/["\\]/\\&/g; s/^/"/; s/$/"\\/
 
9815
+p
 
9816
+g
 
9817
+s/.\{148\}//
 
9818
+t delim
 
9819
+' <conf$$subs.awk | sed '
 
9820
+/^[^""]/{
 
9821
+  N
 
9822
+  s/\n//
 
9823
+}
 
9824
+' >>$CONFIG_STATUS || ac_write_fail=1
 
9825
+rm -f conf$$subs.awk
 
9826
+cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1
 
9827
+_ACAWK
 
9828
+cat >>"\$ac_tmp/subs1.awk" <<_ACAWK &&
 
9829
+  for (key in S) S_is_set[key] = 1
 
9830
+  FS = ""
 
9831
+
 
9832
+}
 
9833
+{
 
9834
+  line = $ 0
 
9835
+  nfields = split(line, field, "@")
 
9836
+  substed = 0
 
9837
+  len = length(field[1])
 
9838
+  for (i = 2; i < nfields; i++) {
 
9839
+    key = field[i]
 
9840
+    keylen = length(key)
 
9841
+    if (S_is_set[key]) {
 
9842
+      value = S[key]
 
9843
+      line = substr(line, 1, len) "" value "" substr(line, len + keylen + 3)
 
9844
+      len += length(value) + length(field[++i])
 
9845
+      substed = 1
 
9846
+    } else
 
9847
+      len += 1 + keylen
 
9848
+  }
 
9849
+
 
9850
+  print line
 
9851
+}
 
9852
+
 
9853
+_ACAWK
 
9854
+_ACEOF
 
9855
+cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1
 
9856
+if sed "s/$ac_cr//" < /dev/null > /dev/null 2>&1; then
 
9857
+  sed "s/$ac_cr\$//; s/$ac_cr/$ac_cs_awk_cr/g"
 
9858
+else
 
9859
+  cat
 
9860
+fi < "$ac_tmp/subs1.awk" > "$ac_tmp/subs.awk" \
 
9861
+  || as_fn_error $? "could not setup config files machinery" "$LINENO" 5
 
9862
+_ACEOF
 
9863
+
 
9864
+# VPATH may cause trouble with some makes, so we remove sole $(srcdir),
 
9865
+# ${srcdir} and @srcdir@ entries from VPATH if srcdir is ".", strip leading and
 
9866
+# trailing colons and then remove the whole line if VPATH becomes empty
 
9867
+# (actually we leave an empty line to preserve line numbers).
 
9868
+if test "x$srcdir" = x.; then
 
9869
+  ac_vpsub='/^[         ]*VPATH[        ]*=[    ]*/{
 
9870
+h
 
9871
+s///
 
9872
+s/^/:/
 
9873
+s/[     ]*$/:/
 
9874
+s/:\$(srcdir):/:/g
 
9875
+s/:\${srcdir}:/:/g
 
9876
+s/:@srcdir@:/:/g
 
9877
+s/^:*//
 
9878
+s/:*$//
 
9879
+x
 
9880
+s/\(=[  ]*\).*/\1/
 
9881
+G
 
9882
+s/\n//
 
9883
+s/^[^=]*=[      ]*$//
 
9884
+}'
 
9885
+fi
 
9886
+
 
9887
+cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1
 
9888
+fi # test -n "$CONFIG_FILES"
 
9889
+
 
9890
+
 
9891
+eval set X "  :F $CONFIG_FILES      :C $CONFIG_COMMANDS"
 
9892
+shift
 
9893
+for ac_tag
 
9894
+do
 
9895
+  case $ac_tag in
 
9896
+  :[FHLC]) ac_mode=$ac_tag; continue;;
 
9897
+  esac
 
9898
+  case $ac_mode$ac_tag in
 
9899
+  :[FHL]*:*);;
 
9900
+  :L* | :C*:*) as_fn_error $? "invalid tag \`$ac_tag'" "$LINENO" 5;;
 
9901
+  :[FH]-) ac_tag=-:-;;
 
9902
+  :[FH]*) ac_tag=$ac_tag:$ac_tag.in;;
 
9903
+  esac
 
9904
+  ac_save_IFS=$IFS
 
9905
+  IFS=:
 
9906
+  set x $ac_tag
 
9907
+  IFS=$ac_save_IFS
 
9908
+  shift
 
9909
+  ac_file=$1
 
9910
+  shift
 
9911
+
 
9912
+  case $ac_mode in
 
9913
+  :L) ac_source=$1;;
 
9914
+  :[FH])
 
9915
+    ac_file_inputs=
 
9916
+    for ac_f
 
9917
+    do
 
9918
+      case $ac_f in
 
9919
+      -) ac_f="$ac_tmp/stdin";;
 
9920
+      *) # Look for the file first in the build tree, then in the source tree
 
9921
+        # (if the path is not absolute).  The absolute path cannot be DOS-style,
 
9922
+        # because $ac_f cannot contain `:'.
 
9923
+        test -f "$ac_f" ||
 
9924
+          case $ac_f in
 
9925
+          [\\/$]*) false;;
 
9926
+          *) test -f "$srcdir/$ac_f" && ac_f="$srcdir/$ac_f";;
 
9927
+          esac ||
 
9928
+          as_fn_error 1 "cannot find input file: \`$ac_f'" "$LINENO" 5;;
 
9929
+      esac
 
9930
+      case $ac_f in *\'*) ac_f=`$as_echo "$ac_f" | sed "s/'/'\\\\\\\\''/g"`;; esac
 
9931
+      as_fn_append ac_file_inputs " '$ac_f'"
 
9932
+    done
 
9933
+
 
9934
+    # Let's still pretend it is `configure' which instantiates (i.e., don't
 
9935
+    # use $as_me), people would be surprised to read:
 
9936
+    #    /* config.h.  Generated by config.status.  */
 
9937
+    configure_input='Generated from '`
 
9938
+         $as_echo "$*" | sed 's|^[^:]*/||;s|:[^:]*/|, |g'
 
9939
+       `' by configure.'
 
9940
+    if test x"$ac_file" != x-; then
 
9941
+      configure_input="$ac_file.  $configure_input"
 
9942
+      { $as_echo "$as_me:${as_lineno-$LINENO}: creating $ac_file" >&5
 
9943
+$as_echo "$as_me: creating $ac_file" >&6;}
 
9944
+    fi
 
9945
+    # Neutralize special characters interpreted by sed in replacement strings.
 
9946
+    case $configure_input in #(
 
9947
+    *\&* | *\|* | *\\* )
 
9948
+       ac_sed_conf_input=`$as_echo "$configure_input" |
 
9949
+       sed 's/[\\\\&|]/\\\\&/g'`;; #(
 
9950
+    *) ac_sed_conf_input=$configure_input;;
 
9951
+    esac
 
9952
+
 
9953
+    case $ac_tag in
 
9954
+    *:-:* | *:-) cat >"$ac_tmp/stdin" \
 
9955
+      || as_fn_error $? "could not create $ac_file" "$LINENO" 5 ;;
 
9956
+    esac
 
9957
+    ;;
 
9958
+  esac
 
9959
+
 
9960
+  ac_dir=`$as_dirname -- "$ac_file" ||
 
9961
+$as_expr X"$ac_file" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \
 
9962
+        X"$ac_file" : 'X\(//\)[^/]' \| \
 
9963
+        X"$ac_file" : 'X\(//\)$' \| \
 
9964
+        X"$ac_file" : 'X\(/\)' \| . 2>/dev/null ||
 
9965
+$as_echo X"$ac_file" |
 
9966
+    sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{
 
9967
+           s//\1/
 
9968
+           q
 
9969
+         }
 
9970
+         /^X\(\/\/\)[^/].*/{
 
9971
+           s//\1/
 
9972
+           q
 
9973
+         }
 
9974
+         /^X\(\/\/\)$/{
 
9975
+           s//\1/
 
9976
+           q
 
9977
+         }
 
9978
+         /^X\(\/\).*/{
 
9979
+           s//\1/
 
9980
+           q
 
9981
+         }
 
9982
+         s/.*/./; q'`
 
9983
+  as_dir="$ac_dir"; as_fn_mkdir_p
 
9984
+  ac_builddir=.
 
9985
+
 
9986
+case "$ac_dir" in
 
9987
+.) ac_dir_suffix= ac_top_builddir_sub=. ac_top_build_prefix= ;;
 
9988
+*)
 
9989
+  ac_dir_suffix=/`$as_echo "$ac_dir" | sed 's|^\.[\\/]||'`
 
9990
+  # A ".." for each directory in $ac_dir_suffix.
 
9991
+  ac_top_builddir_sub=`$as_echo "$ac_dir_suffix" | sed 's|/[^\\/]*|/..|g;s|/||'`
 
9992
+  case $ac_top_builddir_sub in
 
9993
+  "") ac_top_builddir_sub=. ac_top_build_prefix= ;;
 
9994
+  *)  ac_top_build_prefix=$ac_top_builddir_sub/ ;;
 
9995
+  esac ;;
 
9996
+esac
 
9997
+ac_abs_top_builddir=$ac_pwd
 
9998
+ac_abs_builddir=$ac_pwd$ac_dir_suffix
 
9999
+# for backward compatibility:
 
10000
+ac_top_builddir=$ac_top_build_prefix
 
10001
+
 
10002
+case $srcdir in
 
10003
+  .)  # We are building in place.
 
10004
+    ac_srcdir=.
 
10005
+    ac_top_srcdir=$ac_top_builddir_sub
 
10006
+    ac_abs_top_srcdir=$ac_pwd ;;
 
10007
+  [\\/]* | ?:[\\/]* )  # Absolute name.
 
10008
+    ac_srcdir=$srcdir$ac_dir_suffix;
 
10009
+    ac_top_srcdir=$srcdir
 
10010
+    ac_abs_top_srcdir=$srcdir ;;
 
10011
+  *) # Relative name.
 
10012
+    ac_srcdir=$ac_top_build_prefix$srcdir$ac_dir_suffix
 
10013
+    ac_top_srcdir=$ac_top_build_prefix$srcdir
 
10014
+    ac_abs_top_srcdir=$ac_pwd/$srcdir ;;
 
10015
+esac
 
10016
+ac_abs_srcdir=$ac_abs_top_srcdir$ac_dir_suffix
 
10017
+
 
10018
+
 
10019
+  case $ac_mode in
 
10020
+  :F)
 
10021
+  #
 
10022
+  # CONFIG_FILE
 
10023
+  #
 
10024
+
 
10025
+  case $INSTALL in
 
10026
+  [\\/$]* | ?:[\\/]* ) ac_INSTALL=$INSTALL ;;
 
10027
+  *) ac_INSTALL=$ac_top_build_prefix$INSTALL ;;
 
10028
+  esac
 
10029
+  ac_MKDIR_P=$MKDIR_P
 
10030
+  case $MKDIR_P in
 
10031
+  [\\/$]* | ?:[\\/]* ) ;;
 
10032
+  */*) ac_MKDIR_P=$ac_top_build_prefix$MKDIR_P ;;
 
10033
+  esac
 
10034
+_ACEOF
 
10035
+
 
10036
+cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1
 
10037
+# If the template does not know about datarootdir, expand it.
 
10038
+# FIXME: This hack should be removed a few years after 2.60.
 
10039
+ac_datarootdir_hack=; ac_datarootdir_seen=
 
10040
+ac_sed_dataroot='
 
10041
+/datarootdir/ {
 
10042
+  p
 
10043
+  q
 
10044
+}
 
10045
+/@datadir@/p
 
10046
+/@docdir@/p
 
10047
+/@infodir@/p
 
10048
+/@localedir@/p
 
10049
+/@mandir@/p'
 
10050
+case `eval "sed -n \"\$ac_sed_dataroot\" $ac_file_inputs"` in
 
10051
+*datarootdir*) ac_datarootdir_seen=yes;;
 
10052
+*@datadir@*|*@docdir@*|*@infodir@*|*@localedir@*|*@mandir@*)
 
10053
+  { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: $ac_file_inputs seems to ignore the --datarootdir setting" >&5
 
10054
+$as_echo "$as_me: WARNING: $ac_file_inputs seems to ignore the --datarootdir setting" >&2;}
 
10055
+_ACEOF
 
10056
+cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1
 
10057
+  ac_datarootdir_hack='
 
10058
+  s&@datadir@&$datadir&g
 
10059
+  s&@docdir@&$docdir&g
 
10060
+  s&@infodir@&$infodir&g
 
10061
+  s&@localedir@&$localedir&g
 
10062
+  s&@mandir@&$mandir&g
 
10063
+  s&\\\${datarootdir}&$datarootdir&g' ;;
 
10064
+esac
 
10065
+_ACEOF
 
10066
+
 
10067
+# Neutralize VPATH when `$srcdir' = `.'.
 
10068
+# Shell code in configure.ac might set extrasub.
 
10069
+# FIXME: do we really want to maintain this feature?
 
10070
+cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1
 
10071
+ac_sed_extra="$ac_vpsub
 
10072
+$extrasub
 
10073
+_ACEOF
 
10074
+cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1
 
10075
+:t
 
10076
+/@[a-zA-Z_][a-zA-Z_0-9]*@/!b
 
10077
+s|@configure_input@|$ac_sed_conf_input|;t t
 
10078
+s&@top_builddir@&$ac_top_builddir_sub&;t t
 
10079
+s&@top_build_prefix@&$ac_top_build_prefix&;t t
 
10080
+s&@srcdir@&$ac_srcdir&;t t
 
10081
+s&@abs_srcdir@&$ac_abs_srcdir&;t t
 
10082
+s&@top_srcdir@&$ac_top_srcdir&;t t
 
10083
+s&@abs_top_srcdir@&$ac_abs_top_srcdir&;t t
 
10084
+s&@builddir@&$ac_builddir&;t t
 
10085
+s&@abs_builddir@&$ac_abs_builddir&;t t
 
10086
+s&@abs_top_builddir@&$ac_abs_top_builddir&;t t
 
10087
+s&@INSTALL@&$ac_INSTALL&;t t
 
10088
+s&@MKDIR_P@&$ac_MKDIR_P&;t t
 
10089
+$ac_datarootdir_hack
 
10090
+"
 
10091
+eval sed \"\$ac_sed_extra\" "$ac_file_inputs" | $AWK -f "$ac_tmp/subs.awk" \
 
10092
+  >$ac_tmp/out || as_fn_error $? "could not create $ac_file" "$LINENO" 5
 
10093
+
 
10094
+test -z "$ac_datarootdir_hack$ac_datarootdir_seen" &&
 
10095
+  { ac_out=`sed -n '/\${datarootdir}/p' "$ac_tmp/out"`; test -n "$ac_out"; } &&
 
10096
+  { ac_out=`sed -n '/^[         ]*datarootdir[  ]*:*=/p' \
 
10097
+      "$ac_tmp/out"`; test -z "$ac_out"; } &&
 
10098
+  { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: $ac_file contains a reference to the variable \`datarootdir'
 
10099
+which seems to be undefined.  Please make sure it is defined" >&5
 
10100
+$as_echo "$as_me: WARNING: $ac_file contains a reference to the variable \`datarootdir'
 
10101
+which seems to be undefined.  Please make sure it is defined" >&2;}
 
10102
+
 
10103
+  rm -f "$ac_tmp/stdin"
 
10104
+  case $ac_file in
 
10105
+  -) cat "$ac_tmp/out" && rm -f "$ac_tmp/out";;
 
10106
+  *) rm -f "$ac_file" && mv "$ac_tmp/out" "$ac_file";;
 
10107
+  esac \
 
10108
+  || as_fn_error $? "could not create $ac_file" "$LINENO" 5
 
10109
+ ;;
 
10110
+  
 
10111
+  
 
10112
+  :C)  { $as_echo "$as_me:${as_lineno-$LINENO}: executing $ac_file commands" >&5
 
10113
+$as_echo "$as_me: executing $ac_file commands" >&6;}
 
10114
+ ;;
 
10115
+  esac
 
10116
+
 
10117
+
 
10118
+  case $ac_file$ac_mode in
 
10119
+    "depfiles":C) test x"$AMDEP_TRUE" != x"" || {
 
10120
+  # Autoconf 2.62 quotes --file arguments for eval, but not when files
 
10121
+  # are listed without --file.  Let's play safe and only enable the eval
 
10122
+  # if we detect the quoting.
 
10123
+  case $CONFIG_FILES in
 
10124
+  *\'*) eval set x "$CONFIG_FILES" ;;
 
10125
+  *)   set x $CONFIG_FILES ;;
 
10126
+  esac
 
10127
+  shift
 
10128
+  for mf
 
10129
+  do
 
10130
+    # Strip MF so we end up with the name of the file.
 
10131
+    mf=`echo "$mf" | sed -e 's/:.*$//'`
 
10132
+    # Check whether this is an Automake generated Makefile or not.
 
10133
+    # We used to match only the files named `Makefile.in', but
 
10134
+    # some people rename them; so instead we look at the file content.
 
10135
+    # Grep'ing the first line is not enough: some people post-process
 
10136
+    # each Makefile.in and add a new line on top of each file to say so.
 
10137
+    # Grep'ing the whole file is not good either: AIX grep has a line
 
10138
+    # limit of 2048, but all sed's we know have understand at least 4000.
 
10139
+    if sed -n 's,^#.*generated by automake.*,X,p' "$mf" | grep X >/dev/null 2>&1; then
 
10140
+      dirpart=`$as_dirname -- "$mf" ||
 
10141
+$as_expr X"$mf" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \
 
10142
+        X"$mf" : 'X\(//\)[^/]' \| \
 
10143
+        X"$mf" : 'X\(//\)$' \| \
 
10144
+        X"$mf" : 'X\(/\)' \| . 2>/dev/null ||
 
10145
+$as_echo X"$mf" |
 
10146
+    sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{
 
10147
+           s//\1/
 
10148
+           q
 
10149
+         }
 
10150
+         /^X\(\/\/\)[^/].*/{
 
10151
+           s//\1/
 
10152
+           q
 
10153
+         }
 
10154
+         /^X\(\/\/\)$/{
 
10155
+           s//\1/
 
10156
+           q
 
10157
+         }
 
10158
+         /^X\(\/\).*/{
 
10159
+           s//\1/
 
10160
+           q
 
10161
+         }
 
10162
+         s/.*/./; q'`
 
10163
+    else
 
10164
+      continue
 
10165
+    fi
 
10166
+    # Extract the definition of DEPDIR, am__include, and am__quote
 
10167
+    # from the Makefile without running `make'.
 
10168
+    DEPDIR=`sed -n 's/^DEPDIR = //p' < "$mf"`
 
10169
+    test -z "$DEPDIR" && continue
 
10170
+    am__include=`sed -n 's/^am__include = //p' < "$mf"`
 
10171
+    test -z "am__include" && continue
 
10172
+    am__quote=`sed -n 's/^am__quote = //p' < "$mf"`
 
10173
+    # When using ansi2knr, U may be empty or an underscore; expand it
 
10174
+    U=`sed -n 's/^U = //p' < "$mf"`
 
10175
+    # Find all dependency output files, they are included files with
 
10176
+    # $(DEPDIR) in their names.  We invoke sed twice because it is the
 
10177
+    # simplest approach to changing $(DEPDIR) to its actual value in the
 
10178
+    # expansion.
 
10179
+    for file in `sed -n "
 
10180
+      s/^$am__include $am__quote\(.*(DEPDIR).*\)$am__quote"'$/\1/p' <"$mf" | \
 
10181
+        sed -e 's/\$(DEPDIR)/'"$DEPDIR"'/g' -e 's/\$U/'"$U"'/g'`; do
 
10182
+      # Make sure the directory exists.
 
10183
+      test -f "$dirpart/$file" && continue
 
10184
+      fdir=`$as_dirname -- "$file" ||
 
10185
+$as_expr X"$file" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \
 
10186
+        X"$file" : 'X\(//\)[^/]' \| \
 
10187
+        X"$file" : 'X\(//\)$' \| \
 
10188
+        X"$file" : 'X\(/\)' \| . 2>/dev/null ||
 
10189
+$as_echo X"$file" |
 
10190
+    sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{
 
10191
+           s//\1/
 
10192
+           q
 
10193
+         }
 
10194
+         /^X\(\/\/\)[^/].*/{
 
10195
+           s//\1/
 
10196
+           q
 
10197
+         }
 
10198
+         /^X\(\/\/\)$/{
 
10199
+           s//\1/
 
10200
+           q
 
10201
+         }
 
10202
+         /^X\(\/\).*/{
 
10203
+           s//\1/
 
10204
+           q
 
10205
+         }
 
10206
+         s/.*/./; q'`
 
10207
+      as_dir=$dirpart/$fdir; as_fn_mkdir_p
 
10208
+      # echo "creating $dirpart/$file"
 
10209
+      echo '# dummy' > "$dirpart/$file"
 
10210
+    done
 
10211
+  done
 
10212
+}
 
10213
+ ;;
 
10214
+
 
10215
+  esac
 
10216
+done # for ac_tag
 
10217
+
 
10218
+
 
10219
+as_fn_exit 0
 
10220
+_ACEOF
 
10221
+ac_clean_files=$ac_clean_files_save
 
10222
+
 
10223
+test $ac_write_fail = 0 ||
 
10224
+  as_fn_error $? "write failure creating $CONFIG_STATUS" "$LINENO" 5
 
10225
+
 
10226
+
 
10227
+# configure is writing to config.log, and then calls config.status.
 
10228
+# config.status does its own redirection, appending to config.log.
 
10229
+# Unfortunately, on DOS this fails, as config.log is still kept open
 
10230
+# by configure, so config.status won't be able to write to it; its
 
10231
+# output is simply discarded.  So we exec the FD to /dev/null,
 
10232
+# effectively closing config.log, so it can be properly (re)opened and
 
10233
+# appended to by config.status.  When coming back to configure, we
 
10234
+# need to make the FD available again.
 
10235
+if test "$no_create" != yes; then
 
10236
+  ac_cs_success=:
 
10237
+  ac_config_status_args=
 
10238
+  test "$silent" = yes &&
 
10239
+    ac_config_status_args="$ac_config_status_args --quiet"
 
10240
+  exec 5>/dev/null
 
10241
+  $SHELL $CONFIG_STATUS $ac_config_status_args || ac_cs_success=false
 
10242
+  exec 5>>config.log
 
10243
+  # Use ||, not &&, to avoid exiting from the if with $? = 1, which
 
10244
+  # would make configure fail if this is the last instruction.
 
10245
+  $ac_cs_success || as_fn_exit 1
 
10246
+fi
 
10247
+if test -n "$ac_unrecognized_opts" && test "$enable_option_checking" != no; then
 
10248
+  { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: unrecognized options: $ac_unrecognized_opts" >&5
 
10249
+$as_echo "$as_me: WARNING: unrecognized options: $ac_unrecognized_opts" >&2;}
 
10250
+fi
 
10251
+
 
10252
+
 
10253
diff -Nur -x '*.orig' -x '*~' fcoe-utils-1.0.9//autom4te.cache/requests fcoe-utils-1.0.9.new//autom4te.cache/requests
 
10254
--- fcoe-utils-1.0.9//autom4te.cache/requests   1969-12-31 19:00:00.000000000 -0500
 
10255
+++ fcoe-utils-1.0.9.new//autom4te.cache/requests       2011-09-14 11:57:05.000000000 -0400
 
10256
@@ -0,0 +1,151 @@
 
10257
+# This file was generated by Autom4te Sun May  1 09:53:53 UTC 2011.
 
10258
+# It contains the lists of macros which have been traced.
 
10259
+# It can be safely removed.
 
10260
+
 
10261
+@request = (
 
10262
+             bless( [
 
10263
+                      '0',
 
10264
+                      1,
 
10265
+                      [
 
10266
+                        '/usr/share/autoconf'
 
10267
+                      ],
 
10268
+                      [
 
10269
+                        '/usr/share/autoconf/autoconf/autoconf.m4f',
 
10270
+                        '/usr/share/aclocal/pkg.m4',
 
10271
+                        '/usr/share/aclocal-1.11/amversion.m4',
 
10272
+                        '/usr/share/aclocal-1.11/auxdir.m4',
 
10273
+                        '/usr/share/aclocal-1.11/cond.m4',
 
10274
+                        '/usr/share/aclocal-1.11/depend.m4',
 
10275
+                        '/usr/share/aclocal-1.11/depout.m4',
 
10276
+                        '/usr/share/aclocal-1.11/init.m4',
 
10277
+                        '/usr/share/aclocal-1.11/install-sh.m4',
 
10278
+                        '/usr/share/aclocal-1.11/lead-dot.m4',
 
10279
+                        '/usr/share/aclocal-1.11/make.m4',
 
10280
+                        '/usr/share/aclocal-1.11/minuso.m4',
 
10281
+                        '/usr/share/aclocal-1.11/missing.m4',
 
10282
+                        '/usr/share/aclocal-1.11/mkdirp.m4',
 
10283
+                        '/usr/share/aclocal-1.11/options.m4',
 
10284
+                        '/usr/share/aclocal-1.11/runlog.m4',
 
10285
+                        '/usr/share/aclocal-1.11/sanity.m4',
 
10286
+                        '/usr/share/aclocal-1.11/silent.m4',
 
10287
+                        '/usr/share/aclocal-1.11/strip.m4',
 
10288
+                        '/usr/share/aclocal-1.11/substnot.m4',
 
10289
+                        '/usr/share/aclocal-1.11/tar.m4',
 
10290
+                        'configure.ac'
 
10291
+                      ],
 
10292
+                      {
 
10293
+                        'm4_pattern_forbid' => 1,
 
10294
+                        'AM_SET_CURRENT_AUTOMAKE_VERSION' => 1,
 
10295
+                        '_AM_SET_OPTION' => 1,
 
10296
+                        'AC_DEFUN' => 1,
 
10297
+                        'AM_PROG_MKDIR_P' => 1,
 
10298
+                        'AM_INIT_AUTOMAKE' => 1,
 
10299
+                        'AM_AUTOMAKE_VERSION' => 1,
 
10300
+                        'AM_MISSING_HAS_RUN' => 1,
 
10301
+                        'AM_SUBST_NOTMAKE' => 1,
 
10302
+                        'AM_MISSING_PROG' => 1,
 
10303
+                        'AM_OUTPUT_DEPENDENCY_COMMANDS' => 1,
 
10304
+                        'AC_DEFUN_ONCE' => 1,
 
10305
+                        'AM_PROG_INSTALL_STRIP' => 1,
 
10306
+                        '_PKG_SHORT_ERRORS_SUPPORTED' => 1,
 
10307
+                        '_m4_warn' => 1,
 
10308
+                        'AM_SANITY_CHECK' => 1,
 
10309
+                        'PKG_CHECK_EXISTS' => 1,
 
10310
+                        'AM_SILENT_RULES' => 1,
 
10311
+                        'include' => 1,
 
10312
+                        '_AM_PROG_TAR' => 1,
 
10313
+                        'AM_AUX_DIR_EXPAND' => 1,
 
10314
+                        'AM_DEP_TRACK' => 1,
 
10315
+                        '_AM_SET_OPTIONS' => 1,
 
10316
+                        '_AM_OUTPUT_DEPENDENCY_COMMANDS' => 1,
 
10317
+                        'AM_RUN_LOG' => 1,
 
10318
+                        '_AM_IF_OPTION' => 1,
 
10319
+                        '_AM_SUBST_NOTMAKE' => 1,
 
10320
+                        'm4_pattern_allow' => 1,
 
10321
+                        '_AM_AUTOCONF_VERSION' => 1,
 
10322
+                        'AM_PROG_CC_C_O' => 1,
 
10323
+                        '_AM_MANGLE_OPTION' => 1,
 
10324
+                        'AM_SET_LEADING_DOT' => 1,
 
10325
+                        'AM_CONDITIONAL' => 1,
 
10326
+                        'AM_SET_DEPDIR' => 1,
 
10327
+                        '_AM_DEPENDENCIES' => 1,
 
10328
+                        'AM_PROG_INSTALL_SH' => 1,
 
10329
+                        'PKG_PROG_PKG_CONFIG' => 1,
 
10330
+                        'm4_include' => 1,
 
10331
+                        'PKG_CHECK_MODULES' => 1,
 
10332
+                        '_AC_AM_CONFIG_HEADER_HOOK' => 1,
 
10333
+                        'AU_DEFUN' => 1,
 
10334
+                        'AM_MAKE_INCLUDE' => 1
 
10335
+                      }
 
10336
+                    ], 'Autom4te::Request' ),
 
10337
+             bless( [
 
10338
+                      '1',
 
10339
+                      1,
 
10340
+                      [
 
10341
+                        '/usr/share/autoconf'
 
10342
+                      ],
 
10343
+                      [
 
10344
+                        '/usr/share/autoconf/autoconf/autoconf.m4f',
 
10345
+                        'aclocal.m4',
 
10346
+                        'configure.ac'
 
10347
+                      ],
 
10348
+                      {
 
10349
+                        '_LT_AC_TAGCONFIG' => 1,
 
10350
+                        'AM_PROG_F77_C_O' => 1,
 
10351
+                        'm4_pattern_forbid' => 1,
 
10352
+                        'AC_INIT' => 1,
 
10353
+                        '_AM_COND_IF' => 1,
 
10354
+                        'AC_CANONICAL_TARGET' => 1,
 
10355
+                        'AC_SUBST' => 1,
 
10356
+                        'AC_CONFIG_LIBOBJ_DIR' => 1,
 
10357
+                        'AC_FC_SRCEXT' => 1,
 
10358
+                        'AC_CANONICAL_HOST' => 1,
 
10359
+                        'AC_PROG_LIBTOOL' => 1,
 
10360
+                        'AM_INIT_AUTOMAKE' => 1,
 
10361
+                        'AM_PATH_GUILE' => 1,
 
10362
+                        'AC_CONFIG_SUBDIRS' => 1,
 
10363
+                        'AM_AUTOMAKE_VERSION' => 1,
 
10364
+                        'LT_CONFIG_LTDL_DIR' => 1,
 
10365
+                        'AC_REQUIRE_AUX_FILE' => 1,
 
10366
+                        'AC_CONFIG_LINKS' => 1,
 
10367
+                        'm4_sinclude' => 1,
 
10368
+                        'LT_SUPPORTED_TAG' => 1,
 
10369
+                        'AM_MAINTAINER_MODE' => 1,
 
10370
+                        'AM_NLS' => 1,
 
10371
+                        'AM_GNU_GETTEXT_INTL_SUBDIR' => 1,
 
10372
+                        'AM_MAKEFILE_INCLUDE' => 1,
 
10373
+                        '_m4_warn' => 1,
 
10374
+                        'AM_PROG_CXX_C_O' => 1,
 
10375
+                        '_AM_COND_ENDIF' => 1,
 
10376
+                        '_AM_MAKEFILE_INCLUDE' => 1,
 
10377
+                        'AM_ENABLE_MULTILIB' => 1,
 
10378
+                        'AM_SILENT_RULES' => 1,
 
10379
+                        'AM_PROG_MOC' => 1,
 
10380
+                        'AC_CONFIG_FILES' => 1,
 
10381
+                        'LT_INIT' => 1,
 
10382
+                        'include' => 1,
 
10383
+                        'AM_PROG_AR' => 1,
 
10384
+                        'AM_GNU_GETTEXT' => 1,
 
10385
+                        'AC_LIBSOURCE' => 1,
 
10386
+                        'AM_PROG_FC_C_O' => 1,
 
10387
+                        'AC_CANONICAL_BUILD' => 1,
 
10388
+                        'AC_FC_FREEFORM' => 1,
 
10389
+                        'AH_OUTPUT' => 1,
 
10390
+                        '_AM_SUBST_NOTMAKE' => 1,
 
10391
+                        'AC_CONFIG_AUX_DIR' => 1,
 
10392
+                        'sinclude' => 1,
 
10393
+                        'AM_PROG_CC_C_O' => 1,
 
10394
+                        'm4_pattern_allow' => 1,
 
10395
+                        'AM_XGETTEXT_OPTION' => 1,
 
10396
+                        'AC_CANONICAL_SYSTEM' => 1,
 
10397
+                        'AM_CONDITIONAL' => 1,
 
10398
+                        'AC_CONFIG_HEADERS' => 1,
 
10399
+                        'AC_DEFINE_TRACE_LITERAL' => 1,
 
10400
+                        'AM_POT_TOOLS' => 1,
 
10401
+                        'm4_include' => 1,
 
10402
+                        '_AM_COND_ELSE' => 1,
 
10403
+                        'AC_SUBST_TRACE' => 1
 
10404
+                      }
 
10405
+                    ], 'Autom4te::Request' )
 
10406
+           );
 
10407
+
 
10408
diff -Nur -x '*.orig' -x '*~' fcoe-utils-1.0.9//autom4te.cache/traces.0 fcoe-utils-1.0.9.new//autom4te.cache/traces.0
 
10409
--- fcoe-utils-1.0.9//autom4te.cache/traces.0   1969-12-31 19:00:00.000000000 -0500
 
10410
+++ fcoe-utils-1.0.9.new//autom4te.cache/traces.0       2011-09-14 11:57:04.000000000 -0400
 
10411
@@ -0,0 +1,889 @@
 
10412
+m4trace:/usr/share/aclocal/pkg.m4:27: -1- AC_DEFUN([PKG_PROG_PKG_CONFIG], [m4_pattern_forbid([^_?PKG_[A-Z_]+$])
 
10413
+m4_pattern_allow([^PKG_CONFIG(_(PATH|LIBDIR|SYSROOT_DIR|ALLOW_SYSTEM_(CFLAGS|LIBS)))?$])
 
10414
+m4_pattern_allow([^PKG_CONFIG_(DISABLE_UNINSTALLED|TOP_BUILD_DIR|DEBUG_SPEW)$])
 
10415
+AC_ARG_VAR([PKG_CONFIG], [path to pkg-config utility])
 
10416
+AC_ARG_VAR([PKG_CONFIG_PATH], [directories to add to pkg-config's search path])
 
10417
+AC_ARG_VAR([PKG_CONFIG_LIBDIR], [path overriding pkg-config's built-in search path])
 
10418
+
 
10419
+if test "x$ac_cv_env_PKG_CONFIG_set" != "xset"; then
 
10420
+       AC_PATH_TOOL([PKG_CONFIG], [pkg-config])
 
10421
+fi
 
10422
+if test -n "$PKG_CONFIG"; then
 
10423
+       _pkg_min_version=m4_default([$1], [0.9.0])
 
10424
+       AC_MSG_CHECKING([pkg-config is at least version $_pkg_min_version])
 
10425
+       if $PKG_CONFIG --atleast-pkgconfig-version $_pkg_min_version; then
 
10426
+               AC_MSG_RESULT([yes])
 
10427
+       else
 
10428
+               AC_MSG_RESULT([no])
 
10429
+               PKG_CONFIG=""
 
10430
+       fi
 
10431
+fi[]dnl
 
10432
+])
 
10433
+m4trace:/usr/share/aclocal/pkg.m4:60: -1- AC_DEFUN([PKG_CHECK_EXISTS], [AC_REQUIRE([PKG_PROG_PKG_CONFIG])dnl
 
10434
+if test -n "$PKG_CONFIG" && \
 
10435
+    AC_RUN_LOG([$PKG_CONFIG --exists --print-errors "$1"]); then
 
10436
+  m4_default([$2], [:])
 
10437
+m4_ifvaln([$3], [else
 
10438
+  $3])dnl
 
10439
+fi])
 
10440
+m4trace:/usr/share/aclocal/pkg.m4:86: -1- AC_DEFUN([_PKG_SHORT_ERRORS_SUPPORTED], [AC_REQUIRE([PKG_PROG_PKG_CONFIG])
 
10441
+if $PKG_CONFIG --atleast-pkgconfig-version 0.20; then
 
10442
+        _pkg_short_errors_supported=yes
 
10443
+else
 
10444
+        _pkg_short_errors_supported=no
 
10445
+fi[]dnl
 
10446
+])
 
10447
+m4trace:/usr/share/aclocal/pkg.m4:106: -1- AC_DEFUN([PKG_CHECK_MODULES], [AC_REQUIRE([PKG_PROG_PKG_CONFIG])dnl
 
10448
+AC_ARG_VAR([$1][_CFLAGS], [C compiler flags for $1, overriding pkg-config])dnl
 
10449
+AC_ARG_VAR([$1][_LIBS], [linker flags for $1, overriding pkg-config])dnl
 
10450
+
 
10451
+pkg_failed=no
 
10452
+AC_MSG_CHECKING([for $1])
 
10453
+
 
10454
+_PKG_CONFIG([$1][_CFLAGS], [cflags], [$2])
 
10455
+_PKG_CONFIG([$1][_LIBS], [libs], [$2])
 
10456
+
 
10457
+m4_define([_PKG_TEXT], [Alternatively, you may set the environment variables $1[]_CFLAGS
 
10458
+and $1[]_LIBS to avoid the need to call pkg-config.
 
10459
+See the pkg-config man page for more details.])
 
10460
+
 
10461
+if test $pkg_failed = yes; then
 
10462
+       AC_MSG_RESULT([no])
 
10463
+        _PKG_SHORT_ERRORS_SUPPORTED
 
10464
+        if test $_pkg_short_errors_supported = yes; then
 
10465
+               $1[]_PKG_ERRORS=`$PKG_CONFIG --short-errors --print-errors --cflags --libs "$2" 2>&1`
 
10466
+        else 
 
10467
+               $1[]_PKG_ERRORS=`$PKG_CONFIG --print-errors --cflags --libs "$2" 2>&1`
 
10468
+        fi
 
10469
+       # Put the nasty error message in config.log where it belongs
 
10470
+       echo "$$1[]_PKG_ERRORS" >&AS_MESSAGE_LOG_FD
 
10471
+
 
10472
+       m4_default([$4], [AC_MSG_ERROR(
 
10473
+[Package requirements ($2) were not met:
 
10474
+
 
10475
+$$1_PKG_ERRORS
 
10476
+
 
10477
+Consider adjusting the PKG_CONFIG_PATH environment variable if you
 
10478
+installed software in a non-standard prefix.
 
10479
+
 
10480
+_PKG_TEXT])[]dnl
 
10481
+        ])
 
10482
+elif test $pkg_failed = untried; then
 
10483
+       AC_MSG_RESULT([no])
 
10484
+       m4_default([$4], [AC_MSG_FAILURE(
 
10485
+[The pkg-config script could not be found or is too old.  Make sure it
 
10486
+is in your PATH or set the PKG_CONFIG environment variable to the full
 
10487
+path to pkg-config.
 
10488
+
 
10489
+_PKG_TEXT
 
10490
+
 
10491
+To get pkg-config, see <http://pkg-config.freedesktop.org/>.])[]dnl
 
10492
+        ])
 
10493
+else
 
10494
+       $1[]_CFLAGS=$pkg_cv_[]$1[]_CFLAGS
 
10495
+       $1[]_LIBS=$pkg_cv_[]$1[]_LIBS
 
10496
+        AC_MSG_RESULT([yes])
 
10497
+       $3
 
10498
+fi[]dnl
 
10499
+])
 
10500
+m4trace:/usr/share/aclocal-1.11/amversion.m4:14: -1- AC_DEFUN([AM_AUTOMAKE_VERSION], [am__api_version='1.11'
 
10501
+dnl Some users find AM_AUTOMAKE_VERSION and mistake it for a way to
 
10502
+dnl require some minimum version.  Point them to the right macro.
 
10503
+m4_if([$1], [1.11.1], [],
 
10504
+      [AC_FATAL([Do not call $0, use AM_INIT_AUTOMAKE([$1]).])])dnl
 
10505
+])
 
10506
+m4trace:/usr/share/aclocal-1.11/amversion.m4:33: -1- AC_DEFUN([AM_SET_CURRENT_AUTOMAKE_VERSION], [AM_AUTOMAKE_VERSION([1.11.1])dnl
 
10507
+m4_ifndef([AC_AUTOCONF_VERSION],
 
10508
+  [m4_copy([m4_PACKAGE_VERSION], [AC_AUTOCONF_VERSION])])dnl
 
10509
+_AM_AUTOCONF_VERSION(m4_defn([AC_AUTOCONF_VERSION]))])
 
10510
+m4trace:/usr/share/aclocal-1.11/auxdir.m4:47: -1- AC_DEFUN([AM_AUX_DIR_EXPAND], [dnl Rely on autoconf to set up CDPATH properly.
 
10511
+AC_PREREQ([2.50])dnl
 
10512
+# expand $ac_aux_dir to an absolute path
 
10513
+am_aux_dir=`cd $ac_aux_dir && pwd`
 
10514
+])
 
10515
+m4trace:/usr/share/aclocal-1.11/cond.m4:15: -1- AC_DEFUN([AM_CONDITIONAL], [AC_PREREQ(2.52)dnl
 
10516
+ ifelse([$1], [TRUE],  [AC_FATAL([$0: invalid condition: $1])],
 
10517
+       [$1], [FALSE], [AC_FATAL([$0: invalid condition: $1])])dnl
 
10518
+AC_SUBST([$1_TRUE])dnl
 
10519
+AC_SUBST([$1_FALSE])dnl
 
10520
+_AM_SUBST_NOTMAKE([$1_TRUE])dnl
 
10521
+_AM_SUBST_NOTMAKE([$1_FALSE])dnl
 
10522
+m4_define([_AM_COND_VALUE_$1], [$2])dnl
 
10523
+if $2; then
 
10524
+  $1_TRUE=
 
10525
+  $1_FALSE='#'
 
10526
+else
 
10527
+  $1_TRUE='#'
 
10528
+  $1_FALSE=
 
10529
+fi
 
10530
+AC_CONFIG_COMMANDS_PRE(
 
10531
+[if test -z "${$1_TRUE}" && test -z "${$1_FALSE}"; then
 
10532
+  AC_MSG_ERROR([[conditional "$1" was never defined.
 
10533
+Usually this means the macro was only invoked conditionally.]])
 
10534
+fi])])
 
10535
+m4trace:/usr/share/aclocal-1.11/depend.m4:28: -1- AC_DEFUN([_AM_DEPENDENCIES], [AC_REQUIRE([AM_SET_DEPDIR])dnl
 
10536
+AC_REQUIRE([AM_OUTPUT_DEPENDENCY_COMMANDS])dnl
 
10537
+AC_REQUIRE([AM_MAKE_INCLUDE])dnl
 
10538
+AC_REQUIRE([AM_DEP_TRACK])dnl
 
10539
+
 
10540
+ifelse([$1], CC,   [depcc="$CC"   am_compiler_list=],
 
10541
+       [$1], CXX,  [depcc="$CXX"  am_compiler_list=],
 
10542
+       [$1], OBJC, [depcc="$OBJC" am_compiler_list='gcc3 gcc'],
 
10543
+       [$1], UPC,  [depcc="$UPC"  am_compiler_list=],
 
10544
+       [$1], GCJ,  [depcc="$GCJ"  am_compiler_list='gcc3 gcc'],
 
10545
+                   [depcc="$$1"   am_compiler_list=])
 
10546
+
 
10547
+AC_CACHE_CHECK([dependency style of $depcc],
 
10548
+               [am_cv_$1_dependencies_compiler_type],
 
10549
+[if test -z "$AMDEP_TRUE" && test -f "$am_depcomp"; then
 
10550
+  # We make a subdir and do the tests there.  Otherwise we can end up
 
10551
+  # making bogus files that we don't know about and never remove.  For
 
10552
+  # instance it was reported that on HP-UX the gcc test will end up
 
10553
+  # making a dummy file named `D' -- because `-MD' means `put the output
 
10554
+  # in D'.
 
10555
+  mkdir conftest.dir
 
10556
+  # Copy depcomp to subdir because otherwise we won't find it if we're
 
10557
+  # using a relative directory.
 
10558
+  cp "$am_depcomp" conftest.dir
 
10559
+  cd conftest.dir
 
10560
+  # We will build objects and dependencies in a subdirectory because
 
10561
+  # it helps to detect inapplicable dependency modes.  For instance
 
10562
+  # both Tru64's cc and ICC support -MD to output dependencies as a
 
10563
+  # side effect of compilation, but ICC will put the dependencies in
 
10564
+  # the current directory while Tru64 will put them in the object
 
10565
+  # directory.
 
10566
+  mkdir sub
 
10567
+
 
10568
+  am_cv_$1_dependencies_compiler_type=none
 
10569
+  if test "$am_compiler_list" = ""; then
 
10570
+     am_compiler_list=`sed -n ['s/^#*\([a-zA-Z0-9]*\))$/\1/p'] < ./depcomp`
 
10571
+  fi
 
10572
+  am__universal=false
 
10573
+  m4_case([$1], [CC],
 
10574
+    [case " $depcc " in #(
 
10575
+     *\ -arch\ *\ -arch\ *) am__universal=true ;;
 
10576
+     esac],
 
10577
+    [CXX],
 
10578
+    [case " $depcc " in #(
 
10579
+     *\ -arch\ *\ -arch\ *) am__universal=true ;;
 
10580
+     esac])
 
10581
+
 
10582
+  for depmode in $am_compiler_list; do
 
10583
+    # Setup a source with many dependencies, because some compilers
 
10584
+    # like to wrap large dependency lists on column 80 (with \), and
 
10585
+    # we should not choose a depcomp mode which is confused by this.
 
10586
+    #
 
10587
+    # We need to recreate these files for each test, as the compiler may
 
10588
+    # overwrite some of them when testing with obscure command lines.
 
10589
+    # This happens at least with the AIX C compiler.
 
10590
+    : > sub/conftest.c
 
10591
+    for i in 1 2 3 4 5 6; do
 
10592
+      echo '#include "conftst'$i'.h"' >> sub/conftest.c
 
10593
+      # Using `: > sub/conftst$i.h' creates only sub/conftst1.h with
 
10594
+      # Solaris 8's {/usr,}/bin/sh.
 
10595
+      touch sub/conftst$i.h
 
10596
+    done
 
10597
+    echo "${am__include} ${am__quote}sub/conftest.Po${am__quote}" > confmf
 
10598
+
 
10599
+    # We check with `-c' and `-o' for the sake of the "dashmstdout"
 
10600
+    # mode.  It turns out that the SunPro C++ compiler does not properly
 
10601
+    # handle `-M -o', and we need to detect this.  Also, some Intel
 
10602
+    # versions had trouble with output in subdirs
 
10603
+    am__obj=sub/conftest.${OBJEXT-o}
 
10604
+    am__minus_obj="-o $am__obj"
 
10605
+    case $depmode in
 
10606
+    gcc)
 
10607
+      # This depmode causes a compiler race in universal mode.
 
10608
+      test "$am__universal" = false || continue
 
10609
+      ;;
 
10610
+    nosideeffect)
 
10611
+      # after this tag, mechanisms are not by side-effect, so they'll
 
10612
+      # only be used when explicitly requested
 
10613
+      if test "x$enable_dependency_tracking" = xyes; then
 
10614
+       continue
 
10615
+      else
 
10616
+       break
 
10617
+      fi
 
10618
+      ;;
 
10619
+    msvisualcpp | msvcmsys)
 
10620
+      # This compiler won't grok `-c -o', but also, the minuso test has
 
10621
+      # not run yet.  These depmodes are late enough in the game, and
 
10622
+      # so weak that their functioning should not be impacted.
 
10623
+      am__obj=conftest.${OBJEXT-o}
 
10624
+      am__minus_obj=
 
10625
+      ;;
 
10626
+    none) break ;;
 
10627
+    esac
 
10628
+    if depmode=$depmode \
 
10629
+       source=sub/conftest.c object=$am__obj \
 
10630
+       depfile=sub/conftest.Po tmpdepfile=sub/conftest.TPo \
 
10631
+       $SHELL ./depcomp $depcc -c $am__minus_obj sub/conftest.c \
 
10632
+         >/dev/null 2>conftest.err &&
 
10633
+       grep sub/conftst1.h sub/conftest.Po > /dev/null 2>&1 &&
 
10634
+       grep sub/conftst6.h sub/conftest.Po > /dev/null 2>&1 &&
 
10635
+       grep $am__obj sub/conftest.Po > /dev/null 2>&1 &&
 
10636
+       ${MAKE-make} -s -f confmf > /dev/null 2>&1; then
 
10637
+      # icc doesn't choke on unknown options, it will just issue warnings
 
10638
+      # or remarks (even with -Werror).  So we grep stderr for any message
 
10639
+      # that says an option was ignored or not supported.
 
10640
+      # When given -MP, icc 7.0 and 7.1 complain thusly:
 
10641
+      #   icc: Command line warning: ignoring option '-M'; no argument required
 
10642
+      # The diagnosis changed in icc 8.0:
 
10643
+      #   icc: Command line remark: option '-MP' not supported
 
10644
+      if (grep 'ignoring option' conftest.err ||
 
10645
+          grep 'not supported' conftest.err) >/dev/null 2>&1; then :; else
 
10646
+        am_cv_$1_dependencies_compiler_type=$depmode
 
10647
+        break
 
10648
+      fi
 
10649
+    fi
 
10650
+  done
 
10651
+
 
10652
+  cd ..
 
10653
+  rm -rf conftest.dir
 
10654
+else
 
10655
+  am_cv_$1_dependencies_compiler_type=none
 
10656
+fi
 
10657
+])
 
10658
+AC_SUBST([$1DEPMODE], [depmode=$am_cv_$1_dependencies_compiler_type])
 
10659
+AM_CONDITIONAL([am__fastdep$1], [
 
10660
+  test "x$enable_dependency_tracking" != xno \
 
10661
+  && test "$am_cv_$1_dependencies_compiler_type" = gcc3])
 
10662
+])
 
10663
+m4trace:/usr/share/aclocal-1.11/depend.m4:163: -1- AC_DEFUN([AM_SET_DEPDIR], [AC_REQUIRE([AM_SET_LEADING_DOT])dnl
 
10664
+AC_SUBST([DEPDIR], ["${am__leading_dot}deps"])dnl
 
10665
+])
 
10666
+m4trace:/usr/share/aclocal-1.11/depend.m4:171: -1- AC_DEFUN([AM_DEP_TRACK], [AC_ARG_ENABLE(dependency-tracking,
 
10667
+[  --disable-dependency-tracking  speeds up one-time build
 
10668
+  --enable-dependency-tracking   do not reject slow dependency extractors])
 
10669
+if test "x$enable_dependency_tracking" != xno; then
 
10670
+  am_depcomp="$ac_aux_dir/depcomp"
 
10671
+  AMDEPBACKSLASH='\'
 
10672
+fi
 
10673
+AM_CONDITIONAL([AMDEP], [test "x$enable_dependency_tracking" != xno])
 
10674
+AC_SUBST([AMDEPBACKSLASH])dnl
 
10675
+_AM_SUBST_NOTMAKE([AMDEPBACKSLASH])dnl
 
10676
+])
 
10677
+m4trace:/usr/share/aclocal-1.11/depout.m4:14: -1- AC_DEFUN([_AM_OUTPUT_DEPENDENCY_COMMANDS], [{
 
10678
+  # Autoconf 2.62 quotes --file arguments for eval, but not when files
 
10679
+  # are listed without --file.  Let's play safe and only enable the eval
 
10680
+  # if we detect the quoting.
 
10681
+  case $CONFIG_FILES in
 
10682
+  *\'*) eval set x "$CONFIG_FILES" ;;
 
10683
+  *)   set x $CONFIG_FILES ;;
 
10684
+  esac
 
10685
+  shift
 
10686
+  for mf
 
10687
+  do
 
10688
+    # Strip MF so we end up with the name of the file.
 
10689
+    mf=`echo "$mf" | sed -e 's/:.*$//'`
 
10690
+    # Check whether this is an Automake generated Makefile or not.
 
10691
+    # We used to match only the files named `Makefile.in', but
 
10692
+    # some people rename them; so instead we look at the file content.
 
10693
+    # Grep'ing the first line is not enough: some people post-process
 
10694
+    # each Makefile.in and add a new line on top of each file to say so.
 
10695
+    # Grep'ing the whole file is not good either: AIX grep has a line
 
10696
+    # limit of 2048, but all sed's we know have understand at least 4000.
 
10697
+    if sed -n 's,^#.*generated by automake.*,X,p' "$mf" | grep X >/dev/null 2>&1; then
 
10698
+      dirpart=`AS_DIRNAME("$mf")`
 
10699
+    else
 
10700
+      continue
 
10701
+    fi
 
10702
+    # Extract the definition of DEPDIR, am__include, and am__quote
 
10703
+    # from the Makefile without running `make'.
 
10704
+    DEPDIR=`sed -n 's/^DEPDIR = //p' < "$mf"`
 
10705
+    test -z "$DEPDIR" && continue
 
10706
+    am__include=`sed -n 's/^am__include = //p' < "$mf"`
 
10707
+    test -z "am__include" && continue
 
10708
+    am__quote=`sed -n 's/^am__quote = //p' < "$mf"`
 
10709
+    # When using ansi2knr, U may be empty or an underscore; expand it
 
10710
+    U=`sed -n 's/^U = //p' < "$mf"`
 
10711
+    # Find all dependency output files, they are included files with
 
10712
+    # $(DEPDIR) in their names.  We invoke sed twice because it is the
 
10713
+    # simplest approach to changing $(DEPDIR) to its actual value in the
 
10714
+    # expansion.
 
10715
+    for file in `sed -n "
 
10716
+      s/^$am__include $am__quote\(.*(DEPDIR).*\)$am__quote"'$/\1/p' <"$mf" | \
 
10717
+        sed -e 's/\$(DEPDIR)/'"$DEPDIR"'/g' -e 's/\$U/'"$U"'/g'`; do
 
10718
+      # Make sure the directory exists.
 
10719
+      test -f "$dirpart/$file" && continue
 
10720
+      fdir=`AS_DIRNAME(["$file"])`
 
10721
+      AS_MKDIR_P([$dirpart/$fdir])
 
10722
+      # echo "creating $dirpart/$file"
 
10723
+      echo '# dummy' > "$dirpart/$file"
 
10724
+    done
 
10725
+  done
 
10726
+}
 
10727
+])
 
10728
+m4trace:/usr/share/aclocal-1.11/depout.m4:75: -1- AC_DEFUN([AM_OUTPUT_DEPENDENCY_COMMANDS], [AC_CONFIG_COMMANDS([depfiles],
 
10729
+     [test x"$AMDEP_TRUE" != x"" || _AM_OUTPUT_DEPENDENCY_COMMANDS],
 
10730
+     [AMDEP_TRUE="$AMDEP_TRUE" ac_aux_dir="$ac_aux_dir"])
 
10731
+])
 
10732
+m4trace:/usr/share/aclocal-1.11/init.m4:26: -1- AC_DEFUN([AM_INIT_AUTOMAKE], [AC_PREREQ([2.62])dnl
 
10733
+dnl Autoconf wants to disallow AM_ names.  We explicitly allow
 
10734
+dnl the ones we care about.
 
10735
+m4_pattern_allow([^AM_[A-Z]+FLAGS$])dnl
 
10736
+AC_REQUIRE([AM_SET_CURRENT_AUTOMAKE_VERSION])dnl
 
10737
+AC_REQUIRE([AC_PROG_INSTALL])dnl
 
10738
+if test "`cd $srcdir && pwd`" != "`pwd`"; then
 
10739
+  # Use -I$(srcdir) only when $(srcdir) != ., so that make's output
 
10740
+  # is not polluted with repeated "-I."
 
10741
+  AC_SUBST([am__isrc], [' -I$(srcdir)'])_AM_SUBST_NOTMAKE([am__isrc])dnl
 
10742
+  # test to see if srcdir already configured
 
10743
+  if test -f $srcdir/config.status; then
 
10744
+    AC_MSG_ERROR([source directory already configured; run "make distclean" there first])
 
10745
+  fi
 
10746
+fi
 
10747
+
 
10748
+# test whether we have cygpath
 
10749
+if test -z "$CYGPATH_W"; then
 
10750
+  if (cygpath --version) >/dev/null 2>/dev/null; then
 
10751
+    CYGPATH_W='cygpath -w'
 
10752
+  else
 
10753
+    CYGPATH_W=echo
 
10754
+  fi
 
10755
+fi
 
10756
+AC_SUBST([CYGPATH_W])
 
10757
+
 
10758
+# Define the identity of the package.
 
10759
+dnl Distinguish between old-style and new-style calls.
 
10760
+m4_ifval([$2],
 
10761
+[m4_ifval([$3], [_AM_SET_OPTION([no-define])])dnl
 
10762
+ AC_SUBST([PACKAGE], [$1])dnl
 
10763
+ AC_SUBST([VERSION], [$2])],
 
10764
+[_AM_SET_OPTIONS([$1])dnl
 
10765
+dnl Diagnose old-style AC_INIT with new-style AM_AUTOMAKE_INIT.
 
10766
+m4_if(m4_ifdef([AC_PACKAGE_NAME], 1)m4_ifdef([AC_PACKAGE_VERSION], 1), 11,,
 
10767
+  [m4_fatal([AC_INIT should be called with package and version arguments])])dnl
 
10768
+ AC_SUBST([PACKAGE], ['AC_PACKAGE_TARNAME'])dnl
 
10769
+ AC_SUBST([VERSION], ['AC_PACKAGE_VERSION'])])dnl
 
10770
+
 
10771
+_AM_IF_OPTION([no-define],,
 
10772
+[AC_DEFINE_UNQUOTED(PACKAGE, "$PACKAGE", [Name of package])
 
10773
+ AC_DEFINE_UNQUOTED(VERSION, "$VERSION", [Version number of package])])dnl
 
10774
+
 
10775
+# Some tools Automake needs.
 
10776
+AC_REQUIRE([AM_SANITY_CHECK])dnl
 
10777
+AC_REQUIRE([AC_ARG_PROGRAM])dnl
 
10778
+AM_MISSING_PROG(ACLOCAL, aclocal-${am__api_version})
 
10779
+AM_MISSING_PROG(AUTOCONF, autoconf)
 
10780
+AM_MISSING_PROG(AUTOMAKE, automake-${am__api_version})
 
10781
+AM_MISSING_PROG(AUTOHEADER, autoheader)
 
10782
+AM_MISSING_PROG(MAKEINFO, makeinfo)
 
10783
+AC_REQUIRE([AM_PROG_INSTALL_SH])dnl
 
10784
+AC_REQUIRE([AM_PROG_INSTALL_STRIP])dnl
 
10785
+AC_REQUIRE([AM_PROG_MKDIR_P])dnl
 
10786
+# We need awk for the "check" target.  The system "awk" is bad on
 
10787
+# some platforms.
 
10788
+AC_REQUIRE([AC_PROG_AWK])dnl
 
10789
+AC_REQUIRE([AC_PROG_MAKE_SET])dnl
 
10790
+AC_REQUIRE([AM_SET_LEADING_DOT])dnl
 
10791
+_AM_IF_OPTION([tar-ustar], [_AM_PROG_TAR([ustar])],
 
10792
+             [_AM_IF_OPTION([tar-pax], [_AM_PROG_TAR([pax])],
 
10793
+                            [_AM_PROG_TAR([v7])])])
 
10794
+_AM_IF_OPTION([no-dependencies],,
 
10795
+[AC_PROVIDE_IFELSE([AC_PROG_CC],
 
10796
+                 [_AM_DEPENDENCIES(CC)],
 
10797
+                 [define([AC_PROG_CC],
 
10798
+                         defn([AC_PROG_CC])[_AM_DEPENDENCIES(CC)])])dnl
 
10799
+AC_PROVIDE_IFELSE([AC_PROG_CXX],
 
10800
+                 [_AM_DEPENDENCIES(CXX)],
 
10801
+                 [define([AC_PROG_CXX],
 
10802
+                         defn([AC_PROG_CXX])[_AM_DEPENDENCIES(CXX)])])dnl
 
10803
+AC_PROVIDE_IFELSE([AC_PROG_OBJC],
 
10804
+                 [_AM_DEPENDENCIES(OBJC)],
 
10805
+                 [define([AC_PROG_OBJC],
 
10806
+                         defn([AC_PROG_OBJC])[_AM_DEPENDENCIES(OBJC)])])dnl
 
10807
+])
 
10808
+_AM_IF_OPTION([silent-rules], [AC_REQUIRE([AM_SILENT_RULES])])dnl
 
10809
+dnl The `parallel-tests' driver may need to know about EXEEXT, so add the
 
10810
+dnl `am__EXEEXT' conditional if _AM_COMPILER_EXEEXT was seen.  This macro
 
10811
+dnl is hooked onto _AC_COMPILER_EXEEXT early, see below.
 
10812
+AC_CONFIG_COMMANDS_PRE(dnl
 
10813
+[m4_provide_if([_AM_COMPILER_EXEEXT],
 
10814
+  [AM_CONDITIONAL([am__EXEEXT], [test -n "$EXEEXT"])])])dnl
 
10815
+])
 
10816
+m4trace:/usr/share/aclocal-1.11/init.m4:126: -1- AC_DEFUN([_AC_AM_CONFIG_HEADER_HOOK], [# Compute $1's index in $config_headers.
 
10817
+_am_arg=$1
 
10818
+_am_stamp_count=1
 
10819
+for _am_header in $config_headers :; do
 
10820
+  case $_am_header in
 
10821
+    $_am_arg | $_am_arg:* )
 
10822
+      break ;;
 
10823
+    * )
 
10824
+      _am_stamp_count=`expr $_am_stamp_count + 1` ;;
 
10825
+  esac
 
10826
+done
 
10827
+echo "timestamp for $_am_arg" >`AS_DIRNAME(["$_am_arg"])`/stamp-h[]$_am_stamp_count])
 
10828
+m4trace:/usr/share/aclocal-1.11/install-sh.m4:11: -1- AC_DEFUN([AM_PROG_INSTALL_SH], [AC_REQUIRE([AM_AUX_DIR_EXPAND])dnl
 
10829
+if test x"${install_sh}" != xset; then
 
10830
+  case $am_aux_dir in
 
10831
+  *\ * | *\    *)
 
10832
+    install_sh="\${SHELL} '$am_aux_dir/install-sh'" ;;
 
10833
+  *)
 
10834
+    install_sh="\${SHELL} $am_aux_dir/install-sh"
 
10835
+  esac
 
10836
+fi
 
10837
+AC_SUBST(install_sh)])
 
10838
+m4trace:/usr/share/aclocal-1.11/lead-dot.m4:12: -1- AC_DEFUN([AM_SET_LEADING_DOT], [rm -rf .tst 2>/dev/null
 
10839
+mkdir .tst 2>/dev/null
 
10840
+if test -d .tst; then
 
10841
+  am__leading_dot=.
 
10842
+else
 
10843
+  am__leading_dot=_
 
10844
+fi
 
10845
+rmdir .tst 2>/dev/null
 
10846
+AC_SUBST([am__leading_dot])])
 
10847
+m4trace:/usr/share/aclocal-1.11/make.m4:14: -1- AC_DEFUN([AM_MAKE_INCLUDE], [am_make=${MAKE-make}
 
10848
+cat > confinc << 'END'
 
10849
+am__doit:
 
10850
+       @echo this is the am__doit target
 
10851
+.PHONY: am__doit
 
10852
+END
 
10853
+# If we don't find an include directive, just comment out the code.
 
10854
+AC_MSG_CHECKING([for style of include used by $am_make])
 
10855
+am__include="#"
 
10856
+am__quote=
 
10857
+_am_result=none
 
10858
+# First try GNU make style include.
 
10859
+echo "include confinc" > confmf
 
10860
+# Ignore all kinds of additional output from `make'.
 
10861
+case `$am_make -s -f confmf 2> /dev/null` in #(
 
10862
+*the\ am__doit\ target*)
 
10863
+  am__include=include
 
10864
+  am__quote=
 
10865
+  _am_result=GNU
 
10866
+  ;;
 
10867
+esac
 
10868
+# Now try BSD make style include.
 
10869
+if test "$am__include" = "#"; then
 
10870
+   echo '.include "confinc"' > confmf
 
10871
+   case `$am_make -s -f confmf 2> /dev/null` in #(
 
10872
+   *the\ am__doit\ target*)
 
10873
+     am__include=.include
 
10874
+     am__quote="\""
 
10875
+     _am_result=BSD
 
10876
+     ;;
 
10877
+   esac
 
10878
+fi
 
10879
+AC_SUBST([am__include])
 
10880
+AC_SUBST([am__quote])
 
10881
+AC_MSG_RESULT([$_am_result])
 
10882
+rm -f confinc confmf
 
10883
+])
 
10884
+m4trace:/usr/share/aclocal-1.11/minuso.m4:14: -1- AC_DEFUN([AM_PROG_CC_C_O], [AC_REQUIRE([AC_PROG_CC_C_O])dnl
 
10885
+AC_REQUIRE([AM_AUX_DIR_EXPAND])dnl
 
10886
+AC_REQUIRE_AUX_FILE([compile])dnl
 
10887
+# FIXME: we rely on the cache variable name because
 
10888
+# there is no other way.
 
10889
+set dummy $CC
 
10890
+am_cc=`echo $[2] | sed ['s/[^a-zA-Z0-9_]/_/g;s/^[0-9]/_/']`
 
10891
+eval am_t=\$ac_cv_prog_cc_${am_cc}_c_o
 
10892
+if test "$am_t" != yes; then
 
10893
+   # Losing compiler, so override with the script.
 
10894
+   # FIXME: It is wrong to rewrite CC.
 
10895
+   # But if we don't then we get into trouble of one sort or another.
 
10896
+   # A longer-term fix would be to have automake use am__CC in this case,
 
10897
+   # and then we could set am__CC="\$(top_srcdir)/compile \$(CC)"
 
10898
+   CC="$am_aux_dir/compile $CC"
 
10899
+fi
 
10900
+dnl Make sure AC_PROG_CC is never called again, or it will override our
 
10901
+dnl setting of CC.
 
10902
+m4_define([AC_PROG_CC],
 
10903
+          [m4_fatal([AC_PROG_CC cannot be called after AM_PROG_CC_C_O])])
 
10904
+])
 
10905
+m4trace:/usr/share/aclocal-1.11/missing.m4:14: -1- AC_DEFUN([AM_MISSING_PROG], [AC_REQUIRE([AM_MISSING_HAS_RUN])
 
10906
+$1=${$1-"${am_missing_run}$2"}
 
10907
+AC_SUBST($1)])
 
10908
+m4trace:/usr/share/aclocal-1.11/missing.m4:24: -1- AC_DEFUN([AM_MISSING_HAS_RUN], [AC_REQUIRE([AM_AUX_DIR_EXPAND])dnl
 
10909
+AC_REQUIRE_AUX_FILE([missing])dnl
 
10910
+if test x"${MISSING+set}" != xset; then
 
10911
+  case $am_aux_dir in
 
10912
+  *\ * | *\    *)
 
10913
+    MISSING="\${SHELL} \"$am_aux_dir/missing\"" ;;
 
10914
+  *)
 
10915
+    MISSING="\${SHELL} $am_aux_dir/missing" ;;
 
10916
+  esac
 
10917
+fi
 
10918
+# Use eval to expand $SHELL
 
10919
+if eval "$MISSING --run true"; then
 
10920
+  am_missing_run="$MISSING --run "
 
10921
+else
 
10922
+  am_missing_run=
 
10923
+  AC_MSG_WARN([`missing' script is too old or missing])
 
10924
+fi
 
10925
+])
 
10926
+m4trace:/usr/share/aclocal-1.11/mkdirp.m4:11: -1- AC_DEFUN([AM_PROG_MKDIR_P], [AC_PREREQ([2.60])dnl
 
10927
+AC_REQUIRE([AC_PROG_MKDIR_P])dnl
 
10928
+dnl Automake 1.8 to 1.9.6 used to define mkdir_p.  We now use MKDIR_P,
 
10929
+dnl while keeping a definition of mkdir_p for backward compatibility.
 
10930
+dnl @MKDIR_P@ is magic: AC_OUTPUT adjusts its value for each Makefile.
 
10931
+dnl However we cannot define mkdir_p as $(MKDIR_P) for the sake of
 
10932
+dnl Makefile.ins that do not define MKDIR_P, so we do our own
 
10933
+dnl adjustment using top_builddir (which is defined more often than
 
10934
+dnl MKDIR_P).
 
10935
+AC_SUBST([mkdir_p], ["$MKDIR_P"])dnl
 
10936
+case $mkdir_p in
 
10937
+  [[\\/$]]* | ?:[[\\/]]*) ;;
 
10938
+  */*) mkdir_p="\$(top_builddir)/$mkdir_p" ;;
 
10939
+esac
 
10940
+])
 
10941
+m4trace:/usr/share/aclocal-1.11/options.m4:13: -1- AC_DEFUN([_AM_MANGLE_OPTION], [[_AM_OPTION_]m4_bpatsubst($1, [[^a-zA-Z0-9_]], [_])])
 
10942
+m4trace:/usr/share/aclocal-1.11/options.m4:19: -1- AC_DEFUN([_AM_SET_OPTION], [m4_define(_AM_MANGLE_OPTION([$1]), 1)])
 
10943
+m4trace:/usr/share/aclocal-1.11/options.m4:25: -1- AC_DEFUN([_AM_SET_OPTIONS], [m4_foreach_w([_AM_Option], [$1], [_AM_SET_OPTION(_AM_Option)])])
 
10944
+m4trace:/usr/share/aclocal-1.11/options.m4:31: -1- AC_DEFUN([_AM_IF_OPTION], [m4_ifset(_AM_MANGLE_OPTION([$1]), [$2], [$3])])
 
10945
+m4trace:/usr/share/aclocal-1.11/runlog.m4:12: -1- AC_DEFUN([AM_RUN_LOG], [{ echo "$as_me:$LINENO: $1" >&AS_MESSAGE_LOG_FD
 
10946
+   ($1) >&AS_MESSAGE_LOG_FD 2>&AS_MESSAGE_LOG_FD
 
10947
+   ac_status=$?
 
10948
+   echo "$as_me:$LINENO: \$? = $ac_status" >&AS_MESSAGE_LOG_FD
 
10949
+   (exit $ac_status); }])
 
10950
+m4trace:/usr/share/aclocal-1.11/sanity.m4:14: -1- AC_DEFUN([AM_SANITY_CHECK], [AC_MSG_CHECKING([whether build environment is sane])
 
10951
+# Just in case
 
10952
+sleep 1
 
10953
+echo timestamp > conftest.file
 
10954
+# Reject unsafe characters in $srcdir or the absolute working directory
 
10955
+# name.  Accept space and tab only in the latter.
 
10956
+am_lf='
 
10957
+'
 
10958
+case `pwd` in
 
10959
+  *[[\\\"\#\$\&\'\`$am_lf]]*)
 
10960
+    AC_MSG_ERROR([unsafe absolute working directory name]);;
 
10961
+esac
 
10962
+case $srcdir in
 
10963
+  *[[\\\"\#\$\&\'\`$am_lf\ \   ]]*)
 
10964
+    AC_MSG_ERROR([unsafe srcdir value: `$srcdir']);;
 
10965
+esac
 
10966
+
 
10967
+# Do `set' in a subshell so we don't clobber the current shell's
 
10968
+# arguments.  Must try -L first in case configure is actually a
 
10969
+# symlink; some systems play weird games with the mod time of symlinks
 
10970
+# (eg FreeBSD returns the mod time of the symlink's containing
 
10971
+# directory).
 
10972
+if (
 
10973
+   set X `ls -Lt "$srcdir/configure" conftest.file 2> /dev/null`
 
10974
+   if test "$[*]" = "X"; then
 
10975
+      # -L didn't work.
 
10976
+      set X `ls -t "$srcdir/configure" conftest.file`
 
10977
+   fi
 
10978
+   rm -f conftest.file
 
10979
+   if test "$[*]" != "X $srcdir/configure conftest.file" \
 
10980
+      && test "$[*]" != "X conftest.file $srcdir/configure"; then
 
10981
+
 
10982
+      # If neither matched, then we have a broken ls.  This can happen
 
10983
+      # if, for instance, CONFIG_SHELL is bash and it inherits a
 
10984
+      # broken ls alias from the environment.  This has actually
 
10985
+      # happened.  Such a system could not be considered "sane".
 
10986
+      AC_MSG_ERROR([ls -t appears to fail.  Make sure there is not a broken
 
10987
+alias in your environment])
 
10988
+   fi
 
10989
+
 
10990
+   test "$[2]" = conftest.file
 
10991
+   )
 
10992
+then
 
10993
+   # Ok.
 
10994
+   :
 
10995
+else
 
10996
+   AC_MSG_ERROR([newly created file is older than distributed files!
 
10997
+Check your system clock])
 
10998
+fi
 
10999
+AC_MSG_RESULT(yes)])
 
11000
+m4trace:/usr/share/aclocal-1.11/silent.m4:14: -1- AC_DEFUN([AM_SILENT_RULES], [AC_ARG_ENABLE([silent-rules],
 
11001
+[  --enable-silent-rules          less verbose build output (undo: `make V=1')
 
11002
+  --disable-silent-rules         verbose build output (undo: `make V=0')])
 
11003
+case $enable_silent_rules in
 
11004
+yes) AM_DEFAULT_VERBOSITY=0;;
 
11005
+no)  AM_DEFAULT_VERBOSITY=1;;
 
11006
+*)   AM_DEFAULT_VERBOSITY=m4_if([$1], [yes], [0], [1]);;
 
11007
+esac
 
11008
+AC_SUBST([AM_DEFAULT_VERBOSITY])dnl
 
11009
+AM_BACKSLASH='\'
 
11010
+AC_SUBST([AM_BACKSLASH])dnl
 
11011
+_AM_SUBST_NOTMAKE([AM_BACKSLASH])dnl
 
11012
+])
 
11013
+m4trace:/usr/share/aclocal-1.11/strip.m4:17: -1- AC_DEFUN([AM_PROG_INSTALL_STRIP], [AC_REQUIRE([AM_PROG_INSTALL_SH])dnl
 
11014
+# Installed binaries are usually stripped using `strip' when the user
 
11015
+# run `make install-strip'.  However `strip' might not be the right
 
11016
+# tool to use in cross-compilation environments, therefore Automake
 
11017
+# will honor the `STRIP' environment variable to overrule this program.
 
11018
+dnl Don't test for $cross_compiling = yes, because it might be `maybe'.
 
11019
+if test "$cross_compiling" != no; then
 
11020
+  AC_CHECK_TOOL([STRIP], [strip], :)
 
11021
+fi
 
11022
+INSTALL_STRIP_PROGRAM="\$(install_sh) -c -s"
 
11023
+AC_SUBST([INSTALL_STRIP_PROGRAM])])
 
11024
+m4trace:/usr/share/aclocal-1.11/substnot.m4:14: -1- AC_DEFUN([_AM_SUBST_NOTMAKE])
 
11025
+m4trace:/usr/share/aclocal-1.11/substnot.m4:19: -1- AC_DEFUN([AM_SUBST_NOTMAKE], [_AM_SUBST_NOTMAKE($@)])
 
11026
+m4trace:/usr/share/aclocal-1.11/tar.m4:24: -1- AC_DEFUN([_AM_PROG_TAR], [# Always define AMTAR for backward compatibility.
 
11027
+AM_MISSING_PROG([AMTAR], [tar])
 
11028
+m4_if([$1], [v7],
 
11029
+     [am__tar='${AMTAR} chof - "$$tardir"'; am__untar='${AMTAR} xf -'],
 
11030
+     [m4_case([$1], [ustar],, [pax],,
 
11031
+              [m4_fatal([Unknown tar format])])
 
11032
+AC_MSG_CHECKING([how to create a $1 tar archive])
 
11033
+# Loop over all known methods to create a tar archive until one works.
 
11034
+_am_tools='gnutar m4_if([$1], [ustar], [plaintar]) pax cpio none'
 
11035
+_am_tools=${am_cv_prog_tar_$1-$_am_tools}
 
11036
+# Do not fold the above two line into one, because Tru64 sh and
 
11037
+# Solaris sh will not grok spaces in the rhs of `-'.
 
11038
+for _am_tool in $_am_tools
 
11039
+do
 
11040
+  case $_am_tool in
 
11041
+  gnutar)
 
11042
+    for _am_tar in tar gnutar gtar;
 
11043
+    do
 
11044
+      AM_RUN_LOG([$_am_tar --version]) && break
 
11045
+    done
 
11046
+    am__tar="$_am_tar --format=m4_if([$1], [pax], [posix], [$1]) -chf - "'"$$tardir"'
 
11047
+    am__tar_="$_am_tar --format=m4_if([$1], [pax], [posix], [$1]) -chf - "'"$tardir"'
 
11048
+    am__untar="$_am_tar -xf -"
 
11049
+    ;;
 
11050
+  plaintar)
 
11051
+    # Must skip GNU tar: if it does not support --format= it doesn't create
 
11052
+    # ustar tarball either.
 
11053
+    (tar --version) >/dev/null 2>&1 && continue
 
11054
+    am__tar='tar chf - "$$tardir"'
 
11055
+    am__tar_='tar chf - "$tardir"'
 
11056
+    am__untar='tar xf -'
 
11057
+    ;;
 
11058
+  pax)
 
11059
+    am__tar='pax -L -x $1 -w "$$tardir"'
 
11060
+    am__tar_='pax -L -x $1 -w "$tardir"'
 
11061
+    am__untar='pax -r'
 
11062
+    ;;
 
11063
+  cpio)
 
11064
+    am__tar='find "$$tardir" -print | cpio -o -H $1 -L'
 
11065
+    am__tar_='find "$tardir" -print | cpio -o -H $1 -L'
 
11066
+    am__untar='cpio -i -H $1 -d'
 
11067
+    ;;
 
11068
+  none)
 
11069
+    am__tar=false
 
11070
+    am__tar_=false
 
11071
+    am__untar=false
 
11072
+    ;;
 
11073
+  esac
 
11074
+
 
11075
+  # If the value was cached, stop now.  We just wanted to have am__tar
 
11076
+  # and am__untar set.
 
11077
+  test -n "${am_cv_prog_tar_$1}" && break
 
11078
+
 
11079
+  # tar/untar a dummy directory, and stop if the command works
 
11080
+  rm -rf conftest.dir
 
11081
+  mkdir conftest.dir
 
11082
+  echo GrepMe > conftest.dir/file
 
11083
+  AM_RUN_LOG([tardir=conftest.dir && eval $am__tar_ >conftest.tar])
 
11084
+  rm -rf conftest.dir
 
11085
+  if test -s conftest.tar; then
 
11086
+    AM_RUN_LOG([$am__untar <conftest.tar])
 
11087
+    grep GrepMe conftest.dir/file >/dev/null 2>&1 && break
 
11088
+  fi
 
11089
+done
 
11090
+rm -rf conftest.dir
 
11091
+
 
11092
+AC_CACHE_VAL([am_cv_prog_tar_$1], [am_cv_prog_tar_$1=$_am_tool])
 
11093
+AC_MSG_RESULT([$am_cv_prog_tar_$1])])
 
11094
+AC_SUBST([am__tar])
 
11095
+AC_SUBST([am__untar])
 
11096
+])
 
11097
+m4trace:configure.ac:1: -1- m4_pattern_forbid([^_?A[CHUM]_])
 
11098
+m4trace:configure.ac:1: -1- m4_pattern_forbid([_AC_])
 
11099
+m4trace:configure.ac:1: -1- m4_pattern_forbid([^LIBOBJS$], [do not use LIBOBJS directly, use AC_LIBOBJ (see section `AC_LIBOBJ vs LIBOBJS'])
 
11100
+m4trace:configure.ac:1: -1- m4_pattern_allow([^AS_FLAGS$])
 
11101
+m4trace:configure.ac:1: -1- m4_pattern_forbid([^_?m4_])
 
11102
+m4trace:configure.ac:1: -1- m4_pattern_forbid([^dnl$])
 
11103
+m4trace:configure.ac:1: -1- m4_pattern_forbid([^_?AS_])
 
11104
+m4trace:configure.ac:1: -1- m4_pattern_allow([^SHELL$])
 
11105
+m4trace:configure.ac:1: -1- m4_pattern_allow([^PATH_SEPARATOR$])
 
11106
+m4trace:configure.ac:1: -1- m4_pattern_allow([^PACKAGE_NAME$])
 
11107
+m4trace:configure.ac:1: -1- m4_pattern_allow([^PACKAGE_TARNAME$])
 
11108
+m4trace:configure.ac:1: -1- m4_pattern_allow([^PACKAGE_VERSION$])
 
11109
+m4trace:configure.ac:1: -1- m4_pattern_allow([^PACKAGE_STRING$])
 
11110
+m4trace:configure.ac:1: -1- m4_pattern_allow([^PACKAGE_BUGREPORT$])
 
11111
+m4trace:configure.ac:1: -1- m4_pattern_allow([^PACKAGE_URL$])
 
11112
+m4trace:configure.ac:1: -1- m4_pattern_allow([^exec_prefix$])
 
11113
+m4trace:configure.ac:1: -1- m4_pattern_allow([^prefix$])
 
11114
+m4trace:configure.ac:1: -1- m4_pattern_allow([^program_transform_name$])
 
11115
+m4trace:configure.ac:1: -1- m4_pattern_allow([^bindir$])
 
11116
+m4trace:configure.ac:1: -1- m4_pattern_allow([^sbindir$])
 
11117
+m4trace:configure.ac:1: -1- m4_pattern_allow([^libexecdir$])
 
11118
+m4trace:configure.ac:1: -1- m4_pattern_allow([^datarootdir$])
 
11119
+m4trace:configure.ac:1: -1- m4_pattern_allow([^datadir$])
 
11120
+m4trace:configure.ac:1: -1- m4_pattern_allow([^sysconfdir$])
 
11121
+m4trace:configure.ac:1: -1- m4_pattern_allow([^sharedstatedir$])
 
11122
+m4trace:configure.ac:1: -1- m4_pattern_allow([^localstatedir$])
 
11123
+m4trace:configure.ac:1: -1- m4_pattern_allow([^includedir$])
 
11124
+m4trace:configure.ac:1: -1- m4_pattern_allow([^oldincludedir$])
 
11125
+m4trace:configure.ac:1: -1- m4_pattern_allow([^docdir$])
 
11126
+m4trace:configure.ac:1: -1- m4_pattern_allow([^infodir$])
 
11127
+m4trace:configure.ac:1: -1- m4_pattern_allow([^htmldir$])
 
11128
+m4trace:configure.ac:1: -1- m4_pattern_allow([^dvidir$])
 
11129
+m4trace:configure.ac:1: -1- m4_pattern_allow([^pdfdir$])
 
11130
+m4trace:configure.ac:1: -1- m4_pattern_allow([^psdir$])
 
11131
+m4trace:configure.ac:1: -1- m4_pattern_allow([^libdir$])
 
11132
+m4trace:configure.ac:1: -1- m4_pattern_allow([^localedir$])
 
11133
+m4trace:configure.ac:1: -1- m4_pattern_allow([^mandir$])
 
11134
+m4trace:configure.ac:1: -1- m4_pattern_allow([^PACKAGE_NAME$])
 
11135
+m4trace:configure.ac:1: -1- m4_pattern_allow([^PACKAGE_TARNAME$])
 
11136
+m4trace:configure.ac:1: -1- m4_pattern_allow([^PACKAGE_VERSION$])
 
11137
+m4trace:configure.ac:1: -1- m4_pattern_allow([^PACKAGE_STRING$])
 
11138
+m4trace:configure.ac:1: -1- m4_pattern_allow([^PACKAGE_BUGREPORT$])
 
11139
+m4trace:configure.ac:1: -1- m4_pattern_allow([^PACKAGE_URL$])
 
11140
+m4trace:configure.ac:1: -1- m4_pattern_allow([^DEFS$])
 
11141
+m4trace:configure.ac:1: -1- m4_pattern_allow([^ECHO_C$])
 
11142
+m4trace:configure.ac:1: -1- m4_pattern_allow([^ECHO_N$])
 
11143
+m4trace:configure.ac:1: -1- m4_pattern_allow([^ECHO_T$])
 
11144
+m4trace:configure.ac:1: -1- m4_pattern_allow([^LIBS$])
 
11145
+m4trace:configure.ac:1: -1- m4_pattern_allow([^build_alias$])
 
11146
+m4trace:configure.ac:1: -1- m4_pattern_allow([^host_alias$])
 
11147
+m4trace:configure.ac:1: -1- m4_pattern_allow([^target_alias$])
 
11148
+m4trace:configure.ac:2: -1- AM_INIT_AUTOMAKE([-Wall -Werror foreign])
 
11149
+m4trace:configure.ac:2: -1- m4_pattern_allow([^AM_[A-Z]+FLAGS$])
 
11150
+m4trace:configure.ac:2: -1- AM_SET_CURRENT_AUTOMAKE_VERSION
 
11151
+m4trace:configure.ac:2: -1- AM_AUTOMAKE_VERSION([1.11.1])
 
11152
+m4trace:configure.ac:2: -1- _AM_AUTOCONF_VERSION([2.68])
 
11153
+m4trace:configure.ac:2: -1- m4_pattern_allow([^INSTALL_PROGRAM$])
 
11154
+m4trace:configure.ac:2: -1- m4_pattern_allow([^INSTALL_SCRIPT$])
 
11155
+m4trace:configure.ac:2: -1- m4_pattern_allow([^INSTALL_DATA$])
 
11156
+m4trace:configure.ac:2: -1- m4_pattern_allow([^am__isrc$])
 
11157
+m4trace:configure.ac:2: -1- _AM_SUBST_NOTMAKE([am__isrc])
 
11158
+m4trace:configure.ac:2: -1- m4_pattern_allow([^CYGPATH_W$])
 
11159
+m4trace:configure.ac:2: -1- _AM_SET_OPTIONS([-Wall -Werror foreign])
 
11160
+m4trace:configure.ac:2: -1- _AM_SET_OPTION([-Wall])
 
11161
+m4trace:configure.ac:2: -2- _AM_MANGLE_OPTION([-Wall])
 
11162
+m4trace:configure.ac:2: -1- _AM_SET_OPTION([-Werror])
 
11163
+m4trace:configure.ac:2: -2- _AM_MANGLE_OPTION([-Werror])
 
11164
+m4trace:configure.ac:2: -1- _AM_SET_OPTION([foreign])
 
11165
+m4trace:configure.ac:2: -2- _AM_MANGLE_OPTION([foreign])
 
11166
+m4trace:configure.ac:2: -1- m4_pattern_allow([^PACKAGE$])
 
11167
+m4trace:configure.ac:2: -1- m4_pattern_allow([^VERSION$])
 
11168
+m4trace:configure.ac:2: -1- _AM_IF_OPTION([no-define], [], [AC_DEFINE_UNQUOTED(PACKAGE, "$PACKAGE", [Name of package])
 
11169
+ AC_DEFINE_UNQUOTED(VERSION, "$VERSION", [Version number of package])])
 
11170
+m4trace:configure.ac:2: -2- _AM_MANGLE_OPTION([no-define])
 
11171
+m4trace:configure.ac:2: -1- m4_pattern_allow([^PACKAGE$])
 
11172
+m4trace:configure.ac:2: -1- m4_pattern_allow([^VERSION$])
 
11173
+m4trace:configure.ac:2: -1- AM_SANITY_CHECK
 
11174
+m4trace:configure.ac:2: -1- AM_MISSING_PROG([ACLOCAL], [aclocal-${am__api_version}])
 
11175
+m4trace:configure.ac:2: -1- AM_MISSING_HAS_RUN
 
11176
+m4trace:configure.ac:2: -1- AM_AUX_DIR_EXPAND
 
11177
+m4trace:configure.ac:2: -1- m4_pattern_allow([^ACLOCAL$])
 
11178
+m4trace:configure.ac:2: -1- AM_MISSING_PROG([AUTOCONF], [autoconf])
 
11179
+m4trace:configure.ac:2: -1- m4_pattern_allow([^AUTOCONF$])
 
11180
+m4trace:configure.ac:2: -1- AM_MISSING_PROG([AUTOMAKE], [automake-${am__api_version}])
 
11181
+m4trace:configure.ac:2: -1- m4_pattern_allow([^AUTOMAKE$])
 
11182
+m4trace:configure.ac:2: -1- AM_MISSING_PROG([AUTOHEADER], [autoheader])
 
11183
+m4trace:configure.ac:2: -1- m4_pattern_allow([^AUTOHEADER$])
 
11184
+m4trace:configure.ac:2: -1- AM_MISSING_PROG([MAKEINFO], [makeinfo])
 
11185
+m4trace:configure.ac:2: -1- m4_pattern_allow([^MAKEINFO$])
 
11186
+m4trace:configure.ac:2: -1- AM_PROG_INSTALL_SH
 
11187
+m4trace:configure.ac:2: -1- m4_pattern_allow([^install_sh$])
 
11188
+m4trace:configure.ac:2: -1- AM_PROG_INSTALL_STRIP
 
11189
+m4trace:configure.ac:2: -1- m4_pattern_allow([^STRIP$])
 
11190
+m4trace:configure.ac:2: -1- m4_pattern_allow([^INSTALL_STRIP_PROGRAM$])
 
11191
+m4trace:configure.ac:2: -1- AM_PROG_MKDIR_P
 
11192
+m4trace:configure.ac:2: -1- m4_pattern_allow([^MKDIR_P$])
 
11193
+m4trace:configure.ac:2: -1- m4_pattern_allow([^mkdir_p$])
 
11194
+m4trace:configure.ac:2: -1- m4_pattern_allow([^AWK$])
 
11195
+m4trace:configure.ac:2: -1- m4_pattern_allow([^SET_MAKE$])
 
11196
+m4trace:configure.ac:2: -1- AM_SET_LEADING_DOT
 
11197
+m4trace:configure.ac:2: -1- m4_pattern_allow([^am__leading_dot$])
 
11198
+m4trace:configure.ac:2: -1- _AM_IF_OPTION([tar-ustar], [_AM_PROG_TAR([ustar])], [_AM_IF_OPTION([tar-pax], [_AM_PROG_TAR([pax])],
 
11199
+                            [_AM_PROG_TAR([v7])])])
 
11200
+m4trace:configure.ac:2: -2- _AM_MANGLE_OPTION([tar-ustar])
 
11201
+m4trace:configure.ac:2: -1- _AM_IF_OPTION([tar-pax], [_AM_PROG_TAR([pax])], [_AM_PROG_TAR([v7])])
 
11202
+m4trace:configure.ac:2: -2- _AM_MANGLE_OPTION([tar-pax])
 
11203
+m4trace:configure.ac:2: -1- _AM_PROG_TAR([v7])
 
11204
+m4trace:configure.ac:2: -1- AM_MISSING_PROG([AMTAR], [tar])
 
11205
+m4trace:configure.ac:2: -1- m4_pattern_allow([^AMTAR$])
 
11206
+m4trace:configure.ac:2: -1- m4_pattern_allow([^am__tar$])
 
11207
+m4trace:configure.ac:2: -1- m4_pattern_allow([^am__untar$])
 
11208
+m4trace:configure.ac:2: -1- _AM_IF_OPTION([no-dependencies], [], [AC_PROVIDE_IFELSE([AC_PROG_CC],
 
11209
+                 [_AM_DEPENDENCIES(CC)],
 
11210
+                 [define([AC_PROG_CC],
 
11211
+                         defn([AC_PROG_CC])[_AM_DEPENDENCIES(CC)])])dnl
 
11212
+AC_PROVIDE_IFELSE([AC_PROG_CXX],
 
11213
+                 [_AM_DEPENDENCIES(CXX)],
 
11214
+                 [define([AC_PROG_CXX],
 
11215
+                         defn([AC_PROG_CXX])[_AM_DEPENDENCIES(CXX)])])dnl
 
11216
+AC_PROVIDE_IFELSE([AC_PROG_OBJC],
 
11217
+                 [_AM_DEPENDENCIES(OBJC)],
 
11218
+                 [define([AC_PROG_OBJC],
 
11219
+                         defn([AC_PROG_OBJC])[_AM_DEPENDENCIES(OBJC)])])dnl
 
11220
+])
 
11221
+m4trace:configure.ac:2: -2- _AM_MANGLE_OPTION([no-dependencies])
 
11222
+m4trace:configure.ac:2: -1- _AM_IF_OPTION([silent-rules], [AC_REQUIRE([AM_SILENT_RULES])])
 
11223
+m4trace:configure.ac:2: -2- _AM_MANGLE_OPTION([silent-rules])
 
11224
+m4trace:configure.ac:4: -1- m4_pattern_allow([^CC$])
 
11225
+m4trace:configure.ac:4: -1- m4_pattern_allow([^CFLAGS$])
 
11226
+m4trace:configure.ac:4: -1- m4_pattern_allow([^LDFLAGS$])
 
11227
+m4trace:configure.ac:4: -1- m4_pattern_allow([^LIBS$])
 
11228
+m4trace:configure.ac:4: -1- m4_pattern_allow([^CPPFLAGS$])
 
11229
+m4trace:configure.ac:4: -1- m4_pattern_allow([^CC$])
 
11230
+m4trace:configure.ac:4: -1- m4_pattern_allow([^CC$])
 
11231
+m4trace:configure.ac:4: -1- m4_pattern_allow([^CC$])
 
11232
+m4trace:configure.ac:4: -1- m4_pattern_allow([^CC$])
 
11233
+m4trace:configure.ac:4: -1- m4_pattern_allow([^ac_ct_CC$])
 
11234
+m4trace:configure.ac:4: -1- m4_pattern_allow([^EXEEXT$])
 
11235
+m4trace:configure.ac:4: -1- m4_pattern_allow([^OBJEXT$])
 
11236
+m4trace:configure.ac:4: -1- _AM_DEPENDENCIES([CC])
 
11237
+m4trace:configure.ac:4: -1- AM_SET_DEPDIR
 
11238
+m4trace:configure.ac:4: -1- m4_pattern_allow([^DEPDIR$])
 
11239
+m4trace:configure.ac:4: -1- AM_OUTPUT_DEPENDENCY_COMMANDS
 
11240
+m4trace:configure.ac:4: -1- AM_MAKE_INCLUDE
 
11241
+m4trace:configure.ac:4: -1- m4_pattern_allow([^am__include$])
 
11242
+m4trace:configure.ac:4: -1- m4_pattern_allow([^am__quote$])
 
11243
+m4trace:configure.ac:4: -1- AM_DEP_TRACK
 
11244
+m4trace:configure.ac:4: -1- AM_CONDITIONAL([AMDEP], [test "x$enable_dependency_tracking" != xno])
 
11245
+m4trace:configure.ac:4: -1- m4_pattern_allow([^AMDEP_TRUE$])
 
11246
+m4trace:configure.ac:4: -1- m4_pattern_allow([^AMDEP_FALSE$])
 
11247
+m4trace:configure.ac:4: -1- _AM_SUBST_NOTMAKE([AMDEP_TRUE])
 
11248
+m4trace:configure.ac:4: -1- _AM_SUBST_NOTMAKE([AMDEP_FALSE])
 
11249
+m4trace:configure.ac:4: -1- m4_pattern_allow([^AMDEPBACKSLASH$])
 
11250
+m4trace:configure.ac:4: -1- _AM_SUBST_NOTMAKE([AMDEPBACKSLASH])
 
11251
+m4trace:configure.ac:4: -1- m4_pattern_allow([^CCDEPMODE$])
 
11252
+m4trace:configure.ac:4: -1- AM_CONDITIONAL([am__fastdepCC], [
 
11253
+  test "x$enable_dependency_tracking" != xno \
 
11254
+  && test "$am_cv_CC_dependencies_compiler_type" = gcc3])
 
11255
+m4trace:configure.ac:4: -1- m4_pattern_allow([^am__fastdepCC_TRUE$])
 
11256
+m4trace:configure.ac:4: -1- m4_pattern_allow([^am__fastdepCC_FALSE$])
 
11257
+m4trace:configure.ac:4: -1- _AM_SUBST_NOTMAKE([am__fastdepCC_TRUE])
 
11258
+m4trace:configure.ac:4: -1- _AM_SUBST_NOTMAKE([am__fastdepCC_FALSE])
 
11259
+m4trace:configure.ac:5: -1- AM_PROG_CC_C_O
 
11260
+m4trace:configure.ac:5: -1- m4_pattern_allow([^NO_MINUS_C_MINUS_O$])
 
11261
+m4trace:configure.ac:7: -1- PKG_CHECK_MODULES([HBAAPI], [HBAAPI])
 
11262
+m4trace:configure.ac:7: -1- PKG_PROG_PKG_CONFIG
 
11263
+m4trace:configure.ac:7: -1- m4_pattern_forbid([^_?PKG_[A-Z_]+$])
 
11264
+m4trace:configure.ac:7: -1- m4_pattern_allow([^PKG_CONFIG(_(PATH|LIBDIR|SYSROOT_DIR|ALLOW_SYSTEM_(CFLAGS|LIBS)))?$])
 
11265
+m4trace:configure.ac:7: -1- m4_pattern_allow([^PKG_CONFIG_(DISABLE_UNINSTALLED|TOP_BUILD_DIR|DEBUG_SPEW)$])
 
11266
+m4trace:configure.ac:7: -1- m4_pattern_allow([^PKG_CONFIG$])
 
11267
+m4trace:configure.ac:7: -1- m4_pattern_allow([^PKG_CONFIG_PATH$])
 
11268
+m4trace:configure.ac:7: -1- m4_pattern_allow([^PKG_CONFIG_LIBDIR$])
 
11269
+m4trace:configure.ac:7: -1- m4_pattern_allow([^PKG_CONFIG$])
 
11270
+m4trace:configure.ac:7: -1- m4_pattern_allow([^HBAAPI_CFLAGS$])
 
11271
+m4trace:configure.ac:7: -1- m4_pattern_allow([^HBAAPI_LIBS$])
 
11272
+m4trace:configure.ac:7: -1- PKG_CHECK_EXISTS([HBAAPI], [pkg_cv_[]HBAAPI_CFLAGS=`$PKG_CONFIG --[]cflags "HBAAPI" 2>/dev/null`
 
11273
+                     test "x$?" != "x0" && pkg_failed=yes ], [pkg_failed=yes])
 
11274
+m4trace:configure.ac:7: -1- PKG_CHECK_EXISTS([HBAAPI], [pkg_cv_[]HBAAPI_LIBS=`$PKG_CONFIG --[]libs "HBAAPI" 2>/dev/null`
 
11275
+                     test "x$?" != "x0" && pkg_failed=yes ], [pkg_failed=yes])
 
11276
+m4trace:configure.ac:7: -1- _PKG_SHORT_ERRORS_SUPPORTED
 
11277
+m4trace:configure.ac:8: -1- m4_pattern_allow([^HBAAPI_CFLAGS$])
 
11278
+m4trace:configure.ac:9: -1- m4_pattern_allow([^HBAAPI_LIBS$])
 
11279
+m4trace:configure.ac:16: -1- AM_CONDITIONAL([WITH_DCB], [test "X$with_dcb" != Xno])
 
11280
+m4trace:configure.ac:16: -1- m4_pattern_allow([^WITH_DCB_TRUE$])
 
11281
+m4trace:configure.ac:16: -1- m4_pattern_allow([^WITH_DCB_FALSE$])
 
11282
+m4trace:configure.ac:16: -1- _AM_SUBST_NOTMAKE([WITH_DCB_TRUE])
 
11283
+m4trace:configure.ac:16: -1- _AM_SUBST_NOTMAKE([WITH_DCB_FALSE])
 
11284
+m4trace:configure.ac:18: -1- PKG_CHECK_MODULES([DCBD], [dcbd])
 
11285
+m4trace:configure.ac:18: -1- m4_pattern_allow([^DCBD_CFLAGS$])
 
11286
+m4trace:configure.ac:18: -1- m4_pattern_allow([^DCBD_LIBS$])
 
11287
+m4trace:configure.ac:18: -1- PKG_CHECK_EXISTS([dcbd], [pkg_cv_[]DCBD_CFLAGS=`$PKG_CONFIG --[]cflags "dcbd" 2>/dev/null`
 
11288
+                     test "x$?" != "x0" && pkg_failed=yes ], [pkg_failed=yes])
 
11289
+m4trace:configure.ac:18: -1- PKG_CHECK_EXISTS([dcbd], [pkg_cv_[]DCBD_LIBS=`$PKG_CONFIG --[]libs "dcbd" 2>/dev/null`
 
11290
+                     test "x$?" != "x0" && pkg_failed=yes ], [pkg_failed=yes])
 
11291
+m4trace:configure.ac:18: -1- _PKG_SHORT_ERRORS_SUPPORTED
 
11292
+m4trace:configure.ac:18: -1- m4_pattern_allow([^DCBD_CFLAGS$])
 
11293
+m4trace:configure.ac:23: -1- m4_pattern_allow([^LIB@&t@OBJS$])
 
11294
+m4trace:configure.ac:23: -1- m4_pattern_allow([^LTLIBOBJS$])
 
11295
+m4trace:configure.ac:23: -1- AM_CONDITIONAL([am__EXEEXT], [test -n "$EXEEXT"])
 
11296
+m4trace:configure.ac:23: -1- m4_pattern_allow([^am__EXEEXT_TRUE$])
 
11297
+m4trace:configure.ac:23: -1- m4_pattern_allow([^am__EXEEXT_FALSE$])
 
11298
+m4trace:configure.ac:23: -1- _AM_SUBST_NOTMAKE([am__EXEEXT_TRUE])
 
11299
+m4trace:configure.ac:23: -1- _AM_SUBST_NOTMAKE([am__EXEEXT_FALSE])
 
11300
+m4trace:configure.ac:23: -1- _AM_OUTPUT_DEPENDENCY_COMMANDS
 
11301
diff -Nur -x '*.orig' -x '*~' fcoe-utils-1.0.9//autom4te.cache/traces.1 fcoe-utils-1.0.9.new//autom4te.cache/traces.1
 
11302
--- fcoe-utils-1.0.9//autom4te.cache/traces.1   1969-12-31 19:00:00.000000000 -0500
 
11303
+++ fcoe-utils-1.0.9.new//autom4te.cache/traces.1       2011-09-14 11:57:05.000000000 -0400
 
11304
@@ -0,0 +1,382 @@
 
11305
+m4trace:configure.ac:1: -1- AC_INIT([fcoe-utils], [1.0.9], [devel@open-fcoe.org])
 
11306
+m4trace:configure.ac:1: -1- m4_pattern_forbid([^_?A[CHUM]_])
 
11307
+m4trace:configure.ac:1: -1- m4_pattern_forbid([_AC_])
 
11308
+m4trace:configure.ac:1: -1- m4_pattern_forbid([^LIBOBJS$], [do not use LIBOBJS directly, use AC_LIBOBJ (see section `AC_LIBOBJ vs LIBOBJS'])
 
11309
+m4trace:configure.ac:1: -1- m4_pattern_allow([^AS_FLAGS$])
 
11310
+m4trace:configure.ac:1: -1- m4_pattern_forbid([^_?m4_])
 
11311
+m4trace:configure.ac:1: -1- m4_pattern_forbid([^dnl$])
 
11312
+m4trace:configure.ac:1: -1- m4_pattern_forbid([^_?AS_])
 
11313
+m4trace:configure.ac:1: -1- AC_SUBST([SHELL])
 
11314
+m4trace:configure.ac:1: -1- AC_SUBST_TRACE([SHELL])
 
11315
+m4trace:configure.ac:1: -1- m4_pattern_allow([^SHELL$])
 
11316
+m4trace:configure.ac:1: -1- AC_SUBST([PATH_SEPARATOR])
 
11317
+m4trace:configure.ac:1: -1- AC_SUBST_TRACE([PATH_SEPARATOR])
 
11318
+m4trace:configure.ac:1: -1- m4_pattern_allow([^PATH_SEPARATOR$])
 
11319
+m4trace:configure.ac:1: -1- AC_SUBST([PACKAGE_NAME], [m4_ifdef([AC_PACKAGE_NAME],      ['AC_PACKAGE_NAME'])])
 
11320
+m4trace:configure.ac:1: -1- AC_SUBST_TRACE([PACKAGE_NAME])
 
11321
+m4trace:configure.ac:1: -1- m4_pattern_allow([^PACKAGE_NAME$])
 
11322
+m4trace:configure.ac:1: -1- AC_SUBST([PACKAGE_TARNAME], [m4_ifdef([AC_PACKAGE_TARNAME],   ['AC_PACKAGE_TARNAME'])])
 
11323
+m4trace:configure.ac:1: -1- AC_SUBST_TRACE([PACKAGE_TARNAME])
 
11324
+m4trace:configure.ac:1: -1- m4_pattern_allow([^PACKAGE_TARNAME$])
 
11325
+m4trace:configure.ac:1: -1- AC_SUBST([PACKAGE_VERSION], [m4_ifdef([AC_PACKAGE_VERSION],   ['AC_PACKAGE_VERSION'])])
 
11326
+m4trace:configure.ac:1: -1- AC_SUBST_TRACE([PACKAGE_VERSION])
 
11327
+m4trace:configure.ac:1: -1- m4_pattern_allow([^PACKAGE_VERSION$])
 
11328
+m4trace:configure.ac:1: -1- AC_SUBST([PACKAGE_STRING], [m4_ifdef([AC_PACKAGE_STRING],    ['AC_PACKAGE_STRING'])])
 
11329
+m4trace:configure.ac:1: -1- AC_SUBST_TRACE([PACKAGE_STRING])
 
11330
+m4trace:configure.ac:1: -1- m4_pattern_allow([^PACKAGE_STRING$])
 
11331
+m4trace:configure.ac:1: -1- AC_SUBST([PACKAGE_BUGREPORT], [m4_ifdef([AC_PACKAGE_BUGREPORT], ['AC_PACKAGE_BUGREPORT'])])
 
11332
+m4trace:configure.ac:1: -1- AC_SUBST_TRACE([PACKAGE_BUGREPORT])
 
11333
+m4trace:configure.ac:1: -1- m4_pattern_allow([^PACKAGE_BUGREPORT$])
 
11334
+m4trace:configure.ac:1: -1- AC_SUBST([PACKAGE_URL], [m4_ifdef([AC_PACKAGE_URL],       ['AC_PACKAGE_URL'])])
 
11335
+m4trace:configure.ac:1: -1- AC_SUBST_TRACE([PACKAGE_URL])
 
11336
+m4trace:configure.ac:1: -1- m4_pattern_allow([^PACKAGE_URL$])
 
11337
+m4trace:configure.ac:1: -1- AC_SUBST([exec_prefix], [NONE])
 
11338
+m4trace:configure.ac:1: -1- AC_SUBST_TRACE([exec_prefix])
 
11339
+m4trace:configure.ac:1: -1- m4_pattern_allow([^exec_prefix$])
 
11340
+m4trace:configure.ac:1: -1- AC_SUBST([prefix], [NONE])
 
11341
+m4trace:configure.ac:1: -1- AC_SUBST_TRACE([prefix])
 
11342
+m4trace:configure.ac:1: -1- m4_pattern_allow([^prefix$])
 
11343
+m4trace:configure.ac:1: -1- AC_SUBST([program_transform_name], [s,x,x,])
 
11344
+m4trace:configure.ac:1: -1- AC_SUBST_TRACE([program_transform_name])
 
11345
+m4trace:configure.ac:1: -1- m4_pattern_allow([^program_transform_name$])
 
11346
+m4trace:configure.ac:1: -1- AC_SUBST([bindir], ['${exec_prefix}/bin'])
 
11347
+m4trace:configure.ac:1: -1- AC_SUBST_TRACE([bindir])
 
11348
+m4trace:configure.ac:1: -1- m4_pattern_allow([^bindir$])
 
11349
+m4trace:configure.ac:1: -1- AC_SUBST([sbindir], ['${exec_prefix}/sbin'])
 
11350
+m4trace:configure.ac:1: -1- AC_SUBST_TRACE([sbindir])
 
11351
+m4trace:configure.ac:1: -1- m4_pattern_allow([^sbindir$])
 
11352
+m4trace:configure.ac:1: -1- AC_SUBST([libexecdir], ['${exec_prefix}/libexec'])
 
11353
+m4trace:configure.ac:1: -1- AC_SUBST_TRACE([libexecdir])
 
11354
+m4trace:configure.ac:1: -1- m4_pattern_allow([^libexecdir$])
 
11355
+m4trace:configure.ac:1: -1- AC_SUBST([datarootdir], ['${prefix}/share'])
 
11356
+m4trace:configure.ac:1: -1- AC_SUBST_TRACE([datarootdir])
 
11357
+m4trace:configure.ac:1: -1- m4_pattern_allow([^datarootdir$])
 
11358
+m4trace:configure.ac:1: -1- AC_SUBST([datadir], ['${datarootdir}'])
 
11359
+m4trace:configure.ac:1: -1- AC_SUBST_TRACE([datadir])
 
11360
+m4trace:configure.ac:1: -1- m4_pattern_allow([^datadir$])
 
11361
+m4trace:configure.ac:1: -1- AC_SUBST([sysconfdir], ['${prefix}/etc'])
 
11362
+m4trace:configure.ac:1: -1- AC_SUBST_TRACE([sysconfdir])
 
11363
+m4trace:configure.ac:1: -1- m4_pattern_allow([^sysconfdir$])
 
11364
+m4trace:configure.ac:1: -1- AC_SUBST([sharedstatedir], ['${prefix}/com'])
 
11365
+m4trace:configure.ac:1: -1- AC_SUBST_TRACE([sharedstatedir])
 
11366
+m4trace:configure.ac:1: -1- m4_pattern_allow([^sharedstatedir$])
 
11367
+m4trace:configure.ac:1: -1- AC_SUBST([localstatedir], ['${prefix}/var'])
 
11368
+m4trace:configure.ac:1: -1- AC_SUBST_TRACE([localstatedir])
 
11369
+m4trace:configure.ac:1: -1- m4_pattern_allow([^localstatedir$])
 
11370
+m4trace:configure.ac:1: -1- AC_SUBST([includedir], ['${prefix}/include'])
 
11371
+m4trace:configure.ac:1: -1- AC_SUBST_TRACE([includedir])
 
11372
+m4trace:configure.ac:1: -1- m4_pattern_allow([^includedir$])
 
11373
+m4trace:configure.ac:1: -1- AC_SUBST([oldincludedir], ['/usr/include'])
 
11374
+m4trace:configure.ac:1: -1- AC_SUBST_TRACE([oldincludedir])
 
11375
+m4trace:configure.ac:1: -1- m4_pattern_allow([^oldincludedir$])
 
11376
+m4trace:configure.ac:1: -1- AC_SUBST([docdir], [m4_ifset([AC_PACKAGE_TARNAME],
 
11377
+                                    ['${datarootdir}/doc/${PACKAGE_TARNAME}'],
 
11378
+                                    ['${datarootdir}/doc/${PACKAGE}'])])
 
11379
+m4trace:configure.ac:1: -1- AC_SUBST_TRACE([docdir])
 
11380
+m4trace:configure.ac:1: -1- m4_pattern_allow([^docdir$])
 
11381
+m4trace:configure.ac:1: -1- AC_SUBST([infodir], ['${datarootdir}/info'])
 
11382
+m4trace:configure.ac:1: -1- AC_SUBST_TRACE([infodir])
 
11383
+m4trace:configure.ac:1: -1- m4_pattern_allow([^infodir$])
 
11384
+m4trace:configure.ac:1: -1- AC_SUBST([htmldir], ['${docdir}'])
 
11385
+m4trace:configure.ac:1: -1- AC_SUBST_TRACE([htmldir])
 
11386
+m4trace:configure.ac:1: -1- m4_pattern_allow([^htmldir$])
 
11387
+m4trace:configure.ac:1: -1- AC_SUBST([dvidir], ['${docdir}'])
 
11388
+m4trace:configure.ac:1: -1- AC_SUBST_TRACE([dvidir])
 
11389
+m4trace:configure.ac:1: -1- m4_pattern_allow([^dvidir$])
 
11390
+m4trace:configure.ac:1: -1- AC_SUBST([pdfdir], ['${docdir}'])
 
11391
+m4trace:configure.ac:1: -1- AC_SUBST_TRACE([pdfdir])
 
11392
+m4trace:configure.ac:1: -1- m4_pattern_allow([^pdfdir$])
 
11393
+m4trace:configure.ac:1: -1- AC_SUBST([psdir], ['${docdir}'])
 
11394
+m4trace:configure.ac:1: -1- AC_SUBST_TRACE([psdir])
 
11395
+m4trace:configure.ac:1: -1- m4_pattern_allow([^psdir$])
 
11396
+m4trace:configure.ac:1: -1- AC_SUBST([libdir], ['${exec_prefix}/lib'])
 
11397
+m4trace:configure.ac:1: -1- AC_SUBST_TRACE([libdir])
 
11398
+m4trace:configure.ac:1: -1- m4_pattern_allow([^libdir$])
 
11399
+m4trace:configure.ac:1: -1- AC_SUBST([localedir], ['${datarootdir}/locale'])
 
11400
+m4trace:configure.ac:1: -1- AC_SUBST_TRACE([localedir])
 
11401
+m4trace:configure.ac:1: -1- m4_pattern_allow([^localedir$])
 
11402
+m4trace:configure.ac:1: -1- AC_SUBST([mandir], ['${datarootdir}/man'])
 
11403
+m4trace:configure.ac:1: -1- AC_SUBST_TRACE([mandir])
 
11404
+m4trace:configure.ac:1: -1- m4_pattern_allow([^mandir$])
 
11405
+m4trace:configure.ac:1: -1- AC_DEFINE_TRACE_LITERAL([PACKAGE_NAME])
 
11406
+m4trace:configure.ac:1: -1- m4_pattern_allow([^PACKAGE_NAME$])
 
11407
+m4trace:configure.ac:1: -1- AH_OUTPUT([PACKAGE_NAME], [/* Define to the full name of this package. */
 
11408
+@%:@undef PACKAGE_NAME])
 
11409
+m4trace:configure.ac:1: -1- AC_DEFINE_TRACE_LITERAL([PACKAGE_TARNAME])
 
11410
+m4trace:configure.ac:1: -1- m4_pattern_allow([^PACKAGE_TARNAME$])
 
11411
+m4trace:configure.ac:1: -1- AH_OUTPUT([PACKAGE_TARNAME], [/* Define to the one symbol short name of this package. */
 
11412
+@%:@undef PACKAGE_TARNAME])
 
11413
+m4trace:configure.ac:1: -1- AC_DEFINE_TRACE_LITERAL([PACKAGE_VERSION])
 
11414
+m4trace:configure.ac:1: -1- m4_pattern_allow([^PACKAGE_VERSION$])
 
11415
+m4trace:configure.ac:1: -1- AH_OUTPUT([PACKAGE_VERSION], [/* Define to the version of this package. */
 
11416
+@%:@undef PACKAGE_VERSION])
 
11417
+m4trace:configure.ac:1: -1- AC_DEFINE_TRACE_LITERAL([PACKAGE_STRING])
 
11418
+m4trace:configure.ac:1: -1- m4_pattern_allow([^PACKAGE_STRING$])
 
11419
+m4trace:configure.ac:1: -1- AH_OUTPUT([PACKAGE_STRING], [/* Define to the full name and version of this package. */
 
11420
+@%:@undef PACKAGE_STRING])
 
11421
+m4trace:configure.ac:1: -1- AC_DEFINE_TRACE_LITERAL([PACKAGE_BUGREPORT])
 
11422
+m4trace:configure.ac:1: -1- m4_pattern_allow([^PACKAGE_BUGREPORT$])
 
11423
+m4trace:configure.ac:1: -1- AH_OUTPUT([PACKAGE_BUGREPORT], [/* Define to the address where bug reports for this package should be sent. */
 
11424
+@%:@undef PACKAGE_BUGREPORT])
 
11425
+m4trace:configure.ac:1: -1- AC_DEFINE_TRACE_LITERAL([PACKAGE_URL])
 
11426
+m4trace:configure.ac:1: -1- m4_pattern_allow([^PACKAGE_URL$])
 
11427
+m4trace:configure.ac:1: -1- AH_OUTPUT([PACKAGE_URL], [/* Define to the home page for this package. */
 
11428
+@%:@undef PACKAGE_URL])
 
11429
+m4trace:configure.ac:1: -1- AC_SUBST([DEFS])
 
11430
+m4trace:configure.ac:1: -1- AC_SUBST_TRACE([DEFS])
 
11431
+m4trace:configure.ac:1: -1- m4_pattern_allow([^DEFS$])
 
11432
+m4trace:configure.ac:1: -1- AC_SUBST([ECHO_C])
 
11433
+m4trace:configure.ac:1: -1- AC_SUBST_TRACE([ECHO_C])
 
11434
+m4trace:configure.ac:1: -1- m4_pattern_allow([^ECHO_C$])
 
11435
+m4trace:configure.ac:1: -1- AC_SUBST([ECHO_N])
 
11436
+m4trace:configure.ac:1: -1- AC_SUBST_TRACE([ECHO_N])
 
11437
+m4trace:configure.ac:1: -1- m4_pattern_allow([^ECHO_N$])
 
11438
+m4trace:configure.ac:1: -1- AC_SUBST([ECHO_T])
 
11439
+m4trace:configure.ac:1: -1- AC_SUBST_TRACE([ECHO_T])
 
11440
+m4trace:configure.ac:1: -1- m4_pattern_allow([^ECHO_T$])
 
11441
+m4trace:configure.ac:1: -1- AC_SUBST([LIBS])
 
11442
+m4trace:configure.ac:1: -1- AC_SUBST_TRACE([LIBS])
 
11443
+m4trace:configure.ac:1: -1- m4_pattern_allow([^LIBS$])
 
11444
+m4trace:configure.ac:1: -1- AC_SUBST([build_alias])
 
11445
+m4trace:configure.ac:1: -1- AC_SUBST_TRACE([build_alias])
 
11446
+m4trace:configure.ac:1: -1- m4_pattern_allow([^build_alias$])
 
11447
+m4trace:configure.ac:1: -1- AC_SUBST([host_alias])
 
11448
+m4trace:configure.ac:1: -1- AC_SUBST_TRACE([host_alias])
 
11449
+m4trace:configure.ac:1: -1- m4_pattern_allow([^host_alias$])
 
11450
+m4trace:configure.ac:1: -1- AC_SUBST([target_alias])
 
11451
+m4trace:configure.ac:1: -1- AC_SUBST_TRACE([target_alias])
 
11452
+m4trace:configure.ac:1: -1- m4_pattern_allow([^target_alias$])
 
11453
+m4trace:configure.ac:2: -1- AM_INIT_AUTOMAKE([-Wall -Werror foreign])
 
11454
+m4trace:configure.ac:2: -1- m4_pattern_allow([^AM_[A-Z]+FLAGS$])
 
11455
+m4trace:configure.ac:2: -1- AM_AUTOMAKE_VERSION([1.11.1])
 
11456
+m4trace:configure.ac:2: -1- AC_REQUIRE_AUX_FILE([install-sh])
 
11457
+m4trace:configure.ac:2: -1- AC_SUBST([INSTALL_PROGRAM])
 
11458
+m4trace:configure.ac:2: -1- AC_SUBST_TRACE([INSTALL_PROGRAM])
 
11459
+m4trace:configure.ac:2: -1- m4_pattern_allow([^INSTALL_PROGRAM$])
 
11460
+m4trace:configure.ac:2: -1- AC_SUBST([INSTALL_SCRIPT])
 
11461
+m4trace:configure.ac:2: -1- AC_SUBST_TRACE([INSTALL_SCRIPT])
 
11462
+m4trace:configure.ac:2: -1- m4_pattern_allow([^INSTALL_SCRIPT$])
 
11463
+m4trace:configure.ac:2: -1- AC_SUBST([INSTALL_DATA])
 
11464
+m4trace:configure.ac:2: -1- AC_SUBST_TRACE([INSTALL_DATA])
 
11465
+m4trace:configure.ac:2: -1- m4_pattern_allow([^INSTALL_DATA$])
 
11466
+m4trace:configure.ac:2: -1- AC_SUBST([am__isrc], [' -I$(srcdir)'])
 
11467
+m4trace:configure.ac:2: -1- AC_SUBST_TRACE([am__isrc])
 
11468
+m4trace:configure.ac:2: -1- m4_pattern_allow([^am__isrc$])
 
11469
+m4trace:configure.ac:2: -1- _AM_SUBST_NOTMAKE([am__isrc])
 
11470
+m4trace:configure.ac:2: -1- AC_SUBST([CYGPATH_W])
 
11471
+m4trace:configure.ac:2: -1- AC_SUBST_TRACE([CYGPATH_W])
 
11472
+m4trace:configure.ac:2: -1- m4_pattern_allow([^CYGPATH_W$])
 
11473
+m4trace:configure.ac:2: -1- AC_SUBST([PACKAGE], ['AC_PACKAGE_TARNAME'])
 
11474
+m4trace:configure.ac:2: -1- AC_SUBST_TRACE([PACKAGE])
 
11475
+m4trace:configure.ac:2: -1- m4_pattern_allow([^PACKAGE$])
 
11476
+m4trace:configure.ac:2: -1- AC_SUBST([VERSION], ['AC_PACKAGE_VERSION'])
 
11477
+m4trace:configure.ac:2: -1- AC_SUBST_TRACE([VERSION])
 
11478
+m4trace:configure.ac:2: -1- m4_pattern_allow([^VERSION$])
 
11479
+m4trace:configure.ac:2: -1- AC_DEFINE_TRACE_LITERAL([PACKAGE])
 
11480
+m4trace:configure.ac:2: -1- m4_pattern_allow([^PACKAGE$])
 
11481
+m4trace:configure.ac:2: -1- AH_OUTPUT([PACKAGE], [/* Name of package */
 
11482
+@%:@undef PACKAGE])
 
11483
+m4trace:configure.ac:2: -1- AC_DEFINE_TRACE_LITERAL([VERSION])
 
11484
+m4trace:configure.ac:2: -1- m4_pattern_allow([^VERSION$])
 
11485
+m4trace:configure.ac:2: -1- AH_OUTPUT([VERSION], [/* Version number of package */
 
11486
+@%:@undef VERSION])
 
11487
+m4trace:configure.ac:2: -1- AC_REQUIRE_AUX_FILE([missing])
 
11488
+m4trace:configure.ac:2: -1- AC_SUBST([ACLOCAL])
 
11489
+m4trace:configure.ac:2: -1- AC_SUBST_TRACE([ACLOCAL])
 
11490
+m4trace:configure.ac:2: -1- m4_pattern_allow([^ACLOCAL$])
 
11491
+m4trace:configure.ac:2: -1- AC_SUBST([AUTOCONF])
 
11492
+m4trace:configure.ac:2: -1- AC_SUBST_TRACE([AUTOCONF])
 
11493
+m4trace:configure.ac:2: -1- m4_pattern_allow([^AUTOCONF$])
 
11494
+m4trace:configure.ac:2: -1- AC_SUBST([AUTOMAKE])
 
11495
+m4trace:configure.ac:2: -1- AC_SUBST_TRACE([AUTOMAKE])
 
11496
+m4trace:configure.ac:2: -1- m4_pattern_allow([^AUTOMAKE$])
 
11497
+m4trace:configure.ac:2: -1- AC_SUBST([AUTOHEADER])
 
11498
+m4trace:configure.ac:2: -1- AC_SUBST_TRACE([AUTOHEADER])
 
11499
+m4trace:configure.ac:2: -1- m4_pattern_allow([^AUTOHEADER$])
 
11500
+m4trace:configure.ac:2: -1- AC_SUBST([MAKEINFO])
 
11501
+m4trace:configure.ac:2: -1- AC_SUBST_TRACE([MAKEINFO])
 
11502
+m4trace:configure.ac:2: -1- m4_pattern_allow([^MAKEINFO$])
 
11503
+m4trace:configure.ac:2: -1- AC_SUBST([install_sh])
 
11504
+m4trace:configure.ac:2: -1- AC_SUBST_TRACE([install_sh])
 
11505
+m4trace:configure.ac:2: -1- m4_pattern_allow([^install_sh$])
 
11506
+m4trace:configure.ac:2: -1- AC_SUBST([STRIP])
 
11507
+m4trace:configure.ac:2: -1- AC_SUBST_TRACE([STRIP])
 
11508
+m4trace:configure.ac:2: -1- m4_pattern_allow([^STRIP$])
 
11509
+m4trace:configure.ac:2: -1- AC_SUBST([INSTALL_STRIP_PROGRAM])
 
11510
+m4trace:configure.ac:2: -1- AC_SUBST_TRACE([INSTALL_STRIP_PROGRAM])
 
11511
+m4trace:configure.ac:2: -1- m4_pattern_allow([^INSTALL_STRIP_PROGRAM$])
 
11512
+m4trace:configure.ac:2: -1- AC_REQUIRE_AUX_FILE([install-sh])
 
11513
+m4trace:configure.ac:2: -1- AC_SUBST([MKDIR_P])
 
11514
+m4trace:configure.ac:2: -1- AC_SUBST_TRACE([MKDIR_P])
 
11515
+m4trace:configure.ac:2: -1- m4_pattern_allow([^MKDIR_P$])
 
11516
+m4trace:configure.ac:2: -1- AC_SUBST([mkdir_p], ["$MKDIR_P"])
 
11517
+m4trace:configure.ac:2: -1- AC_SUBST_TRACE([mkdir_p])
 
11518
+m4trace:configure.ac:2: -1- m4_pattern_allow([^mkdir_p$])
 
11519
+m4trace:configure.ac:2: -1- AC_SUBST([AWK])
 
11520
+m4trace:configure.ac:2: -1- AC_SUBST_TRACE([AWK])
 
11521
+m4trace:configure.ac:2: -1- m4_pattern_allow([^AWK$])
 
11522
+m4trace:configure.ac:2: -1- AC_SUBST([SET_MAKE])
 
11523
+m4trace:configure.ac:2: -1- AC_SUBST_TRACE([SET_MAKE])
 
11524
+m4trace:configure.ac:2: -1- m4_pattern_allow([^SET_MAKE$])
 
11525
+m4trace:configure.ac:2: -1- AC_SUBST([am__leading_dot])
 
11526
+m4trace:configure.ac:2: -1- AC_SUBST_TRACE([am__leading_dot])
 
11527
+m4trace:configure.ac:2: -1- m4_pattern_allow([^am__leading_dot$])
 
11528
+m4trace:configure.ac:2: -1- AC_SUBST([AMTAR])
 
11529
+m4trace:configure.ac:2: -1- AC_SUBST_TRACE([AMTAR])
 
11530
+m4trace:configure.ac:2: -1- m4_pattern_allow([^AMTAR$])
 
11531
+m4trace:configure.ac:2: -1- AC_SUBST([am__tar])
 
11532
+m4trace:configure.ac:2: -1- AC_SUBST_TRACE([am__tar])
 
11533
+m4trace:configure.ac:2: -1- m4_pattern_allow([^am__tar$])
 
11534
+m4trace:configure.ac:2: -1- AC_SUBST([am__untar])
 
11535
+m4trace:configure.ac:2: -1- AC_SUBST_TRACE([am__untar])
 
11536
+m4trace:configure.ac:2: -1- m4_pattern_allow([^am__untar$])
 
11537
+m4trace:configure.ac:4: -1- AC_SUBST([CC])
 
11538
+m4trace:configure.ac:4: -1- AC_SUBST_TRACE([CC])
 
11539
+m4trace:configure.ac:4: -1- m4_pattern_allow([^CC$])
 
11540
+m4trace:configure.ac:4: -1- AC_SUBST([CFLAGS])
 
11541
+m4trace:configure.ac:4: -1- AC_SUBST_TRACE([CFLAGS])
 
11542
+m4trace:configure.ac:4: -1- m4_pattern_allow([^CFLAGS$])
 
11543
+m4trace:configure.ac:4: -1- AC_SUBST([LDFLAGS])
 
11544
+m4trace:configure.ac:4: -1- AC_SUBST_TRACE([LDFLAGS])
 
11545
+m4trace:configure.ac:4: -1- m4_pattern_allow([^LDFLAGS$])
 
11546
+m4trace:configure.ac:4: -1- AC_SUBST([LIBS])
 
11547
+m4trace:configure.ac:4: -1- AC_SUBST_TRACE([LIBS])
 
11548
+m4trace:configure.ac:4: -1- m4_pattern_allow([^LIBS$])
 
11549
+m4trace:configure.ac:4: -1- AC_SUBST([CPPFLAGS])
 
11550
+m4trace:configure.ac:4: -1- AC_SUBST_TRACE([CPPFLAGS])
 
11551
+m4trace:configure.ac:4: -1- m4_pattern_allow([^CPPFLAGS$])
 
11552
+m4trace:configure.ac:4: -1- AC_SUBST([CC])
 
11553
+m4trace:configure.ac:4: -1- AC_SUBST_TRACE([CC])
 
11554
+m4trace:configure.ac:4: -1- m4_pattern_allow([^CC$])
 
11555
+m4trace:configure.ac:4: -1- AC_SUBST([CC])
 
11556
+m4trace:configure.ac:4: -1- AC_SUBST_TRACE([CC])
 
11557
+m4trace:configure.ac:4: -1- m4_pattern_allow([^CC$])
 
11558
+m4trace:configure.ac:4: -1- AC_SUBST([CC])
 
11559
+m4trace:configure.ac:4: -1- AC_SUBST_TRACE([CC])
 
11560
+m4trace:configure.ac:4: -1- m4_pattern_allow([^CC$])
 
11561
+m4trace:configure.ac:4: -1- AC_SUBST([CC])
 
11562
+m4trace:configure.ac:4: -1- AC_SUBST_TRACE([CC])
 
11563
+m4trace:configure.ac:4: -1- m4_pattern_allow([^CC$])
 
11564
+m4trace:configure.ac:4: -1- AC_SUBST([ac_ct_CC])
 
11565
+m4trace:configure.ac:4: -1- AC_SUBST_TRACE([ac_ct_CC])
 
11566
+m4trace:configure.ac:4: -1- m4_pattern_allow([^ac_ct_CC$])
 
11567
+m4trace:configure.ac:4: -1- AC_SUBST([EXEEXT], [$ac_cv_exeext])
 
11568
+m4trace:configure.ac:4: -1- AC_SUBST_TRACE([EXEEXT])
 
11569
+m4trace:configure.ac:4: -1- m4_pattern_allow([^EXEEXT$])
 
11570
+m4trace:configure.ac:4: -1- AC_SUBST([OBJEXT], [$ac_cv_objext])
 
11571
+m4trace:configure.ac:4: -1- AC_SUBST_TRACE([OBJEXT])
 
11572
+m4trace:configure.ac:4: -1- m4_pattern_allow([^OBJEXT$])
 
11573
+m4trace:configure.ac:4: -1- AC_SUBST([DEPDIR], ["${am__leading_dot}deps"])
 
11574
+m4trace:configure.ac:4: -1- AC_SUBST_TRACE([DEPDIR])
 
11575
+m4trace:configure.ac:4: -1- m4_pattern_allow([^DEPDIR$])
 
11576
+m4trace:configure.ac:4: -1- AC_SUBST([am__include])
 
11577
+m4trace:configure.ac:4: -1- AC_SUBST_TRACE([am__include])
 
11578
+m4trace:configure.ac:4: -1- m4_pattern_allow([^am__include$])
 
11579
+m4trace:configure.ac:4: -1- AC_SUBST([am__quote])
 
11580
+m4trace:configure.ac:4: -1- AC_SUBST_TRACE([am__quote])
 
11581
+m4trace:configure.ac:4: -1- m4_pattern_allow([^am__quote$])
 
11582
+m4trace:configure.ac:4: -1- AM_CONDITIONAL([AMDEP], [test "x$enable_dependency_tracking" != xno])
 
11583
+m4trace:configure.ac:4: -1- AC_SUBST([AMDEP_TRUE])
 
11584
+m4trace:configure.ac:4: -1- AC_SUBST_TRACE([AMDEP_TRUE])
 
11585
+m4trace:configure.ac:4: -1- m4_pattern_allow([^AMDEP_TRUE$])
 
11586
+m4trace:configure.ac:4: -1- AC_SUBST([AMDEP_FALSE])
 
11587
+m4trace:configure.ac:4: -1- AC_SUBST_TRACE([AMDEP_FALSE])
 
11588
+m4trace:configure.ac:4: -1- m4_pattern_allow([^AMDEP_FALSE$])
 
11589
+m4trace:configure.ac:4: -1- _AM_SUBST_NOTMAKE([AMDEP_TRUE])
 
11590
+m4trace:configure.ac:4: -1- _AM_SUBST_NOTMAKE([AMDEP_FALSE])
 
11591
+m4trace:configure.ac:4: -1- AC_SUBST([AMDEPBACKSLASH])
 
11592
+m4trace:configure.ac:4: -1- AC_SUBST_TRACE([AMDEPBACKSLASH])
 
11593
+m4trace:configure.ac:4: -1- m4_pattern_allow([^AMDEPBACKSLASH$])
 
11594
+m4trace:configure.ac:4: -1- _AM_SUBST_NOTMAKE([AMDEPBACKSLASH])
 
11595
+m4trace:configure.ac:4: -1- AC_SUBST([CCDEPMODE], [depmode=$am_cv_CC_dependencies_compiler_type])
 
11596
+m4trace:configure.ac:4: -1- AC_SUBST_TRACE([CCDEPMODE])
 
11597
+m4trace:configure.ac:4: -1- m4_pattern_allow([^CCDEPMODE$])
 
11598
+m4trace:configure.ac:4: -1- AM_CONDITIONAL([am__fastdepCC], [
 
11599
+  test "x$enable_dependency_tracking" != xno \
 
11600
+  && test "$am_cv_CC_dependencies_compiler_type" = gcc3])
 
11601
+m4trace:configure.ac:4: -1- AC_SUBST([am__fastdepCC_TRUE])
 
11602
+m4trace:configure.ac:4: -1- AC_SUBST_TRACE([am__fastdepCC_TRUE])
 
11603
+m4trace:configure.ac:4: -1- m4_pattern_allow([^am__fastdepCC_TRUE$])
 
11604
+m4trace:configure.ac:4: -1- AC_SUBST([am__fastdepCC_FALSE])
 
11605
+m4trace:configure.ac:4: -1- AC_SUBST_TRACE([am__fastdepCC_FALSE])
 
11606
+m4trace:configure.ac:4: -1- m4_pattern_allow([^am__fastdepCC_FALSE$])
 
11607
+m4trace:configure.ac:4: -1- _AM_SUBST_NOTMAKE([am__fastdepCC_TRUE])
 
11608
+m4trace:configure.ac:4: -1- _AM_SUBST_NOTMAKE([am__fastdepCC_FALSE])
 
11609
+m4trace:configure.ac:5: -1- AM_PROG_CC_C_O
 
11610
+m4trace:configure.ac:5: -1- AC_DEFINE_TRACE_LITERAL([NO_MINUS_C_MINUS_O])
 
11611
+m4trace:configure.ac:5: -1- m4_pattern_allow([^NO_MINUS_C_MINUS_O$])
 
11612
+m4trace:configure.ac:5: -1- AH_OUTPUT([NO_MINUS_C_MINUS_O], [/* Define to 1 if your C compiler doesn\'t accept -c and -o together. */
 
11613
+@%:@undef NO_MINUS_C_MINUS_O])
 
11614
+m4trace:configure.ac:5: -1- AC_REQUIRE_AUX_FILE([compile])
 
11615
+m4trace:configure.ac:7: -1- m4_pattern_forbid([^_?PKG_[A-Z_]+$])
 
11616
+m4trace:configure.ac:7: -1- m4_pattern_allow([^PKG_CONFIG(_(PATH|LIBDIR|SYSROOT_DIR|ALLOW_SYSTEM_(CFLAGS|LIBS)))?$])
 
11617
+m4trace:configure.ac:7: -1- m4_pattern_allow([^PKG_CONFIG_(DISABLE_UNINSTALLED|TOP_BUILD_DIR|DEBUG_SPEW)$])
 
11618
+m4trace:configure.ac:7: -1- AC_SUBST([PKG_CONFIG])
 
11619
+m4trace:configure.ac:7: -1- AC_SUBST_TRACE([PKG_CONFIG])
 
11620
+m4trace:configure.ac:7: -1- m4_pattern_allow([^PKG_CONFIG$])
 
11621
+m4trace:configure.ac:7: -1- AC_SUBST([PKG_CONFIG_PATH])
 
11622
+m4trace:configure.ac:7: -1- AC_SUBST_TRACE([PKG_CONFIG_PATH])
 
11623
+m4trace:configure.ac:7: -1- m4_pattern_allow([^PKG_CONFIG_PATH$])
 
11624
+m4trace:configure.ac:7: -1- AC_SUBST([PKG_CONFIG_LIBDIR])
 
11625
+m4trace:configure.ac:7: -1- AC_SUBST_TRACE([PKG_CONFIG_LIBDIR])
 
11626
+m4trace:configure.ac:7: -1- m4_pattern_allow([^PKG_CONFIG_LIBDIR$])
 
11627
+m4trace:configure.ac:7: -1- AC_SUBST([PKG_CONFIG])
 
11628
+m4trace:configure.ac:7: -1- AC_SUBST_TRACE([PKG_CONFIG])
 
11629
+m4trace:configure.ac:7: -1- m4_pattern_allow([^PKG_CONFIG$])
 
11630
+m4trace:configure.ac:7: -1- AC_SUBST([HBAAPI_CFLAGS])
 
11631
+m4trace:configure.ac:7: -1- AC_SUBST_TRACE([HBAAPI_CFLAGS])
 
11632
+m4trace:configure.ac:7: -1- m4_pattern_allow([^HBAAPI_CFLAGS$])
 
11633
+m4trace:configure.ac:7: -1- AC_SUBST([HBAAPI_LIBS])
 
11634
+m4trace:configure.ac:7: -1- AC_SUBST_TRACE([HBAAPI_LIBS])
 
11635
+m4trace:configure.ac:7: -1- m4_pattern_allow([^HBAAPI_LIBS$])
 
11636
+m4trace:configure.ac:8: -1- AC_SUBST([HBAAPI_CFLAGS])
 
11637
+m4trace:configure.ac:8: -1- AC_SUBST_TRACE([HBAAPI_CFLAGS])
 
11638
+m4trace:configure.ac:8: -1- m4_pattern_allow([^HBAAPI_CFLAGS$])
 
11639
+m4trace:configure.ac:9: -1- AC_SUBST([HBAAPI_LIBS])
 
11640
+m4trace:configure.ac:9: -1- AC_SUBST_TRACE([HBAAPI_LIBS])
 
11641
+m4trace:configure.ac:9: -1- m4_pattern_allow([^HBAAPI_LIBS$])
 
11642
+m4trace:configure.ac:16: -1- AM_CONDITIONAL([WITH_DCB], [test "X$with_dcb" != Xno])
 
11643
+m4trace:configure.ac:16: -1- AC_SUBST([WITH_DCB_TRUE])
 
11644
+m4trace:configure.ac:16: -1- AC_SUBST_TRACE([WITH_DCB_TRUE])
 
11645
+m4trace:configure.ac:16: -1- m4_pattern_allow([^WITH_DCB_TRUE$])
 
11646
+m4trace:configure.ac:16: -1- AC_SUBST([WITH_DCB_FALSE])
 
11647
+m4trace:configure.ac:16: -1- AC_SUBST_TRACE([WITH_DCB_FALSE])
 
11648
+m4trace:configure.ac:16: -1- m4_pattern_allow([^WITH_DCB_FALSE$])
 
11649
+m4trace:configure.ac:16: -1- _AM_SUBST_NOTMAKE([WITH_DCB_TRUE])
 
11650
+m4trace:configure.ac:16: -1- _AM_SUBST_NOTMAKE([WITH_DCB_FALSE])
 
11651
+m4trace:configure.ac:18: -1- AC_SUBST([DCBD_CFLAGS])
 
11652
+m4trace:configure.ac:18: -1- AC_SUBST_TRACE([DCBD_CFLAGS])
 
11653
+m4trace:configure.ac:18: -1- m4_pattern_allow([^DCBD_CFLAGS$])
 
11654
+m4trace:configure.ac:18: -1- AC_SUBST([DCBD_LIBS])
 
11655
+m4trace:configure.ac:18: -1- AC_SUBST_TRACE([DCBD_LIBS])
 
11656
+m4trace:configure.ac:18: -1- m4_pattern_allow([^DCBD_LIBS$])
 
11657
+m4trace:configure.ac:18: -1- AC_SUBST([DCBD_CFLAGS])
 
11658
+m4trace:configure.ac:18: -1- AC_SUBST_TRACE([DCBD_CFLAGS])
 
11659
+m4trace:configure.ac:18: -1- m4_pattern_allow([^DCBD_CFLAGS$])
 
11660
+m4trace:configure.ac:22: -1- AC_CONFIG_FILES([Makefile fcoeplumb fcoe-utils.spec fcoe_utils.h])
 
11661
+m4trace:configure.ac:23: -1- AC_SUBST([LIB@&t@OBJS], [$ac_libobjs])
 
11662
+m4trace:configure.ac:23: -1- AC_SUBST_TRACE([LIB@&t@OBJS])
 
11663
+m4trace:configure.ac:23: -1- m4_pattern_allow([^LIB@&t@OBJS$])
 
11664
+m4trace:configure.ac:23: -1- AC_SUBST([LTLIBOBJS], [$ac_ltlibobjs])
 
11665
+m4trace:configure.ac:23: -1- AC_SUBST_TRACE([LTLIBOBJS])
 
11666
+m4trace:configure.ac:23: -1- m4_pattern_allow([^LTLIBOBJS$])
 
11667
+m4trace:configure.ac:23: -1- AM_CONDITIONAL([am__EXEEXT], [test -n "$EXEEXT"])
 
11668
+m4trace:configure.ac:23: -1- AC_SUBST([am__EXEEXT_TRUE])
 
11669
+m4trace:configure.ac:23: -1- AC_SUBST_TRACE([am__EXEEXT_TRUE])
 
11670
+m4trace:configure.ac:23: -1- m4_pattern_allow([^am__EXEEXT_TRUE$])
 
11671
+m4trace:configure.ac:23: -1- AC_SUBST([am__EXEEXT_FALSE])
 
11672
+m4trace:configure.ac:23: -1- AC_SUBST_TRACE([am__EXEEXT_FALSE])
 
11673
+m4trace:configure.ac:23: -1- m4_pattern_allow([^am__EXEEXT_FALSE$])
 
11674
+m4trace:configure.ac:23: -1- _AM_SUBST_NOTMAKE([am__EXEEXT_TRUE])
 
11675
+m4trace:configure.ac:23: -1- _AM_SUBST_NOTMAKE([am__EXEEXT_FALSE])
 
11676
+m4trace:configure.ac:23: -1- AC_SUBST_TRACE([top_builddir])
 
11677
+m4trace:configure.ac:23: -1- AC_SUBST_TRACE([top_build_prefix])
 
11678
+m4trace:configure.ac:23: -1- AC_SUBST_TRACE([srcdir])
 
11679
+m4trace:configure.ac:23: -1- AC_SUBST_TRACE([abs_srcdir])
 
11680
+m4trace:configure.ac:23: -1- AC_SUBST_TRACE([top_srcdir])
 
11681
+m4trace:configure.ac:23: -1- AC_SUBST_TRACE([abs_top_srcdir])
 
11682
+m4trace:configure.ac:23: -1- AC_SUBST_TRACE([builddir])
 
11683
+m4trace:configure.ac:23: -1- AC_SUBST_TRACE([abs_builddir])
 
11684
+m4trace:configure.ac:23: -1- AC_SUBST_TRACE([abs_top_builddir])
 
11685
+m4trace:configure.ac:23: -1- AC_SUBST_TRACE([INSTALL])
 
11686
+m4trace:configure.ac:23: -1- AC_SUBST_TRACE([MKDIR_P])
 
11687
diff -Nur -x '*.orig' -x '*~' fcoe-utils-1.0.9//configure fcoe-utils-1.0.9.new//configure
 
11688
--- fcoe-utils-1.0.9//configure 2010-02-16 14:43:07.000000000 -0500
 
11689
+++ fcoe-utils-1.0.9.new//configure     2011-09-14 11:57:05.000000000 -0400
 
11690
@@ -1,13 +1,13 @@
 
11691
 #! /bin/sh
 
11692
 # Guess values for system-dependent variables and create Makefiles.
 
11693
-# Generated by GNU Autoconf 2.65 for fcoe-utils 1.0.9.
 
11694
+# Generated by GNU Autoconf 2.68 for fcoe-utils 1.0.9.
 
11695
 #
 
11696
 # Report bugs to <devel@open-fcoe.org>.
 
11697
 #
 
11698
 #
 
11699
 # Copyright (C) 1992, 1993, 1994, 1995, 1996, 1998, 1999, 2000, 2001,
 
11700
-# 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009 Free Software Foundation,
 
11701
-# Inc.
 
11702
+# 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010 Free Software
 
11703
+# Foundation, Inc.
 
11704
 #
 
11705
 #
 
11706
 # This configure script is free software; the Free Software Foundation
 
11707
@@ -91,6 +91,7 @@
 
11708
 IFS=" ""       $as_nl"
 
11709
 
 
11710
 # Find who we are.  Look in the path if we contain no directory separator.
 
11711
+as_myself=
 
11712
 case $0 in #((
 
11713
   *[\\/]* ) as_myself=$0 ;;
 
11714
   *) as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
 
11715
@@ -215,11 +216,18 @@
 
11716
   # We cannot yet assume a decent shell, so we have to provide a
 
11717
        # neutralization value for shells without unset; and this also
 
11718
        # works around shells that cannot unset nonexistent variables.
 
11719
+       # Preserve -v and -x to the replacement shell.
 
11720
        BASH_ENV=/dev/null
 
11721
        ENV=/dev/null
 
11722
        (unset BASH_ENV) >/dev/null 2>&1 && unset BASH_ENV ENV
 
11723
        export CONFIG_SHELL
 
11724
-       exec "$CONFIG_SHELL" "$as_myself" ${1+"$@"}
 
11725
+       case $- in # ((((
 
11726
+         *v*x* | *x*v* ) as_opts=-vx ;;
 
11727
+         *v* ) as_opts=-v ;;
 
11728
+         *x* ) as_opts=-x ;;
 
11729
+         * ) as_opts= ;;
 
11730
+       esac
 
11731
+       exec "$CONFIG_SHELL" $as_opts "$as_myself" ${1+"$@"}
 
11732
 fi
 
11733
 
 
11734
     if test x$as_have_required = xno; then :
 
11735
@@ -318,7 +326,7 @@
 
11736
       test -d "$as_dir" && break
 
11737
     done
 
11738
     test -z "$as_dirs" || eval "mkdir $as_dirs"
 
11739
-  } || test -d "$as_dir" || as_fn_error "cannot create directory $as_dir"
 
11740
+  } || test -d "$as_dir" || as_fn_error $? "cannot create directory $as_dir"
 
11741
 
 
11742
 
 
11743
 } # as_fn_mkdir_p
 
11744
@@ -358,19 +366,19 @@
 
11745
 fi # as_fn_arith
 
11746
 
 
11747
 
 
11748
-# as_fn_error ERROR [LINENO LOG_FD]
 
11749
-# ---------------------------------
 
11750
+# as_fn_error STATUS ERROR [LINENO LOG_FD]
 
11751
+# ----------------------------------------
 
11752
 # Output "`basename $0`: error: ERROR" to stderr. If LINENO and LOG_FD are
 
11753
 # provided, also output the error to LOG_FD, referencing LINENO. Then exit the
 
11754
-# script with status $?, using 1 if that was 0.
 
11755
+# script with STATUS, using 1 if that was 0.
 
11756
 as_fn_error ()
 
11757
 {
 
11758
-  as_status=$?; test $as_status -eq 0 && as_status=1
 
11759
-  if test "$3"; then
 
11760
-    as_lineno=${as_lineno-"$2"} as_lineno_stack=as_lineno_stack=$as_lineno_stack
 
11761
-    $as_echo "$as_me:${as_lineno-$LINENO}: error: $1" >&$3
 
11762
+  as_status=$1; test $as_status -eq 0 && as_status=1
 
11763
+  if test "$4"; then
 
11764
+    as_lineno=${as_lineno-"$3"} as_lineno_stack=as_lineno_stack=$as_lineno_stack
 
11765
+    $as_echo "$as_me:${as_lineno-$LINENO}: error: $2" >&$4
 
11766
   fi
 
11767
-  $as_echo "$as_me: error: $1" >&2
 
11768
+  $as_echo "$as_me: error: $2" >&2
 
11769
   as_fn_exit $as_status
 
11770
 } # as_fn_error
 
11771
 
 
11772
@@ -532,7 +540,7 @@
 
11773
 exec 6>&1
 
11774
 
 
11775
 # Name of the host.
 
11776
-# hostname on some systems (SVR3.2, Linux) returns a bogus exit status,
 
11777
+# hostname on some systems (SVR3.2, old GNU/Linux) returns a bogus exit status,
 
11778
 # so uname gets run too.
 
11779
 ac_hostname=`(hostname || uname -n) 2>/dev/null | sed 1q`
 
11780
 
 
11781
@@ -566,6 +574,8 @@
 
11782
 WITH_DCB_TRUE
 
11783
 HBAAPI_LIBS
 
11784
 HBAAPI_CFLAGS
 
11785
+PKG_CONFIG_LIBDIR
 
11786
+PKG_CONFIG_PATH
 
11787
 PKG_CONFIG
 
11788
 am__fastdepCC_FALSE
 
11789
 am__fastdepCC_TRUE
 
11790
@@ -659,6 +669,8 @@
 
11791
 LIBS
 
11792
 CPPFLAGS
 
11793
 PKG_CONFIG
 
11794
+PKG_CONFIG_PATH
 
11795
+PKG_CONFIG_LIBDIR
 
11796
 HBAAPI_CFLAGS
 
11797
 HBAAPI_LIBS
 
11798
 DCBD_CFLAGS
 
11799
@@ -725,8 +737,9 @@
 
11800
   fi
 
11801
 
 
11802
   case $ac_option in
 
11803
-  *=*) ac_optarg=`expr "X$ac_option" : '[^=]*=\(.*\)'` ;;
 
11804
-  *)   ac_optarg=yes ;;
 
11805
+  *=?*) ac_optarg=`expr "X$ac_option" : '[^=]*=\(.*\)'` ;;
 
11806
+  *=)   ac_optarg= ;;
 
11807
+  *)    ac_optarg=yes ;;
 
11808
   esac
 
11809
 
 
11810
   # Accept the important Cygnus configure options, so we can diagnose typos.
 
11811
@@ -771,7 +784,7 @@
 
11812
     ac_useropt=`expr "x$ac_option" : 'x-*disable-\(.*\)'`
 
11813
     # Reject names that are not valid shell variable names.
 
11814
     expr "x$ac_useropt" : ".*[^-+._$as_cr_alnum]" >/dev/null &&
 
11815
-      as_fn_error "invalid feature name: $ac_useropt"
 
11816
+      as_fn_error $? "invalid feature name: $ac_useropt"
 
11817
     ac_useropt_orig=$ac_useropt
 
11818
     ac_useropt=`$as_echo "$ac_useropt" | sed 's/[-+.]/_/g'`
 
11819
     case $ac_user_opts in
 
11820
@@ -797,7 +810,7 @@
 
11821
     ac_useropt=`expr "x$ac_option" : 'x-*enable-\([^=]*\)'`
 
11822
     # Reject names that are not valid shell variable names.
 
11823
     expr "x$ac_useropt" : ".*[^-+._$as_cr_alnum]" >/dev/null &&
 
11824
-      as_fn_error "invalid feature name: $ac_useropt"
 
11825
+      as_fn_error $? "invalid feature name: $ac_useropt"
 
11826
     ac_useropt_orig=$ac_useropt
 
11827
     ac_useropt=`$as_echo "$ac_useropt" | sed 's/[-+.]/_/g'`
 
11828
     case $ac_user_opts in
 
11829
@@ -1001,7 +1014,7 @@
 
11830
     ac_useropt=`expr "x$ac_option" : 'x-*with-\([^=]*\)'`
 
11831
     # Reject names that are not valid shell variable names.
 
11832
     expr "x$ac_useropt" : ".*[^-+._$as_cr_alnum]" >/dev/null &&
 
11833
-      as_fn_error "invalid package name: $ac_useropt"
 
11834
+      as_fn_error $? "invalid package name: $ac_useropt"
 
11835
     ac_useropt_orig=$ac_useropt
 
11836
     ac_useropt=`$as_echo "$ac_useropt" | sed 's/[-+.]/_/g'`
 
11837
     case $ac_user_opts in
 
11838
@@ -1017,7 +1030,7 @@
 
11839
     ac_useropt=`expr "x$ac_option" : 'x-*without-\(.*\)'`
 
11840
     # Reject names that are not valid shell variable names.
 
11841
     expr "x$ac_useropt" : ".*[^-+._$as_cr_alnum]" >/dev/null &&
 
11842
-      as_fn_error "invalid package name: $ac_useropt"
 
11843
+      as_fn_error $? "invalid package name: $ac_useropt"
 
11844
     ac_useropt_orig=$ac_useropt
 
11845
     ac_useropt=`$as_echo "$ac_useropt" | sed 's/[-+.]/_/g'`
 
11846
     case $ac_user_opts in
 
11847
@@ -1047,8 +1060,8 @@
 
11848
   | --x-librar=* | --x-libra=* | --x-libr=* | --x-lib=* | --x-li=* | --x-l=*)
 
11849
     x_libraries=$ac_optarg ;;
 
11850
 
 
11851
-  -*) as_fn_error "unrecognized option: \`$ac_option'
 
11852
-Try \`$0 --help' for more information."
 
11853
+  -*) as_fn_error $? "unrecognized option: \`$ac_option'
 
11854
+Try \`$0 --help' for more information"
 
11855
     ;;
 
11856
 
 
11857
   *=*)
 
11858
@@ -1056,7 +1069,7 @@
 
11859
     # Reject names that are not valid shell variable names.
 
11860
     case $ac_envvar in #(
 
11861
       '' | [0-9]* | *[!_$as_cr_alnum]* )
 
11862
-      as_fn_error "invalid variable name: \`$ac_envvar'" ;;
 
11863
+      as_fn_error $? "invalid variable name: \`$ac_envvar'" ;;
 
11864
     esac
 
11865
     eval $ac_envvar=\$ac_optarg
 
11866
     export $ac_envvar ;;
 
11867
@@ -1066,7 +1079,7 @@
 
11868
     $as_echo "$as_me: WARNING: you should use --build, --host, --target" >&2
 
11869
     expr "x$ac_option" : ".*[^-._$as_cr_alnum]" >/dev/null &&
 
11870
       $as_echo "$as_me: WARNING: invalid host type: $ac_option" >&2
 
11871
-    : ${build_alias=$ac_option} ${host_alias=$ac_option} ${target_alias=$ac_option}
 
11872
+    : "${build_alias=$ac_option} ${host_alias=$ac_option} ${target_alias=$ac_option}"
 
11873
     ;;
 
11874
 
 
11875
   esac
 
11876
@@ -1074,13 +1087,13 @@
 
11877
 
 
11878
 if test -n "$ac_prev"; then
 
11879
   ac_option=--`echo $ac_prev | sed 's/_/-/g'`
 
11880
-  as_fn_error "missing argument to $ac_option"
 
11881
+  as_fn_error $? "missing argument to $ac_option"
 
11882
 fi
 
11883
 
 
11884
 if test -n "$ac_unrecognized_opts"; then
 
11885
   case $enable_option_checking in
 
11886
     no) ;;
 
11887
-    fatal) as_fn_error "unrecognized options: $ac_unrecognized_opts" ;;
 
11888
+    fatal) as_fn_error $? "unrecognized options: $ac_unrecognized_opts" ;;
 
11889
     *)     $as_echo "$as_me: WARNING: unrecognized options: $ac_unrecognized_opts" >&2 ;;
 
11890
   esac
 
11891
 fi
 
11892
@@ -1103,7 +1116,7 @@
 
11893
     [\\/$]* | ?:[\\/]* )  continue;;
 
11894
     NONE | '' ) case $ac_var in *prefix ) continue;; esac;;
 
11895
   esac
 
11896
-  as_fn_error "expected an absolute directory name for --$ac_var: $ac_val"
 
11897
+  as_fn_error $? "expected an absolute directory name for --$ac_var: $ac_val"
 
11898
 done
 
11899
 
 
11900
 # There might be people who depend on the old broken behavior: `$host'
 
11901
@@ -1117,8 +1130,8 @@
 
11902
 if test "x$host_alias" != x; then
 
11903
   if test "x$build_alias" = x; then
 
11904
     cross_compiling=maybe
 
11905
-    $as_echo "$as_me: WARNING: If you wanted to set the --build type, don't use --host.
 
11906
-    If a cross compiler is detected then cross compile mode will be used." >&2
 
11907
+    $as_echo "$as_me: WARNING: if you wanted to set the --build type, don't use --host.
 
11908
+    If a cross compiler is detected then cross compile mode will be used" >&2
 
11909
   elif test "x$build_alias" != "x$host_alias"; then
 
11910
     cross_compiling=yes
 
11911
   fi
 
11912
@@ -1133,9 +1146,9 @@
 
11913
 ac_pwd=`pwd` && test -n "$ac_pwd" &&
 
11914
 ac_ls_di=`ls -di .` &&
 
11915
 ac_pwd_ls_di=`cd "$ac_pwd" && ls -di .` ||
 
11916
-  as_fn_error "working directory cannot be determined"
 
11917
+  as_fn_error $? "working directory cannot be determined"
 
11918
 test "X$ac_ls_di" = "X$ac_pwd_ls_di" ||
 
11919
-  as_fn_error "pwd does not report name of working directory"
 
11920
+  as_fn_error $? "pwd does not report name of working directory"
 
11921
 
 
11922
 
 
11923
 # Find the source files, if location was not specified.
 
11924
@@ -1174,11 +1187,11 @@
 
11925
 fi
 
11926
 if test ! -r "$srcdir/$ac_unique_file"; then
 
11927
   test "$ac_srcdir_defaulted" = yes && srcdir="$ac_confdir or .."
 
11928
-  as_fn_error "cannot find sources ($ac_unique_file) in $srcdir"
 
11929
+  as_fn_error $? "cannot find sources ($ac_unique_file) in $srcdir"
 
11930
 fi
 
11931
 ac_msg="sources are in $srcdir, but \`cd $srcdir' does not work"
 
11932
 ac_abs_confdir=`(
 
11933
-       cd "$srcdir" && test -r "./$ac_unique_file" || as_fn_error "$ac_msg"
 
11934
+       cd "$srcdir" && test -r "./$ac_unique_file" || as_fn_error $? "$ac_msg"
 
11935
        pwd)`
 
11936
 # When building in place, set srcdir=.
 
11937
 if test "$ac_abs_confdir" = "$ac_pwd"; then
 
11938
@@ -1218,7 +1231,7 @@
 
11939
       --help=short        display options specific to this package
 
11940
       --help=recursive    display the short help of all the included packages
 
11941
   -V, --version           display version information and exit
 
11942
-  -q, --quiet, --silent   do not print \`checking...' messages
 
11943
+  -q, --quiet, --silent   do not print \`checking ...' messages
 
11944
       --cache-file=FILE   cache test results in FILE [disabled]
 
11945
   -C, --config-cache      alias for \`--cache-file=config.cache'
 
11946
   -n, --no-create         do not create output files
 
11947
@@ -1295,6 +1308,10 @@
 
11948
   CPPFLAGS    (Objective) C/C++ preprocessor flags, e.g. -I<include dir> if
 
11949
               you have headers in a nonstandard directory <include dir>
 
11950
   PKG_CONFIG  path to pkg-config utility
 
11951
+  PKG_CONFIG_PATH
 
11952
+              directories to add to pkg-config's search path
 
11953
+  PKG_CONFIG_LIBDIR
 
11954
+              path overriding pkg-config's built-in search path
 
11955
   HBAAPI_CFLAGS
 
11956
               C compiler flags for HBAAPI, overriding pkg-config
 
11957
   HBAAPI_LIBS linker flags for HBAAPI, overriding pkg-config
 
11958
@@ -1368,9 +1385,9 @@
 
11959
 if $ac_init_version; then
 
11960
   cat <<\_ACEOF
 
11961
 fcoe-utils configure 1.0.9
 
11962
-generated by GNU Autoconf 2.65
 
11963
+generated by GNU Autoconf 2.68
 
11964
 
 
11965
-Copyright (C) 2009 Free Software Foundation, Inc.
 
11966
+Copyright (C) 2010 Free Software Foundation, Inc.
 
11967
 This configure script is free software; the Free Software Foundation
 
11968
 gives unlimited permission to copy, distribute and modify it.
 
11969
 _ACEOF
 
11970
@@ -1414,7 +1431,7 @@
 
11971
 
 
11972
        ac_retval=1
 
11973
 fi
 
11974
-  eval $as_lineno_stack; test "x$as_lineno_stack" = x && { as_lineno=; unset as_lineno;}
 
11975
+  eval $as_lineno_stack; ${as_lineno_stack:+:} unset as_lineno
 
11976
   as_fn_set_status $ac_retval
 
11977
 
 
11978
 } # ac_fn_c_try_compile
 
11979
@@ -1423,7 +1440,7 @@
 
11980
 running configure, to aid debugging if configure makes a mistake.
 
11981
 
 
11982
 It was created by fcoe-utils $as_me 1.0.9, which was
 
11983
-generated by GNU Autoconf 2.65.  Invocation command line was
 
11984
+generated by GNU Autoconf 2.68.  Invocation command line was
 
11985
 
 
11986
   $ $0 $@
 
11987
 
 
11988
@@ -1533,11 +1550,9 @@
 
11989
   {
 
11990
     echo
 
11991
 
 
11992
-    cat <<\_ASBOX
 
11993
-## ---------------- ##
 
11994
+    $as_echo "## ---------------- ##
 
11995
 ## Cache variables. ##
 
11996
-## ---------------- ##
 
11997
-_ASBOX
 
11998
+## ---------------- ##"
 
11999
     echo
 
12000
     # The following way of writing the cache mishandles newlines in values,
 
12001
 (
 
12002
@@ -1571,11 +1586,9 @@
 
12003
 )
 
12004
     echo
 
12005
 
 
12006
-    cat <<\_ASBOX
 
12007
-## ----------------- ##
 
12008
+    $as_echo "## ----------------- ##
 
12009
 ## Output variables. ##
 
12010
-## ----------------- ##
 
12011
-_ASBOX
 
12012
+## ----------------- ##"
 
12013
     echo
 
12014
     for ac_var in $ac_subst_vars
 
12015
     do
 
12016
@@ -1588,11 +1601,9 @@
 
12017
     echo
 
12018
 
 
12019
     if test -n "$ac_subst_files"; then
 
12020
-      cat <<\_ASBOX
 
12021
-## ------------------- ##
 
12022
+      $as_echo "## ------------------- ##
 
12023
 ## File substitutions. ##
 
12024
-## ------------------- ##
 
12025
-_ASBOX
 
12026
+## ------------------- ##"
 
12027
       echo
 
12028
       for ac_var in $ac_subst_files
 
12029
       do
 
12030
@@ -1606,11 +1617,9 @@
 
12031
     fi
 
12032
 
 
12033
     if test -s confdefs.h; then
 
12034
-      cat <<\_ASBOX
 
12035
-## ----------- ##
 
12036
+      $as_echo "## ----------- ##
 
12037
 ## confdefs.h. ##
 
12038
-## ----------- ##
 
12039
-_ASBOX
 
12040
+## ----------- ##"
 
12041
       echo
 
12042
       cat confdefs.h
 
12043
       echo
 
12044
@@ -1665,7 +1674,12 @@
 
12045
 ac_site_file1=NONE
 
12046
 ac_site_file2=NONE
 
12047
 if test -n "$CONFIG_SITE"; then
 
12048
-  ac_site_file1=$CONFIG_SITE
 
12049
+  # We do not want a PATH search for config.site.
 
12050
+  case $CONFIG_SITE in #((
 
12051
+    -*)  ac_site_file1=./$CONFIG_SITE;;
 
12052
+    */*) ac_site_file1=$CONFIG_SITE;;
 
12053
+    *)   ac_site_file1=./$CONFIG_SITE;;
 
12054
+  esac
 
12055
 elif test "x$prefix" != xNONE; then
 
12056
   ac_site_file1=$prefix/share/config.site
 
12057
   ac_site_file2=$prefix/etc/config.site
 
12058
@@ -1680,7 +1694,11 @@
 
12059
     { $as_echo "$as_me:${as_lineno-$LINENO}: loading site script $ac_site_file" >&5
 
12060
 $as_echo "$as_me: loading site script $ac_site_file" >&6;}
 
12061
     sed 's/^/| /' "$ac_site_file" >&5
 
12062
-    . "$ac_site_file"
 
12063
+    . "$ac_site_file" \
 
12064
+      || { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5
 
12065
+$as_echo "$as_me: error: in \`$ac_pwd':" >&2;}
 
12066
+as_fn_error $? "failed to load site script $ac_site_file
 
12067
+See \`config.log' for more details" "$LINENO" 5; }
 
12068
   fi
 
12069
 done
 
12070
 
 
12071
@@ -1756,7 +1774,7 @@
 
12072
 $as_echo "$as_me: error: in \`$ac_pwd':" >&2;}
 
12073
   { $as_echo "$as_me:${as_lineno-$LINENO}: error: changes in the environment can compromise the build" >&5
 
12074
 $as_echo "$as_me: error: changes in the environment can compromise the build" >&2;}
 
12075
-  as_fn_error "run \`make distclean' and/or \`rm $cache_file' and start over" "$LINENO" 5
 
12076
+  as_fn_error $? "run \`make distclean' and/or \`rm $cache_file' and start over" "$LINENO" 5
 
12077
 fi
 
12078
 ## -------------------- ##
 
12079
 ## Main body of script. ##
 
12080
@@ -1773,16 +1791,22 @@
 
12081
 
 
12082
 ac_aux_dir=
 
12083
 for ac_dir in "$srcdir" "$srcdir/.." "$srcdir/../.."; do
 
12084
-  for ac_t in install-sh install.sh shtool; do
 
12085
-    if test -f "$ac_dir/$ac_t"; then
 
12086
-      ac_aux_dir=$ac_dir
 
12087
-      ac_install_sh="$ac_aux_dir/$ac_t -c"
 
12088
-      break 2
 
12089
-    fi
 
12090
-  done
 
12091
+  if test -f "$ac_dir/install-sh"; then
 
12092
+    ac_aux_dir=$ac_dir
 
12093
+    ac_install_sh="$ac_aux_dir/install-sh -c"
 
12094
+    break
 
12095
+  elif test -f "$ac_dir/install.sh"; then
 
12096
+    ac_aux_dir=$ac_dir
 
12097
+    ac_install_sh="$ac_aux_dir/install.sh -c"
 
12098
+    break
 
12099
+  elif test -f "$ac_dir/shtool"; then
 
12100
+    ac_aux_dir=$ac_dir
 
12101
+    ac_install_sh="$ac_aux_dir/shtool install -c"
 
12102
+    break
 
12103
+  fi
 
12104
 done
 
12105
 if test -z "$ac_aux_dir"; then
 
12106
-  as_fn_error "cannot find install-sh, install.sh, or shtool in \"$srcdir\" \"$srcdir/..\" \"$srcdir/../..\"" "$LINENO" 5
 
12107
+  as_fn_error $? "cannot find install-sh, install.sh, or shtool in \"$srcdir\" \"$srcdir/..\" \"$srcdir/../..\"" "$LINENO" 5
 
12108
 fi
 
12109
 
 
12110
 # These three variables are undocumented and unsupported,
 
12111
@@ -1811,7 +1835,7 @@
 
12112
 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for a BSD-compatible install" >&5
 
12113
 $as_echo_n "checking for a BSD-compatible install... " >&6; }
 
12114
 if test -z "$INSTALL"; then
 
12115
-if test "${ac_cv_path_install+set}" = set; then :
 
12116
+if ${ac_cv_path_install+:} false; then :
 
12117
   $as_echo_n "(cached) " >&6
 
12118
 else
 
12119
   as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
 
12120
@@ -1898,11 +1922,11 @@
 
12121
 '
 
12122
 case `pwd` in
 
12123
   *[\\\"\#\$\&\'\`$am_lf]*)
 
12124
-    as_fn_error "unsafe absolute working directory name" "$LINENO" 5;;
 
12125
+    as_fn_error $? "unsafe absolute working directory name" "$LINENO" 5;;
 
12126
 esac
 
12127
 case $srcdir in
 
12128
   *[\\\"\#\$\&\'\`$am_lf\ \    ]*)
 
12129
-    as_fn_error "unsafe srcdir value: \`$srcdir'" "$LINENO" 5;;
 
12130
+    as_fn_error $? "unsafe srcdir value: \`$srcdir'" "$LINENO" 5;;
 
12131
 esac
 
12132
 
 
12133
 # Do `set' in a subshell so we don't clobber the current shell's
 
12134
@@ -1924,7 +1948,7 @@
 
12135
       # if, for instance, CONFIG_SHELL is bash and it inherits a
 
12136
       # broken ls alias from the environment.  This has actually
 
12137
       # happened.  Such a system could not be considered "sane".
 
12138
-      as_fn_error "ls -t appears to fail.  Make sure there is not a broken
 
12139
+      as_fn_error $? "ls -t appears to fail.  Make sure there is not a broken
 
12140
 alias in your environment" "$LINENO" 5
 
12141
    fi
 
12142
 
 
12143
@@ -1934,7 +1958,7 @@
 
12144
    # Ok.
 
12145
    :
 
12146
 else
 
12147
-   as_fn_error "newly created file is older than distributed files!
 
12148
+   as_fn_error $? "newly created file is older than distributed files!
 
12149
 Check your system clock" "$LINENO" 5
 
12150
 fi
 
12151
 { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5
 
12152
@@ -1988,7 +2012,7 @@
 
12153
 set dummy ${ac_tool_prefix}strip; ac_word=$2
 
12154
 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
 
12155
 $as_echo_n "checking for $ac_word... " >&6; }
 
12156
-if test "${ac_cv_prog_STRIP+set}" = set; then :
 
12157
+if ${ac_cv_prog_STRIP+:} false; then :
 
12158
   $as_echo_n "(cached) " >&6
 
12159
 else
 
12160
   if test -n "$STRIP"; then
 
12161
@@ -2028,7 +2052,7 @@
 
12162
 set dummy strip; ac_word=$2
 
12163
 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
 
12164
 $as_echo_n "checking for $ac_word... " >&6; }
 
12165
-if test "${ac_cv_prog_ac_ct_STRIP+set}" = set; then :
 
12166
+if ${ac_cv_prog_ac_ct_STRIP+:} false; then :
 
12167
   $as_echo_n "(cached) " >&6
 
12168
 else
 
12169
   if test -n "$ac_ct_STRIP"; then
 
12170
@@ -2081,7 +2105,7 @@
 
12171
 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for a thread-safe mkdir -p" >&5
 
12172
 $as_echo_n "checking for a thread-safe mkdir -p... " >&6; }
 
12173
 if test -z "$MKDIR_P"; then
 
12174
-  if test "${ac_cv_path_mkdir+set}" = set; then :
 
12175
+  if ${ac_cv_path_mkdir+:} false; then :
 
12176
   $as_echo_n "(cached) " >&6
 
12177
 else
 
12178
   as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
 
12179
@@ -2132,7 +2156,7 @@
 
12180
 set dummy $ac_prog; ac_word=$2
 
12181
 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
 
12182
 $as_echo_n "checking for $ac_word... " >&6; }
 
12183
-if test "${ac_cv_prog_AWK+set}" = set; then :
 
12184
+if ${ac_cv_prog_AWK+:} false; then :
 
12185
   $as_echo_n "(cached) " >&6
 
12186
 else
 
12187
   if test -n "$AWK"; then
 
12188
@@ -2172,7 +2196,7 @@
 
12189
 $as_echo_n "checking whether ${MAKE-make} sets \$(MAKE)... " >&6; }
 
12190
 set x ${MAKE-make}
 
12191
 ac_make=`$as_echo "$2" | sed 's/+/p/g; s/[^a-zA-Z0-9_]/_/g'`
 
12192
-if { as_var=ac_cv_prog_make_${ac_make}_set; eval "test \"\${$as_var+set}\" = set"; }; then :
 
12193
+if eval \${ac_cv_prog_make_${ac_make}_set+:} false; then :
 
12194
   $as_echo_n "(cached) " >&6
 
12195
 else
 
12196
   cat >conftest.make <<\_ACEOF
 
12197
@@ -2180,7 +2204,7 @@
 
12198
 all:
 
12199
        @echo '@@@%%%=$(MAKE)=@@@%%%'
 
12200
 _ACEOF
 
12201
-# GNU make sometimes prints "make[1]: Entering...", which would confuse us.
 
12202
+# GNU make sometimes prints "make[1]: Entering ...", which would confuse us.
 
12203
 case `${MAKE-make} -f conftest.make 2>/dev/null` in
 
12204
   *@@@%%%=?*=@@@%%%*)
 
12205
     eval ac_cv_prog_make_${ac_make}_set=yes;;
 
12206
@@ -2214,7 +2238,7 @@
 
12207
   am__isrc=' -I$(srcdir)'
 
12208
   # test to see if srcdir already configured
 
12209
   if test -f $srcdir/config.status; then
 
12210
-    as_fn_error "source directory already configured; run \"make distclean\" there first" "$LINENO" 5
 
12211
+    as_fn_error $? "source directory already configured; run \"make distclean\" there first" "$LINENO" 5
 
12212
   fi
 
12213
 fi
 
12214
 
 
12215
@@ -2281,7 +2305,7 @@
 
12216
 set dummy ${ac_tool_prefix}gcc; ac_word=$2
 
12217
 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
 
12218
 $as_echo_n "checking for $ac_word... " >&6; }
 
12219
-if test "${ac_cv_prog_CC+set}" = set; then :
 
12220
+if ${ac_cv_prog_CC+:} false; then :
 
12221
   $as_echo_n "(cached) " >&6
 
12222
 else
 
12223
   if test -n "$CC"; then
 
12224
@@ -2321,7 +2345,7 @@
 
12225
 set dummy gcc; ac_word=$2
 
12226
 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
 
12227
 $as_echo_n "checking for $ac_word... " >&6; }
 
12228
-if test "${ac_cv_prog_ac_ct_CC+set}" = set; then :
 
12229
+if ${ac_cv_prog_ac_ct_CC+:} false; then :
 
12230
   $as_echo_n "(cached) " >&6
 
12231
 else
 
12232
   if test -n "$ac_ct_CC"; then
 
12233
@@ -2374,7 +2398,7 @@
 
12234
 set dummy ${ac_tool_prefix}cc; ac_word=$2
 
12235
 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
 
12236
 $as_echo_n "checking for $ac_word... " >&6; }
 
12237
-if test "${ac_cv_prog_CC+set}" = set; then :
 
12238
+if ${ac_cv_prog_CC+:} false; then :
 
12239
   $as_echo_n "(cached) " >&6
 
12240
 else
 
12241
   if test -n "$CC"; then
 
12242
@@ -2414,7 +2438,7 @@
 
12243
 set dummy cc; ac_word=$2
 
12244
 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
 
12245
 $as_echo_n "checking for $ac_word... " >&6; }
 
12246
-if test "${ac_cv_prog_CC+set}" = set; then :
 
12247
+if ${ac_cv_prog_CC+:} false; then :
 
12248
   $as_echo_n "(cached) " >&6
 
12249
 else
 
12250
   if test -n "$CC"; then
 
12251
@@ -2473,7 +2497,7 @@
 
12252
 set dummy $ac_tool_prefix$ac_prog; ac_word=$2
 
12253
 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
 
12254
 $as_echo_n "checking for $ac_word... " >&6; }
 
12255
-if test "${ac_cv_prog_CC+set}" = set; then :
 
12256
+if ${ac_cv_prog_CC+:} false; then :
 
12257
   $as_echo_n "(cached) " >&6
 
12258
 else
 
12259
   if test -n "$CC"; then
 
12260
@@ -2517,7 +2541,7 @@
 
12261
 set dummy $ac_prog; ac_word=$2
 
12262
 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
 
12263
 $as_echo_n "checking for $ac_word... " >&6; }
 
12264
-if test "${ac_cv_prog_ac_ct_CC+set}" = set; then :
 
12265
+if ${ac_cv_prog_ac_ct_CC+:} false; then :
 
12266
   $as_echo_n "(cached) " >&6
 
12267
 else
 
12268
   if test -n "$ac_ct_CC"; then
 
12269
@@ -2571,8 +2595,8 @@
 
12270
 
 
12271
 test -z "$CC" && { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5
 
12272
 $as_echo "$as_me: error: in \`$ac_pwd':" >&2;}
 
12273
-as_fn_error "no acceptable C compiler found in \$PATH
 
12274
-See \`config.log' for more details." "$LINENO" 5; }
 
12275
+as_fn_error $? "no acceptable C compiler found in \$PATH
 
12276
+See \`config.log' for more details" "$LINENO" 5; }
 
12277
 
 
12278
 # Provide some information about the compiler.
 
12279
 $as_echo "$as_me:${as_lineno-$LINENO}: checking for C compiler version" >&5
 
12280
@@ -2686,9 +2710,8 @@
 
12281
 
 
12282
 { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5
 
12283
 $as_echo "$as_me: error: in \`$ac_pwd':" >&2;}
 
12284
-{ as_fn_set_status 77
 
12285
-as_fn_error "C compiler cannot create executables
 
12286
-See \`config.log' for more details." "$LINENO" 5; }; }
 
12287
+as_fn_error 77 "C compiler cannot create executables
 
12288
+See \`config.log' for more details" "$LINENO" 5; }
 
12289
 else
 
12290
   { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5
 
12291
 $as_echo "yes" >&6; }
 
12292
@@ -2730,8 +2753,8 @@
 
12293
 else
 
12294
   { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5
 
12295
 $as_echo "$as_me: error: in \`$ac_pwd':" >&2;}
 
12296
-as_fn_error "cannot compute suffix of executables: cannot compile and link
 
12297
-See \`config.log' for more details." "$LINENO" 5; }
 
12298
+as_fn_error $? "cannot compute suffix of executables: cannot compile and link
 
12299
+See \`config.log' for more details" "$LINENO" 5; }
 
12300
 fi
 
12301
 rm -f conftest conftest$ac_cv_exeext
 
12302
 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_exeext" >&5
 
12303
@@ -2788,9 +2811,9 @@
 
12304
     else
 
12305
        { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5
 
12306
 $as_echo "$as_me: error: in \`$ac_pwd':" >&2;}
 
12307
-as_fn_error "cannot run C compiled programs.
 
12308
+as_fn_error $? "cannot run C compiled programs.
 
12309
 If you meant to cross compile, use \`--host'.
 
12310
-See \`config.log' for more details." "$LINENO" 5; }
 
12311
+See \`config.log' for more details" "$LINENO" 5; }
 
12312
     fi
 
12313
   fi
 
12314
 fi
 
12315
@@ -2801,7 +2824,7 @@
 
12316
 ac_clean_files=$ac_clean_files_save
 
12317
 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for suffix of object files" >&5
 
12318
 $as_echo_n "checking for suffix of object files... " >&6; }
 
12319
-if test "${ac_cv_objext+set}" = set; then :
 
12320
+if ${ac_cv_objext+:} false; then :
 
12321
   $as_echo_n "(cached) " >&6
 
12322
 else
 
12323
   cat confdefs.h - <<_ACEOF >conftest.$ac_ext
 
12324
@@ -2841,8 +2864,8 @@
 
12325
 
 
12326
 { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5
 
12327
 $as_echo "$as_me: error: in \`$ac_pwd':" >&2;}
 
12328
-as_fn_error "cannot compute suffix of object files: cannot compile
 
12329
-See \`config.log' for more details." "$LINENO" 5; }
 
12330
+as_fn_error $? "cannot compute suffix of object files: cannot compile
 
12331
+See \`config.log' for more details" "$LINENO" 5; }
 
12332
 fi
 
12333
 rm -f conftest.$ac_cv_objext conftest.$ac_ext
 
12334
 fi
 
12335
@@ -2852,7 +2875,7 @@
 
12336
 ac_objext=$OBJEXT
 
12337
 { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether we are using the GNU C compiler" >&5
 
12338
 $as_echo_n "checking whether we are using the GNU C compiler... " >&6; }
 
12339
-if test "${ac_cv_c_compiler_gnu+set}" = set; then :
 
12340
+if ${ac_cv_c_compiler_gnu+:} false; then :
 
12341
   $as_echo_n "(cached) " >&6
 
12342
 else
 
12343
   cat confdefs.h - <<_ACEOF >conftest.$ac_ext
 
12344
@@ -2889,7 +2912,7 @@
 
12345
 ac_save_CFLAGS=$CFLAGS
 
12346
 { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether $CC accepts -g" >&5
 
12347
 $as_echo_n "checking whether $CC accepts -g... " >&6; }
 
12348
-if test "${ac_cv_prog_cc_g+set}" = set; then :
 
12349
+if ${ac_cv_prog_cc_g+:} false; then :
 
12350
   $as_echo_n "(cached) " >&6
 
12351
 else
 
12352
   ac_save_c_werror_flag=$ac_c_werror_flag
 
12353
@@ -2967,7 +2990,7 @@
 
12354
 fi
 
12355
 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $CC option to accept ISO C89" >&5
 
12356
 $as_echo_n "checking for $CC option to accept ISO C89... " >&6; }
 
12357
-if test "${ac_cv_prog_cc_c89+set}" = set; then :
 
12358
+if ${ac_cv_prog_cc_c89+:} false; then :
 
12359
   $as_echo_n "(cached) " >&6
 
12360
 else
 
12361
   ac_cv_prog_cc_c89=no
 
12362
@@ -3128,7 +3151,7 @@
 
12363
 
 
12364
 { $as_echo "$as_me:${as_lineno-$LINENO}: checking dependency style of $depcc" >&5
 
12365
 $as_echo_n "checking dependency style of $depcc... " >&6; }
 
12366
-if test "${am_cv_CC_dependencies_compiler_type+set}" = set; then :
 
12367
+if ${am_cv_CC_dependencies_compiler_type+:} false; then :
 
12368
   $as_echo_n "(cached) " >&6
 
12369
 else
 
12370
   if test -z "$AMDEP_TRUE" && test -f "$am_depcomp"; then
 
12371
@@ -3260,7 +3283,7 @@
 
12372
 fi
 
12373
 set dummy $CC; ac_cc=`$as_echo "$2" |
 
12374
                      sed 's/[^a-zA-Z0-9_]/_/g;s/^[0-9]/_/'`
 
12375
-if { as_var=ac_cv_prog_cc_${ac_cc}_c_o; eval "test \"\${$as_var+set}\" = set"; }; then :
 
12376
+if eval \${ac_cv_prog_cc_${ac_cc}_c_o+:} false; then :
 
12377
   $as_echo_n "(cached) " >&6
 
12378
 else
 
12379
   cat confdefs.h - <<_ACEOF >conftest.$ac_ext
 
12380
@@ -3380,13 +3403,18 @@
 
12381
 
 
12382
 
 
12383
 
 
12384
+
 
12385
+
 
12386
+
 
12387
+
 
12388
+
 
12389
 if test "x$ac_cv_env_PKG_CONFIG_set" != "xset"; then
 
12390
        if test -n "$ac_tool_prefix"; then
 
12391
   # Extract the first word of "${ac_tool_prefix}pkg-config", so it can be a program name with args.
 
12392
 set dummy ${ac_tool_prefix}pkg-config; ac_word=$2
 
12393
 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
 
12394
 $as_echo_n "checking for $ac_word... " >&6; }
 
12395
-if test "${ac_cv_path_PKG_CONFIG+set}" = set; then :
 
12396
+if ${ac_cv_path_PKG_CONFIG+:} false; then :
 
12397
   $as_echo_n "(cached) " >&6
 
12398
 else
 
12399
   case $PKG_CONFIG in
 
12400
@@ -3429,7 +3457,7 @@
 
12401
 set dummy pkg-config; ac_word=$2
 
12402
 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
 
12403
 $as_echo_n "checking for $ac_word... " >&6; }
 
12404
-if test "${ac_cv_path_ac_pt_PKG_CONFIG+set}" = set; then :
 
12405
+if ${ac_cv_path_ac_pt_PKG_CONFIG+:} false; then :
 
12406
   $as_echo_n "(cached) " >&6
 
12407
 else
 
12408
   case $ac_pt_PKG_CONFIG in
 
12409
@@ -3492,53 +3520,52 @@
 
12410
 $as_echo "no" >&6; }
 
12411
                PKG_CONFIG=""
 
12412
        fi
 
12413
-
 
12414
 fi
 
12415
 
 
12416
 pkg_failed=no
 
12417
 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for HBAAPI" >&5
 
12418
 $as_echo_n "checking for HBAAPI... " >&6; }
 
12419
 
 
12420
-if test -n "$PKG_CONFIG"; then
 
12421
-    if test -n "$HBAAPI_CFLAGS"; then
 
12422
-        pkg_cv_HBAAPI_CFLAGS="$HBAAPI_CFLAGS"
 
12423
-    else
 
12424
-        if test -n "$PKG_CONFIG" && \
 
12425
+if test -n "$HBAAPI_CFLAGS"; then
 
12426
+    pkg_cv_HBAAPI_CFLAGS="$HBAAPI_CFLAGS"
 
12427
+ elif test -n "$PKG_CONFIG"; then
 
12428
+    if test -n "$PKG_CONFIG" && \
 
12429
     { { $as_echo "$as_me:${as_lineno-$LINENO}: \$PKG_CONFIG --exists --print-errors \"HBAAPI\""; } >&5
 
12430
   ($PKG_CONFIG --exists --print-errors "HBAAPI") 2>&5
 
12431
   ac_status=$?
 
12432
   $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5
 
12433
   test $ac_status = 0; }; then
 
12434
   pkg_cv_HBAAPI_CFLAGS=`$PKG_CONFIG --cflags "HBAAPI" 2>/dev/null`
 
12435
+                     test "x$?" != "x0" && pkg_failed=yes
 
12436
 else
 
12437
   pkg_failed=yes
 
12438
 fi
 
12439
-    fi
 
12440
-else
 
12441
-       pkg_failed=untried
 
12442
+ else
 
12443
+    pkg_failed=untried
 
12444
 fi
 
12445
-if test -n "$PKG_CONFIG"; then
 
12446
-    if test -n "$HBAAPI_LIBS"; then
 
12447
-        pkg_cv_HBAAPI_LIBS="$HBAAPI_LIBS"
 
12448
-    else
 
12449
-        if test -n "$PKG_CONFIG" && \
 
12450
+if test -n "$HBAAPI_LIBS"; then
 
12451
+    pkg_cv_HBAAPI_LIBS="$HBAAPI_LIBS"
 
12452
+ elif test -n "$PKG_CONFIG"; then
 
12453
+    if test -n "$PKG_CONFIG" && \
 
12454
     { { $as_echo "$as_me:${as_lineno-$LINENO}: \$PKG_CONFIG --exists --print-errors \"HBAAPI\""; } >&5
 
12455
   ($PKG_CONFIG --exists --print-errors "HBAAPI") 2>&5
 
12456
   ac_status=$?
 
12457
   $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5
 
12458
   test $ac_status = 0; }; then
 
12459
   pkg_cv_HBAAPI_LIBS=`$PKG_CONFIG --libs "HBAAPI" 2>/dev/null`
 
12460
+                     test "x$?" != "x0" && pkg_failed=yes
 
12461
 else
 
12462
   pkg_failed=yes
 
12463
 fi
 
12464
-    fi
 
12465
-else
 
12466
-       pkg_failed=untried
 
12467
+ else
 
12468
+    pkg_failed=untried
 
12469
 fi
 
12470
 
 
12471
 
 
12472
 
 
12473
 if test $pkg_failed = yes; then
 
12474
+       { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5
 
12475
+$as_echo "no" >&6; }
 
12476
 
 
12477
 if $PKG_CONFIG --atleast-pkgconfig-version 0.20; then
 
12478
         _pkg_short_errors_supported=yes
 
12479
@@ -3546,14 +3573,14 @@
 
12480
         _pkg_short_errors_supported=no
 
12481
 fi
 
12482
         if test $_pkg_short_errors_supported = yes; then
 
12483
-               HBAAPI_PKG_ERRORS=`$PKG_CONFIG --short-errors --errors-to-stdout --print-errors "HBAAPI"`
 
12484
+               HBAAPI_PKG_ERRORS=`$PKG_CONFIG --short-errors --print-errors --cflags --libs "HBAAPI" 2>&1`
 
12485
         else
 
12486
-               HBAAPI_PKG_ERRORS=`$PKG_CONFIG --errors-to-stdout --print-errors "HBAAPI"`
 
12487
+               HBAAPI_PKG_ERRORS=`$PKG_CONFIG --print-errors --cflags --libs "HBAAPI" 2>&1`
 
12488
         fi
 
12489
        # Put the nasty error message in config.log where it belongs
 
12490
        echo "$HBAAPI_PKG_ERRORS" >&5
 
12491
 
 
12492
-       as_fn_error "Package requirements (HBAAPI) were not met:
 
12493
+       as_fn_error $? "Package requirements (HBAAPI) were not met:
 
12494
 
 
12495
 $HBAAPI_PKG_ERRORS
 
12496
 
 
12497
@@ -3562,12 +3589,13 @@
 
12498
 
 
12499
 Alternatively, you may set the environment variables HBAAPI_CFLAGS
 
12500
 and HBAAPI_LIBS to avoid the need to call pkg-config.
 
12501
-See the pkg-config man page for more details.
 
12502
-" "$LINENO" 5
 
12503
+See the pkg-config man page for more details." "$LINENO" 5
 
12504
 elif test $pkg_failed = untried; then
 
12505
+       { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5
 
12506
+$as_echo "no" >&6; }
 
12507
        { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5
 
12508
 $as_echo "$as_me: error: in \`$ac_pwd':" >&2;}
 
12509
-as_fn_error "The pkg-config script could not be found or is too old.  Make sure it
 
12510
+as_fn_error $? "The pkg-config script could not be found or is too old.  Make sure it
 
12511
 is in your PATH or set the PKG_CONFIG environment variable to the full
 
12512
 path to pkg-config.
 
12513
 
 
12514
@@ -3576,13 +3604,13 @@
 
12515
 See the pkg-config man page for more details.
 
12516
 
 
12517
 To get pkg-config, see <http://pkg-config.freedesktop.org/>.
 
12518
-See \`config.log' for more details." "$LINENO" 5; }
 
12519
+See \`config.log' for more details" "$LINENO" 5; }
 
12520
 else
 
12521
        HBAAPI_CFLAGS=$pkg_cv_HBAAPI_CFLAGS
 
12522
        HBAAPI_LIBS=$pkg_cv_HBAAPI_LIBS
 
12523
         { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5
 
12524
 $as_echo "yes" >&6; }
 
12525
-       :
 
12526
+
 
12527
 fi
 
12528
 
 
12529
 
 
12530
@@ -3611,46 +3639,46 @@
 
12531
 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for DCBD" >&5
 
12532
 $as_echo_n "checking for DCBD... " >&6; }
 
12533
 
 
12534
-if test -n "$PKG_CONFIG"; then
 
12535
-    if test -n "$DCBD_CFLAGS"; then
 
12536
-        pkg_cv_DCBD_CFLAGS="$DCBD_CFLAGS"
 
12537
-    else
 
12538
-        if test -n "$PKG_CONFIG" && \
 
12539
+if test -n "$DCBD_CFLAGS"; then
 
12540
+    pkg_cv_DCBD_CFLAGS="$DCBD_CFLAGS"
 
12541
+ elif test -n "$PKG_CONFIG"; then
 
12542
+    if test -n "$PKG_CONFIG" && \
 
12543
     { { $as_echo "$as_me:${as_lineno-$LINENO}: \$PKG_CONFIG --exists --print-errors \"dcbd\""; } >&5
 
12544
   ($PKG_CONFIG --exists --print-errors "dcbd") 2>&5
 
12545
   ac_status=$?
 
12546
   $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5
 
12547
   test $ac_status = 0; }; then
 
12548
   pkg_cv_DCBD_CFLAGS=`$PKG_CONFIG --cflags "dcbd" 2>/dev/null`
 
12549
+                     test "x$?" != "x0" && pkg_failed=yes
 
12550
 else
 
12551
   pkg_failed=yes
 
12552
 fi
 
12553
-    fi
 
12554
-else
 
12555
-       pkg_failed=untried
 
12556
+ else
 
12557
+    pkg_failed=untried
 
12558
 fi
 
12559
-if test -n "$PKG_CONFIG"; then
 
12560
-    if test -n "$DCBD_LIBS"; then
 
12561
-        pkg_cv_DCBD_LIBS="$DCBD_LIBS"
 
12562
-    else
 
12563
-        if test -n "$PKG_CONFIG" && \
 
12564
+if test -n "$DCBD_LIBS"; then
 
12565
+    pkg_cv_DCBD_LIBS="$DCBD_LIBS"
 
12566
+ elif test -n "$PKG_CONFIG"; then
 
12567
+    if test -n "$PKG_CONFIG" && \
 
12568
     { { $as_echo "$as_me:${as_lineno-$LINENO}: \$PKG_CONFIG --exists --print-errors \"dcbd\""; } >&5
 
12569
   ($PKG_CONFIG --exists --print-errors "dcbd") 2>&5
 
12570
   ac_status=$?
 
12571
   $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5
 
12572
   test $ac_status = 0; }; then
 
12573
   pkg_cv_DCBD_LIBS=`$PKG_CONFIG --libs "dcbd" 2>/dev/null`
 
12574
+                     test "x$?" != "x0" && pkg_failed=yes
 
12575
 else
 
12576
   pkg_failed=yes
 
12577
 fi
 
12578
-    fi
 
12579
-else
 
12580
-       pkg_failed=untried
 
12581
+ else
 
12582
+    pkg_failed=untried
 
12583
 fi
 
12584
 
 
12585
 
 
12586
 
 
12587
 if test $pkg_failed = yes; then
 
12588
+       { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5
 
12589
+$as_echo "no" >&6; }
 
12590
 
 
12591
 if $PKG_CONFIG --atleast-pkgconfig-version 0.20; then
 
12592
         _pkg_short_errors_supported=yes
 
12593
@@ -3658,14 +3686,14 @@
 
12594
         _pkg_short_errors_supported=no
 
12595
 fi
 
12596
         if test $_pkg_short_errors_supported = yes; then
 
12597
-               DCBD_PKG_ERRORS=`$PKG_CONFIG --short-errors --errors-to-stdout --print-errors "dcbd"`
 
12598
+               DCBD_PKG_ERRORS=`$PKG_CONFIG --short-errors --print-errors --cflags --libs "dcbd" 2>&1`
 
12599
         else
 
12600
-               DCBD_PKG_ERRORS=`$PKG_CONFIG --errors-to-stdout --print-errors "dcbd"`
 
12601
+               DCBD_PKG_ERRORS=`$PKG_CONFIG --print-errors --cflags --libs "dcbd" 2>&1`
 
12602
         fi
 
12603
        # Put the nasty error message in config.log where it belongs
 
12604
        echo "$DCBD_PKG_ERRORS" >&5
 
12605
 
 
12606
-       as_fn_error "Package requirements (dcbd) were not met:
 
12607
+       as_fn_error $? "Package requirements (dcbd) were not met:
 
12608
 
 
12609
 $DCBD_PKG_ERRORS
 
12610
 
 
12611
@@ -3674,12 +3702,13 @@
 
12612
 
 
12613
 Alternatively, you may set the environment variables DCBD_CFLAGS
 
12614
 and DCBD_LIBS to avoid the need to call pkg-config.
 
12615
-See the pkg-config man page for more details.
 
12616
-" "$LINENO" 5
 
12617
+See the pkg-config man page for more details." "$LINENO" 5
 
12618
 elif test $pkg_failed = untried; then
 
12619
+       { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5
 
12620
+$as_echo "no" >&6; }
 
12621
        { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5
 
12622
 $as_echo "$as_me: error: in \`$ac_pwd':" >&2;}
 
12623
-as_fn_error "The pkg-config script could not be found or is too old.  Make sure it
 
12624
+as_fn_error $? "The pkg-config script could not be found or is too old.  Make sure it
 
12625
 is in your PATH or set the PKG_CONFIG environment variable to the full
 
12626
 path to pkg-config.
 
12627
 
 
12628
@@ -3688,13 +3717,13 @@
 
12629
 See the pkg-config man page for more details.
 
12630
 
 
12631
 To get pkg-config, see <http://pkg-config.freedesktop.org/>.
 
12632
-See \`config.log' for more details." "$LINENO" 5; }
 
12633
+See \`config.log' for more details" "$LINENO" 5; }
 
12634
 else
 
12635
        DCBD_CFLAGS=$pkg_cv_DCBD_CFLAGS
 
12636
        DCBD_LIBS=$pkg_cv_DCBD_LIBS
 
12637
         { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5
 
12638
 $as_echo "yes" >&6; }
 
12639
-       :
 
12640
+
 
12641
 fi
 
12642
 
 
12643
 fi
 
12644
@@ -3765,10 +3794,21 @@
 
12645
      :end' >>confcache
 
12646
 if diff "$cache_file" confcache >/dev/null 2>&1; then :; else
 
12647
   if test -w "$cache_file"; then
 
12648
-    test "x$cache_file" != "x/dev/null" &&
 
12649
+    if test "x$cache_file" != "x/dev/null"; then
 
12650
       { $as_echo "$as_me:${as_lineno-$LINENO}: updating cache $cache_file" >&5
 
12651
 $as_echo "$as_me: updating cache $cache_file" >&6;}
 
12652
-    cat confcache >$cache_file
 
12653
+      if test ! -f "$cache_file" || test -h "$cache_file"; then
 
12654
+       cat confcache >"$cache_file"
 
12655
+      else
 
12656
+        case $cache_file in #(
 
12657
+        */* | ?:*)
 
12658
+         mv -f confcache "$cache_file"$$ &&
 
12659
+         mv -f "$cache_file"$$ "$cache_file" ;; #(
 
12660
+        *)
 
12661
+         mv -f confcache "$cache_file" ;;
 
12662
+       esac
 
12663
+      fi
 
12664
+    fi
 
12665
   else
 
12666
     { $as_echo "$as_me:${as_lineno-$LINENO}: not updating unwritable cache $cache_file" >&5
 
12667
 $as_echo "$as_me: not updating unwritable cache $cache_file" >&6;}
 
12668
@@ -3820,6 +3860,7 @@
 
12669
 
 
12670
 ac_libobjs=
 
12671
 ac_ltlibobjs=
 
12672
+U=
 
12673
 for ac_i in : $LIBOBJS; do test "x$ac_i" = x: && continue
 
12674
   # 1. Remove the extension, and $U if already installed.
 
12675
   ac_script='s/\$U\././;s/\.o$//;s/\.obj$//'
 
12676
@@ -3843,19 +3884,19 @@
 
12677
 fi
 
12678
 
 
12679
 if test -z "${AMDEP_TRUE}" && test -z "${AMDEP_FALSE}"; then
 
12680
-  as_fn_error "conditional \"AMDEP\" was never defined.
 
12681
+  as_fn_error $? "conditional \"AMDEP\" was never defined.
 
12682
 Usually this means the macro was only invoked conditionally." "$LINENO" 5
 
12683
 fi
 
12684
 if test -z "${am__fastdepCC_TRUE}" && test -z "${am__fastdepCC_FALSE}"; then
 
12685
-  as_fn_error "conditional \"am__fastdepCC\" was never defined.
 
12686
+  as_fn_error $? "conditional \"am__fastdepCC\" was never defined.
 
12687
 Usually this means the macro was only invoked conditionally." "$LINENO" 5
 
12688
 fi
 
12689
 if test -z "${WITH_DCB_TRUE}" && test -z "${WITH_DCB_FALSE}"; then
 
12690
-  as_fn_error "conditional \"WITH_DCB\" was never defined.
 
12691
+  as_fn_error $? "conditional \"WITH_DCB\" was never defined.
 
12692
 Usually this means the macro was only invoked conditionally." "$LINENO" 5
 
12693
 fi
 
12694
 
 
12695
-: ${CONFIG_STATUS=./config.status}
 
12696
+: "${CONFIG_STATUS=./config.status}"
 
12697
 ac_write_fail=0
 
12698
 ac_clean_files_save=$ac_clean_files
 
12699
 ac_clean_files="$ac_clean_files $CONFIG_STATUS"
 
12700
@@ -3956,6 +3997,7 @@
 
12701
 IFS=" ""       $as_nl"
 
12702
 
 
12703
 # Find who we are.  Look in the path if we contain no directory separator.
 
12704
+as_myself=
 
12705
 case $0 in #((
 
12706
   *[\\/]* ) as_myself=$0 ;;
 
12707
   *) as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
 
12708
@@ -4001,19 +4043,19 @@
 
12709
 (unset CDPATH) >/dev/null 2>&1 && unset CDPATH
 
12710
 
 
12711
 
 
12712
-# as_fn_error ERROR [LINENO LOG_FD]
 
12713
-# ---------------------------------
 
12714
+# as_fn_error STATUS ERROR [LINENO LOG_FD]
 
12715
+# ----------------------------------------
 
12716
 # Output "`basename $0`: error: ERROR" to stderr. If LINENO and LOG_FD are
 
12717
 # provided, also output the error to LOG_FD, referencing LINENO. Then exit the
 
12718
-# script with status $?, using 1 if that was 0.
 
12719
+# script with STATUS, using 1 if that was 0.
 
12720
 as_fn_error ()
 
12721
 {
 
12722
-  as_status=$?; test $as_status -eq 0 && as_status=1
 
12723
-  if test "$3"; then
 
12724
-    as_lineno=${as_lineno-"$2"} as_lineno_stack=as_lineno_stack=$as_lineno_stack
 
12725
-    $as_echo "$as_me:${as_lineno-$LINENO}: error: $1" >&$3
 
12726
+  as_status=$1; test $as_status -eq 0 && as_status=1
 
12727
+  if test "$4"; then
 
12728
+    as_lineno=${as_lineno-"$3"} as_lineno_stack=as_lineno_stack=$as_lineno_stack
 
12729
+    $as_echo "$as_me:${as_lineno-$LINENO}: error: $2" >&$4
 
12730
   fi
 
12731
-  $as_echo "$as_me: error: $1" >&2
 
12732
+  $as_echo "$as_me: error: $2" >&2
 
12733
   as_fn_exit $as_status
 
12734
 } # as_fn_error
 
12735
 
 
12736
@@ -4209,7 +4251,7 @@
 
12737
       test -d "$as_dir" && break
 
12738
     done
 
12739
     test -z "$as_dirs" || eval "mkdir $as_dirs"
 
12740
-  } || test -d "$as_dir" || as_fn_error "cannot create directory $as_dir"
 
12741
+  } || test -d "$as_dir" || as_fn_error $? "cannot create directory $as_dir"
 
12742
 
 
12743
 
 
12744
 } # as_fn_mkdir_p
 
12745
@@ -4263,7 +4305,7 @@
 
12746
 # values after options handling.
 
12747
 ac_log="
 
12748
 This file was extended by fcoe-utils $as_me 1.0.9, which was
 
12749
-generated by GNU Autoconf 2.65.  Invocation command line was
 
12750
+generated by GNU Autoconf 2.68.  Invocation command line was
 
12751
 
 
12752
   CONFIG_FILES    = $CONFIG_FILES
 
12753
   CONFIG_HEADERS  = $CONFIG_HEADERS
 
12754
@@ -4320,10 +4362,10 @@
 
12755
 ac_cs_config="`$as_echo "$ac_configure_args" | sed 's/^ //; s/[\\""\`\$]/\\\\&/g'`"
 
12756
 ac_cs_version="\\
 
12757
 fcoe-utils config.status 1.0.9
 
12758
-configured by $0, generated by GNU Autoconf 2.65,
 
12759
+configured by $0, generated by GNU Autoconf 2.68,
 
12760
   with options \\"\$ac_cs_config\\"
 
12761
 
 
12762
-Copyright (C) 2009 Free Software Foundation, Inc.
 
12763
+Copyright (C) 2010 Free Software Foundation, Inc.
 
12764
 This config.status script is free software; the Free Software Foundation
 
12765
 gives unlimited permission to copy, distribute and modify it."
 
12766
 
 
12767
@@ -4341,11 +4383,16 @@
 
12768
 while test $# != 0
 
12769
 do
 
12770
   case $1 in
 
12771
-  --*=*)
 
12772
+  --*=?*)
 
12773
     ac_option=`expr "X$1" : 'X\([^=]*\)='`
 
12774
     ac_optarg=`expr "X$1" : 'X[^=]*=\(.*\)'`
 
12775
     ac_shift=:
 
12776
     ;;
 
12777
+  --*=)
 
12778
+    ac_option=`expr "X$1" : 'X\([^=]*\)='`
 
12779
+    ac_optarg=
 
12780
+    ac_shift=:
 
12781
+    ;;
 
12782
   *)
 
12783
     ac_option=$1
 
12784
     ac_optarg=$2
 
12785
@@ -4367,6 +4414,7 @@
 
12786
     $ac_shift
 
12787
     case $ac_optarg in
 
12788
     *\'*) ac_optarg=`$as_echo "$ac_optarg" | sed "s/'/'\\\\\\\\''/g"` ;;
 
12789
+    '') as_fn_error $? "missing file argument" ;;
 
12790
     esac
 
12791
     as_fn_append CONFIG_FILES " '$ac_optarg'"
 
12792
     ac_need_defaults=false;;
 
12793
@@ -4377,7 +4425,7 @@
 
12794
     ac_cs_silent=: ;;
 
12795
 
 
12796
   # This is an error.
 
12797
-  -*) as_fn_error "unrecognized option: \`$1'
 
12798
+  -*) as_fn_error $? "unrecognized option: \`$1'
 
12799
 Try \`$0 --help' for more information." ;;
 
12800
 
 
12801
   *) as_fn_append ac_config_targets " $1"
 
12802
@@ -4437,7 +4485,7 @@
 
12803
     "fcoe-utils.spec") CONFIG_FILES="$CONFIG_FILES fcoe-utils.spec" ;;
 
12804
     "fcoe_utils.h") CONFIG_FILES="$CONFIG_FILES fcoe_utils.h" ;;
 
12805
 
 
12806
-  *) as_fn_error "invalid argument: \`$ac_config_target'" "$LINENO" 5;;
 
12807
+  *) as_fn_error $? "invalid argument: \`$ac_config_target'" "$LINENO" 5;;
 
12808
   esac
 
12809
 done
 
12810
 
 
12811
@@ -4459,9 +4507,10 @@
 
12812
 # after its creation but before its name has been assigned to `$tmp'.
 
12813
 $debug ||
 
12814
 {
 
12815
-  tmp=
 
12816
+  tmp= ac_tmp=
 
12817
   trap 'exit_status=$?
 
12818
-  { test -z "$tmp" || test ! -d "$tmp" || rm -fr "$tmp"; } && exit $exit_status
 
12819
+  : "${ac_tmp:=$tmp}"
 
12820
+  { test ! -d "$ac_tmp" || rm -fr "$ac_tmp"; } && exit $exit_status
 
12821
 ' 0
 
12822
   trap 'as_fn_exit 1' 1 2 13 15
 
12823
 }
 
12824
@@ -4469,12 +4518,13 @@
 
12825
 
 
12826
 {
 
12827
   tmp=`(umask 077 && mktemp -d "./confXXXXXX") 2>/dev/null` &&
 
12828
-  test -n "$tmp" && test -d "$tmp"
 
12829
+  test -d "$tmp"
 
12830
 }  ||
 
12831
 {
 
12832
   tmp=./conf$$-$RANDOM
 
12833
   (umask 077 && mkdir "$tmp")
 
12834
-} || as_fn_error "cannot create a temporary directory in ." "$LINENO" 5
 
12835
+} || as_fn_error $? "cannot create a temporary directory in ." "$LINENO" 5
 
12836
+ac_tmp=$tmp
 
12837
 
 
12838
 # Set up the scripts for CONFIG_FILES section.
 
12839
 # No need to generate them if there are no CONFIG_FILES.
 
12840
@@ -4491,12 +4541,12 @@
 
12841
 fi
 
12842
 ac_cs_awk_cr=`$AWK 'BEGIN { print "a\rb" }' </dev/null 2>/dev/null`
 
12843
 if test "$ac_cs_awk_cr" = "a${ac_cr}b"; then
 
12844
-  ac_cs_awk_cr='\r'
 
12845
+  ac_cs_awk_cr='\\r'
 
12846
 else
 
12847
   ac_cs_awk_cr=$ac_cr
 
12848
 fi
 
12849
 
 
12850
-echo 'BEGIN {' >"$tmp/subs1.awk" &&
 
12851
+echo 'BEGIN {' >"$ac_tmp/subs1.awk" &&
 
12852
 _ACEOF
 
12853
 
 
12854
 
 
12855
@@ -4505,18 +4555,18 @@
 
12856
   echo "$ac_subst_vars" | sed 's/.*/&!$&$ac_delim/' &&
 
12857
   echo "_ACEOF"
 
12858
 } >conf$$subs.sh ||
 
12859
-  as_fn_error "could not make $CONFIG_STATUS" "$LINENO" 5
 
12860
-ac_delim_num=`echo "$ac_subst_vars" | grep -c '$'`
 
12861
+  as_fn_error $? "could not make $CONFIG_STATUS" "$LINENO" 5
 
12862
+ac_delim_num=`echo "$ac_subst_vars" | grep -c '^'`
 
12863
 ac_delim='%!_!# '
 
12864
 for ac_last_try in false false false false false :; do
 
12865
   . ./conf$$subs.sh ||
 
12866
-    as_fn_error "could not make $CONFIG_STATUS" "$LINENO" 5
 
12867
+    as_fn_error $? "could not make $CONFIG_STATUS" "$LINENO" 5
 
12868
 
 
12869
   ac_delim_n=`sed -n "s/.*$ac_delim\$/X/p" conf$$subs.awk | grep -c X`
 
12870
   if test $ac_delim_n = $ac_delim_num; then
 
12871
     break
 
12872
   elif $ac_last_try; then
 
12873
-    as_fn_error "could not make $CONFIG_STATUS" "$LINENO" 5
 
12874
+    as_fn_error $? "could not make $CONFIG_STATUS" "$LINENO" 5
 
12875
   else
 
12876
     ac_delim="$ac_delim!$ac_delim _$ac_delim!! "
 
12877
   fi
 
12878
@@ -4524,7 +4574,7 @@
 
12879
 rm -f conf$$subs.sh
 
12880
 
 
12881
 cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1
 
12882
-cat >>"\$tmp/subs1.awk" <<\\_ACAWK &&
 
12883
+cat >>"\$ac_tmp/subs1.awk" <<\\_ACAWK &&
 
12884
 _ACEOF
 
12885
 sed -n '
 
12886
 h
 
12887
@@ -4572,7 +4622,7 @@
 
12888
 rm -f conf$$subs.awk
 
12889
 cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1
 
12890
 _ACAWK
 
12891
-cat >>"\$tmp/subs1.awk" <<_ACAWK &&
 
12892
+cat >>"\$ac_tmp/subs1.awk" <<_ACAWK &&
 
12893
   for (key in S) S_is_set[key] = 1
 
12894
   FS = ""
 
12895
 
 
12896
@@ -4604,21 +4654,29 @@
 
12897
   sed "s/$ac_cr\$//; s/$ac_cr/$ac_cs_awk_cr/g"
 
12898
 else
 
12899
   cat
 
12900
-fi < "$tmp/subs1.awk" > "$tmp/subs.awk" \
 
12901
-  || as_fn_error "could not setup config files machinery" "$LINENO" 5
 
12902
+fi < "$ac_tmp/subs1.awk" > "$ac_tmp/subs.awk" \
 
12903
+  || as_fn_error $? "could not setup config files machinery" "$LINENO" 5
 
12904
 _ACEOF
 
12905
 
 
12906
-# VPATH may cause trouble with some makes, so we remove $(srcdir),
 
12907
-# ${srcdir} and @srcdir@ from VPATH if srcdir is ".", strip leading and
 
12908
+# VPATH may cause trouble with some makes, so we remove sole $(srcdir),
 
12909
+# ${srcdir} and @srcdir@ entries from VPATH if srcdir is ".", strip leading and
 
12910
 # trailing colons and then remove the whole line if VPATH becomes empty
 
12911
 # (actually we leave an empty line to preserve line numbers).
 
12912
 if test "x$srcdir" = x.; then
 
12913
-  ac_vpsub='/^[         ]*VPATH[        ]*=/{
 
12914
-s/:*\$(srcdir):*/:/
 
12915
-s/:*\${srcdir}:*/:/
 
12916
-s/:*@srcdir@:*/:/
 
12917
-s/^\([^=]*=[    ]*\):*/\1/
 
12918
+  ac_vpsub='/^[         ]*VPATH[        ]*=[    ]*/{
 
12919
+h
 
12920
+s///
 
12921
+s/^/:/
 
12922
+s/[     ]*$/:/
 
12923
+s/:\$(srcdir):/:/g
 
12924
+s/:\${srcdir}:/:/g
 
12925
+s/:@srcdir@:/:/g
 
12926
+s/^:*//
 
12927
 s/:*$//
 
12928
+x
 
12929
+s/\(=[  ]*\).*/\1/
 
12930
+G
 
12931
+s/\n//
 
12932
 s/^[^=]*=[      ]*$//
 
12933
 }'
 
12934
 fi
 
12935
@@ -4636,7 +4694,7 @@
 
12936
   esac
 
12937
   case $ac_mode$ac_tag in
 
12938
   :[FHL]*:*);;
 
12939
-  :L* | :C*:*) as_fn_error "invalid tag \`$ac_tag'" "$LINENO" 5;;
 
12940
+  :L* | :C*:*) as_fn_error $? "invalid tag \`$ac_tag'" "$LINENO" 5;;
 
12941
   :[FH]-) ac_tag=-:-;;
 
12942
   :[FH]*) ac_tag=$ac_tag:$ac_tag.in;;
 
12943
   esac
 
12944
@@ -4655,7 +4713,7 @@
 
12945
     for ac_f
 
12946
     do
 
12947
       case $ac_f in
 
12948
-      -) ac_f="$tmp/stdin";;
 
12949
+      -) ac_f="$ac_tmp/stdin";;
 
12950
       *) # Look for the file first in the build tree, then in the source tree
 
12951
         # (if the path is not absolute).  The absolute path cannot be DOS-style,
 
12952
         # because $ac_f cannot contain `:'.
 
12953
@@ -4664,7 +4722,7 @@
 
12954
           [\\/$]*) false;;
 
12955
           *) test -f "$srcdir/$ac_f" && ac_f="$srcdir/$ac_f";;
 
12956
           esac ||
 
12957
-          as_fn_error "cannot find input file: \`$ac_f'" "$LINENO" 5;;
 
12958
+          as_fn_error 1 "cannot find input file: \`$ac_f'" "$LINENO" 5;;
 
12959
       esac
 
12960
       case $ac_f in *\'*) ac_f=`$as_echo "$ac_f" | sed "s/'/'\\\\\\\\''/g"`;; esac
 
12961
       as_fn_append ac_file_inputs " '$ac_f'"
 
12962
@@ -4690,8 +4748,8 @@
 
12963
     esac
 
12964
 
 
12965
     case $ac_tag in
 
12966
-    *:-:* | *:-) cat >"$tmp/stdin" \
 
12967
-      || as_fn_error "could not create $ac_file" "$LINENO" 5 ;;
 
12968
+    *:-:* | *:-) cat >"$ac_tmp/stdin" \
 
12969
+      || as_fn_error $? "could not create $ac_file" "$LINENO" 5 ;;
 
12970
     esac
 
12971
     ;;
 
12972
   esac
 
12973
@@ -4827,23 +4885,24 @@
 
12974
 s&@MKDIR_P@&$ac_MKDIR_P&;t t
 
12975
 $ac_datarootdir_hack
 
12976
 "
 
12977
-eval sed \"\$ac_sed_extra\" "$ac_file_inputs" | $AWK -f "$tmp/subs.awk" >$tmp/out \
 
12978
-  || as_fn_error "could not create $ac_file" "$LINENO" 5
 
12979
+eval sed \"\$ac_sed_extra\" "$ac_file_inputs" | $AWK -f "$ac_tmp/subs.awk" \
 
12980
+  >$ac_tmp/out || as_fn_error $? "could not create $ac_file" "$LINENO" 5
 
12981
 
 
12982
 test -z "$ac_datarootdir_hack$ac_datarootdir_seen" &&
 
12983
-  { ac_out=`sed -n '/\${datarootdir}/p' "$tmp/out"`; test -n "$ac_out"; } &&
 
12984
-  { ac_out=`sed -n '/^[         ]*datarootdir[  ]*:*=/p' "$tmp/out"`; test -z "$ac_out"; } &&
 
12985
+  { ac_out=`sed -n '/\${datarootdir}/p' "$ac_tmp/out"`; test -n "$ac_out"; } &&
 
12986
+  { ac_out=`sed -n '/^[         ]*datarootdir[  ]*:*=/p' \
 
12987
+      "$ac_tmp/out"`; test -z "$ac_out"; } &&
 
12988
   { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: $ac_file contains a reference to the variable \`datarootdir'
 
12989
-which seems to be undefined.  Please make sure it is defined." >&5
 
12990
+which seems to be undefined.  Please make sure it is defined" >&5
 
12991
 $as_echo "$as_me: WARNING: $ac_file contains a reference to the variable \`datarootdir'
 
12992
-which seems to be undefined.  Please make sure it is defined." >&2;}
 
12993
+which seems to be undefined.  Please make sure it is defined" >&2;}
 
12994
 
 
12995
-  rm -f "$tmp/stdin"
 
12996
+  rm -f "$ac_tmp/stdin"
 
12997
   case $ac_file in
 
12998
-  -) cat "$tmp/out" && rm -f "$tmp/out";;
 
12999
-  *) rm -f "$ac_file" && mv "$tmp/out" "$ac_file";;
 
13000
+  -) cat "$ac_tmp/out" && rm -f "$ac_tmp/out";;
 
13001
+  *) rm -f "$ac_file" && mv "$ac_tmp/out" "$ac_file";;
 
13002
   esac \
 
13003
-  || as_fn_error "could not create $ac_file" "$LINENO" 5
 
13004
+  || as_fn_error $? "could not create $ac_file" "$LINENO" 5
 
13005
  ;;
 
13006
 
 
13007
 
 
13008
@@ -4959,7 +5018,7 @@
 
13009
 ac_clean_files=$ac_clean_files_save
 
13010
 
 
13011
 test $ac_write_fail = 0 ||
 
13012
-  as_fn_error "write failure creating $CONFIG_STATUS" "$LINENO" 5
 
13013
+  as_fn_error $? "write failure creating $CONFIG_STATUS" "$LINENO" 5
 
13014
 
 
13015
 
 
13016
 # configure is writing to config.log, and then calls config.status.
 
13017
@@ -4980,7 +5039,7 @@
 
13018
   exec 5>>config.log
 
13019
   # Use ||, not &&, to avoid exiting from the if with $? = 1, which
 
13020
   # would make configure fail if this is the last instruction.
 
13021
-  $ac_cs_success || as_fn_exit $?
 
13022
+  $ac_cs_success || as_fn_exit 1
 
13023
 fi
 
13024
 if test -n "$ac_unrecognized_opts" && test "$enable_option_checking" != no; then
 
13025
   { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: unrecognized options: $ac_unrecognized_opts" >&5
 
13026
diff -Nur -x '*.orig' -x '*~' fcoe-utils-1.0.9//Makefile.in fcoe-utils-1.0.9.new//Makefile.in
 
13027
--- fcoe-utils-1.0.9//Makefile.in       2011-09-14 08:24:28.000000000 -0400
 
13028
+++ fcoe-utils-1.0.9.new//Makefile.in   2011-09-14 11:57:05.000000000 -0400
 
13029
@@ -61,14 +61,15 @@
 
13030
 am_fcoeadm_OBJECTS = fcoeadm-fcoeadm_display.$(OBJEXT) \
 
13031
        fcoeadm-fcoeadm.$(OBJEXT)
 
13032
 fcoeadm_OBJECTS = $(am_fcoeadm_OBJECTS)
 
13033
-fcoeadm_LDADD = $(LDADD)
 
13034
-fcoeadm_LINK = $(CCLD) $(fcoeadm_CFLAGS) $(CFLAGS) $(fcoeadm_LDFLAGS) \
 
13035
+am__DEPENDENCIES_1 =
 
13036
+fcoeadm_DEPENDENCIES = $(am__DEPENDENCIES_1)
 
13037
+fcoeadm_LINK = $(CCLD) $(fcoeadm_CFLAGS) $(CFLAGS) $(AM_LDFLAGS) \
 
13038
        $(LDFLAGS) -o $@
 
13039
 am_fcoemon_OBJECTS = fcoemon-fcoemon_utils.$(OBJEXT) \
 
13040
        fcoemon-fcoemon.$(OBJEXT)
 
13041
 fcoemon_OBJECTS = $(am_fcoemon_OBJECTS)
 
13042
-fcoemon_LDADD = $(LDADD)
 
13043
-fcoemon_LINK = $(CCLD) $(fcoemon_CFLAGS) $(CFLAGS) $(fcoemon_LDFLAGS) \
 
13044
+fcoemon_DEPENDENCIES =
 
13045
+fcoemon_LINK = $(CCLD) $(fcoemon_CFLAGS) $(CFLAGS) $(AM_LDFLAGS) \
 
13046
        $(LDFLAGS) -o $@
 
13047
 am_fipvlan_OBJECTS = fipvlan.$(OBJEXT) log.$(OBJEXT)
 
13048
 fipvlan_OBJECTS = $(am_fipvlan_OBJECTS)
 
13049
@@ -166,6 +167,8 @@
 
13050
 PACKAGE_VERSION = @PACKAGE_VERSION@
 
13051
 PATH_SEPARATOR = @PATH_SEPARATOR@
 
13052
 PKG_CONFIG = @PKG_CONFIG@
 
13053
+PKG_CONFIG_LIBDIR = @PKG_CONFIG_LIBDIR@
 
13054
+PKG_CONFIG_PATH = @PKG_CONFIG_PATH@
 
13055
 SET_MAKE = @SET_MAKE@
 
13056
 SHELL = @SHELL@
 
13057
 STRIP = @STRIP@
 
13058
@@ -218,7 +221,7 @@
 
13059
 include/fc_scsi.h include/fc_types.h include/net_types.h
 
13060
 
 
13061
 fcoeadm_CFLAGS = $(HBAAPI_CFLAGS)
 
13062
-fcoeadm_LDFLAGS = $(HBAAPI_LIBS)
 
13063
+fcoeadm_LDADD = $(HBAAPI_LIBS)
 
13064
 
 
13065
 #fcping_SOURCES = fcping.c
 
13066
 
 
13067
@@ -228,7 +231,7 @@
 
13068
 fcoe_utils.h include/fc_scsi.h include/fc_types.h include/net_types.h
 
13069
 
 
13070
 fcoemon_CFLAGS = $(DCBD_CFLAGS)
 
13071
-fcoemon_LDFLAGS = -lrt
 
13072
+fcoemon_LDADD = -lrt
 
13073
 fipvlan_SOURCES = fipvlan.c fcoe_utils.h include/fip.h \
 
13074
 log.c include/log.h include/list.h
 
13075
 
 
13076
@@ -366,6 +369,40 @@
 
13077
        test -n "$$list" || exit 0; \
 
13078
        echo " ( cd '$(DESTDIR)$(fcoe_scriptsdir)' && rm -f" $$files ")"; \
 
13079
        cd "$(DESTDIR)$(fcoe_scriptsdir)" && rm -f $$files
 
13080
+install-init_dSCRIPTS: $(init_d_SCRIPTS)
 
13081
+       @$(NORMAL_INSTALL)
 
13082
+       test -z "$(init_ddir)" || $(MKDIR_P) "$(DESTDIR)$(init_ddir)"
 
13083
+       @list='$(init_d_SCRIPTS)'; test -n "$(init_ddir)" || list=; \
 
13084
+       for p in $$list; do \
 
13085
+         if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \
 
13086
+         if test -f "$$d$$p"; then echo "$$d$$p"; echo "$$p"; else :; fi; \
 
13087
+       done | \
 
13088
+       sed -e 'p;s,.*/,,;n' \
 
13089
+           -e 'h;s|.*|.|' \
 
13090
+           -e 'p;x;s,.*/,,;$(transform)' | sed 'N;N;N;s,\n, ,g' | \
 
13091
+       $(AWK) 'BEGIN { files["."] = ""; dirs["."] = 1; } \
 
13092
+         { d=$$3; if (dirs[d] != 1) { print "d", d; dirs[d] = 1 } \
 
13093
+           if ($$2 == $$4) { files[d] = files[d] " " $$1; \
 
13094
+             if (++n[d] == $(am__install_max)) { \
 
13095
+               print "f", d, files[d]; n[d] = 0; files[d] = "" } } \
 
13096
+           else { print "f", d "/" $$4, $$1 } } \
 
13097
+         END { for (d in files) print "f", d, files[d] }' | \
 
13098
+       while read type dir files; do \
 
13099
+            if test "$$dir" = .; then dir=; else dir=/$$dir; fi; \
 
13100
+            test -z "$$files" || { \
 
13101
+              echo " $(INSTALL_SCRIPT) $$files '$(DESTDIR)$(init_ddir)$$dir'"; \
 
13102
+              $(INSTALL_SCRIPT) $$files "$(DESTDIR)$(init_ddir)$$dir" || exit $$?; \
 
13103
+            } \
 
13104
+       ; done
 
13105
+
 
13106
+uninstall-init_dSCRIPTS:
 
13107
+       @$(NORMAL_UNINSTALL)
 
13108
+       @list='$(init_d_SCRIPTS)'; test -n "$(init_ddir)" || exit 0; \
 
13109
+       files=`for p in $$list; do echo "$$p"; done | \
 
13110
+              sed -e 's,.*/,,;$(transform)'`; \
 
13111
+       test -n "$$list" || exit 0; \
 
13112
+       echo " ( cd '$(DESTDIR)$(init_ddir)' && rm -f" $$files ")"; \
 
13113
+       cd "$(DESTDIR)$(init_ddir)" && rm -f $$files
 
13114
 
 
13115
 mostlyclean-compile:
 
13116
        -rm -f *.$(OBJEXT)