~ubuntu-branches/ubuntu/saucy/mailcrypt/saucy

« back to all changes in this revision

Viewing changes to debian/patches/debian-changes

  • Committer: Package Import Robot
  • Author(s): Barak A. Pearlmutter
  • Date: 2012-03-29 23:12:12 UTC
  • Revision ID: package-import@ubuntu.com-20120329231212-gh2248fto9cuzar6
Tags: 3.5.9-5
* Acknowledge and merge translation-related NMU.  Thanks Christian Perrier!
* Bump standards version
* Silence lintian tag description-synopsis-starts-with-article
* Single-debian-patch source option (closes: #643211)
* Silence lintian tag maintainer-script-without-set-e

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
Description: <short summary of the patch>
 
2
 TODO: Put a short summary on the line above and replace this paragraph
 
3
 with a longer explanation of this change. Complete the meta-information
 
4
 with other relevant fields (see below for details). To make it easier, the
 
5
 information below has been extracted from the changelog. Adjust it or drop
 
6
 it.
 
7
 .
 
8
 mailcrypt (3.5.9-5) unstable; urgency=low
 
9
 .
 
10
   * Acknowledge and merge translation-related NMU.  Thanks Christian Perrier!
 
11
   * Bump standards version
 
12
   * Silence lintian tag description-synopsis-starts-with-article
 
13
   * Single-debian-patch source option (closes: #643211)
 
14
   * Silence lintian tag maintainer-script-without-set-e
 
15
Author: Barak A. Pearlmutter <bap@debian.org>
 
16
Bug-Debian: http://bugs.debian.org/643211
 
17
 
 
18
---
 
19
The information above should follow the Patch Tagging Guidelines, please
 
20
checkout http://dep.debian.net/deps/dep3/ to learn about the format. Here
 
21
are templates for supplementary fields that you might want to add:
 
22
 
 
23
Origin: <vendor|upstream|other>, <url of original patch>
 
24
Bug: <url in upstream bugtracker>
 
25
Bug-Debian: http://bugs.debian.org/<bugnumber>
 
26
Bug-Ubuntu: https://launchpad.net/bugs/<bugnumber>
 
27
Forwarded: <no|not-needed|url proving that it has been forwarded>
 
28
Reviewed-By: <name and email of someone who approved the patch>
 
29
Last-Update: <YYYY-MM-DD>
 
30
 
 
31
--- mailcrypt-3.5.9.orig/Makefile.in
 
32
+++ mailcrypt-3.5.9/Makefile.in
 
33
@@ -23,6 +23,7 @@ INFOFILES = mailcrypt.info
 
34
 INSTALL = @INSTALL@
 
35
 INSTALL_DATA = @INSTALL_DATA@
 
36
 INSTALL_INFO = @INSTALL_INFO@
 
37
+MKINSTALLDIRS = $(srcdir)/mkinstalldirs
 
38
 
 
39
 # Various auxiliary programs
 
40
 MAKEINFO=makeinfo
 
41
@@ -75,7 +76,10 @@ all: $(OBJECTS)
 
42
 check: $(OBJECTS)
 
43
        $(MAKE) -C tests check
 
44
 
 
45
-install: all installdirs install-info
 
46
+install: install-lisp install-info
 
47
+
 
48
+install-lisp: all
 
49
+       -$(MKINSTALLDIRS) $(lispdir)
 
50
        for f in $(SOURCES); do \
 
51
          $(INSTALL_DATA) $(srcdir)/$$f $(lispdir); \
 
52
        done;
 
53
@@ -94,6 +98,7 @@ installdirs: mkinstalldirs
 
54
 # to the arguments.
 
55
 
 
56
 install-info: info
 
57
+       -$(MKINSTALLDIRS) $(infodir)
 
58
        cd $(srcdir) && for file in $(INFOFILES); do\
 
59
          $(INSTALL_DATA) $$file $(infodir)/$$file; \
 
60
        done
 
61
@@ -125,7 +130,7 @@ mailcrypt.ps: mailcrypt.dvi
 
62
 html: mailcrypt_toc.html
 
63
 
 
64
 mailcrypt_toc.html: mailcrypt.texi
 
65
-       $(TEXI2HTML) -split_chapter $(srcdir)/mailcrypt.texi
 
66
+       $(TEXI2HTML) --output=htmls --split_chapter $(srcdir)/mailcrypt.texi
 
67
 
 
68
 TAGS: $(SOURCES)
 
69
        cd $(srcdir) && etags $(SOURCES)
 
70
@@ -134,11 +139,14 @@ clean:
 
71
        rm -f $(OBJECTS)
 
72
        -rm -f *.aux *.cp *.cps *.fn *.ky *.log *.pg *.toc *.tp *.vr
 
73
        -rm -f *.html
 
74
+       -rm -rf htmls/
 
75
        rm -f TAGS
 
76
 
 
77
 distclean: clean
 
78
        -rm -f *~ *.tar.gz
 
79
        -rm -f Makefile config.status config.cache config.log timer.el
 
80
+       -rm -f tests/Makefile tests/remailer/Makefile
 
81
+       -rm -rf autom4te.cache
 
82
        -rm -f *.info* *.dvi
 
83
 
 
84
 ${srcdir}/configure: configure.in
 
85
--- mailcrypt-3.5.9.orig/configure.in
 
86
+++ mailcrypt-3.5.9/configure.in
 
87
@@ -1,7 +1,11 @@
 
88
 dnl Process this file with autoconf to produce a configure script.
 
89
-AC_INIT(mailcrypt.el)
 
90
-
 
91
-AC_PROG_INSTALL()
 
92
+AC_PREREQ(2.64)
 
93
+AC_INIT([mailcrypt], [3.5.9], [http://mailcrypt.sourceforge.net/bugs.html])
 
94
+AC_CONFIG_SRCDIR([mailcrypt.el])
 
95
+
 
96
+# Checks for programs.
 
97
+AC_PROG_LN_S
 
98
+AC_PROG_INSTALL
 
99
 
 
100
 AC_PATH_PROG(INSTALL_INFO, install-info)
 
101
 if test "$INSTALL_INFO x" = " x"
 
102
@@ -13,8 +17,8 @@ AC_SUBST(INSTALL_INFO)
 
103
 AC_PATH_PROG(BASENAME, basename)
 
104
 if test "$BASENAME x" = " x"
 
105
 then
 
106
-  AC_MSG_ERROR(Cannot find program "basename" on your patch.
 
107
-Hint: Try setting BASENAME environment variable or fixing your PATH.)
 
108
+  AC_MSG_ERROR(Cannot find program "basename" on PATH.
 
109
+Hint: Try setting BASENAME environment variable or fixing PATH.)
 
110
 fi
 
111
 
 
112
 if test -n "$EMACS" && test "$EMACS" = "t"
 
113
@@ -22,9 +26,12 @@ then
 
114
     unset EMACS
 
115
 fi
 
116
 
 
117
-AC_CHECK_PROGS(EMACS, emacs xemacs,dnl
 
118
-  AC_MSG_ERROR('Cannot find emacs in your path.
 
119
-Hint: Try setting EMACS environment variable or fixing your PATH.'))
 
120
+AC_CHECK_PROGS(EMACS, emacs xemacs)
 
121
+if test "$EMACS x" = " x"
 
122
+then
 
123
+  AC_MSG_ERROR('Cannot find emacs or xemacs on PATH.
 
124
+Hint: Try setting EMACS environment variable or fixing PATH.')
 
125
+fi
 
126
 
 
127
 RESULT=`$BASENAME $EMACS`
 
128
 if test "$RESULT" = xemacs
 
129
@@ -56,4 +63,8 @@ else
 
130
   AC_SUBST(EXTRA_OBJS)
 
131
 fi
 
132
 
 
133
-AC_OUTPUT(Makefile tests/Makefile tests/remailer/Makefile)
 
134
+AC_CONFIG_FILES([Makefile
 
135
+                 tests/Makefile
 
136
+                 tests/remailer/Makefile])
 
137
+
 
138
+AC_OUTPUT
 
139
--- mailcrypt-3.5.9.orig/ChangeLog
 
140
+++ mailcrypt-3.5.9/ChangeLog
 
141
@@ -1,3 +1,8 @@
 
142
+2010-04-14  Barak A. Pearlmutter  <barak@cs.nuim.ie>
 
143
+
 
144
+       * configure.in: minor updates, and make emacs-not-found error out
 
145
+       as intended.
 
146
+
 
147
 2010-02-22  Jari Aalto  <jari.aalto@cante.net>
 
148
 
 
149
        * mc-toplev.el (mc-rmail-decrypt-message): preserve `rmail-buffer'
 
150
--- /dev/null
 
151
+++ mailcrypt-3.5.9/configure
 
152
@@ -0,0 +1,3103 @@
 
153
+#! /bin/sh
 
154
+# Guess values for system-dependent variables and create Makefiles.
 
155
+# Generated by GNU Autoconf 2.65 for mailcrypt 3.5.9.
 
156
+#
 
157
+# Report bugs to <http://mailcrypt.sourceforge.net/bugs.html>.
 
158
+#
 
159
+#
 
160
+# Copyright (C) 1992, 1993, 1994, 1995, 1996, 1998, 1999, 2000, 2001,
 
161
+# 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009 Free Software Foundation,
 
162
+# Inc.
 
163
+#
 
164
+#
 
165
+# This configure script is free software; the Free Software Foundation
 
166
+# gives unlimited permission to copy, distribute and modify it.
 
167
+## -------------------- ##
 
168
+## M4sh Initialization. ##
 
169
+## -------------------- ##
 
170
+
 
171
+# Be more Bourne compatible
 
172
+DUALCASE=1; export DUALCASE # for MKS sh
 
173
+if test -n "${ZSH_VERSION+set}" && (emulate sh) >/dev/null 2>&1; then :
 
174
+  emulate sh
 
175
+  NULLCMD=:
 
176
+  # Pre-4.2 versions of Zsh do word splitting on ${1+"$@"}, which
 
177
+  # is contrary to our usage.  Disable this feature.
 
178
+  alias -g '${1+"$@"}'='"$@"'
 
179
+  setopt NO_GLOB_SUBST
 
180
+else
 
181
+  case `(set -o) 2>/dev/null` in #(
 
182
+  *posix*) :
 
183
+    set -o posix ;; #(
 
184
+  *) :
 
185
+     ;;
 
186
+esac
 
187
+fi
 
188
+
 
189
+
 
190
+as_nl='
 
191
+'
 
192
+export as_nl
 
193
+# Printing a long string crashes Solaris 7 /usr/bin/printf.
 
194
+as_echo='\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\'
 
195
+as_echo=$as_echo$as_echo$as_echo$as_echo$as_echo
 
196
+as_echo=$as_echo$as_echo$as_echo$as_echo$as_echo$as_echo
 
197
+# Prefer a ksh shell builtin over an external printf program on Solaris,
 
198
+# but without wasting forks for bash or zsh.
 
199
+if test -z "$BASH_VERSION$ZSH_VERSION" \
 
200
+    && (test "X`print -r -- $as_echo`" = "X$as_echo") 2>/dev/null; then
 
201
+  as_echo='print -r --'
 
202
+  as_echo_n='print -rn --'
 
203
+elif (test "X`printf %s $as_echo`" = "X$as_echo") 2>/dev/null; then
 
204
+  as_echo='printf %s\n'
 
205
+  as_echo_n='printf %s'
 
206
+else
 
207
+  if test "X`(/usr/ucb/echo -n -n $as_echo) 2>/dev/null`" = "X-n $as_echo"; then
 
208
+    as_echo_body='eval /usr/ucb/echo -n "$1$as_nl"'
 
209
+    as_echo_n='/usr/ucb/echo -n'
 
210
+  else
 
211
+    as_echo_body='eval expr "X$1" : "X\\(.*\\)"'
 
212
+    as_echo_n_body='eval
 
213
+      arg=$1;
 
214
+      case $arg in #(
 
215
+      *"$as_nl"*)
 
216
+       expr "X$arg" : "X\\(.*\\)$as_nl";
 
217
+       arg=`expr "X$arg" : ".*$as_nl\\(.*\\)"`;;
 
218
+      esac;
 
219
+      expr "X$arg" : "X\\(.*\\)" | tr -d "$as_nl"
 
220
+    '
 
221
+    export as_echo_n_body
 
222
+    as_echo_n='sh -c $as_echo_n_body as_echo'
 
223
+  fi
 
224
+  export as_echo_body
 
225
+  as_echo='sh -c $as_echo_body as_echo'
 
226
+fi
 
227
+
 
228
+# The user is always right.
 
229
+if test "${PATH_SEPARATOR+set}" != set; then
 
230
+  PATH_SEPARATOR=:
 
231
+  (PATH='/bin;/bin'; FPATH=$PATH; sh -c :) >/dev/null 2>&1 && {
 
232
+    (PATH='/bin:/bin'; FPATH=$PATH; sh -c :) >/dev/null 2>&1 ||
 
233
+      PATH_SEPARATOR=';'
 
234
+  }
 
235
+fi
 
236
+
 
237
+
 
238
+# IFS
 
239
+# We need space, tab and new line, in precisely that order.  Quoting is
 
240
+# there to prevent editors from complaining about space-tab.
 
241
+# (If _AS_PATH_WALK were called with IFS unset, it would disable word
 
242
+# splitting by setting IFS to empty value.)
 
243
+IFS=" ""       $as_nl"
 
244
+
 
245
+# Find who we are.  Look in the path if we contain no directory separator.
 
246
+case $0 in #((
 
247
+  *[\\/]* ) as_myself=$0 ;;
 
248
+  *) as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
 
249
+for as_dir in $PATH
 
250
+do
 
251
+  IFS=$as_save_IFS
 
252
+  test -z "$as_dir" && as_dir=.
 
253
+    test -r "$as_dir/$0" && as_myself=$as_dir/$0 && break
 
254
+  done
 
255
+IFS=$as_save_IFS
 
256
+
 
257
+     ;;
 
258
+esac
 
259
+# We did not find ourselves, most probably we were run as `sh COMMAND'
 
260
+# in which case we are not to be found in the path.
 
261
+if test "x$as_myself" = x; then
 
262
+  as_myself=$0
 
263
+fi
 
264
+if test ! -f "$as_myself"; then
 
265
+  $as_echo "$as_myself: error: cannot find myself; rerun with an absolute file name" >&2
 
266
+  exit 1
 
267
+fi
 
268
+
 
269
+# Unset variables that we do not need and which cause bugs (e.g. in
 
270
+# pre-3.0 UWIN ksh).  But do not cause bugs in bash 2.01; the "|| exit 1"
 
271
+# suppresses any "Segmentation fault" message there.  '((' could
 
272
+# trigger a bug in pdksh 5.2.14.
 
273
+for as_var in BASH_ENV ENV MAIL MAILPATH
 
274
+do eval test x\${$as_var+set} = xset \
 
275
+  && ( (unset $as_var) || exit 1) >/dev/null 2>&1 && unset $as_var || :
 
276
+done
 
277
+PS1='$ '
 
278
+PS2='> '
 
279
+PS4='+ '
 
280
+
 
281
+# NLS nuisances.
 
282
+LC_ALL=C
 
283
+export LC_ALL
 
284
+LANGUAGE=C
 
285
+export LANGUAGE
 
286
+
 
287
+# CDPATH.
 
288
+(unset CDPATH) >/dev/null 2>&1 && unset CDPATH
 
289
+
 
290
+if test "x$CONFIG_SHELL" = x; then
 
291
+  as_bourne_compatible="if test -n \"\${ZSH_VERSION+set}\" && (emulate sh) >/dev/null 2>&1; then :
 
292
+  emulate sh
 
293
+  NULLCMD=:
 
294
+  # Pre-4.2 versions of Zsh do word splitting on \${1+\"\$@\"}, which
 
295
+  # is contrary to our usage.  Disable this feature.
 
296
+  alias -g '\${1+\"\$@\"}'='\"\$@\"'
 
297
+  setopt NO_GLOB_SUBST
 
298
+else
 
299
+  case \`(set -o) 2>/dev/null\` in #(
 
300
+  *posix*) :
 
301
+    set -o posix ;; #(
 
302
+  *) :
 
303
+     ;;
 
304
+esac
 
305
+fi
 
306
+"
 
307
+  as_required="as_fn_return () { (exit \$1); }
 
308
+as_fn_success () { as_fn_return 0; }
 
309
+as_fn_failure () { as_fn_return 1; }
 
310
+as_fn_ret_success () { return 0; }
 
311
+as_fn_ret_failure () { return 1; }
 
312
+
 
313
+exitcode=0
 
314
+as_fn_success || { exitcode=1; echo as_fn_success failed.; }
 
315
+as_fn_failure && { exitcode=1; echo as_fn_failure succeeded.; }
 
316
+as_fn_ret_success || { exitcode=1; echo as_fn_ret_success failed.; }
 
317
+as_fn_ret_failure && { exitcode=1; echo as_fn_ret_failure succeeded.; }
 
318
+if ( set x; as_fn_ret_success y && test x = \"\$1\" ); then :
 
319
+
 
320
+else
 
321
+  exitcode=1; echo positional parameters were not saved.
 
322
+fi
 
323
+test x\$exitcode = x0 || exit 1"
 
324
+  as_suggested="  as_lineno_1=";as_suggested=$as_suggested$LINENO;as_suggested=$as_suggested" as_lineno_1a=\$LINENO
 
325
+  as_lineno_2=";as_suggested=$as_suggested$LINENO;as_suggested=$as_suggested" as_lineno_2a=\$LINENO
 
326
+  eval 'test \"x\$as_lineno_1'\$as_run'\" != \"x\$as_lineno_2'\$as_run'\" &&
 
327
+  test \"x\`expr \$as_lineno_1'\$as_run' + 1\`\" = \"x\$as_lineno_2'\$as_run'\"' || exit 1"
 
328
+  if (eval "$as_required") 2>/dev/null; then :
 
329
+  as_have_required=yes
 
330
+else
 
331
+  as_have_required=no
 
332
+fi
 
333
+  if test x$as_have_required = xyes && (eval "$as_suggested") 2>/dev/null; then :
 
334
+
 
335
+else
 
336
+  as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
 
337
+as_found=false
 
338
+for as_dir in /bin$PATH_SEPARATOR/usr/bin$PATH_SEPARATOR$PATH
 
339
+do
 
340
+  IFS=$as_save_IFS
 
341
+  test -z "$as_dir" && as_dir=.
 
342
+  as_found=:
 
343
+  case $as_dir in #(
 
344
+        /*)
 
345
+          for as_base in sh bash ksh sh5; do
 
346
+            # Try only shells that exist, to save several forks.
 
347
+            as_shell=$as_dir/$as_base
 
348
+            if { test -f "$as_shell" || test -f "$as_shell.exe"; } &&
 
349
+                   { $as_echo "$as_bourne_compatible""$as_required" | as_run=a "$as_shell"; } 2>/dev/null; then :
 
350
+  CONFIG_SHELL=$as_shell as_have_required=yes
 
351
+                  if { $as_echo "$as_bourne_compatible""$as_suggested" | as_run=a "$as_shell"; } 2>/dev/null; then :
 
352
+  break 2
 
353
+fi
 
354
+fi
 
355
+          done;;
 
356
+       esac
 
357
+  as_found=false
 
358
+done
 
359
+$as_found || { if { test -f "$SHELL" || test -f "$SHELL.exe"; } &&
 
360
+             { $as_echo "$as_bourne_compatible""$as_required" | as_run=a "$SHELL"; } 2>/dev/null; then :
 
361
+  CONFIG_SHELL=$SHELL as_have_required=yes
 
362
+fi; }
 
363
+IFS=$as_save_IFS
 
364
+
 
365
+
 
366
+      if test "x$CONFIG_SHELL" != x; then :
 
367
+  # We cannot yet assume a decent shell, so we have to provide a
 
368
+       # neutralization value for shells without unset; and this also
 
369
+       # works around shells that cannot unset nonexistent variables.
 
370
+       BASH_ENV=/dev/null
 
371
+       ENV=/dev/null
 
372
+       (unset BASH_ENV) >/dev/null 2>&1 && unset BASH_ENV ENV
 
373
+       export CONFIG_SHELL
 
374
+       exec "$CONFIG_SHELL" "$as_myself" ${1+"$@"}
 
375
+fi
 
376
+
 
377
+    if test x$as_have_required = xno; then :
 
378
+  $as_echo "$0: This script requires a shell more modern than all"
 
379
+  $as_echo "$0: the shells that I found on your system."
 
380
+  if test x${ZSH_VERSION+set} = xset ; then
 
381
+    $as_echo "$0: In particular, zsh $ZSH_VERSION has bugs and should"
 
382
+    $as_echo "$0: be upgraded to zsh 4.3.4 or later."
 
383
+  else
 
384
+    $as_echo "$0: Please tell bug-autoconf@gnu.org and
 
385
+$0: http://mailcrypt.sourceforge.net/bugs.html about your
 
386
+$0: system, including any error possibly output before this
 
387
+$0: message. Then install a modern shell, or manually run
 
388
+$0: the script under such a shell if you do have one."
 
389
+  fi
 
390
+  exit 1
 
391
+fi
 
392
+fi
 
393
+fi
 
394
+SHELL=${CONFIG_SHELL-/bin/sh}
 
395
+export SHELL
 
396
+# Unset more variables known to interfere with behavior of common tools.
 
397
+CLICOLOR_FORCE= GREP_OPTIONS=
 
398
+unset CLICOLOR_FORCE GREP_OPTIONS
 
399
+
 
400
+## --------------------- ##
 
401
+## M4sh Shell Functions. ##
 
402
+## --------------------- ##
 
403
+# as_fn_unset VAR
 
404
+# ---------------
 
405
+# Portably unset VAR.
 
406
+as_fn_unset ()
 
407
+{
 
408
+  { eval $1=; unset $1;}
 
409
+}
 
410
+as_unset=as_fn_unset
 
411
+
 
412
+# as_fn_set_status STATUS
 
413
+# -----------------------
 
414
+# Set $? to STATUS, without forking.
 
415
+as_fn_set_status ()
 
416
+{
 
417
+  return $1
 
418
+} # as_fn_set_status
 
419
+
 
420
+# as_fn_exit STATUS
 
421
+# -----------------
 
422
+# Exit the shell with STATUS, even in a "trap 0" or "set -e" context.
 
423
+as_fn_exit ()
 
424
+{
 
425
+  set +e
 
426
+  as_fn_set_status $1
 
427
+  exit $1
 
428
+} # as_fn_exit
 
429
+
 
430
+# as_fn_mkdir_p
 
431
+# -------------
 
432
+# Create "$as_dir" as a directory, including parents if necessary.
 
433
+as_fn_mkdir_p ()
 
434
+{
 
435
+
 
436
+  case $as_dir in #(
 
437
+  -*) as_dir=./$as_dir;;
 
438
+  esac
 
439
+  test -d "$as_dir" || eval $as_mkdir_p || {
 
440
+    as_dirs=
 
441
+    while :; do
 
442
+      case $as_dir in #(
 
443
+      *\'*) as_qdir=`$as_echo "$as_dir" | sed "s/'/'\\\\\\\\''/g"`;; #'(
 
444
+      *) as_qdir=$as_dir;;
 
445
+      esac
 
446
+      as_dirs="'$as_qdir' $as_dirs"
 
447
+      as_dir=`$as_dirname -- "$as_dir" ||
 
448
+$as_expr X"$as_dir" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \
 
449
+        X"$as_dir" : 'X\(//\)[^/]' \| \
 
450
+        X"$as_dir" : 'X\(//\)$' \| \
 
451
+        X"$as_dir" : 'X\(/\)' \| . 2>/dev/null ||
 
452
+$as_echo X"$as_dir" |
 
453
+    sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{
 
454
+           s//\1/
 
455
+           q
 
456
+         }
 
457
+         /^X\(\/\/\)[^/].*/{
 
458
+           s//\1/
 
459
+           q
 
460
+         }
 
461
+         /^X\(\/\/\)$/{
 
462
+           s//\1/
 
463
+           q
 
464
+         }
 
465
+         /^X\(\/\).*/{
 
466
+           s//\1/
 
467
+           q
 
468
+         }
 
469
+         s/.*/./; q'`
 
470
+      test -d "$as_dir" && break
 
471
+    done
 
472
+    test -z "$as_dirs" || eval "mkdir $as_dirs"
 
473
+  } || test -d "$as_dir" || as_fn_error "cannot create directory $as_dir"
 
474
+
 
475
+
 
476
+} # as_fn_mkdir_p
 
477
+# as_fn_append VAR VALUE
 
478
+# ----------------------
 
479
+# Append the text in VALUE to the end of the definition contained in VAR. Take
 
480
+# advantage of any shell optimizations that allow amortized linear growth over
 
481
+# repeated appends, instead of the typical quadratic growth present in naive
 
482
+# implementations.
 
483
+if (eval "as_var=1; as_var+=2; test x\$as_var = x12") 2>/dev/null; then :
 
484
+  eval 'as_fn_append ()
 
485
+  {
 
486
+    eval $1+=\$2
 
487
+  }'
 
488
+else
 
489
+  as_fn_append ()
 
490
+  {
 
491
+    eval $1=\$$1\$2
 
492
+  }
 
493
+fi # as_fn_append
 
494
+
 
495
+# as_fn_arith ARG...
 
496
+# ------------------
 
497
+# Perform arithmetic evaluation on the ARGs, and store the result in the
 
498
+# global $as_val. Take advantage of shells that can avoid forks. The arguments
 
499
+# must be portable across $(()) and expr.
 
500
+if (eval "test \$(( 1 + 1 )) = 2") 2>/dev/null; then :
 
501
+  eval 'as_fn_arith ()
 
502
+  {
 
503
+    as_val=$(( $* ))
 
504
+  }'
 
505
+else
 
506
+  as_fn_arith ()
 
507
+  {
 
508
+    as_val=`expr "$@" || test $? -eq 1`
 
509
+  }
 
510
+fi # as_fn_arith
 
511
+
 
512
+
 
513
+# as_fn_error ERROR [LINENO LOG_FD]
 
514
+# ---------------------------------
 
515
+# Output "`basename $0`: error: ERROR" to stderr. If LINENO and LOG_FD are
 
516
+# provided, also output the error to LOG_FD, referencing LINENO. Then exit the
 
517
+# script with status $?, using 1 if that was 0.
 
518
+as_fn_error ()
 
519
+{
 
520
+  as_status=$?; test $as_status -eq 0 && as_status=1
 
521
+  if test "$3"; then
 
522
+    as_lineno=${as_lineno-"$2"} as_lineno_stack=as_lineno_stack=$as_lineno_stack
 
523
+    $as_echo "$as_me:${as_lineno-$LINENO}: error: $1" >&$3
 
524
+  fi
 
525
+  $as_echo "$as_me: error: $1" >&2
 
526
+  as_fn_exit $as_status
 
527
+} # as_fn_error
 
528
+
 
529
+if expr a : '\(a\)' >/dev/null 2>&1 &&
 
530
+   test "X`expr 00001 : '.*\(...\)'`" = X001; then
 
531
+  as_expr=expr
 
532
+else
 
533
+  as_expr=false
 
534
+fi
 
535
+
 
536
+if (basename -- /) >/dev/null 2>&1 && test "X`basename -- / 2>&1`" = "X/"; then
 
537
+  as_basename=basename
 
538
+else
 
539
+  as_basename=false
 
540
+fi
 
541
+
 
542
+if (as_dir=`dirname -- /` && test "X$as_dir" = X/) >/dev/null 2>&1; then
 
543
+  as_dirname=dirname
 
544
+else
 
545
+  as_dirname=false
 
546
+fi
 
547
+
 
548
+as_me=`$as_basename -- "$0" ||
 
549
+$as_expr X/"$0" : '.*/\([^/][^/]*\)/*$' \| \
 
550
+        X"$0" : 'X\(//\)$' \| \
 
551
+        X"$0" : 'X\(/\)' \| . 2>/dev/null ||
 
552
+$as_echo X/"$0" |
 
553
+    sed '/^.*\/\([^/][^/]*\)\/*$/{
 
554
+           s//\1/
 
555
+           q
 
556
+         }
 
557
+         /^X\/\(\/\/\)$/{
 
558
+           s//\1/
 
559
+           q
 
560
+         }
 
561
+         /^X\/\(\/\).*/{
 
562
+           s//\1/
 
563
+           q
 
564
+         }
 
565
+         s/.*/./; q'`
 
566
+
 
567
+# Avoid depending upon Character Ranges.
 
568
+as_cr_letters='abcdefghijklmnopqrstuvwxyz'
 
569
+as_cr_LETTERS='ABCDEFGHIJKLMNOPQRSTUVWXYZ'
 
570
+as_cr_Letters=$as_cr_letters$as_cr_LETTERS
 
571
+as_cr_digits='0123456789'
 
572
+as_cr_alnum=$as_cr_Letters$as_cr_digits
 
573
+
 
574
+
 
575
+  as_lineno_1=$LINENO as_lineno_1a=$LINENO
 
576
+  as_lineno_2=$LINENO as_lineno_2a=$LINENO
 
577
+  eval 'test "x$as_lineno_1'$as_run'" != "x$as_lineno_2'$as_run'" &&
 
578
+  test "x`expr $as_lineno_1'$as_run' + 1`" = "x$as_lineno_2'$as_run'"' || {
 
579
+  # Blame Lee E. McMahon (1931-1989) for sed's syntax.  :-)
 
580
+  sed -n '
 
581
+    p
 
582
+    /[$]LINENO/=
 
583
+  ' <$as_myself |
 
584
+    sed '
 
585
+      s/[$]LINENO.*/&-/
 
586
+      t lineno
 
587
+      b
 
588
+      :lineno
 
589
+      N
 
590
+      :loop
 
591
+      s/[$]LINENO\([^'$as_cr_alnum'_].*\n\)\(.*\)/\2\1\2/
 
592
+      t loop
 
593
+      s/-\n.*//
 
594
+    ' >$as_me.lineno &&
 
595
+  chmod +x "$as_me.lineno" ||
 
596
+    { $as_echo "$as_me: error: cannot create $as_me.lineno; rerun with a POSIX shell" >&2; as_fn_exit 1; }
 
597
+
 
598
+  # Don't try to exec as it changes $[0], causing all sort of problems
 
599
+  # (the dirname of $[0] is not the place where we might find the
 
600
+  # original and so on.  Autoconf is especially sensitive to this).
 
601
+  . "./$as_me.lineno"
 
602
+  # Exit status is that of the last command.
 
603
+  exit
 
604
+}
 
605
+
 
606
+ECHO_C= ECHO_N= ECHO_T=
 
607
+case `echo -n x` in #(((((
 
608
+-n*)
 
609
+  case `echo 'xy\c'` in
 
610
+  *c*) ECHO_T='        ';;     # ECHO_T is single tab character.
 
611
+  xy)  ECHO_C='\c';;
 
612
+  *)   echo `echo ksh88 bug on AIX 6.1` > /dev/null
 
