1#! /bin/sh
2# Guess values for system-dependent variables and create Makefiles.
3# Generated by GNU Autoconf 2.69 for notify-sharp 3.0.3.
4#
5#
6# Copyright (C) 1992-1996, 1998-2012 Free Software Foundation, Inc.
7#
8#
9# This configure script is free software; the Free Software Foundation
10# gives unlimited permission to copy, distribute and modify it.
11## -------------------- ##
12## M4sh Initialization. ##
13## -------------------- ##
14
15# Be more Bourne compatible
16DUALCASE=1; export DUALCASE # for MKS sh
17if test -n "${ZSH_VERSION+set}" && (emulate sh) >/dev/null 2>&1; then :
18  emulate sh
19  NULLCMD=:
20  # Pre-4.2 versions of Zsh do word splitting on ${1+"$@"}, which
21  # is contrary to our usage.  Disable this feature.
22  alias -g '${1+"$@"}'='"$@"'
23  setopt NO_GLOB_SUBST
24else
25  case `(set -o) 2>/dev/null` in #(
26  *posix*) :
27    set -o posix ;; #(
28  *) :
29     ;;
30esac
31fi
32
33
34as_nl='
35'
36export as_nl
37# Printing a long string crashes Solaris 7 /usr/bin/printf.
38as_echo='\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\'
39as_echo=$as_echo$as_echo$as_echo$as_echo$as_echo
40as_echo=$as_echo$as_echo$as_echo$as_echo$as_echo$as_echo
41# Prefer a ksh shell builtin over an external printf program on Solaris,
42# but without wasting forks for bash or zsh.
43if test -z "$BASH_VERSION$ZSH_VERSION" \
44    && (test "X`print -r -- $as_echo`" = "X$as_echo") 2>/dev/null; then
45  as_echo='print -r --'
46  as_echo_n='print -rn --'
47elif (test "X`printf %s $as_echo`" = "X$as_echo") 2>/dev/null; then
48  as_echo='printf %s\n'
49  as_echo_n='printf %s'
50else
51  if test "X`(/usr/ucb/echo -n -n $as_echo) 2>/dev/null`" = "X-n $as_echo"; then
52    as_echo_body='eval /usr/ucb/echo -n "$1$as_nl"'
53    as_echo_n='/usr/ucb/echo -n'
54  else
55    as_echo_body='eval expr "X$1" : "X\\(.*\\)"'
56    as_echo_n_body='eval
57      arg=$1;
58      case $arg in #(
59      *"$as_nl"*)
60	expr "X$arg" : "X\\(.*\\)$as_nl";
61	arg=`expr "X$arg" : ".*$as_nl\\(.*\\)"`;;
62      esac;
63      expr "X$arg" : "X\\(.*\\)" | tr -d "$as_nl"
64    '
65    export as_echo_n_body
66    as_echo_n='sh -c $as_echo_n_body as_echo'
67  fi
68  export as_echo_body
69  as_echo='sh -c $as_echo_body as_echo'
70fi
71
72# The user is always right.
73if test "${PATH_SEPARATOR+set}" != set; then
74  PATH_SEPARATOR=:
75  (PATH='/bin;/bin'; FPATH=$PATH; sh -c :) >/dev/null 2>&1 && {
76    (PATH='/bin:/bin'; FPATH=$PATH; sh -c :) >/dev/null 2>&1 ||
77      PATH_SEPARATOR=';'
78  }
79fi
80
81
82# IFS
83# We need space, tab and new line, in precisely that order.  Quoting is
84# there to prevent editors from complaining about space-tab.
85# (If _AS_PATH_WALK were called with IFS unset, it would disable word
86# splitting by setting IFS to empty value.)
87IFS=" ""	$as_nl"
88
89# Find who we are.  Look in the path if we contain no directory separator.
90as_myself=
91case $0 in #((
92  *[\\/]* ) as_myself=$0 ;;
93  *) as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
94for as_dir in $PATH
95do
96  IFS=$as_save_IFS
97  test -z "$as_dir" && as_dir=.
98    test -r "$as_dir/$0" && as_myself=$as_dir/$0 && break
99  done
100IFS=$as_save_IFS
101
102     ;;
103esac
104# We did not find ourselves, most probably we were run as `sh COMMAND'
105# in which case we are not to be found in the path.
106if test "x$as_myself" = x; then
107  as_myself=$0
108fi
109if test ! -f "$as_myself"; then
110  $as_echo "$as_myself: error: cannot find myself; rerun with an absolute file name" >&2
111  exit 1
112fi
113
114# Unset variables that we do not need and which cause bugs (e.g. in
115# pre-3.0 UWIN ksh).  But do not cause bugs in bash 2.01; the "|| exit 1"
116# suppresses any "Segmentation fault" message there.  '((' could
117# trigger a bug in pdksh 5.2.14.
118for as_var in BASH_ENV ENV MAIL MAILPATH
119do eval test x\${$as_var+set} = xset \
120  && ( (unset $as_var) || exit 1) >/dev/null 2>&1 && unset $as_var || :
121done
122PS1='$ '
123PS2='> '
124PS4='+ '
125
126# NLS nuisances.
127LC_ALL=C
128export LC_ALL
129LANGUAGE=C
130export LANGUAGE
131
132# CDPATH.
133(unset CDPATH) >/dev/null 2>&1 && unset CDPATH
134
135# Use a proper internal environment variable to ensure we don't fall
136  # into an infinite loop, continuously re-executing ourselves.
137  if test x"${_as_can_reexec}" != xno && test "x$CONFIG_SHELL" != x; then
138    _as_can_reexec=no; export _as_can_reexec;
139    # We cannot yet assume a decent shell, so we have to provide a
140# neutralization value for shells without unset; and this also
141# works around shells that cannot unset nonexistent variables.
142# Preserve -v and -x to the replacement shell.
143BASH_ENV=/dev/null
144ENV=/dev/null
145(unset BASH_ENV) >/dev/null 2>&1 && unset BASH_ENV ENV
146case $- in # ((((
147  *v*x* | *x*v* ) as_opts=-vx ;;
148  *v* ) as_opts=-v ;;
149  *x* ) as_opts=-x ;;
150  * ) as_opts= ;;
151esac
152exec $CONFIG_SHELL $as_opts "$as_myself" ${1+"$@"}
153# Admittedly, this is quite paranoid, since all the known shells bail
154# out after a failed `exec'.
155$as_echo "$0: could not re-execute with $CONFIG_SHELL" >&2
156as_fn_exit 255
157  fi
158  # We don't want this to propagate to other subprocesses.
159          { _as_can_reexec=; unset _as_can_reexec;}
160if test "x$CONFIG_SHELL" = x; then
161  as_bourne_compatible="if test -n \"\${ZSH_VERSION+set}\" && (emulate sh) >/dev/null 2>&1; then :
162  emulate sh
163  NULLCMD=:
164  # Pre-4.2 versions of Zsh do word splitting on \${1+\"\$@\"}, which
165  # is contrary to our usage.  Disable this feature.
166  alias -g '\${1+\"\$@\"}'='\"\$@\"'
167  setopt NO_GLOB_SUBST
168else
169  case \`(set -o) 2>/dev/null\` in #(
170  *posix*) :
171    set -o posix ;; #(
172  *) :
173     ;;
174esac
175fi
176"
177  as_required="as_fn_return () { (exit \$1); }
178as_fn_success () { as_fn_return 0; }
179as_fn_failure () { as_fn_return 1; }
180as_fn_ret_success () { return 0; }
181as_fn_ret_failure () { return 1; }
182
183exitcode=0
184as_fn_success || { exitcode=1; echo as_fn_success failed.; }
185as_fn_failure && { exitcode=1; echo as_fn_failure succeeded.; }
186as_fn_ret_success || { exitcode=1; echo as_fn_ret_success failed.; }
187as_fn_ret_failure && { exitcode=1; echo as_fn_ret_failure succeeded.; }
188if ( set x; as_fn_ret_success y && test x = \"\$1\" ); then :
189
190else
191  exitcode=1; echo positional parameters were not saved.
192fi
193test x\$exitcode = x0 || exit 1
194test -x / || exit 1"
195  as_suggested="  as_lineno_1=";as_suggested=$as_suggested$LINENO;as_suggested=$as_suggested" as_lineno_1a=\$LINENO
196  as_lineno_2=";as_suggested=$as_suggested$LINENO;as_suggested=$as_suggested" as_lineno_2a=\$LINENO
197  eval 'test \"x\$as_lineno_1'\$as_run'\" != \"x\$as_lineno_2'\$as_run'\" &&
198  test \"x\`expr \$as_lineno_1'\$as_run' + 1\`\" = \"x\$as_lineno_2'\$as_run'\"' || exit 1"
199  if (eval "$as_required") 2>/dev/null; then :
200  as_have_required=yes
201else
202  as_have_required=no
203fi
204  if test x$as_have_required = xyes && (eval "$as_suggested") 2>/dev/null; then :
205
206else
207  as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
208as_found=false
209for as_dir in /bin$PATH_SEPARATOR/usr/bin$PATH_SEPARATOR$PATH
210do
211  IFS=$as_save_IFS
212  test -z "$as_dir" && as_dir=.
213  as_found=:
214  case $as_dir in #(
215	 /*)
216	   for as_base in sh bash ksh sh5; do
217	     # Try only shells that exist, to save several forks.
218	     as_shell=$as_dir/$as_base
219	     if { test -f "$as_shell" || test -f "$as_shell.exe"; } &&
220		    { $as_echo "$as_bourne_compatible""$as_required" | as_run=a "$as_shell"; } 2>/dev/null; then :
221  CONFIG_SHELL=$as_shell as_have_required=yes
222		   if { $as_echo "$as_bourne_compatible""$as_suggested" | as_run=a "$as_shell"; } 2>/dev/null; then :
223  break 2
224fi
225fi
226	   done;;
227       esac
228  as_found=false
229done
230$as_found || { if { test -f "$SHELL" || test -f "$SHELL.exe"; } &&
231	      { $as_echo "$as_bourne_compatible""$as_required" | as_run=a "$SHELL"; } 2>/dev/null; then :
232  CONFIG_SHELL=$SHELL as_have_required=yes
233fi; }
234IFS=$as_save_IFS
235
236
237      if test "x$CONFIG_SHELL" != x; then :
238  export CONFIG_SHELL
239             # We cannot yet assume a decent shell, so we have to provide a
240# neutralization value for shells without unset; and this also
241# works around shells that cannot unset nonexistent variables.
242# Preserve -v and -x to the replacement shell.
243BASH_ENV=/dev/null
244ENV=/dev/null
245(unset BASH_ENV) >/dev/null 2>&1 && unset BASH_ENV ENV
246case $- in # ((((
247  *v*x* | *x*v* ) as_opts=-vx ;;
248  *v* ) as_opts=-v ;;
249  *x* ) as_opts=-x ;;
250  * ) as_opts= ;;
251esac
252exec $CONFIG_SHELL $as_opts "$as_myself" ${1+"$@"}
253# Admittedly, this is quite paranoid, since all the known shells bail
254# out after a failed `exec'.
255$as_echo "$0: could not re-execute with $CONFIG_SHELL" >&2
256exit 255
257fi
258
259    if test x$as_have_required = xno; then :
260  $as_echo "$0: This script requires a shell more modern than all"
261  $as_echo "$0: the shells that I found on your system."
262  if test x${ZSH_VERSION+set} = xset ; then
263    $as_echo "$0: In particular, zsh $ZSH_VERSION has bugs and should"
264    $as_echo "$0: be upgraded to zsh 4.3.4 or later."
265  else
266    $as_echo "$0: Please tell bug-autoconf@gnu.org about your system,
267$0: including any error possibly output before this
268$0: message. Then install a modern shell, or manually run
269$0: the script under such a shell if you do have one."
270  fi
271  exit 1
272fi
273fi
274fi
275SHELL=${CONFIG_SHELL-/bin/sh}
276export SHELL
277# Unset more variables known to interfere with behavior of common tools.
278CLICOLOR_FORCE= GREP_OPTIONS=
279unset CLICOLOR_FORCE GREP_OPTIONS
280
281## --------------------- ##
282## M4sh Shell Functions. ##
283## --------------------- ##
284# as_fn_unset VAR
285# ---------------
286# Portably unset VAR.
287as_fn_unset ()
288{
289  { eval $1=; unset $1;}
290}
291as_unset=as_fn_unset
292
293# as_fn_set_status STATUS
294# -----------------------
295# Set $? to STATUS, without forking.
296as_fn_set_status ()
297{
298  return $1
299} # as_fn_set_status
300
301# as_fn_exit STATUS
302# -----------------
303# Exit the shell with STATUS, even in a "trap 0" or "set -e" context.
304as_fn_exit ()
305{
306  set +e
307  as_fn_set_status $1
308  exit $1
309} # as_fn_exit
310
311# as_fn_mkdir_p
312# -------------
313# Create "$as_dir" as a directory, including parents if necessary.
314as_fn_mkdir_p ()
315{
316
317  case $as_dir in #(
318  -*) as_dir=./$as_dir;;
319  esac
320  test -d "$as_dir" || eval $as_mkdir_p || {
321    as_dirs=
322    while :; do
323      case $as_dir in #(
324      *\'*) as_qdir=`$as_echo "$as_dir" | sed "s/'/'\\\\\\\\''/g"`;; #'(
325      *) as_qdir=$as_dir;;
326      esac
327      as_dirs="'$as_qdir' $as_dirs"
328      as_dir=`$as_dirname -- "$as_dir" ||
329$as_expr X"$as_dir" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \
330	 X"$as_dir" : 'X\(//\)[^/]' \| \
331	 X"$as_dir" : 'X\(//\)$' \| \
332	 X"$as_dir" : 'X\(/\)' \| . 2>/dev/null ||
333$as_echo X"$as_dir" |
334    sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{
335	    s//\1/
336	    q
337	  }
338	  /^X\(\/\/\)[^/].*/{
339	    s//\1/
340	    q
341	  }
342	  /^X\(\/\/\)$/{
343	    s//\1/
344	    q
345	  }
346	  /^X\(\/\).*/{
347	    s//\1/
348	    q
349	  }
350	  s/.*/./; q'`
351      test -d "$as_dir" && break
352    done
353    test -z "$as_dirs" || eval "mkdir $as_dirs"
354  } || test -d "$as_dir" || as_fn_error $? "cannot create directory $as_dir"
355
356
357} # as_fn_mkdir_p
358
359# as_fn_executable_p FILE
360# -----------------------
361# Test if FILE is an executable regular file.
362as_fn_executable_p ()
363{
364  test -f "$1" && test -x "$1"
365} # as_fn_executable_p
366# as_fn_append VAR VALUE
367# ----------------------
368# Append the text in VALUE to the end of the definition contained in VAR. Take
369# advantage of any shell optimizations that allow amortized linear growth over
370# repeated appends, instead of the typical quadratic growth present in naive
371# implementations.
372if (eval "as_var=1; as_var+=2; test x\$as_var = x12") 2>/dev/null; then :
373  eval 'as_fn_append ()
374  {
375    eval $1+=\$2
376  }'
377else
378  as_fn_append ()
379  {
380    eval $1=\$$1\$2
381  }
382fi # as_fn_append
383
384# as_fn_arith ARG...
385# ------------------
386# Perform arithmetic evaluation on the ARGs, and store the result in the
387# global $as_val. Take advantage of shells that can avoid forks. The arguments
388# must be portable across $(()) and expr.
389if (eval "test \$(( 1 + 1 )) = 2") 2>/dev/null; then :
390  eval 'as_fn_arith ()
391  {
392    as_val=$(( $* ))
393  }'
394else
395  as_fn_arith ()
396  {
397    as_val=`expr "$@" || test $? -eq 1`
398  }
399fi # as_fn_arith
400
401
402# as_fn_error STATUS ERROR [LINENO LOG_FD]
403# ----------------------------------------
404# Output "`basename $0`: error: ERROR" to stderr. If LINENO and LOG_FD are
405# provided, also output the error to LOG_FD, referencing LINENO. Then exit the
406# script with STATUS, using 1 if that was 0.
407as_fn_error ()
408{
409  as_status=$1; test $as_status -eq 0 && as_status=1
410  if test "$4"; then
411    as_lineno=${as_lineno-"$3"} as_lineno_stack=as_lineno_stack=$as_lineno_stack
412    $as_echo "$as_me:${as_lineno-$LINENO}: error: $2" >&$4
413  fi
414  $as_echo "$as_me: error: $2" >&2
415  as_fn_exit $as_status
416} # as_fn_error
417
418if expr a : '\(a\)' >/dev/null 2>&1 &&
419   test "X`expr 00001 : '.*\(...\)'`" = X001; then
420  as_expr=expr
421else
422  as_expr=false
423fi
424
425if (basename -- /) >/dev/null 2>&1 && test "X`basename -- / 2>&1`" = "X/"; then
426  as_basename=basename
427else
428  as_basename=false
429fi
430
431if (as_dir=`dirname -- /` && test "X$as_dir" = X/) >/dev/null 2>&1; then
432  as_dirname=dirname
433else
434  as_dirname=false
435fi
436
437as_me=`$as_basename -- "$0" ||
438$as_expr X/"$0" : '.*/\([^/][^/]*\)/*$' \| \
439	 X"$0" : 'X\(//\)$' \| \
440	 X"$0" : 'X\(/\)' \| . 2>/dev/null ||
441$as_echo X/"$0" |
442    sed '/^.*\/\([^/][^/]*\)\/*$/{
443	    s//\1/
444	    q
445	  }
446	  /^X\/\(\/\/\)$/{
447	    s//\1/
448	    q
449	  }
450	  /^X\/\(\/\).*/{
451	    s//\1/
452	    q
453	  }
454	  s/.*/./; q'`
455
456# Avoid depending upon Character Ranges.
457as_cr_letters='abcdefghijklmnopqrstuvwxyz'
458as_cr_LETTERS='ABCDEFGHIJKLMNOPQRSTUVWXYZ'
459as_cr_Letters=$as_cr_letters$as_cr_LETTERS
460as_cr_digits='0123456789'
461as_cr_alnum=$as_cr_Letters$as_cr_digits
462
463
464  as_lineno_1=$LINENO as_lineno_1a=$LINENO
465  as_lineno_2=$LINENO as_lineno_2a=$LINENO
466  eval 'test "x$as_lineno_1'$as_run'" != "x$as_lineno_2'$as_run'" &&
467  test "x`expr $as_lineno_1'$as_run' + 1`" = "x$as_lineno_2'$as_run'"' || {
468  # Blame Lee E. McMahon (1931-1989) for sed's syntax.  :-)
469  sed -n '
470    p
471    /[$]LINENO/=
472  ' <$as_myself |
473    sed '
474      s/[$]LINENO.*/&-/
475      t lineno
476      b
477      :lineno
478      N
479      :loop
480      s/[$]LINENO\([^'$as_cr_alnum'_].*\n\)\(.*\)/\2\1\2/
481      t loop
482      s/-\n.*//
483    ' >$as_me.lineno &&
484  chmod +x "$as_me.lineno" ||
485    { $as_echo "$as_me: error: cannot create $as_me.lineno; rerun with a POSIX shell" >&2; as_fn_exit 1; }
486
487  # If we had to re-execute with $CONFIG_SHELL, we're ensured to have
488  # already done that, so ensure we don't try to do so again and fall
489  # in an infinite loop.  This has already happened in practice.
490  _as_can_reexec=no; export _as_can_reexec
491  # Don't try to exec as it changes $[0], causing all sort of problems
492  # (the dirname of $[0] is not the place where we might find the
493  # original and so on.  Autoconf is especially sensitive to this).
494  . "./$as_me.lineno"
495  # Exit status is that of the last command.
496  exit
497}
498
499ECHO_C= ECHO_N= ECHO_T=
500case `echo -n x` in #(((((
501-n*)
502  case `echo 'xy\c'` in
503  *c*) ECHO_T='	';;	# ECHO_T is single tab character.
504  xy)  ECHO_C='\c';;
505  *)   echo `echo ksh88 bug on AIX 6.1` > /dev/null
506       ECHO_T='	';;
507  esac;;
508*)
509  ECHO_N='-n';;
510esac
511
512rm -f conf$$ conf$$.exe conf$$.file
513if test -d conf$$.dir; then
514  rm -f conf$$.dir/conf$$.file
515else
516  rm -f conf$$.dir
517  mkdir conf$$.dir 2>/dev/null
518fi
519if (echo >conf$$.file) 2>/dev/null; then
520  if ln -s conf$$.file conf$$ 2>/dev/null; then
521    as_ln_s='ln -s'
522    # ... but there are two gotchas:
523    # 1) On MSYS, both `ln -s file dir' and `ln file dir' fail.
524    # 2) DJGPP < 2.04 has no symlinks; `ln -s' creates a wrapper executable.
525    # In both cases, we have to default to `cp -pR'.
526    ln -s conf$$.file conf$$.dir 2>/dev/null && test ! -f conf$$.exe ||
527      as_ln_s='cp -pR'
528  elif ln conf$$.file conf$$ 2>/dev/null; then
529    as_ln_s=ln
530  else
531    as_ln_s='cp -pR'
532  fi
533else
534  as_ln_s='cp -pR'
535fi
536rm -f conf$$ conf$$.exe conf$$.dir/conf$$.file conf$$.file
537rmdir conf$$.dir 2>/dev/null
538
539if mkdir -p . 2>/dev/null; then
540  as_mkdir_p='mkdir -p "$as_dir"'
541else
542  test -d ./-p && rmdir ./-p
543  as_mkdir_p=false
544fi
545
546as_test_x='test -x'
547as_executable_p=as_fn_executable_p
548
549# Sed expression to map a string onto a valid CPP name.
550as_tr_cpp="eval sed 'y%*$as_cr_letters%P$as_cr_LETTERS%;s%[^_$as_cr_alnum]%_%g'"
551
552# Sed expression to map a string onto a valid variable name.
553as_tr_sh="eval sed 'y%*+%pp%;s%[^_$as_cr_alnum]%_%g'"
554
555
556test -n "$DJDIR" || exec 7<&0 </dev/null
557exec 6>&1
558
559# Name of the host.
560# hostname on some systems (SVR3.2, old GNU/Linux) returns a bogus exit status,
561# so uname gets run too.
562ac_hostname=`(hostname || uname -n) 2>/dev/null | sed 1q`
563
564#
565# Initializations.
566#
567ac_default_prefix=/usr/local
568ac_clean_files=
569ac_config_libobj_dir=.
570LIBOBJS=
571cross_compiling=no
572subdirs=
573MFLAGS=
574MAKEFLAGS=
575
576# Identity of this package.
577PACKAGE_NAME='notify-sharp'
578PACKAGE_TARNAME='notify-sharp'
579PACKAGE_VERSION='3.0.3'
580PACKAGE_STRING='notify-sharp 3.0.3'
581PACKAGE_BUGREPORT=''
582PACKAGE_URL=''
583
584ac_unique_file="src/Global.cs"
585ac_subst_vars='LTLIBOBJS
586LIBOBJS
587DBUS_SHARP_LIBS
588DBUS_SHARP_CFLAGS
589GTK_SHARP_LIBS
590GTK_SHARP_CFLAGS
591BUILD_DOCS_FALSE
592BUILD_DOCS_TRUE
593DOCDIR
594MDASSEMBLER
595MONODOCER
596MONODOC_LIBS
597MONODOC_CFLAGS
598GACUTIL
599GMCS
600MONO_LIBS
601MONO_CFLAGS
602PKG_CONFIG_LIBDIR
603PKG_CONFIG_PATH
604PKG_CONFIG
605MAINT
606MAINTAINER_MODE_FALSE
607MAINTAINER_MODE_TRUE
608AM_BACKSLASH
609AM_DEFAULT_VERBOSITY
610AM_DEFAULT_V
611AM_V
612am__untar
613am__tar
614AMTAR
615am__leading_dot
616SET_MAKE
617AWK
618mkdir_p
619MKDIR_P
620INSTALL_STRIP_PROGRAM
621STRIP
622install_sh
623MAKEINFO
624AUTOHEADER
625AUTOMAKE
626AUTOCONF
627ACLOCAL
628PACKAGE
629CYGPATH_W
630am__isrc
631INSTALL_DATA
632INSTALL_SCRIPT
633INSTALL_PROGRAM
634VERSION
635API_VERSION
636target_os
637target_vendor
638target_cpu
639target
640host_os
641host_vendor
642host_cpu
643host
644build_os
645build_vendor
646build_cpu
647build
648target_alias
649host_alias
650build_alias
651LIBS
652ECHO_T
653ECHO_N
654ECHO_C
655DEFS
656mandir
657localedir
658libdir
659psdir
660pdfdir
661dvidir
662htmldir
663infodir
664docdir
665oldincludedir
666includedir
667localstatedir
668sharedstatedir
669sysconfdir
670datadir
671datarootdir
672libexecdir
673sbindir
674bindir
675program_transform_name
676prefix
677exec_prefix
678PACKAGE_URL
679PACKAGE_BUGREPORT
680PACKAGE_STRING
681PACKAGE_VERSION
682PACKAGE_TARNAME
683PACKAGE_NAME
684PATH_SEPARATOR
685SHELL'
686ac_subst_files=''
687ac_user_opts='
688enable_option_checking
689enable_silent_rules
690enable_maintainer_mode
691enable_docs
692'
693      ac_precious_vars='build_alias
694host_alias
695target_alias
696PKG_CONFIG
697PKG_CONFIG_PATH
698PKG_CONFIG_LIBDIR
699MONO_CFLAGS
700MONO_LIBS
701MONODOC_CFLAGS
702MONODOC_LIBS
703GTK_SHARP_CFLAGS
704GTK_SHARP_LIBS
705DBUS_SHARP_CFLAGS
706DBUS_SHARP_LIBS'
707
708
709# Initialize some variables set by options.
710ac_init_help=
711ac_init_version=false
712ac_unrecognized_opts=
713ac_unrecognized_sep=
714# The variables have the same names as the options, with
715# dashes changed to underlines.
716cache_file=/dev/null
717exec_prefix=NONE
718no_create=
719no_recursion=
720prefix=NONE
721program_prefix=NONE
722program_suffix=NONE
723program_transform_name=s,x,x,
724silent=
725site=
726srcdir=
727verbose=
728x_includes=NONE
729x_libraries=NONE
730
731# Installation directory options.
732# These are left unexpanded so users can "make install exec_prefix=/foo"
733# and all the variables that are supposed to be based on exec_prefix
734# by default will actually change.
735# Use braces instead of parens because sh, perl, etc. also accept them.
736# (The list follows the same order as the GNU Coding Standards.)
737bindir='${exec_prefix}/bin'
738sbindir='${exec_prefix}/sbin'
739libexecdir='${exec_prefix}/libexec'
740datarootdir='${prefix}/share'
741datadir='${datarootdir}'
742sysconfdir='${prefix}/etc'
743sharedstatedir='${prefix}/com'
744localstatedir='${prefix}/var'
745includedir='${prefix}/include'
746oldincludedir='/usr/include'
747docdir='${datarootdir}/doc/${PACKAGE_TARNAME}'
748infodir='${datarootdir}/info'
749htmldir='${docdir}'
750dvidir='${docdir}'
751pdfdir='${docdir}'
752psdir='${docdir}'
753libdir='${exec_prefix}/lib'
754localedir='${datarootdir}/locale'
755mandir='${datarootdir}/man'
756
757ac_prev=
758ac_dashdash=
759for ac_option
760do
761  # If the previous option needs an argument, assign it.
762  if test -n "$ac_prev"; then
763    eval $ac_prev=\$ac_option
764    ac_prev=
765    continue
766  fi
767
768  case $ac_option in
769  *=?*) ac_optarg=`expr "X$ac_option" : '[^=]*=\(.*\)'` ;;
770  *=)   ac_optarg= ;;
771  *)    ac_optarg=yes ;;
772  esac
773
774  # Accept the important Cygnus configure options, so we can diagnose typos.
775
776  case $ac_dashdash$ac_option in
777  --)
778    ac_dashdash=yes ;;
779
780  -bindir | --bindir | --bindi | --bind | --bin | --bi)
781    ac_prev=bindir ;;
782  -bindir=* | --bindir=* | --bindi=* | --bind=* | --bin=* | --bi=*)
783    bindir=$ac_optarg ;;
784
785  -build | --build | --buil | --bui | --bu)
786    ac_prev=build_alias ;;
787  -build=* | --build=* | --buil=* | --bui=* | --bu=*)
788    build_alias=$ac_optarg ;;
789
790  -cache-file | --cache-file | --cache-fil | --cache-fi \
791  | --cache-f | --cache- | --cache | --cach | --cac | --ca | --c)
792    ac_prev=cache_file ;;
793  -cache-file=* | --cache-file=* | --cache-fil=* | --cache-fi=* \
794  | --cache-f=* | --cache-=* | --cache=* | --cach=* | --cac=* | --ca=* | --c=*)
795    cache_file=$ac_optarg ;;
796
797  --config-cache | -C)
798    cache_file=config.cache ;;
799
800  -datadir | --datadir | --datadi | --datad)
801    ac_prev=datadir ;;
802  -datadir=* | --datadir=* | --datadi=* | --datad=*)
803    datadir=$ac_optarg ;;
804
805  -datarootdir | --datarootdir | --datarootdi | --datarootd | --dataroot \
806  | --dataroo | --dataro | --datar)
807    ac_prev=datarootdir ;;
808  -datarootdir=* | --datarootdir=* | --datarootdi=* | --datarootd=* \
809  | --dataroot=* | --dataroo=* | --dataro=* | --datar=*)
810    datarootdir=$ac_optarg ;;
811
812  -disable-* | --disable-*)
813    ac_useropt=`expr "x$ac_option" : 'x-*disable-\(.*\)'`
814    # Reject names that are not valid shell variable names.
815    expr "x$ac_useropt" : ".*[^-+._$as_cr_alnum]" >/dev/null &&
816      as_fn_error $? "invalid feature name: $ac_useropt"
817    ac_useropt_orig=$ac_useropt
818    ac_useropt=`$as_echo "$ac_useropt" | sed 's/[-+.]/_/g'`
819    case $ac_user_opts in
820      *"
821"enable_$ac_useropt"
822"*) ;;
823      *) ac_unrecognized_opts="$ac_unrecognized_opts$ac_unrecognized_sep--disable-$ac_useropt_orig"
824	 ac_unrecognized_sep=', ';;
825    esac
826    eval enable_$ac_useropt=no ;;
827
828  -docdir | --docdir | --docdi | --doc | --do)
829    ac_prev=docdir ;;
830  -docdir=* | --docdir=* | --docdi=* | --doc=* | --do=*)
831    docdir=$ac_optarg ;;
832
833  -dvidir | --dvidir | --dvidi | --dvid | --dvi | --dv)
834    ac_prev=dvidir ;;
835  -dvidir=* | --dvidir=* | --dvidi=* | --dvid=* | --dvi=* | --dv=*)
836    dvidir=$ac_optarg ;;
837
838  -enable-* | --enable-*)
839    ac_useropt=`expr "x$ac_option" : 'x-*enable-\([^=]*\)'`
840    # Reject names that are not valid shell variable names.
841    expr "x$ac_useropt" : ".*[^-+._$as_cr_alnum]" >/dev/null &&
842      as_fn_error $? "invalid feature name: $ac_useropt"
843    ac_useropt_orig=$ac_useropt
844    ac_useropt=`$as_echo "$ac_useropt" | sed 's/[-+.]/_/g'`
845    case $ac_user_opts in
846      *"
847"enable_$ac_useropt"
848"*) ;;
849      *) ac_unrecognized_opts="$ac_unrecognized_opts$ac_unrecognized_sep--enable-$ac_useropt_orig"
850	 ac_unrecognized_sep=', ';;
851    esac
852    eval enable_$ac_useropt=\$ac_optarg ;;
853
854  -exec-prefix | --exec_prefix | --exec-prefix | --exec-prefi \
855  | --exec-pref | --exec-pre | --exec-pr | --exec-p | --exec- \
856  | --exec | --exe | --ex)
857    ac_prev=exec_prefix ;;
858  -exec-prefix=* | --exec_prefix=* | --exec-prefix=* | --exec-prefi=* \
859  | --exec-pref=* | --exec-pre=* | --exec-pr=* | --exec-p=* | --exec-=* \
860  | --exec=* | --exe=* | --ex=*)
861    exec_prefix=$ac_optarg ;;
862
863  -gas | --gas | --ga | --g)
864    # Obsolete; use --with-gas.
865    with_gas=yes ;;
866
867  -help | --help | --hel | --he | -h)
868    ac_init_help=long ;;
869  -help=r* | --help=r* | --hel=r* | --he=r* | -hr*)
870    ac_init_help=recursive ;;
871  -help=s* | --help=s* | --hel=s* | --he=s* | -hs*)
872    ac_init_help=short ;;
873
874  -host | --host | --hos | --ho)
875    ac_prev=host_alias ;;
876  -host=* | --host=* | --hos=* | --ho=*)
877    host_alias=$ac_optarg ;;
878
879  -htmldir | --htmldir | --htmldi | --htmld | --html | --htm | --ht)
880    ac_prev=htmldir ;;
881  -htmldir=* | --htmldir=* | --htmldi=* | --htmld=* | --html=* | --htm=* \
882  | --ht=*)
883    htmldir=$ac_optarg ;;
884
885  -includedir | --includedir | --includedi | --included | --include \
886  | --includ | --inclu | --incl | --inc)
887    ac_prev=includedir ;;
888  -includedir=* | --includedir=* | --includedi=* | --included=* | --include=* \
889  | --includ=* | --inclu=* | --incl=* | --inc=*)
890    includedir=$ac_optarg ;;
891
892  -infodir | --infodir | --infodi | --infod | --info | --inf)
893    ac_prev=infodir ;;
894  -infodir=* | --infodir=* | --infodi=* | --infod=* | --info=* | --inf=*)
895    infodir=$ac_optarg ;;
896
897  -libdir | --libdir | --libdi | --libd)
898    ac_prev=libdir ;;
899  -libdir=* | --libdir=* | --libdi=* | --libd=*)
900    libdir=$ac_optarg ;;
901
902  -libexecdir | --libexecdir | --libexecdi | --libexecd | --libexec \
903  | --libexe | --libex | --libe)
904    ac_prev=libexecdir ;;
905  -libexecdir=* | --libexecdir=* | --libexecdi=* | --libexecd=* | --libexec=* \
906  | --libexe=* | --libex=* | --libe=*)
907    libexecdir=$ac_optarg ;;
908
909  -localedir | --localedir | --localedi | --localed | --locale)
910    ac_prev=localedir ;;
911  -localedir=* | --localedir=* | --localedi=* | --localed=* | --locale=*)
912    localedir=$ac_optarg ;;
913
914  -localstatedir | --localstatedir | --localstatedi | --localstated \
915  | --localstate | --localstat | --localsta | --localst | --locals)
916    ac_prev=localstatedir ;;
917  -localstatedir=* | --localstatedir=* | --localstatedi=* | --localstated=* \
918  | --localstate=* | --localstat=* | --localsta=* | --localst=* | --locals=*)
919    localstatedir=$ac_optarg ;;
920
921  -mandir | --mandir | --mandi | --mand | --man | --ma | --m)
922    ac_prev=mandir ;;
923  -mandir=* | --mandir=* | --mandi=* | --mand=* | --man=* | --ma=* | --m=*)
924    mandir=$ac_optarg ;;
925
926  -nfp | --nfp | --nf)
927    # Obsolete; use --without-fp.
928    with_fp=no ;;
929
930  -no-create | --no-create | --no-creat | --no-crea | --no-cre \
931  | --no-cr | --no-c | -n)
932    no_create=yes ;;
933
934  -no-recursion | --no-recursion | --no-recursio | --no-recursi \
935  | --no-recurs | --no-recur | --no-recu | --no-rec | --no-re | --no-r)
936    no_recursion=yes ;;
937
938  -oldincludedir | --oldincludedir | --oldincludedi | --oldincluded \
939  | --oldinclude | --oldinclud | --oldinclu | --oldincl | --oldinc \
940  | --oldin | --oldi | --old | --ol | --o)
941    ac_prev=oldincludedir ;;
942  -oldincludedir=* | --oldincludedir=* | --oldincludedi=* | --oldincluded=* \
943  | --oldinclude=* | --oldinclud=* | --oldinclu=* | --oldincl=* | --oldinc=* \
944  | --oldin=* | --oldi=* | --old=* | --ol=* | --o=*)
945    oldincludedir=$ac_optarg ;;
946
947  -prefix | --prefix | --prefi | --pref | --pre | --pr | --p)
948    ac_prev=prefix ;;
949  -prefix=* | --prefix=* | --prefi=* | --pref=* | --pre=* | --pr=* | --p=*)
950    prefix=$ac_optarg ;;
951
952  -program-prefix | --program-prefix | --program-prefi | --program-pref \
953  | --program-pre | --program-pr | --program-p)
954    ac_prev=program_prefix ;;
955  -program-prefix=* | --program-prefix=* | --program-prefi=* \
956  | --program-pref=* | --program-pre=* | --program-pr=* | --program-p=*)
957    program_prefix=$ac_optarg ;;
958
959  -program-suffix | --program-suffix | --program-suffi | --program-suff \
960  | --program-suf | --program-su | --program-s)
961    ac_prev=program_suffix ;;
962  -program-suffix=* | --program-suffix=* | --program-suffi=* \
963  | --program-suff=* | --program-suf=* | --program-su=* | --program-s=*)
964    program_suffix=$ac_optarg ;;
965
966  -program-transform-name | --program-transform-name \
967  | --program-transform-nam | --program-transform-na \
968  | --program-transform-n | --program-transform- \
969  | --program-transform | --program-transfor \
970  | --program-transfo | --program-transf \
971  | --program-trans | --program-tran \
972  | --progr-tra | --program-tr | --program-t)
973    ac_prev=program_transform_name ;;
974  -program-transform-name=* | --program-transform-name=* \
975  | --program-transform-nam=* | --program-transform-na=* \
976  | --program-transform-n=* | --program-transform-=* \
977  | --program-transform=* | --program-transfor=* \
978  | --program-transfo=* | --program-transf=* \
979  | --program-trans=* | --program-tran=* \
980  | --progr-tra=* | --program-tr=* | --program-t=*)
981    program_transform_name=$ac_optarg ;;
982
983  -pdfdir | --pdfdir | --pdfdi | --pdfd | --pdf | --pd)
984    ac_prev=pdfdir ;;
985  -pdfdir=* | --pdfdir=* | --pdfdi=* | --pdfd=* | --pdf=* | --pd=*)
986    pdfdir=$ac_optarg ;;
987
988  -psdir | --psdir | --psdi | --psd | --ps)
989    ac_prev=psdir ;;
990  -psdir=* | --psdir=* | --psdi=* | --psd=* | --ps=*)
991    psdir=$ac_optarg ;;
992
993  -q | -quiet | --quiet | --quie | --qui | --qu | --q \
994  | -silent | --silent | --silen | --sile | --sil)
995    silent=yes ;;
996
997  -sbindir | --sbindir | --sbindi | --sbind | --sbin | --sbi | --sb)
998    ac_prev=sbindir ;;
999  -sbindir=* | --sbindir=* | --sbindi=* | --sbind=* | --sbin=* \
1000  | --sbi=* | --sb=*)
1001    sbindir=$ac_optarg ;;
1002
1003  -sharedstatedir | --sharedstatedir | --sharedstatedi \
1004  | --sharedstated | --sharedstate | --sharedstat | --sharedsta \
1005  | --sharedst | --shareds | --shared | --share | --shar \
1006  | --sha | --sh)
1007    ac_prev=sharedstatedir ;;
1008  -sharedstatedir=* | --sharedstatedir=* | --sharedstatedi=* \
1009  | --sharedstated=* | --sharedstate=* | --sharedstat=* | --sharedsta=* \
1010  | --sharedst=* | --shareds=* | --shared=* | --share=* | --shar=* \
1011  | --sha=* | --sh=*)
1012    sharedstatedir=$ac_optarg ;;
1013
1014  -site | --site | --sit)
1015    ac_prev=site ;;
1016  -site=* | --site=* | --sit=*)
1017    site=$ac_optarg ;;
1018
1019  -srcdir | --srcdir | --srcdi | --srcd | --src | --sr)
1020    ac_prev=srcdir ;;
1021  -srcdir=* | --srcdir=* | --srcdi=* | --srcd=* | --src=* | --sr=*)
1022    srcdir=$ac_optarg ;;
1023
1024  -sysconfdir | --sysconfdir | --sysconfdi | --sysconfd | --sysconf \
1025  | --syscon | --sysco | --sysc | --sys | --sy)
1026    ac_prev=sysconfdir ;;
1027  -sysconfdir=* | --sysconfdir=* | --sysconfdi=* | --sysconfd=* | --sysconf=* \
1028  | --syscon=* | --sysco=* | --sysc=* | --sys=* | --sy=*)
1029    sysconfdir=$ac_optarg ;;
1030
1031  -target | --target | --targe | --targ | --tar | --ta | --t)
1032    ac_prev=target_alias ;;
1033  -target=* | --target=* | --targe=* | --targ=* | --tar=* | --ta=* | --t=*)
1034    target_alias=$ac_optarg ;;
1035
1036  -v | -verbose | --verbose | --verbos | --verbo | --verb)
1037    verbose=yes ;;
1038
1039  -version | --version | --versio | --versi | --vers | -V)
1040    ac_init_version=: ;;
1041
1042  -with-* | --with-*)
1043    ac_useropt=`expr "x$ac_option" : 'x-*with-\([^=]*\)'`
1044    # Reject names that are not valid shell variable names.
1045    expr "x$ac_useropt" : ".*[^-+._$as_cr_alnum]" >/dev/null &&
1046      as_fn_error $? "invalid package name: $ac_useropt"
1047    ac_useropt_orig=$ac_useropt
1048    ac_useropt=`$as_echo "$ac_useropt" | sed 's/[-+.]/_/g'`
1049    case $ac_user_opts in
1050      *"
1051"with_$ac_useropt"
1052"*) ;;
1053      *) ac_unrecognized_opts="$ac_unrecognized_opts$ac_unrecognized_sep--with-$ac_useropt_orig"
1054	 ac_unrecognized_sep=', ';;
1055    esac
1056    eval with_$ac_useropt=\$ac_optarg ;;
1057
1058  -without-* | --without-*)
1059    ac_useropt=`expr "x$ac_option" : 'x-*without-\(.*\)'`
1060    # Reject names that are not valid shell variable names.
1061    expr "x$ac_useropt" : ".*[^-+._$as_cr_alnum]" >/dev/null &&
1062      as_fn_error $? "invalid package name: $ac_useropt"
1063    ac_useropt_orig=$ac_useropt
1064    ac_useropt=`$as_echo "$ac_useropt" | sed 's/[-+.]/_/g'`
1065    case $ac_user_opts in
1066      *"
1067"with_$ac_useropt"
1068"*) ;;
1069      *) ac_unrecognized_opts="$ac_unrecognized_opts$ac_unrecognized_sep--without-$ac_useropt_orig"
1070	 ac_unrecognized_sep=', ';;
1071    esac
1072    eval with_$ac_useropt=no ;;
1073
1074  --x)
1075    # Obsolete; use --with-x.
1076    with_x=yes ;;
1077
1078  -x-includes | --x-includes | --x-include | --x-includ | --x-inclu \
1079  | --x-incl | --x-inc | --x-in | --x-i)
1080    ac_prev=x_includes ;;
1081  -x-includes=* | --x-includes=* | --x-include=* | --x-includ=* | --x-inclu=* \
1082  | --x-incl=* | --x-inc=* | --x-in=* | --x-i=*)
1083    x_includes=$ac_optarg ;;
1084
1085  -x-libraries | --x-libraries | --x-librarie | --x-librari \
1086  | --x-librar | --x-libra | --x-libr | --x-lib | --x-li | --x-l)
1087    ac_prev=x_libraries ;;
1088  -x-libraries=* | --x-libraries=* | --x-librarie=* | --x-librari=* \
1089  | --x-librar=* | --x-libra=* | --x-libr=* | --x-lib=* | --x-li=* | --x-l=*)
1090    x_libraries=$ac_optarg ;;
1091
1092  -*) as_fn_error $? "unrecognized option: \`$ac_option'
1093Try \`$0 --help' for more information"
1094    ;;
1095
1096  *=*)
1097    ac_envvar=`expr "x$ac_option" : 'x\([^=]*\)='`
1098    # Reject names that are not valid shell variable names.
1099    case $ac_envvar in #(
1100      '' | [0-9]* | *[!_$as_cr_alnum]* )
1101      as_fn_error $? "invalid variable name: \`$ac_envvar'" ;;
1102    esac
1103    eval $ac_envvar=\$ac_optarg
1104    export $ac_envvar ;;
1105
1106  *)
1107    # FIXME: should be removed in autoconf 3.0.
1108    $as_echo "$as_me: WARNING: you should use --build, --host, --target" >&2
1109    expr "x$ac_option" : ".*[^-._$as_cr_alnum]" >/dev/null &&
1110      $as_echo "$as_me: WARNING: invalid host type: $ac_option" >&2
1111    : "${build_alias=$ac_option} ${host_alias=$ac_option} ${target_alias=$ac_option}"
1112    ;;
1113
1114  esac
1115done
1116
1117if test -n "$ac_prev"; then
1118  ac_option=--`echo $ac_prev | sed 's/_/-/g'`
1119  as_fn_error $? "missing argument to $ac_option"
1120fi
1121
1122if test -n "$ac_unrecognized_opts"; then
1123  case $enable_option_checking in
1124    no) ;;
1125    fatal) as_fn_error $? "unrecognized options: $ac_unrecognized_opts" ;;
1126    *)     $as_echo "$as_me: WARNING: unrecognized options: $ac_unrecognized_opts" >&2 ;;
1127  esac
1128fi
1129
1130# Check all directory arguments for consistency.
1131for ac_var in	exec_prefix prefix bindir sbindir libexecdir datarootdir \
1132		datadir sysconfdir sharedstatedir localstatedir includedir \
1133		oldincludedir docdir infodir htmldir dvidir pdfdir psdir \
1134		libdir localedir mandir
1135do
1136  eval ac_val=\$$ac_var
1137  # Remove trailing slashes.
1138  case $ac_val in
1139    */ )
1140      ac_val=`expr "X$ac_val" : 'X\(.*[^/]\)' \| "X$ac_val" : 'X\(.*\)'`
1141      eval $ac_var=\$ac_val;;
1142  esac
1143  # Be sure to have absolute directory names.
1144  case $ac_val in
1145    [\\/$]* | ?:[\\/]* )  continue;;
1146    NONE | '' ) case $ac_var in *prefix ) continue;; esac;;
1147  esac
1148  as_fn_error $? "expected an absolute directory name for --$ac_var: $ac_val"
1149done
1150
1151# There might be people who depend on the old broken behavior: `$host'
1152# used to hold the argument of --host etc.
1153# FIXME: To remove some day.
1154build=$build_alias
1155host=$host_alias
1156target=$target_alias
1157
1158# FIXME: To remove some day.
1159if test "x$host_alias" != x; then
1160  if test "x$build_alias" = x; then
1161    cross_compiling=maybe
1162  elif test "x$build_alias" != "x$host_alias"; then
1163    cross_compiling=yes
1164  fi
1165fi
1166
1167ac_tool_prefix=
1168test -n "$host_alias" && ac_tool_prefix=$host_alias-
1169
1170test "$silent" = yes && exec 6>/dev/null
1171
1172
1173ac_pwd=`pwd` && test -n "$ac_pwd" &&
1174ac_ls_di=`ls -di .` &&
1175ac_pwd_ls_di=`cd "$ac_pwd" && ls -di .` ||
1176  as_fn_error $? "working directory cannot be determined"
1177test "X$ac_ls_di" = "X$ac_pwd_ls_di" ||
1178  as_fn_error $? "pwd does not report name of working directory"
1179
1180
1181# Find the source files, if location was not specified.
1182if test -z "$srcdir"; then
1183  ac_srcdir_defaulted=yes
1184  # Try the directory containing this script, then the parent directory.
1185  ac_confdir=`$as_dirname -- "$as_myself" ||
1186$as_expr X"$as_myself" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \
1187	 X"$as_myself" : 'X\(//\)[^/]' \| \
1188	 X"$as_myself" : 'X\(//\)$' \| \
1189	 X"$as_myself" : 'X\(/\)' \| . 2>/dev/null ||
1190$as_echo X"$as_myself" |
1191    sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{
1192	    s//\1/
1193	    q
1194	  }
1195	  /^X\(\/\/\)[^/].*/{
1196	    s//\1/
1197	    q
1198	  }
1199	  /^X\(\/\/\)$/{
1200	    s//\1/
1201	    q
1202	  }
1203	  /^X\(\/\).*/{
1204	    s//\1/
1205	    q
1206	  }
1207	  s/.*/./; q'`
1208  srcdir=$ac_confdir
1209  if test ! -r "$srcdir/$ac_unique_file"; then
1210    srcdir=..
1211  fi
1212else
1213  ac_srcdir_defaulted=no
1214fi
1215if test ! -r "$srcdir/$ac_unique_file"; then
1216  test "$ac_srcdir_defaulted" = yes && srcdir="$ac_confdir or .."
1217  as_fn_error $? "cannot find sources ($ac_unique_file) in $srcdir"
1218fi
1219ac_msg="sources are in $srcdir, but \`cd $srcdir' does not work"
1220ac_abs_confdir=`(
1221	cd "$srcdir" && test -r "./$ac_unique_file" || as_fn_error $? "$ac_msg"
1222	pwd)`
1223# When building in place, set srcdir=.
1224if test "$ac_abs_confdir" = "$ac_pwd"; then
1225  srcdir=.
1226fi
1227# Remove unnecessary trailing slashes from srcdir.
1228# Double slashes in file names in object file debugging info
1229# mess up M-x gdb in Emacs.
1230case $srcdir in
1231*/) srcdir=`expr "X$srcdir" : 'X\(.*[^/]\)' \| "X$srcdir" : 'X\(.*\)'`;;
1232esac
1233for ac_var in $ac_precious_vars; do
1234  eval ac_env_${ac_var}_set=\${${ac_var}+set}
1235  eval ac_env_${ac_var}_value=\$${ac_var}
1236  eval ac_cv_env_${ac_var}_set=\${${ac_var}+set}
1237  eval ac_cv_env_${ac_var}_value=\$${ac_var}
1238done
1239
1240#
1241# Report the --help message.
1242#
1243if test "$ac_init_help" = "long"; then
1244  # Omit some internal or obsolete options to make the list less imposing.
1245  # This message is too long to be a string in the A/UX 3.1 sh.
1246  cat <<_ACEOF
1247\`configure' configures notify-sharp 3.0.3 to adapt to many kinds of systems.
1248
1249Usage: $0 [OPTION]... [VAR=VALUE]...
1250
1251To assign environment variables (e.g., CC, CFLAGS...), specify them as
1252VAR=VALUE.  See below for descriptions of some of the useful variables.
1253
1254Defaults for the options are specified in brackets.
1255
1256Configuration:
1257  -h, --help              display this help and exit
1258      --help=short        display options specific to this package
1259      --help=recursive    display the short help of all the included packages
1260  -V, --version           display version information and exit
1261  -q, --quiet, --silent   do not print \`checking ...' messages
1262      --cache-file=FILE   cache test results in FILE [disabled]
1263  -C, --config-cache      alias for \`--cache-file=config.cache'
1264  -n, --no-create         do not create output files
1265      --srcdir=DIR        find the sources in DIR [configure dir or \`..']
1266
1267Installation directories:
1268  --prefix=PREFIX         install architecture-independent files in PREFIX
1269                          [$ac_default_prefix]
1270  --exec-prefix=EPREFIX   install architecture-dependent files in EPREFIX
1271                          [PREFIX]
1272
1273By default, \`make install' will install all the files in
1274\`$ac_default_prefix/bin', \`$ac_default_prefix/lib' etc.  You can specify
1275an installation prefix other than \`$ac_default_prefix' using \`--prefix',
1276for instance \`--prefix=\$HOME'.
1277
1278For better control, use the options below.
1279
1280Fine tuning of the installation directories:
1281  --bindir=DIR            user executables [EPREFIX/bin]
1282  --sbindir=DIR           system admin executables [EPREFIX/sbin]
1283  --libexecdir=DIR        program executables [EPREFIX/libexec]
1284  --sysconfdir=DIR        read-only single-machine data [PREFIX/etc]
1285  --sharedstatedir=DIR    modifiable architecture-independent data [PREFIX/com]
1286  --localstatedir=DIR     modifiable single-machine data [PREFIX/var]
1287  --libdir=DIR            object code libraries [EPREFIX/lib]
1288  --includedir=DIR        C header files [PREFIX/include]
1289  --oldincludedir=DIR     C header files for non-gcc [/usr/include]
1290  --datarootdir=DIR       read-only arch.-independent data root [PREFIX/share]
1291  --datadir=DIR           read-only architecture-independent data [DATAROOTDIR]
1292  --infodir=DIR           info documentation [DATAROOTDIR/info]
1293  --localedir=DIR         locale-dependent data [DATAROOTDIR/locale]
1294  --mandir=DIR            man documentation [DATAROOTDIR/man]
1295  --docdir=DIR            documentation root [DATAROOTDIR/doc/notify-sharp]
1296  --htmldir=DIR           html documentation [DOCDIR]
1297  --dvidir=DIR            dvi documentation [DOCDIR]
1298  --pdfdir=DIR            pdf documentation [DOCDIR]
1299  --psdir=DIR             ps documentation [DOCDIR]
1300_ACEOF
1301
1302  cat <<\_ACEOF
1303
1304Program names:
1305  --program-prefix=PREFIX            prepend PREFIX to installed program names
1306  --program-suffix=SUFFIX            append SUFFIX to installed program names
1307  --program-transform-name=PROGRAM   run sed PROGRAM on installed program names
1308
1309System types:
1310  --build=BUILD     configure for building on BUILD [guessed]
1311  --host=HOST       cross-compile to build programs to run on HOST [BUILD]
1312  --target=TARGET   configure for building compilers for TARGET [HOST]
1313_ACEOF
1314fi
1315
1316if test -n "$ac_init_help"; then
1317  case $ac_init_help in
1318     short | recursive ) echo "Configuration of notify-sharp 3.0.3:";;
1319   esac
1320  cat <<\_ACEOF
1321
1322Optional Features:
1323  --disable-option-checking  ignore unrecognized --enable/--with options
1324  --disable-FEATURE       do not include FEATURE (same as --enable-FEATURE=no)
1325  --enable-FEATURE[=ARG]  include FEATURE [ARG=yes]
1326  --enable-silent-rules   less verbose build output (undo: "make V=1")
1327  --disable-silent-rules  verbose build output (undo: "make V=0")
1328  --enable-maintainer-mode
1329                          enable make rules and dependencies not useful (and
1330                          sometimes confusing) to the casual installer
1331  --disable-docs          Do not build documentation
1332
1333Some influential environment variables:
1334  PKG_CONFIG  path to pkg-config utility
1335  PKG_CONFIG_PATH
1336              directories to add to pkg-config's search path
1337  PKG_CONFIG_LIBDIR
1338              path overriding pkg-config's built-in search path
1339  MONO_CFLAGS C compiler flags for MONO, overriding pkg-config
1340  MONO_LIBS   linker flags for MONO, overriding pkg-config
1341  MONODOC_CFLAGS
1342              C compiler flags for MONODOC, overriding pkg-config
1343  MONODOC_LIBS
1344              linker flags for MONODOC, overriding pkg-config
1345  GTK_SHARP_CFLAGS
1346              C compiler flags for GTK_SHARP, overriding pkg-config
1347  GTK_SHARP_LIBS
1348              linker flags for GTK_SHARP, overriding pkg-config
1349  DBUS_SHARP_CFLAGS
1350              C compiler flags for DBUS_SHARP, overriding pkg-config
1351  DBUS_SHARP_LIBS
1352              linker flags for DBUS_SHARP, overriding pkg-config
1353
1354Use these variables to override the choices made by `configure' or to help
1355it to find libraries and programs with nonstandard names/locations.
1356
1357Report bugs to the package provider.
1358_ACEOF
1359ac_status=$?
1360fi
1361
1362if test "$ac_init_help" = "recursive"; then
1363  # If there are subdirs, report their specific --help.
1364  for ac_dir in : $ac_subdirs_all; do test "x$ac_dir" = x: && continue
1365    test -d "$ac_dir" ||
1366      { cd "$srcdir" && ac_pwd=`pwd` && srcdir=. && test -d "$ac_dir"; } ||
1367      continue
1368    ac_builddir=.
1369
1370case "$ac_dir" in
1371.) ac_dir_suffix= ac_top_builddir_sub=. ac_top_build_prefix= ;;
1372*)
1373  ac_dir_suffix=/`$as_echo "$ac_dir" | sed 's|^\.[\\/]||'`
1374  # A ".." for each directory in $ac_dir_suffix.
1375  ac_top_builddir_sub=`$as_echo "$ac_dir_suffix" | sed 's|/[^\\/]*|/..|g;s|/||'`
1376  case $ac_top_builddir_sub in
1377  "") ac_top_builddir_sub=. ac_top_build_prefix= ;;
1378  *)  ac_top_build_prefix=$ac_top_builddir_sub/ ;;
1379  esac ;;
1380esac
1381ac_abs_top_builddir=$ac_pwd
1382ac_abs_builddir=$ac_pwd$ac_dir_suffix
1383# for backward compatibility:
1384ac_top_builddir=$ac_top_build_prefix
1385
1386case $srcdir in
1387  .)  # We are building in place.
1388    ac_srcdir=.
1389    ac_top_srcdir=$ac_top_builddir_sub
1390    ac_abs_top_srcdir=$ac_pwd ;;
1391  [\\/]* | ?:[\\/]* )  # Absolute name.
1392    ac_srcdir=$srcdir$ac_dir_suffix;
1393    ac_top_srcdir=$srcdir
1394    ac_abs_top_srcdir=$srcdir ;;
1395  *) # Relative name.
1396    ac_srcdir=$ac_top_build_prefix$srcdir$ac_dir_suffix
1397    ac_top_srcdir=$ac_top_build_prefix$srcdir
1398    ac_abs_top_srcdir=$ac_pwd/$srcdir ;;
1399esac
1400ac_abs_srcdir=$ac_abs_top_srcdir$ac_dir_suffix
1401
1402    cd "$ac_dir" || { ac_status=$?; continue; }
1403    # Check for guested configure.
1404    if test -f "$ac_srcdir/configure.gnu"; then
1405      echo &&
1406      $SHELL "$ac_srcdir/configure.gnu" --help=recursive
1407    elif test -f "$ac_srcdir/configure"; then
1408      echo &&
1409      $SHELL "$ac_srcdir/configure" --help=recursive
1410    else
1411      $as_echo "$as_me: WARNING: no configuration information is in $ac_dir" >&2
1412    fi || ac_status=$?
1413    cd "$ac_pwd" || { ac_status=$?; break; }
1414  done
1415fi
1416
1417test -n "$ac_init_help" && exit $ac_status
1418if $ac_init_version; then
1419  cat <<\_ACEOF
1420notify-sharp configure 3.0.3
1421generated by GNU Autoconf 2.69
1422
1423Copyright (C) 2012 Free Software Foundation, Inc.
1424This configure script is free software; the Free Software Foundation
1425gives unlimited permission to copy, distribute and modify it.
1426_ACEOF
1427  exit
1428fi
1429
1430## ------------------------ ##
1431## Autoconf initialization. ##
1432## ------------------------ ##
1433cat >config.log <<_ACEOF
1434This file contains any messages produced by compilers while
1435running configure, to aid debugging if configure makes a mistake.
1436
1437It was created by notify-sharp $as_me 3.0.3, which was
1438generated by GNU Autoconf 2.69.  Invocation command line was
1439
1440  $ $0 $@
1441
1442_ACEOF
1443exec 5>>config.log
1444{
1445cat <<_ASUNAME
1446## --------- ##
1447## Platform. ##
1448## --------- ##
1449
1450hostname = `(hostname || uname -n) 2>/dev/null | sed 1q`
1451uname -m = `(uname -m) 2>/dev/null || echo unknown`
1452uname -r = `(uname -r) 2>/dev/null || echo unknown`
1453uname -s = `(uname -s) 2>/dev/null || echo unknown`
1454uname -v = `(uname -v) 2>/dev/null || echo unknown`
1455
1456/usr/bin/uname -p = `(/usr/bin/uname -p) 2>/dev/null || echo unknown`
1457/bin/uname -X     = `(/bin/uname -X) 2>/dev/null     || echo unknown`
1458
1459/bin/arch              = `(/bin/arch) 2>/dev/null              || echo unknown`
1460/usr/bin/arch -k       = `(/usr/bin/arch -k) 2>/dev/null       || echo unknown`
1461/usr/convex/getsysinfo = `(/usr/convex/getsysinfo) 2>/dev/null || echo unknown`
1462/usr/bin/hostinfo      = `(/usr/bin/hostinfo) 2>/dev/null      || echo unknown`
1463/bin/machine           = `(/bin/machine) 2>/dev/null           || echo unknown`
1464/usr/bin/oslevel       = `(/usr/bin/oslevel) 2>/dev/null       || echo unknown`
1465/bin/universe          = `(/bin/universe) 2>/dev/null          || echo unknown`
1466
1467_ASUNAME
1468
1469as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
1470for as_dir in $PATH
1471do
1472  IFS=$as_save_IFS
1473  test -z "$as_dir" && as_dir=.
1474    $as_echo "PATH: $as_dir"
1475  done
1476IFS=$as_save_IFS
1477
1478} >&5
1479
1480cat >&5 <<_ACEOF
1481
1482
1483## ----------- ##
1484## Core tests. ##
1485## ----------- ##
1486
1487_ACEOF
1488
1489
1490# Keep a trace of the command line.
1491# Strip out --no-create and --no-recursion so they do not pile up.
1492# Strip out --silent because we don't want to record it for future runs.
1493# Also quote any args containing shell meta-characters.
1494# Make two passes to allow for proper duplicate-argument suppression.
1495ac_configure_args=
1496ac_configure_args0=
1497ac_configure_args1=
1498ac_must_keep_next=false
1499for ac_pass in 1 2
1500do
1501  for ac_arg
1502  do
1503    case $ac_arg in
1504    -no-create | --no-c* | -n | -no-recursion | --no-r*) continue ;;
1505    -q | -quiet | --quiet | --quie | --qui | --qu | --q \
1506    | -silent | --silent | --silen | --sile | --sil)
1507      continue ;;
1508    *\'*)
1509      ac_arg=`$as_echo "$ac_arg" | sed "s/'/'\\\\\\\\''/g"` ;;
1510    esac
1511    case $ac_pass in
1512    1) as_fn_append ac_configure_args0 " '$ac_arg'" ;;
1513    2)
1514      as_fn_append ac_configure_args1 " '$ac_arg'"
1515      if test $ac_must_keep_next = true; then
1516	ac_must_keep_next=false # Got value, back to normal.
1517      else
1518	case $ac_arg in
1519	  *=* | --config-cache | -C | -disable-* | --disable-* \
1520	  | -enable-* | --enable-* | -gas | --g* | -nfp | --nf* \
1521	  | -q | -quiet | --q* | -silent | --sil* | -v | -verb* \
1522	  | -with-* | --with-* | -without-* | --without-* | --x)
1523	    case "$ac_configure_args0 " in
1524	      "$ac_configure_args1"*" '$ac_arg' "* ) continue ;;
1525	    esac
1526	    ;;
1527	  -* ) ac_must_keep_next=true ;;
1528	esac
1529      fi
1530      as_fn_append ac_configure_args " '$ac_arg'"
1531      ;;
1532    esac
1533  done
1534done
1535{ ac_configure_args0=; unset ac_configure_args0;}
1536{ ac_configure_args1=; unset ac_configure_args1;}
1537
1538# When interrupted or exit'd, cleanup temporary files, and complete
1539# config.log.  We remove comments because anyway the quotes in there
1540# would cause problems or look ugly.
1541# WARNING: Use '\'' to represent an apostrophe within the trap.
1542# WARNING: Do not start the trap code with a newline, due to a FreeBSD 4.0 bug.
1543trap 'exit_status=$?
1544  # Save into config.log some information that might help in debugging.
1545  {
1546    echo
1547
1548    $as_echo "## ---------------- ##
1549## Cache variables. ##
1550## ---------------- ##"
1551    echo
1552    # The following way of writing the cache mishandles newlines in values,
1553(
1554  for ac_var in `(set) 2>&1 | sed -n '\''s/^\([a-zA-Z_][a-zA-Z0-9_]*\)=.*/\1/p'\''`; do
1555    eval ac_val=\$$ac_var
1556    case $ac_val in #(
1557    *${as_nl}*)
1558      case $ac_var in #(
1559      *_cv_*) { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: cache variable $ac_var contains a newline" >&5
1560$as_echo "$as_me: WARNING: cache variable $ac_var contains a newline" >&2;} ;;
1561      esac
1562      case $ac_var in #(
1563      _ | IFS | as_nl) ;; #(
1564      BASH_ARGV | BASH_SOURCE) eval $ac_var= ;; #(
1565      *) { eval $ac_var=; unset $ac_var;} ;;
1566      esac ;;
1567    esac
1568  done
1569  (set) 2>&1 |
1570    case $as_nl`(ac_space='\'' '\''; set) 2>&1` in #(
1571    *${as_nl}ac_space=\ *)
1572      sed -n \
1573	"s/'\''/'\''\\\\'\'''\''/g;
1574	  s/^\\([_$as_cr_alnum]*_cv_[_$as_cr_alnum]*\\)=\\(.*\\)/\\1='\''\\2'\''/p"
1575      ;; #(
1576    *)
1577      sed -n "/^[_$as_cr_alnum]*_cv_[_$as_cr_alnum]*=/p"
1578      ;;
1579    esac |
1580    sort
1581)
1582    echo
1583
1584    $as_echo "## ----------------- ##
1585## Output variables. ##
1586## ----------------- ##"
1587    echo
1588    for ac_var in $ac_subst_vars
1589    do
1590      eval ac_val=\$$ac_var
1591      case $ac_val in
1592      *\'\''*) ac_val=`$as_echo "$ac_val" | sed "s/'\''/'\''\\\\\\\\'\'''\''/g"`;;
1593      esac
1594      $as_echo "$ac_var='\''$ac_val'\''"
1595    done | sort
1596    echo
1597
1598    if test -n "$ac_subst_files"; then
1599      $as_echo "## ------------------- ##
1600## File substitutions. ##
1601## ------------------- ##"
1602      echo
1603      for ac_var in $ac_subst_files
1604      do
1605	eval ac_val=\$$ac_var
1606	case $ac_val in
1607	*\'\''*) ac_val=`$as_echo "$ac_val" | sed "s/'\''/'\''\\\\\\\\'\'''\''/g"`;;
1608	esac
1609	$as_echo "$ac_var='\''$ac_val'\''"
1610      done | sort
1611      echo
1612    fi
1613
1614    if test -s confdefs.h; then
1615      $as_echo "## ----------- ##
1616## confdefs.h. ##
1617## ----------- ##"
1618      echo
1619      cat confdefs.h
1620      echo
1621    fi
1622    test "$ac_signal" != 0 &&
1623      $as_echo "$as_me: caught signal $ac_signal"
1624    $as_echo "$as_me: exit $exit_status"
1625  } >&5
1626  rm -f core *.core core.conftest.* &&
1627    rm -f -r conftest* confdefs* conf$$* $ac_clean_files &&
1628    exit $exit_status
1629' 0
1630for ac_signal in 1 2 13 15; do
1631  trap 'ac_signal='$ac_signal'; as_fn_exit 1' $ac_signal
1632done
1633ac_signal=0
1634
1635# confdefs.h avoids OS command line length limits that DEFS can exceed.
1636rm -f -r conftest* confdefs.h
1637
1638$as_echo "/* confdefs.h */" > confdefs.h
1639
1640# Predefined preprocessor variables.
1641
1642cat >>confdefs.h <<_ACEOF
1643#define PACKAGE_NAME "$PACKAGE_NAME"
1644_ACEOF
1645
1646cat >>confdefs.h <<_ACEOF
1647#define PACKAGE_TARNAME "$PACKAGE_TARNAME"
1648_ACEOF
1649
1650cat >>confdefs.h <<_ACEOF
1651#define PACKAGE_VERSION "$PACKAGE_VERSION"
1652_ACEOF
1653
1654cat >>confdefs.h <<_ACEOF
1655#define PACKAGE_STRING "$PACKAGE_STRING"
1656_ACEOF
1657
1658cat >>confdefs.h <<_ACEOF
1659#define PACKAGE_BUGREPORT "$PACKAGE_BUGREPORT"
1660_ACEOF
1661
1662cat >>confdefs.h <<_ACEOF
1663#define PACKAGE_URL "$PACKAGE_URL"
1664_ACEOF
1665
1666
1667# Let the site file select an alternate cache file if it wants to.
1668# Prefer an explicitly selected file to automatically selected ones.
1669ac_site_file1=NONE
1670ac_site_file2=NONE
1671if test -n "$CONFIG_SITE"; then
1672  # We do not want a PATH search for config.site.
1673  case $CONFIG_SITE in #((
1674    -*)  ac_site_file1=./$CONFIG_SITE;;
1675    */*) ac_site_file1=$CONFIG_SITE;;
1676    *)   ac_site_file1=./$CONFIG_SITE;;
1677  esac
1678elif test "x$prefix" != xNONE; then
1679  ac_site_file1=$prefix/share/config.site
1680  ac_site_file2=$prefix/etc/config.site
1681else
1682  ac_site_file1=$ac_default_prefix/share/config.site
1683  ac_site_file2=$ac_default_prefix/etc/config.site
1684fi
1685for ac_site_file in "$ac_site_file1" "$ac_site_file2"
1686do
1687  test "x$ac_site_file" = xNONE && continue
1688  if test /dev/null != "$ac_site_file" && test -r "$ac_site_file"; then
1689    { $as_echo "$as_me:${as_lineno-$LINENO}: loading site script $ac_site_file" >&5
1690$as_echo "$as_me: loading site script $ac_site_file" >&6;}
1691    sed 's/^/| /' "$ac_site_file" >&5
1692    . "$ac_site_file" \
1693      || { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5
1694$as_echo "$as_me: error: in \`$ac_pwd':" >&2;}
1695as_fn_error $? "failed to load site script $ac_site_file
1696See \`config.log' for more details" "$LINENO" 5; }
1697  fi
1698done
1699
1700if test -r "$cache_file"; then
1701  # Some versions of bash will fail to source /dev/null (special files
1702  # actually), so we avoid doing that.  DJGPP emulates it as a regular file.
1703  if test /dev/null != "$cache_file" && test -f "$cache_file"; then
1704    { $as_echo "$as_me:${as_lineno-$LINENO}: loading cache $cache_file" >&5
1705$as_echo "$as_me: loading cache $cache_file" >&6;}
1706    case $cache_file in
1707      [\\/]* | ?:[\\/]* ) . "$cache_file";;
1708      *)                      . "./$cache_file";;
1709    esac
1710  fi
1711else
1712  { $as_echo "$as_me:${as_lineno-$LINENO}: creating cache $cache_file" >&5
1713$as_echo "$as_me: creating cache $cache_file" >&6;}
1714  >$cache_file
1715fi
1716
1717# Check that the precious variables saved in the cache have kept the same
1718# value.
1719ac_cache_corrupted=false
1720for ac_var in $ac_precious_vars; do
1721  eval ac_old_set=\$ac_cv_env_${ac_var}_set
1722  eval ac_new_set=\$ac_env_${ac_var}_set
1723  eval ac_old_val=\$ac_cv_env_${ac_var}_value
1724  eval ac_new_val=\$ac_env_${ac_var}_value
1725  case $ac_old_set,$ac_new_set in
1726    set,)
1727      { $as_echo "$as_me:${as_lineno-$LINENO}: error: \`$ac_var' was set to \`$ac_old_val' in the previous run" >&5
1728$as_echo "$as_me: error: \`$ac_var' was set to \`$ac_old_val' in the previous run" >&2;}
1729      ac_cache_corrupted=: ;;
1730    ,set)
1731      { $as_echo "$as_me:${as_lineno-$LINENO}: error: \`$ac_var' was not set in the previous run" >&5
1732$as_echo "$as_me: error: \`$ac_var' was not set in the previous run" >&2;}
1733      ac_cache_corrupted=: ;;
1734    ,);;
1735    *)
1736      if test "x$ac_old_val" != "x$ac_new_val"; then
1737	# differences in whitespace do not lead to failure.
1738	ac_old_val_w=`echo x $ac_old_val`
1739	ac_new_val_w=`echo x $ac_new_val`
1740	if test "$ac_old_val_w" != "$ac_new_val_w"; then
1741	  { $as_echo "$as_me:${as_lineno-$LINENO}: error: \`$ac_var' has changed since the previous run:" >&5
1742$as_echo "$as_me: error: \`$ac_var' has changed since the previous run:" >&2;}
1743	  ac_cache_corrupted=:
1744	else
1745	  { $as_echo "$as_me:${as_lineno-$LINENO}: warning: ignoring whitespace changes in \`$ac_var' since the previous run:" >&5
1746$as_echo "$as_me: warning: ignoring whitespace changes in \`$ac_var' since the previous run:" >&2;}
1747	  eval $ac_var=\$ac_old_val
1748	fi
1749	{ $as_echo "$as_me:${as_lineno-$LINENO}:   former value:  \`$ac_old_val'" >&5
1750$as_echo "$as_me:   former value:  \`$ac_old_val'" >&2;}
1751	{ $as_echo "$as_me:${as_lineno-$LINENO}:   current value: \`$ac_new_val'" >&5
1752$as_echo "$as_me:   current value: \`$ac_new_val'" >&2;}
1753      fi;;
1754  esac
1755  # Pass precious variables to config.status.
1756  if test "$ac_new_set" = set; then
1757    case $ac_new_val in
1758    *\'*) ac_arg=$ac_var=`$as_echo "$ac_new_val" | sed "s/'/'\\\\\\\\''/g"` ;;
1759    *) ac_arg=$ac_var=$ac_new_val ;;
1760    esac
1761    case " $ac_configure_args " in
1762      *" '$ac_arg' "*) ;; # Avoid dups.  Use of quotes ensures accuracy.
1763      *) as_fn_append ac_configure_args " '$ac_arg'" ;;
1764    esac
1765  fi
1766done
1767if $ac_cache_corrupted; then
1768  { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5
1769$as_echo "$as_me: error: in \`$ac_pwd':" >&2;}
1770  { $as_echo "$as_me:${as_lineno-$LINENO}: error: changes in the environment can compromise the build" >&5
1771$as_echo "$as_me: error: changes in the environment can compromise the build" >&2;}
1772  as_fn_error $? "run \`make distclean' and/or \`rm $cache_file' and start over" "$LINENO" 5
1773fi
1774## -------------------- ##
1775## Main body of script. ##
1776## -------------------- ##
1777
1778ac_ext=c
1779ac_cpp='$CPP $CPPFLAGS'
1780ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5'
1781ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5'
1782ac_compiler_gnu=$ac_cv_c_compiler_gnu
1783
1784
1785
1786
1787ac_aux_dir=
1788for ac_dir in "$srcdir" "$srcdir/.." "$srcdir/../.."; do
1789  if test -f "$ac_dir/install-sh"; then
1790    ac_aux_dir=$ac_dir
1791    ac_install_sh="$ac_aux_dir/install-sh -c"
1792    break
1793  elif test -f "$ac_dir/install.sh"; then
1794    ac_aux_dir=$ac_dir
1795    ac_install_sh="$ac_aux_dir/install.sh -c"
1796    break
1797  elif test -f "$ac_dir/shtool"; then
1798    ac_aux_dir=$ac_dir
1799    ac_install_sh="$ac_aux_dir/shtool install -c"
1800    break
1801  fi
1802done
1803if test -z "$ac_aux_dir"; then
1804  as_fn_error $? "cannot find install-sh, install.sh, or shtool in \"$srcdir\" \"$srcdir/..\" \"$srcdir/../..\"" "$LINENO" 5
1805fi
1806
1807# These three variables are undocumented and unsupported,
1808# and are intended to be withdrawn in a future Autoconf release.
1809# They can cause serious problems if a builder's source tree is in a directory
1810# whose full name contains unusual characters.
1811ac_config_guess="$SHELL $ac_aux_dir/config.guess"  # Please don't use this var.
1812ac_config_sub="$SHELL $ac_aux_dir/config.sub"  # Please don't use this var.
1813ac_configure="$SHELL $ac_aux_dir/configure"  # Please don't use this var.
1814
1815
1816# Make sure we can run config.sub.
1817$SHELL "$ac_aux_dir/config.sub" sun4 >/dev/null 2>&1 ||
1818  as_fn_error $? "cannot run $SHELL $ac_aux_dir/config.sub" "$LINENO" 5
1819
1820{ $as_echo "$as_me:${as_lineno-$LINENO}: checking build system type" >&5
1821$as_echo_n "checking build system type... " >&6; }
1822if ${ac_cv_build+:} false; then :
1823  $as_echo_n "(cached) " >&6
1824else
1825  ac_build_alias=$build_alias
1826test "x$ac_build_alias" = x &&
1827  ac_build_alias=`$SHELL "$ac_aux_dir/config.guess"`
1828test "x$ac_build_alias" = x &&
1829  as_fn_error $? "cannot guess build type; you must specify one" "$LINENO" 5
1830ac_cv_build=`$SHELL "$ac_aux_dir/config.sub" $ac_build_alias` ||
1831  as_fn_error $? "$SHELL $ac_aux_dir/config.sub $ac_build_alias failed" "$LINENO" 5
1832
1833fi
1834{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_build" >&5
1835$as_echo "$ac_cv_build" >&6; }
1836case $ac_cv_build in
1837*-*-*) ;;
1838*) as_fn_error $? "invalid value of canonical build" "$LINENO" 5;;
1839esac
1840build=$ac_cv_build
1841ac_save_IFS=$IFS; IFS='-'
1842set x $ac_cv_build
1843shift
1844build_cpu=$1
1845build_vendor=$2
1846shift; shift
1847# Remember, the first character of IFS is used to create $*,
1848# except with old shells:
1849build_os=$*
1850IFS=$ac_save_IFS
1851case $build_os in *\ *) build_os=`echo "$build_os" | sed 's/ /-/g'`;; esac
1852
1853
1854{ $as_echo "$as_me:${as_lineno-$LINENO}: checking host system type" >&5
1855$as_echo_n "checking host system type... " >&6; }
1856if ${ac_cv_host+:} false; then :
1857  $as_echo_n "(cached) " >&6
1858else
1859  if test "x$host_alias" = x; then
1860  ac_cv_host=$ac_cv_build
1861else
1862  ac_cv_host=`$SHELL "$ac_aux_dir/config.sub" $host_alias` ||
1863    as_fn_error $? "$SHELL $ac_aux_dir/config.sub $host_alias failed" "$LINENO" 5
1864fi
1865
1866fi
1867{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_host" >&5
1868$as_echo "$ac_cv_host" >&6; }
1869case $ac_cv_host in
1870*-*-*) ;;
1871*) as_fn_error $? "invalid value of canonical host" "$LINENO" 5;;
1872esac
1873host=$ac_cv_host
1874ac_save_IFS=$IFS; IFS='-'
1875set x $ac_cv_host
1876shift
1877host_cpu=$1
1878host_vendor=$2
1879shift; shift
1880# Remember, the first character of IFS is used to create $*,
1881# except with old shells:
1882host_os=$*
1883IFS=$ac_save_IFS
1884case $host_os in *\ *) host_os=`echo "$host_os" | sed 's/ /-/g'`;; esac
1885
1886
1887{ $as_echo "$as_me:${as_lineno-$LINENO}: checking target system type" >&5
1888$as_echo_n "checking target system type... " >&6; }
1889if ${ac_cv_target+:} false; then :
1890  $as_echo_n "(cached) " >&6
1891else
1892  if test "x$target_alias" = x; then
1893  ac_cv_target=$ac_cv_host
1894else
1895  ac_cv_target=`$SHELL "$ac_aux_dir/config.sub" $target_alias` ||
1896    as_fn_error $? "$SHELL $ac_aux_dir/config.sub $target_alias failed" "$LINENO" 5
1897fi
1898
1899fi
1900{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_target" >&5
1901$as_echo "$ac_cv_target" >&6; }
1902case $ac_cv_target in
1903*-*-*) ;;
1904*) as_fn_error $? "invalid value of canonical target" "$LINENO" 5;;
1905esac
1906target=$ac_cv_target
1907ac_save_IFS=$IFS; IFS='-'
1908set x $ac_cv_target
1909shift
1910target_cpu=$1
1911target_vendor=$2
1912shift; shift
1913# Remember, the first character of IFS is used to create $*,
1914# except with old shells:
1915target_os=$*
1916IFS=$ac_save_IFS
1917case $target_os in *\ *) target_os=`echo "$target_os" | sed 's/ /-/g'`;; esac
1918
1919
1920# The aliases save the names the user supplied, while $host etc.
1921# will get canonicalized.
1922test -n "$target_alias" &&
1923  test "$program_prefix$program_suffix$program_transform_name" = \
1924    NONENONEs,x,x, &&
1925  program_prefix=${target_alias}-
1926
1927
1928
1929API_VERSION=3.0
1930VERSION=$PACKAGE_VERSION
1931
1932
1933
1934
1935am__api_version='1.14'
1936
1937# Find a good install program.  We prefer a C program (faster),
1938# so one script is as good as another.  But avoid the broken or
1939# incompatible versions:
1940# SysV /etc/install, /usr/sbin/install
1941# SunOS /usr/etc/install
1942# IRIX /sbin/install
1943# AIX /bin/install
1944# AmigaOS /C/install, which installs bootblocks on floppy discs
1945# AIX 4 /usr/bin/installbsd, which doesn't work without a -g flag
1946# AFS /usr/afsws/bin/install, which mishandles nonexistent args
1947# SVR4 /usr/ucb/install, which tries to use the nonexistent group "staff"
1948# OS/2's system install, which has a completely different semantic
1949# ./install, which can be erroneously created by make from ./install.sh.
1950# Reject install programs that cannot install multiple files.
1951{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for a BSD-compatible install" >&5
1952$as_echo_n "checking for a BSD-compatible install... " >&6; }
1953if test -z "$INSTALL"; then
1954if ${ac_cv_path_install+:} false; then :
1955  $as_echo_n "(cached) " >&6
1956else
1957  as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
1958for as_dir in $PATH
1959do
1960  IFS=$as_save_IFS
1961  test -z "$as_dir" && as_dir=.
1962    # Account for people who put trailing slashes in PATH elements.
1963case $as_dir/ in #((
1964  ./ | .// | /[cC]/* | \
1965  /etc/* | /usr/sbin/* | /usr/etc/* | /sbin/* | /usr/afsws/bin/* | \
1966  ?:[\\/]os2[\\/]install[\\/]* | ?:[\\/]OS2[\\/]INSTALL[\\/]* | \
1967  /usr/ucb/* ) ;;
1968  *)
1969    # OSF1 and SCO ODT 3.0 have their own names for install.
1970    # Don't use installbsd from OSF since it installs stuff as root
1971    # by default.
1972    for ac_prog in ginstall scoinst install; do
1973      for ac_exec_ext in '' $ac_executable_extensions; do
1974	if as_fn_executable_p "$as_dir/$ac_prog$ac_exec_ext"; then
1975	  if test $ac_prog = install &&
1976	    grep dspmsg "$as_dir/$ac_prog$ac_exec_ext" >/dev/null 2>&1; then
1977	    # AIX install.  It has an incompatible calling convention.
1978	    :
1979	  elif test $ac_prog = install &&
1980	    grep pwplus "$as_dir/$ac_prog$ac_exec_ext" >/dev/null 2>&1; then
1981	    # program-specific install script used by HP pwplus--don't use.
1982	    :
1983	  else
1984	    rm -rf conftest.one conftest.two conftest.dir
1985	    echo one > conftest.one
1986	    echo two > conftest.two
1987	    mkdir conftest.dir
1988	    if "$as_dir/$ac_prog$ac_exec_ext" -c conftest.one conftest.two "`pwd`/conftest.dir" &&
1989	      test -s conftest.one && test -s conftest.two &&
1990	      test -s conftest.dir/conftest.one &&
1991	      test -s conftest.dir/conftest.two
1992	    then
1993	      ac_cv_path_install="$as_dir/$ac_prog$ac_exec_ext -c"
1994	      break 3
1995	    fi
1996	  fi
1997	fi
1998      done
1999    done
2000    ;;
2001esac
2002
2003  done
2004IFS=$as_save_IFS
2005
2006rm -rf conftest.one conftest.two conftest.dir
2007
2008fi
2009  if test "${ac_cv_path_install+set}" = set; then
2010    INSTALL=$ac_cv_path_install
2011  else
2012    # As a last resort, use the slow shell script.  Don't cache a
2013    # value for INSTALL within a source directory, because that will
2014    # break other packages using the cache if that directory is
2015    # removed, or if the value is a relative name.
2016    INSTALL=$ac_install_sh
2017  fi
2018fi
2019{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $INSTALL" >&5
2020$as_echo "$INSTALL" >&6; }
2021
2022# Use test -z because SunOS4 sh mishandles braces in ${var-val}.
2023# It thinks the first close brace ends the variable substitution.
2024test -z "$INSTALL_PROGRAM" && INSTALL_PROGRAM='${INSTALL}'
2025
2026test -z "$INSTALL_SCRIPT" && INSTALL_SCRIPT='${INSTALL}'
2027
2028test -z "$INSTALL_DATA" && INSTALL_DATA='${INSTALL} -m 644'
2029
2030{ $as_echo "$as_me:${as_lineno-$LINENO}: checking whether build environment is sane" >&5
2031$as_echo_n "checking whether build environment is sane... " >&6; }
2032# Reject unsafe characters in $srcdir or the absolute working directory
2033# name.  Accept space and tab only in the latter.
2034am_lf='
2035'
2036case `pwd` in
2037  *[\\\"\#\$\&\'\`$am_lf]*)
2038    as_fn_error $? "unsafe absolute working directory name" "$LINENO" 5;;
2039esac
2040case $srcdir in
2041  *[\\\"\#\$\&\'\`$am_lf\ \	]*)
2042    as_fn_error $? "unsafe srcdir value: '$srcdir'" "$LINENO" 5;;
2043esac
2044
2045# Do 'set' in a subshell so we don't clobber the current shell's
2046# arguments.  Must try -L first in case configure is actually a
2047# symlink; some systems play weird games with the mod time of symlinks
2048# (eg FreeBSD returns the mod time of the symlink's containing
2049# directory).
2050if (
2051   am_has_slept=no
2052   for am_try in 1 2; do
2053     echo "timestamp, slept: $am_has_slept" > conftest.file
2054     set X `ls -Lt "$srcdir/configure" conftest.file 2> /dev/null`
2055     if test "$*" = "X"; then
2056	# -L didn't work.
2057	set X `ls -t "$srcdir/configure" conftest.file`
2058     fi
2059     if test "$*" != "X $srcdir/configure conftest.file" \
2060	&& test "$*" != "X conftest.file $srcdir/configure"; then
2061
2062	# If neither matched, then we have a broken ls.  This can happen
2063	# if, for instance, CONFIG_SHELL is bash and it inherits a
2064	# broken ls alias from the environment.  This has actually
2065	# happened.  Such a system could not be considered "sane".
2066	as_fn_error $? "ls -t appears to fail.  Make sure there is not a broken
2067  alias in your environment" "$LINENO" 5
2068     fi
2069     if test "$2" = conftest.file || test $am_try -eq 2; then
2070       break
2071     fi
2072     # Just in case.
2073     sleep 1
2074     am_has_slept=yes
2075   done
2076   test "$2" = conftest.file
2077   )
2078then
2079   # Ok.
2080   :
2081else
2082   as_fn_error $? "newly created file is older than distributed files!
2083Check your system clock" "$LINENO" 5
2084fi
2085{ $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5
2086$as_echo "yes" >&6; }
2087# If we didn't sleep, we still need to ensure time stamps of config.status and
2088# generated files are strictly newer.
2089am_sleep_pid=
2090if grep 'slept: no' conftest.file >/dev/null 2>&1; then
2091  ( sleep 1 ) &
2092  am_sleep_pid=$!
2093fi
2094
2095rm -f conftest.file
2096
2097test "$program_prefix" != NONE &&
2098  program_transform_name="s&^&$program_prefix&;$program_transform_name"
2099# Use a double $ so make ignores it.
2100test "$program_suffix" != NONE &&
2101  program_transform_name="s&\$&$program_suffix&;$program_transform_name"
2102# Double any \ or $.
2103# By default was `s,x,x', remove it if useless.
2104ac_script='s/[\\$]/&&/g;s/;s,x,x,$//'
2105program_transform_name=`$as_echo "$program_transform_name" | sed "$ac_script"`
2106
2107# Expand $ac_aux_dir to an absolute path.
2108am_aux_dir=`cd "$ac_aux_dir" && pwd`
2109
2110if test x"${MISSING+set}" != xset; then
2111  case $am_aux_dir in
2112  *\ * | *\	*)
2113    MISSING="\${SHELL} \"$am_aux_dir/missing\"" ;;
2114  *)
2115    MISSING="\${SHELL} $am_aux_dir/missing" ;;
2116  esac
2117fi
2118# Use eval to expand $SHELL
2119if eval "$MISSING --is-lightweight"; then
2120  am_missing_run="$MISSING "
2121else
2122  am_missing_run=
2123  { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: 'missing' script is too old or missing" >&5
2124$as_echo "$as_me: WARNING: 'missing' script is too old or missing" >&2;}
2125fi
2126
2127if test x"${install_sh}" != xset; then
2128  case $am_aux_dir in
2129  *\ * | *\	*)
2130    install_sh="\${SHELL} '$am_aux_dir/install-sh'" ;;
2131  *)
2132    install_sh="\${SHELL} $am_aux_dir/install-sh"
2133  esac
2134fi
2135
2136# Installed binaries are usually stripped using 'strip' when the user
2137# run "make install-strip".  However 'strip' might not be the right
2138# tool to use in cross-compilation environments, therefore Automake
2139# will honor the 'STRIP' environment variable to overrule this program.
2140if test "$cross_compiling" != no; then
2141  if test -n "$ac_tool_prefix"; then
2142  # Extract the first word of "${ac_tool_prefix}strip", so it can be a program name with args.
2143set dummy ${ac_tool_prefix}strip; ac_word=$2
2144{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
2145$as_echo_n "checking for $ac_word... " >&6; }
2146if ${ac_cv_prog_STRIP+:} false; then :
2147  $as_echo_n "(cached) " >&6
2148else
2149  if test -n "$STRIP"; then
2150  ac_cv_prog_STRIP="$STRIP" # Let the user override the test.
2151else
2152as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
2153for as_dir in $PATH
2154do
2155  IFS=$as_save_IFS
2156  test -z "$as_dir" && as_dir=.
2157    for ac_exec_ext in '' $ac_executable_extensions; do
2158  if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
2159    ac_cv_prog_STRIP="${ac_tool_prefix}strip"
2160    $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5
2161    break 2
2162  fi
2163done
2164  done
2165IFS=$as_save_IFS
2166
2167fi
2168fi
2169STRIP=$ac_cv_prog_STRIP
2170if test -n "$STRIP"; then
2171  { $as_echo "$as_me:${as_lineno-$LINENO}: result: $STRIP" >&5
2172$as_echo "$STRIP" >&6; }
2173else
2174  { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5
2175$as_echo "no" >&6; }
2176fi
2177
2178
2179fi
2180if test -z "$ac_cv_prog_STRIP"; then
2181  ac_ct_STRIP=$STRIP
2182  # Extract the first word of "strip", so it can be a program name with args.
2183set dummy strip; ac_word=$2
2184{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
2185$as_echo_n "checking for $ac_word... " >&6; }
2186if ${ac_cv_prog_ac_ct_STRIP+:} false; then :
2187  $as_echo_n "(cached) " >&6
2188else
2189  if test -n "$ac_ct_STRIP"; then
2190  ac_cv_prog_ac_ct_STRIP="$ac_ct_STRIP" # Let the user override the test.
2191else
2192as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
2193for as_dir in $PATH
2194do
2195  IFS=$as_save_IFS
2196  test -z "$as_dir" && as_dir=.
2197    for ac_exec_ext in '' $ac_executable_extensions; do
2198  if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
2199    ac_cv_prog_ac_ct_STRIP="strip"
2200    $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5
2201    break 2
2202  fi
2203done
2204  done
2205IFS=$as_save_IFS
2206
2207fi
2208fi
2209ac_ct_STRIP=$ac_cv_prog_ac_ct_STRIP
2210if test -n "$ac_ct_STRIP"; then
2211  { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_ct_STRIP" >&5
2212$as_echo "$ac_ct_STRIP" >&6; }
2213else
2214  { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5
2215$as_echo "no" >&6; }
2216fi
2217
2218  if test "x$ac_ct_STRIP" = x; then
2219    STRIP=":"
2220  else
2221    case $cross_compiling:$ac_tool_warned in
2222yes:)
2223{ $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet" >&5
2224$as_echo "$as_me: WARNING: using cross tools not prefixed with host triplet" >&2;}
2225ac_tool_warned=yes ;;
2226esac
2227    STRIP=$ac_ct_STRIP
2228  fi
2229else
2230  STRIP="$ac_cv_prog_STRIP"
2231fi
2232
2233fi
2234INSTALL_STRIP_PROGRAM="\$(install_sh) -c -s"
2235
2236{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for a thread-safe mkdir -p" >&5
2237$as_echo_n "checking for a thread-safe mkdir -p... " >&6; }
2238if test -z "$MKDIR_P"; then
2239  if ${ac_cv_path_mkdir+:} false; then :
2240  $as_echo_n "(cached) " >&6
2241else
2242  as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
2243for as_dir in $PATH$PATH_SEPARATOR/opt/sfw/bin
2244do
2245  IFS=$as_save_IFS
2246  test -z "$as_dir" && as_dir=.
2247    for ac_prog in mkdir gmkdir; do
2248	 for ac_exec_ext in '' $ac_executable_extensions; do
2249	   as_fn_executable_p "$as_dir/$ac_prog$ac_exec_ext" || continue
2250	   case `"$as_dir/$ac_prog$ac_exec_ext" --version 2>&1` in #(
2251	     'mkdir (GNU coreutils) '* | \
2252	     'mkdir (coreutils) '* | \
2253	     'mkdir (fileutils) '4.1*)
2254	       ac_cv_path_mkdir=$as_dir/$ac_prog$ac_exec_ext
2255	       break 3;;
2256	   esac
2257	 done
2258       done
2259  done
2260IFS=$as_save_IFS
2261
2262fi
2263
2264  test -d ./--version && rmdir ./--version
2265  if test "${ac_cv_path_mkdir+set}" = set; then
2266    MKDIR_P="$ac_cv_path_mkdir -p"
2267  else
2268    # As a last resort, use the slow shell script.  Don't cache a
2269    # value for MKDIR_P within a source directory, because that will
2270    # break other packages using the cache if that directory is
2271    # removed, or if the value is a relative name.
2272    MKDIR_P="$ac_install_sh -d"
2273  fi
2274fi
2275{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $MKDIR_P" >&5
2276$as_echo "$MKDIR_P" >&6; }
2277
2278for ac_prog in gawk mawk nawk awk
2279do
2280  # Extract the first word of "$ac_prog", so it can be a program name with args.
2281set dummy $ac_prog; ac_word=$2
2282{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
2283$as_echo_n "checking for $ac_word... " >&6; }
2284if ${ac_cv_prog_AWK+:} false; then :
2285  $as_echo_n "(cached) " >&6
2286else
2287  if test -n "$AWK"; then
2288  ac_cv_prog_AWK="$AWK" # Let the user override the test.
2289else
2290as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
2291for as_dir in $PATH
2292do
2293  IFS=$as_save_IFS
2294  test -z "$as_dir" && as_dir=.
2295    for ac_exec_ext in '' $ac_executable_extensions; do
2296  if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
2297    ac_cv_prog_AWK="$ac_prog"
2298    $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5
2299    break 2
2300  fi
2301done
2302  done
2303IFS=$as_save_IFS
2304
2305fi
2306fi
2307AWK=$ac_cv_prog_AWK
2308if test -n "$AWK"; then
2309  { $as_echo "$as_me:${as_lineno-$LINENO}: result: $AWK" >&5
2310$as_echo "$AWK" >&6; }
2311else
2312  { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5
2313$as_echo "no" >&6; }
2314fi
2315
2316
2317  test -n "$AWK" && break
2318done
2319
2320{ $as_echo "$as_me:${as_lineno-$LINENO}: checking whether ${MAKE-make} sets \$(MAKE)" >&5
2321$as_echo_n "checking whether ${MAKE-make} sets \$(MAKE)... " >&6; }
2322set x ${MAKE-make}
2323ac_make=`$as_echo "$2" | sed 's/+/p/g; s/[^a-zA-Z0-9_]/_/g'`
2324if eval \${ac_cv_prog_make_${ac_make}_set+:} false; then :
2325  $as_echo_n "(cached) " >&6
2326else
2327  cat >conftest.make <<\_ACEOF
2328SHELL = /bin/sh
2329all:
2330	@echo '@@@%%%=$(MAKE)=@@@%%%'
2331_ACEOF
2332# GNU make sometimes prints "make[1]: Entering ...", which would confuse us.
2333case `${MAKE-make} -f conftest.make 2>/dev/null` in
2334  *@@@%%%=?*=@@@%%%*)
2335    eval ac_cv_prog_make_${ac_make}_set=yes;;
2336  *)
2337    eval ac_cv_prog_make_${ac_make}_set=no;;
2338esac
2339rm -f conftest.make
2340fi
2341if eval test \$ac_cv_prog_make_${ac_make}_set = yes; then
2342  { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5
2343$as_echo "yes" >&6; }
2344  SET_MAKE=
2345else
2346  { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5
2347$as_echo "no" >&6; }
2348  SET_MAKE="MAKE=${MAKE-make}"
2349fi
2350
2351rm -rf .tst 2>/dev/null
2352mkdir .tst 2>/dev/null
2353if test -d .tst; then
2354  am__leading_dot=.
2355else
2356  am__leading_dot=_
2357fi
2358rmdir .tst 2>/dev/null
2359
2360# Check whether --enable-silent-rules was given.
2361if test "${enable_silent_rules+set}" = set; then :
2362  enableval=$enable_silent_rules;
2363fi
2364
2365case $enable_silent_rules in # (((
2366  yes) AM_DEFAULT_VERBOSITY=0;;
2367   no) AM_DEFAULT_VERBOSITY=1;;
2368    *) AM_DEFAULT_VERBOSITY=1;;
2369esac
2370am_make=${MAKE-make}
2371{ $as_echo "$as_me:${as_lineno-$LINENO}: checking whether $am_make supports nested variables" >&5
2372$as_echo_n "checking whether $am_make supports nested variables... " >&6; }
2373if ${am_cv_make_support_nested_variables+:} false; then :
2374  $as_echo_n "(cached) " >&6
2375else
2376  if $as_echo 'TRUE=$(BAR$(V))
2377BAR0=false
2378BAR1=true
2379V=1
2380am__doit:
2381	@$(TRUE)
2382.PHONY: am__doit' | $am_make -f - >/dev/null 2>&1; then
2383  am_cv_make_support_nested_variables=yes
2384else
2385  am_cv_make_support_nested_variables=no
2386fi
2387fi
2388{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $am_cv_make_support_nested_variables" >&5
2389$as_echo "$am_cv_make_support_nested_variables" >&6; }
2390if test $am_cv_make_support_nested_variables = yes; then
2391    AM_V='$(V)'
2392  AM_DEFAULT_V='$(AM_DEFAULT_VERBOSITY)'
2393else
2394  AM_V=$AM_DEFAULT_VERBOSITY
2395  AM_DEFAULT_V=$AM_DEFAULT_VERBOSITY
2396fi
2397AM_BACKSLASH='\'
2398
2399if test "`cd $srcdir && pwd`" != "`pwd`"; then
2400  # Use -I$(srcdir) only when $(srcdir) != ., so that make's output
2401  # is not polluted with repeated "-I."
2402  am__isrc=' -I$(srcdir)'
2403  # test to see if srcdir already configured
2404  if test -f $srcdir/config.status; then
2405    as_fn_error $? "source directory already configured; run \"make distclean\" there first" "$LINENO" 5
2406  fi
2407fi
2408
2409# test whether we have cygpath
2410if test -z "$CYGPATH_W"; then
2411  if (cygpath --version) >/dev/null 2>/dev/null; then
2412    CYGPATH_W='cygpath -w'
2413  else
2414    CYGPATH_W=echo
2415  fi
2416fi
2417
2418
2419# Define the identity of the package.
2420 PACKAGE='notify-sharp'
2421 VERSION='3.0.3'
2422
2423
2424cat >>confdefs.h <<_ACEOF
2425#define PACKAGE "$PACKAGE"
2426_ACEOF
2427
2428
2429cat >>confdefs.h <<_ACEOF
2430#define VERSION "$VERSION"
2431_ACEOF
2432
2433# Some tools Automake needs.
2434
2435ACLOCAL=${ACLOCAL-"${am_missing_run}aclocal-${am__api_version}"}
2436
2437
2438AUTOCONF=${AUTOCONF-"${am_missing_run}autoconf"}
2439
2440
2441AUTOMAKE=${AUTOMAKE-"${am_missing_run}automake-${am__api_version}"}
2442
2443
2444AUTOHEADER=${AUTOHEADER-"${am_missing_run}autoheader"}
2445
2446
2447MAKEINFO=${MAKEINFO-"${am_missing_run}makeinfo"}
2448
2449# For better backward compatibility.  To be removed once Automake 1.9.x
2450# dies out for good.  For more background, see:
2451# <http://lists.gnu.org/archive/html/automake/2012-07/msg00001.html>
2452# <http://lists.gnu.org/archive/html/automake/2012-07/msg00014.html>
2453mkdir_p='$(MKDIR_P)'
2454
2455# We need awk for the "check" target.  The system "awk" is bad on
2456# some platforms.
2457# Always define AMTAR for backward compatibility.  Yes, it's still used
2458# in the wild :-(  We should find a proper way to deprecate it ...
2459AMTAR='$${TAR-tar}'
2460
2461
2462# We'll loop over all known methods to create a tar archive until one works.
2463_am_tools='gnutar  pax cpio none'
2464
2465am__tar='$${TAR-tar} chof - "$$tardir"' am__untar='$${TAR-tar} xf -'
2466
2467
2468
2469
2470
2471
2472# POSIX will say in a future version that running "rm -f" with no argument
2473# is OK; and we want to be able to make that assumption in our Makefile
2474# recipes.  So use an aggressive probe to check that the usage we want is
2475# actually supported "in the wild" to an acceptable degree.
2476# See automake bug#10828.
2477# To make any issue more visible, cause the running configure to be aborted
2478# by default if the 'rm' program in use doesn't match our expectations; the
2479# user can still override this though.
2480if rm -f && rm -fr && rm -rf; then : OK; else
2481  cat >&2 <<'END'
2482Oops!
2483
2484Your 'rm' program seems unable to run without file operands specified
2485on the command line, even when the '-f' option is present.  This is contrary
2486to the behaviour of most rm programs out there, and not conforming with
2487the upcoming POSIX standard: <http://austingroupbugs.net/view.php?id=542>
2488
2489Please tell bug-automake@gnu.org about your system, including the value
2490of your $PATH and any error possibly output before this message.  This
2491can help us improve future automake versions.
2492
2493END
2494  if test x"$ACCEPT_INFERIOR_RM_PROGRAM" = x"yes"; then
2495    echo 'Configuration will proceed anyway, since you have set the' >&2
2496    echo 'ACCEPT_INFERIOR_RM_PROGRAM variable to "yes"' >&2
2497    echo >&2
2498  else
2499    cat >&2 <<'END'
2500Aborting the configuration process, to ensure you take notice of the issue.
2501
2502You can download and install GNU coreutils to get an 'rm' implementation
2503that behaves properly: <http://www.gnu.org/software/coreutils/>.
2504
2505If you want to complete the configuration process using your problematic
2506'rm' anyway, export the environment variable ACCEPT_INFERIOR_RM_PROGRAM
2507to "yes", and re-run configure.
2508
2509END
2510    as_fn_error $? "Your 'rm' program is bad, sorry." "$LINENO" 5
2511  fi
2512fi
2513
2514
2515
2516{ $as_echo "$as_me:${as_lineno-$LINENO}: checking whether to enable maintainer-specific portions of Makefiles" >&5
2517$as_echo_n "checking whether to enable maintainer-specific portions of Makefiles... " >&6; }
2518    # Check whether --enable-maintainer-mode was given.
2519if test "${enable_maintainer_mode+set}" = set; then :
2520  enableval=$enable_maintainer_mode; USE_MAINTAINER_MODE=$enableval
2521else
2522  USE_MAINTAINER_MODE=no
2523fi
2524
2525  { $as_echo "$as_me:${as_lineno-$LINENO}: result: $USE_MAINTAINER_MODE" >&5
2526$as_echo "$USE_MAINTAINER_MODE" >&6; }
2527   if test $USE_MAINTAINER_MODE = yes; then
2528  MAINTAINER_MODE_TRUE=
2529  MAINTAINER_MODE_FALSE='#'
2530else
2531  MAINTAINER_MODE_TRUE='#'
2532  MAINTAINER_MODE_FALSE=
2533fi
2534
2535  MAINT=$MAINTAINER_MODE_TRUE
2536
2537
2538
2539
2540
2541# Extract the first word of "pkg-config", so it can be a program name with args.
2542set dummy pkg-config; ac_word=$2
2543{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
2544$as_echo_n "checking for $ac_word... " >&6; }
2545if ${ac_cv_path_PKG_CONFIG+:} false; then :
2546  $as_echo_n "(cached) " >&6
2547else
2548  case $PKG_CONFIG in
2549  [\\/]* | ?:[\\/]*)
2550  ac_cv_path_PKG_CONFIG="$PKG_CONFIG" # Let the user override the test with a path.
2551  ;;
2552  *)
2553  as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
2554for as_dir in $PATH
2555do
2556  IFS=$as_save_IFS
2557  test -z "$as_dir" && as_dir=.
2558    for ac_exec_ext in '' $ac_executable_extensions; do
2559  if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
2560    ac_cv_path_PKG_CONFIG="$as_dir/$ac_word$ac_exec_ext"
2561    $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5
2562    break 2
2563  fi
2564done
2565  done
2566IFS=$as_save_IFS
2567
2568  test -z "$ac_cv_path_PKG_CONFIG" && ac_cv_path_PKG_CONFIG="no"
2569  ;;
2570esac
2571fi
2572PKG_CONFIG=$ac_cv_path_PKG_CONFIG
2573if test -n "$PKG_CONFIG"; then
2574  { $as_echo "$as_me:${as_lineno-$LINENO}: result: $PKG_CONFIG" >&5
2575$as_echo "$PKG_CONFIG" >&6; }
2576else
2577  { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5
2578$as_echo "no" >&6; }
2579fi
2580
2581
2582if test "x$PKG_CONFIG" = "xno"; then
2583	as_fn_error $? "You need to install pkg-config" "$LINENO" 5
2584fi
2585
2586
2587MONO_REQ_VERSION=1.1.13
2588
2589
2590
2591
2592
2593
2594
2595if test "x$ac_cv_env_PKG_CONFIG_set" != "xset"; then
2596	if test -n "$ac_tool_prefix"; then
2597  # Extract the first word of "${ac_tool_prefix}pkg-config", so it can be a program name with args.
2598set dummy ${ac_tool_prefix}pkg-config; ac_word=$2
2599{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
2600$as_echo_n "checking for $ac_word... " >&6; }
2601if ${ac_cv_path_PKG_CONFIG+:} false; then :
2602  $as_echo_n "(cached) " >&6
2603else
2604  case $PKG_CONFIG in
2605  [\\/]* | ?:[\\/]*)
2606  ac_cv_path_PKG_CONFIG="$PKG_CONFIG" # Let the user override the test with a path.
2607  ;;
2608  *)
2609  as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
2610for as_dir in $PATH
2611do
2612  IFS=$as_save_IFS
2613  test -z "$as_dir" && as_dir=.
2614    for ac_exec_ext in '' $ac_executable_extensions; do
2615  if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
2616    ac_cv_path_PKG_CONFIG="$as_dir/$ac_word$ac_exec_ext"
2617    $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5
2618    break 2
2619  fi
2620done
2621  done
2622IFS=$as_save_IFS
2623
2624  ;;
2625esac
2626fi
2627PKG_CONFIG=$ac_cv_path_PKG_CONFIG
2628if test -n "$PKG_CONFIG"; then
2629  { $as_echo "$as_me:${as_lineno-$LINENO}: result: $PKG_CONFIG" >&5
2630$as_echo "$PKG_CONFIG" >&6; }
2631else
2632  { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5
2633$as_echo "no" >&6; }
2634fi
2635
2636
2637fi
2638if test -z "$ac_cv_path_PKG_CONFIG"; then
2639  ac_pt_PKG_CONFIG=$PKG_CONFIG
2640  # Extract the first word of "pkg-config", so it can be a program name with args.
2641set dummy pkg-config; ac_word=$2
2642{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
2643$as_echo_n "checking for $ac_word... " >&6; }
2644if ${ac_cv_path_ac_pt_PKG_CONFIG+:} false; then :
2645  $as_echo_n "(cached) " >&6
2646else
2647  case $ac_pt_PKG_CONFIG in
2648  [\\/]* | ?:[\\/]*)
2649  ac_cv_path_ac_pt_PKG_CONFIG="$ac_pt_PKG_CONFIG" # Let the user override the test with a path.
2650  ;;
2651  *)
2652  as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
2653for as_dir in $PATH
2654do
2655  IFS=$as_save_IFS
2656  test -z "$as_dir" && as_dir=.
2657    for ac_exec_ext in '' $ac_executable_extensions; do
2658  if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
2659    ac_cv_path_ac_pt_PKG_CONFIG="$as_dir/$ac_word$ac_exec_ext"
2660    $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5
2661    break 2
2662  fi
2663done
2664  done
2665IFS=$as_save_IFS
2666
2667  ;;
2668esac
2669fi
2670ac_pt_PKG_CONFIG=$ac_cv_path_ac_pt_PKG_CONFIG
2671if test -n "$ac_pt_PKG_CONFIG"; then
2672  { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_pt_PKG_CONFIG" >&5
2673$as_echo "$ac_pt_PKG_CONFIG" >&6; }
2674else
2675  { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5
2676$as_echo "no" >&6; }
2677fi
2678
2679  if test "x$ac_pt_PKG_CONFIG" = x; then
2680    PKG_CONFIG=""
2681  else
2682    case $cross_compiling:$ac_tool_warned in
2683yes:)
2684{ $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet" >&5
2685$as_echo "$as_me: WARNING: using cross tools not prefixed with host triplet" >&2;}
2686ac_tool_warned=yes ;;
2687esac
2688    PKG_CONFIG=$ac_pt_PKG_CONFIG
2689  fi
2690else
2691  PKG_CONFIG="$ac_cv_path_PKG_CONFIG"
2692fi
2693
2694fi
2695if test -n "$PKG_CONFIG"; then
2696	_pkg_min_version=0.9.0
2697	{ $as_echo "$as_me:${as_lineno-$LINENO}: checking pkg-config is at least version $_pkg_min_version" >&5
2698$as_echo_n "checking pkg-config is at least version $_pkg_min_version... " >&6; }
2699	if $PKG_CONFIG --atleast-pkgconfig-version $_pkg_min_version; then
2700		{ $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5
2701$as_echo "yes" >&6; }
2702	else
2703		{ $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5
2704$as_echo "no" >&6; }
2705		PKG_CONFIG=""
2706	fi
2707fi
2708
2709pkg_failed=no
2710{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for MONO" >&5
2711$as_echo_n "checking for MONO... " >&6; }
2712
2713if test -n "$MONO_CFLAGS"; then
2714    pkg_cv_MONO_CFLAGS="$MONO_CFLAGS"
2715 elif test -n "$PKG_CONFIG"; then
2716    if test -n "$PKG_CONFIG" && \
2717    { { $as_echo "$as_me:${as_lineno-$LINENO}: \$PKG_CONFIG --exists --print-errors \"mono >= \$MONO_REQ_VERSION\""; } >&5
2718  ($PKG_CONFIG --exists --print-errors "mono >= $MONO_REQ_VERSION") 2>&5
2719  ac_status=$?
2720  $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5
2721  test $ac_status = 0; }; then
2722  pkg_cv_MONO_CFLAGS=`$PKG_CONFIG --cflags "mono >= $MONO_REQ_VERSION" 2>/dev/null`
2723		      test "x$?" != "x0" && pkg_failed=yes
2724else
2725  pkg_failed=yes
2726fi
2727 else
2728    pkg_failed=untried
2729fi
2730if test -n "$MONO_LIBS"; then
2731    pkg_cv_MONO_LIBS="$MONO_LIBS"
2732 elif test -n "$PKG_CONFIG"; then
2733    if test -n "$PKG_CONFIG" && \
2734    { { $as_echo "$as_me:${as_lineno-$LINENO}: \$PKG_CONFIG --exists --print-errors \"mono >= \$MONO_REQ_VERSION\""; } >&5
2735  ($PKG_CONFIG --exists --print-errors "mono >= $MONO_REQ_VERSION") 2>&5
2736  ac_status=$?
2737  $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5
2738  test $ac_status = 0; }; then
2739  pkg_cv_MONO_LIBS=`$PKG_CONFIG --libs "mono >= $MONO_REQ_VERSION" 2>/dev/null`
2740		      test "x$?" != "x0" && pkg_failed=yes
2741else
2742  pkg_failed=yes
2743fi
2744 else
2745    pkg_failed=untried
2746fi
2747
2748
2749
2750if test $pkg_failed = yes; then
2751   	{ $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5
2752$as_echo "no" >&6; }
2753
2754if $PKG_CONFIG --atleast-pkgconfig-version 0.20; then
2755        _pkg_short_errors_supported=yes
2756else
2757        _pkg_short_errors_supported=no
2758fi
2759        if test $_pkg_short_errors_supported = yes; then
2760	        MONO_PKG_ERRORS=`$PKG_CONFIG --short-errors --print-errors --cflags --libs "mono >= $MONO_REQ_VERSION" 2>&1`
2761        else
2762	        MONO_PKG_ERRORS=`$PKG_CONFIG --print-errors --cflags --libs "mono >= $MONO_REQ_VERSION" 2>&1`
2763        fi
2764	# Put the nasty error message in config.log where it belongs
2765	echo "$MONO_PKG_ERRORS" >&5
2766
2767	as_fn_error $? "Package requirements (mono >= $MONO_REQ_VERSION) were not met:
2768
2769$MONO_PKG_ERRORS
2770
2771Consider adjusting the PKG_CONFIG_PATH environment variable if you
2772installed software in a non-standard prefix.
2773
2774Alternatively, you may set the environment variables MONO_CFLAGS
2775and MONO_LIBS to avoid the need to call pkg-config.
2776See the pkg-config man page for more details." "$LINENO" 5
2777elif test $pkg_failed = untried; then
2778     	{ $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5
2779$as_echo "no" >&6; }
2780	{ { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5
2781$as_echo "$as_me: error: in \`$ac_pwd':" >&2;}
2782as_fn_error $? "The pkg-config script could not be found or is too old.  Make sure it
2783is in your PATH or set the PKG_CONFIG environment variable to the full
2784path to pkg-config.
2785
2786Alternatively, you may set the environment variables MONO_CFLAGS
2787and MONO_LIBS to avoid the need to call pkg-config.
2788See the pkg-config man page for more details.
2789
2790To get pkg-config, see <http://pkg-config.freedesktop.org/>.
2791See \`config.log' for more details" "$LINENO" 5; }
2792else
2793	MONO_CFLAGS=$pkg_cv_MONO_CFLAGS
2794	MONO_LIBS=$pkg_cv_MONO_LIBS
2795        { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5
2796$as_echo "yes" >&6; }
2797
2798fi
2799
2800# Extract the first word of "gmcs", so it can be a program name with args.
2801set dummy gmcs; ac_word=$2
2802{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
2803$as_echo_n "checking for $ac_word... " >&6; }
2804if ${ac_cv_path_GMCS+:} false; then :
2805  $as_echo_n "(cached) " >&6
2806else
2807  case $GMCS in
2808  [\\/]* | ?:[\\/]*)
2809  ac_cv_path_GMCS="$GMCS" # Let the user override the test with a path.
2810  ;;
2811  *)
2812  as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
2813for as_dir in $PATH
2814do
2815  IFS=$as_save_IFS
2816  test -z "$as_dir" && as_dir=.
2817    for ac_exec_ext in '' $ac_executable_extensions; do
2818  if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
2819    ac_cv_path_GMCS="$as_dir/$ac_word$ac_exec_ext"
2820    $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5
2821    break 2
2822  fi
2823done
2824  done
2825IFS=$as_save_IFS
2826
2827  test -z "$ac_cv_path_GMCS" && ac_cv_path_GMCS="no"
2828  ;;
2829esac
2830fi
2831GMCS=$ac_cv_path_GMCS
2832if test -n "$GMCS"; then
2833  { $as_echo "$as_me:${as_lineno-$LINENO}: result: $GMCS" >&5
2834$as_echo "$GMCS" >&6; }
2835else
2836  { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5
2837$as_echo "no" >&6; }
2838fi
2839
2840
2841if test "x$GMCS" = "xno"; then
2842	as_fn_error $? "You need to install gmcs" "$LINENO" 5
2843fi
2844
2845
2846# Extract the first word of "gacutil", so it can be a program name with args.
2847set dummy gacutil; ac_word=$2
2848{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
2849$as_echo_n "checking for $ac_word... " >&6; }
2850if ${ac_cv_path_GACUTIL+:} false; then :
2851  $as_echo_n "(cached) " >&6
2852else
2853  case $GACUTIL in
2854  [\\/]* | ?:[\\/]*)
2855  ac_cv_path_GACUTIL="$GACUTIL" # Let the user override the test with a path.
2856  ;;
2857  *)
2858  as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
2859for as_dir in $PATH
2860do
2861  IFS=$as_save_IFS
2862  test -z "$as_dir" && as_dir=.
2863    for ac_exec_ext in '' $ac_executable_extensions; do
2864  if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
2865    ac_cv_path_GACUTIL="$as_dir/$ac_word$ac_exec_ext"
2866    $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5
2867    break 2
2868  fi
2869done
2870  done
2871IFS=$as_save_IFS
2872
2873  test -z "$ac_cv_path_GACUTIL" && ac_cv_path_GACUTIL="no"
2874  ;;
2875esac
2876fi
2877GACUTIL=$ac_cv_path_GACUTIL
2878if test -n "$GACUTIL"; then
2879  { $as_echo "$as_me:${as_lineno-$LINENO}: result: $GACUTIL" >&5
2880$as_echo "$GACUTIL" >&6; }
2881else
2882  { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5
2883$as_echo "no" >&6; }
2884fi
2885
2886
2887if test "x$GACUTIL" = "xno"; then
2888	as_fn_error $? "You need to install gacutil" "$LINENO" 5
2889fi
2890
2891
2892# Check whether --enable-docs was given.
2893if test "${enable_docs+set}" = set; then :
2894  enableval=$enable_docs; with_docs=no
2895else
2896  with_docs=yes
2897fi
2898
2899
2900MONODOC_REQ_VERSION=1.1.18
2901
2902if test "x$with_docs" = "xyes"; then
2903
2904pkg_failed=no
2905{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for MONODOC" >&5
2906$as_echo_n "checking for MONODOC... " >&6; }
2907
2908if test -n "$MONODOC_CFLAGS"; then
2909    pkg_cv_MONODOC_CFLAGS="$MONODOC_CFLAGS"
2910 elif test -n "$PKG_CONFIG"; then
2911    if test -n "$PKG_CONFIG" && \
2912    { { $as_echo "$as_me:${as_lineno-$LINENO}: \$PKG_CONFIG --exists --print-errors \"monodoc >= \$MONODOC_REQ_VERSION\""; } >&5
2913  ($PKG_CONFIG --exists --print-errors "monodoc >= $MONODOC_REQ_VERSION") 2>&5
2914  ac_status=$?
2915  $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5
2916  test $ac_status = 0; }; then
2917  pkg_cv_MONODOC_CFLAGS=`$PKG_CONFIG --cflags "monodoc >= $MONODOC_REQ_VERSION" 2>/dev/null`
2918		      test "x$?" != "x0" && pkg_failed=yes
2919else
2920  pkg_failed=yes
2921fi
2922 else
2923    pkg_failed=untried
2924fi
2925if test -n "$MONODOC_LIBS"; then
2926    pkg_cv_MONODOC_LIBS="$MONODOC_LIBS"
2927 elif test -n "$PKG_CONFIG"; then
2928    if test -n "$PKG_CONFIG" && \
2929    { { $as_echo "$as_me:${as_lineno-$LINENO}: \$PKG_CONFIG --exists --print-errors \"monodoc >= \$MONODOC_REQ_VERSION\""; } >&5
2930  ($PKG_CONFIG --exists --print-errors "monodoc >= $MONODOC_REQ_VERSION") 2>&5
2931  ac_status=$?
2932  $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5
2933  test $ac_status = 0; }; then
2934  pkg_cv_MONODOC_LIBS=`$PKG_CONFIG --libs "monodoc >= $MONODOC_REQ_VERSION" 2>/dev/null`
2935		      test "x$?" != "x0" && pkg_failed=yes
2936else
2937  pkg_failed=yes
2938fi
2939 else
2940    pkg_failed=untried
2941fi
2942
2943
2944
2945if test $pkg_failed = yes; then
2946   	{ $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5
2947$as_echo "no" >&6; }
2948
2949if $PKG_CONFIG --atleast-pkgconfig-version 0.20; then
2950        _pkg_short_errors_supported=yes
2951else
2952        _pkg_short_errors_supported=no
2953fi
2954        if test $_pkg_short_errors_supported = yes; then
2955	        MONODOC_PKG_ERRORS=`$PKG_CONFIG --short-errors --print-errors --cflags --libs "monodoc >= $MONODOC_REQ_VERSION" 2>&1`
2956        else
2957	        MONODOC_PKG_ERRORS=`$PKG_CONFIG --print-errors --cflags --libs "monodoc >= $MONODOC_REQ_VERSION" 2>&1`
2958        fi
2959	# Put the nasty error message in config.log where it belongs
2960	echo "$MONODOC_PKG_ERRORS" >&5
2961
2962	as_fn_error $? "You need to install monodoc, or pass --disable-docs to configure to skip documentation installation" "$LINENO" 5
2963elif test $pkg_failed = untried; then
2964     	{ $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5
2965$as_echo "no" >&6; }
2966	as_fn_error $? "You need to install monodoc, or pass --disable-docs to configure to skip documentation installation" "$LINENO" 5
2967else
2968	MONODOC_CFLAGS=$pkg_cv_MONODOC_CFLAGS
2969	MONODOC_LIBS=$pkg_cv_MONODOC_LIBS
2970        { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5
2971$as_echo "yes" >&6; }
2972
2973fi
2974	# Extract the first word of "monodocer", so it can be a program name with args.
2975set dummy monodocer; ac_word=$2
2976{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
2977$as_echo_n "checking for $ac_word... " >&6; }
2978if ${ac_cv_path_MONODOCER+:} false; then :
2979  $as_echo_n "(cached) " >&6
2980else
2981  case $MONODOCER in
2982  [\\/]* | ?:[\\/]*)
2983  ac_cv_path_MONODOCER="$MONODOCER" # Let the user override the test with a path.
2984  ;;
2985  *)
2986  as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
2987for as_dir in $PATH
2988do
2989  IFS=$as_save_IFS
2990  test -z "$as_dir" && as_dir=.
2991    for ac_exec_ext in '' $ac_executable_extensions; do
2992  if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
2993    ac_cv_path_MONODOCER="$as_dir/$ac_word$ac_exec_ext"
2994    $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5
2995    break 2
2996  fi
2997done
2998  done
2999IFS=$as_save_IFS
3000
3001  test -z "$ac_cv_path_MONODOCER" && ac_cv_path_MONODOCER="no"
3002  ;;
3003esac
3004fi
3005MONODOCER=$ac_cv_path_MONODOCER
3006if test -n "$MONODOCER"; then
3007  { $as_echo "$as_me:${as_lineno-$LINENO}: result: $MONODOCER" >&5
3008$as_echo "$MONODOCER" >&6; }
3009else
3010  { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5
3011$as_echo "no" >&6; }
3012fi
3013
3014
3015	if test "x$MONODOCER" = "xno"; then
3016		as_fn_error $? "You need to install monodoc, or pass --disable-docs to configure to skip documentation installation" "$LINENO" 5
3017	fi
3018
3019	# Extract the first word of "mdassembler", so it can be a program name with args.
3020set dummy mdassembler; ac_word=$2
3021{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
3022$as_echo_n "checking for $ac_word... " >&6; }
3023if ${ac_cv_path_MDASSEMBLER+:} false; then :
3024  $as_echo_n "(cached) " >&6
3025else
3026  case $MDASSEMBLER in
3027  [\\/]* | ?:[\\/]*)
3028  ac_cv_path_MDASSEMBLER="$MDASSEMBLER" # Let the user override the test with a path.
3029  ;;
3030  *)
3031  as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
3032for as_dir in $PATH
3033do
3034  IFS=$as_save_IFS
3035  test -z "$as_dir" && as_dir=.
3036    for ac_exec_ext in '' $ac_executable_extensions; do
3037  if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
3038    ac_cv_path_MDASSEMBLER="$as_dir/$ac_word$ac_exec_ext"
3039    $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5
3040    break 2
3041  fi
3042done
3043  done
3044IFS=$as_save_IFS
3045
3046  test -z "$ac_cv_path_MDASSEMBLER" && ac_cv_path_MDASSEMBLER="no"
3047  ;;
3048esac
3049fi
3050MDASSEMBLER=$ac_cv_path_MDASSEMBLER
3051if test -n "$MDASSEMBLER"; then
3052  { $as_echo "$as_me:${as_lineno-$LINENO}: result: $MDASSEMBLER" >&5
3053$as_echo "$MDASSEMBLER" >&6; }
3054else
3055  { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5
3056$as_echo "no" >&6; }
3057fi
3058
3059
3060	if test "x$MDASSEMBLER" = "xno"; then
3061		as_fn_error $? "You need to install mdassembler, or pass --disable-docs to configure to skip documentation installation" "$LINENO" 5
3062	fi
3063
3064	DOCDIR=`$PKG_CONFIG monodoc --variable=sourcesdir`
3065
3066	 if true; then
3067  BUILD_DOCS_TRUE=
3068  BUILD_DOCS_FALSE='#'
3069else
3070  BUILD_DOCS_TRUE='#'
3071  BUILD_DOCS_FALSE=
3072fi
3073
3074else
3075	{ $as_echo "$as_me:${as_lineno-$LINENO}: not building notify-sharp API documentation" >&5
3076$as_echo "$as_me: not building notify-sharp API documentation" >&6;}
3077	 if false; then
3078  BUILD_DOCS_TRUE=
3079  BUILD_DOCS_FALSE='#'
3080else
3081  BUILD_DOCS_TRUE='#'
3082  BUILD_DOCS_FALSE=
3083fi
3084
3085fi
3086
3087GTK_SHARP_REQ_VERSION=2.99.1
3088
3089pkg_failed=no
3090{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for GTK_SHARP" >&5
3091$as_echo_n "checking for GTK_SHARP... " >&6; }
3092
3093if test -n "$GTK_SHARP_CFLAGS"; then
3094    pkg_cv_GTK_SHARP_CFLAGS="$GTK_SHARP_CFLAGS"
3095 elif test -n "$PKG_CONFIG"; then
3096    if test -n "$PKG_CONFIG" && \
3097    { { $as_echo "$as_me:${as_lineno-$LINENO}: \$PKG_CONFIG --exists --print-errors \"gtk-sharp-3.0 >= \$GTK_SHARP_REQ_VERSION\""; } >&5
3098  ($PKG_CONFIG --exists --print-errors "gtk-sharp-3.0 >= $GTK_SHARP_REQ_VERSION") 2>&5
3099  ac_status=$?
3100  $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5
3101  test $ac_status = 0; }; then
3102  pkg_cv_GTK_SHARP_CFLAGS=`$PKG_CONFIG --cflags "gtk-sharp-3.0 >= $GTK_SHARP_REQ_VERSION" 2>/dev/null`
3103		      test "x$?" != "x0" && pkg_failed=yes
3104else
3105  pkg_failed=yes
3106fi
3107 else
3108    pkg_failed=untried
3109fi
3110if test -n "$GTK_SHARP_LIBS"; then
3111    pkg_cv_GTK_SHARP_LIBS="$GTK_SHARP_LIBS"
3112 elif test -n "$PKG_CONFIG"; then
3113    if test -n "$PKG_CONFIG" && \
3114    { { $as_echo "$as_me:${as_lineno-$LINENO}: \$PKG_CONFIG --exists --print-errors \"gtk-sharp-3.0 >= \$GTK_SHARP_REQ_VERSION\""; } >&5
3115  ($PKG_CONFIG --exists --print-errors "gtk-sharp-3.0 >= $GTK_SHARP_REQ_VERSION") 2>&5
3116  ac_status=$?
3117  $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5
3118  test $ac_status = 0; }; then
3119  pkg_cv_GTK_SHARP_LIBS=`$PKG_CONFIG --libs "gtk-sharp-3.0 >= $GTK_SHARP_REQ_VERSION" 2>/dev/null`
3120		      test "x$?" != "x0" && pkg_failed=yes
3121else
3122  pkg_failed=yes
3123fi
3124 else
3125    pkg_failed=untried
3126fi
3127
3128
3129
3130if test $pkg_failed = yes; then
3131   	{ $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5
3132$as_echo "no" >&6; }
3133
3134if $PKG_CONFIG --atleast-pkgconfig-version 0.20; then
3135        _pkg_short_errors_supported=yes
3136else
3137        _pkg_short_errors_supported=no
3138fi
3139        if test $_pkg_short_errors_supported = yes; then
3140	        GTK_SHARP_PKG_ERRORS=`$PKG_CONFIG --short-errors --print-errors --cflags --libs "gtk-sharp-3.0 >= $GTK_SHARP_REQ_VERSION" 2>&1`
3141        else
3142	        GTK_SHARP_PKG_ERRORS=`$PKG_CONFIG --print-errors --cflags --libs "gtk-sharp-3.0 >= $GTK_SHARP_REQ_VERSION" 2>&1`
3143        fi
3144	# Put the nasty error message in config.log where it belongs
3145	echo "$GTK_SHARP_PKG_ERRORS" >&5
3146
3147	as_fn_error $? "Package requirements (gtk-sharp-3.0 >= $GTK_SHARP_REQ_VERSION) were not met:
3148
3149$GTK_SHARP_PKG_ERRORS
3150
3151Consider adjusting the PKG_CONFIG_PATH environment variable if you
3152installed software in a non-standard prefix.
3153
3154Alternatively, you may set the environment variables GTK_SHARP_CFLAGS
3155and GTK_SHARP_LIBS to avoid the need to call pkg-config.
3156See the pkg-config man page for more details." "$LINENO" 5
3157elif test $pkg_failed = untried; then
3158     	{ $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5
3159$as_echo "no" >&6; }
3160	{ { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5
3161$as_echo "$as_me: error: in \`$ac_pwd':" >&2;}
3162as_fn_error $? "The pkg-config script could not be found or is too old.  Make sure it
3163is in your PATH or set the PKG_CONFIG environment variable to the full
3164path to pkg-config.
3165
3166Alternatively, you may set the environment variables GTK_SHARP_CFLAGS
3167and GTK_SHARP_LIBS to avoid the need to call pkg-config.
3168See the pkg-config man page for more details.
3169
3170To get pkg-config, see <http://pkg-config.freedesktop.org/>.
3171See \`config.log' for more details" "$LINENO" 5; }
3172else
3173	GTK_SHARP_CFLAGS=$pkg_cv_GTK_SHARP_CFLAGS
3174	GTK_SHARP_LIBS=$pkg_cv_GTK_SHARP_LIBS
3175        { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5
3176$as_echo "yes" >&6; }
3177
3178fi
3179
3180
3181DBUS_SHARP_REQ_VERSION=0.7
3182DBUS_SHARP_GLIB_REQ_VERSION=0.5
3183
3184pkg_failed=no
3185{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for DBUS_SHARP" >&5
3186$as_echo_n "checking for DBUS_SHARP... " >&6; }
3187
3188if test -n "$DBUS_SHARP_CFLAGS"; then
3189    pkg_cv_DBUS_SHARP_CFLAGS="$DBUS_SHARP_CFLAGS"
3190 elif test -n "$PKG_CONFIG"; then
3191    if test -n "$PKG_CONFIG" && \
3192    { { $as_echo "$as_me:${as_lineno-$LINENO}: \$PKG_CONFIG --exists --print-errors \"dbus-sharp-2.0 >= \$DBUS_SHARP_REQ_VERSION \\
3193                              dbus-sharp-glib-2.0 >= \$DBUS_SHARP_GLIB_REQ_VERSION\""; } >&5
3194  ($PKG_CONFIG --exists --print-errors "dbus-sharp-2.0 >= $DBUS_SHARP_REQ_VERSION \
3195                              dbus-sharp-glib-2.0 >= $DBUS_SHARP_GLIB_REQ_VERSION") 2>&5
3196  ac_status=$?
3197  $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5
3198  test $ac_status = 0; }; then
3199  pkg_cv_DBUS_SHARP_CFLAGS=`$PKG_CONFIG --cflags "dbus-sharp-2.0 >= $DBUS_SHARP_REQ_VERSION \
3200                              dbus-sharp-glib-2.0 >= $DBUS_SHARP_GLIB_REQ_VERSION" 2>/dev/null`
3201		      test "x$?" != "x0" && pkg_failed=yes
3202else
3203  pkg_failed=yes
3204fi
3205 else
3206    pkg_failed=untried
3207fi
3208if test -n "$DBUS_SHARP_LIBS"; then
3209    pkg_cv_DBUS_SHARP_LIBS="$DBUS_SHARP_LIBS"
3210 elif test -n "$PKG_CONFIG"; then
3211    if test -n "$PKG_CONFIG" && \
3212    { { $as_echo "$as_me:${as_lineno-$LINENO}: \$PKG_CONFIG --exists --print-errors \"dbus-sharp-2.0 >= \$DBUS_SHARP_REQ_VERSION \\
3213                              dbus-sharp-glib-2.0 >= \$DBUS_SHARP_GLIB_REQ_VERSION\""; } >&5
3214  ($PKG_CONFIG --exists --print-errors "dbus-sharp-2.0 >= $DBUS_SHARP_REQ_VERSION \
3215                              dbus-sharp-glib-2.0 >= $DBUS_SHARP_GLIB_REQ_VERSION") 2>&5
3216  ac_status=$?
3217  $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5
3218  test $ac_status = 0; }; then
3219  pkg_cv_DBUS_SHARP_LIBS=`$PKG_CONFIG --libs "dbus-sharp-2.0 >= $DBUS_SHARP_REQ_VERSION \
3220                              dbus-sharp-glib-2.0 >= $DBUS_SHARP_GLIB_REQ_VERSION" 2>/dev/null`
3221		      test "x$?" != "x0" && pkg_failed=yes
3222else
3223  pkg_failed=yes
3224fi
3225 else
3226    pkg_failed=untried
3227fi
3228
3229
3230
3231if test $pkg_failed = yes; then
3232   	{ $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5
3233$as_echo "no" >&6; }
3234
3235if $PKG_CONFIG --atleast-pkgconfig-version 0.20; then
3236        _pkg_short_errors_supported=yes
3237else
3238        _pkg_short_errors_supported=no
3239fi
3240        if test $_pkg_short_errors_supported = yes; then
3241	        DBUS_SHARP_PKG_ERRORS=`$PKG_CONFIG --short-errors --print-errors --cflags --libs "dbus-sharp-2.0 >= $DBUS_SHARP_REQ_VERSION \
3242                              dbus-sharp-glib-2.0 >= $DBUS_SHARP_GLIB_REQ_VERSION" 2>&1`
3243        else
3244	        DBUS_SHARP_PKG_ERRORS=`$PKG_CONFIG --print-errors --cflags --libs "dbus-sharp-2.0 >= $DBUS_SHARP_REQ_VERSION \
3245                              dbus-sharp-glib-2.0 >= $DBUS_SHARP_GLIB_REQ_VERSION" 2>&1`
3246        fi
3247	# Put the nasty error message in config.log where it belongs
3248	echo "$DBUS_SHARP_PKG_ERRORS" >&5
3249
3250	as_fn_error $? "Package requirements (dbus-sharp-2.0 >= $DBUS_SHARP_REQ_VERSION \
3251                              dbus-sharp-glib-2.0 >= $DBUS_SHARP_GLIB_REQ_VERSION) were not met:
3252
3253$DBUS_SHARP_PKG_ERRORS
3254
3255Consider adjusting the PKG_CONFIG_PATH environment variable if you
3256installed software in a non-standard prefix.
3257
3258Alternatively, you may set the environment variables DBUS_SHARP_CFLAGS
3259and DBUS_SHARP_LIBS to avoid the need to call pkg-config.
3260See the pkg-config man page for more details." "$LINENO" 5
3261elif test $pkg_failed = untried; then
3262     	{ $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5
3263$as_echo "no" >&6; }
3264	{ { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5
3265$as_echo "$as_me: error: in \`$ac_pwd':" >&2;}
3266as_fn_error $? "The pkg-config script could not be found or is too old.  Make sure it
3267is in your PATH or set the PKG_CONFIG environment variable to the full
3268path to pkg-config.
3269
3270Alternatively, you may set the environment variables DBUS_SHARP_CFLAGS
3271and DBUS_SHARP_LIBS to avoid the need to call pkg-config.
3272See the pkg-config man page for more details.
3273
3274To get pkg-config, see <http://pkg-config.freedesktop.org/>.
3275See \`config.log' for more details" "$LINENO" 5; }
3276else
3277	DBUS_SHARP_CFLAGS=$pkg_cv_DBUS_SHARP_CFLAGS
3278	DBUS_SHARP_LIBS=$pkg_cv_DBUS_SHARP_LIBS
3279        { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5
3280$as_echo "yes" >&6; }
3281
3282fi
3283
3284
3285required_assemblies="Mono.Posix"
3286
3287for asm in $required_assemblies; do
3288	{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $asm.dll" >&5
3289$as_echo_n "checking for $asm.dll... " >&6; }
3290	if test -n "`$GACUTIL /l $asm.dll | grep ^$asm.dll`"; then
3291		{ $as_echo "$as_me:${as_lineno-$LINENO}: result: not found" >&5
3292$as_echo "not found" >&6; }
3293		as_fn_error $? "missing required assembly in the GAC: $asm.dll" "$LINENO" 5
3294	else
3295		{ $as_echo "$as_me:${as_lineno-$LINENO}: result: found" >&5
3296$as_echo "found" >&6; }
3297	fi
3298done
3299
3300ac_config_files="$ac_config_files Makefile notify-sharp-3.0.pc src/Makefile src/AssemblyInfo.cs docs/Makefile"
3301
3302cat >confcache <<\_ACEOF
3303# This file is a shell script that caches the results of configure
3304# tests run on this system so they can be shared between configure
3305# scripts and configure runs, see configure's option --config-cache.
3306# It is not useful on other systems.  If it contains results you don't
3307# want to keep, you may remove or edit it.
3308#
3309# config.status only pays attention to the cache file if you give it
3310# the --recheck option to rerun configure.
3311#
3312# `ac_cv_env_foo' variables (set or unset) will be overridden when
3313# loading this file, other *unset* `ac_cv_foo' will be assigned the
3314# following values.
3315
3316_ACEOF
3317
3318# The following way of writing the cache mishandles newlines in values,
3319# but we know of no workaround that is simple, portable, and efficient.
3320# So, we kill variables containing newlines.
3321# Ultrix sh set writes to stderr and can't be redirected directly,
3322# and sets the high bit in the cache file unless we assign to the vars.
3323(
3324  for ac_var in `(set) 2>&1 | sed -n 's/^\([a-zA-Z_][a-zA-Z0-9_]*\)=.*/\1/p'`; do
3325    eval ac_val=\$$ac_var
3326    case $ac_val in #(
3327    *${as_nl}*)
3328      case $ac_var in #(
3329      *_cv_*) { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: cache variable $ac_var contains a newline" >&5
3330$as_echo "$as_me: WARNING: cache variable $ac_var contains a newline" >&2;} ;;
3331      esac
3332      case $ac_var in #(
3333      _ | IFS | as_nl) ;; #(
3334      BASH_ARGV | BASH_SOURCE) eval $ac_var= ;; #(
3335      *) { eval $ac_var=; unset $ac_var;} ;;
3336      esac ;;
3337    esac
3338  done
3339
3340  (set) 2>&1 |
3341    case $as_nl`(ac_space=' '; set) 2>&1` in #(
3342    *${as_nl}ac_space=\ *)
3343      # `set' does not quote correctly, so add quotes: double-quote
3344      # substitution turns \\\\ into \\, and sed turns \\ into \.
3345      sed -n \
3346	"s/'/'\\\\''/g;
3347	  s/^\\([_$as_cr_alnum]*_cv_[_$as_cr_alnum]*\\)=\\(.*\\)/\\1='\\2'/p"
3348      ;; #(
3349    *)
3350      # `set' quotes correctly as required by POSIX, so do not add quotes.
3351      sed -n "/^[_$as_cr_alnum]*_cv_[_$as_cr_alnum]*=/p"
3352      ;;
3353    esac |
3354    sort
3355) |
3356  sed '
3357     /^ac_cv_env_/b end
3358     t clear
3359     :clear
3360     s/^\([^=]*\)=\(.*[{}].*\)$/test "${\1+set}" = set || &/
3361     t end
3362     s/^\([^=]*\)=\(.*\)$/\1=${\1=\2}/
3363     :end' >>confcache
3364if diff "$cache_file" confcache >/dev/null 2>&1; then :; else
3365  if test -w "$cache_file"; then
3366    if test "x$cache_file" != "x/dev/null"; then
3367      { $as_echo "$as_me:${as_lineno-$LINENO}: updating cache $cache_file" >&5
3368$as_echo "$as_me: updating cache $cache_file" >&6;}
3369      if test ! -f "$cache_file" || test -h "$cache_file"; then
3370	cat confcache >"$cache_file"
3371      else
3372        case $cache_file in #(
3373        */* | ?:*)
3374	  mv -f confcache "$cache_file"$$ &&
3375	  mv -f "$cache_file"$$ "$cache_file" ;; #(
3376        *)
3377	  mv -f confcache "$cache_file" ;;
3378	esac
3379      fi
3380    fi
3381  else
3382    { $as_echo "$as_me:${as_lineno-$LINENO}: not updating unwritable cache $cache_file" >&5
3383$as_echo "$as_me: not updating unwritable cache $cache_file" >&6;}
3384  fi
3385fi
3386rm -f confcache
3387
3388test "x$prefix" = xNONE && prefix=$ac_default_prefix
3389# Let make expand exec_prefix.
3390test "x$exec_prefix" = xNONE && exec_prefix='${prefix}'
3391
3392# Transform confdefs.h into DEFS.
3393# Protect against shell expansion while executing Makefile rules.
3394# Protect against Makefile macro expansion.
3395#
3396# If the first sed substitution is executed (which looks for macros that
3397# take arguments), then branch to the quote section.  Otherwise,
3398# look for a macro that doesn't take arguments.
3399ac_script='
3400:mline
3401/\\$/{
3402 N
3403 s,\\\n,,
3404 b mline
3405}
3406t clear
3407:clear
3408s/^[	 ]*#[	 ]*define[	 ][	 ]*\([^	 (][^	 (]*([^)]*)\)[	 ]*\(.*\)/-D\1=\2/g
3409t quote
3410s/^[	 ]*#[	 ]*define[	 ][	 ]*\([^	 ][^	 ]*\)[	 ]*\(.*\)/-D\1=\2/g
3411t quote
3412b any
3413:quote
3414s/[	 `~#$^&*(){}\\|;'\''"<>?]/\\&/g
3415s/\[/\\&/g
3416s/\]/\\&/g
3417s/\$/$$/g
3418H
3419:any
3420${
3421	g
3422	s/^\n//
3423	s/\n/ /g
3424	p
3425}
3426'
3427DEFS=`sed -n "$ac_script" confdefs.h`
3428
3429
3430ac_libobjs=
3431ac_ltlibobjs=
3432U=
3433for ac_i in : $LIBOBJS; do test "x$ac_i" = x: && continue
3434  # 1. Remove the extension, and $U if already installed.
3435  ac_script='s/\$U\././;s/\.o$//;s/\.obj$//'
3436  ac_i=`$as_echo "$ac_i" | sed "$ac_script"`
3437  # 2. Prepend LIBOBJDIR.  When used with automake>=1.10 LIBOBJDIR
3438  #    will be set to the directory where LIBOBJS objects are built.
3439  as_fn_append ac_libobjs " \${LIBOBJDIR}$ac_i\$U.$ac_objext"
3440  as_fn_append ac_ltlibobjs " \${LIBOBJDIR}$ac_i"'$U.lo'
3441done
3442LIBOBJS=$ac_libobjs
3443
3444LTLIBOBJS=$ac_ltlibobjs
3445
3446
3447{ $as_echo "$as_me:${as_lineno-$LINENO}: checking that generated files are newer than configure" >&5
3448$as_echo_n "checking that generated files are newer than configure... " >&6; }
3449   if test -n "$am_sleep_pid"; then
3450     # Hide warnings about reused PIDs.
3451     wait $am_sleep_pid 2>/dev/null
3452   fi
3453   { $as_echo "$as_me:${as_lineno-$LINENO}: result: done" >&5
3454$as_echo "done" >&6; }
3455
3456if test -z "${MAINTAINER_MODE_TRUE}" && test -z "${MAINTAINER_MODE_FALSE}"; then
3457  as_fn_error $? "conditional \"MAINTAINER_MODE\" was never defined.
3458Usually this means the macro was only invoked conditionally." "$LINENO" 5
3459fi
3460if test -z "${BUILD_DOCS_TRUE}" && test -z "${BUILD_DOCS_FALSE}"; then
3461  as_fn_error $? "conditional \"BUILD_DOCS\" was never defined.
3462Usually this means the macro was only invoked conditionally." "$LINENO" 5
3463fi
3464if test -z "${BUILD_DOCS_TRUE}" && test -z "${BUILD_DOCS_FALSE}"; then
3465  as_fn_error $? "conditional \"BUILD_DOCS\" was never defined.
3466Usually this means the macro was only invoked conditionally." "$LINENO" 5
3467fi
3468
3469: "${CONFIG_STATUS=./config.status}"
3470ac_write_fail=0
3471ac_clean_files_save=$ac_clean_files
3472ac_clean_files="$ac_clean_files $CONFIG_STATUS"
3473{ $as_echo "$as_me:${as_lineno-$LINENO}: creating $CONFIG_STATUS" >&5
3474$as_echo "$as_me: creating $CONFIG_STATUS" >&6;}
3475as_write_fail=0
3476cat >$CONFIG_STATUS <<_ASEOF || as_write_fail=1
3477#! $SHELL
3478# Generated by $as_me.
3479# Run this file to recreate the current configuration.
3480# Compiler output produced by configure, useful for debugging
3481# configure, is in config.log if it exists.
3482
3483debug=false
3484ac_cs_recheck=false
3485ac_cs_silent=false
3486
3487SHELL=\${CONFIG_SHELL-$SHELL}
3488export SHELL
3489_ASEOF
3490cat >>$CONFIG_STATUS <<\_ASEOF || as_write_fail=1
3491## -------------------- ##
3492## M4sh Initialization. ##
3493## -------------------- ##
3494
3495# Be more Bourne compatible
3496DUALCASE=1; export DUALCASE # for MKS sh
3497if test -n "${ZSH_VERSION+set}" && (emulate sh) >/dev/null 2>&1; then :
3498  emulate sh
3499  NULLCMD=:
3500  # Pre-4.2 versions of Zsh do word splitting on ${1+"$@"}, which
3501  # is contrary to our usage.  Disable this feature.
3502  alias -g '${1+"$@"}'='"$@"'
3503  setopt NO_GLOB_SUBST
3504else
3505  case `(set -o) 2>/dev/null` in #(
3506  *posix*) :
3507    set -o posix ;; #(
3508  *) :
3509     ;;
3510esac
3511fi
3512
3513
3514as_nl='
3515'
3516export as_nl
3517# Printing a long string crashes Solaris 7 /usr/bin/printf.
3518as_echo='\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\'
3519as_echo=$as_echo$as_echo$as_echo$as_echo$as_echo
3520as_echo=$as_echo$as_echo$as_echo$as_echo$as_echo$as_echo
3521# Prefer a ksh shell builtin over an external printf program on Solaris,
3522# but without wasting forks for bash or zsh.
3523if test -z "$BASH_VERSION$ZSH_VERSION" \
3524    && (test "X`print -r -- $as_echo`" = "X$as_echo") 2>/dev/null; then
3525  as_echo='print -r --'
3526  as_echo_n='print -rn --'
3527elif (test "X`printf %s $as_echo`" = "X$as_echo") 2>/dev/null; then
3528  as_echo='printf %s\n'
3529  as_echo_n='printf %s'
3530else
3531  if test "X`(/usr/ucb/echo -n -n $as_echo) 2>/dev/null`" = "X-n $as_echo"; then
3532    as_echo_body='eval /usr/ucb/echo -n "$1$as_nl"'
3533    as_echo_n='/usr/ucb/echo -n'
3534  else
3535    as_echo_body='eval expr "X$1" : "X\\(.*\\)"'
3536    as_echo_n_body='eval
3537      arg=$1;
3538      case $arg in #(
3539      *"$as_nl"*)
3540	expr "X$arg" : "X\\(.*\\)$as_nl";
3541	arg=`expr "X$arg" : ".*$as_nl\\(.*\\)"`;;
3542      esac;
3543      expr "X$arg" : "X\\(.*\\)" | tr -d "$as_nl"
3544    '
3545    export as_echo_n_body
3546    as_echo_n='sh -c $as_echo_n_body as_echo'
3547  fi
3548  export as_echo_body
3549  as_echo='sh -c $as_echo_body as_echo'
3550fi
3551
3552# The user is always right.
3553if test "${PATH_SEPARATOR+set}" != set; then
3554  PATH_SEPARATOR=:
3555  (PATH='/bin;/bin'; FPATH=$PATH; sh -c :) >/dev/null 2>&1 && {
3556    (PATH='/bin:/bin'; FPATH=$PATH; sh -c :) >/dev/null 2>&1 ||
3557      PATH_SEPARATOR=';'
3558  }
3559fi
3560
3561
3562# IFS
3563# We need space, tab and new line, in precisely that order.  Quoting is
3564# there to prevent editors from complaining about space-tab.
3565# (If _AS_PATH_WALK were called with IFS unset, it would disable word
3566# splitting by setting IFS to empty value.)
3567IFS=" ""	$as_nl"
3568
3569# Find who we are.  Look in the path if we contain no directory separator.
3570as_myself=
3571case $0 in #((
3572  *[\\/]* ) as_myself=$0 ;;
3573  *) as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
3574for as_dir in $PATH
3575do
3576  IFS=$as_save_IFS
3577  test -z "$as_dir" && as_dir=.
3578    test -r "$as_dir/$0" && as_myself=$as_dir/$0 && break
3579  done
3580IFS=$as_save_IFS
3581
3582     ;;
3583esac
3584# We did not find ourselves, most probably we were run as `sh COMMAND'
3585# in which case we are not to be found in the path.
3586if test "x$as_myself" = x; then
3587  as_myself=$0
3588fi
3589if test ! -f "$as_myself"; then
3590  $as_echo "$as_myself: error: cannot find myself; rerun with an absolute file name" >&2
3591  exit 1
3592fi
3593
3594# Unset variables that we do not need and which cause bugs (e.g. in
3595# pre-3.0 UWIN ksh).  But do not cause bugs in bash 2.01; the "|| exit 1"
3596# suppresses any "Segmentation fault" message there.  '((' could
3597# trigger a bug in pdksh 5.2.14.
3598for as_var in BASH_ENV ENV MAIL MAILPATH
3599do eval test x\${$as_var+set} = xset \
3600  && ( (unset $as_var) || exit 1) >/dev/null 2>&1 && unset $as_var || :
3601done
3602PS1='$ '
3603PS2='> '
3604PS4='+ '
3605
3606# NLS nuisances.
3607LC_ALL=C
3608export LC_ALL
3609LANGUAGE=C
3610export LANGUAGE
3611
3612# CDPATH.
3613(unset CDPATH) >/dev/null 2>&1 && unset CDPATH
3614
3615
3616# as_fn_error STATUS ERROR [LINENO LOG_FD]
3617# ----------------------------------------
3618# Output "`basename $0`: error: ERROR" to stderr. If LINENO and LOG_FD are
3619# provided, also output the error to LOG_FD, referencing LINENO. Then exit the
3620# script with STATUS, using 1 if that was 0.
3621as_fn_error ()
3622{
3623  as_status=$1; test $as_status -eq 0 && as_status=1
3624  if test "$4"; then
3625    as_lineno=${as_lineno-"$3"} as_lineno_stack=as_lineno_stack=$as_lineno_stack
3626    $as_echo "$as_me:${as_lineno-$LINENO}: error: $2" >&$4
3627  fi
3628  $as_echo "$as_me: error: $2" >&2
3629  as_fn_exit $as_status
3630} # as_fn_error
3631
3632
3633# as_fn_set_status STATUS
3634# -----------------------
3635# Set $? to STATUS, without forking.
3636as_fn_set_status ()
3637{
3638  return $1
3639} # as_fn_set_status
3640
3641# as_fn_exit STATUS
3642# -----------------
3643# Exit the shell with STATUS, even in a "trap 0" or "set -e" context.
3644as_fn_exit ()
3645{
3646  set +e
3647  as_fn_set_status $1
3648  exit $1
3649} # as_fn_exit
3650
3651# as_fn_unset VAR
3652# ---------------
3653# Portably unset VAR.
3654as_fn_unset ()
3655{
3656  { eval $1=; unset $1;}
3657}
3658as_unset=as_fn_unset
3659# as_fn_append VAR VALUE
3660# ----------------------
3661# Append the text in VALUE to the end of the definition contained in VAR. Take
3662# advantage of any shell optimizations that allow amortized linear growth over
3663# repeated appends, instead of the typical quadratic growth present in naive
3664# implementations.
3665if (eval "as_var=1; as_var+=2; test x\$as_var = x12") 2>/dev/null; then :
3666  eval 'as_fn_append ()
3667  {
3668    eval $1+=\$2
3669  }'
3670else
3671  as_fn_append ()
3672  {
3673    eval $1=\$$1\$2
3674  }
3675fi # as_fn_append
3676
3677# as_fn_arith ARG...
3678# ------------------
3679# Perform arithmetic evaluation on the ARGs, and store the result in the
3680# global $as_val. Take advantage of shells that can avoid forks. The arguments
3681# must be portable across $(()) and expr.
3682if (eval "test \$(( 1 + 1 )) = 2") 2>/dev/null; then :
3683  eval 'as_fn_arith ()
3684  {
3685    as_val=$(( $* ))
3686  }'
3687else
3688  as_fn_arith ()
3689  {
3690    as_val=`expr "$@" || test $? -eq 1`
3691  }
3692fi # as_fn_arith
3693
3694
3695if expr a : '\(a\)' >/dev/null 2>&1 &&
3696   test "X`expr 00001 : '.*\(...\)'`" = X001; then
3697  as_expr=expr
3698else
3699  as_expr=false
3700fi
3701
3702if (basename -- /) >/dev/null 2>&1 && test "X`basename -- / 2>&1`" = "X/"; then
3703  as_basename=basename
3704else
3705  as_basename=false
3706fi
3707
3708if (as_dir=`dirname -- /` && test "X$as_dir" = X/) >/dev/null 2>&1; then
3709  as_dirname=dirname
3710else
3711  as_dirname=false
3712fi
3713
3714as_me=`$as_basename -- "$0" ||
3715$as_expr X/"$0" : '.*/\([^/][^/]*\)/*$' \| \
3716	 X"$0" : 'X\(//\)$' \| \
3717	 X"$0" : 'X\(/\)' \| . 2>/dev/null ||
3718$as_echo X/"$0" |
3719    sed '/^.*\/\([^/][^/]*\)\/*$/{
3720	    s//\1/
3721	    q
3722	  }
3723	  /^X\/\(\/\/\)$/{
3724	    s//\1/
3725	    q
3726	  }
3727	  /^X\/\(\/\).*/{
3728	    s//\1/
3729	    q
3730	  }
3731	  s/.*/./; q'`
3732
3733# Avoid depending upon Character Ranges.
3734as_cr_letters='abcdefghijklmnopqrstuvwxyz'
3735as_cr_LETTERS='ABCDEFGHIJKLMNOPQRSTUVWXYZ'
3736as_cr_Letters=$as_cr_letters$as_cr_LETTERS
3737as_cr_digits='0123456789'
3738as_cr_alnum=$as_cr_Letters$as_cr_digits
3739
3740ECHO_C= ECHO_N= ECHO_T=
3741case `echo -n x` in #(((((
3742-n*)
3743  case `echo 'xy\c'` in
3744  *c*) ECHO_T='	';;	# ECHO_T is single tab character.
3745  xy)  ECHO_C='\c';;
3746  *)   echo `echo ksh88 bug on AIX 6.1` > /dev/null
3747       ECHO_T='	';;
3748  esac;;
3749*)
3750  ECHO_N='-n';;
3751esac
3752
3753rm -f conf$$ conf$$.exe conf$$.file
3754if test -d conf$$.dir; then
3755  rm -f conf$$.dir/conf$$.file
3756else
3757  rm -f conf$$.dir
3758  mkdir conf$$.dir 2>/dev/null
3759fi
3760if (echo >conf$$.file) 2>/dev/null; then
3761  if ln -s conf$$.file conf$$ 2>/dev/null; then
3762    as_ln_s='ln -s'
3763    # ... but there are two gotchas:
3764    # 1) On MSYS, both `ln -s file dir' and `ln file dir' fail.
3765    # 2) DJGPP < 2.04 has no symlinks; `ln -s' creates a wrapper executable.
3766    # In both cases, we have to default to `cp -pR'.
3767    ln -s conf$$.file conf$$.dir 2>/dev/null && test ! -f conf$$.exe ||
3768      as_ln_s='cp -pR'
3769  elif ln conf$$.file conf$$ 2>/dev/null; then
3770    as_ln_s=ln
3771  else
3772    as_ln_s='cp -pR'
3773  fi
3774else
3775  as_ln_s='cp -pR'
3776fi
3777rm -f conf$$ conf$$.exe conf$$.dir/conf$$.file conf$$.file
3778rmdir conf$$.dir 2>/dev/null
3779
3780
3781# as_fn_mkdir_p
3782# -------------
3783# Create "$as_dir" as a directory, including parents if necessary.
3784as_fn_mkdir_p ()
3785{
3786
3787  case $as_dir in #(
3788  -*) as_dir=./$as_dir;;
3789  esac
3790  test -d "$as_dir" || eval $as_mkdir_p || {
3791    as_dirs=
3792    while :; do
3793      case $as_dir in #(
3794      *\'*) as_qdir=`$as_echo "$as_dir" | sed "s/'/'\\\\\\\\''/g"`;; #'(
3795      *) as_qdir=$as_dir;;
3796      esac
3797      as_dirs="'$as_qdir' $as_dirs"
3798      as_dir=`$as_dirname -- "$as_dir" ||
3799$as_expr X"$as_dir" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \
3800	 X"$as_dir" : 'X\(//\)[^/]' \| \
3801	 X"$as_dir" : 'X\(//\)$' \| \
3802	 X"$as_dir" : 'X\(/\)' \| . 2>/dev/null ||
3803$as_echo X"$as_dir" |
3804    sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{
3805	    s//\1/
3806	    q
3807	  }
3808	  /^X\(\/\/\)[^/].*/{
3809	    s//\1/
3810	    q
3811	  }
3812	  /^X\(\/\/\)$/{
3813	    s//\1/
3814	    q
3815	  }
3816	  /^X\(\/\).*/{
3817	    s//\1/
3818	    q
3819	  }
3820	  s/.*/./; q'`
3821      test -d "$as_dir" && break
3822    done
3823    test -z "$as_dirs" || eval "mkdir $as_dirs"
3824  } || test -d "$as_dir" || as_fn_error $? "cannot create directory $as_dir"
3825
3826
3827} # as_fn_mkdir_p
3828if mkdir -p . 2>/dev/null; then
3829  as_mkdir_p='mkdir -p "$as_dir"'
3830else
3831  test -d ./-p && rmdir ./-p
3832  as_mkdir_p=false
3833fi
3834
3835
3836# as_fn_executable_p FILE
3837# -----------------------
3838# Test if FILE is an executable regular file.
3839as_fn_executable_p ()
3840{
3841  test -f "$1" && test -x "$1"
3842} # as_fn_executable_p
3843as_test_x='test -x'
3844as_executable_p=as_fn_executable_p
3845
3846# Sed expression to map a string onto a valid CPP name.
3847as_tr_cpp="eval sed 'y%*$as_cr_letters%P$as_cr_LETTERS%;s%[^_$as_cr_alnum]%_%g'"
3848
3849# Sed expression to map a string onto a valid variable name.
3850as_tr_sh="eval sed 'y%*+%pp%;s%[^_$as_cr_alnum]%_%g'"
3851
3852
3853exec 6>&1
3854## ----------------------------------- ##
3855## Main body of $CONFIG_STATUS script. ##
3856## ----------------------------------- ##
3857_ASEOF
3858test $as_write_fail = 0 && chmod +x $CONFIG_STATUS || ac_write_fail=1
3859
3860cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1
3861# Save the log message, to keep $0 and so on meaningful, and to
3862# report actual input values of CONFIG_FILES etc. instead of their
3863# values after options handling.
3864ac_log="
3865This file was extended by notify-sharp $as_me 3.0.3, which was
3866generated by GNU Autoconf 2.69.  Invocation command line was
3867
3868  CONFIG_FILES    = $CONFIG_FILES
3869  CONFIG_HEADERS  = $CONFIG_HEADERS
3870  CONFIG_LINKS    = $CONFIG_LINKS
3871  CONFIG_COMMANDS = $CONFIG_COMMANDS
3872  $ $0 $@
3873
3874on `(hostname || uname -n) 2>/dev/null | sed 1q`
3875"
3876
3877_ACEOF
3878
3879case $ac_config_files in *"
3880"*) set x $ac_config_files; shift; ac_config_files=$*;;
3881esac
3882
3883
3884
3885cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1
3886# Files that config.status was made for.
3887config_files="$ac_config_files"
3888
3889_ACEOF
3890
3891cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1
3892ac_cs_usage="\
3893\`$as_me' instantiates files and other configuration actions
3894from templates according to the current configuration.  Unless the files
3895and actions are specified as TAGs, all are instantiated by default.
3896
3897Usage: $0 [OPTION]... [TAG]...
3898
3899  -h, --help       print this help, then exit
3900  -V, --version    print version number and configuration settings, then exit
3901      --config     print configuration, then exit
3902  -q, --quiet, --silent
3903                   do not print progress messages
3904  -d, --debug      don't remove temporary files
3905      --recheck    update $as_me by reconfiguring in the same conditions
3906      --file=FILE[:TEMPLATE]
3907                   instantiate the configuration file FILE
3908
3909Configuration files:
3910$config_files
3911
3912Report bugs to the package provider."
3913
3914_ACEOF
3915cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1
3916ac_cs_config="`$as_echo "$ac_configure_args" | sed 's/^ //; s/[\\""\`\$]/\\\\&/g'`"
3917ac_cs_version="\\
3918notify-sharp config.status 3.0.3
3919configured by $0, generated by GNU Autoconf 2.69,
3920  with options \\"\$ac_cs_config\\"
3921
3922Copyright (C) 2012 Free Software Foundation, Inc.
3923This config.status script is free software; the Free Software Foundation
3924gives unlimited permission to copy, distribute and modify it."
3925
3926ac_pwd='$ac_pwd'
3927srcdir='$srcdir'
3928INSTALL='$INSTALL'
3929MKDIR_P='$MKDIR_P'
3930AWK='$AWK'
3931test -n "\$AWK" || AWK=awk
3932_ACEOF
3933
3934cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1
3935# The default lists apply if the user does not specify any file.
3936ac_need_defaults=:
3937while test $# != 0
3938do
3939  case $1 in
3940  --*=?*)
3941    ac_option=`expr "X$1" : 'X\([^=]*\)='`
3942    ac_optarg=`expr "X$1" : 'X[^=]*=\(.*\)'`
3943    ac_shift=:
3944    ;;
3945  --*=)
3946    ac_option=`expr "X$1" : 'X\([^=]*\)='`
3947    ac_optarg=
3948    ac_shift=:
3949    ;;
3950  *)
3951    ac_option=$1
3952    ac_optarg=$2
3953    ac_shift=shift
3954    ;;
3955  esac
3956
3957  case $ac_option in
3958  # Handling of the options.
3959  -recheck | --recheck | --rechec | --reche | --rech | --rec | --re | --r)
3960    ac_cs_recheck=: ;;
3961  --version | --versio | --versi | --vers | --ver | --ve | --v | -V )
3962    $as_echo "$ac_cs_version"; exit ;;
3963  --config | --confi | --conf | --con | --co | --c )
3964    $as_echo "$ac_cs_config"; exit ;;
3965  --debug | --debu | --deb | --de | --d | -d )
3966    debug=: ;;
3967  --file | --fil | --fi | --f )
3968    $ac_shift
3969    case $ac_optarg in
3970    *\'*) ac_optarg=`$as_echo "$ac_optarg" | sed "s/'/'\\\\\\\\''/g"` ;;
3971    '') as_fn_error $? "missing file argument" ;;
3972    esac
3973    as_fn_append CONFIG_FILES " '$ac_optarg'"
3974    ac_need_defaults=false;;
3975  --he | --h |  --help | --hel | -h )
3976    $as_echo "$ac_cs_usage"; exit ;;
3977  -q | -quiet | --quiet | --quie | --qui | --qu | --q \
3978  | -silent | --silent | --silen | --sile | --sil | --si | --s)
3979    ac_cs_silent=: ;;
3980
3981  # This is an error.
3982  -*) as_fn_error $? "unrecognized option: \`$1'
3983Try \`$0 --help' for more information." ;;
3984
3985  *) as_fn_append ac_config_targets " $1"
3986     ac_need_defaults=false ;;
3987
3988  esac
3989  shift
3990done
3991
3992ac_configure_extra_args=
3993
3994if $ac_cs_silent; then
3995  exec 6>/dev/null
3996  ac_configure_extra_args="$ac_configure_extra_args --silent"
3997fi
3998
3999_ACEOF
4000cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1
4001if \$ac_cs_recheck; then
4002  set X $SHELL '$0' $ac_configure_args \$ac_configure_extra_args --no-create --no-recursion
4003  shift
4004  \$as_echo "running CONFIG_SHELL=$SHELL \$*" >&6
4005  CONFIG_SHELL='$SHELL'
4006  export CONFIG_SHELL
4007  exec "\$@"
4008fi
4009
4010_ACEOF
4011cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1
4012exec 5>>config.log
4013{
4014  echo
4015  sed 'h;s/./-/g;s/^.../## /;s/...$/ ##/;p;x;p;x' <<_ASBOX
4016## Running $as_me. ##
4017_ASBOX
4018  $as_echo "$ac_log"
4019} >&5
4020
4021_ACEOF
4022cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1
4023_ACEOF
4024
4025cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1
4026
4027# Handling of arguments.
4028for ac_config_target in $ac_config_targets
4029do
4030  case $ac_config_target in
4031    "Makefile") CONFIG_FILES="$CONFIG_FILES Makefile" ;;
4032    "notify-sharp-3.0.pc") CONFIG_FILES="$CONFIG_FILES notify-sharp-3.0.pc" ;;
4033    "src/Makefile") CONFIG_FILES="$CONFIG_FILES src/Makefile" ;;
4034    "src/AssemblyInfo.cs") CONFIG_FILES="$CONFIG_FILES src/AssemblyInfo.cs" ;;
4035    "docs/Makefile") CONFIG_FILES="$CONFIG_FILES docs/Makefile" ;;
4036
4037  *) as_fn_error $? "invalid argument: \`$ac_config_target'" "$LINENO" 5;;
4038  esac
4039done
4040
4041
4042# If the user did not use the arguments to specify the items to instantiate,
4043# then the envvar interface is used.  Set only those that are not.
4044# We use the long form for the default assignment because of an extremely
4045# bizarre bug on SunOS 4.1.3.
4046if $ac_need_defaults; then
4047  test "${CONFIG_FILES+set}" = set || CONFIG_FILES=$config_files
4048fi
4049
4050# Have a temporary directory for convenience.  Make it in the build tree
4051# simply because there is no reason against having it here, and in addition,
4052# creating and moving files from /tmp can sometimes cause problems.
4053# Hook for its removal unless debugging.
4054# Note that there is a small window in which the directory will not be cleaned:
4055# after its creation but before its name has been assigned to `$tmp'.
4056$debug ||
4057{
4058  tmp= ac_tmp=
4059  trap 'exit_status=$?
4060  : "${ac_tmp:=$tmp}"
4061  { test ! -d "$ac_tmp" || rm -fr "$ac_tmp"; } && exit $exit_status
4062' 0
4063  trap 'as_fn_exit 1' 1 2 13 15
4064}
4065# Create a (secure) tmp directory for tmp files.
4066
4067{
4068  tmp=`(umask 077 && mktemp -d "./confXXXXXX") 2>/dev/null` &&
4069  test -d "$tmp"
4070}  ||
4071{
4072  tmp=./conf$$-$RANDOM
4073  (umask 077 && mkdir "$tmp")
4074} || as_fn_error $? "cannot create a temporary directory in ." "$LINENO" 5
4075ac_tmp=$tmp
4076
4077# Set up the scripts for CONFIG_FILES section.
4078# No need to generate them if there are no CONFIG_FILES.
4079# This happens for instance with `./config.status config.h'.
4080if test -n "$CONFIG_FILES"; then
4081
4082
4083ac_cr=`echo X | tr X '\015'`
4084# On cygwin, bash can eat \r inside `` if the user requested igncr.
4085# But we know of no other shell where ac_cr would be empty at this
4086# point, so we can use a bashism as a fallback.
4087if test "x$ac_cr" = x; then
4088  eval ac_cr=\$\'\\r\'
4089fi
4090ac_cs_awk_cr=`$AWK 'BEGIN { print "a\rb" }' </dev/null 2>/dev/null`
4091if test "$ac_cs_awk_cr" = "a${ac_cr}b"; then
4092  ac_cs_awk_cr='\\r'
4093else
4094  ac_cs_awk_cr=$ac_cr
4095fi
4096
4097echo 'BEGIN {' >"$ac_tmp/subs1.awk" &&
4098_ACEOF
4099
4100
4101{
4102  echo "cat >conf$$subs.awk <<_ACEOF" &&
4103  echo "$ac_subst_vars" | sed 's/.*/&!$&$ac_delim/' &&
4104  echo "_ACEOF"
4105} >conf$$subs.sh ||
4106  as_fn_error $? "could not make $CONFIG_STATUS" "$LINENO" 5
4107ac_delim_num=`echo "$ac_subst_vars" | grep -c '^'`
4108ac_delim='%!_!# '
4109for ac_last_try in false false false false false :; do
4110  . ./conf$$subs.sh ||
4111    as_fn_error $? "could not make $CONFIG_STATUS" "$LINENO" 5
4112
4113  ac_delim_n=`sed -n "s/.*$ac_delim\$/X/p" conf$$subs.awk | grep -c X`
4114  if test $ac_delim_n = $ac_delim_num; then
4115    break
4116  elif $ac_last_try; then
4117    as_fn_error $? "could not make $CONFIG_STATUS" "$LINENO" 5
4118  else
4119    ac_delim="$ac_delim!$ac_delim _$ac_delim!! "
4120  fi
4121done
4122rm -f conf$$subs.sh
4123
4124cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1
4125cat >>"\$ac_tmp/subs1.awk" <<\\_ACAWK &&
4126_ACEOF
4127sed -n '
4128h
4129s/^/S["/; s/!.*/"]=/
4130p
4131g
4132s/^[^!]*!//
4133:repl
4134t repl
4135s/'"$ac_delim"'$//
4136t delim
4137:nl
4138h
4139s/\(.\{148\}\)..*/\1/
4140t more1
4141s/["\\]/\\&/g; s/^/"/; s/$/\\n"\\/
4142p
4143n
4144b repl
4145:more1
4146s/["\\]/\\&/g; s/^/"/; s/$/"\\/
4147p
4148g
4149s/.\{148\}//
4150t nl
4151:delim
4152h
4153s/\(.\{148\}\)..*/\1/
4154t more2
4155s/["\\]/\\&/g; s/^/"/; s/$/"/
4156p
4157b
4158:more2
4159s/["\\]/\\&/g; s/^/"/; s/$/"\\/
4160p
4161g
4162s/.\{148\}//
4163t delim
4164' <conf$$subs.awk | sed '
4165/^[^""]/{
4166  N
4167  s/\n//
4168}
4169' >>$CONFIG_STATUS || ac_write_fail=1
4170rm -f conf$$subs.awk
4171cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1
4172_ACAWK
4173cat >>"\$ac_tmp/subs1.awk" <<_ACAWK &&
4174  for (key in S) S_is_set[key] = 1
4175  FS = ""
4176
4177}
4178{
4179  line = $ 0
4180  nfields = split(line, field, "@")
4181  substed = 0
4182  len = length(field[1])
4183  for (i = 2; i < nfields; i++) {
4184    key = field[i]
4185    keylen = length(key)
4186    if (S_is_set[key]) {
4187      value = S[key]
4188      line = substr(line, 1, len) "" value "" substr(line, len + keylen + 3)
4189      len += length(value) + length(field[++i])
4190      substed = 1
4191    } else
4192      len += 1 + keylen
4193  }
4194
4195  print line
4196}
4197
4198_ACAWK
4199_ACEOF
4200cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1
4201if sed "s/$ac_cr//" < /dev/null > /dev/null 2>&1; then
4202  sed "s/$ac_cr\$//; s/$ac_cr/$ac_cs_awk_cr/g"
4203else
4204  cat
4205fi < "$ac_tmp/subs1.awk" > "$ac_tmp/subs.awk" \
4206  || as_fn_error $? "could not setup config files machinery" "$LINENO" 5
4207_ACEOF
4208
4209# VPATH may cause trouble with some makes, so we remove sole $(srcdir),
4210# ${srcdir} and @srcdir@ entries from VPATH if srcdir is ".", strip leading and
4211# trailing colons and then remove the whole line if VPATH becomes empty
4212# (actually we leave an empty line to preserve line numbers).
4213if test "x$srcdir" = x.; then
4214  ac_vpsub='/^[	 ]*VPATH[	 ]*=[	 ]*/{
4215h
4216s///
4217s/^/:/
4218s/[	 ]*$/:/
4219s/:\$(srcdir):/:/g
4220s/:\${srcdir}:/:/g
4221s/:@srcdir@:/:/g
4222s/^:*//
4223s/:*$//
4224x
4225s/\(=[	 ]*\).*/\1/
4226G
4227s/\n//
4228s/^[^=]*=[	 ]*$//
4229}'
4230fi
4231
4232cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1
4233fi # test -n "$CONFIG_FILES"
4234
4235
4236eval set X "  :F $CONFIG_FILES      "
4237shift
4238for ac_tag
4239do
4240  case $ac_tag in
4241  :[FHLC]) ac_mode=$ac_tag; continue;;
4242  esac
4243  case $ac_mode$ac_tag in
4244  :[FHL]*:*);;
4245  :L* | :C*:*) as_fn_error $? "invalid tag \`$ac_tag'" "$LINENO" 5;;
4246  :[FH]-) ac_tag=-:-;;
4247  :[FH]*) ac_tag=$ac_tag:$ac_tag.in;;
4248  esac
4249  ac_save_IFS=$IFS
4250  IFS=:
4251  set x $ac_tag
4252  IFS=$ac_save_IFS
4253  shift
4254  ac_file=$1
4255  shift
4256
4257  case $ac_mode in
4258  :L) ac_source=$1;;
4259  :[FH])
4260    ac_file_inputs=
4261    for ac_f
4262    do
4263      case $ac_f in
4264      -) ac_f="$ac_tmp/stdin";;
4265      *) # Look for the file first in the build tree, then in the source tree
4266	 # (if the path is not absolute).  The absolute path cannot be DOS-style,
4267	 # because $ac_f cannot contain `:'.
4268	 test -f "$ac_f" ||
4269	   case $ac_f in
4270	   [\\/$]*) false;;
4271	   *) test -f "$srcdir/$ac_f" && ac_f="$srcdir/$ac_f";;
4272	   esac ||
4273	   as_fn_error 1 "cannot find input file: \`$ac_f'" "$LINENO" 5;;
4274      esac
4275      case $ac_f in *\'*) ac_f=`$as_echo "$ac_f" | sed "s/'/'\\\\\\\\''/g"`;; esac
4276      as_fn_append ac_file_inputs " '$ac_f'"
4277    done
4278
4279    # Let's still pretend it is `configure' which instantiates (i.e., don't
4280    # use $as_me), people would be surprised to read:
4281    #    /* config.h.  Generated by config.status.  */
4282    configure_input='Generated from '`
4283	  $as_echo "$*" | sed 's|^[^:]*/||;s|:[^:]*/|, |g'
4284	`' by configure.'
4285    if test x"$ac_file" != x-; then
4286      configure_input="$ac_file.  $configure_input"
4287      { $as_echo "$as_me:${as_lineno-$LINENO}: creating $ac_file" >&5
4288$as_echo "$as_me: creating $ac_file" >&6;}
4289    fi
4290    # Neutralize special characters interpreted by sed in replacement strings.
4291    case $configure_input in #(
4292    *\&* | *\|* | *\\* )
4293       ac_sed_conf_input=`$as_echo "$configure_input" |
4294       sed 's/[\\\\&|]/\\\\&/g'`;; #(
4295    *) ac_sed_conf_input=$configure_input;;
4296    esac
4297
4298    case $ac_tag in
4299    *:-:* | *:-) cat >"$ac_tmp/stdin" \
4300      || as_fn_error $? "could not create $ac_file" "$LINENO" 5 ;;
4301    esac
4302    ;;
4303  esac
4304
4305  ac_dir=`$as_dirname -- "$ac_file" ||
4306$as_expr X"$ac_file" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \
4307	 X"$ac_file" : 'X\(//\)[^/]' \| \
4308	 X"$ac_file" : 'X\(//\)$' \| \
4309	 X"$ac_file" : 'X\(/\)' \| . 2>/dev/null ||
4310$as_echo X"$ac_file" |
4311    sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{
4312	    s//\1/
4313	    q
4314	  }
4315	  /^X\(\/\/\)[^/].*/{
4316	    s//\1/
4317	    q
4318	  }
4319	  /^X\(\/\/\)$/{
4320	    s//\1/
4321	    q
4322	  }
4323	  /^X\(\/\).*/{
4324	    s//\1/
4325	    q
4326	  }
4327	  s/.*/./; q'`
4328  as_dir="$ac_dir"; as_fn_mkdir_p
4329  ac_builddir=.
4330
4331case "$ac_dir" in
4332.) ac_dir_suffix= ac_top_builddir_sub=. ac_top_build_prefix= ;;
4333*)
4334  ac_dir_suffix=/`$as_echo "$ac_dir" | sed 's|^\.[\\/]||'`
4335  # A ".." for each directory in $ac_dir_suffix.
4336  ac_top_builddir_sub=`$as_echo "$ac_dir_suffix" | sed 's|/[^\\/]*|/..|g;s|/||'`
4337  case $ac_top_builddir_sub in
4338  "") ac_top_builddir_sub=. ac_top_build_prefix= ;;
4339  *)  ac_top_build_prefix=$ac_top_builddir_sub/ ;;
4340  esac ;;
4341esac
4342ac_abs_top_builddir=$ac_pwd
4343ac_abs_builddir=$ac_pwd$ac_dir_suffix
4344# for backward compatibility:
4345ac_top_builddir=$ac_top_build_prefix
4346
4347case $srcdir in
4348  .)  # We are building in place.
4349    ac_srcdir=.
4350    ac_top_srcdir=$ac_top_builddir_sub
4351    ac_abs_top_srcdir=$ac_pwd ;;
4352  [\\/]* | ?:[\\/]* )  # Absolute name.
4353    ac_srcdir=$srcdir$ac_dir_suffix;
4354    ac_top_srcdir=$srcdir
4355    ac_abs_top_srcdir=$srcdir ;;
4356  *) # Relative name.
4357    ac_srcdir=$ac_top_build_prefix$srcdir$ac_dir_suffix
4358    ac_top_srcdir=$ac_top_build_prefix$srcdir
4359    ac_abs_top_srcdir=$ac_pwd/$srcdir ;;
4360esac
4361ac_abs_srcdir=$ac_abs_top_srcdir$ac_dir_suffix
4362
4363
4364  case $ac_mode in
4365  :F)
4366  #
4367  # CONFIG_FILE
4368  #
4369
4370  case $INSTALL in
4371  [\\/$]* | ?:[\\/]* ) ac_INSTALL=$INSTALL ;;
4372  *) ac_INSTALL=$ac_top_build_prefix$INSTALL ;;
4373  esac
4374  ac_MKDIR_P=$MKDIR_P
4375  case $MKDIR_P in
4376  [\\/$]* | ?:[\\/]* ) ;;
4377  */*) ac_MKDIR_P=$ac_top_build_prefix$MKDIR_P ;;
4378  esac
4379_ACEOF
4380
4381cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1
4382# If the template does not know about datarootdir, expand it.
4383# FIXME: This hack should be removed a few years after 2.60.
4384ac_datarootdir_hack=; ac_datarootdir_seen=
4385ac_sed_dataroot='
4386/datarootdir/ {
4387  p
4388  q
4389}
4390/@datadir@/p
4391/@docdir@/p
4392/@infodir@/p
4393/@localedir@/p
4394/@mandir@/p'
4395case `eval "sed -n \"\$ac_sed_dataroot\" $ac_file_inputs"` in
4396*datarootdir*) ac_datarootdir_seen=yes;;
4397*@datadir@*|*@docdir@*|*@infodir@*|*@localedir@*|*@mandir@*)
4398  { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: $ac_file_inputs seems to ignore the --datarootdir setting" >&5
4399$as_echo "$as_me: WARNING: $ac_file_inputs seems to ignore the --datarootdir setting" >&2;}
4400_ACEOF
4401cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1
4402  ac_datarootdir_hack='
4403  s&@datadir@&$datadir&g
4404  s&@docdir@&$docdir&g
4405  s&@infodir@&$infodir&g
4406  s&@localedir@&$localedir&g
4407  s&@mandir@&$mandir&g
4408  s&\\\${datarootdir}&$datarootdir&g' ;;
4409esac
4410_ACEOF
4411
4412# Neutralize VPATH when `$srcdir' = `.'.
4413# Shell code in configure.ac might set extrasub.
4414# FIXME: do we really want to maintain this feature?
4415cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1
4416ac_sed_extra="$ac_vpsub
4417$extrasub
4418_ACEOF
4419cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1
4420:t
4421/@[a-zA-Z_][a-zA-Z_0-9]*@/!b
4422s|@configure_input@|$ac_sed_conf_input|;t t
4423s&@top_builddir@&$ac_top_builddir_sub&;t t
4424s&@top_build_prefix@&$ac_top_build_prefix&;t t
4425s&@srcdir@&$ac_srcdir&;t t
4426s&@abs_srcdir@&$ac_abs_srcdir&;t t
4427s&@top_srcdir@&$ac_top_srcdir&;t t
4428s&@abs_top_srcdir@&$ac_abs_top_srcdir&;t t
4429s&@builddir@&$ac_builddir&;t t
4430s&@abs_builddir@&$ac_abs_builddir&;t t
4431s&@abs_top_builddir@&$ac_abs_top_builddir&;t t
4432s&@INSTALL@&$ac_INSTALL&;t t
4433s&@MKDIR_P@&$ac_MKDIR_P&;t t
4434$ac_datarootdir_hack
4435"
4436eval sed \"\$ac_sed_extra\" "$ac_file_inputs" | $AWK -f "$ac_tmp/subs.awk" \
4437  >$ac_tmp/out || as_fn_error $? "could not create $ac_file" "$LINENO" 5
4438
4439test -z "$ac_datarootdir_hack$ac_datarootdir_seen" &&
4440  { ac_out=`sed -n '/\${datarootdir}/p' "$ac_tmp/out"`; test -n "$ac_out"; } &&
4441  { ac_out=`sed -n '/^[	 ]*datarootdir[	 ]*:*=/p' \
4442      "$ac_tmp/out"`; test -z "$ac_out"; } &&
4443  { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: $ac_file contains a reference to the variable \`datarootdir'
4444which seems to be undefined.  Please make sure it is defined" >&5
4445$as_echo "$as_me: WARNING: $ac_file contains a reference to the variable \`datarootdir'
4446which seems to be undefined.  Please make sure it is defined" >&2;}
4447
4448  rm -f "$ac_tmp/stdin"
4449  case $ac_file in
4450  -) cat "$ac_tmp/out" && rm -f "$ac_tmp/out";;
4451  *) rm -f "$ac_file" && mv "$ac_tmp/out" "$ac_file";;
4452  esac \
4453  || as_fn_error $? "could not create $ac_file" "$LINENO" 5
4454 ;;
4455
4456
4457
4458  esac
4459
4460done # for ac_tag
4461
4462
4463as_fn_exit 0
4464_ACEOF
4465ac_clean_files=$ac_clean_files_save
4466
4467test $ac_write_fail = 0 ||
4468  as_fn_error $? "write failure creating $CONFIG_STATUS" "$LINENO" 5
4469
4470
4471# configure is writing to config.log, and then calls config.status.
4472# config.status does its own redirection, appending to config.log.
4473# Unfortunately, on DOS this fails, as config.log is still kept open
4474# by configure, so config.status won't be able to write to it; its
4475# output is simply discarded.  So we exec the FD to /dev/null,
4476# effectively closing config.log, so it can be properly (re)opened and
4477# appended to by config.status.  When coming back to configure, we
4478# need to make the FD available again.
4479if test "$no_create" != yes; then
4480  ac_cs_success=:
4481  ac_config_status_args=
4482  test "$silent" = yes &&
4483    ac_config_status_args="$ac_config_status_args --quiet"
4484  exec 5>/dev/null
4485  $SHELL $CONFIG_STATUS $ac_config_status_args || ac_cs_success=false
4486  exec 5>>config.log
4487  # Use ||, not &&, to avoid exiting from the if with $? = 1, which
4488  # would make configure fail if this is the last instruction.
4489  $ac_cs_success || as_fn_exit 1
4490fi
4491if test -n "$ac_unrecognized_opts" && test "$enable_option_checking" != no; then
4492  { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: unrecognized options: $ac_unrecognized_opts" >&5
4493$as_echo "$as_me: WARNING: unrecognized options: $ac_unrecognized_opts" >&2;}
4494fi
4495
4496
4497