613
+       ECHO_T='        ';;
 
614
+  esac;;
 
615
+*)
 
616
+  ECHO_N='-n';;
 
617
+esac
 
618
+
 
619
+rm -f conf$$ conf$$.exe conf$$.file
 
620
+if test -d conf$$.dir; then
 
621
+  rm -f conf$$.dir/conf$$.file
 
622
+else
 
623
+  rm -f conf$$.dir
 
624
+  mkdir conf$$.dir 2>/dev/null
 
625
+fi
 
626
+if (echo >conf$$.file) 2>/dev/null; then
 
627
+  if ln -s conf$$.file conf$$ 2>/dev/null; then
 
628
+    as_ln_s='ln -s'
 
629
+    # ... but there are two gotchas:
 
630
+    # 1) On MSYS, both `ln -s file dir' and `ln file dir' fail.
 
631
+    # 2) DJGPP < 2.04 has no symlinks; `ln -s' creates a wrapper executable.
 
632
+    # In both cases, we have to default to `cp -p'.
 
633
+    ln -s conf$$.file conf$$.dir 2>/dev/null && test ! -f conf$$.exe ||
 
634
+      as_ln_s='cp -p'
 
635
+  elif ln conf$$.file conf$$ 2>/dev/null; then
 
636
+    as_ln_s=ln
 
637
+  else
 
638
+    as_ln_s='cp -p'
 
639
+  fi
 
640
+else
 
641
+  as_ln_s='cp -p'
 
642
+fi
 
643
+rm -f conf$$ conf$$.exe conf$$.dir/conf$$.file conf$$.file
 
644
+rmdir conf$$.dir 2>/dev/null
 
645
+
 
646
+if mkdir -p . 2>/dev/null; then
 
647
+  as_mkdir_p='mkdir -p "$as_dir"'
 
648
+else
 
649
+  test -d ./-p && rmdir ./-p
 
650
+  as_mkdir_p=false
 
651
+fi
 
652
+
 
653
+if test -x / >/dev/null 2>&1; then
 
654
+  as_test_x='test -x'
 
655
+else
 
656
+  if ls -dL / >/dev/null 2>&1; then
 
657
+    as_ls_L_option=L
 
658
+  else
 
659
+    as_ls_L_option=
 
660
+  fi
 
661
+  as_test_x='
 
662
+    eval sh -c '\''
 
663
+      if test -d "$1"; then
 
664
+       test -d "$1/.";
 
665
+      else
 
666
+       case $1 in #(
 
667
+       -*)set "./$1";;
 
668
+       esac;
 
669
+       case `ls -ld'$as_ls_L_option' "$1" 2>/dev/null` in #((
 
670
+       ???[sx]*):;;*)false;;esac;fi
 
671
+    '\'' sh
 
672
+  '
 
673
+fi
 
674
+as_executable_p=$as_test_x
 
675
+
 
676
+# Sed expression to map a string onto a valid CPP name.
 
677
+as_tr_cpp="eval sed 'y%*$as_cr_letters%P$as_cr_LETTERS%;s%[^_$as_cr_alnum]%_%g'"
 
678
+
 
679
+# Sed expression to map a string onto a valid variable name.
 
680
+as_tr_sh="eval sed 'y%*+%pp%;s%[^_$as_cr_alnum]%_%g'"
 
681
+
 
682
+
 
683
+test -n "$DJDIR" || exec 7<&0 </dev/null
 
684
+exec 6>&1
 
685
+
 
686
+# Name of the host.
 
687
+# hostname on some systems (SVR3.2, Linux) returns a bogus exit status,
 
688
+# so uname gets run too.
 
689
+ac_hostname=`(hostname || uname -n) 2>/dev/null | sed 1q`
 
690
+
 
691
+#
 
692
+# Initializations.
 
693
+#
 
694
+ac_default_prefix=/usr/local
 
695
+ac_clean_files=
 
696
+ac_config_libobj_dir=.
 
697
+LIBOBJS=
 
698
+cross_compiling=no
 
699
+subdirs=
 
700
+MFLAGS=
 
701
+MAKEFLAGS=
 
702
+
 
703
+# Identity of this package.
 
704
+PACKAGE_NAME='mailcrypt'
 
705
+PACKAGE_TARNAME='mailcrypt'
 
706
+PACKAGE_VERSION='3.5.9'
 
707
+PACKAGE_STRING='mailcrypt 3.5.9'
 
708
+PACKAGE_BUGREPORT='http://mailcrypt.sourceforge.net/bugs.html'
 
709
+PACKAGE_URL=''
 
710
+
 
711
+ac_unique_file="mailcrypt.el"
 
712
+ac_subst_vars='LTLIBOBJS
 
713
+LIBOBJS
 
714
+EXTRA_OBJS
 
715
+EXTRA_SRCS
 
716
+EMACSFLAGS
 
717
+EMACS
 
718
+BASENAME
 
719
+INSTALL_INFO
 
720
+INSTALL_DATA
 
721
+INSTALL_SCRIPT
 
722
+INSTALL_PROGRAM
 
723
+LN_S
 
724
+target_alias
 
725
+host_alias
 
726
+build_alias
 
727
+LIBS
 
728
+ECHO_T
 
729
+ECHO_N
 
730
+ECHO_C
 
731
+DEFS
 
732
+mandir
 
733
+localedir
 
734
+libdir
 
735
+psdir
 
736
+pdfdir
 
737
+dvidir
 
738
+htmldir
 
739
+infodir
 
740
+docdir
 
741
+oldincludedir
 
742
+includedir
 
743
+localstatedir
 
744
+sharedstatedir
 
745
+sysconfdir
 
746
+datadir
 
747
+datarootdir
 
748
+libexecdir
 
749
+sbindir
 
750
+bindir
 
751
+program_transform_name
 
752
+prefix
 
753
+exec_prefix
 
754
+PACKAGE_URL
 
755
+PACKAGE_BUGREPORT
 
756
+PACKAGE_STRING
 
757
+PACKAGE_VERSION
 
758
+PACKAGE_TARNAME
 
759
+PACKAGE_NAME
 
760
+PATH_SEPARATOR
 
761
+SHELL'
 
762
+ac_subst_files=''
 
763
+ac_user_opts='
 
764
+enable_option_checking
 
765
+'
 
766
+      ac_precious_vars='build_alias
 
767
+host_alias
 
768
+target_alias'
 
769
+
 
770
+
 
771
+# Initialize some variables set by options.
 
772
+ac_init_help=
 
773
+ac_init_version=false
 
774
+ac_unrecognized_opts=
 
775
+ac_unrecognized_sep=
 
776
+# The variables have the same names as the options, with
 
777
+# dashes changed to underlines.
 
778
+cache_file=/dev/null
 
779
+exec_prefix=NONE
 
780
+no_create=
 
781
+no_recursion=
 
782
+prefix=NONE
 
783
+program_prefix=NONE
 
784
+program_suffix=NONE
 
785
+program_transform_name=s,x,x,
 
786
+silent=
 
787
+site=
 
788
+srcdir=
 
789
+verbose=
 
790
+x_includes=NONE
 
791
+x_libraries=NONE
 
792
+
 
793
+# Installation directory options.
 
794
+# These are left unexpanded so users can "make install exec_prefix=/foo"
 
795
+# and all the variables that are supposed to be based on exec_prefix
 
796
+# by default will actually change.
 
797
+# Use braces instead of parens because sh, perl, etc. also accept them.
 
798
+# (The list follows the same order as the GNU Coding Standards.)
 
799
+bindir='${exec_prefix}/bin'
 
800
+sbindir='${exec_prefix}/sbin'
 
801
+libexecdir='${exec_prefix}/libexec'
 
802
+datarootdir='${prefix}/share'
 
803
+datadir='${datarootdir}'
 
804
+sysconfdir='${prefix}/etc'
 
805
+sharedstatedir='${prefix}/com'
 
806
+localstatedir='${prefix}/var'
 
807
+includedir='${prefix}/include'
 
808
+oldincludedir='/usr/include'
 
809
+docdir='${datarootdir}/doc/${PACKAGE_TARNAME}'
 
810
+infodir='${datarootdir}/info'
 
811
+htmldir='${docdir}'
 
812
+dvidir='${docdir}'
 
813
+pdfdir='${docdir}'
 
814
+psdir='${docdir}'
 
815
+libdir='${exec_prefix}/lib'
 
816
+localedir='${datarootdir}/locale'
 
817
+mandir='${datarootdir}/man'
 
818
+
 
819
+ac_prev=
 
820
+ac_dashdash=
 
821
+for ac_option
 
822
+do
 
823
+  # If the previous option needs an argument, assign it.
 
824
+  if test -n "$ac_prev"; then
 
825
+    eval $ac_prev=\$ac_option
 
826
+    ac_prev=
 
827
+    continue
 
828
+  fi
 
829
+
 
830
+  case $ac_option in
 
831
+  *=*) ac_optarg=`expr "X$ac_option" : '[^=]*=\(.*\)'` ;;
 
832
+  *)   ac_optarg=yes ;;
 
833
+  esac
 
834
+
 
835
+  # Accept the important Cygnus configure options, so we can diagnose typos.
 
836
+
 
837
+  case $ac_dashdash$ac_option in
 
838
+  --)
 
839
+    ac_dashdash=yes ;;
 
840
+
 
841
+  -bindir | --bindir | --bindi | --bind | --bin | --bi)
 
842
+    ac_prev=bindir ;;
 
843
+  -bindir=* | --bindir=* | --bindi=* | --bind=* | --bin=* | --bi=*)
 
844
+    bindir=$ac_optarg ;;
 
845
+
 
846
+  -build | --build | --buil | --bui | --bu)
 
847
+    ac_prev=build_alias ;;
 
848
+  -build=* | --build=* | --buil=* | --bui=* | --bu=*)
 
849
+    build_alias=$ac_optarg ;;
 
850
+
 
851
+  -cache-file | --cache-file | --cache-fil | --cache-fi \
 
852
+  | --cache-f | --cache- | --cache | --cach | --cac | --ca | --c)
 
853
+    ac_prev=cache_file ;;
 
854
+  -cache-file=* | --cache-file=* | --cache-fil=* | --cache-fi=* \
 
855
+  | --cache-f=* | --cache-=* | --cache=* | --cach=* | --cac=* | --ca=* | --c=*)
 
856
+    cache_file=$ac_optarg ;;
 
857
+
 
858
+  --config-cache | -C)
 
859
+    cache_file=config.cache ;;
 
860
+
 
861
+  -datadir | --datadir | --datadi | --datad)
 
862
+    ac_prev=datadir ;;
 
863
+  -datadir=* | --datadir=* | --datadi=* | --datad=*)
 
864
+    datadir=$ac_optarg ;;
 
865
+
 
866
+  -datarootdir | --datarootdir | --datarootdi | --datarootd | --dataroot \
 
867
+  | --dataroo | --dataro | --datar)
 
868
+    ac_prev=datarootdir ;;
 
869
+  -datarootdir=* | --datarootdir=* | --datarootdi=* | --datarootd=* \
 
870
+  | --dataroot=* | --dataroo=* | --dataro=* | --datar=*)
 
871
+    datarootdir=$ac_optarg ;;
 
872
+
 
873
+  -disable-* | --disable-*)
 
874
+    ac_useropt=`expr "x$ac_option" : 'x-*disable-\(.*\)'`
 
875
+    # Reject names that are not valid shell variable names.
 
876
+    expr "x$ac_useropt" : ".*[^-+._$as_cr_alnum]" >/dev/null &&
 
877
+      as_fn_error "invalid feature name: $ac_useropt"
 
878
+    ac_useropt_orig=$ac_useropt
 
879
+    ac_useropt=`$as_echo "$ac_useropt" | sed 's/[-+.]/_/g'`
 
880
+    case $ac_user_opts in
 
881
+      *"
 
882
+"enable_$ac_useropt"
 
883
+"*) ;;
 
884
+      *) ac_unrecognized_opts="$ac_unrecognized_opts$ac_unrecognized_sep--disable-$ac_useropt_orig"
 
885
+        ac_unrecognized_sep=', ';;
 
886
+    esac
 
887
+    eval enable_$ac_useropt=no ;;
 
888
+
 
889
+  -docdir | --docdir | --docdi | --doc | --do)
 
890
+    ac_prev=docdir ;;
 
891
+  -docdir=* | --docdir=* | --docdi=* | --doc=* | --do=*)
 
892
+    docdir=$ac_optarg ;;
 
893
+
 
894
+  -dvidir | --dvidir | --dvidi | --dvid | --dvi | --dv)
 
895
+    ac_prev=dvidir ;;
 
896
+  -dvidir=* | --dvidir=* | --dvidi=* | --dvid=* | --dvi=* | --dv=*)
 
897
+    dvidir=$ac_optarg ;;
 
898
+
 
899
+  -enable-* | --enable-*)
 
900
+    ac_useropt=`expr "x$ac_option" : 'x-*enable-\([^=]*\)'`
 
901
+    # Reject names that are not valid shell variable names.
 
902
+    expr "x$ac_useropt" : ".*[^-+._$as_cr_alnum]" >/dev/null &&
 
903
+      as_fn_error "invalid feature name: $ac_useropt"
 
904
+    ac_useropt_orig=$ac_useropt
 
905
+    ac_useropt=`$as_echo "$ac_useropt" | sed 's/[-+.]/_/g'`
 
906
+    case $ac_user_opts in
 
907
+      *"
 
908
+"enable_$ac_useropt"
 
909
+"*) ;;
 
910
+      *) ac_unrecognized_opts="$ac_unrecognized_opts$ac_unrecognized_sep--enable-$ac_useropt_orig"
 
911
+        ac_unrecognized_sep=', ';;
 
912
+    esac
 
913
+    eval enable_$ac_useropt=\$ac_optarg ;;
 
914
+
 
915
+  -exec-prefix | --exec_prefix | --exec-prefix | --exec-prefi \
 
916
+  | --exec-pref | --exec-pre | --exec-pr | --exec-p | --exec- \
 
917
+  | --exec | --exe | --ex)
 
918
+    ac_prev=exec_prefix ;;
 
919
+  -exec-prefix=* | --exec_prefix=* | --exec-prefix=* | --exec-prefi=* \
 
920
+  | --exec-pref=* | --exec-pre=* | --exec-pr=* | --exec-p=* | --exec-=* \
 
921
+  | --exec=* | --exe=* | --ex=*)
 
922
+    exec_prefix=$ac_optarg ;;
 
923
+
 
924
+  -gas | --gas | --ga | --g)
 
925
+    # Obsolete; use --with-gas.
 
926
+    with_gas=yes ;;
 
927
+
 
928
+  -help | --help | --hel | --he | -h)
 
929
+    ac_init_help=long ;;
 
930
+  -help=r* | --help=r* | --hel=r* | --he=r* | -hr*)
 
931
+    ac_init_help=recursive ;;
 
932
+  -help=s* | --help=s* | --hel=s* | --he=s* | -hs*)
 
933
+    ac_init_help=short ;;
 
934
+
 
935
+  -host | --host | --hos | --ho)
 
936
+    ac_prev=host_alias ;;
 
937
+  -host=* | --host=* | --hos=* | --ho=*)
 
938
+    host_alias=$ac_optarg ;;
 
939
+
 
940
+  -htmldir | --htmldir | --htmldi | --htmld | --html | --htm | --ht)
 
941
+    ac_prev=htmldir ;;
 
942
+  -htmldir=* | --htmldir=* | --htmldi=* | --htmld=* | --html=* | --htm=* \
 
943
+  | --ht=*)
 
944
+    htmldir=$ac_optarg ;;
 
945
+
 
946
+  -includedir | --includedir | --includedi | --included | --include \
 
947
+  | --includ | --inclu | --incl | --inc)
 
948
+    ac_prev=includedir ;;
 
949
+  -includedir=* | --includedir=* | --includedi=* | --included=* | --include=* \
 
950
+  | --includ=* | --inclu=* | --incl=* | --inc=*)
 
951
+    includedir=$ac_optarg ;;
 
952
+
 
953
+  -infodir | --infodir | --infodi | --infod | --info | --inf)
 
954
+    ac_prev=infodir ;;
 
955
+  -infodir=* | --infodir=* | --infodi=* | --infod=* | --info=* | --inf=*)
 
956
+    infodir=$ac_optarg ;;
 
957
+
 
958
+  -libdir | --libdir | --libdi | --libd)
 
959
+    ac_prev=libdir ;;
 
960
+  -libdir=* | --libdir=* | --libdi=* | --libd=*)
 
961
+    libdir=$ac_optarg ;;
 
962
+
 
963
+  -libexecdir | --libexecdir | --libexecdi | --libexecd | --libexec \
 
964
+  | --libexe | --libex | --libe)
 
965
+    ac_prev=libexecdir ;;
 
966
+  -libexecdir=* | --libexecdir=* | --libexecdi=* | --libexecd=* | --libexec=* \
 
967
+  | --libexe=* | --libex=* | --libe=*)
 
968
+    libexecdir=$ac_optarg ;;
 
969
+
 
970
+  -localedir | --localedir | --localedi | --localed | --locale)
 
971
+    ac_prev=localedir ;;
 
972
+  -localedir=* | --localedir=* | --localedi=* | --localed=* | --locale=*)
 
973
+    localedir=$ac_optarg ;;
 
974
+
 
975
+  -localstatedir | --localstatedir | --localstatedi | --localstated \
 
976
+  | --localstate | --localstat | --localsta | --localst | --locals)
 
977
+    ac_prev=localstatedir ;;
 
978
+  -localstatedir=* | --localstatedir=* | --localstatedi=* | --localstated=* \
 
979
+  | --localstate=* | --localstat=* | --localsta=* | --localst=* | --locals=*)
 
980
+    localstatedir=$ac_optarg ;;
 
981
+
 
982
+  -mandir | --mandir | --mandi | --mand | --man | --ma | --m)
 
983
+    ac_prev=mandir ;;
 
984
+  -mandir=* | --mandir=* | --mandi=* | --mand=* | --man=* | --ma=* | --m=*)
 
985
+    mandir=$ac_optarg ;;
 
986
+
 
987
+  -nfp | --nfp | --nf)
 
988
+    # Obsolete; use --without-fp.
 
989
+    with_fp=no ;;
 
990
+
 
991
+  -no-create | --no-create | --no-creat | --no-crea | --no-cre \
 
992
+  | --no-cr | --no-c | -n)
 
993
+    no_create=yes ;;
 
994
+
 
995
+  -no-recursion | --no-recursion | --no-recursio | --no-recursi \
 
996
+  | --no-recurs | --no-recur | --no-recu | --no-rec | --no-re | --no-r)
 
997
+    no_recursion=yes ;;
 
998
+
 
999
+  -oldincludedir | --oldincludedir | --oldincludedi | --oldincluded \
 
1000
+  | --oldinclude | --oldinclud | --oldinclu | --oldincl | --oldinc \
 
1001
+  | --oldin | --oldi | --old | --ol | --o)
 
1002
+    ac_prev=oldincludedir ;;
 
1003
+  -oldincludedir=* | --oldincludedir=* | --oldincludedi=* | --oldincluded=* \
 
1004
+  | --oldinclude=* | --oldinclud=* | --oldinclu=* | --oldincl=* | --oldinc=* \
 
1005
+  | --oldin=* | --oldi=* | --old=* | --ol=* | --o=*)
 
1006
+    oldincludedir=$ac_optarg ;;
 
1007
+
 
1008
+  -prefix | --prefix | --prefi | --pref | --pre | --pr | --p)
 
1009
+    ac_prev=prefix ;;
 
1010
+  -prefix=* | --prefix=* | --prefi=* | --pref=* | --pre=* | --pr=* | --p=*)
 
1011
+    prefix=$ac_optarg ;;
 
1012
+
 
1013
+  -program-prefix | --program-prefix | --program-prefi | --program-pref \
 
1014
+  | --program-pre | --program-pr | --program-p)
 
1015
+    ac_prev=program_prefix ;;
 
1016
+  -program-prefix=* | --program-prefix=* | --program-prefi=* \
 
1017
+  | --program-pref=* | --program-pre=* | --program-pr=* | --program-p=*)
 
1018
+    program_prefix=$ac_optarg ;;
 
1019
+
 
1020
+  -program-suffix | --program-suffix | --program-suffi | --program-suff \
 
1021
+  | --program-suf | --program-su | --program-s)
 
1022
+    ac_prev=program_suffix ;;
 
1023
+  -program-suffix=* | --program-suffix=* | --program-suffi=* \
 
1024
+  | --program-suff=* | --program-suf=* | --program-su=* | --program-s=*)
 
1025
+    program_suffix=$ac_optarg ;;
 
1026
+
 
1027
+  -program-transform-name | --program-transform-name \
 
1028
+  | --program-transform-nam | --program-transform-na \
 
1029
+  | --program-transform-n | --program-transform- \
 
1030
+  | --program-transform | --program-transfor \
 
1031
+  | --program-transfo | --program-transf \
 
1032
+  | --program-trans | --program-tran \
 
1033
+  | --progr-tra | --program-tr | --program-t)
 
1034
+    ac_prev=program_transform_name ;;
 
1035
+  -program-transform-name=* | --program-transform-name=* \
 
1036
+  | --program-transform-nam=* | --program-transform-na=* \
 
1037
+  | --program-transform-n=* | --program-transform-=* \
 
1038
+  | --program-transform=* | --program-transfor=* \
 
1039
+  | --program-transfo=* | --program-transf=* \
 
1040
+  | --program-trans=* | --program-tran=* \
 
1041
+  | --progr-tra=* | --program-tr=* | --program-t=*)
 
1042
+    program_transform_name=$ac_optarg ;;
 
1043
+
 
1044
+  -pdfdir | --pdfdir | --pdfdi | --pdfd | --pdf | --pd)
 
1045
+    ac_prev=pdfdir ;;
 
1046
+  -pdfdir=* | --pdfdir=* | --pdfdi=* | --pdfd=* | --pdf=* | --pd=*)
 
1047
+    pdfdir=$ac_optarg ;;
 
1048
+
 
1049
+  -psdir | --psdir | --psdi | --psd | --ps)
 
1050
+    ac_prev=psdir ;;
 
1051
+  -psdir=* | --psdir=* | --psdi=* | --psd=* | --ps=*)
 
1052
+    psdir=$ac_optarg ;;
 
1053
+
 
1054
+  -q | -quiet | --quiet | --quie | --qui | --qu | --q \
 
1055
+  | -silent | --silent | --silen | --sile | --sil)
 
1056
+    silent=yes ;;
 
1057
+
 
1058
+  -sbindir | --sbindir | --sbindi | --sbind | --sbin | --sbi | --sb)
 
1059
+    ac_prev=sbindir ;;
 
1060
+  -sbindir=* | --sbindir=* | --sbindi=* | --sbind=* | --sbin=* \
 
1061
+  | --sbi=* | --sb=*)
 
1062
+    sbindir=$ac_optarg ;;
 
1063
+
 
1064
+  -sharedstatedir | --sharedstatedir | --sharedstatedi \
 
1065
+  | --sharedstated | --sharedstate | --sharedstat | --sharedsta \
 
1066
+  | --sharedst | --shareds | --shared | --share | --shar \
 
1067
+  | --sha | --sh)
 
1068
+    ac_prev=sharedstatedir ;;
 
1069
+  -sharedstatedir=* | --sharedstatedir=* | --sharedstatedi=* \
 
1070
+  | --sharedstated=* | --sharedstate=* | --sharedstat=* | --sharedsta=* \
 
1071
+  | --sharedst=* | --shareds=* | --shared=* | --share=* | --shar=* \
 
1072
+  | --sha=* | --sh=*)
 
1073
+    sharedstatedir=$ac_optarg ;;
 
1074
+
 
1075
+  -site | --site | --sit)
 
1076
+    ac_prev=site ;;
 
1077
+  -site=* | --site=* | --sit=*)
 
1078
+    site=$ac_optarg ;;
 
1079
+
 
1080
+  -srcdir | --srcdir | --srcdi | --srcd | --src | --sr)
 
1081
+    ac_prev=srcdir ;;
 
1082
+  -srcdir=* | --srcdir=* | --srcdi=* | --srcd=* | --src=* | --sr=*)
 
1083
+    srcdir=$ac_optarg ;;
 
1084
+
 
1085
+  -sysconfdir | --sysconfdir | --sysconfdi | --sysconfd | --sysconf \
 
1086
+  | --syscon | --sysco | --sysc | --sys | --sy)
 
1087
+    ac_prev=sysconfdir ;;
 
1088
+  -sysconfdir=* | --sysconfdir=* | --sysconfdi=* | --sysconfd=* | --sysconf=* \
 
1089
+  | --syscon=* | --sysco=* | --sysc=* | --sys=* | --sy=*)
 
1090
+    sysconfdir=$ac_optarg ;;
 
1091
+
 
1092
+  -target | --target | --targe | --targ | --tar | --ta | --t)
 
1093
+    ac_prev=target_alias ;;
 
1094
+  -target=* | --target=* | --targe=* | --targ=* | --tar=* | --ta=* | --t=*)
 
1095
+    target_alias=$ac_optarg ;;
 
1096
+
 
1097
+  -v | -verbose | --verbose | --verbos | --verbo | --verb)
 
1098
+    verbose=yes ;;
 
1099
+
 
1100
+  -version | --version | --versio | --versi | --vers | -V)
 
1101
+    ac_init_version=: ;;
 
1102
+
 
1103
+  -with-* | --with-*)
 
1104
+    ac_useropt=`expr "x$ac_option" : 'x-*with-\([^=]*\)'`
 
1105
+    # Reject names that are not valid shell variable names.
 
1106
+    expr "x$ac_useropt" : ".*[^-+._$as_cr_alnum]" >/dev/null &&
 
1107
+      as_fn_error "invalid package name: $ac_useropt"
 
1108
+    ac_useropt_orig=$ac_useropt
 
1109
+    ac_useropt=`$as_echo "$ac_useropt" | sed 's/[-+.]/_/g'`
 
1110
+    case $ac_user_opts in
 
1111
+      *"
 
1112
+"with_$ac_useropt"
 
1113
+"*) ;;
 
1114
+      *) ac_unrecognized_opts="$ac_unrecognized_opts$ac_unrecognized_sep--with-$ac_useropt_orig"
 
1115
+        ac_unrecognized_sep=', ';;
 
1116
+    esac
 
1117
+    eval with_$ac_useropt=\$ac_optarg ;;
 
1118
+
 
1119
+  -without-* | --without-*)
 
1120
+    ac_useropt=`expr "x$ac_option" : 'x-*without-\(.*\)'`
 
1121
+    # Reject names that are not valid shell variable names.
 
1122
+    expr "x$ac_useropt" : ".*[^-+._$as_cr_alnum]" >/dev/null &&
 
1123
+      as_fn_error "invalid package name: $ac_useropt"
 
1124
+    ac_useropt_orig=$ac_useropt
 
1125
+    ac_useropt=`$as_echo "$ac_useropt" | sed 's/[-+.]/_/g'`
 
1126
+    case $ac_user_opts in
 
1127
+      *"
 
1128
+"with_$ac_useropt"
 
1129
+"*) ;;
 
1130
+      *) ac_unrecognized_opts="$ac_unrecognized_opts$ac_unrecognized_sep--without-$ac_useropt_orig"
 
1131
+        ac_unrecognized_sep=', ';;
 
1132
+    esac
 
1133
+    eval with_$ac_useropt=no ;;
 
1134
+
 
1135
+  --x)
 
1136
+    # Obsolete; use --with-x.
 
1137
+    with_x=yes ;;
 
1138
+
 
1139
+  -x-includes | --x-includes | --x-include | --x-includ | --x-inclu \
 
1140
+  | --x-incl | --x-inc | --x-in | --x-i)
 
1141
+    ac_prev=x_includes ;;
 
1142
+  -x-includes=* | --x-includes=* | --x-include=* | --x-includ=* | --x-inclu=* \
 
1143
+  | --x-incl=* | --x-inc=* | --x-in=* | --x-i=*)
 
1144
+    x_includes=$ac_optarg ;;
 
1145
+
 
1146
+  -x-libraries | --x-libraries | --x-librarie | --x-librari \
 
1147
+  | --x-librar | --x-libra | --x-libr | --x-lib | --x-li | --x-l)
 
1148
+    ac_prev=x_libraries ;;
 
1149
+  -x-libraries=* | --x-libraries=* | --x-librarie=* | --x-librari=* \
 
1150
+  | --x-librar=* | --x-libra=* | --x-libr=* | --x-lib=* | --x-li=* | --x-l=*)
 
1151
+    x_libraries=$ac_optarg ;;
 
1152
+
 
1153
+  -*) as_fn_error "unrecognized option: \`$ac_option'
 
1154
+Try \`$0 --help' for more information."
 
1155
+    ;;
 
1156
+
 
1157
+  *=*)
 
1158
+    ac_envvar=`expr "x$ac_option" : 'x\([^=]*\)='`
 
1159
+    # Reject names that are not valid shell variable names.
 
1160
+    case $ac_envvar in #(
 
1161
+      '' | [0-9]* | *[!_$as_cr_alnum]* )
 
1162
+      as_fn_error "invalid variable name: \`$ac_envvar'" ;;
 
1163
+    esac
 
1164
+    eval $ac_envvar=\$ac_optarg
 
1165
+    export $ac_envvar ;;
 
1166
+
 
1167
+  *)
 
1168
+    # FIXME: should be removed in autoconf 3.0.
 
1169
+    $as_echo "$as_me: WARNING: you should use --build, --host, --target" >&2
 
1170
+    expr "x$ac_option" : ".*[^-._$as_cr_alnum]" >/dev/null &&
 
1171
+      $as_echo "$as_me: WARNING: invalid host type: $ac_option" >&2
 
1172
+    : ${build_alias=$ac_option} ${host_alias=$ac_option} ${target_alias=$ac_option}
 
1173
+    ;;
 
1174
+
 
1175
+  esac
 
1176
+done
 
1177
+
 
1178
+if test -n "$ac_prev"; then
 
1179
+  ac_option=--`echo $ac_prev | sed 's/_/-/g'`
 
1180
+  as_fn_error "missing argument to $ac_option"
 
1181
+fi
 
1182
+
 
1183
+if test -n "$ac_unrecognized_opts"; then
 
1184
+  case $enable_option_checking in
 
1185
+    no) ;;
 
1186
+    fatal) as_fn_error "unrecognized options: $ac_unrecognized_opts" ;;
 
1187
+    *)     $as_echo "$as_me: WARNING: unrecognized options: $ac_unrecognized_opts" >&2 ;;
 
1188
+  esac
 
1189
+fi
 
1190
+
 
1191
+# Check all directory arguments for consistency.
 
1192
+for ac_var in  exec_prefix prefix bindir sbindir libexecdir datarootdir \
 
1193
+               datadir sysconfdir sharedstatedir localstatedir includedir \
 
1194
+               oldincludedir docdir infodir htmldir dvidir pdfdir psdir \
 
1195
+               libdir localedir mandir
 
1196
+do
 
1197
+  eval ac_val=\$$ac_var
 
1198
+  # Remove trailing slashes.
 
1199
+  case $ac_val in
 
1200
+    */ )
 
1201
+      ac_val=`expr "X$ac_val" : 'X\(.*[^/]\)' \| "X$ac_val" : 'X\(.*\)'`
 
1202
+      eval $ac_var=\$ac_val;;
 
1203
+  esac
 
1204
+  # Be sure to have absolute directory names.
 
1205
+  case $ac_val in
 
1206
+    [\\/$]* | ?:[\\/]* )  continue;;
 
1207
+    NONE | '' ) case $ac_var in *prefix ) continue;; esac;;
 
1208
+  esac
 
1209
+  as_fn_error "expected an absolute directory name for --$ac_var: $ac_val"
 
1210
+done
 
1211
+
 
1212
+# There might be people who depend on the old broken behavior: `$host'
 
1213
+# used to hold the argument of --host etc.
 
1214
+# FIXME: To remove some day.
 
1215
+build=$build_alias
 
1216
+host=$host_alias
 
1217
+target=$target_alias
 
1218
+
 
1219
+# FIXME: To remove some day.
 
1220
+if test "x$host_alias" != x; then
 
1221
+  if test "x$build_alias" = x; then
 
1222
+    cross_compiling=maybe
 
1223
+    $as_echo "$as_me: WARNING: If you wanted to set the --build type, don't use --host.
 
1224
+    If a cross compiler is detected then cross compile mode will be used." >&2
 
1225
+  elif test "x$build_alias" != "x$host_alias"; then
 
1226
+    cross_compiling=yes
 
1227
+  fi
 
1228
+fi
 
1229
+
 
1230
+ac_tool_prefix=
 
1231
+test -n "$host_alias" && ac_tool_prefix=$host_alias-
 
1232
+
 
1233
+test "$silent" = yes && exec 6>/dev/null
 
1234
+
 
1235
+
 
1236
+ac_pwd=`pwd` && test -n "$ac_pwd" &&
 
1237
+ac_ls_di=`ls -di .` &&
 
1238
+ac_pwd_ls_di=`cd "$ac_pwd" && ls -di .` ||
 
1239
+  as_fn_error "working directory cannot be determined"
 
1240
+test "X$ac_ls_di" = "X$ac_pwd_ls_di" ||
 
1241
+  as_fn_error "pwd does not report name of working directory"
 
1242
+
 
1243
+
 
1244
+# Find the source files, if location was not specified.
 
1245
+if test -z "$srcdir"; then
 
1246
+  ac_srcdir_defaulted=yes
 
1247
+  # Try the directory containing this script, then the parent directory.
 
1248
+  ac_confdir=`$as_dirname -- "$as_myself" ||
 
1249
+$as_expr X"$as_myself" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \
 
1250
+        X"$as_myself" : 'X\(//\)[^/]' \| \
 
1251
+        X"$as_myself" : 'X\(//\)$' \| \
 
1252
+        X"$as_myself" : 'X\(/\)' \| . 2>/dev/null ||
 
1253
+$as_echo X"$as_myself" |
 
1254
+    sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{
 
1255
+           s//\1/
 
1256
+           q
 
1257
+         }
 
1258
+         /^X\(\/\/\)[^/].*/{
 
1259
+           s//\1/
 
1260
+           q
 
1261
+         }
 
1262
+         /^X\(\/\/\)$/{
 
1263
+           s//\1/
 
1264
+           q
 
1265
+         }
 
1266
+         /^X\(\/\).*/{
 
1267
+           s//\1/
 
1268
+           q
 
1269
+         }
 
1270
+         s/.*/./; q'`
 
1271
+  srcdir=$ac_confdir
 
1272
+  if test ! -r "$srcdir/$ac_unique_file"; then
 
1273
+    srcdir=..
 
1274
+  fi
 
1275
+else
 
1276
+  ac_srcdir_defaulted=no
 
1277
+fi
 
1278
+if test ! -r "$srcdir/$ac_unique_file"; then
 
1279
+  test "$ac_srcdir_defaulted" = yes && srcdir="$ac_confdir or .."
 
1280
+  as_fn_error "cannot find sources ($ac_unique_file) in $srcdir"
 
1281
+fi
 
1282
+ac_msg="sources are in $srcdir, but \`cd $srcdir' does not work"
 
1283
+ac_abs_confdir=`(
 
1284
+       cd "$srcdir" && test -r "./$ac_unique_file" || as_fn_error "$ac_msg"
 
1285
+       pwd)`
 
1286
+# When building in place, set srcdir=.
 
1287
+if test "$ac_abs_confdir" = "$ac_pwd"; then
 
1288
+  srcdir=.
 
1289
+fi
 
1290
+# Remove unnecessary trailing slashes from srcdir.
 
1291
+# Double slashes in file names in object file debugging info
 
1292
+# mess up M-x gdb in Emacs.
 
1293
+case $srcdir in
 
1294
+*/) srcdir=`expr "X$srcdir" : 'X\(.*[^/]\)' \| "X$srcdir" : 'X\(.*\)'`;;
 
1295
+esac
 
1296
+for ac_var in $ac_precious_vars; do
 
1297
+  eval ac_env_${ac_var}_set=\${${ac_var}+set}
 
1298
+  eval ac_env_${ac_var}_value=\$${ac_var}
 
1299
+  eval ac_cv_env_${ac_var}_set=\${${ac_var}+set}
 
1300
+  eval ac_cv_env_${ac_var}_value=\$${ac_var}
 
1301
+done
 
1302
+
 
1303
+#
 
1304
+# Report the --help message.
 
1305
+#
 
1306
+if test "$ac_init_help" = "long"; then
 
1307
+  # Omit some internal or obsolete options to make the list less imposing.
 
1308
+  # This message is too long to be a string in the A/UX 3.1 sh.
 
1309
+  cat <<_ACEOF
 
1310
+\`configure' configures mailcrypt 3.5.9 to adapt to many kinds of systems.
 
1311
+
 
1312
+Usage: $0 [OPTION]... [VAR=VALUE]...
 
1313
+
 
1314
+To assign environment variables (e.g., CC, CFLAGS...), specify them as
 
1315
+VAR=VALUE.  See below for descriptions of some of the useful variables.
 
1316
+
 
1317
+Defaults for the options are specified in brackets.
 
1318
+
 
1319
+Configuration:
 
1320
+  -h, --help              display this help and exit
 
1321
+      --help=short        display options specific to this package
 
1322
+      --help=recursive    display the short help of all the included packages
 
1323
+  -V, --version           display version information and exit
 
1324
+  -q, --quiet, --silent   do not print \`checking...' messages
 
1325
+      --cache-file=FILE   cache test results in FILE [disabled]
 
1326
+  -C, --config-cache      alias for \`--cache-file=config.cache'
 
1327
+  -n, --no-create         do not create output files
 
1328
+      --srcdir=DIR        find the sources in DIR [configure dir or \`..']
 
1329
+
 
1330
+Installation directories:
 
1331
+  --prefix=PREFIX         install architecture-independent files in PREFIX
 
1332
+                          [$ac_default_prefix]
 
1333
+  --exec-prefix=EPREFIX   install architecture-dependent files in EPREFIX
 
1334
+                          [PREFIX]
 
1335
+
 
1336
+By default, \`make install' will install all the files in
 
1337
+\`$ac_default_prefix/bin', \`$ac_default_prefix/lib' etc.  You can specify
 
1338
+an installation prefix other than \`$ac_default_prefix' using \`--prefix',
 
1339
+for instance \`--prefix=\$HOME'.
 
1340
+
 
1341
+For better control, use the options below.
 
1342
+
 
1343
+Fine tuning of the installation directories:
 
1344
+  --bindir=DIR            user executables [EPREFIX/bin]
 
1345
+  --sbindir=DIR           system admin executables [EPREFIX/sbin]
 
1346
+  --libexecdir=DIR        program executables [EPREFIX/libexec]
 
1347
+  --sysconfdir=DIR        read-only single-machine data [PREFIX/etc]
 
1348
+  --sharedstatedir=DIR    modifiable architecture-independent data [PREFIX/com]
 
1349
+  --localstatedir=DIR     modifiable single-machine data [PREFIX/var]
 
1350
+  --libdir=DIR            object code libraries [EPREFIX/lib]
 
1351
+  --includedir=DIR        C header files [PREFIX/include]
 
1352
+  --oldincludedir=DIR     C header files for non-gcc [/usr/include]
 
1353
+  --datarootdir=DIR       read-only arch.-independent data root [PREFIX/share]
 
1354
+  --datadir=DIR           read-only architecture-independent data [DATAROOTDIR]
 
1355
+  --infodir=DIR           info documentation [DATAROOTDIR/info]
 
1356
+  --localedir=DIR         locale-dependent data [DATAROOTDIR/locale]
 
1357
+  --mandir=DIR            man documentation [DATAROOTDIR/man]
 
1358
+  --docdir=DIR            documentation root [DATAROOTDIR/doc/mailcrypt]
 
1359
+  --htmldir=DIR           html documentation [DOCDIR]
 
1360
+  --dvidir=DIR            dvi documentation [DOCDIR]
 
1361
+  --pdfdir=DIR            pdf documentation [DOCDIR]
 
1362
+  --psdir=DIR             ps documentation [DOCDIR]
 
1363
+_ACEOF
 
1364
+
 
1365
+  cat <<\_ACEOF
 
1366
+_ACEOF
 
1367
+fi
 
1368
+
 
1369
+if test -n "$ac_init_help"; then
 
1370
+  case $ac_init_help in
 
1371
+     short | recursive ) echo "Configuration of mailcrypt 3.5.9:";;
 
1372
+   esac
 
1373
+  cat <<\_ACEOF
 
1374
+
 
1375
+Report bugs to <http://mailcrypt.sourceforge.net/bugs.html>.
 
1376
+_ACEOF
 
1377
+ac_status=$?
 
1378
+fi
 
1379
+
 
1380
+if test "$ac_init_help" = "recursive"; then
 
1381
+  # If there are subdirs, report their specific --help.
 
1382
+  for ac_dir in : $ac_subdirs_all; do test "x$ac_dir" = x: && continue
 
1383
+    test -d "$ac_dir" ||
 
1384
+      { cd "$srcdir" && ac_pwd=`pwd` && srcdir=. && test -d "$ac_dir"; } ||
 
1385
+      continue
 
1386
+    ac_builddir=.
 
1387
+
 
1388
+case "$ac_dir" in
 
1389
+.) ac_dir_suffix= ac_top_builddir_sub=. ac_top_build_prefix= ;;
 
1390
+*)
 
1391
+  ac_dir_suffix=/`$as_echo "$ac_dir" | sed 's|^\.[\\/]||'`
 
1392
+  # A ".." for each directory in $ac_dir_suffix.
 
1393
+  ac_top_builddir_sub=`$as_echo "$ac_dir_suffix" | sed 's|/[^\\/]*|/..|g;s|/||'`
 
1394
+  case $ac_top_builddir_sub in
 
1395
+  "") ac_top_builddir_sub=. ac_top_build_prefix= ;;
 
1396
+  *)  ac_top_build_prefix=$ac_top_builddir_sub/ ;;
 
1397
+  esac ;;
 
1398
+esac
 
1399
+ac_abs_top_builddir=$ac_pwd
 
1400
+ac_abs_builddir=$ac_pwd$ac_dir_suffix
 
1401
+# for backward compatibility:
 
1402
+ac_top_builddir=$ac_top_build_prefix
 
1403
+
 
1404
+case $srcdir in
 
1405
+  .)  # We are building in place.
 
1406
+    ac_srcdir=.
 
1407
+    ac_top_srcdir=$ac_top_builddir_sub
 
1408
+    ac_abs_top_srcdir=$ac_pwd ;;
 
1409
+  [\\/]* | ?:[\\/]* )  # Absolute name.
 
1410
+    ac_srcdir=$srcdir$ac_dir_suffix;
 
1411
+    ac_top_srcdir=$srcdir
 
1412
+    ac_abs_top_srcdir=$srcdir ;;
 
1413
+  *) # Relative name.
 
1414
+    ac_srcdir=$ac_top_build_prefix$srcdir$ac_dir_suffix
 
1415
+    ac_top_srcdir=$ac_top_build_prefix$srcdir
 
1416
+    ac_abs_top_srcdir=$ac_pwd/$srcdir ;;
 
1417
+esac
 
1418
+ac_abs_srcdir=$ac_abs_top_srcdir$ac_dir_suffix
 
1419
+
 
1420
+    cd "$ac_dir" || { ac_status=$?; continue; }
 
1421
+    # Check for guested configure.
 
1422
+    if test -f "$ac_srcdir/configure.gnu"; then
 
1423
+      echo &&
 
1424
+      $SHELL "$ac_srcdir/configure.gnu" --help=recursive
 
1425
+    elif test -f "$ac_srcdir/configure"; then
 
1426
+      echo &&
 
1427
+      $SHELL "$ac_srcdir/configure" --help=recursive
 
1428
+    else
 
1429
+      $as_echo "$as_me: WARNING: no configuration information is in $ac_dir" >&2
 
1430
+    fi || ac_status=$?
 
1431
+    cd "$ac_pwd" || { ac_status=$?; break; }
 
1432
+  done
 
1433
+fi
 
1434
+
 
1435
+test -n "$ac_init_help" && exit $ac_status
 
1436
+if $ac_init_version; then
 
1437
+  cat <<\_ACEOF
 
1438
+mailcrypt configure 3.5.9
 
1439
+generated by GNU Autoconf 2.65
 
1440
+
 
1441
+Copyright (C) 2009 Free Software Foundation, Inc.
 
1442
+This configure script is free software; the Free Software Foundation
 
1443
+gives unlimited permission to copy, distribute and modify it.
 
1444
+_ACEOF
 
1445
+  exit
 
1446
+fi
 
1447
+
 
1448
+## ------------------------ ##
 
1449
+## Autoconf initialization. ##
 
1450
+## ------------------------ ##
 
1451
+cat >config.log <<_ACEOF
 
1452
+This file contains any messages produced by compilers while
 
1453
+running configure, to aid debugging if configure makes a mistake.
 
1454
+
 
1455
+It was created by mailcrypt $as_me 3.5.9, which was
 
1456
+generated by GNU Autoconf 2.65.  Invocation command line was
 
1457
+
 
1458
+  $ $0 $@
 
1459
+
 
1460
+_ACEOF
 
1461
+exec 5>>config.log
 
1462
+{
 
1463
+cat <<_ASUNAME
 
1464
+## --------- ##
 
1465
+## Platform. ##
 
1466
+## --------- ##
 
1467
+
 
1468
+hostname = `(hostname || uname -n) 2>/dev/null | sed 1q`
 
1469
+uname -m = `(uname -m) 2>/dev/null || echo unknown`
 
1470
+uname -r = `(uname -r) 2>/dev/null || echo unknown`
 
1471
+uname -s = `(uname -s) 2>/dev/null || echo unknown`
 
1472
+uname -v = `(uname -v) 2>/dev/null || echo unknown`
 
1473
+
 
1474
+/usr/bin/uname -p = `(/usr/bin/uname -p) 2>/dev/null || echo unknown`
 
1475
+/bin/uname -X     = `(/bin/uname -X) 2>/dev/null     || echo unknown`
 
1476
+
 
1477
+/bin/arch              = `(/bin/arch) 2>/dev/null              || echo unknown`
 
1478
+/usr/bin/arch -k       = `(/usr/bin/arch -k) 2>/dev/null       || echo unknown`
 
1479
+/usr/convex/getsysinfo = `(/usr/convex/getsysinfo) 2>/dev/null || echo unknown`
 
1480
+/usr/bin/hostinfo      = `(/usr/bin/hostinfo) 2>/dev/null      || echo unknown`
 
1481
+/bin/machine           = `(/bin/machine) 2>/dev/null           || echo unknown`
 
1482
+/usr/bin/oslevel       = `(/usr/bin/oslevel) 2>/dev/null       || echo unknown`
 
1483
+/bin/universe          = `(/bin/universe) 2>/dev/null          || echo unknown`
 
1484
+
 
1485
+_ASUNAME
 
1486
+
 
1487
+as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
 
1488
+for as_dir in $PATH
 
1489
+do
 
1490
+  IFS=$as_save_IFS
 
1491
+  test -z "$as_dir" && as_dir=.
 
1492
+    $as_echo "PATH: $as_dir"
 
1493
+  done
 
1494
+IFS=$as_save_IFS
 
1495
+
 
1496
+} >&5
 
1497
+
 
1498
+cat >&5 <<_ACEOF
 
1499
+
 
1500
+
 
1501
+## ----------- ##
 
1502
+## Core tests. ##
 
1503
+## ----------- ##
 
1504
+
 
1505
+_ACEOF
 
1506
+
 
1507
+
 
1508
+# Keep a trace of the command line.
 
1509
+# Strip out --no-create and --no-recursion so they do not pile up.
 
1510
+# Strip out --silent because we don't want to record it for future runs.
 
1511
+# Also quote any args containing shell meta-characters.
 
1512
+# Make two passes to allow for proper duplicate-argument suppression.
 
1513
+ac_configure_args=
 
1514
+ac_configure_args0=
 
1515
+ac_configure_args1=
 
1516
+ac_must_keep_next=false
 
1517
+for ac_pass in 1 2
 
1518
+do
 
1519
+  for ac_arg
 
1520
+  do
 
1521
+    case $ac_arg in
 
1522
+    -no-create | --no-c* | -n | -no-recursion | --no-r*) continue ;;
 
1523
+    -q | -quiet | --quiet | --quie | --qui | --qu | --q \
 
1524
+    | -silent | --silent | --silen | --sile | --sil)
 
1525
+      continue ;;
 
1526
+    *\'*)
 
1527
+      ac_arg=`$as_echo "$ac_arg" | sed "s/'/'\\\\\\\\''/g"` ;;
 
1528
+    esac
 
1529
+    case $ac_pass in
 
1530
+    1) as_fn_append ac_configure_args0 " '$ac_arg'" ;;
 
1531
+    2)
 
1532
+      as_fn_append ac_configure_args1 " '$ac_arg'"
 
1533
+      if test $ac_must_keep_next = true; then
 
1534
+       ac_must_keep_next=false # Got value, back to normal.
 
1535
+      else
 
1536
+       case $ac_arg in
 
1537
+         *=* | --config-cache | -C | -disable-* | --disable-* \
 
1538
+         | -enable-* | --enable-* | -gas | --g* | -nfp | --nf* \
 
1539
+         | -q | -quiet | --q* | -silent | --sil* | -v | -verb* \
 
1540
+         | -with-* | --with-* | -without-* | --without-* | --x)
 
1541
+           case "$ac_configure_args0 " in
 
1542
+             "$ac_configure_args1"*" '$ac_arg' "* ) continue ;;
 
1543
+           esac
 
1544
+           ;;
 
1545
+         -* ) ac_must_keep_next=true ;;
 
1546
+       esac
 
1547
+      fi
 
1548
+      as_fn_append ac_configure_args " '$ac_arg'"
 
1549
+      ;;
 
1550
+    esac
 
1551
+  done
 
1552
+done
 
1553
+{ ac_configure_args0=; unset ac_configure_args0;}
 
1554
+{ ac_configure_args1=; unset ac_configure_args1;}
 
1555
+
 
1556
+# When interrupted or exit'd, cleanup temporary files, and complete
 
1557
+# config.log.  We remove comments because anyway the quotes in there
 
1558
+# would cause problems or look ugly.
 
1559
+# WARNING: Use '\'' to represent an apostrophe within the trap.
 
1560
+# WARNING: Do not start the trap code with a newline, due to a FreeBSD 4.0 bug.
 
1561
+trap 'exit_status=$?
 
1562
+  # Save into config.log some information that might help in debugging.
 
1563
+  {
 
1564
+    echo
 
1565
+
 
1566
+    cat <<\_ASBOX
 
1567
+## ---------------- ##
 
1568
+## Cache variables. ##
 
1569
+## ---------------- ##
 
1570
+_ASBOX
 
1571
+    echo
 
1572
+    # The following way of writing the cache mishandles newlines in values,
 
1573
+(
 
1574
+  for ac_var in `(set) 2>&1 | sed -n '\''s/^\([a-zA-Z_][a-zA-Z0-9_]*\)=.*/\1/p'\''`; do
 
1575
+    eval ac_val=\$$ac_var
 
1576
+    case $ac_val in #(
 
1577
+    *${as_nl}*)
 
1578
+      case $ac_var in #(
 
1579
+      *_cv_*) { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: cache variable $ac_var contains a newline" >&5
 
1580
+$as_echo "$as_me: WARNING: cache variable $ac_var contains a newline" >&2;} ;;
 
1581
+      esac
 
1582
+      case $ac_var in #(
 
1583
+      _ | IFS | as_nl) ;; #(
 
1584
+      BASH_ARGV | BASH_SOURCE) eval $ac_var= ;; #(
 
1585
+      *) { eval $ac_var=; unset $ac_var;} ;;
 
1586
+      esac ;;
 
1587
+    esac
 
1588
+  done
 
1589
+  (set) 2>&1 |
 
1590
+    case $as_nl`(ac_space='\'' '\''; set) 2>&1` in #(
 
1591
+    *${as_nl}ac_space=\ *)
 
1592
+      sed -n \
 
1593
+       "s/'\''/'\''\\\\'\'''\''/g;
 
1594
+         s/^\\([_$as_cr_alnum]*_cv_[_$as_cr_alnum]*\\)=\\(.*\\)/\\1='\''\\2'\''/p"
 
1595
+      ;; #(
 
1596
+    *)
 
1597
+      sed -n "/^[_$as_cr_alnum]*_cv_[_$as_cr_alnum]*=/p"
 
1598
+      ;;
 
1599
+    esac |
 
1600
+    sort
 
1601
+)
 
1602
+    echo
 
1603
+
 
1604
+    cat <<\_ASBOX
 
1605
+## ----------------- ##
 
1606
+## Output variables. ##
 
1607
+## ----------------- ##
 
1608
+_ASBOX
 
1609
+    echo
 
1610
+    for ac_var in $ac_subst_vars
 
1611
+    do
 
1612
+      eval ac_val=\$$ac_var
 
1613
+      case $ac_val in
 
1614
+      *\'\''*) ac_val=`$as_echo "$ac_val" | sed "s/'\''/'\''\\\\\\\\'\'''\''/g"`;;
 
1615
+      esac
 
1616
+      $as_echo "$ac_var='\''$ac_val'\''"
 
1617
+    done | sort
 
1618
+    echo
 
1619
+
 
1620
+    if test -n "$ac_subst_files"; then
 
1621
+      cat <<\_ASBOX
 
1622
+## ------------------- ##
 
1623
+## File substitutions. ##
 
1624
+## ------------------- ##
 
1625
+_ASBOX
 
1626
+      echo
 
1627
+      for ac_var in $ac_subst_files
 
1628
+      do
 
1629
+       eval ac_val=\$$ac_var
 
1630
+       case $ac_val in
 
1631
+       *\'\''*) ac_val=`$as_echo "$ac_val" | sed "s/'\''/'\''\\\\\\\\'\'''\''/g"`;;
 
1632
+       esac
 
1633
+       $as_echo "$ac_var='\''$ac_val'\''"
 
1634
+      done | sort
 
1635
+      echo
 
1636
+    fi
 
1637
+
 
1638
+    if test -s confdefs.h; then
 
1639
+      cat <<\_ASBOX
 
1640
+## ----------- ##
 
1641
+## confdefs.h. ##
 
1642
+## ----------- ##
 
1643
+_ASBOX
 
1644
+      echo
 
1645
+      cat confdefs.h
 
1646
+      echo
 
1647
+    fi
 
1648
+    test "$ac_signal" != 0 &&
 
1649
+      $as_echo "$as_me: caught signal $ac_signal"
 
1650
+    $as_echo "$as_me: exit $exit_status"
 
1651
+  } >&5
 
1652
+  rm -f core *.core core.conftest.* &&
 
1653
+    rm -f -r conftest* confdefs* conf$$* $ac_clean_files &&
 
1654
+    exit $exit_status
 
1655
+' 0
 
1656
+for ac_signal in 1 2 13 15; do
 
1657
+  trap 'ac_signal='$ac_signal'; as_fn_exit 1' $ac_signal
 
1658
+done
 
1659
+ac_signal=0
 
1660
+
 
1661
+# confdefs.h avoids OS command line length limits that DEFS can exceed.
 
1662
+rm -f -r conftest* confdefs.h
 
1663
+
 
1664
+$as_echo "/* confdefs.h */" > confdefs.h
 
1665
+
 
1666
+# Predefined preprocessor variables.
 
1667
+
 
1668
+cat >>confdefs.h <<_ACEOF
 
1669
+#define PACKAGE_NAME "$PACKAGE_NAME"
 
1670
+_ACEOF
 
1671
+
 
1672
+cat >>confdefs.h <<_ACEOF
 
1673
+#define PACKAGE_TARNAME "$PACKAGE_TARNAME"
 
1674
+_ACEOF
 
1675
+
 
1676
+cat >>confdefs.h <<_ACEOF
 
1677
+#define PACKAGE_VERSION "$PACKAGE_VERSION"
 
1678
+_ACEOF
 
1679
+
 
1680
+cat >>confdefs.h <<_ACEOF
 
1681
+#define PACKAGE_STRING "$PACKAGE_STRING"
 
1682
+_ACEOF
 
1683
+
 
1684
+cat >>confdefs.h <<_ACEOF
 
1685
+#define PACKAGE_BUGREPORT "$PACKAGE_BUGREPORT"
 
1686
+_ACEOF
 
1687
+
 
1688
+cat >>confdefs.h <<_ACEOF
 
1689
+#define PACKAGE_URL "$PACKAGE_URL"
 
1690
+_ACEOF
 
1691
+
 
1692
+
 
1693
+# Let the site file select an alternate cache file if it wants to.
 
1694
+# Prefer an explicitly selected file to automatically selected ones.
 
1695
+ac_site_file1=NONE
 
1696
+ac_site_file2=NONE
 
1697
+if test -n "$CONFIG_SITE"; then
 
1698
+  ac_site_file1=$CONFIG_SITE
 
1699
+elif test "x$prefix" != xNONE; then
 
1700
+  ac_site_file1=$prefix/share/config.site
 
1701
+  ac_site_file2=$prefix/etc/config.site
 
1702
+else
 
1703
+  ac_site_file1=$ac_default_prefix/share/config.site
 
1704
+  ac_site_file2=$ac_default_prefix/etc/config.site
 
1705
+fi
 
1706
+for ac_site_file in "$ac_site_file1" "$ac_site_file2"
 
1707
+do
 
1708
+  test "x$ac_site_file" = xNONE && continue
 
1709
+  if test /dev/null != "$ac_site_file" && test -r "$ac_site_file"; then
 
1710
+    { $as_echo "$as_me:${as_lineno-$LINENO}: loading site script $ac_site_file" >&5
 
1711
+$as_echo "$as_me: loading site script $ac_site_file" >&6;}
 
1712
+    sed 's/^/| /' "$ac_site_file" >&5
 
1713
+    . "$ac_site_file"
 
1714
+  fi
 
1715
+done
 
1716
+
 
1717
+if test -r "$cache_file"; then
 
1718
+  # Some versions of bash will fail to source /dev/null (special files
 
1719
+  # actually), so we avoid doing that.  DJGPP emulates it as a regular file.
 
1720
+  if test /dev/null != "$cache_file" && test -f "$cache_file"; then
 
1721
+    { $as_echo "$as_me:${as_lineno-$LINENO}: loading cache $cache_file" >&5
 
1722
+$as_echo "$as_me: loading cache $cache_file" >&6;}
 
1723
+    case $cache_file in
 
1724
+      [\\/]* | ?:[\\/]* ) . "$cache_file";;
 
1725
+      *)                      . "./$cache_file";;
 
1726
+    esac
 
1727
+  fi
 
1728
+else
 
1729
+  { $as_echo "$as_me:${as_lineno-$LINENO}: creating cache $cache_file" >&5
 
1730
+$as_echo "$as_me: creating cache $cache_file" >&6;}
 
1731
+  >$cache_file
 
1732
+fi
 
1733
+
 
1734
+# Check that the precious variables saved in the cache have kept the same
 
1735
+# value.
 
1736
+ac_cache_corrupted=false
 
1737
+for ac_var in $ac_precious_vars; do
 
1738
+  eval ac_old_set=\$ac_cv_env_${ac_var}_set
 
1739
+  eval ac_new_set=\$ac_env_${ac_var}_set
 
1740
+  eval ac_old_val=\$ac_cv_env_${ac_var}_value
 
1741
+  eval ac_new_val=\$ac_env_${ac_var}_value
 
1742
+  case $ac_old_set,$ac_new_set in
 
1743
+    set,)
 
1744
+      { $as_echo "$as_me:${as_lineno-$LINENO}: error: \`$ac_var' was set to \`$ac_old_val' in the previous run" >&5
 
1745
+$as_echo "$as_me: error: \`$ac_var' was set to \`$ac_old_val' in the previous run" >&2;}
 
1746
+      ac_cache_corrupted=: ;;
 
1747
+    ,set)
 
1748
+      { $as_echo "$as_me:${as_lineno-$LINENO}: error: \`$ac_var' was not set in the previous run" >&5
 
1749
+$as_echo "$as_me: error: \`$ac_var' was not set in the previous run" >&2;}
 
1750
+      ac_cache_corrupted=: ;;
 
1751
+    ,);;
 
1752
+    *)
 
1753
+      if test "x$ac_old_val" != "x$ac_new_val"; then
 
1754
+       # differences in whitespace do not lead to failure.
 
1755
+       ac_old_val_w=`echo x $ac_old_val`
 
1756
+       ac_new_val_w=`echo x $ac_new_val`
 
1757
+       if test "$ac_old_val_w" != "$ac_new_val_w"; then
 
1758
+         { $as_echo "$as_me:${as_lineno-$LINENO}: error: \`$ac_var' has changed since the previous run:" >&5
 
1759
+$as_echo "$as_me: error: \`$ac_var' has changed since the previous run:" >&2;}
 
1760
+         ac_cache_corrupted=:
 
1761
+       else
 
1762
+         { $as_echo "$as_me:${as_lineno-$LINENO}: warning: ignoring whitespace changes in \`$ac_var' since the previous run:" >&5
 
1763
+$as_echo "$as_me: warning: ignoring whitespace changes in \`$ac_var' since the previous run:" >&2;}
 
1764
+         eval $ac_var=\$ac_old_val
 
1765
+       fi
 
1766
+       { $as_echo "$as_me:${as_lineno-$LINENO}:   former value:  \`$ac_old_val'" >&5
 
1767
+$as_echo "$as_me:   former value:  \`$ac_old_val'" >&2;}
 
1768
+       { $as_echo "$as_me:${as_lineno-$LINENO}:   current value: \`$ac_new_val'" >&5
 
1769
+$as_echo "$as_me:   current value: \`$ac_new_val'" >&2;}
 
1770
+      fi;;
 
1771
+  esac
 
1772
+  # Pass precious variables to config.status.
 
1773
+  if test "$ac_new_set" = set; then
 
1774
+    case $ac_new_val in
 
1775
+    *\'*) ac_arg=$ac_var=`$as_echo "$ac_new_val" | sed "s/'/'\\\\\\\\''/g"` ;;
 
1776
+    *) ac_arg=$ac_var=$ac_new_val ;;
 
1777
+    esac
 
1778
+    case " $ac_configure_args " in
 
1779
+      *" '$ac_arg' "*) ;; # Avoid dups.  Use of quotes ensures accuracy.
 
1780
+      *) as_fn_append ac_configure_args " '$ac_arg'" ;;
 
1781
+    esac
 
1782
+  fi
 
1783
+done
 
1784
+if $ac_cache_corrupted; then
 
1785
+  { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5
 
1786
+$as_echo "$as_me: error: in \`$ac_pwd':" >&2;}
 
1787
+  { $as_echo "$as_me:${as_lineno-$LINENO}: error: changes in the environment can compromise the build" >&5
 
1788
+$as_echo "$as_me: error: changes in the environment can compromise the build" >&2;}
 
1789
+  as_fn_error "run \`make distclean' and/or \`rm $cache_file' and start over" "$LINENO" 5
 
1790
+fi
 
1791
+## -------------------- ##
 
1792
+## Main body of script. ##
 
1793
+## -------------------- ##
 
1794
+
 
1795
+ac_ext=c
 
1796
+ac_cpp='$CPP $CPPFLAGS'
 
1797
+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5'
 
1798
+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5'
 
1799
+ac_compiler_gnu=$ac_cv_c_compiler_gnu
 
1800
+
 
1801
+
 
1802
+
 
1803
+
 
1804
+# Checks for programs.
 
1805
+{ $as_echo "$as_me:${as_lineno-$LINENO}: checking whether ln -s works" >&5
 
1806
+$as_echo_n "checking whether ln -s works... " >&6; }
 
1807
+LN_S=$as_ln_s
 
1808
+if test "$LN_S" = "ln -s"; then
 
1809
+  { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5
 
1810
+$as_echo "yes" >&6; }
 
1811
+else
 
1812
+  { $as_echo "$as_me:${as_lineno-$LINENO}: result: no, using $LN_S" >&5
 
1813
+$as_echo "no, using $LN_S" >&6; }
 
1814
+fi
 
1815
+
 
1816
+ac_aux_dir=
 
1817
+for ac_dir in "$srcdir" "$srcdir/.." "$srcdir/../.."; do
 
1818
+  for ac_t in install-sh install.sh shtool; do
 
1819
+    if test -f "$ac_dir/$ac_t"; then
 
1820
+      ac_aux_dir=$ac_dir
 
1821
+      ac_install_sh="$ac_aux_dir/$ac_t -c"
 
1822
+      break 2
 
1823
+    fi
 
1824
+  done
 
1825
+done
 
1826
+if test -z "$ac_aux_dir"; then
 
1827
+  as_fn_error "cannot find install-sh, install.sh, or shtool in \"$srcdir\" \"$srcdir/..\" \"$srcdir/../..\"" "$LINENO" 5
 
1828
+fi
 
1829
+
 
1830
+# These three variables are undocumented and unsupported,
 
1831
+# and are intended to be withdrawn in a future Autoconf release.
 
1832
+# They can cause serious problems if a builder's source tree is in a directory
 
1833
+# whose full name contains unusual characters.
 
1834
+ac_config_guess="$SHELL $ac_aux_dir/config.guess"  # Please don't use this var.
 
1835
+ac_config_sub="$SHELL $ac_aux_dir/config.sub"  # Please don't use this var.
 
1836
+ac_configure="$SHELL $ac_aux_dir/configure"  # Please don't use this var.
 
1837
+
 
1838
+
 
1839
+# Find a good install program.  We prefer a C program (faster),
 
1840
+# so one script is as good as another.  But avoid the broken or
 
1841
+# incompatible versions:
 
1842
+# SysV /etc/install, /usr/sbin/install
 
1843
+# SunOS /usr/etc/install
 
1844
+# IRIX /sbin/install
 
1845
+# AIX /bin/install
 
1846
+# AmigaOS /C/install, which installs bootblocks on floppy discs
 
1847
+# AIX 4 /usr/bin/installbsd, which doesn't work without a -g flag
 
1848
+# AFS /usr/afsws/bin/install, which mishandles nonexistent args
 
1849
+# SVR4 /usr/ucb/install, which tries to use the nonexistent group "staff"
 
1850
+# OS/2's system install, which has a completely different semantic
 
1851
+# ./install, which can be erroneously created by make from ./install.sh.
 
1852
+# Reject install programs that cannot install multiple files.
 
1853
+{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for a BSD-compatible install" >&5
 
1854
+$as_echo_n "checking for a BSD-compatible install... " >&6; }
 
1855
+if test -z "$INSTALL"; then
 
1856
+if test "${ac_cv_path_install+set}" = set; then :
 
1857
+  $as_echo_n "(cached) " >&6
 
1858
+else
 
1859
+  as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
 
1860
+for as_dir in $PATH
 
1861
+do
 
1862
+  IFS=$as_save_IFS
 
1863
+  test -z "$as_dir" && as_dir=.
 
1864
+    # Account for people who put trailing slashes in PATH elements.
 
1865
+case $as_dir/ in #((
 
1866
+  ./ | .// | /[cC]/* | \
 
1867
+  /etc/* | /usr/sbin/* | /usr/etc/* | /sbin/* | /usr/afsws/bin/* | \
 
1868
+  ?:[\\/]os2[\\/]install[\\/]* | ?:[\\/]OS2[\\/]INSTALL[\\/]* | \
 
1869
+  /usr/ucb/* ) ;;
 
1870
+  *)
 
1871
+    # OSF1 and SCO ODT 3.0 have their own names for install.
 
1872
+    # Don't use installbsd from OSF since it installs stuff as root
 
1873
+    # by default.
 
1874
+    for ac_prog in ginstall scoinst install; do
 
1875
+      for ac_exec_ext in '' $ac_executable_extensions; do
 
1876
+       if { test -f "$as_dir/$ac_prog$ac_exec_ext" && $as_test_x "$as_dir/$ac_prog$ac_exec_ext"; }; then
 
1877
+         if test $ac_prog = install &&
 
1878
+           grep dspmsg "$as_dir/$ac_prog$ac_exec_ext" >/dev/null 2>&1; then
 
1879
+           # AIX install.  It has an incompatible calling convention.
 
1880
+           :
 
1881
+         elif test $ac_prog = install &&
 
1882
+           grep pwplus "$as_dir/$ac_prog$ac_exec_ext" >/dev/null 2>&1; then
 
1883
+           # program-specific install script used by HP pwplus--don't use.
 
1884
+           :
 
1885
+         else
 
1886
+           rm -rf conftest.one conftest.two conftest.dir
 
1887
+           echo one > conftest.one
 
1888
+           echo two > conftest.two
 
1889
+           mkdir conftest.dir
 
1890
+           if "$as_dir/$ac_prog$ac_exec_ext" -c conftest.one conftest.two "`pwd`/conftest.dir" &&
 
1891
+             test -s conftest.one && test -s conftest.two &&
 
1892
+             test -s conftest.dir/conftest.one &&
 
1893
+             test -s conftest.dir/conftest.two
 
1894
+           then
 
1895
+             ac_cv_path_install="$as_dir/$ac_prog$ac_exec_ext -c"
 
1896
+             break 3
 
1897
+           fi
 
1898
+         fi
 
1899
+       fi
 
1900
+      done
 
1901
+    done
 
1902
+    ;;
 
1903
+esac
 
1904
+
 
1905
+  done
 
1906
+IFS=$as_save_IFS
 
1907
+
 
1908
+rm -rf conftest.one conftest.two conftest.dir
 
1909
+
 
1910
+fi
 
1911
+  if test "${ac_cv_path_install+set}" = set; then
 
1912
+    INSTALL=$ac_cv_path_install
 
1913
+  else
 
1914
+    # As a last resort, use the slow shell script.  Don't cache a
 
1915
+    # value for INSTALL within a source directory, because that will
 
1916
+    # break other packages using the cache if that directory is
 
1917
+    # removed, or if the value is a relative name.
 
1918
+    INSTALL=$ac_install_sh
 
1919
+  fi
 
1920
+fi
 
1921
+{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $INSTALL" >&5
 
1922
+$as_echo "$INSTALL" >&6; }
 
1923
+
 
1924
+# Use test -z because SunOS4 sh mishandles braces in ${var-val}.
 
1925
+# It thinks the first close brace ends the variable substitution.
 
1926
+test -z "$INSTALL_PROGRAM" && INSTALL_PROGRAM='${INSTALL}'
 
1927
+
 
1928
+test -z "$INSTALL_SCRIPT" && INSTALL_SCRIPT='${INSTALL}'
 
1929
+
 
1930
+test -z "$INSTALL_DATA" && INSTALL_DATA='${INSTALL} -m 644'
 
1931
+
 
1932
+
 
1933
+# Extract the first word of "install-info", so it can be a program name with args.
 
1934
+set dummy install-info; ac_word=$2
 
1935
+{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
 
1936
+$as_echo_n "checking for $ac_word... " >&6; }
 
1937
+if test "${ac_cv_path_INSTALL_INFO+set}" = set; then :
 
1938
+  $as_echo_n "(cached) " >&6
 
1939
+else
 
1940
+  case $INSTALL_INFO in
 
1941
+  [\\/]* | ?:[\\/]*)
 
1942
+  ac_cv_path_INSTALL_INFO="$INSTALL_INFO" # Let the user override the test with a path.
 
1943
+  ;;
 
1944
+  *)
 
1945
+  as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
 
1946
+for as_dir in $PATH
 
1947
+do
 
1948
+  IFS=$as_save_IFS
 
1949
+  test -z "$as_dir" && as_dir=.
 
1950
+    for ac_exec_ext in '' $ac_executable_extensions; do
 
1951
+  if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then
 
1952
+    ac_cv_path_INSTALL_INFO="$as_dir/$ac_word$ac_exec_ext"
 
1953
+    $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5
 
1954
+    break 2
 
1955
+  fi
 
1956
+done
 
1957
+  done
 
1958
+IFS=$as_save_IFS
 
1959
+
 
1960
+  ;;
 
1961
+esac
 
1962
+fi
 
1963
+INSTALL_INFO=$ac_cv_path_INSTALL_INFO
 
1964
+if test -n "$INSTALL_INFO"; then
 
1965
+  { $as_echo "$as_me:${as_lineno-$LINENO}: result: $INSTALL_INFO" >&5
 
1966
+$as_echo "$INSTALL_INFO" >&6; }
 
1967
+else
 
1968
+  { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5
 
1969
+$as_echo "no" >&6; }
 
1970
+fi
 
1971
+
 
1972
+
 
1973
+if test "$INSTALL_INFO x" = " x"
 
1974
+then
 
1975
+  INSTALL_INFO=":"
 
1976
+fi
 
1977
+
 
1978
+
 
1979
+# Extract the first word of "basename", so it can be a program name with args.
 
1980
+set dummy basename; ac_word=$2
 
1981
+{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
 
1982
+$as_echo_n "checking for $ac_word... " >&6; }
 
1983
+if test "${ac_cv_path_BASENAME+set}" = set; then :
 
1984
+  $as_echo_n "(cached) " >&6
 
1985
+else
 
1986
+  case $BASENAME in
 
1987
+  [\\/]* | ?:[\\/]*)
 
1988
+  ac_cv_path_BASENAME="$BASENAME" # Let the user override the test with a path.
 
1989
+  ;;
 
1990
+  *)
 
1991
+  as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
 
1992
+for as_dir in $PATH
 
1993
+do
 
1994
+  IFS=$as_save_IFS
 
1995
+  test -z "$as_dir" && as_dir=.
 
1996
+    for ac_exec_ext in '' $ac_executable_extensions; do
 
1997
+  if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then
 
1998
+    ac_cv_path_BASENAME="$as_dir/$ac_word$ac_exec_ext"
 
1999
+    $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5
 
2000
+    break 2
 
2001
+  fi
 
2002
+done
 
2003
+  done
 
2004
+IFS=$as_save_IFS
 
2005
+
 
2006
+  ;;
 
2007
+esac
 
2008
+fi
 
2009
+BASENAME=$ac_cv_path_BASENAME
 
2010
+if test -n "$BASENAME"; then
 
2011
+  { $as_echo "$as_me:${as_lineno-$LINENO}: result: $BASENAME" >&5
 
2012
+$as_echo "$BASENAME" >&6; }
 
2013
+else
 
2014
+  { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5
 
2015
+$as_echo "no" >&6; }
 
2016
+fi
 
2017
+
 
2018
+
 
2019
+if test "$BASENAME x" = " x"
 
2020
+then
 
2021
+  as_fn_error "Cannot find program \"basename\" on PATH.
 
2022
+Hint: Try setting BASENAME environment variable or fixing PATH." "$LINENO" 5
 
2023
+fi
 
2024
+
 
2025
+if test -n "$EMACS" && test "$EMACS" = "t"
 
2026
+then
 
2027
+    unset EMACS
 
2028
+fi
 
2029
+
 
2030
+for ac_prog in emacs xemacs
 
2031
+do
 
2032
+  # Extract the first word of "$ac_prog", so it can be a program name with args.
 
2033
+set dummy $ac_prog; ac_word=$2
 
2034
+{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
 
2035
+$as_echo_n "checking for $ac_word... " >&6; }
 
2036
+if test "${ac_cv_prog_EMACS+set}" = set; then :
 
2037
+  $as_echo_n "(cached) " >&6
 
2038
+else
 
2039
+  if test -n "$EMACS"; then
 
2040
+  ac_cv_prog_EMACS="$EMACS" # Let the user override the test.
 
2041
+else
 
2042
+as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
 
2043
+for as_dir in $PATH
 
2044
+do
 
2045
+  IFS=$as_save_IFS
 
2046
+  test -z "$as_dir" && as_dir=.
 
2047
+    for ac_exec_ext in '' $ac_executable_extensions; do
 
2048
+  if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then
 
2049
+    ac_cv_prog_EMACS="$ac_prog"
 
2050
+    $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5
 
2051
+    break 2
 
2052
+  fi
 
2053
+done
 
2054
+  done
 
2055
+IFS=$as_save_IFS
 
2056
+
 
2057
+fi
 
2058
+fi
 
2059
+EMACS=$ac_cv_prog_EMACS
 
2060
+if test -n "$EMACS"; then
 
2061
+  { $as_echo "$as_me:${as_lineno-$LINENO}: result: $EMACS" >&5
 
2062
+$as_echo "$EMACS" >&6; }
 
2063
+else
 
2064
+  { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5
 
2065
+$as_echo "no" >&6; }
 
2066
+fi
 
2067
+
 
2068
+
 
2069
+  test -n "$EMACS" && break
 
2070
+done
 
2071
+
 
2072
+if test "$EMACS x" = " x"
 
2073
+then
 
2074
+  as_fn_error "'Cannot find emacs or xemacs on PATH.
 
2075
+Hint: Try setting EMACS environment variable or fixing PATH.'" "$LINENO" 5
 
2076
+fi
 
2077
+
 
2078
+RESULT=`$BASENAME $EMACS`
 
2079
+if test "$RESULT" = xemacs
 
2080
+then
 
2081
+  if $EMACS -batch -q --vanilla
 
2082
+  then
 
2083
+    EMACSFLAGS="--vanilla"         # We're running Xemacs 20.x or higher
 
2084
+
 
2085
+  else
 
2086
+    EMACSFLAGS="-q -no-site-file"  # Still running Xemacs 19.x
 
2087
+  fi
 
2088
+else if test "$RESULT" = emacs
 
2089
+then
 
2090
+  EMACSFLAGS=""
 
2091
+
 
2092
+fi
 
2093
+fi
 
2094
+EXTRA_SRCS=""
 
2095
+EXTRA_OBJS=""
 
2096
+echo -n checking for timer.el...
 
2097
+if $EMACS -batch -l timer 2>/dev/null
 
2098
+then
 
2099
+  echo timer.el
 
2100
+else
 
2101
+  echo no.  I will install it for you.
 
2102
+  EXTRA_SRCS="timer.el"
 
2103
+
 
2104
+  EXTRA_OBJS="timer.elc"
 
2105
+
 
2106
+fi
 
2107
+
 
2108
+ac_config_files="$ac_config_files Makefile tests/Makefile tests/remailer/Makefile"
 
2109
+
 
2110
+
 
2111
+cat >confcache <<\_ACEOF
 
2112
+# This file is a shell script that caches the results of configure
 
2113
+# tests run on this system so they can be shared between configure
 
2114
+# scripts and configure runs, see configure's option --config-cache.
 
2115
+# It is not useful on other systems.  If it contains results you don't
 
2116
+# want to keep, you may remove or edit it.
 
2117
+#
 
2118
+# config.status only pays attention to the cache file if you give it
 
2119
+# the --recheck option to rerun configure.
 
2120
+#
 
2121
+# `ac_cv_env_foo' variables (set or unset) will be overridden when
 
2122
+# loading this file, other *unset* `ac_cv_foo' will be assigned the
 
2123
+# following values.
 
2124
+
 
2125
+_ACEOF
 
2126
+
 
2127
+# The following way of writing the cache mishandles newlines in values,
 
2128
+# but we know of no workaround that is simple, portable, and efficient.
 
2129
+# So, we kill variables containing newlines.
 
2130
+# Ultrix sh set writes to stderr and can't be redirected directly,
 
2131
+# and sets the high bit in the cache file unless we assign to the vars.
 
2132
+(
 
2133
+  for ac_var in `(set) 2>&1 | sed -n 's/^\([a-zA-Z_][a-zA-Z0-9_]*\)=.*/\1/p'`; do
 
2134
+    eval ac_val=\$$ac_var
 
2135
+    case $ac_val in #(
 
2136
+    *${as_nl}*)
 
2137
+      case $ac_var in #(
 
2138
+      *_cv_*) { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: cache variable $ac_var contains a newline" >&5
 
2139
+$as_echo "$as_me: WARNING: cache variable $ac_var contains a newline" >&2;} ;;
 
2140
+      esac
 
2141
+      case $ac_var in #(
 
2142
+      _ | IFS | as_nl) ;; #(
 
2143
+      BASH_ARGV | BASH_SOURCE) eval $ac_var= ;; #(
 
2144
+      *) { eval $ac_var=; unset $ac_var;} ;;
 
2145
+      esac ;;
 
2146
+    esac
 
2147
+  done
 
2148
+
 
2149
+  (set) 2>&1 |
 
2150
+    case $as_nl`(ac_space=' '; set) 2>&1` in #(
 
2151
+    *${as_nl}ac_space=\ *)
 
2152
+      # `set' does not quote correctly, so add quotes: double-quote
 
2153
+      # substitution turns \\\\ into \\, and sed turns \\ into \.
 
2154
+      sed -n \
 
2155
+       "s/'/'\\\\''/g;
 
2156
+         s/^\\([_$as_cr_alnum]*_cv_[_$as_cr_alnum]*\\)=\\(.*\\)/\\1='\\2'/p"
 
2157
+      ;; #(
 
2158
+    *)
 
2159
+      # `set' quotes correctly as required by POSIX, so do not add quotes.
 
2160
+      sed -n "/^[_$as_cr_alnum]*_cv_[_$as_cr_alnum]*=/p"
 
2161
+      ;;
 
2162
+    esac |
 
2163
+    sort
 
2164
+) |
 
2165
+  sed '
 
2166
+     /^ac_cv_env_/b end
 
2167
+     t clear
 
2168
+     :clear
 
2169
+     s/^\([^=]*\)=\(.*[{}].*\)$/test "${\1+set}" = set || &/
 
2170
+     t end
 
2171
+     s/^\([^=]*\)=\(.*\)$/\1=${\1=\2}/
 
2172
+     :end' >>confcache
 
2173
+if diff "$cache_file" confcache >/dev/null 2>&1; then :; else
 
2174
+  if test -w "$cache_file"; then
 
2175
+    test "x$cache_file" != "x/dev/null" &&
 
2176
+      { $as_echo "$as_me:${as_lineno-$LINENO}: updating cache $cache_file" >&5
 
2177
+$as_echo "$as_me: updating cache $cache_file" >&6;}
 
2178
+    cat confcache >$cache_file
 
2179
+  else
 
2180
+    { $as_echo "$as_me:${as_lineno-$LINENO}: not updating unwritable cache $cache_file" >&5
 
2181
+$as_echo "$as_me: not updating unwritable cache $cache_file" >&6;}
 
2182
+  fi
 
2183
+fi
 
2184
+rm -f confcache
 
2185
+
 
2186
+test "x$prefix" = xNONE && prefix=$ac_default_prefix
 
2187
+# Let make expand exec_prefix.
 
2188
+test "x$exec_prefix" = xNONE && exec_prefix='${prefix}'
 
2189
+
 
2190
+# Transform confdefs.h into DEFS.
 
2191
+# Protect against shell expansion while executing Makefile rules.
 
2192
+# Protect against Makefile macro expansion.
 
2193
+#
 
2194
+# If the first sed substitution is executed (which looks for macros that
 
2195
+# take arguments), then branch to the quote section.  Otherwise,
 
2196
+# look for a macro that doesn't take arguments.
 
2197
+ac_script='
 
2198
+:mline
 
2199
+/\\$/{
 
2200
+ N
 
2201
+ s,\\\n,,
 
2202
+ b mline
 
2203
+}
 
2204
+t clear
 
2205
+:clear
 
2206
+s/^[    ]*#[    ]*define[       ][      ]*\([^  (][^    (]*([^)]*)\)[   ]*\(.*\)/-D\1=\2/g
 
2207
+t quote
 
2208
+s/^[    ]*#[    ]*define[       ][      ]*\([^  ][^     ]*\)[   ]*\(.*\)/-D\1=\2/g
 
2209
+t quote
 
2210
+b any
 
2211
+:quote
 
2212
+s/[     `~#$^&*(){}\\|;'\''"<>?]/\\&/g
 
2213
+s/\[/\\&/g
 
2214
+s/\]/\\&/g
 
2215
+s/\$/$$/g
 
2216
+H
 
2217
+:any
 
2218
+${
 
2219
+       g
 
2220
+       s/^\n//
 
2221
+       s/\n/ /g
 
2222
+       p
 
2223
+}
 
2224
+'
 
2225
+DEFS=`sed -n "$ac_script" confdefs.h`
 
2226
+
 
2227
+
 
2228
+ac_libobjs=
 
2229
+ac_ltlibobjs=
 
2230
+for ac_i in : $LIBOBJS; do test "x$ac_i" = x: && continue
 
2231
+  # 1. Remove the extension, and $U if already installed.
 
2232
+  ac_script='s/\$U\././;s/\.o$//;s/\.obj$//'
 
2233
+  ac_i=`$as_echo "$ac_i" | sed "$ac_script"`
 
2234
+  # 2. Prepend LIBOBJDIR.  When used with automake>=1.10 LIBOBJDIR
 
2235
+  #    will be set to the directory where LIBOBJS objects are built.
 
2236
+  as_fn_append ac_libobjs " \${LIBOBJDIR}$ac_i\$U.$ac_objext"
 
2237
+  as_fn_append ac_ltlibobjs " \${LIBOBJDIR}$ac_i"'$U.lo'
 
2238
+done
 
2239
+LIBOBJS=$ac_libobjs
 
2240
+
 
2241
+LTLIBOBJS=$ac_ltlibobjs
 
2242
+
 
2243
+
 
2244
+
 
2245
+: ${CONFIG_STATUS=./config.status}
 
2246
+ac_write_fail=0
 
2247
+ac_clean_files_save=$ac_clean_files
 
2248
+ac_clean_files="$ac_clean_files $CONFIG_STATUS"
 
2249
+{ $as_echo "$as_me:${as_lineno-$LINENO}: creating $CONFIG_STATUS" >&5
 
2250
+$as_echo "$as_me: creating $CONFIG_STATUS" >&6;}
 
2251
+as_write_fail=0
 
2252
+cat >$CONFIG_STATUS <<_ASEOF || as_write_fail=1
 
2253
+#! $SHELL
 
2254
+# Generated by $as_me.
 
2255
+# Run this file to recreate the current configuration.
 
2256
+# Compiler output produced by configure, useful for debugging
 
2257
+# configure, is in config.log if it exists.
 
2258
+
 
2259
+debug=false
 
2260
+ac_cs_recheck=false
 
2261
+ac_cs_silent=false
 
2262
+
 
2263
+SHELL=\${CONFIG_SHELL-$SHELL}
 
2264
+export SHELL
 
2265
+_ASEOF
 
2266
+cat >>$CONFIG_STATUS <<\_ASEOF || as_write_fail=1
 
2267
+## -------------------- ##
 
2268
+## M4sh Initialization. ##
 
2269
+## -------------------- ##
 
2270
+
 
2271
+# Be more Bourne compatible
 
2272
+DUALCASE=1; export DUALCASE # for MKS sh
 
2273
+if test -n "${ZSH_VERSION+set}" && (emulate sh) >/dev/null 2>&1; then :
 
2274
+  emulate sh
 
2275
+  NULLCMD=:
 
2276
+  # Pre-4.2 versions of Zsh do word splitting on ${1+"$@"}, which
 
2277
+  # is contrary to our usage.  Disable this feature.
 
2278
+  alias -g '${1+"$@"}'='"$@"'
 
2279
+  setopt NO_GLOB_SUBST
 
2280
+else
 
2281
+  case `(set -o) 2>/dev/null` in #(
 
2282
+  *posix*) :
 
2283
+    set -o posix ;; #(
 
2284
+  *) :
 
2285
+     ;;
 
2286
+esac
 
2287
+fi
 
2288
+
 
2289
+
 
2290
+as_nl='
 
2291
+'
 
2292
+export as_nl
 
2293
+# Printing a long string crashes Solaris 7 /usr/bin/printf.
 
2294
+as_echo='\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\'
 
2295
+as_echo=$as_echo$as_echo$as_echo$as_echo$as_echo
 
2296
+as_echo=$as_echo$as_echo$as_echo$as_echo$as_echo$as_echo
 
2297
+# Prefer a ksh shell builtin over an external printf program on Solaris,
 
2298
+# but without wasting forks for bash or zsh.
 
2299
+if test -z "$BASH_VERSION$ZSH_VERSION" \
 
2300
+    && (test "X`print -r -- $as_echo`" = "X$as_echo") 2>/dev/null; then
 
2301
+  as_echo='print -r --'
 
2302
+  as_echo_n='print -rn --'
 
2303
+elif (test "X`printf %s $as_echo`" = "X$as_echo") 2>/dev/null; then
 
2304
+  as_echo='printf %s\n'
 
2305
+  as_echo_n='printf %s'
 
2306
+else
 
2307
+  if test "X`(/usr/ucb/echo -n -n $as_echo) 2>/dev/null`" = "X-n $as_echo"; then
 
2308
+    as_echo_body='eval /usr/ucb/echo -n "$1$as_nl"'
 
2309
+    as_echo_n='/usr/ucb/echo -n'
 
2310
+  else
 
2311
+    as_echo_body='eval expr "X$1" : "X\\(.*\\)"'
 
2312
+    as_echo_n_body='eval
 
2313
+      arg=$1;
 
2314
+      case $arg in #(
 
2315
+      *"$as_nl"*)
 
2316
+       expr "X$arg" : "X\\(.*\\)$as_nl";
 
2317
+       arg=`expr "X$arg" : ".*$as_nl\\(.*\\)"`;;
 
2318
+      esac;
 
2319
+      expr "X$arg" : "X\\(.*\\)" | tr -d "$as_nl"
 
2320
+    '
 
2321
+    export as_echo_n_body
 
2322
+    as_echo_n='sh -c $as_echo_n_body as_echo'
 
2323
+  fi
 
2324
+  export as_echo_body
 
2325
+  as_echo='sh -c $as_echo_body as_echo'
 
2326
+fi
 
2327
+
 
2328
+# The user is always right.
 
2329
+if test "${PATH_SEPARATOR+set}" != set; then
 
2330
+  PATH_SEPARATOR=:
 
2331
+  (PATH='/bin;/bin'; FPATH=$PATH; sh -c :) >/dev/null 2>&1 && {
 
2332
+    (PATH='/bin:/bin'; FPATH=$PATH; sh -c :) >/dev/null 2>&1 ||
 
2333
+      PATH_SEPARATOR=';'
 
2334
+  }
 
2335
+fi
 
2336
+
 
2337
+
 
2338
+# IFS
 
2339
+# We need space, tab and new line, in precisely that order.  Quoting is
 
2340
+# there to prevent editors from complaining about space-tab.
 
2341
+# (If _AS_PATH_WALK were called with IFS unset, it would disable word
 
2342
+# splitting by setting IFS to empty value.)
 
2343
+IFS=" ""       $as_nl"
 
2344
+
 
2345
+# Find who we are.  Look in the path if we contain no directory separator.
 
2346
+case $0 in #((
 
2347
+  *[\\/]* ) as_myself=$0 ;;
 
2348
+  *) as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
 
2349
+for as_dir in $PATH
 
2350
+do
 
2351
+  IFS=$as_save_IFS
 
2352
+  test -z "$as_dir" && as_dir=.
 
2353
+    test -r "$as_dir/$0" && as_myself=$as_dir/$0 && break
 
2354
+  done
 
2355
+IFS=$as_save_IFS
 
2356
+
 
2357
+     ;;
 
2358
+esac
 
2359
+# We did not find ourselves, most probably we were run as `sh COMMAND'
 
2360
+# in which case we are not to be found in the path.
 
2361
+if test "x$as_myself" = x; then
 
2362
+  as_myself=$0
 
2363
+fi
 
2364
+if test ! -f "$as_myself"; then
 
2365
+  $as_echo "$as_myself: error: cannot find myself; rerun with an absolute file name" >&2
 
2366
+  exit 1
 
2367
+fi
 
2368
+
 
2369
+# Unset variables that we do not need and which cause bugs (e.g. in
 
2370
+# pre-3.0 UWIN ksh).  But do not cause bugs in bash 2.01; the "|| exit 1"
 
2371
+# suppresses any "Segmentation fault" message there.  '((' could
 
2372
+# trigger a bug in pdksh 5.2.14.
 
2373
+for as_var in BASH_ENV ENV MAIL MAILPATH
 
2374
+do eval test x\${$as_var+set} = xset \
 
2375
+  && ( (unset $as_var) || exit 1) >/dev/null 2>&1 && unset $as_var || :
 
2376
+done
 
2377
+PS1='$ '
 
2378
+PS2='> '
 
2379
+PS4='+ '
 
2380
+
 
2381
+# NLS nuisances.
 
2382
+LC_ALL=C
 
2383
+export LC_ALL
 
2384
+LANGUAGE=C
 
2385
+export LANGUAGE
 
2386
+
 
2387
+# CDPATH.
 
2388
+(unset CDPATH) >/dev/null 2>&1 && unset CDPATH
 
2389
+
 
2390
+
 
2391
+# as_fn_error ERROR [LINENO LOG_FD]
 
2392
+# ---------------------------------
 
2393
+# Output "`basename $0`: error: ERROR" to stderr. If LINENO and LOG_FD are
 
2394
+# provided, also output the error to LOG_FD, referencing LINENO. Then exit the
 
2395
+# script with status $?, using 1 if that was 0.
 
2396
+as_fn_error ()
 
2397
+{
 
2398
+  as_status=$?; test $as_status -eq 0 && as_status=1
 
2399
+  if test "$3"; then
 
2400
+    as_lineno=${as_lineno-"$2"} as_lineno_stack=as_lineno_stack=$as_lineno_stack
 
2401
+    $as_echo "$as_me:${as_lineno-$LINENO}: error: $1" >&$3
 
2402
+  fi
 
2403
+  $as_echo "$as_me: error: $1" >&2
 
2404
+  as_fn_exit $as_status
 
2405
+} # as_fn_error
 
2406
+
 
2407
+
 
2408
+# as_fn_set_status STATUS
 
2409
+# -----------------------
 
2410
+# Set $? to STATUS, without forking.
 
2411
+as_fn_set_status ()
 
2412
+{
 
2413
+  return $1
 
2414
+} # as_fn_set_status
 
2415
+
 
2416
+# as_fn_exit STATUS
 
2417
+# -----------------
 
2418
+# Exit the shell with STATUS, even in a "trap 0" or "set -e" context.
 
2419
+as_fn_exit ()
 
2420
+{
 
2421
+  set +e
 
2422
+  as_fn_set_status $1
 
2423
+  exit $1
 
2424
+} # as_fn_exit
 
2425
+
 
2426
+# as_fn_unset VAR
 
2427
+# ---------------
 
2428
+# Portably unset VAR.
 
2429
+as_fn_unset ()
 
2430
+{
 
2431
+  { eval $1=; unset $1;}
 
2432
+}
 
2433
+as_unset=as_fn_unset
 
2434
+# as_fn_append VAR VALUE
 
2435
+# ----------------------
 
2436
+# Append the text in VALUE to the end of the definition contained in VAR. Take
 
2437
+# advantage of any shell optimizations that allow amortized linear growth over
 
2438
+# repeated appends, instead of the typical quadratic growth present in naive
 
2439
+# implementations.
 
2440
+if (eval "as_var=1; as_var+=2; test x\$as_var = x12") 2>/dev/null; then :
 
2441
+  eval 'as_fn_append ()
 
2442
+  {
 
2443
+    eval $1+=\$2
 
2444
+  }'
 
2445
+else
 
2446
+  as_fn_append ()
 
2447
+  {
 
2448
+    eval $1=\$$1\$2
 
2449
+  }
 
2450
+fi # as_fn_append
 
2451
+
 
2452
+# as_fn_arith ARG...
 
2453
+# ------------------
 
2454
+# Perform arithmetic evaluation on the ARGs, and store the result in the
 
2455
+# global $as_val. Take advantage of shells that can avoid forks. The arguments
 
2456
+# must be portable across $(()) and expr.
 
2457
+if (eval "test \$(( 1 + 1 )) = 2") 2>/dev/null; then :
 
2458
+  eval 'as_fn_arith ()
 
2459
+  {
 
2460
+    as_val=$(( $* ))
 
2461
+  }'
 
2462
+else
 
2463
+  as_fn_arith ()
 
2464
+  {
 
2465
+    as_val=`expr "$@" || test $? -eq 1`
 
2466
+  }
 
2467
+fi # as_fn_arith
 
2468
+
 
2469
+
 
2470
+if expr a : '\(a\)' >/dev/null 2>&1 &&
 
2471
+   test "X`expr 00001 : '.*\(...\)'`" = X001; then
 
2472
+  as_expr=expr
 
2473
+else
 
2474
+  as_expr=false
 
2475
+fi
 
2476
+
 
2477
+if (basename -- /) >/dev/null 2>&1 && test "X`basename -- / 2>&1`" = "X/"; then
 
2478
+  as_basename=basename
 
2479
+else
 
2480
+  as_basename=false
 
2481
+fi
 
2482
+
 
2483
+if (as_dir=`dirname -- /` && test "X$as_dir" = X/) >/dev/null 2>&1; then
 
2484
+  as_dirname=dirname
 
2485
+else
 
2486
+  as_dirname=false
 
2487
+fi
 
2488
+
 
2489
+as_me=`$as_basename -- "$0" ||
 
2490
+$as_expr X/"$0" : '.*/\([^/][^/]*\)/*$' \| \
 
2491
+        X"$0" : 'X\(//\)$' \| \
 
2492
+        X"$0" : 'X\(/\)' \| . 2>/dev/null ||
 
2493
+$as_echo X/"$0" |
 
2494
+    sed '/^.*\/\([^/][^/]*\)\/*$/{
 
2495
+           s//\1/
 
2496
+           q
 
2497
+         }
 
2498
+         /^X\/\(\/\/\)$/{
 
2499
+           s//\1/
 
2500
+           q
 
2501
+         }
 
2502
+         /^X\/\(\/\).*/{
 
2503
+           s//\1/
 
2504
+           q
 
2505
+         }
 
2506
+         s/.*/./; q'`
 
2507
+
 
2508
+# Avoid depending upon Character Ranges.
 
2509
+as_cr_letters='abcdefghijklmnopqrstuvwxyz'
 
2510
+as_cr_LETTERS='ABCDEFGHIJKLMNOPQRSTUVWXYZ'
 
2511
+as_cr_Letters=$as_cr_letters$as_cr_LETTERS
 
2512
+as_cr_digits='0123456789'
 
2513
+as_cr_alnum=$as_cr_Letters$as_cr_digits
 
2514
+
 
2515
+ECHO_C= ECHO_N= ECHO_T=
 
2516
+case `echo -n x` in #(((((
 
2517
+-n*)
 
2518
+  case `echo 'xy\c'` in
 
2519
+  *c*) ECHO_T='        ';;     # ECHO_T is single tab character.
 
2520
+  xy)  ECHO_C='\c';;
 
2521
+  *)   echo `echo ksh88 bug on AIX 6.1` > /dev/null
 
2522
+       ECHO_T='        ';;
 
2523
+  esac;;
 
2524
+*)
 
2525
+  ECHO_N='-n';;
 
2526
+esac
 
2527
+
 
2528
+rm -f conf$$ conf$$.exe conf$$.file
 
2529
+if test -d conf$$.dir; then
 
2530
+  rm -f conf$$.dir/conf$$.file
 
2531
+else
 
2532
+  rm -f conf$$.dir
 
2533
+  mkdir conf$$.dir 2>/dev/null
 
2534
+fi
 
2535
+if (echo >conf$$.file) 2>/dev/null; then
 
2536
+  if ln -s conf$$.file conf$$ 2>/dev/null; then
 
2537
+    as_ln_s='ln -s'
 
2538
+    # ... but there are two gotchas:
 
2539
+    # 1) On MSYS, both `ln -s file dir' and `ln file dir' fail.
 
2540
+    # 2) DJGPP < 2.04 has no symlinks; `ln -s' creates a wrapper executable.
 
2541
+    # In both cases, we have to default to `cp -p'.
 
2542
+    ln -s conf$$.file conf$$.dir 2>/dev/null && test ! -f conf$$.exe ||
 
2543
+      as_ln_s='cp -p'
 
2544
+  elif ln conf$$.file conf$$ 2>/dev/null; then
 
2545
+    as_ln_s=ln
 
2546
+  else
 
2547
+    as_ln_s='cp -p'
 
2548
+  fi
 
2549
+else
 
2550
+  as_ln_s='cp -p'
 
2551
+fi
 
2552
+rm -f conf$$ conf$$.exe conf$$.dir/conf$$.file conf$$.file
 
2553
+rmdir conf$$.dir 2>/dev/null
 
2554
+
 
2555
+
 
2556
+# as_fn_mkdir_p
 
2557
+# -------------
 
2558
+# Create "$as_dir" as a directory, including parents if necessary.
 
2559
+as_fn_mkdir_p ()
 
2560
+{
 
2561
+
 
2562
+  case $as_dir in #(
 
2563
+  -*) as_dir=./$as_dir;;
 
2564
+  esac
 
2565
+  test -d "$as_dir" || eval $as_mkdir_p || {
 
2566
+    as_dirs=
 
2567
+    while :; do
 
2568
+      case $as_dir in #(
 
2569
+      *\'*) as_qdir=`$as_echo "$as_dir" | sed "s/'/'\\\\\\\\''/g"`;; #'(
 
2570
+      *) as_qdir=$as_dir;;
 
2571
+      esac
 
2572
+      as_dirs="'$as_qdir' $as_dirs"
 
2573
+      as_dir=`$as_dirname -- "$as_dir" ||
 
2574
+$as_expr X"$as_dir" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \
 
2575
+        X"$as_dir" : 'X\(//\)[^/]' \| \
 
2576
+        X"$as_dir" : 'X\(//\)$' \| \
 
2577
+        X"$as_dir" : 'X\(/\)' \| . 2>/dev/null ||
 
2578
+$as_echo X"$as_dir" |
 
2579
+    sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{
 
2580
+           s//\1/
 
2581
+           q
 
2582
+         }
 
2583
+         /^X\(\/\/\)[^/].*/{
 
2584
+           s//\1/
 
2585
+           q
 
2586
+         }
 
2587
+         /^X\(\/\/\)$/{
 
2588
+           s//\1/
 
2589
+           q
 
2590
+         }
 
2591
+         /^X\(\/\).*/{
 
2592
+           s//\1/
 
2593
+           q
 
2594
+         }
 
2595
+         s/.*/./; q'`
 
2596
+      test -d "$as_dir" && break
 
2597
+    done
 
2598
+    test -z "$as_dirs" || eval "mkdir $as_dirs"
 
2599
+  } || test -d "$as_dir" || as_fn_error "cannot create directory $as_dir"
 
2600
+
 
2601
+
 
2602
+} # as_fn_mkdir_p
 
2603
+if mkdir -p . 2>/dev/null; then
 
2604
+  as_mkdir_p='mkdir -p "$as_dir"'
 
2605
+else
 
2606
+  test -d ./-p && rmdir ./-p
 
2607
+  as_mkdir_p=false
 
2608
+fi
 
2609
+
 
2610
+if test -x / >/dev/null 2>&1; then
 
2611
+  as_test_x='test -x'
 
2612
+else
 
2613
+  if ls -dL / >/dev/null 2>&1; then
 
2614
+    as_ls_L_option=L
 
2615
+  else
 
2616
+    as_ls_L_option=
 
2617
+  fi
 
2618
+  as_test_x='
 
2619
+    eval sh -c '\''
 
2620
+      if test -d "$1"; then
 
2621
+       test -d "$1/.";
 
2622
+      else
 
2623
+       case $1 in #(
 
2624
+       -*)set "./$1";;
 
2625
+       esac;
 
2626
+       case `ls -ld'$as_ls_L_option' "$1" 2>/dev/null` in #((
 
2627
+       ???[sx]*):;;*)false;;esac;fi
 
2628
+    '\'' sh
 
2629
+  '
 
2630
+fi
 
2631
+as_executable_p=$as_test_x
 
2632
+
 
2633
+# Sed expression to map a string onto a valid CPP name.
 
2634
+as_tr_cpp="eval sed 'y%*$as_cr_letters%P$as_cr_LETTERS%;s%[^_$as_cr_alnum]%_%g'"
 
2635
+
 
2636
+# Sed expression to map a string onto a valid variable name.
 
2637
+as_tr_sh="eval sed 'y%*+%pp%;s%[^_$as_cr_alnum]%_%g'"
 
2638
+
 
2639
+
 
2640
+exec 6>&1
 
2641
+## ----------------------------------- ##
 
2642
+## Main body of $CONFIG_STATUS script. ##
 
2643
+## ----------------------------------- ##
 
2644
+_ASEOF
 
2645
+test $as_write_fail = 0 && chmod +x $CONFIG_STATUS || ac_write_fail=1
 
2646
+
 
2647
+cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1
 
2648
+# Save the log message, to keep $0 and so on meaningful, and to
 
2649
+# report actual input values of CONFIG_FILES etc. instead of their
 
2650
+# values after options handling.
 
2651
+ac_log="
 
2652
+This file was extended by mailcrypt $as_me 3.5.9, which was
 
2653
+generated by GNU Autoconf 2.65.  Invocation command line was
 
2654
+
 
2655
+  CONFIG_FILES    = $CONFIG_FILES
 
2656
+  CONFIG_HEADERS  = $CONFIG_HEADERS
 
2657
+  CONFIG_LINKS    = $CONFIG_LINKS
 
2658
+  CONFIG_COMMANDS = $CONFIG_COMMANDS
 
2659
+  $ $0 $@
 
2660
+
 
2661
+on `(hostname || uname -n) 2>/dev/null | sed 1q`
 
2662
+"
 
2663
+
 
2664
+_ACEOF
 
2665
+
 
2666
+case $ac_config_files in *"
 
2667
+"*) set x $ac_config_files; shift; ac_config_files=$*;;
 
2668
+esac
 
2669
+
 
2670
+
 
2671
+
 
2672
+cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1
 
2673
+# Files that config.status was made for.
 
2674
+config_files="$ac_config_files"
 
2675
+
 
2676
+_ACEOF
 
2677
+
 
2678
+cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1
 
2679
+ac_cs_usage="\
 
2680
+\`$as_me' instantiates files and other configuration actions
 
2681
+from templates according to the current configuration.  Unless the files
 
2682
+and actions are specified as TAGs, all are instantiated by default.
 
2683
+
 
2684
+Usage: $0 [OPTION]... [TAG]...
 
2685
+
 
2686
+  -h, --help       print this help, then exit
 
2687
+  -V, --version    print version number and configuration settings, then exit
 
2688
+      --config     print configuration, then exit
 
2689
+  -q, --quiet, --silent
 
2690
+                   do not print progress messages
 
2691
+  -d, --debug      don't remove temporary files
 
2692
+      --recheck    update $as_me by reconfiguring in the same conditions
 
2693
+      --file=FILE[:TEMPLATE]
 
2694
+                   instantiate the configuration file FILE
 
2695
+
 
2696
+Configuration files:
 
2697
+$config_files
 
2698
+
 
2699
+Report bugs to <http://mailcrypt.sourceforge.net/bugs.html>."
 
2700
+
 
2701
+_ACEOF
 
2702
+cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1
 
2703
+ac_cs_config="`$as_echo "$ac_configure_args" | sed 's/^ //; s/[\\""\`\$]/\\\\&/g'`"
 
2704
+ac_cs_version="\\
 
2705
+mailcrypt config.status 3.5.9
 
2706
+configured by $0, generated by GNU Autoconf 2.65,
 
2707
+  with options \\"\$ac_cs_config\\"
 
2708
+
 
2709
+Copyright (C) 2009 Free Software Foundation, Inc.
 
2710
+This config.status script is free software; the Free Software Foundation
 
2711
+gives unlimited permission to copy, distribute and modify it."
 
2712
+
 
2713
+ac_pwd='$ac_pwd'
 
2714
+srcdir='$srcdir'
 
2715
+INSTALL='$INSTALL'
 
2716
+test -n "\$AWK" || AWK=awk
 
2717
+_ACEOF
 
2718
+
 
2719
+cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1
 
2720
+# The default lists apply if the user does not specify any file.
 
2721
+ac_need_defaults=:
 
2722
+while test $# != 0
 
2723
+do
 
2724
+  case $1 in
 
2725
+  --*=*)
 
2726
+    ac_option=`expr "X$1" : 'X\([^=]*\)='`
 
2727
+    ac_optarg=`expr "X$1" : 'X[^=]*=\(.*\)'`
 
2728
+    ac_shift=:
 
2729
+    ;;
 
2730
+  *)
 
2731
+    ac_option=$1
 
2732
+    ac_optarg=$2
 
2733
+    ac_shift=shift
 
2734
+    ;;
 
2735
+  esac
 
2736
+
 
2737
+  case $ac_option in
 
2738
+  # Handling of the options.
 
2739
+  -recheck | --recheck | --rechec | --reche | --rech | --rec | --re | --r)
 
2740
+    ac_cs_recheck=: ;;
 
2741
+  --version | --versio | --versi | --vers | --ver | --ve | --v | -V )
 
2742
+    $as_echo "$ac_cs_version"; exit ;;
 
2743
+  --config | --confi | --conf | --con | --co | --c )
 
2744
+    $as_echo "$ac_cs_config"; exit ;;
 
2745
+  --debug | --debu | --deb | --de | --d | -d )
 
2746
+    debug=: ;;
 
2747
+  --file | --fil | --fi | --f )
 
2748
+    $ac_shift
 
2749
+    case $ac_optarg in
 
2750
+    *\'*) ac_optarg=`$as_echo "$ac_optarg" | sed "s/'/'\\\\\\\\''/g"` ;;
 
2751
+    esac
 
2752
+    as_fn_append CONFIG_FILES " '$ac_optarg'"
 
2753
+    ac_need_defaults=false;;
 
2754
+  --he | --h |  --help | --hel | -h )
 
2755
+    $as_echo "$ac_cs_usage"; exit ;;
 
2756
+  -q | -quiet | --quiet | --quie | --qui | --qu | --q \
 
2757
+  | -silent | --silent | --silen | --sile | --sil | --si | --s)
 
2758
+    ac_cs_silent=: ;;
 
2759
+
 
2760
+  # This is an error.
 
2761
+  -*) as_fn_error "unrecognized option: \`$1'
 
2762
+Try \`$0 --help' for more information." ;;
 
2763
+
 
2764
+  *) as_fn_append ac_config_targets " $1"
 
2765
+     ac_need_defaults=false ;;
 
2766
+
 
2767
+  esac
 
2768
+  shift
 
2769
+done
 
2770
+
 
2771
+ac_configure_extra_args=
 
2772
+
 
2773
+if $ac_cs_silent; then
 
2774
+  exec 6>/dev/null
 
2775
+  ac_configure_extra_args="$ac_configure_extra_args --silent"
 
2776
+fi
 
2777
+
 
2778
+_ACEOF
 
2779
+cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1
 
2780
+if \$ac_cs_recheck; then
 
2781
+  set X '$SHELL' '$0' $ac_configure_args \$ac_configure_extra_args --no-create --no-recursion
 
2782
+  shift
 
2783
+  \$as_echo "running CONFIG_SHELL=$SHELL \$*" >&6
 
2784
+  CONFIG_SHELL='$SHELL'
 
2785
+  export CONFIG_SHELL
 
2786
+  exec "\$@"
 
2787
+fi
 
2788
+
 
2789
+_ACEOF
 
2790
+cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1
 
2791
+exec 5>>config.log
 
2792
+{
 
2793
+  echo
 
2794
+  sed 'h;s/./-/g;s/^.../## /;s/...$/ ##/;p;x;p;x' <<_ASBOX
 
2795
+## Running $as_me. ##
 
2796
+_ASBOX
 
2797
+  $as_echo "$ac_log"
 
2798
+} >&5
 
2799
+
 
2800
+_ACEOF
 
2801
+cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1
 
2802
+_ACEOF
 
2803
+
 
2804
+cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1
 
2805
+
 
2806
+# Handling of arguments.
 
2807
+for ac_config_target in $ac_config_targets
 
2808
+do
 
2809
+  case $ac_config_target in
 
2810
+    "Makefile") CONFIG_FILES="$CONFIG_FILES Makefile" ;;
 
2811
+    "tests/Makefile") CONFIG_FILES="$CONFIG_FILES tests/Makefile" ;;
 
2812
+    "tests/remailer/Makefile") CONFIG_FILES="$CONFIG_FILES tests/remailer/Makefile" ;;
 
2813
+
 
2814
+  *) as_fn_error "invalid argument: \`$ac_config_target'" "$LINENO" 5;;
 
2815
+  esac
 
2816
+done
 
2817
+
 
2818
+
 
2819
+# If the user did not use the arguments to specify the items to instantiate,
 
2820
+# then the envvar interface is used.  Set only those that are not.
 
2821
+# We use the long form for the default assignment because of an extremely
 
2822
+# bizarre bug on SunOS 4.1.3.
 
2823
+if $ac_need_defaults; then
 
2824
+  test "${CONFIG_FILES+set}" = set || CONFIG_FILES=$config_files
 
2825
+fi
 
2826
+
 
2827
+# Have a temporary directory for convenience.  Make it in the build tree
 
2828
+# simply because there is no reason against having it here, and in addition,
 
2829
+# creating and moving files from /tmp can sometimes cause problems.
 
2830
+# Hook for its removal unless debugging.
 
2831
+# Note that there is a small window in which the directory will not be cleaned:
 
2832
+# after its creation but before its name has been assigned to `$tmp'.
 
2833
+$debug ||
 
2834
+{
 
2835
+  tmp=
 
2836
+  trap 'exit_status=$?
 
2837
+  { test -z "$tmp" || test ! -d "$tmp" || rm -fr "$tmp"; } && exit $exit_status
 
2838
+' 0
 
2839
+  trap 'as_fn_exit 1' 1 2 13 15
 
2840
+}
 
2841
+# Create a (secure) tmp directory for tmp files.
 
2842
+
 
2843
+{
 
2844
+  tmp=`(umask 077 && mktemp -d "./confXXXXXX") 2>/dev/null` &&
 
2845
+  test -n "$tmp" && test -d "$tmp"
 
2846
+}  ||
 
2847
+{
 
2848
+  tmp=./conf$$-$RANDOM
 
2849
+  (umask 077 && mkdir "$tmp")
 
2850
+} || as_fn_error "cannot create a temporary directory in ." "$LINENO" 5
 
2851
+
 
2852
+# Set up the scripts for CONFIG_FILES section.
 
2853
+# No need to generate them if there are no CONFIG_FILES.
 
2854
+# This happens for instance with `./config.status config.h'.
 
2855
+if test -n "$CONFIG_FILES"; then
 
2856
+
 
2857
+
 
2858
+ac_cr=`echo X | tr X '\015'`
 
2859
+# On cygwin, bash can eat \r inside `` if the user requested igncr.
 
2860
+# But we know of no other shell where ac_cr would be empty at this
 
2861
+# point, so we can use a bashism as a fallback.
 
2862
+if test "x$ac_cr" = x; then
 
2863
+  eval ac_cr=\$\'\\r\'
 
2864
+fi
 
2865
+ac_cs_awk_cr=`$AWK 'BEGIN { print "a\rb" }' </dev/null 2>/dev/null`
 
2866
+if test "$ac_cs_awk_cr" = "a${ac_cr}b"; then
 
2867
+  ac_cs_awk_cr='\r'
 
2868
+else
 
2869
+  ac_cs_awk_cr=$ac_cr
 
2870
+fi
 
2871
+
 
2872
+echo 'BEGIN {' >"$tmp/subs1.awk" &&
 
2873
+_ACEOF
 
2874
+
 
2875
+
 
2876
+{
 
2877
+  echo "cat >conf$$subs.awk <<_ACEOF" &&
 
2878
+  echo "$ac_subst_vars" | sed 's/.*/&!$&$ac_delim/' &&
 
2879
+  echo "_ACEOF"
 
2880
+} >conf$$subs.sh ||
 
2881
+  as_fn_error "could not make $CONFIG_STATUS" "$LINENO" 5
 
2882
+ac_delim_num=`echo "$ac_subst_vars" | grep -c '$'`
 
2883
+ac_delim='%!_!# '
 
2884
+for ac_last_try in false false false false false :; do
 
2885
+  . ./conf$$subs.sh ||
 
2886
+    as_fn_error "could not make $CONFIG_STATUS" "$LINENO" 5
 
2887
+
 
2888
+  ac_delim_n=`sed -n "s/.*$ac_delim\$/X/p" conf$$subs.awk | grep -c X`
 
2889
+  if test $ac_delim_n = $ac_delim_num; then
 
2890
+    break
 
2891
+  elif $ac_last_try; then
 
2892
+    as_fn_error "could not make $CONFIG_STATUS" "$LINENO" 5
 
2893
+  else
 
2894
+    ac_delim="$ac_delim!$ac_delim _$ac_delim!! "
 
2895
+  fi
 
2896
+done
 
2897
+rm -f conf$$subs.sh
 
2898
+
 
2899
+cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1
 
2900
+cat >>"\$tmp/subs1.awk" <<\\_ACAWK &&
 
2901
+_ACEOF
 
2902
+sed -n '
 
2903
+h
 
2904
+s/^/S["/; s/!.*/"]=/
 
2905
+p
 
2906
+g
 
2907
+s/^[^!]*!//
 
2908
+:repl
 
2909
+t repl
 
2910
+s/'"$ac_delim"'$//
 
2911
+t delim
 
2912
+:nl
 
2913
+h
 
2914
+s/\(.\{148\}\)..*/\1/
 
2915
+t more1
 
2916
+s/["\\]/\\&/g; s/^/"/; s/$/\\n"\\/
 
2917
+p
 
2918
+n
 
2919
+b repl
 
2920
+:more1
 
2921
+s/["\\]/\\&/g; s/^/"/; s/$/"\\/
 
2922
+p
 
2923
+g
 
2924
+s/.\{148\}//
 
2925
+t nl
 
2926
+:delim
 
2927
+h
 
2928
+s/\(.\{148\}\)..*/\1/
 
2929
+t more2
 
2930
+s/["\\]/\\&/g; s/^/"/; s/$/"/
 
2931
+p
 
2932
+b
 
2933
+:more2
 
2934
+s/["\\]/\\&/g; s/^/"/; s/$/"\\/
 
2935
+p
 
2936
+g
 
2937
+s/.\{148\}//
 
2938
+t delim
 
2939
+' <conf$$subs.awk | sed '
 
2940
+/^[^""]/{
 
2941
+  N
 
2942
+  s/\n//
 
2943
+}
 
2944
+' >>$CONFIG_STATUS || ac_write_fail=1
 
2945
+rm -f conf$$subs.awk
 
2946
+cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1
 
2947
+_ACAWK
 
2948
+cat >>"\$tmp/subs1.awk" <<_ACAWK &&
 
2949
+  for (key in S) S_is_set[key] = 1
 
2950
+  FS = ""
 
2951
+
 
2952
+}
 
2953
+{
 
2954
+  line = $ 0
 
2955
+  nfields = split(line, field, "@")
 
2956
+  substed = 0
 
2957
+  len = length(field[1])
 
2958
+  for (i = 2; i < nfields; i++) {
 
2959
+    key = field[i]
 
2960
+    keylen = length(key)
 
2961
+    if (S_is_set[key]) {
 
2962
+      value = S[key]
 
2963
+      line = substr(line, 1, len) "" value "" substr(line, len + keylen + 3)
 
2964
+      len += length(value) + length(field[++i])
 
2965
+      substed = 1
 
2966
+    } else
 
2967
+      len += 1 + keylen
 
2968
+  }
 
2969
+
 
2970
+  print line
 
2971
+}
 
2972
+
 
2973
+_ACAWK
 
2974
+_ACEOF
 
2975
+cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1
 
2976
+if sed "s/$ac_cr//" < /dev/null > /dev/null 2>&1; then
 
2977
+  sed "s/$ac_cr\$//; s/$ac_cr/$ac_cs_awk_cr/g"
 
2978
+else
 
2979
+  cat
 
2980
+fi < "$tmp/subs1.awk" > "$tmp/subs.awk" \
 
2981
+  || as_fn_error "could not setup config files machinery" "$LINENO" 5
 
2982
+_ACEOF
 
2983
+
 
2984
+# VPATH may cause trouble with some makes, so we remove $(srcdir),
 
2985
+# ${srcdir} and @srcdir@ from VPATH if srcdir is ".", strip leading and
 
2986
+# trailing colons and then remove the whole line if VPATH becomes empty
 
2987
+# (actually we leave an empty line to preserve line numbers).
 
2988
+if test "x$srcdir" = x.; then
 
2989
+  ac_vpsub='/^[         ]*VPATH[        ]*=/{
 
2990
+s/:*\$(srcdir):*/:/
 
2991
+s/:*\${srcdir}:*/:/
 
2992
+s/:*@srcdir@:*/:/
 
2993
+s/^\([^=]*=[    ]*\):*/\1/
 
2994
+s/:*$//
 
2995
+s/^[^=]*=[      ]*$//
 
2996
+}'
 
2997
+fi
 
2998
+
 
2999
+cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1
 
3000
+fi # test -n "$CONFIG_FILES"
 
3001
+
 
3002
+
 
3003
+eval set X "  :F $CONFIG_FILES      "
 
3004
+shift
 
3005
+for ac_tag
 
3006
+do
 
3007
+  case $ac_tag in
 
3008
+  :[FHLC]) ac_mode=$ac_tag; continue;;
 
3009
+  esac
 
3010
+  case $ac_mode$ac_tag in
 
3011
+  :[FHL]*:*);;
 
3012
+  :L* | :C*:*) as_fn_error "invalid tag \`$ac_tag'" "$LINENO" 5;;
 
3013
+  :[FH]-) ac_tag=-:-;;
 
3014
+  :[FH]*) ac_tag=$ac_tag:$ac_tag.in;;
 
3015
+  esac
 
3016
+  ac_save_IFS=$IFS
 
3017
+  IFS=:
 
3018
+  set x $ac_tag
 
3019
+  IFS=$ac_save_IFS
 
3020
+  shift
 
3021
+  ac_file=$1
 
3022
+  shift
 
3023
+
 
3024
+  case $ac_mode in
 
3025
+  :L) ac_source=$1;;
 
3026
+  :[FH])
 
3027
+    ac_file_inputs=
 
3028
+    for ac_f
 
3029
+    do
 
3030
+      case $ac_f in
 
3031
+      -) ac_f="$tmp/stdin";;
 
3032
+      *) # Look for the file first in the build tree, then in the source tree
 
3033
+        # (if the path is not absolute).  The absolute path cannot be DOS-style,
 
3034
+        # because $ac_f cannot contain `:'.
 
3035
+        test -f "$ac_f" ||
 
3036
+          case $ac_f in
 
3037
+          [\\/$]*) false;;
 
3038
+          *) test -f "$srcdir/$ac_f" && ac_f="$srcdir/$ac_f";;
 
3039
+          esac ||
 
3040
+          as_fn_error "cannot find input file: \`$ac_f'" "$LINENO" 5;;
 
3041
+      esac
 
3042
+      case $ac_f in *\'*) ac_f=`$as_echo "$ac_f" | sed "s/'/'\\\\\\\\''/g"`;; esac
 
3043
+      as_fn_append ac_file_inputs " '$ac_f'"
 
3044
+    done
 
3045
+
 
3046
+    # Let's still pretend it is `configure' which instantiates (i.e., don't
 
3047
+    # use $as_me), people would be surprised to read:
 
3048
+    #    /* config.h.  Generated by config.status.  */
 
3049
+    configure_input='Generated from '`
 
3050
+         $as_echo "$*" | sed 's|^[^:]*/||;s|:[^:]*/|, |g'
 
3051
+       `' by configure.'
 
3052
+    if test x"$ac_file" != x-; then
 
3053
+      configure_input="$ac_file.  $configure_input"
 
3054
+      { $as_echo "$as_me:${as_lineno-$LINENO}: creating $ac_file" >&5
 
3055
+$as_echo "$as_me: creating $ac_file" >&6;}
 
3056
+    fi
 
3057
+    # Neutralize special characters interpreted by sed in replacement strings.
 
3058
+    case $configure_input in #(
 
3059
+    *\&* | *\|* | *\\* )
 
3060
+       ac_sed_conf_input=`$as_echo "$configure_input" |
 
3061
+       sed 's/[\\\\&|]/\\\\&/g'`;; #(
 
3062
+    *) ac_sed_conf_input=$configure_input;;
 
3063
+    esac
 
3064
+
 
3065
+    case $ac_tag in
 
3066
+    *:-:* | *:-) cat >"$tmp/stdin" \
 
3067
+      || as_fn_error "could not create $ac_file" "$LINENO" 5 ;;
 
3068
+    esac
 
3069
+    ;;
 
3070
+  esac
 
3071
+
 
3072
+  ac_dir=`$as_dirname -- "$ac_file" ||
 
3073
+$as_expr X"$ac_file" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \
 
3074
+        X"$ac_file" : 'X\(//\)[^/]' \| \
 
3075
+        X"$ac_file" : 'X\(//\)$' \| \
 
3076
+        X"$ac_file" : 'X\(/\)' \| . 2>/dev/null ||
 
3077
+$as_echo X"$ac_file" |
 
3078
+    sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{
 
3079
+           s//\1/
 
3080
+           q
 
3081
+         }
 
3082
+         /^X\(\/\/\)[^/].*/{
 
3083
+           s//\1/
 
3084
+           q
 
3085
+         }
 
3086
+         /^X\(\/\/\)$/{
 
3087
+           s//\1/
 
3088
+           q
 
3089
+         }
 
3090
+         /^X\(\/\).*/{
 
3091
+           s//\1/
 
3092
+           q
 
3093
+         }
 
3094
+         s/.*/./; q'`
 
3095
+  as_dir="$ac_dir"; as_fn_mkdir_p
 
3096
+  ac_builddir=.
 
3097
+
 
3098
+case "$ac_dir" in
 
3099
+.) ac_dir_suffix= ac_top_builddir_sub=. ac_top_build_prefix= ;;
 
3100
+*)
 
3101
+  ac_dir_suffix=/`$as_echo "$ac_dir" | sed 's|^\.[\\/]||'`
 
3102
+  # A ".." for each directory in $ac_dir_suffix.
 
3103
+  ac_top_builddir_sub=`$as_echo "$ac_dir_suffix" | sed 's|/[^\\/]*|/..|g;s|/||'`
 
3104
+  case $ac_top_builddir_sub in
 
3105
+  "") ac_top_builddir_sub=. ac_top_build_prefix= ;;
 
3106
+  *)  ac_top_build_prefix=$ac_top_builddir_sub/ ;;
 
3107
+  esac ;;
 
3108
+esac
 
3109
+ac_abs_top_builddir=$ac_pwd
 
3110
+ac_abs_builddir=$ac_pwd$ac_dir_suffix
 
3111
+# for backward compatibility:
 
3112
+ac_top_builddir=$ac_top_build_prefix
 
3113
+
 
3114
+case $srcdir in
 
3115
+  .)  # We are building in place.
 
3116
+    ac_srcdir=.
 
3117
+    ac_top_srcdir=$ac_top_builddir_sub
 
3118
+    ac_abs_top_srcdir=$ac_pwd ;;
 
3119
+  [\\/]* | ?:[\\/]* )  # Absolute name.
 
3120
+    ac_srcdir=$srcdir$ac_dir_suffix;
 
3121
+    ac_top_srcdir=$srcdir
 
3122
+    ac_abs_top_srcdir=$srcdir ;;
 
3123
+  *) # Relative name.
 
3124
+    ac_srcdir=$ac_top_build_prefix$srcdir$ac_dir_suffix
 
3125
+    ac_top_srcdir=$ac_top_build_prefix$srcdir
 
3126
+    ac_abs_top_srcdir=$ac_pwd/$srcdir ;;
 
3127
+esac
 
3128
+ac_abs_srcdir=$ac_abs_top_srcdir$ac_dir_suffix
 
3129
+
 
3130
+
 
3131
+  case $ac_mode in
 
3132
+  :F)
 
3133
+  #
 
3134
+  # CONFIG_FILE
 
3135
+  #
 
3136
+
 
3137
+  case $INSTALL in
 
3138
+  [\\/$]* | ?:[\\/]* ) ac_INSTALL=$INSTALL ;;
 
3139
+  *) ac_INSTALL=$ac_top_build_prefix$INSTALL ;;
 
3140
+  esac
 
3141
+_ACEOF
 
3142
+
 
3143
+cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1
 
3144
+# If the template does not know about datarootdir, expand it.
 
3145
+# FIXME: This hack should be removed a few years after 2.60.
 
3146
+ac_datarootdir_hack=; ac_datarootdir_seen=
 
3147
+ac_sed_dataroot='
 
3148
+/datarootdir/ {
 
3149
+  p
 
3150
+  q
 
3151
+}
 
3152
+/@datadir@/p
 
3153
+/@docdir@/p
 
3154
+/@infodir@/p
 
3155
+/@localedir@/p
 
3156
+/@mandir@/p'
 
3157
+case `eval "sed -n \"\$ac_sed_dataroot\" $ac_file_inputs"` in
 
3158
+*datarootdir*) ac_datarootdir_seen=yes;;
 
3159
+*@datadir@*|*@docdir@*|*@infodir@*|*@localedir@*|*@mandir@*)
 
3160
+  { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: $ac_file_inputs seems to ignore the --datarootdir setting" >&5
 
3161
+$as_echo "$as_me: WARNING: $ac_file_inputs seems to ignore the --datarootdir setting" >&2;}
 
3162
+_ACEOF
 
3163
+cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1
 
3164
+  ac_datarootdir_hack='
 
3165
+  s&@datadir@&$datadir&g
 
3166
+  s&@docdir@&$docdir&g
 
3167
+  s&@infodir@&$infodir&g
 
3168
+  s&@localedir@&$localedir&g
 
3169
+  s&@mandir@&$mandir&g
 
3170
+  s&\\\${datarootdir}&$datarootdir&g' ;;
 
3171
+esac
 
3172
+_ACEOF
 
3173
+
 
3174
+# Neutralize VPATH when `$srcdir' = `.'.
 
3175
+# Shell code in configure.ac might set extrasub.
 
3176
+# FIXME: do we really want to maintain this feature?
 
3177
+cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1
 
3178
+ac_sed_extra="$ac_vpsub
 
3179
+$extrasub
 
3180
+_ACEOF
 
3181
+cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1
 
3182
+:t
 
3183
+/@[a-zA-Z_][a-zA-Z_0-9]*@/!b
 
3184
+s|@configure_input@|$ac_sed_conf_input|;t t
 
3185
+s&@top_builddir@&$ac_top_builddir_sub&;t t
 
3186
+s&@top_build_prefix@&$ac_top_build_prefix&;t t
 
3187
+s&@srcdir@&$ac_srcdir&;t t
 
3188
+s&@abs_srcdir@&$ac_abs_srcdir&;t t
 
3189
+s&@top_srcdir@&$ac_top_srcdir&;t t
 
3190
+s&@abs_top_srcdir@&$ac_abs_top_srcdir&;t t
 
3191
+s&@builddir@&$ac_builddir&;t t
 
3192
+s&@abs_builddir@&$ac_abs_builddir&;t t
 
3193
+s&@abs_top_builddir@&$ac_abs_top_builddir&;t t
 
3194
+s&@INSTALL@&$ac_INSTALL&;t t
 
3195
+$ac_datarootdir_hack
 
3196
+"
 
3197
+eval sed \"\$ac_sed_extra\" "$ac_file_inputs" | $AWK -f "$tmp/subs.awk" >$tmp/out \
 
3198
+  || as_fn_error "could not create $ac_file" "$LINENO" 5
 
3199
+
 
3200
+test -z "$ac_datarootdir_hack$ac_datarootdir_seen" &&
 
3201
+  { ac_out=`sed -n '/\${datarootdir}/p' "$tmp/out"`; test -n "$ac_out"; } &&
 
3202
+  { ac_out=`sed -n '/^[         ]*datarootdir[  ]*:*=/p' "$tmp/out"`; test -z "$ac_out"; } &&
 
3203
+  { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: $ac_file contains a reference to the variable \`datarootdir'
 
3204
+which seems to be undefined.  Please make sure it is defined." >&5
 
3205
+$as_echo "$as_me: WARNING: $ac_file contains a reference to the variable \`datarootdir'
 
3206
+which seems to be undefined.  Please make sure it is defined." >&2;}
 
3207
+
 
3208
+  rm -f "$tmp/stdin"
 
3209
+  case $ac_file in
 
3210
+  -) cat "$tmp/out" && rm -f "$tmp/out";;
 
3211
+  *) rm -f "$ac_file" && mv "$tmp/out" "$ac_file";;
 
3212
+  esac \
 
3213
+  || as_fn_error "could not create $ac_file" "$LINENO" 5
 
3214
+ ;;
 
3215
+
 
3216
+
 
3217
+
 
3218
+  esac
 
3219
+
 
3220
+done # for ac_tag
 
3221
+
 
3222
+
 
3223
+as_fn_exit 0
 
3224
+_ACEOF
 
3225
+ac_clean_files=$ac_clean_files_save
 
3226
+
 
3227
+test $ac_write_fail = 0 ||
 
3228
+  as_fn_error "write failure creating $CONFIG_STATUS" "$LINENO" 5
 
3229
+
 
3230
+
 
3231
+# configure is writing to config.log, and then calls config.status.
 
3232
+# config.status does its own redirection, appending to config.log.
 
3233
+# Unfortunately, on DOS this fails, as config.log is still kept open
 
3234
+# by configure, so config.status won't be able to write to it; its
 
3235
+# output is simply discarded.  So we exec the FD to /dev/null,
 
3236
+# effectively closing config.log, so it can be properly (re)opened and
 
3237
+# appended to by config.status.  When coming back to configure, we
 
3238
+# need to make the FD available again.
 
3239
+if test "$no_create" != yes; then
 
3240
+  ac_cs_success=:
 
3241
+  ac_config_status_args=
 
3242
+  test "$silent" = yes &&
 
3243
+    ac_config_status_args="$ac_config_status_args --quiet"
 
3244
+  exec 5>/dev/null
 
3245
+  $SHELL $CONFIG_STATUS $ac_config_status_args || ac_cs_success=false
 
3246
+  exec 5>>config.log
 
3247
+  # Use ||, not &&, to avoid exiting from the if with $? = 1, which
 
3248
+  # would make configure fail if this is the last instruction.
 
3249
+  $ac_cs_success || as_fn_exit $?
 
3250
+fi
 
3251
+if test -n "$ac_unrecognized_opts" && test "$enable_option_checking" != no; then
 
3252
+  { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: unrecognized options: $ac_unrecognized_opts" >&5
 
3253
+$as_echo "$as_me: WARNING: unrecognized options: $ac_unrecognized_opts" >&2;}
 
3254
+fi
 
3255
+