Added compiled version of book - teximpatient.git -

summary refs log tree commit diff
diff options
context:
space:
mode:
authorDaniel James <djames@daniel-desktop.lan>2016年03月31日 14:55:23 -0400
committerDaniel James <djames@daniel-desktop.lan>2016年03月31日 14:55:23 -0400
commit4b0db988c24d514165abb07238b01d438b70650b (patch)
tree43ab1270d556eeac2dd91fa423dcb98f5ed0db48
parent85a7f676bdf2915765cf2154229992b27286a2ea (diff)
downloadteximpatient-4b0db988c24d514165abb07238b01d438b70650b.tar.gz
Added compiled version of book
Diffstat
-rw-r--r--teximpatient/Makefile 118
-rw-r--r--teximpatient/autom4te.cache/output.0 3172
-rw-r--r--teximpatient/autom4te.cache/requests 79
-rw-r--r--teximpatient/autom4te.cache/traces.0 192
-rw-r--r--teximpatient/book.aux 1006
-rw-r--r--teximpatient/book.ccs 94
-rw-r--r--teximpatient/book.idx 3583
-rw-r--r--teximpatient/book.log 1478
-rw-r--r--teximpatient/book.pdf bin0 -> 1331489 bytes
-rw-r--r--teximpatient/book.toc 201
-rw-r--r--teximpatient/config.log 157
-rwxr-xr-xteximpatient/config.status 900
-rwxr-xr-xteximpatient/configure 3172
-rw-r--r--teximpatient/x.tex 36
14 files changed, 14188 insertions, 0 deletions
diff --git a/teximpatient/Makefile b/teximpatient/Makefile
new file mode 100644
index 0000000..38e16e5
--- /dev/null
+++ b/teximpatient/Makefile
@@ -0,0 +1,118 @@
+# $Id$
+# public domain
+# Makefile[.in] for TeX for the Impatient.
+
+PACKAGE_NAME = teximpatient
+PACKAGE_TARNAME = teximpatient
+PACKAGE_VERSION = 2.4
+PACKAGE_STRING = teximpatient 2.4
+PACKAGE_BUGREPORT = impatient@tug.org
+PACKAGE_URL =
+
+prefix = /usr/local
+datarootdir = ${prefix}/share
+docdir = ${datarootdir}/doc/${PACKAGE_TARNAME}
+pdfdir = ${docdir}
+dvidir = ${docdir}
+htmldir = ${docdir}
+DESTDIR =
+
+SHELL = /bin/sh
+ICON =
+TEX = /usr/bin/tex
+PDFTEX = /usr/bin/pdftex
+HTTEX = /usr/bin/httex
+
+MKDIR_P = /usr/bin/mkdir -p
+INSTALL = /usr/bin/install -c
+INSTALL_DATA = ${INSTALL} -m 644
+
+TEXFILES = backm.tex book.tex capsule.tex concepts.tex config.tex \
+ copyrght.tex eplain.tex errors.tex examples.tex fdl.tex fonts.tex \
+ frontm.tex genops.tex index.tex macros.tex math.tex modes.tex \
+ pages.tex paras.tex preface.tex read1st.tex tips.tex usebook.tex \
+ usermacs.tex usingtex.tex xmptext.tex
+
+ICONSCRIPTS = index1.icn index2.icn
+
+SDXFILE = book.sdx
+
+AUXFILES = book.aux book.ccs book.idx book.toc
+
+LOGFILES = book.log
+
+PDFFILE = book.pdf
+
+DVIFILE = book.dvi
+
+HTMLFILE = book.html
+
+all: pdf #html dvi
+
+dvi: $(DVIFILE)
+
+pdf: $(PDFFILE)
+
+html: $(HTMLFILE)
+
+install: installdirs install-dvi install-pdf
+
+installdirs:
+ $(MKDIR_P) $(DESTDIR)$(dvidir)
+ $(MKDIR_P) $(DESTDIR)$(pdfdir)
+ $(MKDIR_P) $(DESTDIR)$(htmldir)
+
+install-dvi: dvi
+ $(INSTALL_DATA) book.dvi $(DESTDIR)$(dvidir)/teximpatient.dvi
+
+install-pdf: pdf
+ $(INSTALL_DATA) book.pdf $(DESTDIR)$(dvidir)/teximpatient.pdf
+
+install-html: html
+ $(INSTALL_DATA) book.html $(DESTDIR)$(dvidir)/teximpatient.html
+
+book.dvi: $(TEXFILES)
+ $(TEX) '\nonstopmode\input book'
+
+book.pdf: $(TEXFILES) $(SDXFILE)
+ $(PDFTEX) '\nonstopmode\input book'
+
+book.html: book.tex
+ $(HTTEX) book.tex "html"
+
+book.idx: book.dvi
+
+# + chars in book.idx need to be changed to SPC chars in book.sdx
+# somewhere, but currently aren't. Therefore, we effectively disable
+# the rule as long as book.sdx exists. This also avoids rerunning every
+# time (since book.idx changes every time; that file is written by TeX).
+# But the page numbers in the existing book.sdx are probably wrong by now :(.
+book.sdx: #book.idx $(ICONSCRIPTS)
+ if test -z "$(ICON)"; then touch book.sdx; else \
+ (cat book.idx | $(ICON) index1.icn | sort \
+ | $(ICON) index2.icn >book.sdx); fi
+
+dist: all
+ tar czf $(PACKAGE_TARNAME)-$(PACKAGE_VERSION).tar.gz \
+ Makefile.in configure configure.ac \
+ NEWS README errata.future \
+ $(ICONSCRIPTS) \
+ $(TEXFILES) \
+ $(SDXFILE) \
+ $(PDFFILE)
+
+dist-cn:
+ tar czf $(PACKAGE_TARNAME)-$(PACKAGE_VERSION)cn.tar.gz \
+ cn-git/Makefile cn-git/*.tex cn-git/cnbook.pdf
+
+distclean: clean
+ -rm -rf config.log config.status autom4te.cache Makefile
+
+clean:
+ -rm -f $(LOGFILES) $(AUXFILES) x.tex
+
+.PHONY: all dist clean pdf dvi html install installdirs \
+ install-dvi install-pdf install-html
+
+configure: configure.ac
+ autoconf
diff --git a/teximpatient/autom4te.cache/output.0 b/teximpatient/autom4te.cache/output.0
new file mode 100644
index 0000000..84dbfd1
--- /dev/null
+++ b/teximpatient/autom4te.cache/output.0
@@ -0,0 +1,3172 @@
+@%:@! /bin/sh
+@%:@ Guess values for system-dependent variables and create Makefiles.
+@%:@ Generated by GNU Autoconf 2.69 for teximpatient 2.4.
+@%:@
+@%:@ Report bugs to <impatient@tug.org>.
+@%:@
+@%:@
+@%:@ Copyright (C) 1992-1996, 1998-2012 Free Software Foundation, Inc.
+@%:@
+@%:@
+@%:@ This configure script is free software; the Free Software Foundation
+@%:@ gives unlimited permission to copy, distribute and modify it.
+## -------------------- ##
+## M4sh Initialization. ##
+## -------------------- ##
+
+# Be more Bourne compatible
+DUALCASE=1; export DUALCASE # for MKS sh
+if test -n "${ZSH_VERSION+set}" && (emulate sh) >/dev/null 2>&1; then :
+ emulate sh
+ NULLCMD=:
+ # Pre-4.2 versions of Zsh do word splitting on ${1+"$@"}, which
+ # is contrary to our usage. Disable this feature.
+ alias -g '${1+"$@"}'='"$@"'
+ setopt NO_GLOB_SUBST
+else
+ case `(set -o) 2>/dev/null` in @%:@(
+ *posix*) :
+ set -o posix ;; @%:@(
+ *) :
+ ;;
+esac
+fi
+
+
+as_nl='
+'
+export as_nl
+# Printing a long string crashes Solaris 7 /usr/bin/printf.
+as_echo='\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\'
+as_echo=$as_echo$as_echo$as_echo$as_echo$as_echo
+as_echo=$as_echo$as_echo$as_echo$as_echo$as_echo$as_echo
+# Prefer a ksh shell builtin over an external printf program on Solaris,
+# but without wasting forks for bash or zsh.
+if test -z "$BASH_VERSION$ZSH_VERSION" \
+ && (test "X`print -r -- $as_echo`" = "X$as_echo") 2>/dev/null; then
+ as_echo='print -r --'
+ as_echo_n='print -rn --'
+elif (test "X`printf %s $as_echo`" = "X$as_echo") 2>/dev/null; then
+ as_echo='printf %s\n'
+ as_echo_n='printf %s'
+else
+ if test "X`(/usr/ucb/echo -n -n $as_echo) 2>/dev/null`" = "X-n $as_echo"; then
+ as_echo_body='eval /usr/ucb/echo -n "1ドル$as_nl"'
+ as_echo_n='/usr/ucb/echo -n'
+ else
+ as_echo_body='eval expr "X1ドル" : "X\\(.*\\)"'
+ as_echo_n_body='eval
+ arg=1ドル;
+ case $arg in @%:@(
+ *"$as_nl"*)
+ expr "X$arg" : "X\\(.*\\)$as_nl";
+ arg=`expr "X$arg" : ".*$as_nl\\(.*\\)"`;;
+ esac;
+ expr "X$arg" : "X\\(.*\\)" | tr -d "$as_nl"
+ '
+ export as_echo_n_body
+ as_echo_n='sh -c $as_echo_n_body as_echo'
+ fi
+ export as_echo_body
+ as_echo='sh -c $as_echo_body as_echo'
+fi
+
+# The user is always right.
+if test "${PATH_SEPARATOR+set}" != set; then
+ PATH_SEPARATOR=:
+ (PATH='/bin;/bin'; FPATH=$PATH; sh -c :) >/dev/null 2>&1 && {
+ (PATH='/bin:/bin'; FPATH=$PATH; sh -c :) >/dev/null 2>&1 ||
+ PATH_SEPARATOR=';'
+ }
+fi
+
+
+# IFS
+# We need space, tab and new line, in precisely that order. Quoting is
+# there to prevent editors from complaining about space-tab.
+# (If _AS_PATH_WALK were called with IFS unset, it would disable word
+# splitting by setting IFS to empty value.)
+IFS=" "" $as_nl"
+
+# Find who we are. Look in the path if we contain no directory separator.
+as_myself=
+case 0ドル in @%:@((
+ *[\\/]* ) as_myself=0ドル ;;
+ *) as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
+for as_dir in $PATH
+do
+ IFS=$as_save_IFS
+ test -z "$as_dir" && as_dir=.
+ test -r "$as_dir/0ドル" && as_myself=$as_dir/0ドル && break
+ done
+IFS=$as_save_IFS
+
+ ;;
+esac
+# We did not find ourselves, most probably we were run as `sh COMMAND'
+# in which case we are not to be found in the path.
+if test "x$as_myself" = x; then
+ as_myself=0ドル
+fi
+if test ! -f "$as_myself"; then
+ $as_echo "$as_myself: error: cannot find myself; rerun with an absolute file name" >&2
+ exit 1
+fi
+
+# Unset variables that we do not need and which cause bugs (e.g. in
+# pre-3.0 UWIN ksh). But do not cause bugs in bash 2.01; the "|| exit 1"
+# suppresses any "Segmentation fault" message there. '((' could
+# trigger a bug in pdksh 5.2.14.
+for as_var in BASH_ENV ENV MAIL MAILPATH
+do eval test x\${$as_var+set} = xset \
+ && ( (unset $as_var) || exit 1) >/dev/null 2>&1 && unset $as_var || :
+done
+PS1='$ '
+PS2='> '
+PS4='+ '
+
+# NLS nuisances.
+LC_ALL=C
+export LC_ALL
+LANGUAGE=C
+export LANGUAGE
+
+# CDPATH.
+(unset CDPATH) >/dev/null 2>&1 && unset CDPATH
+
+# Use a proper internal environment variable to ensure we don't fall
+ # into an infinite loop, continuously re-executing ourselves.
+ if test x"${_as_can_reexec}" != xno && test "x$CONFIG_SHELL" != x; then
+ _as_can_reexec=no; export _as_can_reexec;
+ # We cannot yet assume a decent shell, so we have to provide a
+# neutralization value for shells without unset; and this also
+# works around shells that cannot unset nonexistent variables.
+# Preserve -v and -x to the replacement shell.
+BASH_ENV=/dev/null
+ENV=/dev/null
+(unset BASH_ENV) >/dev/null 2>&1 && unset BASH_ENV ENV
+case $- in @%:@ ((((
+ *v*x* | *x*v* ) as_opts=-vx ;;
+ *v* ) as_opts=-v ;;
+ *x* ) as_opts=-x ;;
+ * ) as_opts= ;;
+esac
+exec $CONFIG_SHELL $as_opts "$as_myself" ${1+"$@"}
+# Admittedly, this is quite paranoid, since all the known shells bail
+# out after a failed `exec'.
+$as_echo "0ドル: could not re-execute with $CONFIG_SHELL" >&2
+as_fn_exit 255
+ fi
+ # We don't want this to propagate to other subprocesses.
+ { _as_can_reexec=; unset _as_can_reexec;}
+if test "x$CONFIG_SHELL" = x; then
+ as_bourne_compatible="if test -n \"\${ZSH_VERSION+set}\" && (emulate sh) >/dev/null 2>&1; then :
+ emulate sh
+ NULLCMD=:
+ # Pre-4.2 versions of Zsh do word splitting on \${1+\"\$@\"}, which
+ # is contrary to our usage. Disable this feature.
+ alias -g '\${1+\"\$@\"}'='\"\$@\"'
+ setopt NO_GLOB_SUBST
+else
+ case \`(set -o) 2>/dev/null\` in @%:@(
+ *posix*) :
+ set -o posix ;; @%:@(
+ *) :
+ ;;
+esac
+fi
+"
+ as_required="as_fn_return () { (exit \1ドル); }
+as_fn_success () { as_fn_return 0; }
+as_fn_failure () { as_fn_return 1; }
+as_fn_ret_success () { return 0; }
+as_fn_ret_failure () { return 1; }
+
+exitcode=0
+as_fn_success || { exitcode=1; echo as_fn_success failed.; }
+as_fn_failure && { exitcode=1; echo as_fn_failure succeeded.; }
+as_fn_ret_success || { exitcode=1; echo as_fn_ret_success failed.; }
+as_fn_ret_failure && { exitcode=1; echo as_fn_ret_failure succeeded.; }
+if ( set x; as_fn_ret_success y && test x = \"\1ドル\" ); then :
+
+else
+ exitcode=1; echo positional parameters were not saved.
+fi
+test x\$exitcode = x0 || exit 1
+test -x / || exit 1"
+ as_suggested=" as_lineno_1=";as_suggested=$as_suggested$LINENO;as_suggested=$as_suggested" as_lineno_1a=\$LINENO
+ as_lineno_2=";as_suggested=$as_suggested$LINENO;as_suggested=$as_suggested" as_lineno_2a=\$LINENO
+ eval 'test \"x\$as_lineno_1'\$as_run'\" != \"x\$as_lineno_2'\$as_run'\" &&
+ test \"x\`expr \$as_lineno_1'\$as_run' + 1\`\" = \"x\$as_lineno_2'\$as_run'\"' || exit 1"
+ if (eval "$as_required") 2>/dev/null; then :
+ as_have_required=yes
+else
+ as_have_required=no
+fi
+ if test x$as_have_required = xyes && (eval "$as_suggested") 2>/dev/null; then :
+
+else
+ as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
+as_found=false
+for as_dir in /bin$PATH_SEPARATOR/usr/bin$PATH_SEPARATOR$PATH
+do
+ IFS=$as_save_IFS
+ test -z "$as_dir" && as_dir=.
+ as_found=:
+ case $as_dir in @%:@(
+ /*)
+ for as_base in sh bash ksh sh5; do
+ # Try only shells that exist, to save several forks.
+ as_shell=$as_dir/$as_base
+ if { test -f "$as_shell" || test -f "$as_shell.exe"; } &&
+ { $as_echo "$as_bourne_compatible""$as_required" | as_run=a "$as_shell"; } 2>/dev/null; then :
+ CONFIG_SHELL=$as_shell as_have_required=yes
+ if { $as_echo "$as_bourne_compatible""$as_suggested" | as_run=a "$as_shell"; } 2>/dev/null; then :
+ break 2
+fi
+fi
+ done;;
+ esac
+ as_found=false
+done
+$as_found || { if { test -f "$SHELL" || test -f "$SHELL.exe"; } &&
+ { $as_echo "$as_bourne_compatible""$as_required" | as_run=a "$SHELL"; } 2>/dev/null; then :
+ CONFIG_SHELL=$SHELL as_have_required=yes
+fi; }
+IFS=$as_save_IFS
+
+
+ if test "x$CONFIG_SHELL" != x; then :
+ export CONFIG_SHELL
+ # We cannot yet assume a decent shell, so we have to provide a
+# neutralization value for shells without unset; and this also
+# works around shells that cannot unset nonexistent variables.
+# Preserve -v and -x to the replacement shell.
+BASH_ENV=/dev/null
+ENV=/dev/null
+(unset BASH_ENV) >/dev/null 2>&1 && unset BASH_ENV ENV
+case $- in @%:@ ((((
+ *v*x* | *x*v* ) as_opts=-vx ;;
+ *v* ) as_opts=-v ;;
+ *x* ) as_opts=-x ;;
+ * ) as_opts= ;;
+esac
+exec $CONFIG_SHELL $as_opts "$as_myself" ${1+"$@"}
+# Admittedly, this is quite paranoid, since all the known shells bail
+# out after a failed `exec'.
+$as_echo "0ドル: could not re-execute with $CONFIG_SHELL" >&2
+exit 255
+fi
+
+ if test x$as_have_required = xno; then :
+ $as_echo "0ドル: This script requires a shell more modern than all"
+ $as_echo "0ドル: the shells that I found on your system."
+ if test x${ZSH_VERSION+set} = xset ; then
+ $as_echo "0ドル: In particular, zsh $ZSH_VERSION has bugs and should"
+ $as_echo "0ドル: be upgraded to zsh 4.3.4 or later."
+ else
+ $as_echo "0ドル: Please tell bug-autoconf@gnu.org and impatient@tug.org
+0ドル: about your system, including any error possibly output
+0ドル: before this message. Then install a modern shell, or
+0ドル: manually run the script under such a shell if you do
+0ドル: have one."
+ fi
+ exit 1
+fi
+fi
+fi
+SHELL=${CONFIG_SHELL-/bin/sh}
+export SHELL
+# Unset more variables known to interfere with behavior of common tools.
+CLICOLOR_FORCE= GREP_OPTIONS=
+unset CLICOLOR_FORCE GREP_OPTIONS
+
+## --------------------- ##
+## M4sh Shell Functions. ##
+## --------------------- ##
+@%:@ as_fn_unset VAR
+@%:@ ---------------
+@%:@ Portably unset VAR.
+as_fn_unset ()
+{
+ { eval 1ドル=; unset 1ドル;}
+}
+as_unset=as_fn_unset
+
+@%:@ as_fn_set_status STATUS
+@%:@ -----------------------
+@%:@ Set @S|@? to STATUS, without forking.
+as_fn_set_status ()
+{
+ return 1ドル
+} @%:@ as_fn_set_status
+
+@%:@ as_fn_exit STATUS
+@%:@ -----------------
+@%:@ Exit the shell with STATUS, even in a "trap 0" or "set -e" context.
+as_fn_exit ()
+{
+ set +e
+ as_fn_set_status 1ドル
+ exit 1ドル
+} @%:@ as_fn_exit
+
+@%:@ as_fn_mkdir_p
+@%:@ -------------
+@%:@ Create "@S|@as_dir" as a directory, including parents if necessary.
+as_fn_mkdir_p ()
+{
+
+ case $as_dir in #(
+ -*) as_dir=./$as_dir;;
+ esac
+ test -d "$as_dir" || eval $as_mkdir_p || {
+ as_dirs=
+ while :; do
+ case $as_dir in #(
+ *\'*) as_qdir=`$as_echo "$as_dir" | sed "s/'/'\\\\\\\\''/g"`;; #'(
+ *) as_qdir=$as_dir;;
+ esac
+ as_dirs="'$as_qdir' $as_dirs"
+ as_dir=`$as_dirname -- "$as_dir" ||
+$as_expr X"$as_dir" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \
+ X"$as_dir" : 'X\(//\)[^/]' \| \
+ X"$as_dir" : 'X\(//\)$' \| \
+ X"$as_dir" : 'X\(/\)' \| . 2>/dev/null ||
+$as_echo X"$as_dir" |
+ sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{
+ s//1円/
+ q
+ }
+ /^X\(\/\/\)[^/].*/{
+ s//1円/
+ q
+ }
+ /^X\(\/\/\)$/{
+ s//1円/
+ q
+ }
+ /^X\(\/\).*/{
+ s//1円/
+ q
+ }
+ s/.*/./; q'`
+ test -d "$as_dir" && break
+ done
+ test -z "$as_dirs" || eval "mkdir $as_dirs"
+ } || test -d "$as_dir" || as_fn_error $? "cannot create directory $as_dir"
+
+
+} @%:@ as_fn_mkdir_p
+
+@%:@ as_fn_executable_p FILE
+@%:@ -----------------------
+@%:@ Test if FILE is an executable regular file.
+as_fn_executable_p ()
+{
+ test -f "1ドル" && test -x "1ドル"
+} @%:@ as_fn_executable_p
+@%:@ as_fn_append VAR VALUE
+@%:@ ----------------------
+@%:@ Append the text in VALUE to the end of the definition contained in VAR. Take
+@%:@ advantage of any shell optimizations that allow amortized linear growth over
+@%:@ repeated appends, instead of the typical quadratic growth present in naive
+@%:@ implementations.
+if (eval "as_var=1; as_var+=2; test x\$as_var = x12") 2>/dev/null; then :
+ eval 'as_fn_append ()
+ {
+ eval 1ドル+=\2ドル
+ }'
+else
+ as_fn_append ()
+ {
+ eval 1ドル=\$1ドル\2ドル
+ }
+fi # as_fn_append
+
+@%:@ as_fn_arith ARG...
+@%:@ ------------------
+@%:@ Perform arithmetic evaluation on the ARGs, and store the result in the
+@%:@ global @S|@as_val. Take advantage of shells that can avoid forks. The arguments
+@%:@ must be portable across @S|@(()) and expr.
+if (eval "test \$(( 1 + 1 )) = 2") 2>/dev/null; then :
+ eval 'as_fn_arith ()
+ {
+ as_val=$(( $* ))
+ }'
+else
+ as_fn_arith ()
+ {
+ as_val=`expr "$@" || test $? -eq 1`
+ }
+fi # as_fn_arith
+
+
+@%:@ as_fn_error STATUS ERROR [LINENO LOG_FD]
+@%:@ ----------------------------------------
+@%:@ Output "`basename @S|@0`: error: ERROR" to stderr. If LINENO and LOG_FD are
+@%:@ provided, also output the error to LOG_FD, referencing LINENO. Then exit the
+@%:@ script with STATUS, using 1 if that was 0.
+as_fn_error ()
+{
+ as_status=1ドル; test $as_status -eq 0 && as_status=1
+ if test "4ドル"; then
+ as_lineno=${as_lineno-"3ドル"} as_lineno_stack=as_lineno_stack=$as_lineno_stack
+ $as_echo "$as_me:${as_lineno-$LINENO}: error: 2ドル" >&4ドル
+ fi
+ $as_echo "$as_me: error: 2ドル" >&2
+ as_fn_exit $as_status
+} @%:@ as_fn_error
+
+if expr a : '\(a\)' >/dev/null 2>&1 &&
+ test "X`expr 00001 : '.*\(...\)'`" = X001; then
+ as_expr=expr
+else
+ as_expr=false
+fi
+
+if (basename -- /) >/dev/null 2>&1 && test "X`basename -- / 2>&1`" = "X/"; then
+ as_basename=basename
+else
+ as_basename=false
+fi
+
+if (as_dir=`dirname -- /` && test "X$as_dir" = X/) >/dev/null 2>&1; then
+ as_dirname=dirname
+else
+ as_dirname=false
+fi
+
+as_me=`$as_basename -- "0ドル" ||
+$as_expr X/"0ドル" : '.*/\([^/][^/]*\)/*$' \| \
+ X"0ドル" : 'X\(//\)$' \| \
+ X"0ドル" : 'X\(/\)' \| . 2>/dev/null ||
+$as_echo X/"0ドル" |
+ sed '/^.*\/\([^/][^/]*\)\/*$/{
+ s//1円/
+ q
+ }
+ /^X\/\(\/\/\)$/{
+ s//1円/
+ q
+ }
+ /^X\/\(\/\).*/{
+ s//1円/
+ q
+ }
+ s/.*/./; q'`
+
+# Avoid depending upon Character Ranges.
+as_cr_letters='abcdefghijklmnopqrstuvwxyz'
+as_cr_LETTERS='ABCDEFGHIJKLMNOPQRSTUVWXYZ'
+as_cr_Letters=$as_cr_letters$as_cr_LETTERS
+as_cr_digits='0123456789'
+as_cr_alnum=$as_cr_Letters$as_cr_digits
+
+
+ as_lineno_1=$LINENO as_lineno_1a=$LINENO
+ as_lineno_2=$LINENO as_lineno_2a=$LINENO
+ eval 'test "x$as_lineno_1'$as_run'" != "x$as_lineno_2'$as_run'" &&
+ test "x`expr $as_lineno_1'$as_run' + 1`" = "x$as_lineno_2'$as_run'"' || {
+ # Blame Lee E. McMahon (1931-1989) for sed's syntax. :-)
+ sed -n '
+ p
+ /[$]LINENO/=
+ ' <$as_myself |
+ sed '
+ s/[$]LINENO.*/&-/
+ t lineno
+ b
+ :lineno
+ N
+ :loop
+ s/[$]LINENO\([^'$as_cr_alnum'_].*\n\)\(.*\)/2円1円2円/
+ t loop
+ s/-\n.*//
+ ' >$as_me.lineno &&
+ chmod +x "$as_me.lineno" ||
+ { $as_echo "$as_me: error: cannot create $as_me.lineno; rerun with a POSIX shell" >&2; as_fn_exit 1; }
+
+ # If we had to re-execute with $CONFIG_SHELL, we're ensured to have
+ # already done that, so ensure we don't try to do so again and fall
+ # in an infinite loop. This has already happened in practice.
+ _as_can_reexec=no; export _as_can_reexec
+ # Don't try to exec as it changes $[0], causing all sort of problems
+ # (the dirname of $[0] is not the place where we might find the
+ # original and so on. Autoconf is especially sensitive to this).
+ . "./$as_me.lineno"
+ # Exit status is that of the last command.
+ exit
+}
+
+ECHO_C= ECHO_N= ECHO_T=
+case `echo -n x` in @%:@(((((
+-n*)
+ case `echo 'xy\c'` in
+ *c*) ECHO_T=' ';; # ECHO_T is single tab character.
+ xy) ECHO_C='\c';;
+ *) echo `echo ksh88 bug on AIX 6.1` > /dev/null
+ ECHO_T=' ';;
+ esac;;
+*)
+ ECHO_N='-n';;
+esac
+
+rm -f conf$$ conf$$.exe conf$$.file
+if test -d conf$$.dir; then
+ rm -f conf$$.dir/conf$$.file
+else
+ rm -f conf$$.dir
+ mkdir conf$$.dir 2>/dev/null
+fi
+if (echo >conf$$.file) 2>/dev/null; then
+ if ln -s conf$$.file conf$$ 2>/dev/null; then
+ as_ln_s='ln -s'
+ # ... but there are two gotchas:
+ # 1) On MSYS, both `ln -s file dir' and `ln file dir' fail.
+ # 2) DJGPP < 2.04 has no symlinks; `ln -s' creates a wrapper executable.
+ # In both cases, we have to default to `cp -pR'.
+ ln -s conf$$.file conf$$.dir 2>/dev/null && test ! -f conf$$.exe ||
+ as_ln_s='cp -pR'
+ elif ln conf$$.file conf$$ 2>/dev/null; then
+ as_ln_s=ln
+ else
+ as_ln_s='cp -pR'
+ fi
+else
+ as_ln_s='cp -pR'
+fi
+rm -f conf$$ conf$$.exe conf$$.dir/conf$$.file conf$$.file
+rmdir conf$$.dir 2>/dev/null
+
+if mkdir -p . 2>/dev/null; then
+ as_mkdir_p='mkdir -p "$as_dir"'
+else
+ test -d ./-p && rmdir ./-p
+ as_mkdir_p=false
+fi
+
+as_test_x='test -x'
+as_executable_p=as_fn_executable_p
+
+# Sed expression to map a string onto a valid CPP name.
+as_tr_cpp="eval sed 'y%*$as_cr_letters%P$as_cr_LETTERS%;s%[^_$as_cr_alnum]%_%g'"
+
+# Sed expression to map a string onto a valid variable name.
+as_tr_sh="eval sed 'y%*+%pp%;s%[^_$as_cr_alnum]%_%g'"
+
+
+test -n "$DJDIR" || exec 7<&0 </dev/null
+exec 6>&1
+
+# Name of the host.
+# hostname on some systems (SVR3.2, old GNU/Linux) returns a bogus exit status,
+# so uname gets run too.
+ac_hostname=`(hostname || uname -n) 2>/dev/null | sed 1q`
+
+#
+# Initializations.
+#
+ac_default_prefix=/usr/local
+ac_clean_files=
+ac_config_libobj_dir=.
+LIB@&t@OBJS=
+cross_compiling=no
+subdirs=
+MFLAGS=
+MAKEFLAGS=
+
+# Identity of this package.
+PACKAGE_NAME='teximpatient'
+PACKAGE_TARNAME='teximpatient'
+PACKAGE_VERSION='2.4'
+PACKAGE_STRING='teximpatient 2.4'
+PACKAGE_BUGREPORT='impatient@tug.org'
+PACKAGE_URL=''
+
+ac_unique_file="book.tex"
+ac_subst_vars='LTLIBOBJS
+LIB@&t@OBJS
+HTTEX
+PDFTEX
+TEX
+ICON
+MKDIR_P
+INSTALL_DATA
+INSTALL_SCRIPT
+INSTALL_PROGRAM
+target_alias
+host_alias
+build_alias
+LIBS
+ECHO_T
+ECHO_N
+ECHO_C
+DEFS
+mandir
+localedir
+libdir
+psdir
+pdfdir
+dvidir
+htmldir
+infodir
+docdir
+oldincludedir
+includedir
+localstatedir
+sharedstatedir
+sysconfdir
+datadir
+datarootdir
+libexecdir
+sbindir
+bindir
+program_transform_name
+prefix
+exec_prefix
+PACKAGE_URL
+PACKAGE_BUGREPORT
+PACKAGE_STRING
+PACKAGE_VERSION
+PACKAGE_TARNAME
+PACKAGE_NAME
+PATH_SEPARATOR
+SHELL'
+ac_subst_files=''
+ac_user_opts='
+enable_option_checking
+'
+ ac_precious_vars='build_alias
+host_alias
+target_alias'
+
+
+# Initialize some variables set by options.
+ac_init_help=
+ac_init_version=false
+ac_unrecognized_opts=
+ac_unrecognized_sep=
+# The variables have the same names as the options, with
+# dashes changed to underlines.
+cache_file=/dev/null
+exec_prefix=NONE
+no_create=
+no_recursion=
+prefix=NONE
+program_prefix=NONE
+program_suffix=NONE
+program_transform_name=s,x,x,
+silent=
+site=
+srcdir=
+verbose=
+x_includes=NONE
+x_libraries=NONE
+
+# Installation directory options.
+# These are left unexpanded so users can "make install exec_prefix=/foo"
+# and all the variables that are supposed to be based on exec_prefix
+# by default will actually change.
+# Use braces instead of parens because sh, perl, etc. also accept them.
+# (The list follows the same order as the GNU Coding Standards.)
+bindir='${exec_prefix}/bin'
+sbindir='${exec_prefix}/sbin'
+libexecdir='${exec_prefix}/libexec'
+datarootdir='${prefix}/share'
+datadir='${datarootdir}'
+sysconfdir='${prefix}/etc'
+sharedstatedir='${prefix}/com'
+localstatedir='${prefix}/var'
+includedir='${prefix}/include'
+oldincludedir='/usr/include'
+docdir='${datarootdir}/doc/${PACKAGE_TARNAME}'
+infodir='${datarootdir}/info'
+htmldir='${docdir}'
+dvidir='${docdir}'
+pdfdir='${docdir}'
+psdir='${docdir}'
+libdir='${exec_prefix}/lib'
+localedir='${datarootdir}/locale'
+mandir='${datarootdir}/man'
+
+ac_prev=
+ac_dashdash=
+for ac_option
+do
+ # If the previous option needs an argument, assign it.
+ if test -n "$ac_prev"; then
+ eval $ac_prev=\$ac_option
+ ac_prev=
+ continue
+ fi
+
+ case $ac_option in
+ *=?*) ac_optarg=`expr "X$ac_option" : '[^=]*=\(.*\)'` ;;
+ *=) ac_optarg= ;;
+ *) ac_optarg=yes ;;
+ esac
+
+ # Accept the important Cygnus configure options, so we can diagnose typos.
+
+ case $ac_dashdash$ac_option in
+ --)
+ ac_dashdash=yes ;;
+
+ -bindir | --bindir | --bindi | --bind | --bin | --bi)
+ ac_prev=bindir ;;
+ -bindir=* | --bindir=* | --bindi=* | --bind=* | --bin=* | --bi=*)
+ bindir=$ac_optarg ;;
+
+ -build | --build | --buil | --bui | --bu)
+ ac_prev=build_alias ;;
+ -build=* | --build=* | --buil=* | --bui=* | --bu=*)
+ build_alias=$ac_optarg ;;
+
+ -cache-file | --cache-file | --cache-fil | --cache-fi \
+ | --cache-f | --cache- | --cache | --cach | --cac | --ca | --c)
+ ac_prev=cache_file ;;
+ -cache-file=* | --cache-file=* | --cache-fil=* | --cache-fi=* \
+ | --cache-f=* | --cache-=* | --cache=* | --cach=* | --cac=* | --ca=* | --c=*)
+ cache_file=$ac_optarg ;;
+
+ --config-cache | -C)
+ cache_file=config.cache ;;
+
+ -datadir | --datadir | --datadi | --datad)
+ ac_prev=datadir ;;
+ -datadir=* | --datadir=* | --datadi=* | --datad=*)
+ datadir=$ac_optarg ;;
+
+ -datarootdir | --datarootdir | --datarootdi | --datarootd | --dataroot \
+ | --dataroo | --dataro | --datar)
+ ac_prev=datarootdir ;;
+ -datarootdir=* | --datarootdir=* | --datarootdi=* | --datarootd=* \
+ | --dataroot=* | --dataroo=* | --dataro=* | --datar=*)
+ datarootdir=$ac_optarg ;;
+
+ -disable-* | --disable-*)
+ ac_useropt=`expr "x$ac_option" : 'x-*disable-\(.*\)'`
+ # Reject names that are not valid shell variable names.
+ expr "x$ac_useropt" : ".*[^-+._$as_cr_alnum]" >/dev/null &&
+ as_fn_error $? "invalid feature name: $ac_useropt"
+ ac_useropt_orig=$ac_useropt
+ ac_useropt=`$as_echo "$ac_useropt" | sed 's/[-+.]/_/g'`
+ case $ac_user_opts in
+ *"
+"enable_$ac_useropt"
+"*) ;;
+ *) ac_unrecognized_opts="$ac_unrecognized_opts$ac_unrecognized_sep--disable-$ac_useropt_orig"
+ ac_unrecognized_sep=', ';;
+ esac
+ eval enable_$ac_useropt=no ;;
+
+ -docdir | --docdir | --docdi | --doc | --do)
+ ac_prev=docdir ;;
+ -docdir=* | --docdir=* | --docdi=* | --doc=* | --do=*)
+ docdir=$ac_optarg ;;
+
+ -dvidir | --dvidir | --dvidi | --dvid | --dvi | --dv)
+ ac_prev=dvidir ;;
+ -dvidir=* | --dvidir=* | --dvidi=* | --dvid=* | --dvi=* | --dv=*)
+ dvidir=$ac_optarg ;;
+
+ -enable-* | --enable-*)
+ ac_useropt=`expr "x$ac_option" : 'x-*enable-\([^=]*\)'`
+ # Reject names that are not valid shell variable names.
+ expr "x$ac_useropt" : ".*[^-+._$as_cr_alnum]" >/dev/null &&
+ as_fn_error $? "invalid feature name: $ac_useropt"
+ ac_useropt_orig=$ac_useropt
+ ac_useropt=`$as_echo "$ac_useropt" | sed 's/[-+.]/_/g'`
+ case $ac_user_opts in
+ *"
+"enable_$ac_useropt"
+"*) ;;
+ *) ac_unrecognized_opts="$ac_unrecognized_opts$ac_unrecognized_sep--enable-$ac_useropt_orig"
+ ac_unrecognized_sep=', ';;
+ esac
+ eval enable_$ac_useropt=\$ac_optarg ;;
+
+ -exec-prefix | --exec_prefix | --exec-prefix | --exec-prefi \
+ | --exec-pref | --exec-pre | --exec-pr | --exec-p | --exec- \
+ | --exec | --exe | --ex)
+ ac_prev=exec_prefix ;;
+ -exec-prefix=* | --exec_prefix=* | --exec-prefix=* | --exec-prefi=* \
+ | --exec-pref=* | --exec-pre=* | --exec-pr=* | --exec-p=* | --exec-=* \
+ | --exec=* | --exe=* | --ex=*)
+ exec_prefix=$ac_optarg ;;
+
+ -gas | --gas | --ga | --g)
+ # Obsolete; use --with-gas.
+ with_gas=yes ;;
+
+ -help | --help | --hel | --he | -h)
+ ac_init_help=long ;;
+ -help=r* | --help=r* | --hel=r* | --he=r* | -hr*)
+ ac_init_help=recursive ;;
+ -help=s* | --help=s* | --hel=s* | --he=s* | -hs*)
+ ac_init_help=short ;;
+
+ -host | --host | --hos | --ho)
+ ac_prev=host_alias ;;
+ -host=* | --host=* | --hos=* | --ho=*)
+ host_alias=$ac_optarg ;;
+
+ -htmldir | --htmldir | --htmldi | --htmld | --html | --htm | --ht)
+ ac_prev=htmldir ;;
+ -htmldir=* | --htmldir=* | --htmldi=* | --htmld=* | --html=* | --htm=* \
+ | --ht=*)
+ htmldir=$ac_optarg ;;
+
+ -includedir | --includedir | --includedi | --included | --include \
+ | --includ | --inclu | --incl | --inc)
+ ac_prev=includedir ;;
+ -includedir=* | --includedir=* | --includedi=* | --included=* | --include=* \
+ | --includ=* | --inclu=* | --incl=* | --inc=*)
+ includedir=$ac_optarg ;;
+
+ -infodir | --infodir | --infodi | --infod | --info | --inf)
+ ac_prev=infodir ;;
+ -infodir=* | --infodir=* | --infodi=* | --infod=* | --info=* | --inf=*)
+ infodir=$ac_optarg ;;
+
+ -libdir | --libdir | --libdi | --libd)
+ ac_prev=libdir ;;
+ -libdir=* | --libdir=* | --libdi=* | --libd=*)
+ libdir=$ac_optarg ;;
+
+ -libexecdir | --libexecdir | --libexecdi | --libexecd | --libexec \
+ | --libexe | --libex | --libe)
+ ac_prev=libexecdir ;;
+ -libexecdir=* | --libexecdir=* | --libexecdi=* | --libexecd=* | --libexec=* \
+ | --libexe=* | --libex=* | --libe=*)
+ libexecdir=$ac_optarg ;;
+
+ -localedir | --localedir | --localedi | --localed | --locale)
+ ac_prev=localedir ;;
+ -localedir=* | --localedir=* | --localedi=* | --localed=* | --locale=*)
+ localedir=$ac_optarg ;;
+
+ -localstatedir | --localstatedir | --localstatedi | --localstated \
+ | --localstate | --localstat | --localsta | --localst | --locals)
+ ac_prev=localstatedir ;;
+ -localstatedir=* | --localstatedir=* | --localstatedi=* | --localstated=* \
+ | --localstate=* | --localstat=* | --localsta=* | --localst=* | --locals=*)
+ localstatedir=$ac_optarg ;;
+
+ -mandir | --mandir | --mandi | --mand | --man | --ma | --m)
+ ac_prev=mandir ;;
+ -mandir=* | --mandir=* | --mandi=* | --mand=* | --man=* | --ma=* | --m=*)
+ mandir=$ac_optarg ;;
+
+ -nfp | --nfp | --nf)
+ # Obsolete; use --without-fp.
+ with_fp=no ;;
+
+ -no-create | --no-create | --no-creat | --no-crea | --no-cre \
+ | --no-cr | --no-c | -n)
+ no_create=yes ;;
+
+ -no-recursion | --no-recursion | --no-recursio | --no-recursi \
+ | --no-recurs | --no-recur | --no-recu | --no-rec | --no-re | --no-r)
+ no_recursion=yes ;;
+
+ -oldincludedir | --oldincludedir | --oldincludedi | --oldincluded \
+ | --oldinclude | --oldinclud | --oldinclu | --oldincl | --oldinc \
+ | --oldin | --oldi | --old | --ol | --o)
+ ac_prev=oldincludedir ;;
+ -oldincludedir=* | --oldincludedir=* | --oldincludedi=* | --oldincluded=* \
+ | --oldinclude=* | --oldinclud=* | --oldinclu=* | --oldincl=* | --oldinc=* \
+ | --oldin=* | --oldi=* | --old=* | --ol=* | --o=*)
+ oldincludedir=$ac_optarg ;;
+
+ -prefix | --prefix | --prefi | --pref | --pre | --pr | --p)
+ ac_prev=prefix ;;
+ -prefix=* | --prefix=* | --prefi=* | --pref=* | --pre=* | --pr=* | --p=*)
+ prefix=$ac_optarg ;;
+
+ -program-prefix | --program-prefix | --program-prefi | --program-pref \
+ | --program-pre | --program-pr | --program-p)
+ ac_prev=program_prefix ;;
+ -program-prefix=* | --program-prefix=* | --program-prefi=* \
+ | --program-pref=* | --program-pre=* | --program-pr=* | --program-p=*)
+ program_prefix=$ac_optarg ;;
+
+ -program-suffix | --program-suffix | --program-suffi | --program-suff \
+ | --program-suf | --program-su | --program-s)
+ ac_prev=program_suffix ;;
+ -program-suffix=* | --program-suffix=* | --program-suffi=* \
+ | --program-suff=* | --program-suf=* | --program-su=* | --program-s=*)
+ program_suffix=$ac_optarg ;;
+
+ -program-transform-name | --program-transform-name \
+ | --program-transform-nam | --program-transform-na \
+ | --program-transform-n | --program-transform- \
+ | --program-transform | --program-transfor \
+ | --program-transfo | --program-transf \
+ | --program-trans | --program-tran \
+ | --progr-tra | --program-tr | --program-t)
+ ac_prev=program_transform_name ;;
+ -program-transform-name=* | --program-transform-name=* \
+ | --program-transform-nam=* | --program-transform-na=* \
+ | --program-transform-n=* | --program-transform-=* \
+ | --program-transform=* | --program-transfor=* \
+ | --program-transfo=* | --program-transf=* \
+ | --program-trans=* | --program-tran=* \
+ | --progr-tra=* | --program-tr=* | --program-t=*)
+ program_transform_name=$ac_optarg ;;
+
+ -pdfdir | --pdfdir | --pdfdi | --pdfd | --pdf | --pd)
+ ac_prev=pdfdir ;;
+ -pdfdir=* | --pdfdir=* | --pdfdi=* | --pdfd=* | --pdf=* | --pd=*)
+ pdfdir=$ac_optarg ;;
+
+ -psdir | --psdir | --psdi | --psd | --ps)
+ ac_prev=psdir ;;
+ -psdir=* | --psdir=* | --psdi=* | --psd=* | --ps=*)
+ psdir=$ac_optarg ;;
+
+ -q | -quiet | --quiet | --quie | --qui | --qu | --q \
+ | -silent | --silent | --silen | --sile | --sil)
+ silent=yes ;;
+
+ -sbindir | --sbindir | --sbindi | --sbind | --sbin | --sbi | --sb)
+ ac_prev=sbindir ;;
+ -sbindir=* | --sbindir=* | --sbindi=* | --sbind=* | --sbin=* \
+ | --sbi=* | --sb=*)
+ sbindir=$ac_optarg ;;
+
+ -sharedstatedir | --sharedstatedir | --sharedstatedi \
+ | --sharedstated | --sharedstate | --sharedstat | --sharedsta \
+ | --sharedst | --shareds | --shared | --share | --shar \
+ | --sha | --sh)
+ ac_prev=sharedstatedir ;;
+ -sharedstatedir=* | --sharedstatedir=* | --sharedstatedi=* \
+ | --sharedstated=* | --sharedstate=* | --sharedstat=* | --sharedsta=* \
+ | --sharedst=* | --shareds=* | --shared=* | --share=* | --shar=* \
+ | --sha=* | --sh=*)
+ sharedstatedir=$ac_optarg ;;
+
+ -site | --site | --sit)
+ ac_prev=site ;;
+ -site=* | --site=* | --sit=*)
+ site=$ac_optarg ;;
+
+ -srcdir | --srcdir | --srcdi | --srcd | --src | --sr)
+ ac_prev=srcdir ;;
+ -srcdir=* | --srcdir=* | --srcdi=* | --srcd=* | --src=* | --sr=*)
+ srcdir=$ac_optarg ;;
+
+ -sysconfdir | --sysconfdir | --sysconfdi | --sysconfd | --sysconf \
+ | --syscon | --sysco | --sysc | --sys | --sy)
+ ac_prev=sysconfdir ;;
+ -sysconfdir=* | --sysconfdir=* | --sysconfdi=* | --sysconfd=* | --sysconf=* \
+ | --syscon=* | --sysco=* | --sysc=* | --sys=* | --sy=*)
+ sysconfdir=$ac_optarg ;;
+
+ -target | --target | --targe | --targ | --tar | --ta | --t)
+ ac_prev=target_alias ;;
+ -target=* | --target=* | --targe=* | --targ=* | --tar=* | --ta=* | --t=*)
+ target_alias=$ac_optarg ;;
+
+ -v | -verbose | --verbose | --verbos | --verbo | --verb)
+ verbose=yes ;;
+
+ -version | --version | --versio | --versi | --vers | -V)
+ ac_init_version=: ;;
+
+ -with-* | --with-*)
+ ac_useropt=`expr "x$ac_option" : 'x-*with-\([^=]*\)'`
+ # Reject names that are not valid shell variable names.
+ expr "x$ac_useropt" : ".*[^-+._$as_cr_alnum]" >/dev/null &&
+ as_fn_error $? "invalid package name: $ac_useropt"
+ ac_useropt_orig=$ac_useropt
+ ac_useropt=`$as_echo "$ac_useropt" | sed 's/[-+.]/_/g'`
+ case $ac_user_opts in
+ *"
+"with_$ac_useropt"
+"*) ;;
+ *) ac_unrecognized_opts="$ac_unrecognized_opts$ac_unrecognized_sep--with-$ac_useropt_orig"
+ ac_unrecognized_sep=', ';;
+ esac
+ eval with_$ac_useropt=\$ac_optarg ;;
+
+ -without-* | --without-*)
+ ac_useropt=`expr "x$ac_option" : 'x-*without-\(.*\)'`
+ # Reject names that are not valid shell variable names.
+ expr "x$ac_useropt" : ".*[^-+._$as_cr_alnum]" >/dev/null &&
+ as_fn_error $? "invalid package name: $ac_useropt"
+ ac_useropt_orig=$ac_useropt
+ ac_useropt=`$as_echo "$ac_useropt" | sed 's/[-+.]/_/g'`
+ case $ac_user_opts in
+ *"
+"with_$ac_useropt"
+"*) ;;
+ *) ac_unrecognized_opts="$ac_unrecognized_opts$ac_unrecognized_sep--without-$ac_useropt_orig"
+ ac_unrecognized_sep=', ';;
+ esac
+ eval with_$ac_useropt=no ;;
+
+ --x)
+ # Obsolete; use --with-x.
+ with_x=yes ;;
+
+ -x-includes | --x-includes | --x-include | --x-includ | --x-inclu \
+ | --x-incl | --x-inc | --x-in | --x-i)
+ ac_prev=x_includes ;;
+ -x-includes=* | --x-includes=* | --x-include=* | --x-includ=* | --x-inclu=* \
+ | --x-incl=* | --x-inc=* | --x-in=* | --x-i=*)
+ x_includes=$ac_optarg ;;
+
+ -x-libraries | --x-libraries | --x-librarie | --x-librari \
+ | --x-librar | --x-libra | --x-libr | --x-lib | --x-li | --x-l)
+ ac_prev=x_libraries ;;
+ -x-libraries=* | --x-libraries=* | --x-librarie=* | --x-librari=* \
+ | --x-librar=* | --x-libra=* | --x-libr=* | --x-lib=* | --x-li=* | --x-l=*)
+ x_libraries=$ac_optarg ;;
+
+ -*) as_fn_error $? "unrecognized option: \`$ac_option'
+Try \`0ドル --help' for more information"
+ ;;
+
+ *=*)
+ ac_envvar=`expr "x$ac_option" : 'x\([^=]*\)='`
+ # Reject names that are not valid shell variable names.
+ case $ac_envvar in #(
+ '' | [0-9]* | *[!_$as_cr_alnum]* )
+ as_fn_error $? "invalid variable name: \`$ac_envvar'" ;;
+ esac
+ eval $ac_envvar=\$ac_optarg
+ export $ac_envvar ;;
+
+ *)
+ # FIXME: should be removed in autoconf 3.0.
+ $as_echo "$as_me: WARNING: you should use --build, --host, --target" >&2
+ expr "x$ac_option" : ".*[^-._$as_cr_alnum]" >/dev/null &&
+ $as_echo "$as_me: WARNING: invalid host type: $ac_option" >&2
+ : "${build_alias=$ac_option} ${host_alias=$ac_option} ${target_alias=$ac_option}"
+ ;;
+
+ esac
+done
+
+if test -n "$ac_prev"; then
+ ac_option=--`echo $ac_prev | sed 's/_/-/g'`
+ as_fn_error $? "missing argument to $ac_option"
+fi
+
+if test -n "$ac_unrecognized_opts"; then
+ case $enable_option_checking in
+ no) ;;
+ fatal) as_fn_error $? "unrecognized options: $ac_unrecognized_opts" ;;
+ *) $as_echo "$as_me: WARNING: unrecognized options: $ac_unrecognized_opts" >&2 ;;
+ esac
+fi
+
+# Check all directory arguments for consistency.
+for ac_var in exec_prefix prefix bindir sbindir libexecdir datarootdir \
+ datadir sysconfdir sharedstatedir localstatedir includedir \
+ oldincludedir docdir infodir htmldir dvidir pdfdir psdir \
+ libdir localedir mandir
+do
+ eval ac_val=\$$ac_var
+ # Remove trailing slashes.
+ case $ac_val in
+ */ )
+ ac_val=`expr "X$ac_val" : 'X\(.*[^/]\)' \| "X$ac_val" : 'X\(.*\)'`
+ eval $ac_var=\$ac_val;;
+ esac
+ # Be sure to have absolute directory names.
+ case $ac_val in
+ [\\/$]* | ?:[\\/]* ) continue;;
+ NONE | '' ) case $ac_var in *prefix ) continue;; esac;;
+ esac
+ as_fn_error $? "expected an absolute directory name for --$ac_var: $ac_val"
+done
+
+# There might be people who depend on the old broken behavior: `$host'
+# used to hold the argument of --host etc.
+# FIXME: To remove some day.
+build=$build_alias
+host=$host_alias
+target=$target_alias
+
+# FIXME: To remove some day.
+if test "x$host_alias" != x; then
+ if test "x$build_alias" = x; then
+ cross_compiling=maybe
+ elif test "x$build_alias" != "x$host_alias"; then
+ cross_compiling=yes
+ fi
+fi
+
+ac_tool_prefix=
+test -n "$host_alias" && ac_tool_prefix=$host_alias-
+
+test "$silent" = yes && exec 6>/dev/null
+
+
+ac_pwd=`pwd` && test -n "$ac_pwd" &&
+ac_ls_di=`ls -di .` &&
+ac_pwd_ls_di=`cd "$ac_pwd" && ls -di .` ||
+ as_fn_error $? "working directory cannot be determined"
+test "X$ac_ls_di" = "X$ac_pwd_ls_di" ||
+ as_fn_error $? "pwd does not report name of working directory"
+
+
+# Find the source files, if location was not specified.
+if test -z "$srcdir"; then
+ ac_srcdir_defaulted=yes
+ # Try the directory containing this script, then the parent directory.
+ ac_confdir=`$as_dirname -- "$as_myself" ||
+$as_expr X"$as_myself" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \
+ X"$as_myself" : 'X\(//\)[^/]' \| \
+ X"$as_myself" : 'X\(//\)$' \| \
+ X"$as_myself" : 'X\(/\)' \| . 2>/dev/null ||
+$as_echo X"$as_myself" |
+ sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{
+ s//1円/
+ q
+ }
+ /^X\(\/\/\)[^/].*/{
+ s//1円/
+ q
+ }
+ /^X\(\/\/\)$/{
+ s//1円/
+ q
+ }
+ /^X\(\/\).*/{
+ s//1円/
+ q
+ }
+ s/.*/./; q'`
+ srcdir=$ac_confdir
+ if test ! -r "$srcdir/$ac_unique_file"; then
+ srcdir=..
+ fi
+else
+ ac_srcdir_defaulted=no
+fi
+if test ! -r "$srcdir/$ac_unique_file"; then
+ test "$ac_srcdir_defaulted" = yes && srcdir="$ac_confdir or .."
+ as_fn_error $? "cannot find sources ($ac_unique_file) in $srcdir"
+fi
+ac_msg="sources are in $srcdir, but \`cd $srcdir' does not work"
+ac_abs_confdir=`(
+ cd "$srcdir" && test -r "./$ac_unique_file" || as_fn_error $? "$ac_msg"
+ pwd)`
+# When building in place, set srcdir=.
+if test "$ac_abs_confdir" = "$ac_pwd"; then
+ srcdir=.
+fi
+# Remove unnecessary trailing slashes from srcdir.
+# Double slashes in file names in object file debugging info
+# mess up M-x gdb in Emacs.
+case $srcdir in
+*/) srcdir=`expr "X$srcdir" : 'X\(.*[^/]\)' \| "X$srcdir" : 'X\(.*\)'`;;
+esac
+for ac_var in $ac_precious_vars; do
+ eval ac_env_${ac_var}_set=\${${ac_var}+set}
+ eval ac_env_${ac_var}_value=\$${ac_var}
+ eval ac_cv_env_${ac_var}_set=\${${ac_var}+set}
+ eval ac_cv_env_${ac_var}_value=\$${ac_var}
+done
+
+#
+# Report the --help message.
+#
+if test "$ac_init_help" = "long"; then
+ # Omit some internal or obsolete options to make the list less imposing.
+ # This message is too long to be a string in the A/UX 3.1 sh.
+ cat <<_ACEOF
+\`configure' configures teximpatient 2.4 to adapt to many kinds of systems.
+
+Usage: 0ドル [OPTION]... [VAR=VALUE]...
+
+To assign environment variables (e.g., CC, CFLAGS...), specify them as
+VAR=VALUE. See below for descriptions of some of the useful variables.
+
+Defaults for the options are specified in brackets.
+
+Configuration:
+ -h, --help display this help and exit
+ --help=short display options specific to this package
+ --help=recursive display the short help of all the included packages
+ -V, --version display version information and exit
+ -q, --quiet, --silent do not print \`checking ...' messages
+ --cache-file=FILE cache test results in FILE [disabled]
+ -C, --config-cache alias for \`--cache-file=config.cache'
+ -n, --no-create do not create output files
+ --srcdir=DIR find the sources in DIR [configure dir or \`..']
+
+Installation directories:
+ --prefix=PREFIX install architecture-independent files in PREFIX
+ @<:@@S|@ac_default_prefix@:>@
+ --exec-prefix=EPREFIX install architecture-dependent files in EPREFIX
+ @<:@PREFIX@:>@
+
+By default, \`make install' will install all the files in
+\`$ac_default_prefix/bin', \`$ac_default_prefix/lib' etc. You can specify
+an installation prefix other than \`$ac_default_prefix' using \`--prefix',
+for instance \`--prefix=\$HOME'.
+
+For better control, use the options below.
+
+Fine tuning of the installation directories:
+ --bindir=DIR user executables [EPREFIX/bin]
+ --sbindir=DIR system admin executables [EPREFIX/sbin]
+ --libexecdir=DIR program executables [EPREFIX/libexec]
+ --sysconfdir=DIR read-only single-machine data [PREFIX/etc]
+ --sharedstatedir=DIR modifiable architecture-independent data [PREFIX/com]
+ --localstatedir=DIR modifiable single-machine data [PREFIX/var]
+ --libdir=DIR object code libraries [EPREFIX/lib]
+ --includedir=DIR C header files [PREFIX/include]
+ --oldincludedir=DIR C header files for non-gcc [/usr/include]
+ --datarootdir=DIR read-only arch.-independent data root [PREFIX/share]
+ --datadir=DIR read-only architecture-independent data [DATAROOTDIR]
+ --infodir=DIR info documentation [DATAROOTDIR/info]
+ --localedir=DIR locale-dependent data [DATAROOTDIR/locale]
+ --mandir=DIR man documentation [DATAROOTDIR/man]
+ --docdir=DIR documentation root @<:@DATAROOTDIR/doc/teximpatient@:>@
+ --htmldir=DIR html documentation [DOCDIR]
+ --dvidir=DIR dvi documentation [DOCDIR]
+ --pdfdir=DIR pdf documentation [DOCDIR]
+ --psdir=DIR ps documentation [DOCDIR]
+_ACEOF
+
+ cat <<\_ACEOF
+_ACEOF
+fi
+
+if test -n "$ac_init_help"; then
+ case $ac_init_help in
+ short | recursive ) echo "Configuration of teximpatient 2.4:";;
+ esac
+ cat <<\_ACEOF
+
+Report bugs to <impatient@tug.org>.
+_ACEOF
+ac_status=$?
+fi
+
+if test "$ac_init_help" = "recursive"; then
+ # If there are subdirs, report their specific --help.
+ for ac_dir in : $ac_subdirs_all; do test "x$ac_dir" = x: && continue
+ test -d "$ac_dir" ||
+ { cd "$srcdir" && ac_pwd=`pwd` && srcdir=. && test -d "$ac_dir"; } ||
+ continue
+ ac_builddir=.
+
+case "$ac_dir" in
+.) ac_dir_suffix= ac_top_builddir_sub=. ac_top_build_prefix= ;;
+*)
+ ac_dir_suffix=/`$as_echo "$ac_dir" | sed 's|^\.[\\/]||'`
+ # A ".." for each directory in $ac_dir_suffix.
+ ac_top_builddir_sub=`$as_echo "$ac_dir_suffix" | sed 's|/[^\\/]*|/..|g;s|/||'`
+ case $ac_top_builddir_sub in
+ "") ac_top_builddir_sub=. ac_top_build_prefix= ;;
+ *) ac_top_build_prefix=$ac_top_builddir_sub/ ;;
+ esac ;;
+esac
+ac_abs_top_builddir=$ac_pwd
+ac_abs_builddir=$ac_pwd$ac_dir_suffix
+# for backward compatibility:
+ac_top_builddir=$ac_top_build_prefix
+
+case $srcdir in
+ .) # We are building in place.
+ ac_srcdir=.
+ ac_top_srcdir=$ac_top_builddir_sub
+ ac_abs_top_srcdir=$ac_pwd ;;
+ [\\/]* | ?:[\\/]* ) # Absolute name.
+ ac_srcdir=$srcdir$ac_dir_suffix;
+ ac_top_srcdir=$srcdir
+ ac_abs_top_srcdir=$srcdir ;;
+ *) # Relative name.
+ ac_srcdir=$ac_top_build_prefix$srcdir$ac_dir_suffix
+ ac_top_srcdir=$ac_top_build_prefix$srcdir
+ ac_abs_top_srcdir=$ac_pwd/$srcdir ;;
+esac
+ac_abs_srcdir=$ac_abs_top_srcdir$ac_dir_suffix
+
+ cd "$ac_dir" || { ac_status=$?; continue; }
+ # Check for guested configure.
+ if test -f "$ac_srcdir/configure.gnu"; then
+ echo &&
+ $SHELL "$ac_srcdir/configure.gnu" --help=recursive
+ elif test -f "$ac_srcdir/configure"; then
+ echo &&
+ $SHELL "$ac_srcdir/configure" --help=recursive
+ else
+ $as_echo "$as_me: WARNING: no configuration information is in $ac_dir" >&2
+ fi || ac_status=$?
+ cd "$ac_pwd" || { ac_status=$?; break; }
+ done
+fi
+
+test -n "$ac_init_help" && exit $ac_status
+if $ac_init_version; then
+ cat <<\_ACEOF
+teximpatient configure 2.4
+generated by GNU Autoconf 2.69
+
+Copyright (C) 2012 Free Software Foundation, Inc.
+This configure script is free software; the Free Software Foundation
+gives unlimited permission to copy, distribute and modify it.
+_ACEOF
+ exit
+fi
+
+## ------------------------ ##
+## Autoconf initialization. ##
+## ------------------------ ##
+cat >config.log <<_ACEOF
+This file contains any messages produced by compilers while
+running configure, to aid debugging if configure makes a mistake.
+
+It was created by teximpatient $as_me 2.4, which was
+generated by GNU Autoconf 2.69. Invocation command line was
+
+ $ 0ドル $@
+
+_ACEOF
+exec 5>>config.log
+{
+cat <<_ASUNAME
+## --------- ##
+## Platform. ##
+## --------- ##
+
+hostname = `(hostname || uname -n) 2>/dev/null | sed 1q`
+uname -m = `(uname -m) 2>/dev/null || echo unknown`
+uname -r = `(uname -r) 2>/dev/null || echo unknown`
+uname -s = `(uname -s) 2>/dev/null || echo unknown`
+uname -v = `(uname -v) 2>/dev/null || echo unknown`
+
+/usr/bin/uname -p = `(/usr/bin/uname -p) 2>/dev/null || echo unknown`
+/bin/uname -X = `(/bin/uname -X) 2>/dev/null || echo unknown`
+
+/bin/arch = `(/bin/arch) 2>/dev/null || echo unknown`
+/usr/bin/arch -k = `(/usr/bin/arch -k) 2>/dev/null || echo unknown`
+/usr/convex/getsysinfo = `(/usr/convex/getsysinfo) 2>/dev/null || echo unknown`
+/usr/bin/hostinfo = `(/usr/bin/hostinfo) 2>/dev/null || echo unknown`
+/bin/machine = `(/bin/machine) 2>/dev/null || echo unknown`
+/usr/bin/oslevel = `(/usr/bin/oslevel) 2>/dev/null || echo unknown`
+/bin/universe = `(/bin/universe) 2>/dev/null || echo unknown`
+
+_ASUNAME
+
+as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
+for as_dir in $PATH
+do
+ IFS=$as_save_IFS
+ test -z "$as_dir" && as_dir=.
+ $as_echo "PATH: $as_dir"
+ done
+IFS=$as_save_IFS
+
+} >&5
+
+cat >&5 <<_ACEOF
+
+
+## ----------- ##
+## Core tests. ##
+## ----------- ##
+
+_ACEOF
+
+
+# Keep a trace of the command line.
+# Strip out --no-create and --no-recursion so they do not pile up.
+# Strip out --silent because we don't want to record it for future runs.
+# Also quote any args containing shell meta-characters.
+# Make two passes to allow for proper duplicate-argument suppression.
+ac_configure_args=
+ac_configure_args0=
+ac_configure_args1=
+ac_must_keep_next=false
+for ac_pass in 1 2
+do
+ for ac_arg
+ do
+ case $ac_arg in
+ -no-create | --no-c* | -n | -no-recursion | --no-r*) continue ;;
+ -q | -quiet | --quiet | --quie | --qui | --qu | --q \
+ | -silent | --silent | --silen | --sile | --sil)
+ continue ;;
+ *\'*)
+ ac_arg=`$as_echo "$ac_arg" | sed "s/'/'\\\\\\\\''/g"` ;;
+ esac
+ case $ac_pass in
+ 1) as_fn_append ac_configure_args0 " '$ac_arg'" ;;
+ 2)
+ as_fn_append ac_configure_args1 " '$ac_arg'"
+ if test $ac_must_keep_next = true; then
+ ac_must_keep_next=false # Got value, back to normal.
+ else
+ case $ac_arg in
+ *=* | --config-cache | -C | -disable-* | --disable-* \
+ | -enable-* | --enable-* | -gas | --g* | -nfp | --nf* \
+ | -q | -quiet | --q* | -silent | --sil* | -v | -verb* \
+ | -with-* | --with-* | -without-* | --without-* | --x)
+ case "$ac_configure_args0 " in
+ "$ac_configure_args1"*" '$ac_arg' "* ) continue ;;
+ esac
+ ;;
+ -* ) ac_must_keep_next=true ;;
+ esac
+ fi
+ as_fn_append ac_configure_args " '$ac_arg'"
+ ;;
+ esac
+ done
+done
+{ ac_configure_args0=; unset ac_configure_args0;}
+{ ac_configure_args1=; unset ac_configure_args1;}
+
+# When interrupted or exit'd, cleanup temporary files, and complete
+# config.log. We remove comments because anyway the quotes in there
+# would cause problems or look ugly.
+# WARNING: Use '\'' to represent an apostrophe within the trap.
+# WARNING: Do not start the trap code with a newline, due to a FreeBSD 4.0 bug.
+trap 'exit_status=$?
+ # Save into config.log some information that might help in debugging.
+ {
+ echo
+
+ $as_echo "## ---------------- ##
+## Cache variables. ##
+## ---------------- ##"
+ echo
+ # The following way of writing the cache mishandles newlines in values,
+(
+ for ac_var in `(set) 2>&1 | sed -n '\''s/^\([a-zA-Z_][a-zA-Z0-9_]*\)=.*/1円/p'\''`; do
+ eval ac_val=\$$ac_var
+ case $ac_val in #(
+ *${as_nl}*)
+ case $ac_var in #(
+ *_cv_*) { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: cache variable $ac_var contains a newline" >&5
+$as_echo "$as_me: WARNING: cache variable $ac_var contains a newline" >&2;} ;;
+ esac
+ case $ac_var in #(
+ _ | IFS | as_nl) ;; #(
+ BASH_ARGV | BASH_SOURCE) eval $ac_var= ;; #(
+ *) { eval $ac_var=; unset $ac_var;} ;;
+ esac ;;
+ esac
+ done
+ (set) 2>&1 |
+ case $as_nl`(ac_space='\'' '\''; set) 2>&1` in #(
+ *${as_nl}ac_space=\ *)
+ sed -n \
+ "s/'\''/'\''\\\\'\'''\''/g;
+ s/^\\([_$as_cr_alnum]*_cv_[_$as_cr_alnum]*\\)=\\(.*\\)/\1円='\''\2円'\''/p"
+ ;; #(
+ *)
+ sed -n "/^[_$as_cr_alnum]*_cv_[_$as_cr_alnum]*=/p"
+ ;;
+ esac |
+ sort
+)
+ echo
+
+ $as_echo "## ----------------- ##
+## Output variables. ##
+## ----------------- ##"
+ echo
+ for ac_var in $ac_subst_vars
+ do
+ eval ac_val=\$$ac_var
+ case $ac_val in
+ *\'\''*) ac_val=`$as_echo "$ac_val" | sed "s/'\''/'\''\\\\\\\\'\'''\''/g"`;;
+ esac
+ $as_echo "$ac_var='\''$ac_val'\''"
+ done | sort
+ echo
+
+ if test -n "$ac_subst_files"; then
+ $as_echo "## ------------------- ##
+## File substitutions. ##
+## ------------------- ##"
+ echo
+ for ac_var in $ac_subst_files
+ do
+ eval ac_val=\$$ac_var
+ case $ac_val in
+ *\'\''*) ac_val=`$as_echo "$ac_val" | sed "s/'\''/'\''\\\\\\\\'\'''\''/g"`;;
+ esac
+ $as_echo "$ac_var='\''$ac_val'\''"
+ done | sort
+ echo
+ fi
+
+ if test -s confdefs.h; then
+ $as_echo "## ----------- ##
+## confdefs.h. ##
+## ----------- ##"
+ echo
+ cat confdefs.h
+ echo
+ fi
+ test "$ac_signal" != 0 &&
+ $as_echo "$as_me: caught signal $ac_signal"
+ $as_echo "$as_me: exit $exit_status"
+ } >&5
+ rm -f core *.core core.conftest.* &&
+ rm -f -r conftest* confdefs* conf$$* $ac_clean_files &&
+ exit $exit_status
+' 0
+for ac_signal in 1 2 13 15; do
+ trap 'ac_signal='$ac_signal'; as_fn_exit 1' $ac_signal
+done
+ac_signal=0
+
+# confdefs.h avoids OS command line length limits that DEFS can exceed.
+rm -f -r conftest* confdefs.h
+
+$as_echo "/* confdefs.h */" > confdefs.h
+
+# Predefined preprocessor variables.
+
+cat >>confdefs.h <<_ACEOF
+@%:@define PACKAGE_NAME "$PACKAGE_NAME"
+_ACEOF
+
+cat >>confdefs.h <<_ACEOF
+@%:@define PACKAGE_TARNAME "$PACKAGE_TARNAME"
+_ACEOF
+
+cat >>confdefs.h <<_ACEOF
+@%:@define PACKAGE_VERSION "$PACKAGE_VERSION"
+_ACEOF
+
+cat >>confdefs.h <<_ACEOF
+@%:@define PACKAGE_STRING "$PACKAGE_STRING"
+_ACEOF
+
+cat >>confdefs.h <<_ACEOF
+@%:@define PACKAGE_BUGREPORT "$PACKAGE_BUGREPORT"
+_ACEOF
+
+cat >>confdefs.h <<_ACEOF
+@%:@define PACKAGE_URL "$PACKAGE_URL"
+_ACEOF
+
+
+# Let the site file select an alternate cache file if it wants to.
+# Prefer an explicitly selected file to automatically selected ones.
+ac_site_file1=NONE
+ac_site_file2=NONE
+if test -n "$CONFIG_SITE"; then
+ # We do not want a PATH search for config.site.
+ case $CONFIG_SITE in @%:@((
+ -*) ac_site_file1=./$CONFIG_SITE;;
+ */*) ac_site_file1=$CONFIG_SITE;;
+ *) ac_site_file1=./$CONFIG_SITE;;
+ esac
+elif test "x$prefix" != xNONE; then
+ ac_site_file1=$prefix/share/config.site
+ ac_site_file2=$prefix/etc/config.site
+else
+ ac_site_file1=$ac_default_prefix/share/config.site
+ ac_site_file2=$ac_default_prefix/etc/config.site
+fi
+for ac_site_file in "$ac_site_file1" "$ac_site_file2"
+do
+ test "x$ac_site_file" = xNONE && continue
+ if test /dev/null != "$ac_site_file" && test -r "$ac_site_file"; then
+ { $as_echo "$as_me:${as_lineno-$LINENO}: loading site script $ac_site_file" >&5
+$as_echo "$as_me: loading site script $ac_site_file" >&6;}
+ sed 's/^/| /' "$ac_site_file" >&5
+ . "$ac_site_file" \
+ || { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5
+$as_echo "$as_me: error: in \`$ac_pwd':" >&2;}
+as_fn_error $? "failed to load site script $ac_site_file
+See \`config.log' for more details" "$LINENO" 5; }
+ fi
+done
+
+if test -r "$cache_file"; then
+ # Some versions of bash will fail to source /dev/null (special files
+ # actually), so we avoid doing that. DJGPP emulates it as a regular file.
+ if test /dev/null != "$cache_file" && test -f "$cache_file"; then
+ { $as_echo "$as_me:${as_lineno-$LINENO}: loading cache $cache_file" >&5
+$as_echo "$as_me: loading cache $cache_file" >&6;}
+ case $cache_file in
+ [\\/]* | ?:[\\/]* ) . "$cache_file";;
+ *) . "./$cache_file";;
+ esac
+ fi
+else
+ { $as_echo "$as_me:${as_lineno-$LINENO}: creating cache $cache_file" >&5
+$as_echo "$as_me: creating cache $cache_file" >&6;}
+ >$cache_file
+fi
+
+# Check that the precious variables saved in the cache have kept the same
+# value.
+ac_cache_corrupted=false
+for ac_var in $ac_precious_vars; do
+ eval ac_old_set=\$ac_cv_env_${ac_var}_set
+ eval ac_new_set=\$ac_env_${ac_var}_set
+ eval ac_old_val=\$ac_cv_env_${ac_var}_value
+ eval ac_new_val=\$ac_env_${ac_var}_value
+ case $ac_old_set,$ac_new_set in
+ set,)
+ { $as_echo "$as_me:${as_lineno-$LINENO}: error: \`$ac_var' was set to \`$ac_old_val' in the previous run" >&5
+$as_echo "$as_me: error: \`$ac_var' was set to \`$ac_old_val' in the previous run" >&2;}
+ ac_cache_corrupted=: ;;
+ ,set)
+ { $as_echo "$as_me:${as_lineno-$LINENO}: error: \`$ac_var' was not set in the previous run" >&5
+$as_echo "$as_me: error: \`$ac_var' was not set in the previous run" >&2;}
+ ac_cache_corrupted=: ;;
+ ,);;
+ *)
+ if test "x$ac_old_val" != "x$ac_new_val"; then
+ # differences in whitespace do not lead to failure.
+ ac_old_val_w=`echo x $ac_old_val`
+ ac_new_val_w=`echo x $ac_new_val`
+ if test "$ac_old_val_w" != "$ac_new_val_w"; then
+ { $as_echo "$as_me:${as_lineno-$LINENO}: error: \`$ac_var' has changed since the previous run:" >&5
+$as_echo "$as_me: error: \`$ac_var' has changed since the previous run:" >&2;}
+ ac_cache_corrupted=:
+ else
+ { $as_echo "$as_me:${as_lineno-$LINENO}: warning: ignoring whitespace changes in \`$ac_var' since the previous run:" >&5
+$as_echo "$as_me: warning: ignoring whitespace changes in \`$ac_var' since the previous run:" >&2;}
+ eval $ac_var=\$ac_old_val
+ fi
+ { $as_echo "$as_me:${as_lineno-$LINENO}: former value: \`$ac_old_val'" >&5
+$as_echo "$as_me: former value: \`$ac_old_val'" >&2;}
+ { $as_echo "$as_me:${as_lineno-$LINENO}: current value: \`$ac_new_val'" >&5
+$as_echo "$as_me: current value: \`$ac_new_val'" >&2;}
+ fi;;
+ esac
+ # Pass precious variables to config.status.
+ if test "$ac_new_set" = set; then
+ case $ac_new_val in
+ *\'*) ac_arg=$ac_var=`$as_echo "$ac_new_val" | sed "s/'/'\\\\\\\\''/g"` ;;
+ *) ac_arg=$ac_var=$ac_new_val ;;
+ esac
+ case " $ac_configure_args " in
+ *" '$ac_arg' "*) ;; # Avoid dups. Use of quotes ensures accuracy.
+ *) as_fn_append ac_configure_args " '$ac_arg'" ;;
+ esac
+ fi
+done
+if $ac_cache_corrupted; then
+ { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5
+$as_echo "$as_me: error: in \`$ac_pwd':" >&2;}
+ { $as_echo "$as_me:${as_lineno-$LINENO}: error: changes in the environment can compromise the build" >&5
+$as_echo "$as_me: error: changes in the environment can compromise the build" >&2;}
+ as_fn_error $? "run \`make distclean' and/or \`rm $cache_file' and start over" "$LINENO" 5
+fi
+## -------------------- ##
+## Main body of script. ##
+## -------------------- ##
+
+ac_ext=c
+ac_cpp='$CPP $CPPFLAGS'
+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5'
+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5'
+ac_compiler_gnu=$ac_cv_c_compiler_gnu
+
+
+
+
+ac_aux_dir=
+for ac_dir in "$srcdir" "$srcdir/.." "$srcdir/../.."; do
+ if test -f "$ac_dir/install-sh"; then
+ ac_aux_dir=$ac_dir
+ ac_install_sh="$ac_aux_dir/install-sh -c"
+ break
+ elif test -f "$ac_dir/install.sh"; then
+ ac_aux_dir=$ac_dir
+ ac_install_sh="$ac_aux_dir/install.sh -c"
+ break
+ elif test -f "$ac_dir/shtool"; then
+ ac_aux_dir=$ac_dir
+ ac_install_sh="$ac_aux_dir/shtool install -c"
+ break
+ fi
+done
+if test -z "$ac_aux_dir"; then
+ as_fn_error $? "cannot find install-sh, install.sh, or shtool in \"$srcdir\" \"$srcdir/..\" \"$srcdir/../..\"" "$LINENO" 5
+fi
+
+# These three variables are undocumented and unsupported,
+# and are intended to be withdrawn in a future Autoconf release.
+# They can cause serious problems if a builder's source tree is in a directory
+# whose full name contains unusual characters.
+ac_config_guess="$SHELL $ac_aux_dir/config.guess" # Please don't use this var.
+ac_config_sub="$SHELL $ac_aux_dir/config.sub" # Please don't use this var.
+ac_configure="$SHELL $ac_aux_dir/configure" # Please don't use this var.
+
+
+# Find a good install program. We prefer a C program (faster),
+# so one script is as good as another. But avoid the broken or
+# incompatible versions:
+# SysV /etc/install, /usr/sbin/install
+# SunOS /usr/etc/install
+# IRIX /sbin/install
+# AIX /bin/install
+# AmigaOS /C/install, which installs bootblocks on floppy discs
+# AIX 4 /usr/bin/installbsd, which doesn't work without a -g flag
+# AFS /usr/afsws/bin/install, which mishandles nonexistent args
+# SVR4 /usr/ucb/install, which tries to use the nonexistent group "staff"
+# OS/2's system install, which has a completely different semantic
+# ./install, which can be erroneously created by make from ./install.sh.
+# Reject install programs that cannot install multiple files.
+{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for a BSD-compatible install" >&5
+$as_echo_n "checking for a BSD-compatible install... " >&6; }
+if test -z "$INSTALL"; then
+if ${ac_cv_path_install+:} false; then :
+ $as_echo_n "(cached) " >&6
+else
+ as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
+for as_dir in $PATH
+do
+ IFS=$as_save_IFS
+ test -z "$as_dir" && as_dir=.
+ # Account for people who put trailing slashes in PATH elements.
+case $as_dir/ in @%:@((
+ ./ | .// | /[cC]/* | \
+ /etc/* | /usr/sbin/* | /usr/etc/* | /sbin/* | /usr/afsws/bin/* | \
+ ?:[\\/]os2[\\/]install[\\/]* | ?:[\\/]OS2[\\/]INSTALL[\\/]* | \
+ /usr/ucb/* ) ;;
+ *)
+ # OSF1 and SCO ODT 3.0 have their own names for install.
+ # Don't use installbsd from OSF since it installs stuff as root
+ # by default.
+ for ac_prog in ginstall scoinst install; do
+ for ac_exec_ext in '' $ac_executable_extensions; do
+ if as_fn_executable_p "$as_dir/$ac_prog$ac_exec_ext"; then
+ if test $ac_prog = install &&
+ grep dspmsg "$as_dir/$ac_prog$ac_exec_ext" >/dev/null 2>&1; then
+ # AIX install. It has an incompatible calling convention.
+ :
+ elif test $ac_prog = install &&
+ grep pwplus "$as_dir/$ac_prog$ac_exec_ext" >/dev/null 2>&1; then
+ # program-specific install script used by HP pwplus--don't use.
+ :
+ else
+ rm -rf conftest.one conftest.two conftest.dir
+ echo one > conftest.one
+ echo two > conftest.two
+ mkdir conftest.dir
+ if "$as_dir/$ac_prog$ac_exec_ext" -c conftest.one conftest.two "`pwd`/conftest.dir" &&
+ test -s conftest.one && test -s conftest.two &&
+ test -s conftest.dir/conftest.one &&
+ test -s conftest.dir/conftest.two
+ then
+ ac_cv_path_install="$as_dir/$ac_prog$ac_exec_ext -c"
+ break 3
+ fi
+ fi
+ fi
+ done
+ done
+ ;;
+esac
+
+ done
+IFS=$as_save_IFS
+
+rm -rf conftest.one conftest.two conftest.dir
+
+fi
+ if test "${ac_cv_path_install+set}" = set; then
+ INSTALL=$ac_cv_path_install
+ else
+ # As a last resort, use the slow shell script. Don't cache a
+ # value for INSTALL within a source directory, because that will
+ # break other packages using the cache if that directory is
+ # removed, or if the value is a relative name.
+ INSTALL=$ac_install_sh
+ fi
+fi
+{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $INSTALL" >&5
+$as_echo "$INSTALL" >&6; }
+
+# Use test -z because SunOS4 sh mishandles braces in ${var-val}.
+# It thinks the first close brace ends the variable substitution.
+test -z "$INSTALL_PROGRAM" && INSTALL_PROGRAM='${INSTALL}'
+
+test -z "$INSTALL_SCRIPT" && INSTALL_SCRIPT='${INSTALL}'
+
+test -z "$INSTALL_DATA" && INSTALL_DATA='${INSTALL} -m 644'
+
+{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for a thread-safe mkdir -p" >&5
+$as_echo_n "checking for a thread-safe mkdir -p... " >&6; }
+if test -z "$MKDIR_P"; then
+ if ${ac_cv_path_mkdir+:} false; then :
+ $as_echo_n "(cached) " >&6
+else
+ as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
+for as_dir in $PATH$PATH_SEPARATOR/opt/sfw/bin
+do
+ IFS=$as_save_IFS
+ test -z "$as_dir" && as_dir=.
+ for ac_prog in mkdir gmkdir; do
+ for ac_exec_ext in '' $ac_executable_extensions; do
+ as_fn_executable_p "$as_dir/$ac_prog$ac_exec_ext" || continue
+ case `"$as_dir/$ac_prog$ac_exec_ext" --version 2>&1` in #(
+ 'mkdir (GNU coreutils) '* | \
+ 'mkdir (coreutils) '* | \
+ 'mkdir (fileutils) '4.1*)
+ ac_cv_path_mkdir=$as_dir/$ac_prog$ac_exec_ext
+ break 3;;
+ esac
+ done
+ done
+ done
+IFS=$as_save_IFS
+
+fi
+
+ test -d ./--version && rmdir ./--version
+ if test "${ac_cv_path_mkdir+set}" = set; then
+ MKDIR_P="$ac_cv_path_mkdir -p"
+ else
+ # As a last resort, use the slow shell script. Don't cache a
+ # value for MKDIR_P within a source directory, because that will
+ # break other packages using the cache if that directory is
+ # removed, or if the value is a relative name.
+ MKDIR_P="$ac_install_sh -d"
+ fi
+fi
+{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $MKDIR_P" >&5
+$as_echo "$MKDIR_P" >&6; }
+
+# Extract the first word of "icon", so it can be a program name with args.
+set dummy icon; ac_word=2ドル
+{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
+$as_echo_n "checking for $ac_word... " >&6; }
+if ${ac_cv_path_ICON+:} false; then :
+ $as_echo_n "(cached) " >&6
+else
+ case $ICON in
+ [\\/]* | ?:[\\/]*)
+ ac_cv_path_ICON="$ICON" # Let the user override the test with a path.
+ ;;
+ *)
+ as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
+for as_dir in $PATH
+do
+ IFS=$as_save_IFS
+ test -z "$as_dir" && as_dir=.
+ for ac_exec_ext in '' $ac_executable_extensions; do
+ if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
+ ac_cv_path_ICON="$as_dir/$ac_word$ac_exec_ext"
+ $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5
+ break 2
+ fi
+done
+ done
+IFS=$as_save_IFS
+
+ ;;
+esac
+fi
+ICON=$ac_cv_path_ICON
+if test -n "$ICON"; then
+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ICON" >&5
+$as_echo "$ICON" >&6; }
+else
+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5
+$as_echo "no" >&6; }
+fi
+
+
+# Extract the first word of "tex", so it can be a program name with args.
+set dummy tex; ac_word=2ドル
+{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
+$as_echo_n "checking for $ac_word... " >&6; }
+if ${ac_cv_path_TEX+:} false; then :
+ $as_echo_n "(cached) " >&6
+else
+ case $TEX in
+ [\\/]* | ?:[\\/]*)
+ ac_cv_path_TEX="$TEX" # Let the user override the test with a path.
+ ;;
+ *)
+ as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
+for as_dir in $PATH
+do
+ IFS=$as_save_IFS
+ test -z "$as_dir" && as_dir=.
+ for ac_exec_ext in '' $ac_executable_extensions; do
+ if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
+ ac_cv_path_TEX="$as_dir/$ac_word$ac_exec_ext"
+ $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5
+ break 2
+ fi
+done
+ done
+IFS=$as_save_IFS
+
+ ;;
+esac
+fi
+TEX=$ac_cv_path_TEX
+if test -n "$TEX"; then
+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $TEX" >&5
+$as_echo "$TEX" >&6; }
+else
+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5
+$as_echo "no" >&6; }
+fi
+
+
+# Extract the first word of "pdftex", so it can be a program name with args.
+set dummy pdftex; ac_word=2ドル
+{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
+$as_echo_n "checking for $ac_word... " >&6; }
+if ${ac_cv_path_PDFTEX+:} false; then :
+ $as_echo_n "(cached) " >&6
+else
+ case $PDFTEX in
+ [\\/]* | ?:[\\/]*)
+ ac_cv_path_PDFTEX="$PDFTEX" # Let the user override the test with a path.
+ ;;
+ *)
+ as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
+for as_dir in $PATH
+do
+ IFS=$as_save_IFS
+ test -z "$as_dir" && as_dir=.
+ for ac_exec_ext in '' $ac_executable_extensions; do
+ if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
+ ac_cv_path_PDFTEX="$as_dir/$ac_word$ac_exec_ext"
+ $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5
+ break 2
+ fi
+done
+ done
+IFS=$as_save_IFS
+
+ ;;
+esac
+fi
+PDFTEX=$ac_cv_path_PDFTEX
+if test -n "$PDFTEX"; then
+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $PDFTEX" >&5
+$as_echo "$PDFTEX" >&6; }
+else
+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5
+$as_echo "no" >&6; }
+fi
+
+
+# Extract the first word of "httex", so it can be a program name with args.
+set dummy httex; ac_word=2ドル
+{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
+$as_echo_n "checking for $ac_word... " >&6; }
+if ${ac_cv_path_HTTEX+:} false; then :
+ $as_echo_n "(cached) " >&6
+else
+ case $HTTEX in
+ [\\/]* | ?:[\\/]*)
+ ac_cv_path_HTTEX="$HTTEX" # Let the user override the test with a path.
+ ;;
+ *)
+ as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
+for as_dir in $PATH
+do
+ IFS=$as_save_IFS
+ test -z "$as_dir" && as_dir=.
+ for ac_exec_ext in '' $ac_executable_extensions; do
+ if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
+ ac_cv_path_HTTEX="$as_dir/$ac_word$ac_exec_ext"
+ $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5
+ break 2
+ fi
+done
+ done
+IFS=$as_save_IFS
+
+ ;;
+esac
+fi
+HTTEX=$ac_cv_path_HTTEX
+if test -n "$HTTEX"; then
+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $HTTEX" >&5
+$as_echo "$HTTEX" >&6; }
+else
+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5
+$as_echo "no" >&6; }
+fi
+
+
+
+ac_config_files="$ac_config_files Makefile"
+
+cat >confcache <<\_ACEOF
+# This file is a shell script that caches the results of configure
+# tests run on this system so they can be shared between configure
+# scripts and configure runs, see configure's option --config-cache.
+# It is not useful on other systems. If it contains results you don't
+# want to keep, you may remove or edit it.
+#
+# config.status only pays attention to the cache file if you give it
+# the --recheck option to rerun configure.
+#
+# `ac_cv_env_foo' variables (set or unset) will be overridden when
+# loading this file, other *unset* `ac_cv_foo' will be assigned the
+# following values.
+
+_ACEOF
+
+# The following way of writing the cache mishandles newlines in values,
+# but we know of no workaround that is simple, portable, and efficient.
+# So, we kill variables containing newlines.
+# Ultrix sh set writes to stderr and can't be redirected directly,
+# and sets the high bit in the cache file unless we assign to the vars.
+(
+ for ac_var in `(set) 2>&1 | sed -n 's/^\([a-zA-Z_][a-zA-Z0-9_]*\)=.*/1円/p'`; do
+ eval ac_val=\$$ac_var
+ case $ac_val in #(
+ *${as_nl}*)
+ case $ac_var in #(
+ *_cv_*) { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: cache variable $ac_var contains a newline" >&5
+$as_echo "$as_me: WARNING: cache variable $ac_var contains a newline" >&2;} ;;
+ esac
+ case $ac_var in #(
+ _ | IFS | as_nl) ;; #(
+ BASH_ARGV | BASH_SOURCE) eval $ac_var= ;; #(
+ *) { eval $ac_var=; unset $ac_var;} ;;
+ esac ;;
+ esac
+ done
+
+ (set) 2>&1 |
+ case $as_nl`(ac_space=' '; set) 2>&1` in #(
+ *${as_nl}ac_space=\ *)
+ # `set' does not quote correctly, so add quotes: double-quote
+ # substitution turns \\\\ into \,円 and sed turns \\ into \.
+ sed -n \
+ "s/'/'\\\\''/g;
+ s/^\\([_$as_cr_alnum]*_cv_[_$as_cr_alnum]*\\)=\\(.*\\)/\1円='\2円'/p"
+ ;; #(
+ *)
+ # `set' quotes correctly as required by POSIX, so do not add quotes.
+ sed -n "/^[_$as_cr_alnum]*_cv_[_$as_cr_alnum]*=/p"
+ ;;
+ esac |
+ sort
+) |
+ sed '
+ /^ac_cv_env_/b end
+ t clear
+ :clear
+ s/^\([^=]*\)=\(.*[{}].*\)$/test "${1円+set}" = set || &/
+ t end
+ s/^\([^=]*\)=\(.*\)$/1円=${1円=2円}/
+ :end' >>confcache
+if diff "$cache_file" confcache >/dev/null 2>&1; then :; else
+ if test -w "$cache_file"; then
+ if test "x$cache_file" != "x/dev/null"; then
+ { $as_echo "$as_me:${as_lineno-$LINENO}: updating cache $cache_file" >&5
+$as_echo "$as_me: updating cache $cache_file" >&6;}
+ if test ! -f "$cache_file" || test -h "$cache_file"; then
+ cat confcache >"$cache_file"
+ else
+ case $cache_file in #(
+ */* | ?:*)
+ mv -f confcache "$cache_file"$$ &&
+ mv -f "$cache_file"$$ "$cache_file" ;; #(
+ *)
+ mv -f confcache "$cache_file" ;;
+ esac
+ fi
+ fi
+ else
+ { $as_echo "$as_me:${as_lineno-$LINENO}: not updating unwritable cache $cache_file" >&5
+$as_echo "$as_me: not updating unwritable cache $cache_file" >&6;}
+ fi
+fi
+rm -f confcache
+
+test "x$prefix" = xNONE && prefix=$ac_default_prefix
+# Let make expand exec_prefix.
+test "x$exec_prefix" = xNONE && exec_prefix='${prefix}'
+
+# Transform confdefs.h into DEFS.
+# Protect against shell expansion while executing Makefile rules.
+# Protect against Makefile macro expansion.
+#
+# If the first sed substitution is executed (which looks for macros that
+# take arguments), then branch to the quote section. Otherwise,
+# look for a macro that doesn't take arguments.
+ac_script='
+:mline
+/\\$/{
+ N
+ s,\\\n,,
+ b mline
+}
+t clear
+:clear
+s/^[ ]*#[ ]*define[ ][ ]*\([^ (][^ (]*([^)]*)\)[ ]*\(.*\)/-D1円=2円/g
+t quote
+s/^[ ]*#[ ]*define[ ][ ]*\([^ ][^ ]*\)[ ]*\(.*\)/-D1円=2円/g
+t quote
+b any
+:quote
+s/[ `~#$^&*(){}\\|;'\''"<>?]/\\&/g
+s/\[/\\&/g
+s/\]/\\&/g
+s/\$/$$/g
+H
+:any
+${
+ g
+ s/^\n//
+ s/\n/ /g
+ p
+}
+'
+DEFS=`sed -n "$ac_script" confdefs.h`
+
+
+ac_libobjs=
+ac_ltlibobjs=
+U=
+for ac_i in : $LIB@&t@OBJS; do test "x$ac_i" = x: && continue
+ # 1. Remove the extension, and $U if already installed.
+ ac_script='s/\$U\././;s/\.o$//;s/\.obj$//'
+ ac_i=`$as_echo "$ac_i" | sed "$ac_script"`
+ # 2. Prepend LIBOBJDIR. When used with automake>=1.10 LIBOBJDIR
+ # will be set to the directory where LIBOBJS objects are built.
+ as_fn_append ac_libobjs " \${LIBOBJDIR}$ac_i\$U.$ac_objext"
+ as_fn_append ac_ltlibobjs " \${LIBOBJDIR}$ac_i"'$U.lo'
+done
+LIB@&t@OBJS=$ac_libobjs
+
+LTLIBOBJS=$ac_ltlibobjs
+
+
+
+: "${CONFIG_STATUS=./config.status}"
+ac_write_fail=0
+ac_clean_files_save=$ac_clean_files
+ac_clean_files="$ac_clean_files $CONFIG_STATUS"
+{ $as_echo "$as_me:${as_lineno-$LINENO}: creating $CONFIG_STATUS" >&5
+$as_echo "$as_me: creating $CONFIG_STATUS" >&6;}
+as_write_fail=0
+cat >$CONFIG_STATUS <<_ASEOF || as_write_fail=1
+#! $SHELL
+# Generated by $as_me.
+# Run this file to recreate the current configuration.
+# Compiler output produced by configure, useful for debugging
+# configure, is in config.log if it exists.
+
+debug=false
+ac_cs_recheck=false
+ac_cs_silent=false
+
+SHELL=\${CONFIG_SHELL-$SHELL}
+export SHELL
+_ASEOF
+cat >>$CONFIG_STATUS <<\_ASEOF || as_write_fail=1
+## -------------------- ##
+## M4sh Initialization. ##
+## -------------------- ##
+
+# Be more Bourne compatible
+DUALCASE=1; export DUALCASE # for MKS sh
+if test -n "${ZSH_VERSION+set}" && (emulate sh) >/dev/null 2>&1; then :
+ emulate sh
+ NULLCMD=:
+ # Pre-4.2 versions of Zsh do word splitting on ${1+"$@"}, which
+ # is contrary to our usage. Disable this feature.
+ alias -g '${1+"$@"}'='"$@"'
+ setopt NO_GLOB_SUBST
+else
+ case `(set -o) 2>/dev/null` in @%:@(
+ *posix*) :
+ set -o posix ;; @%:@(
+ *) :
+ ;;
+esac
+fi
+
+
+as_nl='
+'
+export as_nl
+# Printing a long string crashes Solaris 7 /usr/bin/printf.
+as_echo='\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\'
+as_echo=$as_echo$as_echo$as_echo$as_echo$as_echo
+as_echo=$as_echo$as_echo$as_echo$as_echo$as_echo$as_echo
+# Prefer a ksh shell builtin over an external printf program on Solaris,
+# but without wasting forks for bash or zsh.
+if test -z "$BASH_VERSION$ZSH_VERSION" \
+ && (test "X`print -r -- $as_echo`" = "X$as_echo") 2>/dev/null; then
+ as_echo='print -r --'
+ as_echo_n='print -rn --'
+elif (test "X`printf %s $as_echo`" = "X$as_echo") 2>/dev/null; then
+ as_echo='printf %s\n'
+ as_echo_n='printf %s'
+else
+ if test "X`(/usr/ucb/echo -n -n $as_echo) 2>/dev/null`" = "X-n $as_echo"; then
+ as_echo_body='eval /usr/ucb/echo -n "1ドル$as_nl"'
+ as_echo_n='/usr/ucb/echo -n'
+ else
+ as_echo_body='eval expr "X1ドル" : "X\\(.*\\)"'
+ as_echo_n_body='eval
+ arg=1ドル;
+ case $arg in @%:@(
+ *"$as_nl"*)
+ expr "X$arg" : "X\\(.*\\)$as_nl";
+ arg=`expr "X$arg" : ".*$as_nl\\(.*\\)"`;;
+ esac;
+ expr "X$arg" : "X\\(.*\\)" | tr -d "$as_nl"
+ '
+ export as_echo_n_body
+ as_echo_n='sh -c $as_echo_n_body as_echo'
+ fi
+ export as_echo_body
+ as_echo='sh -c $as_echo_body as_echo'
+fi
+
+# The user is always right.
+if test "${PATH_SEPARATOR+set}" != set; then
+ PATH_SEPARATOR=:
+ (PATH='/bin;/bin'; FPATH=$PATH; sh -c :) >/dev/null 2>&1 && {
+ (PATH='/bin:/bin'; FPATH=$PATH; sh -c :) >/dev/null 2>&1 ||
+ PATH_SEPARATOR=';'
+ }
+fi
+
+
+# IFS
+# We need space, tab and new line, in precisely that order. Quoting is
+# there to prevent editors from complaining about space-tab.
+# (If _AS_PATH_WALK were called with IFS unset, it would disable word
+# splitting by setting IFS to empty value.)
+IFS=" "" $as_nl"
+
+# Find who we are. Look in the path if we contain no directory separator.
+as_myself=
+case 0ドル in @%:@((
+ *[\\/]* ) as_myself=0ドル ;;
+ *) as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
+for as_dir in $PATH
+do
+ IFS=$as_save_IFS
+ test -z "$as_dir" && as_dir=.
+ test -r "$as_dir/0ドル" && as_myself=$as_dir/0ドル && break
+ done
+IFS=$as_save_IFS
+
+ ;;
+esac
+# We did not find ourselves, most probably we were run as `sh COMMAND'
+# in which case we are not to be found in the path.
+if test "x$as_myself" = x; then
+ as_myself=0ドル
+fi
+if test ! -f "$as_myself"; then
+ $as_echo "$as_myself: error: cannot find myself; rerun with an absolute file name" >&2
+ exit 1
+fi
+
+# Unset variables that we do not need and which cause bugs (e.g. in
+# pre-3.0 UWIN ksh). But do not cause bugs in bash 2.01; the "|| exit 1"
+# suppresses any "Segmentation fault" message there. '((' could
+# trigger a bug in pdksh 5.2.14.
+for as_var in BASH_ENV ENV MAIL MAILPATH
+do eval test x\${$as_var+set} = xset \
+ && ( (unset $as_var) || exit 1) >/dev/null 2>&1 && unset $as_var || :
+done
+PS1='$ '
+PS2='> '
+PS4='+ '
+
+# NLS nuisances.
+LC_ALL=C
+export LC_ALL
+LANGUAGE=C
+export LANGUAGE
+
+# CDPATH.
+(unset CDPATH) >/dev/null 2>&1 && unset CDPATH
+
+
+@%:@ as_fn_error STATUS ERROR [LINENO LOG_FD]
+@%:@ ----------------------------------------
+@%:@ Output "`basename @S|@0`: error: ERROR" to stderr. If LINENO and LOG_FD are
+@%:@ provided, also output the error to LOG_FD, referencing LINENO. Then exit the
+@%:@ script with STATUS, using 1 if that was 0.
+as_fn_error ()
+{
+ as_status=1ドル; test $as_status -eq 0 && as_status=1
+ if test "4ドル"; then
+ as_lineno=${as_lineno-"3ドル"} as_lineno_stack=as_lineno_stack=$as_lineno_stack
+ $as_echo "$as_me:${as_lineno-$LINENO}: error: 2ドル" >&4ドル
+ fi
+ $as_echo "$as_me: error: 2ドル" >&2
+ as_fn_exit $as_status
+} @%:@ as_fn_error
+
+
+@%:@ as_fn_set_status STATUS
+@%:@ -----------------------
+@%:@ Set @S|@? to STATUS, without forking.
+as_fn_set_status ()
+{
+ return 1ドル
+} @%:@ as_fn_set_status
+
+@%:@ as_fn_exit STATUS
+@%:@ -----------------
+@%:@ Exit the shell with STATUS, even in a "trap 0" or "set -e" context.
+as_fn_exit ()
+{
+ set +e
+ as_fn_set_status 1ドル
+ exit 1ドル
+} @%:@ as_fn_exit
+
+@%:@ as_fn_unset VAR
+@%:@ ---------------
+@%:@ Portably unset VAR.
+as_fn_unset ()
+{
+ { eval 1ドル=; unset 1ドル;}
+}
+as_unset=as_fn_unset
+@%:@ as_fn_append VAR VALUE
+@%:@ ----------------------
+@%:@ Append the text in VALUE to the end of the definition contained in VAR. Take
+@%:@ advantage of any shell optimizations that allow amortized linear growth over
+@%:@ repeated appends, instead of the typical quadratic growth present in naive
+@%:@ implementations.
+if (eval "as_var=1; as_var+=2; test x\$as_var = x12") 2>/dev/null; then :
+ eval 'as_fn_append ()
+ {
+ eval 1ドル+=\2ドル
+ }'
+else
+ as_fn_append ()
+ {
+ eval 1ドル=\$1ドル\2ドル
+ }
+fi # as_fn_append
+
+@%:@ as_fn_arith ARG...
+@%:@ ------------------
+@%:@ Perform arithmetic evaluation on the ARGs, and store the result in the
+@%:@ global @S|@as_val. Take advantage of shells that can avoid forks. The arguments
+@%:@ must be portable across @S|@(()) and expr.
+if (eval "test \$(( 1 + 1 )) = 2") 2>/dev/null; then :
+ eval 'as_fn_arith ()
+ {
+ as_val=$(( $* ))
+ }'
+else
+ as_fn_arith ()
+ {
+ as_val=`expr "$@" || test $? -eq 1`
+ }
+fi # as_fn_arith
+
+
+if expr a : '\(a\)' >/dev/null 2>&1 &&
+ test "X`expr 00001 : '.*\(...\)'`" = X001; then
+ as_expr=expr
+else
+ as_expr=false
+fi
+
+if (basename -- /) >/dev/null 2>&1 && test "X`basename -- / 2>&1`" = "X/"; then
+ as_basename=basename
+else
+ as_basename=false
+fi
+
+if (as_dir=`dirname -- /` && test "X$as_dir" = X/) >/dev/null 2>&1; then
+ as_dirname=dirname
+else
+ as_dirname=false
+fi
+
+as_me=`$as_basename -- "0ドル" ||
+$as_expr X/"0ドル" : '.*/\([^/][^/]*\)/*$' \| \
+ X"0ドル" : 'X\(//\)$' \| \
+ X"0ドル" : 'X\(/\)' \| . 2>/dev/null ||
+$as_echo X/"0ドル" |
+ sed '/^.*\/\([^/][^/]*\)\/*$/{
+ s//1円/
+ q
+ }
+ /^X\/\(\/\/\)$/{
+ s//1円/
+ q
+ }
+ /^X\/\(\/\).*/{
+ s//1円/
+ q
+ }
+ s/.*/./; q'`
+
+# Avoid depending upon Character Ranges.
+as_cr_letters='abcdefghijklmnopqrstuvwxyz'
+as_cr_LETTERS='ABCDEFGHIJKLMNOPQRSTUVWXYZ'
+as_cr_Letters=$as_cr_letters$as_cr_LETTERS
+as_cr_digits='0123456789'
+as_cr_alnum=$as_cr_Letters$as_cr_digits
+
+ECHO_C= ECHO_N= ECHO_T=
+case `echo -n x` in @%:@(((((
+-n*)
+ case `echo 'xy\c'` in
+ *c*) ECHO_T=' ';; # ECHO_T is single tab character.
+ xy) ECHO_C='\c';;
+ *) echo `echo ksh88 bug on AIX 6.1` > /dev/null
+ ECHO_T=' ';;
+ esac;;
+*)
+ ECHO_N='-n';;
+esac
+
+rm -f conf$$ conf$$.exe conf$$.file
+if test -d conf$$.dir; then
+ rm -f conf$$.dir/conf$$.file
+else
+ rm -f conf$$.dir
+ mkdir conf$$.dir 2>/dev/null
+fi
+if (echo >conf$$.file) 2>/dev/null; then
+ if ln -s conf$$.file conf$$ 2>/dev/null; then
+ as_ln_s='ln -s'
+ # ... but there are two gotchas:
+ # 1) On MSYS, both `ln -s file dir' and `ln file dir' fail.
+ # 2) DJGPP < 2.04 has no symlinks; `ln -s' creates a wrapper executable.
+ # In both cases, we have to default to `cp -pR'.
+ ln -s conf$$.file conf$$.dir 2>/dev/null && test ! -f conf$$.exe ||
+ as_ln_s='cp -pR'
+ elif ln conf$$.file conf$$ 2>/dev/null; then
+ as_ln_s=ln
+ else
+ as_ln_s='cp -pR'
+ fi
+else
+ as_ln_s='cp -pR'
+fi
+rm -f conf$$ conf$$.exe conf$$.dir/conf$$.file conf$$.file
+rmdir conf$$.dir 2>/dev/null
+
+
+@%:@ as_fn_mkdir_p
+@%:@ -------------
+@%:@ Create "@S|@as_dir" as a directory, including parents if necessary.
+as_fn_mkdir_p ()
+{
+
+ case $as_dir in #(
+ -*) as_dir=./$as_dir;;
+ esac
+ test -d "$as_dir" || eval $as_mkdir_p || {
+ as_dirs=
+ while :; do
+ case $as_dir in #(
+ *\'*) as_qdir=`$as_echo "$as_dir" | sed "s/'/'\\\\\\\\''/g"`;; #'(
+ *) as_qdir=$as_dir;;
+ esac
+ as_dirs="'$as_qdir' $as_dirs"
+ as_dir=`$as_dirname -- "$as_dir" ||
+$as_expr X"$as_dir" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \
+ X"$as_dir" : 'X\(//\)[^/]' \| \
+ X"$as_dir" : 'X\(//\)$' \| \
+ X"$as_dir" : 'X\(/\)' \| . 2>/dev/null ||
+$as_echo X"$as_dir" |
+ sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{
+ s//1円/
+ q
+ }
+ /^X\(\/\/\)[^/].*/{
+ s//1円/
+ q
+ }
+ /^X\(\/\/\)$/{
+ s//1円/
+ q
+ }
+ /^X\(\/\).*/{
+ s//1円/
+ q
+ }
+ s/.*/./; q'`
+ test -d "$as_dir" && break
+ done
+ test -z "$as_dirs" || eval "mkdir $as_dirs"
+ } || test -d "$as_dir" || as_fn_error $? "cannot create directory $as_dir"
+
+
+} @%:@ as_fn_mkdir_p
+if mkdir -p . 2>/dev/null; then
+ as_mkdir_p='mkdir -p "$as_dir"'
+else
+ test -d ./-p && rmdir ./-p
+ as_mkdir_p=false
+fi
+
+
+@%:@ as_fn_executable_p FILE
+@%:@ -----------------------
+@%:@ Test if FILE is an executable regular file.
+as_fn_executable_p ()
+{
+ test -f "1ドル" && test -x "1ドル"
+} @%:@ as_fn_executable_p
+as_test_x='test -x'
+as_executable_p=as_fn_executable_p
+
+# Sed expression to map a string onto a valid CPP name.
+as_tr_cpp="eval sed 'y%*$as_cr_letters%P$as_cr_LETTERS%;s%[^_$as_cr_alnum]%_%g'"
+
+# Sed expression to map a string onto a valid variable name.
+as_tr_sh="eval sed 'y%*+%pp%;s%[^_$as_cr_alnum]%_%g'"
+
+
+exec 6>&1
+## ----------------------------------- ##
+## Main body of $CONFIG_STATUS script. ##
+## ----------------------------------- ##
+_ASEOF
+test $as_write_fail = 0 && chmod +x $CONFIG_STATUS || ac_write_fail=1
+
+cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1
+# Save the log message, to keep 0ドル and so on meaningful, and to
+# report actual input values of CONFIG_FILES etc. instead of their
+# values after options handling.
+ac_log="
+This file was extended by teximpatient $as_me 2.4, which was
+generated by GNU Autoconf 2.69. Invocation command line was
+
+ CONFIG_FILES = $CONFIG_FILES
+ CONFIG_HEADERS = $CONFIG_HEADERS
+ CONFIG_LINKS = $CONFIG_LINKS
+ CONFIG_COMMANDS = $CONFIG_COMMANDS
+ $ 0ドル $@
+
+on `(hostname || uname -n) 2>/dev/null | sed 1q`
+"
+
+_ACEOF
+
+case $ac_config_files in *"
+"*) set x $ac_config_files; shift; ac_config_files=$*;;
+esac
+
+
+
+cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1
+# Files that config.status was made for.
+config_files="$ac_config_files"
+
+_ACEOF
+
+cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1
+ac_cs_usage="\
+\`$as_me' instantiates files and other configuration actions
+from templates according to the current configuration. Unless the files
+and actions are specified as TAGs, all are instantiated by default.
+
+Usage: 0ドル [OPTION]... [TAG]...
+
+ -h, --help print this help, then exit
+ -V, --version print version number and configuration settings, then exit
+ --config print configuration, then exit
+ -q, --quiet, --silent
+ do not print progress messages
+ -d, --debug don't remove temporary files
+ --recheck update $as_me by reconfiguring in the same conditions
+ --file=FILE[:TEMPLATE]
+ instantiate the configuration file FILE
+
+Configuration files:
+$config_files
+
+Report bugs to <impatient@tug.org>."
+
+_ACEOF
+cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1
+ac_cs_config="`$as_echo "$ac_configure_args" | sed 's/^ //; s/[\\""\`\$]/\\\\&/g'`"
+ac_cs_version="\\
+teximpatient config.status 2.4
+configured by 0,ドル generated by GNU Autoconf 2.69,
+ with options \\"\$ac_cs_config\\"
+
+Copyright (C) 2012 Free Software Foundation, Inc.
+This config.status script is free software; the Free Software Foundation
+gives unlimited permission to copy, distribute and modify it."
+
+ac_pwd='$ac_pwd'
+srcdir='$srcdir'
+INSTALL='$INSTALL'
+MKDIR_P='$MKDIR_P'
+test -n "\$AWK" || AWK=awk
+_ACEOF
+
+cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1
+# The default lists apply if the user does not specify any file.
+ac_need_defaults=:
+while test $# != 0
+do
+ case 1ドル in
+ --*=?*)
+ ac_option=`expr "X1ドル" : 'X\([^=]*\)='`
+ ac_optarg=`expr "X1ドル" : 'X[^=]*=\(.*\)'`
+ ac_shift=:
+ ;;
+ --*=)
+ ac_option=`expr "X1ドル" : 'X\([^=]*\)='`
+ ac_optarg=
+ ac_shift=:
+ ;;
+ *)
+ ac_option=1ドル
+ ac_optarg=2ドル
+ ac_shift=shift
+ ;;
+ esac
+
+ case $ac_option in
+ # Handling of the options.
+ -recheck | --recheck | --rechec | --reche | --rech | --rec | --re | --r)
+ ac_cs_recheck=: ;;
+ --version | --versio | --versi | --vers | --ver | --ve | --v | -V )
+ $as_echo "$ac_cs_version"; exit ;;
+ --config | --confi | --conf | --con | --co | --c )
+ $as_echo "$ac_cs_config"; exit ;;
+ --debug | --debu | --deb | --de | --d | -d )
+ debug=: ;;
+ --file | --fil | --fi | --f )
+ $ac_shift
+ case $ac_optarg in
+ *\'*) ac_optarg=`$as_echo "$ac_optarg" | sed "s/'/'\\\\\\\\''/g"` ;;
+ '') as_fn_error $? "missing file argument" ;;
+ esac
+ as_fn_append CONFIG_FILES " '$ac_optarg'"
+ ac_need_defaults=false;;
+ --he | --h | --help | --hel | -h )
+ $as_echo "$ac_cs_usage"; exit ;;
+ -q | -quiet | --quiet | --quie | --qui | --qu | --q \
+ | -silent | --silent | --silen | --sile | --sil | --si | --s)
+ ac_cs_silent=: ;;
+
+ # This is an error.
+ -*) as_fn_error $? "unrecognized option: \`1ドル'
+Try \`0ドル --help' for more information." ;;
+
+ *) as_fn_append ac_config_targets " 1ドル"
+ ac_need_defaults=false ;;
+
+ esac
+ shift
+done
+
+ac_configure_extra_args=
+
+if $ac_cs_silent; then
+ exec 6>/dev/null
+ ac_configure_extra_args="$ac_configure_extra_args --silent"
+fi
+
+_ACEOF
+cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1
+if \$ac_cs_recheck; then
+ set X $SHELL '0ドル' $ac_configure_args \$ac_configure_extra_args --no-create --no-recursion
+ shift
+ \$as_echo "running CONFIG_SHELL=$SHELL \$*" >&6
+ CONFIG_SHELL='$SHELL'
+ export CONFIG_SHELL
+ exec "\$@"
+fi
+
+_ACEOF
+cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1
+exec 5>>config.log
+{
+ echo
+ sed 'h;s/./-/g;s/^.../@%:@@%:@ /;s/...$/ @%:@@%:@/;p;x;p;x' <<_ASBOX
+@%:@@%:@ Running $as_me. @%:@@%:@
+_ASBOX
+ $as_echo "$ac_log"
+} >&5
+
+_ACEOF
+cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1
+_ACEOF
+
+cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1
+
+# Handling of arguments.
+for ac_config_target in $ac_config_targets
+do
+ case $ac_config_target in
+ "Makefile") CONFIG_FILES="$CONFIG_FILES Makefile" ;;
+
+ *) as_fn_error $? "invalid argument: \`$ac_config_target'" "$LINENO" 5;;
+ esac
+done
+
+
+# If the user did not use the arguments to specify the items to instantiate,
+# then the envvar interface is used. Set only those that are not.
+# We use the long form for the default assignment because of an extremely
+# bizarre bug on SunOS 4.1.3.
+if $ac_need_defaults; then
+ test "${CONFIG_FILES+set}" = set || CONFIG_FILES=$config_files
+fi
+
+# Have a temporary directory for convenience. Make it in the build tree
+# simply because there is no reason against having it here, and in addition,
+# creating and moving files from /tmp can sometimes cause problems.
+# Hook for its removal unless debugging.
+# Note that there is a small window in which the directory will not be cleaned:
+# after its creation but before its name has been assigned to `$tmp'.
+$debug ||
+{
+ tmp= ac_tmp=
+ trap 'exit_status=$?
+ : "${ac_tmp:=$tmp}"
+ { test ! -d "$ac_tmp" || rm -fr "$ac_tmp"; } && exit $exit_status
+' 0
+ trap 'as_fn_exit 1' 1 2 13 15
+}
+# Create a (secure) tmp directory for tmp files.
+
+{
+ tmp=`(umask 077 && mktemp -d "./confXXXXXX") 2>/dev/null` &&
+ test -d "$tmp"
+} ||
+{
+ tmp=./conf$$-$RANDOM
+ (umask 077 && mkdir "$tmp")
+} || as_fn_error $? "cannot create a temporary directory in ." "$LINENO" 5
+ac_tmp=$tmp
+
+# Set up the scripts for CONFIG_FILES section.
+# No need to generate them if there are no CONFIG_FILES.
+# This happens for instance with `./config.status config.h'.
+if test -n "$CONFIG_FILES"; then
+
+
+ac_cr=`echo X | tr X '015円'`
+# On cygwin, bash can eat \r inside `` if the user requested igncr.
+# But we know of no other shell where ac_cr would be empty at this
+# point, so we can use a bashism as a fallback.
+if test "x$ac_cr" = x; then
+ eval ac_cr=\$\'\\r\'
+fi
+ac_cs_awk_cr=`$AWK 'BEGIN { print "a\rb" }' </dev/null 2>/dev/null`
+if test "$ac_cs_awk_cr" = "a${ac_cr}b"; then
+ ac_cs_awk_cr='\\r'
+else
+ ac_cs_awk_cr=$ac_cr
+fi
+
+echo 'BEGIN {' >"$ac_tmp/subs1.awk" &&
+_ACEOF
+
+
+{
+ echo "cat >conf$$subs.awk <<_ACEOF" &&
+ echo "$ac_subst_vars" | sed 's/.*/&!$&$ac_delim/' &&
+ echo "_ACEOF"
+} >conf$$subs.sh ||
+ as_fn_error $? "could not make $CONFIG_STATUS" "$LINENO" 5
+ac_delim_num=`echo "$ac_subst_vars" | grep -c '^'`
+ac_delim='%!_!# '
+for ac_last_try in false false false false false :; do
+ . ./conf$$subs.sh ||
+ as_fn_error $? "could not make $CONFIG_STATUS" "$LINENO" 5
+
+ ac_delim_n=`sed -n "s/.*$ac_delim\$/X/p" conf$$subs.awk | grep -c X`
+ if test $ac_delim_n = $ac_delim_num; then
+ break
+ elif $ac_last_try; then
+ as_fn_error $? "could not make $CONFIG_STATUS" "$LINENO" 5
+ else
+ ac_delim="$ac_delim!$ac_delim _$ac_delim!! "
+ fi
+done
+rm -f conf$$subs.sh
+
+cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1
+cat >>"\$ac_tmp/subs1.awk" <<\\_ACAWK &&
+_ACEOF
+sed -n '
+h
+s/^/S["/; s/!.*/"]=/
+p
+g
+s/^[^!]*!//
+:repl
+t repl
+s/'"$ac_delim"'$//
+t delim
+:nl
+h
+s/\(.\{148\}\)..*/1円/
+t more1
+s/["\\]/\\&/g; s/^/"/; s/$/\\n"\\/
+p
+n
+b repl
+:more1
+s/["\\]/\\&/g; s/^/"/; s/$/"\\/
+p
+g
+s/.\{148\}//
+t nl
+:delim
+h
+s/\(.\{148\}\)..*/1円/
+t more2
+s/["\\]/\\&/g; s/^/"/; s/$/"/
+p
+b
+:more2
+s/["\\]/\\&/g; s/^/"/; s/$/"\\/
+p
+g
+s/.\{148\}//
+t delim
+' <conf$$subs.awk | sed '
+/^[^""]/{
+ N
+ s/\n//
+}
+' >>$CONFIG_STATUS || ac_write_fail=1
+rm -f conf$$subs.awk
+cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1
+_ACAWK
+cat >>"\$ac_tmp/subs1.awk" <<_ACAWK &&
+ for (key in S) S_is_set[key] = 1
+ FS = ""
+
+}
+{
+ line = $ 0
+ nfields = split(line, field, "@")
+ substed = 0
+ len = length(field[1])
+ for (i = 2; i < nfields; i++) {
+ key = field[i]
+ keylen = length(key)
+ if (S_is_set[key]) {
+ value = S[key]
+ line = substr(line, 1, len) "" value "" substr(line, len + keylen + 3)
+ len += length(value) + length(field[++i])
+ substed = 1
+ } else
+ len += 1 + keylen
+ }
+
+ print line
+}
+
+_ACAWK
+_ACEOF
+cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1
+if sed "s/$ac_cr//" < /dev/null > /dev/null 2>&1; then
+ sed "s/$ac_cr\$//; s/$ac_cr/$ac_cs_awk_cr/g"
+else
+ cat
+fi < "$ac_tmp/subs1.awk" > "$ac_tmp/subs.awk" \
+ || as_fn_error $? "could not setup config files machinery" "$LINENO" 5
+_ACEOF
+
+# VPATH may cause trouble with some makes, so we remove sole $(srcdir),
+# ${srcdir} and @srcdir@ entries from VPATH if srcdir is ".", strip leading and
+# trailing colons and then remove the whole line if VPATH becomes empty
+# (actually we leave an empty line to preserve line numbers).
+if test "x$srcdir" = x.; then
+ ac_vpsub='/^[ ]*VPATH[ ]*=[ ]*/{
+h
+s///
+s/^/:/
+s/[ ]*$/:/
+s/:\$(srcdir):/:/g
+s/:\${srcdir}:/:/g
+s/:@srcdir@:/:/g
+s/^:*//
+s/:*$//
+x
+s/\(=[ ]*\).*/1円/
+G
+s/\n//
+s/^[^=]*=[ ]*$//
+}'
+fi
+
+cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1
+fi # test -n "$CONFIG_FILES"
+
+
+eval set X " :F $CONFIG_FILES "
+shift
+for ac_tag
+do
+ case $ac_tag in
+ :[FHLC]) ac_mode=$ac_tag; continue;;
+ esac
+ case $ac_mode$ac_tag in
+ :[FHL]*:*);;
+ :L* | :C*:*) as_fn_error $? "invalid tag \`$ac_tag'" "$LINENO" 5;;
+ :[FH]-) ac_tag=-:-;;
+ :[FH]*) ac_tag=$ac_tag:$ac_tag.in;;
+ esac
+ ac_save_IFS=$IFS
+ IFS=:
+ set x $ac_tag
+ IFS=$ac_save_IFS
+ shift
+ ac_file=1ドル
+ shift
+
+ case $ac_mode in
+ :L) ac_source=1ドル;;
+ :[FH])
+ ac_file_inputs=
+ for ac_f
+ do
+ case $ac_f in
+ -) ac_f="$ac_tmp/stdin";;
+ *) # Look for the file first in the build tree, then in the source tree
+ # (if the path is not absolute). The absolute path cannot be DOS-style,
+ # because $ac_f cannot contain `:'.
+ test -f "$ac_f" ||
+ case $ac_f in
+ [\\/$]*) false;;
+ *) test -f "$srcdir/$ac_f" && ac_f="$srcdir/$ac_f";;
+ esac ||
+ as_fn_error 1 "cannot find input file: \`$ac_f'" "$LINENO" 5;;
+ esac
+ case $ac_f in *\'*) ac_f=`$as_echo "$ac_f" | sed "s/'/'\\\\\\\\''/g"`;; esac
+ as_fn_append ac_file_inputs " '$ac_f'"
+ done
+
+ # Let's still pretend it is `configure' which instantiates (i.e., don't
+ # use $as_me), people would be surprised to read:
+ # /* config.h. Generated by config.status. */
+ configure_input='Generated from '`
+ $as_echo "$*" | sed 's|^[^:]*/||;s|:[^:]*/|, |g'
+ `' by configure.'
+ if test x"$ac_file" != x-; then
+ configure_input="$ac_file. $configure_input"
+ { $as_echo "$as_me:${as_lineno-$LINENO}: creating $ac_file" >&5
+$as_echo "$as_me: creating $ac_file" >&6;}
+ fi
+ # Neutralize special characters interpreted by sed in replacement strings.
+ case $configure_input in #(
+ *\&* | *\|* | *\\* )
+ ac_sed_conf_input=`$as_echo "$configure_input" |
+ sed 's/[\\\\&|]/\\\\&/g'`;; #(
+ *) ac_sed_conf_input=$configure_input;;
+ esac
+
+ case $ac_tag in
+ *:-:* | *:-) cat >"$ac_tmp/stdin" \
+ || as_fn_error $? "could not create $ac_file" "$LINENO" 5 ;;
+ esac
+ ;;
+ esac
+
+ ac_dir=`$as_dirname -- "$ac_file" ||
+$as_expr X"$ac_file" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \
+ X"$ac_file" : 'X\(//\)[^/]' \| \
+ X"$ac_file" : 'X\(//\)$' \| \
+ X"$ac_file" : 'X\(/\)' \| . 2>/dev/null ||
+$as_echo X"$ac_file" |
+ sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{
+ s//1円/
+ q
+ }
+ /^X\(\/\/\)[^/].*/{
+ s//1円/
+ q
+ }
+ /^X\(\/\/\)$/{
+ s//1円/
+ q
+ }
+ /^X\(\/\).*/{
+ s//1円/
+ q
+ }
+ s/.*/./; q'`
+ as_dir="$ac_dir"; as_fn_mkdir_p
+ ac_builddir=.
+
+case "$ac_dir" in
+.) ac_dir_suffix= ac_top_builddir_sub=. ac_top_build_prefix= ;;
+*)
+ ac_dir_suffix=/`$as_echo "$ac_dir" | sed 's|^\.[\\/]||'`
+ # A ".." for each directory in $ac_dir_suffix.
+ ac_top_builddir_sub=`$as_echo "$ac_dir_suffix" | sed 's|/[^\\/]*|/..|g;s|/||'`
+ case $ac_top_builddir_sub in
+ "") ac_top_builddir_sub=. ac_top_build_prefix= ;;
+ *) ac_top_build_prefix=$ac_top_builddir_sub/ ;;
+ esac ;;
+esac
+ac_abs_top_builddir=$ac_pwd
+ac_abs_builddir=$ac_pwd$ac_dir_suffix
+# for backward compatibility:
+ac_top_builddir=$ac_top_build_prefix
+
+case $srcdir in
+ .) # We are building in place.
+ ac_srcdir=.
+ ac_top_srcdir=$ac_top_builddir_sub
+ ac_abs_top_srcdir=$ac_pwd ;;
+ [\\/]* | ?:[\\/]* ) # Absolute name.
+ ac_srcdir=$srcdir$ac_dir_suffix;
+ ac_top_srcdir=$srcdir
+ ac_abs_top_srcdir=$srcdir ;;
+ *) # Relative name.
+ ac_srcdir=$ac_top_build_prefix$srcdir$ac_dir_suffix
+ ac_top_srcdir=$ac_top_build_prefix$srcdir
+ ac_abs_top_srcdir=$ac_pwd/$srcdir ;;
+esac
+ac_abs_srcdir=$ac_abs_top_srcdir$ac_dir_suffix
+
+
+ case $ac_mode in
+ :F)
+ #
+ # CONFIG_FILE
+ #
+
+ case $INSTALL in
+ [\\/$]* | ?:[\\/]* ) ac_INSTALL=$INSTALL ;;
+ *) ac_INSTALL=$ac_top_build_prefix$INSTALL ;;
+ esac
+ ac_MKDIR_P=$MKDIR_P
+ case $MKDIR_P in
+ [\\/$]* | ?:[\\/]* ) ;;
+ */*) ac_MKDIR_P=$ac_top_build_prefix$MKDIR_P ;;
+ esac
+_ACEOF
+
+cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1
+# If the template does not know about datarootdir, expand it.
+# FIXME: This hack should be removed a few years after 2.60.
+ac_datarootdir_hack=; ac_datarootdir_seen=
+ac_sed_dataroot='
+/datarootdir/ {
+ p
+ q
+}
+/@datadir@/p
+/@docdir@/p
+/@infodir@/p
+/@localedir@/p
+/@mandir@/p'
+case `eval "sed -n \"\$ac_sed_dataroot\" $ac_file_inputs"` in
+*datarootdir*) ac_datarootdir_seen=yes;;
+*@datadir@*|*@docdir@*|*@infodir@*|*@localedir@*|*@mandir@*)
+ { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: $ac_file_inputs seems to ignore the --datarootdir setting" >&5
+$as_echo "$as_me: WARNING: $ac_file_inputs seems to ignore the --datarootdir setting" >&2;}
+_ACEOF
+cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1
+ ac_datarootdir_hack='
+ s&@datadir@&$datadir&g
+ s&@docdir@&$docdir&g
+ s&@infodir@&$infodir&g
+ s&@localedir@&$localedir&g
+ s&@mandir@&$mandir&g
+ s&\\\${datarootdir}&$datarootdir&g' ;;
+esac
+_ACEOF
+
+# Neutralize VPATH when `$srcdir' = `.'.
+# Shell code in configure.ac might set extrasub.
+# FIXME: do we really want to maintain this feature?
+cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1
+ac_sed_extra="$ac_vpsub
+$extrasub
+_ACEOF
+cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1
+:t
+/@[a-zA-Z_][a-zA-Z_0-9]*@/!b
+s|@configure_input@|$ac_sed_conf_input|;t t
+s&@top_builddir@&$ac_top_builddir_sub&;t t
+s&@top_build_prefix@&$ac_top_build_prefix&;t t
+s&@srcdir@&$ac_srcdir&;t t
+s&@abs_srcdir@&$ac_abs_srcdir&;t t
+s&@top_srcdir@&$ac_top_srcdir&;t t
+s&@abs_top_srcdir@&$ac_abs_top_srcdir&;t t
+s&@builddir@&$ac_builddir&;t t
+s&@abs_builddir@&$ac_abs_builddir&;t t
+s&@abs_top_builddir@&$ac_abs_top_builddir&;t t
+s&@INSTALL@&$ac_INSTALL&;t t
+s&@MKDIR_P@&$ac_MKDIR_P&;t t
+$ac_datarootdir_hack
+"
+eval sed \"\$ac_sed_extra\" "$ac_file_inputs" | $AWK -f "$ac_tmp/subs.awk" \
+ >$ac_tmp/out || as_fn_error $? "could not create $ac_file" "$LINENO" 5
+
+test -z "$ac_datarootdir_hack$ac_datarootdir_seen" &&
+ { ac_out=`sed -n '/\${datarootdir}/p' "$ac_tmp/out"`; test -n "$ac_out"; } &&
+ { ac_out=`sed -n '/^[ ]*datarootdir[ ]*:*=/p' \
+ "$ac_tmp/out"`; test -z "$ac_out"; } &&
+ { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: $ac_file contains a reference to the variable \`datarootdir'
+which seems to be undefined. Please make sure it is defined" >&5
+$as_echo "$as_me: WARNING: $ac_file contains a reference to the variable \`datarootdir'
+which seems to be undefined. Please make sure it is defined" >&2;}
+
+ rm -f "$ac_tmp/stdin"
+ case $ac_file in
+ -) cat "$ac_tmp/out" && rm -f "$ac_tmp/out";;
+ *) rm -f "$ac_file" && mv "$ac_tmp/out" "$ac_file";;
+ esac \
+ || as_fn_error $? "could not create $ac_file" "$LINENO" 5
+ ;;
+
+
+
+ esac
+
+done # for ac_tag
+
+
+as_fn_exit 0
+_ACEOF
+ac_clean_files=$ac_clean_files_save
+
+test $ac_write_fail = 0 ||
+ as_fn_error $? "write failure creating $CONFIG_STATUS" "$LINENO" 5
+
+
+# configure is writing to config.log, and then calls config.status.
+# config.status does its own redirection, appending to config.log.
+# Unfortunately, on DOS this fails, as config.log is still kept open
+# by configure, so config.status won't be able to write to it; its
+# output is simply discarded. So we exec the FD to /dev/null,
+# effectively closing config.log, so it can be properly (re)opened and
+# appended to by config.status. When coming back to configure, we
+# need to make the FD available again.
+if test "$no_create" != yes; then
+ ac_cs_success=:
+ ac_config_status_args=
+ test "$silent" = yes &&
+ ac_config_status_args="$ac_config_status_args --quiet"
+ exec 5>/dev/null
+ $SHELL $CONFIG_STATUS $ac_config_status_args || ac_cs_success=false
+ exec 5>>config.log
+ # Use ||, not &&, to avoid exiting from the if with $? = 1, which
+ # would make configure fail if this is the last instruction.
+ $ac_cs_success || as_fn_exit 1
+fi
+if test -n "$ac_unrecognized_opts" && test "$enable_option_checking" != no; then
+ { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: unrecognized options: $ac_unrecognized_opts" >&5
+$as_echo "$as_me: WARNING: unrecognized options: $ac_unrecognized_opts" >&2;}
+fi
+
diff --git a/teximpatient/autom4te.cache/requests b/teximpatient/autom4te.cache/requests
new file mode 100644
index 0000000..ec0f9d3
--- /dev/null
+++ b/teximpatient/autom4te.cache/requests
@@ -0,0 +1,79 @@
+# This file was generated.
+# It contains the lists of macros which have been traced.
+# It can be safely removed.
+
+@request = (
+ bless( [
+ '0',
+ 1,
+ [
+ '/usr/share/autoconf'
+ ],
+ [
+ '/usr/share/autoconf/autoconf/autoconf.m4f',
+ 'configure.ac'
+ ],
+ {
+ 'AH_OUTPUT' => 1,
+ 'LT_SUPPORTED_TAG' => 1,
+ 'LT_INIT' => 1,
+ 'AM_AUTOMAKE_VERSION' => 1,
+ 'AM_EXTRA_RECURSIVE_TARGETS' => 1,
+ 'AC_FC_PP_DEFINE' => 1,
+ 'AM_POT_TOOLS' => 1,
+ 'include' => 1,
+ 'm4_pattern_forbid' => 1,
+ 'AC_CONFIG_FILES' => 1,
+ 'AC_REQUIRE_AUX_FILE' => 1,
+ 'AM_NLS' => 1,
+ '_LT_AC_TAGCONFIG' => 1,
+ 'AM_PROG_MOC' => 1,
+ 'AC_INIT' => 1,
+ 'AC_FC_PP_SRCEXT' => 1,
+ 'AM_PROG_AR' => 1,
+ 'AM_GNU_GETTEXT_INTL_SUBDIR' => 1,
+ 'AC_FC_FREEFORM' => 1,
+ 'AM_XGETTEXT_OPTION' => 1,
+ 'AC_SUBST_TRACE' => 1,
+ '_AM_SUBST_NOTMAKE' => 1,
+ 'AC_CANONICAL_HOST' => 1,
+ '_AM_COND_ELSE' => 1,
+ 'AC_DEFINE_TRACE_LITERAL' => 1,
+ '_AM_MAKEFILE_INCLUDE' => 1,
+ 'AM_MAKEFILE_INCLUDE' => 1,
+ 'AM_PROG_CXX_C_O' => 1,
+ 'AC_CONFIG_AUX_DIR' => 1,
+ 'AM_SILENT_RULES' => 1,
+ 'AM_PROG_MKDIR_P' => 1,
+ 'AM_PATH_GUILE' => 1,
+ 'AC_CONFIG_SUBDIRS' => 1,
+ 'AM_CONDITIONAL' => 1,
+ 'AM_PROG_F77_C_O' => 1,
+ 'AC_PROG_LIBTOOL' => 1,
+ 'AC_CONFIG_HEADERS' => 1,
+ 'AM_PROG_FC_C_O' => 1,
+ 'm4_pattern_allow' => 1,
+ 'm4_sinclude' => 1,
+ 'AC_CONFIG_LIBOBJ_DIR' => 1,
+ 'sinclude' => 1,
+ 'AM_MAINTAINER_MODE' => 1,
+ 'AM_INIT_AUTOMAKE' => 1,
+ 'm4_include' => 1,
+ '_m4_warn' => 1,
+ 'LT_CONFIG_LTDL_DIR' => 1,
+ 'AM_PROG_CC_C_O' => 1,
+ 'AC_CANONICAL_BUILD' => 1,
+ 'AC_FC_SRCEXT' => 1,
+ 'AM_ENABLE_MULTILIB' => 1,
+ 'AC_CANONICAL_SYSTEM' => 1,
+ '_AM_COND_ENDIF' => 1,
+ 'AC_CONFIG_LINKS' => 1,
+ 'AC_LIBSOURCE' => 1,
+ '_AM_COND_IF' => 1,
+ 'AC_CANONICAL_TARGET' => 1,
+ 'AM_GNU_GETTEXT' => 1,
+ 'AC_SUBST' => 1
+ }
+ ], 'Autom4te::Request' )
+ );
+
diff --git a/teximpatient/autom4te.cache/traces.0 b/teximpatient/autom4te.cache/traces.0
new file mode 100644
index 0000000..cae9980
--- /dev/null
+++ b/teximpatient/autom4te.cache/traces.0
@@ -0,0 +1,192 @@
+m4trace:configure.ac:5: -1- AC_INIT([teximpatient], [2.4], [impatient@tug.org])
+m4trace:configure.ac:5: -1- m4_pattern_forbid([^_?A[CHUM]_])
+m4trace:configure.ac:5: -1- m4_pattern_forbid([_AC_])
+m4trace:configure.ac:5: -1- m4_pattern_forbid([^LIBOBJS$], [do not use LIBOBJS directly, use AC_LIBOBJ (see section `AC_LIBOBJ vs LIBOBJS'])
+m4trace:configure.ac:5: -1- m4_pattern_allow([^AS_FLAGS$])
+m4trace:configure.ac:5: -1- m4_pattern_forbid([^_?m4_])
+m4trace:configure.ac:5: -1- m4_pattern_forbid([^dnl$])
+m4trace:configure.ac:5: -1- m4_pattern_forbid([^_?AS_])
+m4trace:configure.ac:5: -1- AC_SUBST([SHELL])
+m4trace:configure.ac:5: -1- AC_SUBST_TRACE([SHELL])
+m4trace:configure.ac:5: -1- m4_pattern_allow([^SHELL$])
+m4trace:configure.ac:5: -1- AC_SUBST([PATH_SEPARATOR])
+m4trace:configure.ac:5: -1- AC_SUBST_TRACE([PATH_SEPARATOR])
+m4trace:configure.ac:5: -1- m4_pattern_allow([^PATH_SEPARATOR$])
+m4trace:configure.ac:5: -1- AC_SUBST([PACKAGE_NAME], [m4_ifdef([AC_PACKAGE_NAME], ['AC_PACKAGE_NAME'])])
+m4trace:configure.ac:5: -1- AC_SUBST_TRACE([PACKAGE_NAME])
+m4trace:configure.ac:5: -1- m4_pattern_allow([^PACKAGE_NAME$])
+m4trace:configure.ac:5: -1- AC_SUBST([PACKAGE_TARNAME], [m4_ifdef([AC_PACKAGE_TARNAME], ['AC_PACKAGE_TARNAME'])])
+m4trace:configure.ac:5: -1- AC_SUBST_TRACE([PACKAGE_TARNAME])
+m4trace:configure.ac:5: -1- m4_pattern_allow([^PACKAGE_TARNAME$])
+m4trace:configure.ac:5: -1- AC_SUBST([PACKAGE_VERSION], [m4_ifdef([AC_PACKAGE_VERSION], ['AC_PACKAGE_VERSION'])])
+m4trace:configure.ac:5: -1- AC_SUBST_TRACE([PACKAGE_VERSION])
+m4trace:configure.ac:5: -1- m4_pattern_allow([^PACKAGE_VERSION$])
+m4trace:configure.ac:5: -1- AC_SUBST([PACKAGE_STRING], [m4_ifdef([AC_PACKAGE_STRING], ['AC_PACKAGE_STRING'])])
+m4trace:configure.ac:5: -1- AC_SUBST_TRACE([PACKAGE_STRING])
+m4trace:configure.ac:5: -1- m4_pattern_allow([^PACKAGE_STRING$])
+m4trace:configure.ac:5: -1- AC_SUBST([PACKAGE_BUGREPORT], [m4_ifdef([AC_PACKAGE_BUGREPORT], ['AC_PACKAGE_BUGREPORT'])])
+m4trace:configure.ac:5: -1- AC_SUBST_TRACE([PACKAGE_BUGREPORT])
+m4trace:configure.ac:5: -1- m4_pattern_allow([^PACKAGE_BUGREPORT$])
+m4trace:configure.ac:5: -1- AC_SUBST([PACKAGE_URL], [m4_ifdef([AC_PACKAGE_URL], ['AC_PACKAGE_URL'])])
+m4trace:configure.ac:5: -1- AC_SUBST_TRACE([PACKAGE_URL])
+m4trace:configure.ac:5: -1- m4_pattern_allow([^PACKAGE_URL$])
+m4trace:configure.ac:5: -1- AC_SUBST([exec_prefix], [NONE])
+m4trace:configure.ac:5: -1- AC_SUBST_TRACE([exec_prefix])
+m4trace:configure.ac:5: -1- m4_pattern_allow([^exec_prefix$])
+m4trace:configure.ac:5: -1- AC_SUBST([prefix], [NONE])
+m4trace:configure.ac:5: -1- AC_SUBST_TRACE([prefix])
+m4trace:configure.ac:5: -1- m4_pattern_allow([^prefix$])
+m4trace:configure.ac:5: -1- AC_SUBST([program_transform_name], [s,x,x,])
+m4trace:configure.ac:5: -1- AC_SUBST_TRACE([program_transform_name])
+m4trace:configure.ac:5: -1- m4_pattern_allow([^program_transform_name$])
+m4trace:configure.ac:5: -1- AC_SUBST([bindir], ['${exec_prefix}/bin'])
+m4trace:configure.ac:5: -1- AC_SUBST_TRACE([bindir])
+m4trace:configure.ac:5: -1- m4_pattern_allow([^bindir$])
+m4trace:configure.ac:5: -1- AC_SUBST([sbindir], ['${exec_prefix}/sbin'])
+m4trace:configure.ac:5: -1- AC_SUBST_TRACE([sbindir])
+m4trace:configure.ac:5: -1- m4_pattern_allow([^sbindir$])
+m4trace:configure.ac:5: -1- AC_SUBST([libexecdir], ['${exec_prefix}/libexec'])
+m4trace:configure.ac:5: -1- AC_SUBST_TRACE([libexecdir])
+m4trace:configure.ac:5: -1- m4_pattern_allow([^libexecdir$])
+m4trace:configure.ac:5: -1- AC_SUBST([datarootdir], ['${prefix}/share'])
+m4trace:configure.ac:5: -1- AC_SUBST_TRACE([datarootdir])
+m4trace:configure.ac:5: -1- m4_pattern_allow([^datarootdir$])
+m4trace:configure.ac:5: -1- AC_SUBST([datadir], ['${datarootdir}'])
+m4trace:configure.ac:5: -1- AC_SUBST_TRACE([datadir])
+m4trace:configure.ac:5: -1- m4_pattern_allow([^datadir$])
+m4trace:configure.ac:5: -1- AC_SUBST([sysconfdir], ['${prefix}/etc'])
+m4trace:configure.ac:5: -1- AC_SUBST_TRACE([sysconfdir])
+m4trace:configure.ac:5: -1- m4_pattern_allow([^sysconfdir$])
+m4trace:configure.ac:5: -1- AC_SUBST([sharedstatedir], ['${prefix}/com'])
+m4trace:configure.ac:5: -1- AC_SUBST_TRACE([sharedstatedir])
+m4trace:configure.ac:5: -1- m4_pattern_allow([^sharedstatedir$])
+m4trace:configure.ac:5: -1- AC_SUBST([localstatedir], ['${prefix}/var'])
+m4trace:configure.ac:5: -1- AC_SUBST_TRACE([localstatedir])
+m4trace:configure.ac:5: -1- m4_pattern_allow([^localstatedir$])
+m4trace:configure.ac:5: -1- AC_SUBST([includedir], ['${prefix}/include'])
+m4trace:configure.ac:5: -1- AC_SUBST_TRACE([includedir])
+m4trace:configure.ac:5: -1- m4_pattern_allow([^includedir$])
+m4trace:configure.ac:5: -1- AC_SUBST([oldincludedir], ['/usr/include'])
+m4trace:configure.ac:5: -1- AC_SUBST_TRACE([oldincludedir])
+m4trace:configure.ac:5: -1- m4_pattern_allow([^oldincludedir$])
+m4trace:configure.ac:5: -1- AC_SUBST([docdir], [m4_ifset([AC_PACKAGE_TARNAME],
+ ['${datarootdir}/doc/${PACKAGE_TARNAME}'],
+ ['${datarootdir}/doc/${PACKAGE}'])])
+m4trace:configure.ac:5: -1- AC_SUBST_TRACE([docdir])
+m4trace:configure.ac:5: -1- m4_pattern_allow([^docdir$])
+m4trace:configure.ac:5: -1- AC_SUBST([infodir], ['${datarootdir}/info'])
+m4trace:configure.ac:5: -1- AC_SUBST_TRACE([infodir])
+m4trace:configure.ac:5: -1- m4_pattern_allow([^infodir$])
+m4trace:configure.ac:5: -1- AC_SUBST([htmldir], ['${docdir}'])
+m4trace:configure.ac:5: -1- AC_SUBST_TRACE([htmldir])
+m4trace:configure.ac:5: -1- m4_pattern_allow([^htmldir$])
+m4trace:configure.ac:5: -1- AC_SUBST([dvidir], ['${docdir}'])
+m4trace:configure.ac:5: -1- AC_SUBST_TRACE([dvidir])
+m4trace:configure.ac:5: -1- m4_pattern_allow([^dvidir$])
+m4trace:configure.ac:5: -1- AC_SUBST([pdfdir], ['${docdir}'])
+m4trace:configure.ac:5: -1- AC_SUBST_TRACE([pdfdir])
+m4trace:configure.ac:5: -1- m4_pattern_allow([^pdfdir$])
+m4trace:configure.ac:5: -1- AC_SUBST([psdir], ['${docdir}'])
+m4trace:configure.ac:5: -1- AC_SUBST_TRACE([psdir])
+m4trace:configure.ac:5: -1- m4_pattern_allow([^psdir$])
+m4trace:configure.ac:5: -1- AC_SUBST([libdir], ['${exec_prefix}/lib'])
+m4trace:configure.ac:5: -1- AC_SUBST_TRACE([libdir])
+m4trace:configure.ac:5: -1- m4_pattern_allow([^libdir$])
+m4trace:configure.ac:5: -1- AC_SUBST([localedir], ['${datarootdir}/locale'])
+m4trace:configure.ac:5: -1- AC_SUBST_TRACE([localedir])
+m4trace:configure.ac:5: -1- m4_pattern_allow([^localedir$])
+m4trace:configure.ac:5: -1- AC_SUBST([mandir], ['${datarootdir}/man'])
+m4trace:configure.ac:5: -1- AC_SUBST_TRACE([mandir])
+m4trace:configure.ac:5: -1- m4_pattern_allow([^mandir$])
+m4trace:configure.ac:5: -1- AC_DEFINE_TRACE_LITERAL([PACKAGE_NAME])
+m4trace:configure.ac:5: -1- m4_pattern_allow([^PACKAGE_NAME$])
+m4trace:configure.ac:5: -1- AH_OUTPUT([PACKAGE_NAME], [/* Define to the full name of this package. */
+@%:@undef PACKAGE_NAME])
+m4trace:configure.ac:5: -1- AC_DEFINE_TRACE_LITERAL([PACKAGE_TARNAME])
+m4trace:configure.ac:5: -1- m4_pattern_allow([^PACKAGE_TARNAME$])
+m4trace:configure.ac:5: -1- AH_OUTPUT([PACKAGE_TARNAME], [/* Define to the one symbol short name of this package. */
+@%:@undef PACKAGE_TARNAME])
+m4trace:configure.ac:5: -1- AC_DEFINE_TRACE_LITERAL([PACKAGE_VERSION])
+m4trace:configure.ac:5: -1- m4_pattern_allow([^PACKAGE_VERSION$])
+m4trace:configure.ac:5: -1- AH_OUTPUT([PACKAGE_VERSION], [/* Define to the version of this package. */
+@%:@undef PACKAGE_VERSION])
+m4trace:configure.ac:5: -1- AC_DEFINE_TRACE_LITERAL([PACKAGE_STRING])
+m4trace:configure.ac:5: -1- m4_pattern_allow([^PACKAGE_STRING$])
+m4trace:configure.ac:5: -1- AH_OUTPUT([PACKAGE_STRING], [/* Define to the full name and version of this package. */
+@%:@undef PACKAGE_STRING])
+m4trace:configure.ac:5: -1- AC_DEFINE_TRACE_LITERAL([PACKAGE_BUGREPORT])
+m4trace:configure.ac:5: -1- m4_pattern_allow([^PACKAGE_BUGREPORT$])
+m4trace:configure.ac:5: -1- AH_OUTPUT([PACKAGE_BUGREPORT], [/* Define to the address where bug reports for this package should be sent. */
+@%:@undef PACKAGE_BUGREPORT])
+m4trace:configure.ac:5: -1- AC_DEFINE_TRACE_LITERAL([PACKAGE_URL])
+m4trace:configure.ac:5: -1- m4_pattern_allow([^PACKAGE_URL$])
+m4trace:configure.ac:5: -1- AH_OUTPUT([PACKAGE_URL], [/* Define to the home page for this package. */
+@%:@undef PACKAGE_URL])
+m4trace:configure.ac:5: -1- AC_SUBST([DEFS])
+m4trace:configure.ac:5: -1- AC_SUBST_TRACE([DEFS])
+m4trace:configure.ac:5: -1- m4_pattern_allow([^DEFS$])
+m4trace:configure.ac:5: -1- AC_SUBST([ECHO_C])
+m4trace:configure.ac:5: -1- AC_SUBST_TRACE([ECHO_C])
+m4trace:configure.ac:5: -1- m4_pattern_allow([^ECHO_C$])
+m4trace:configure.ac:5: -1- AC_SUBST([ECHO_N])
+m4trace:configure.ac:5: -1- AC_SUBST_TRACE([ECHO_N])
+m4trace:configure.ac:5: -1- m4_pattern_allow([^ECHO_N$])
+m4trace:configure.ac:5: -1- AC_SUBST([ECHO_T])
+m4trace:configure.ac:5: -1- AC_SUBST_TRACE([ECHO_T])
+m4trace:configure.ac:5: -1- m4_pattern_allow([^ECHO_T$])
+m4trace:configure.ac:5: -1- AC_SUBST([LIBS])
+m4trace:configure.ac:5: -1- AC_SUBST_TRACE([LIBS])
+m4trace:configure.ac:5: -1- m4_pattern_allow([^LIBS$])
+m4trace:configure.ac:5: -1- AC_SUBST([build_alias])
+m4trace:configure.ac:5: -1- AC_SUBST_TRACE([build_alias])
+m4trace:configure.ac:5: -1- m4_pattern_allow([^build_alias$])
+m4trace:configure.ac:5: -1- AC_SUBST([host_alias])
+m4trace:configure.ac:5: -1- AC_SUBST_TRACE([host_alias])
+m4trace:configure.ac:5: -1- m4_pattern_allow([^host_alias$])
+m4trace:configure.ac:5: -1- AC_SUBST([target_alias])
+m4trace:configure.ac:5: -1- AC_SUBST_TRACE([target_alias])
+m4trace:configure.ac:5: -1- m4_pattern_allow([^target_alias$])
+m4trace:configure.ac:8: -1- AC_REQUIRE_AUX_FILE([install-sh])
+m4trace:configure.ac:8: -1- AC_SUBST([INSTALL_PROGRAM])
+m4trace:configure.ac:8: -1- AC_SUBST_TRACE([INSTALL_PROGRAM])
+m4trace:configure.ac:8: -1- m4_pattern_allow([^INSTALL_PROGRAM$])
+m4trace:configure.ac:8: -1- AC_SUBST([INSTALL_SCRIPT])
+m4trace:configure.ac:8: -1- AC_SUBST_TRACE([INSTALL_SCRIPT])
+m4trace:configure.ac:8: -1- m4_pattern_allow([^INSTALL_SCRIPT$])
+m4trace:configure.ac:8: -1- AC_SUBST([INSTALL_DATA])
+m4trace:configure.ac:8: -1- AC_SUBST_TRACE([INSTALL_DATA])
+m4trace:configure.ac:8: -1- m4_pattern_allow([^INSTALL_DATA$])
+m4trace:configure.ac:9: -1- AC_REQUIRE_AUX_FILE([install-sh])
+m4trace:configure.ac:9: -1- AC_SUBST([MKDIR_P])
+m4trace:configure.ac:9: -1- AC_SUBST_TRACE([MKDIR_P])
+m4trace:configure.ac:9: -1- m4_pattern_allow([^MKDIR_P$])
+m4trace:configure.ac:10: -1- AC_SUBST([ICON])
+m4trace:configure.ac:10: -1- AC_SUBST_TRACE([ICON])
+m4trace:configure.ac:10: -1- m4_pattern_allow([^ICON$])
+m4trace:configure.ac:11: -1- AC_SUBST([TEX])
+m4trace:configure.ac:11: -1- AC_SUBST_TRACE([TEX])
+m4trace:configure.ac:11: -1- m4_pattern_allow([^TEX$])
+m4trace:configure.ac:12: -1- AC_SUBST([PDFTEX])
+m4trace:configure.ac:12: -1- AC_SUBST_TRACE([PDFTEX])
+m4trace:configure.ac:12: -1- m4_pattern_allow([^PDFTEX$])
+m4trace:configure.ac:13: -1- AC_SUBST([HTTEX])
+m4trace:configure.ac:13: -1- AC_SUBST_TRACE([HTTEX])
+m4trace:configure.ac:13: -1- m4_pattern_allow([^HTTEX$])
+m4trace:configure.ac:15: -1- AC_CONFIG_FILES([Makefile])
+m4trace:configure.ac:16: -1- AC_SUBST([LIB@&t@OBJS], [$ac_libobjs])
+m4trace:configure.ac:16: -1- AC_SUBST_TRACE([LIB@&t@OBJS])
+m4trace:configure.ac:16: -1- m4_pattern_allow([^LIB@&t@OBJS$])
+m4trace:configure.ac:16: -1- AC_SUBST([LTLIBOBJS], [$ac_ltlibobjs])
+m4trace:configure.ac:16: -1- AC_SUBST_TRACE([LTLIBOBJS])
+m4trace:configure.ac:16: -1- m4_pattern_allow([^LTLIBOBJS$])
+m4trace:configure.ac:16: -1- AC_SUBST_TRACE([top_builddir])
+m4trace:configure.ac:16: -1- AC_SUBST_TRACE([top_build_prefix])
+m4trace:configure.ac:16: -1- AC_SUBST_TRACE([srcdir])
+m4trace:configure.ac:16: -1- AC_SUBST_TRACE([abs_srcdir])
+m4trace:configure.ac:16: -1- AC_SUBST_TRACE([top_srcdir])
+m4trace:configure.ac:16: -1- AC_SUBST_TRACE([abs_top_srcdir])
+m4trace:configure.ac:16: -1- AC_SUBST_TRACE([builddir])
+m4trace:configure.ac:16: -1- AC_SUBST_TRACE([abs_builddir])
+m4trace:configure.ac:16: -1- AC_SUBST_TRACE([abs_top_builddir])
+m4trace:configure.ac:16: -1- AC_SUBST_TRACE([INSTALL])
+m4trace:configure.ac:16: -1- AC_SUBST_TRACE([MKDIR_P])
diff --git a/teximpatient/book.aux b/teximpatient/book.aux
new file mode 100644
index 0000000..87193d1
--- /dev/null
+++ b/teximpatient/book.aux
@@ -0,0 +1,1006 @@
+\gdef\usebook_C{1}
+\gdef\cmddesc_{3}
+\gdef\usingtex_C{2}
+\gdef\infiles_{9}
+\gdef\@backslash_{10}
+\gdef\arg1_{11}
+\gdef\introparms_{12}
+\gdef\spaces_{12}
+\gdef\comments_{13}
+\gdef\periodspacing_{13}
+\gdef\bracegroup_{15}
+\gdef\mathform_{16}
+\gdef\newtex_{18}
+\gdef\resources_{18}
+\gdef\examples_C{3}
+\gdef\xmphead_{21}
+\gdef\palatino_{34}
+\gdef\concepts_C{4}
+\gdef\active+character_{43}
+\gdef\alignment_{44}
+\gdef\@and_{44}
+\gdef\tabbedexample_{44}
+\gdef\@asharp_{45}
+\gdef\halignexample_{46}
+\gdef\_anatomy_{46}
+\gdef\argument_{48}
+\gdef\ASCII_{49}
+\gdef\assignment_{49}
+\gdef\badness_{50}
+\gdef\baseline_{51}
+\gdef\box_{51}
+\gdef\category+code_{53}
+\gdef\catcodes_{53}
+\gdef\character_{55}
+\gdef\twocarets_{55}
+\gdef\hexchars_{55}
+\gdef\class_{56}
+\gdef\command_{56}
+\gdef\conditional+test_{57}
+\gdef\control+sequence_{57}
+\gdef\control+symbol_{58}
+\gdef\control+word_{58}
+\gdef\decimal+constant_{58}
+\gdef\delimiter_{58}
+\gdef\demerits_{60}
+\gdef\depth_{60}
+\gdef\dimension_{60}
+\gdef\dimdefs_{60}
+\gdef\display+math_{61}
+\gdef\escape+character_{61}
+\gdef\family_{62}
+\gdef\file_{62}
+\gdef\file+name_{64}
+\gdef\font_{65}
+\gdef\shape_{66}
+\gdef\footer_{66}
+\gdef\format+file_{66}
+\gdef\global_{66}
+\gdef\glue_{67}
+\gdef\group_{69}
+\gdef\hbox_{70}
+\gdef\header_{70}
+\gdef\height_{70}
+\gdef\horizontal+list_{70}
+\gdef\horizontal+mode_{70}
+\gdef\hyphenation_{71}
+\gdef\input+stream_{71}
+\gdef\insertion_{71}
+\gdef\interline+glue_{72}
+\gdef\item_{72}
+\gdef\justified+text_{72}
+\gdef\kern_{72}
+\gdef\leaders_{73}
+\gdef\ligature_{74}
+\gdef\line+break_{75}
+\gdef\list_{76}
+\gdef\log+file_{76}
+\gdef\macro_{76}
+\gdef\@msharp_{77}
+\gdef\magnification_{79}
+\gdef\margins_{80}
+\gdef\mark_{80}
+\gdef\math+mode_{81}
+\gdef\mathcode_{81}
+\gdef\mathematical+unit_{83}
+\gdef\mode_{83}
+\gdef\muglue_{83}
+\gdef\number_{83}
+\gdef\ordinary+mode_{84}
+\gdef\outer_{84}
+\gdef\output+routine_{85}
+\gdef\output+stream_{85}
+\gdef\page_{85}
+\gdef\page+break_{86}
+\gdef\page+builder_{87}
+\gdef\page+layout_{87}
+\gdef\paragraph_{88}
+\gdef\parameter_{89}
+\gdef\penalty_{90}
+\gdef\_plainTeX_{90}
+\gdef\primitive_{90}
+\gdef\reference+point_{90}
+\gdef\register_{91}
+\gdef\restricted+mode_{92}
+\gdef\rule_{92}
+\gdef\script+size_{93}
+\gdef\scriptscript+size_{93}
+\gdef\shrink_{93}
+\gdef\space_{93}
+\gdef\stretch_{94}
+\gdef\strut_{94}
+\gdef\style_{94}
+\gdef\_TeXMeX_{95}
+\gdef\text+math_{95}
+\gdef\text+size_{95}
+\gdef\token_{95}
+\gdef\unit+of+measure_{95}
+\gdef\vbox_{96}
+\gdef\vertical+list_{96}
+\gdef\vertical+mode_{96}
+\gdef\whatsit_{97}
+\gdef\width_{97}
+\gdef\paras_C{5}
+\gdef\fornlets_{99}
+\gdef\_AA_{99}
+\gdef\_aa_{99}
+\gdef\_AE_{99}
+\gdef\_ae_{99}
+\gdef\_L_{99}
+\gdef\_l_{99}
+\gdef\_O_{99}
+\gdef\_o_{99}
+\gdef\_OE_{99}
+\gdef\_oe_{99}
+\gdef\_ss_{99}
+\gdef\_@pound_{100}
+\gdef\_@bucks_{100}
+\gdef\_@percent_{100}
+\gdef\_@and_{100}
+\gdef\_@underscore_{100}
+\gdef\_lq_{100}
+\gdef\_rq_{100}
+\gdef\_dag_{100}
+\gdef\_ddag_{100}
+\gdef\_copyright_{100}
+\gdef\_P_{100}
+\gdef\_S_{100}
+\gdef\_TeX_{100}
+\gdef\_dots_{101}
+\gdef\_char_{101}
+\gdef\_mathchar_{101}
+\gdef\accents_{102}
+\gdef\_@prime_{102}
+\gdef\_@dot_{102}
+\gdef\_@equal_{102}
+\gdef\_@hat_{102}
+\gdef\_@lquote_{102}
+\gdef\_@quote_{102}
+\gdef\_@not_{102}
+\gdef\_c_{102}
+\gdef\_d_{102}
+\gdef\_H_{102}
+\gdef\_t_{102}
+\gdef\_u_{102}
+\gdef\_v_{102}
+\gdef\_i_{102}
+\gdef\_j_{102}
+\gdef\_accent_{102}
+\gdef\_noboundary_{103}
+\gdef\selfont_{104}
+\gdef\_fivebf_{104}
+\gdef\_fivei_{104}
+\gdef\_fiverm_{104}
+\gdef\_fivesy_{104}
+\gdef\_sevenbf_{104}
+\gdef\_seveni_{104}
+\gdef\_sevenrm_{104}
+\gdef\_sevensy_{104}
+\gdef\_tenbf_{104}
+\gdef\_tenex_{104}
+\gdef\_teni_{104}
+\gdef\_tenrm_{104}
+\gdef\_tensl_{104}
+\gdef\_tensy_{104}
+\gdef\_tenit_{104}
+\gdef\_tentt_{104}
+\gdef\_nullfont_{104}
+\gdef\seltype_{105}
+\gdef\_bf_{105}
+\gdef\_it_{105}
+\gdef\_rm_{105}
+\gdef\_sl_{105}
+\gdef\_tt_{105}
+\gdef\_lccode_{105}
+\gdef\_uccode_{105}
+\gdef\_lowercase_{106}
+\gdef\_uppercase_{106}
+\gdef\_@space_{106}
+\gdef\_space_{107}
+\gdef\@newline_{107}
+\gdef\@not_{107}
+\gdef\_@slash_{108}
+\gdef\_frenchspacing_{108}
+\gdef\_nonfrenchspacing_{108}
+\gdef\_obeyspaces_{109}
+\gdef\_spacefactor_{109}
+\gdef\_spaceskip_{109}
+\gdef\_xspaceskip_{109}
+\gdef\_sfcode_{109}
+\gdef\_centerline_{110}
+\gdef\_leftline_{110}
+\gdef\_rightline_{110}
+\gdef\_line_{111}
+\gdef\_llap_{111}
+\gdef\_rlap_{111}
+\gdef\_@par_{112}
+\gdef\_endgraf_{113}
+\gdef\_parfillskip_{113}
+\gdef\_indent_{113}
+\gdef\_noindent_{114}
+\gdef\_textindent_{114}
+\gdef\_parindent_{115}
+\gdef\_everypar_{115}
+\gdef\_hsize_{116}
+\gdef\_narrower_{116}
+\gdef\_leftskip_{117}
+\gdef\_rightskip_{117}
+\gdef\_raggedright_{118}
+\gdef\_ttraggedright_{118}
+\gdef\_hang_{119}
+\gdef\_hangafter_{119}
+\gdef\_hangindent_{119}
+\gdef\_parshape_{120}
+\gdef\_prevgraf_{122}
+\gdef\_vadjust_{122}
+\gdef\hbreak_{122}
+\gdef\hnobreak_{123}
+\gdef\hallowbreak_{123}
+\gdef\hpenalty_{123}
+\gdef\_obeylines_{124}
+\gdef\_slash_{124}
+\gdef\_pretolerance_{125}
+\gdef\_tolerance_{125}
+\gdef\_emergencystretch_{126}
+\gdef\_looseness_{126}
+\gdef\_linepenalty_{127}
+\gdef\_adjdemerits_{127}
+\gdef\_exhyphenpenalty_{127}
+\gdef\_hyphenpenalty_{127}
+\gdef\_doublehyphendemerits_{127}
+\gdef\_finalhyphendemerits_{128}
+\gdef\_binoppenalty_{128}
+\gdef\_relpenalty_{128}
+\gdef\_@minus_{128}
+\gdef\_discretionary_{129}
+\gdef\_hyphenation_{129}
+\gdef\_uchyph_{130}
+\gdef\_showhyphens_{130}
+\gdef\_language_{130}
+\gdef\_setlanguage_{130}
+\gdef\_lefthyphenmin_{130}
+\gdef\_righthyphenmin_{130}
+\gdef\_hyphenchar_{131}
+\gdef\_defaulthyphenchar_{131}
+\gdef\_@beginsection_{131}
+\gdef\_item_{132}
+\gdef\_itemitem_{132}
+\gdef\_@proclaim_{133}
+\gdef\pages_C{6}
+\gdef\_baselineskip_{135}
+\gdef\_lineskiplimit_{135}
+\gdef\_lineskip_{135}
+\gdef\_prevdepth_{136}
+\gdef\_normalbaselineskip_{136}
+\gdef\_normallineskiplimit_{136}
+\gdef\_normallineskip_{136}
+\gdef\_normalbaselines_{136}
+\gdef\_offinterlineskip_{137}
+\gdef\_nointerlineskip_{137}
+\gdef\_openup_{137}
+\gdef\vbreak_{138}
+\gdef\vnobreak_{138}
+\gdef\vallowbreak_{138}
+\gdef\vpenalty_{138}
+\gdef\_goodbreak_{139}
+\gdef\_smallbreak_{139}
+\gdef\_medbreak_{139}
+\gdef\_bigbreak_{139}
+\gdef\_eject_{139}
+\gdef\_supereject_{139}
+\gdef\_filbreak_{139}
+\gdef\_raggedbottom_{139}
+\gdef\_normalbottom_{139}
+\gdef\_interlinepenalty_{140}
+\gdef\_clubpenalty_{140}
+\gdef\_widowpenalty_{140}
+\gdef\_displaywidowpenalty_{140}
+\gdef\_predisplaypenalty_{140}
+\gdef\_postdisplaypenalty_{140}
+\gdef\_brokenpenalty_{141}
+\gdef\_insertpenalties_{141}
+\gdef\_floatingpenalty_{141}
+\gdef\_pagegoal_{141}
+\gdef\_pagetotal_{141}
+\gdef\_pagedepth_{141}
+\gdef\_pageshrink_{142}
+\gdef\_pagestretch_{142}
+\gdef\_pagefilstretch_{142}
+\gdef\_pagefillstretch_{142}
+\gdef\_pagefilllstretch_{142}
+\gdef\_vsize_{142}
+\gdef\_hoffset_{142}
+\gdef\_voffset_{142}
+\gdef\_topskip_{143}
+\gdef\_parskip_{143}
+\gdef\_maxdepth_{143}
+\gdef\_pageno_{144}
+\gdef\_advancepageno_{144}
+\gdef\_nopagenumbers_{144}
+\gdef\_folio_{145}
+\gdef\_headline_{145}
+\gdef\_footline_{145}
+\gdef\_mark_{146}
+\gdef\_firstmark_{146}
+\gdef\_botmark_{146}
+\gdef\_topmark_{146}
+\gdef\_splitfirstmark_{146}
+\gdef\_splitbotmark_{146}
+\gdef\_footnote_{147}
+\gdef\_vfootnote_{147}
+\gdef\_topinsert_{148}
+\gdef\_midinsert_{148}
+\gdef\_pageinsert_{148}
+\gdef\_endinsert_{149}
+\gdef\_insert_{149}
+\gdef\endofinsert_{150}
+\gdef\_output_{150}
+\gdef\_plainoutput_{150}
+\gdef\_shipout_{150}
+\gdef\_deadcycles_{150}
+\gdef\_maxdeadcycles_{150}
+\gdef\_outputpenalty_{151}
+\gdef\_holdinginserts_{151}
+\gdef\_vsplit_{151}
+\gdef\_splitmaxdepth_{152}
+\gdef\_splittopskip_{152}
+\gdef\hvmodes_C{7}
+\gdef\_thinspace_{155}
+\gdef\_negthinspace_{155}
+\gdef\_enspace_{156}
+\gdef\_enskip_{156}
+\gdef\_quad_{156}
+\gdef\_qquad_{156}
+\gdef\_smallskip_{156}
+\gdef\_medskip_{156}
+\gdef\_bigskip_{156}
+\gdef\_smallskipamount_{157}
+\gdef\_medskipamount_{157}
+\gdef\_bigskipamount_{157}
+\gdef\_hskip_{157}
+\gdef\_vskip_{157}
+\gdef\_hglue_{158}
+\gdef\_vglue_{158}
+\gdef\_topglue_{158}
+\gdef\_kern_{159}
+\gdef\_hfil_{159}
+\gdef\_hfill_{159}
+\gdef\_vfil_{159}
+\gdef\_vfill_{159}
+\gdef\_hss_{160}
+\gdef\_vss_{160}
+\gdef\_hfilneg_{161}
+\gdef\_vfilneg_{161}
+\gdef\_hbox_{162}
+\gdef\_vtop_{163}
+\gdef\_vbox_{163}
+\gdef\_boxmaxdepth_{165}
+\gdef\_underbar_{165}
+\gdef\_everyhbox_{166}
+\gdef\_everyvbox_{166}
+\gdef\_setbox_{166}
+\gdef\_box_{166}
+\gdef\_copy_{166}
+\gdef\_unhbox_{167}
+\gdef\_unvbox_{167}
+\gdef\_unhcopy_{167}
+\gdef\_unvcopy_{167}
+\gdef\_moveleft_{168}
+\gdef\_moveright_{168}
+\gdef\_lower_{168}
+\gdef\_raise_{168}
+\gdef\_ht_{169}
+\gdef\_dp_{169}
+\gdef\_wd_{169}
+\gdef\_strut_{169}
+\gdef\_mathstrut_{170}
+\gdef\_phantom_{170}
+\gdef\_hphantom_{171}
+\gdef\_vphantom_{171}
+\gdef\_smash_{171}
+\gdef\_null_{171}
+\gdef\_overfullrule_{172}
+\gdef\_hbadness_{172}
+\gdef\_vbadness_{172}
+\gdef\_badness_{172}
+\gdef\_hfuzz_{173}
+\gdef\_vfuzz_{173}
+\gdef\_lastkern_{173}
+\gdef\_lastskip_{173}
+\gdef\_lastpenalty_{173}
+\gdef\_lastbox_{173}
+\gdef\_unkern_{174}
+\gdef\_unskip_{174}
+\gdef\_unpenalty_{174}
+\gdef\_hrule_{174}
+\gdef\_vrule_{174}
+\gdef\_leaders_{176}
+\gdef\_cleaders_{176}
+\gdef\_xleaders_{176}
+\gdef\_dotfill_{177}
+\gdef\_hrulefill_{177}
+\gdef\_leftarrowfill_{177}
+\gdef\_rightarrowfill_{177}
+\gdef\_@plus_{178}
+\gdef\_tabalign_{178}
+\gdef\_settabs_{178}
+\gdef\_cleartabs_{179}
+\gdef\_halign_{180}
+\gdef\@and_{180}
+\gdef\@pound_{180}
+\gdef\_valign_{181}
+\gdef\_ialign_{182}
+\gdef\_cr_{182}
+\gdef\_endline_{182}
+\gdef\_crcr_{182}
+\gdef\_omit_{183}
+\gdef\_span_{183}
+\gdef\_multispan_{184}
+\gdef\_noalign_{185}
+\gdef\_tabskip_{186}
+\gdef\_hidewidth_{186}
+\gdef\_everycr_{187}
+\gdef\math_C{8}
+\gdef\_alpha_{189}
+\gdef\_beta_{189}
+\gdef\_chi_{189}
+\gdef\_delta_{189}
+\gdef\_Delta_{189}
+\gdef\_epsilon_{189}
+\gdef\_varepsilon_{189}
+\gdef\_eta_{189}
+\gdef\_gamma_{189}
+\gdef\_Gamma_{189}
+\gdef\_iota_{189}
+\gdef\_kappa_{189}
+\gdef\_lambda_{189}
+\gdef\_Lambda_{189}
+\gdef\_mu_{189}
+\gdef\_nu_{189}
+\gdef\_omega_{189}
+\gdef\_Omega_{189}
+\gdef\_phi_{189}
+\gdef\_varphi_{189}
+\gdef\_Phi_{189}
+\gdef\_pi_{189}
+\gdef\_varpi_{189}
+\gdef\_Pi_{189}
+\gdef\_psi_{189}
+\gdef\_Psi_{189}
+\gdef\_rho_{189}
+\gdef\_varrho_{189}
+\gdef\_sigma_{189}
+\gdef\_varsigma_{189}
+\gdef\_Sigma_{189}
+\gdef\_tau_{189}
+\gdef\_theta_{189}
+\gdef\_vartheta_{189}
+\gdef\_Theta_{189}
+\gdef\_upsilon_{189}
+\gdef\_Upsilon_{189}
+\gdef\_xi_{189}
+\gdef\_Xi_{189}
+\gdef\_zeta_{189}
+\gdef\specsyms_{190}
+\gdef\_infty_{190}
+\gdef\_Re_{190}
+\gdef\_Im_{190}
+\gdef\_angle_{190}
+\gdef\_triangle_{190}
+\gdef\_backslash_{190}
+\gdef\_vert_{190}
+\gdef\_@bar_{190}
+\gdef\_Vert_{190}
+\gdef\_emptyset_{190}
+\gdef\_bot_{190}
+\gdef\_top_{190}
+\gdef\_exists_{190}
+\gdef\_forall_{190}
+\gdef\_hbar_{190}
+\gdef\_ell_{190}
+\gdef\_aleph_{190}
+\gdef\_imath_{190}
+\gdef\_jmath_{190}
+\gdef\_nabla_{190}
+\gdef\_neg_{190}
+\gdef\_lnot_{190}
+\gdef\@prime_{190}
+\gdef\_prime_{190}
+\gdef\_partial_{190}
+\gdef\_surd_{190}
+\gdef\_wp_{190}
+\gdef\_flat_{190}
+\gdef\_sharp_{190}
+\gdef\_natural_{190}
+\gdef\_clubsuit_{190}
+\gdef\_diamondsuit_{190}
+\gdef\_heartsuit_{190}
+\gdef\_spadesuit_{190}
+\gdef\binops_{191}
+\gdef\_vee_{191}
+\gdef\_wedge_{191}
+\gdef\_amalg_{191}
+\gdef\_cap_{191}
+\gdef\_cup_{191}
+\gdef\_uplus_{191}
+\gdef\_sqcap_{191}
+\gdef\_sqcup_{191}
+\gdef\_dagger_{191}
+\gdef\_ddagger_{191}
+\gdef\_land_{191}
+\gdef\_lor_{191}
+\gdef\_cdot_{191}
+\gdef\_diamond_{191}
+\gdef\_bullet_{191}
+\gdef\_circ_{191}
+\gdef\_bigcirc_{191}
+\gdef\_odot_{191}
+\gdef\_ominus_{191}
+\gdef\_oplus_{191}
+\gdef\_oslash_{191}
+\gdef\_otimes_{191}
+\gdef\_pm_{191}
+\gdef\_mp_{191}
+\gdef\_triangleleft_{191}
+\gdef\_triangleright_{191}
+\gdef\_bigtriangledown_{191}
+\gdef\_bigtriangleup_{191}
+\gdef\_ast_{191}
+\gdef\_star_{191}
+\gdef\_times_{191}
+\gdef\_div_{191}
+\gdef\_setminus_{191}
+\gdef\_wr_{191}
+\gdef\_@star_{192}
+\gdef\relations_{192}
+\gdef\_asymp_{192}
+\gdef\_cong_{192}
+\gdef\_dashv_{192}
+\gdef\_vdash_{192}
+\gdef\_perp_{192}
+\gdef\_mid_{192}
+\gdef\_parallel_{192}
+\gdef\_doteq_{192}
+\gdef\_equiv_{192}
+\gdef\_ge_{192}
+\gdef\_geq_{192}
+\gdef\_le_{192}
+\gdef\_leq_{192}
+\gdef\_gg_{192}
+\gdef\_ll_{192}
+\gdef\_models_{192}
+\gdef\_ne_{192}
+\gdef\_neq_{192}
+\gdef\_notin_{192}
+\gdef\_in_{192}
+\gdef\_ni_{192}
+\gdef\_owns_{192}
+\gdef\_prec_{192}
+\gdef\_preceq_{192}
+\gdef\_succ_{192}
+\gdef\_succeq_{192}
+\gdef\_bowtie_{192}
+\gdef\_propto_{192}
+\gdef\_approx_{192}
+\gdef\_sim_{192}
+\gdef\_simeq_{192}
+\gdef\_frown_{192}
+\gdef\_smile_{192}
+\gdef\_subset_{192}
+\gdef\_subseteq_{192}
+\gdef\_supset_{192}
+\gdef\_supseteq_{192}
+\gdef\_sqsubseteq_{192}
+\gdef\_sqsupseteq_{192}
+\gdef\_not_{193}
+\gdef\_lbrace_{193}
+\gdef\_@lbrace_{193}
+\gdef\_rbrace_{193}
+\gdef\_@rbrace_{193}
+\gdef\_lbrack_{193}
+\gdef\_rbrack_{193}
+\gdef\_langle_{193}
+\gdef\_rangle_{193}
+\gdef\_lceil_{193}
+\gdef\_rceil_{193}
+\gdef\_lfloor_{193}
+\gdef\_rfloor_{193}
+\gdef\arrows_{194}
+\gdef\_leftarrow_{194}
+\gdef\_gets_{194}
+\gdef\_Leftarrow_{194}
+\gdef\_rightarrow_{194}
+\gdef\_to_{194}
+\gdef\_Rightarrow_{194}
+\gdef\_leftrightarrow_{194}
+\gdef\_Leftrightarrow_{194}
+\gdef\_longleftarrow_{194}
+\gdef\_Longleftarrow_{194}
+\gdef\_longrightarrow_{194}
+\gdef\_Longrightarrow_{194}
+\gdef\_longleftrightarrow_{194}
+\gdef\_Longleftrightarrow_{194}
+\gdef\_iff_{194}
+\gdef\_hookleftarrow_{194}
+\gdef\_hookrightarrow_{194}
+\gdef\_leftharpoondown_{194}
+\gdef\_rightharpoondown_{194}
+\gdef\_leftharpoonup_{194}
+\gdef\_rightharpoonup_{194}
+\gdef\_rightleftharpoons_{194}
+\gdef\_mapsto_{194}
+\gdef\_longmapsto_{194}
+\gdef\_downarrow_{194}
+\gdef\_Downarrow_{194}
+\gdef\_uparrow_{194}
+\gdef\_Uparrow_{194}
+\gdef\_updownarrow_{194}
+\gdef\_Updownarrow_{194}
+\gdef\_nearrow_{194}
+\gdef\_searrow_{194}
+\gdef\_nwarrow_{194}
+\gdef\_swarrow_{194}
+\gdef\namedfns_{195}
+\gdef\_cos_{195}
+\gdef\_sin_{195}
+\gdef\_tan_{195}
+\gdef\_cot_{195}
+\gdef\_csc_{195}
+\gdef\_sec_{195}
+\gdef\_arccos_{195}
+\gdef\_arcsin_{195}
+\gdef\_arctan_{195}
+\gdef\_cosh_{195}
+\gdef\_coth_{195}
+\gdef\_sinh_{195}
+\gdef\_tanh_{195}
+\gdef\_det_{195}
+\gdef\_dim_{195}
+\gdef\_exp_{195}
+\gdef\_ln_{195}
+\gdef\_log_{195}
+\gdef\_lg_{195}
+\gdef\_arg_{195}
+\gdef\_deg_{195}
+\gdef\_gcd_{195}
+\gdef\_hom_{195}
+\gdef\_ker_{195}
+\gdef\_inf_{195}
+\gdef\_sup_{195}
+\gdef\_lim_{195}
+\gdef\_liminf_{195}
+\gdef\_limsup_{195}
+\gdef\_max_{195}
+\gdef\_min_{195}
+\gdef\_Pr_{195}
+\gdef\_bmod_{195}
+\gdef\_pmod_{196}
+\gdef\_bigcap_{196}
+\gdef\_bigcup_{196}
+\gdef\_bigodot_{196}
+\gdef\_bigoplus_{196}
+\gdef\_bigotimes_{196}
+\gdef\_bigsqcup_{196}
+\gdef\_biguplus_{196}
+\gdef\_bigvee_{196}
+\gdef\_bigwedge_{196}
+\gdef\_coprod_{196}
+\gdef\_smallint_{196}
+\gdef\_int_{196}
+\gdef\_oint_{196}
+\gdef\_prod_{196}
+\gdef\_sum_{196}
+\gdef\_limits_{197}
+\gdef\_nolimits_{197}
+\gdef\_displaylimits_{197}
+\gdef\_cdotp_{198}
+\gdef\_ldotp_{198}
+\gdef\_colon_{198}
+\gdef\@underscore_{199}
+\gdef\_sb_{199}
+\gdef\@hat_{199}
+\gdef\_sp_{199}
+\gdef\_textstyle_{200}
+\gdef\_scriptstyle_{200}
+\gdef\_scriptscriptstyle_{200}
+\gdef\_displaystyle_{200}
+\gdef\_mathchoice_{200}
+\gdef\_mathpalette_{200}
+\gdef\mathaccent_{201}
+\gdef\_acute_{201}
+\gdef\_b_{201}
+\gdef\_bar_{201}
+\gdef\_breve_{201}
+\gdef\_check_{201}
+\gdef\_ddot_{201}
+\gdef\_dot_{201}
+\gdef\_grave_{201}
+\gdef\_hat_{201}
+\gdef\_widehat_{201}
+\gdef\_tilde_{201}
+\gdef\_widetilde_{201}
+\gdef\_vec_{201}
+\gdef\_mathaccent_{201}
+\gdef\_over_{202}
+\gdef\_atop_{202}
+\gdef\_above_{202}
+\gdef\_choose_{202}
+\gdef\_brace_{202}
+\gdef\_brack_{202}
+\gdef\_overwithdelims_{203}
+\gdef\_atopwithdelims_{203}
+\gdef\_abovewithdelims_{203}
+\gdef\_cases_{203}
+\gdef\_underbrace_{204}
+\gdef\_overbrace_{204}
+\gdef\_underline_{204}
+\gdef\_overline_{204}
+\gdef\_overleftarrow_{204}
+\gdef\_overrightarrow_{204}
+\gdef\_buildrel_{204}
+\gdef\_ldots_{205}
+\gdef\_cdots_{205}
+\gdef\_vdots_{205}
+\gdef\_ddots_{205}
+\gdef\_lgroup_{206}
+\gdef\_rgroup_{206}
+\gdef\_left_{206}
+\gdef\_right_{206}
+\gdef\_delimiter_{206}
+\gdef\_delimiterfactor_{207}
+\gdef\_delimitershortfall_{207}
+\gdef\_matrix_{207}
+\gdef\_pmatrix_{207}
+\gdef\_bordermatrix_{207}
+\gdef\_sqrt_{208}
+\gdef\_root_{209}
+\gdef\_radical_{209}
+\gdef\_eqno_{209}
+\gdef\_leqno_{209}
+\gdef\_displaylines_{210}
+\gdef\_eqalign_{210}
+\gdef\_eqalignno_{210}
+\gdef\_leqalignno_{210}
+\gdef\mathfonts_{211}
+\gdef\_cal_{211}
+\gdef\_mit_{211}
+\gdef\_oldstyle_{211}
+\gdef\_itfam_{212}
+\gdef\_bffam_{212}
+\gdef\_slfam_{212}
+\gdef\_ttfam_{212}
+\gdef\_fam_{212}
+\gdef\_textfont_{212}
+\gdef\_scriptfont_{212}
+\gdef\_scriptscriptfont_{212}
+\gdef\_big_{213}
+\gdef\_bigl_{213}
+\gdef\_bigm_{213}
+\gdef\_bigr_{213}
+\gdef\_Big_{213}
+\gdef\_Bigl_{213}
+\gdef\_Bigm_{213}
+\gdef\_Bigr_{213}
+\gdef\_bigg_{213}
+\gdef\_biggl_{213}
+\gdef\_biggm_{213}
+\gdef\_biggr_{213}
+\gdef\_Bigg_{213}
+\gdef\_Biggl_{213}
+\gdef\_Biggm_{213}
+\gdef\_Biggr_{213}
+\gdef\_downbracefill_{213}
+\gdef\_upbracefill_{213}
+\gdef\_arrowvert_{214}
+\gdef\_Arrowvert_{214}
+\gdef\_lmoustache_{214}
+\gdef\_rmoustache_{214}
+\gdef\_bracevert_{214}
+\gdef\_skew_{214}
+\gdef\_skewchar_{215}
+\gdef\_defaultskewchar_{215}
+\gdef\_vcenter_{215}
+\gdef\_@shriek_{216}
+\gdef\_@comma_{216}
+\gdef\_@greater_{216}
+\gdef\_@semi_{216}
+\gdef\_thinmuskip_{216}
+\gdef\_medmuskip_{216}
+\gdef\_thickmuskip_{216}
+\gdef\_jot_{217}
+\gdef\_mkern_{217}
+\gdef\_mskip_{217}
+\gdef\_nonscript_{217}
+\gdef\_displaywidth_{218}
+\gdef\_displayindent_{218}
+\gdef\_predisplaysize_{218}
+\gdef\_abovedisplayskip_{219}
+\gdef\_belowdisplayskip_{219}
+\gdef\_abovedisplayshortskip_{219}
+\gdef\_belowdisplayshortskip_{219}
+\gdef\_mathsurround_{219}
+\gdef\_nulldelimiterspace_{219}
+\gdef\_scriptspace_{220}
+\gdef\_mathord_{220}
+\gdef\_mathop_{220}
+\gdef\_mathbin_{220}
+\gdef\_mathrel_{220}
+\gdef\_mathopen_{220}
+\gdef\_mathclose_{220}
+\gdef\_mathpunct_{220}
+\gdef\_mathinner_{220}
+\gdef\_everymath_{220}
+\gdef\_everydisplay_{220}
+\gdef\general_C{9}
+\gdef\_font_{223}
+\gdef\_fontdimen_{224}
+\gdef\_magnification_{225}
+\gdef\_mag_{225}
+\gdef\_magstep_{225}
+\gdef\_magstephalf_{226}
+\gdef\convert_{226}
+\gdef\_number_{226}
+\gdef\_romannumeral_{226}
+\gdef\_time_{226}
+\gdef\_day_{227}
+\gdef\_month_{227}
+\gdef\_year_{227}
+\gdef\_fmtname_{227}
+\gdef\_fmtversion_{227}
+\gdef\_jobname_{227}
+\gdef\_meaning_{228}
+\gdef\_string_{228}
+\gdef\_escapechar_{228}
+\gdef\_fontname_{229}
+\gdef\_begingroup_{229}
+\gdef\_endgroup_{229}
+\gdef\@lbrace_{229}
+\gdef\_bgroup_{229}
+\gdef\@rbrace_{229}
+\gdef\_egroup_{229}
+\gdef\_global_{230}
+\gdef\_globaldefs_{230}
+\gdef\_aftergroup_{231}
+\gdef\_afterassignment_{231}
+\gdef\mac1_{232}
+\gdef\_def_{232}
+\gdef\_edef_{232}
+\gdef\_gdef_{233}
+\gdef\_xdef_{233}
+\gdef\_long_{233}
+\gdef\_outer_{234}
+\gdef\_chardef_{234}
+\gdef\_mathchardef_{234}
+\gdef\_let_{234}
+\gdef\_futurelet_{234}
+\gdef\_csname_{235}
+\gdef\_endcsname_{235}
+\gdef\_expandafter_{235}
+\gdef\_noexpand_{236}
+\gdef\_the_{236}
+\gdef\conds_{237}
+\gdef\_@if_{237}
+\gdef\_@ifcat_{237}
+\gdef\_@ifx_{238}
+\gdef\_@ifnum_{239}
+\gdef\_@ifodd_{239}
+\gdef\_@ifdim_{239}
+\gdef\_@ifhmode_{240}
+\gdef\_@ifvmode_{240}
+\gdef\_@ifmmode_{240}
+\gdef\_@ifinner_{240}
+\gdef\_@ifhbox_{240}
+\gdef\_@ifvbox_{240}
+\gdef\_@ifvoid_{240}
+\gdef\_@ifeof_{241}
+\gdef\_@ifcase_{241}
+\gdef\_@or_{241}
+\gdef\_@iftrue_{241}
+\gdef\_@iffalse_{241}
+\gdef\_@else_{241}
+\gdef\_@fi_{242}
+\gdef\_@newif_{242}
+\gdef\_loop_{242}
+\gdef\_@repeat_{242}
+\gdef\_relax_{243}
+\gdef\_empty_{243}
+\gdef\mac2_{243}
+\gdef\_count_{244}
+\gdef\_dimen_{244}
+\gdef\_skip_{244}
+\gdef\_muskip_{244}
+\gdef\_toks_{244}
+\gdef\_maxdimen_{246}
+\gdef\_@newcount_{246}
+\gdef\_@newdimen_{246}
+\gdef\_@newskip_{246}
+\gdef\_@newmuskip_{246}
+\gdef\_@newtoks_{246}
+\gdef\_@newbox_{246}
+\gdef\_@newread_{246}
+\gdef\_@newwrite_{246}
+\gdef\_@newfam_{246}
+\gdef\_@newinsert_{246}
+\gdef\_@newlanguage_{246}
+\gdef\_countdef_{247}
+\gdef\_dimendef_{247}
+\gdef\_skipdef_{247}
+\gdef\_muskipdef_{247}
+\gdef\_toksdef_{247}
+\gdef\_advance_{247}
+\gdef\_multiply_{248}
+\gdef\_divide_{248}
+\gdef\_@bye_{248}
+\gdef\_end_{249}
+\gdef\_input_{249}
+\gdef\_endinput_{249}
+\gdef\_inputlineno_{249}
+\gdef\_openin_{249}
+\gdef\_closein_{250}
+\gdef\_read_{250}
+\gdef\_openout_{251}
+\gdef\_closeout_{251}
+\gdef\_write_{251}
+\gdef\_immediate_{252}
+\gdef\_special_{252}
+\gdef\_newlinechar_{252}
+\gdef\_catcode_{253}
+\gdef\_active_{253}
+\gdef\_mathcode_{253}
+\gdef\_delcode_{253}
+\gdef\_endlinechar_{254}
+\gdef\_ignorespaces_{254}
+\gdef\_errorstopmode_{254}
+\gdef\_scrollmode_{254}
+\gdef\_nonstopmode_{255}
+\gdef\_batchmode_{255}
+\gdef\_pausing_{255}
+\gdef\_show_{255}
+\gdef\_showthe_{255}
+\gdef\_showbox_{255}
+\gdef\_showlists_{255}
+\gdef\_tracingonline_{258}
+\gdef\_tracingcommands_{259}
+\gdef\_tracinglostchars_{259}
+\gdef\_tracingmacros_{260}
+\gdef\_tracingoutput_{260}
+\gdef\_tracingpages_{261}
+\gdef\_tracingparagraphs_{262}
+\gdef\_tracingrestores_{262}
+\gdef\_tracingstats_{262}
+\gdef\_tracingall_{263}
+\gdef\_showboxbreadth_{263}
+\gdef\_showboxdepth_{263}
+\gdef\_message_{263}
+\gdef\_errmessage_{263}
+\gdef\_wlog_{264}
+\gdef\_errhelp_{264}
+\gdef\_@newhelp_{264}
+\gdef\_errorcontextlines_{265}
+\gdef\_dump_{265}
+\gdef\_everyjob_{265}
+\gdef\tips_C{10}
+\gdef\filbreak_{268}
+\gdef\unwantedspace_{272}
+\gdef\bighead_{276}
+\gdef\mismatched_{277}
+\gdef\verbatim_{279}
+\gdef\_obeywhitespace_{280}
+\gdef\errors_C{11}
+\gdef\eplain_C{12}
+\gdef\eplainconv_{294}
+\gdef\ewhitesp_{295}
+\gdef\listmacs_{300}
+\gdef\xrefs_{304}
+\gdef\eplaincenter_{308}
+\gdef\capsule_C{13}
+\gdef\applicability_{1}
+\gdef\verbatim_{2}
+\gdef\copying_{3}
+\gdef\modifications_{4}
+\gdef\combining_{5}
+\gdef\collections_{6}
+\gdef\aggregation_{7}
+\gdef\translation_{8}
+\gdef\termination_{9}
+\gdef\future_{10}
diff --git a/teximpatient/book.ccs b/teximpatient/book.ccs
new file mode 100644
index 0000000..dfbd002
--- /dev/null
+++ b/teximpatient/book.ccs
@@ -0,0 +1,94 @@
+\doconcept{active character}{43}
+\doconcept{alignment}{44}
+\doconcept{anatomy of T\kern -.1667em\lower .5ex\hbox {E}\kern -.125emX\hbox {}\hbox {}}{46}
+\doconcept{argument}{48}
+\doconcept{ASCII}{49}
+\doconcept{assignment}{49}
+\doconcept{badness}{50}
+\doconcept{baseline}{51}
+\doconcept{box}{51}
+\doconcept{category code}{53}
+\doconcept{character}{55}
+\doconcept{class}{56}
+\doconcept{command}{56}
+\doconcept{conditional test}{57}
+\doconcept{control sequence}{57}
+\doconcept{control symbol}{58}
+\doconcept{control word}{58}
+\doconcept{decimal constant}{58}
+\doconcept{delimiter}{58}
+\doconcept{demerits}{60}
+\doconcept{depth}{60}
+\doconcept{dimension}{60}
+\doconcept{display math}{61}
+\doconcept{escape character}{61}
+\doconcept{family}{62}
+\doconcept{file}{62}
+\doconcept{file name}{64}
+\doconcept{font}{65}
+\doconcept{footer}{66}
+\doconcept{format file}{66}
+\doconcept{global}{66}
+\doconcept{glue}{67}
+\doconcept{group}{69}
+\doconcept{hbox}{70}
+\doconcept{header}{70}
+\doconcept{height}{70}
+\doconcept{horizontal list}{70}
+\doconcept{horizontal mode}{70}
+\doconcept{hyphenation}{71}
+\doconcept{input stream}{71}
+\doconcept{insertion}{71}
+\doconcept{interline glue}{72}
+\doconcept{item}{72}
+\doconcept{justified text}{72}
+\doconcept{kern}{72}
+\doconcept{leaders}{73}
+\doconcept{ligature}{74}
+\doconcept{line break}{75}
+\doconcept{list}{76}
+\doconcept{log file}{76}
+\doconcept{macro}{76}
+\doconcept{magnification}{79}
+\doconcept{margins}{80}
+\doconcept{mark}{80}
+\doconcept{math mode}{81}
+\doconcept{mathcode}{81}
+\doconcept{mathematical unit}{83}
+\doconcept{mode}{83}
+\doconcept{muglue}{83}
+\doconcept{number}{83}
+\doconcept{ordinary mode}{84}
+\doconcept{outer}{84}
+\doconcept{output routine}{85}
+\doconcept{output stream}{85}
+\doconcept{page}{85}
+\doconcept{page break}{86}
+\doconcept{page builder}{87}
+\doconcept{page layout}{87}
+\doconcept{paragraph}{88}
+\doconcept{parameter}{89}
+\doconcept{penalty}{90}
+\doconcept{plain T\kern -.1667em\lower .5ex\hbox {E}\kern -.125emX\hbox {}\hbox {}}{90}
+\doconcept{primitive}{90}
+\doconcept{reference point}{90}
+\doconcept{register}{91}
+\doconcept{restricted mode}{92}
+\doconcept{rule}{92}
+\doconcept{script size}{93}
+\doconcept{scriptscript size}{93}
+\doconcept{shrink}{93}
+\doconcept{space}{93}
+\doconcept{stretch}{94}
+\doconcept{strut}{94}
+\doconcept{style}{94}
+\doconcept{T\kern -.1667em\lower .5ex\hbox {E}\kern -.125emX\hbox {}\hbox {}\ M\kern -.11em\lower .5ex\hbox {E}\kern -.125em X\hbox {}}{95}
+\doconcept{text math}{95}
+\doconcept{text size}{95}
+\doconcept{token}{95}
+\doconcept{unit of measure}{95}
+\doconcept{vbox}{96}
+\doconcept{vertical list}{96}
+\doconcept{vertical mode}{96}
+\doconcept{whatsit}{97}
+\doconcept{width}{97}
diff --git a/teximpatient/book.idx b/teximpatient/book.idx
new file mode 100644
index 0000000..a7368b2
--- /dev/null
+++ b/teximpatient/book.idx
@@ -0,0 +1,3583 @@
+\Metafont::N::-7
+revision+bars::N::-7
+\texbook::N::-8
+\texbook::N::-8
+\LaTeX::N::-8
+\AMSTeX::N::-8
+\texbook::N::2
+ ::T::3P
+spaces//visible::N::3P
+commands::N::3
+primitive//command::N::3
+\plainTeX::N::3
+parindent::C::4
+arguments::N::4
+\<dimen>::N::4
+\<argument>::N::4
+\<charcode>::N::4
+\<glue>::N::4
+\<number>::N::4
+\<register>::N::4
+parameters//as+commands::N::4
+registers//parameters+as::N::4
+local+information::N::7P
+text+editor::N::7
+control+characters::N::7
+input::C::7
+macros//in+auxiliary+files::N::7
+\plainTeX::N::8
+\dvifile::N::8
+previewer::N::8
+\dvifile::N::8
+device+drivers::N::8
+printers::N::8
+output+devices::N::8
+font+files::N::8
+metrics+file::N::8
+shape+file::N::8
+magnification::N::8
+\tfmfile::N::8
+\pkfile::N::8
+\pxlfile::N::8
+\gffile::N::8
+running+\TeX::N::9B
+input+files::N::9
+\plainTeX::N::9
+relax::C::9
+input+files//embedded::N::9
+error+messages::N::9
+local+information::N::9
+running+\TeX::N::9E
+input,+preparing::N::10
+commands::N::10B
+control+sequences::N::10B
+control+words::N::10
+control+symbols::N::10
+control+sequences//absorbing+spaces::N::10
+control+space::N::10
+commands//versus+control+sequences::N::11
+control+sequences//versus+commands::N::11
+control+sequences::N::11E
+commands::N::11E
+arguments::N::11
+parameters//as+commands::N::12
+registers//parameters+as::N::12
+spaces::N::12B
+period::N::12
+paragraphs//ending::N::12
+unwanted+space::N::12
+tie::N::13
+~::T::13
+spaces::N::13E
+comments::N::13PB
+%::T::13
+line+breaks//deleting::N::13
+comments::N::13E
+punctuation::N::13
+.::T::13
+?::T::13
+!::T::13
+period::N::13
+question+mark::N::13
+exclamation+point::N::13
+frenchspacing::C::14
+bibliographies::N::14
+quotation+marks::N::14
+dashes::N::14
+-::T::14
+--::T::14
+---::T::14
+$//in ordinary text::T::15
+#//in ordinary text::T::15
+&//in ordinary text::T::15
+_//in ordinary text::T::15
+^//in ordinary text::T::15
+~//in ordinary text::T::15
+%//in ordinary text::T::15
+{//in ordinary text::T::15
+}//in ordinary text::T::15
+\//in ordinary text::T::15
+$::C::15
+#::C::15
+&::C::15
+%::C::15
+_::C::15
+groups::N::15B
+{//starting a group::T::15
+}//ending a group::T::15
+groups::N::16E
+math::N::16B
+text+math::N::16
+display+math::N::16
+$::T::16
+$$::T::16
+math::N::16E
+eyes::N::16
+mouth::N::16
+tokens::N::16
+control+sequences//as+tokens::N::16
+expanding+tokens::N::16
+stomach::N::16
+intestines::N::16
+\dvifile//created+by+\TeX's+intestines::N::16
+\anatomy::N::16
+halign//grouping for::C::16
+valign//grouping for::C::16
+pages::N::17
+boxes::N::17
+glue::N::17
+line+breaking::N::17
+page+breaks//inserted+by+\TeX's+stomach::N::17
+modes::N::17
+foreign+languages::N::18
+\newTeX::N::18
+badness::C::18
+emergencystretch::C::18
+errorcontextlines::C::18
+holdinginserts::C::18
+language::C::18
+setlanguage::C::18
+newlanguage::C::18
+lefthyphenmin::C::18
+righthyphenmin::C::18
+noboundary::C::18
+topglue::C::18
+Knuth,+Donald+E.::N::18
+\LaTeX::N::18
+Lamport,+Leslie::N::18
+\AMSTeX::N::18
+Spivak,+Michael~D.::N::18
+\TUG::N::19
+TUGBoat::N::19
+\TUG::N::19
+eplain.tex::T::19
+\BibTeX::N::19
+Patashnik,+Oren::N::19
+footnotes::N::22
+comments::N::22
+punctuation::N::22
+quotation+marks::N::22
+space+characters::N::22
+dashes::N::22
+paragraphs//ending::N::22
+indentation::N::24
+margins::N::24
+paragraphs//narrow::N::24
+fonts::N::26
+characters//special::N::26
+accents::N::26
+music+symbols::N::26
+card+suits::N::26
+$::T::26
+&::T::26
+#::T::26
+_::T::26
+%::T::26
+^::T::26
+~::T::26
+{::T::26
+}::T::26
+\::T::26
+spacing//interline::N::28
+baselines::N::28
+description+lists::N::30
+boxes//drawing::N::30
+revision+bars::N::30
+hyphenation::N::32
+theorems::N::32
+lemmas::N::32
+itemized+lists::N::32
+flush+left::N::32
+flush+right::N::32
+centering::N::32
+Palatino+fonts::N::34
+Zapf,+Hermann::N::34
+Computer+Modern+fonts::N::34
+\Metafont::N::34
+mushrooms::N::36
+math::N::38
+math::N::40
+\texbook::N::43
+active+characters::N::43PB
+macros//named+by+active+characters::N::43
+active::C::43
+catcode::C::43
+category+codes//of+active+characters::N::43
+active+characters::N::44E
+alignments::N::44PB
+tables::N::44B
+settabs::C::44B
++::C::44B
+cr::C::44B
+entry+(column+or+row)::N::44
+&::T::44
+cr::C::44
+settabs::C::45E
++::C::45E
+halign::C::45B
+preamble::N::45P
+template::N::45P
+#::T::45
+&::T::45
+tabskip::C::46
+noalign::C::46
+halign::C::46E
+valign::C::46
+strut::C::46
+cr::C::46E
+tables::N::46E
+alignments::N::46E
+\anatomy::N::46PB
+eyes::N::46
+mouth::N::46
+gullet::N::46
+stomach::N::46
+intestines::N::46
+eyes::N::46P
+input+files::N::46
+input::C::46
+mouth::N::47P
+tokens//assembled+from+characters::N::47
+gullet::N::47P
+macros//expanded+in+\TeX's+stomach::N::47
+tokens//passed+to+\TeX's+stomach::N::47
+stomach::N::47P
+pages//assembled+in+\TeX's+stomach::N::47
+line+breaking::N::47
+intestines::N::47P
+\dvifile//created+by+\TeX's+intestines::N::47
+\anatomy::N::47E
+arguments::N::48PB
+commands//arguments+of::N::48
+primitive//command::N::48
+count::C::48
+macros//arguments+of::N::48
+parameters//and+arguments::N::48
+macros//parameters+of::N::48
+delimited+arguments::N::48
+undelimited+arguments::N::48
+arguments::N::49E
+ASCII::N::49PB
+characters::N::49
+printable+characters::N::49
+control+characters::N::49
+Computer+Modern+fonts::N::49
+ASCII::N::49E
+assignments::N::49PB
+registers//assignment+to::N::49
+parameters//assignments+to::N::49
+assignments::N::50E
+badness::N::50PB
+interword+spacing::N::50
+line+breaks//badness+for::N::50
+page+breaks//badness+for::N::50
+badness::N::50E
+baselines::N::51PB
+boxes//baselines+of::N::51
+baselines::N::51E
+boxes::N::51PB
+hbox::C::51
+vbox::C::51
+vtop::C::51
+hbox::C::51
+hboxes::N::51
+horizontal+lists::N::51
+vbox::C::51
+vboxes::N::51
+vboxes::N::51
+vertical+lists::N::51
+kerns//as+list+items::N::51
+height::N::51
+depth::N::51
+width::N::51
+baselines::N::51
+reference+point::N::51B
+interline+glue::N::52
+vbox::C::52B
+vtop::C::52B
+vbox::C::52E
+vtop::C::52E
+reference+point::N::52E
+box+registers::N::52
+newbox::C::52
+raise::C::52
+lower::C::52
+moveleft::C::52
+moveright::C::52
+boxmaxdepth::C::52
+boxes::N::53E
+category+codes::N::53PB
+characters//category+code+of::N::53
+gullet::N::53
+char::C::53
+\ascii::N::53
+catcode::C::53
+escape+character//category+code+of::N::53
+\//category code of::T::53
+groups::N::53
+{//category code of::T::53
+}//category code of::T::53
+math+shift::N::53
+$//category code of::T::53
+tabs::N::53
+alignments//tab+character+for::N::53
+&//category+code+of::T::53
+end+of+line::N::53
+^^M//category+code+of::T::53
+macros//parameters+of::N::53
+parameters//indicated+by+\b\tt\#\e::N::53
+#//category+code+of::T::53
+superscripts::N::53
+^^K::T::53
+^//category+code+of::T::53
+subscripts::N::53
+^^A::T::53
+_//category+code+of::T::53
+ignored+characters::N::53
+^^@::T::53
+horizontal+tab::N::53
+space+characters//category+code+of::N::53
+^^I::T::53
+ ::T::53
+letter::N::53
+other+characters::N::53
+active+characters::N::53
+form+feed::N::53
+~::T::53
+^^L::T::53
+comments::N::53
+%//category code of::T::53
+invalid+character::N::54
+^^?::T::54
+active+characters::N::54
+invalid+character::N::54
+^^A::T::54
+^^K::T::54
+category+codes::N::55E
+characters::N::55PB
+\ascii::N::55
+category+codes//attached+during+input::N::55
+control+characters::N::55
+^^M::T::55
+^^J::T::55
+^^I::T::55
+hexadecimal+digit::N::55
+letter::N::56
+other+characters::N::56
+char::C::56
+characters::N::56E
+class::N::56PB
+mathcodes//class+encoded+in::N::56
+class::N::56E
+commands::N::56PB
+tokens//as+commands::N::56
+commands::N::57E
+conditional+tests::N::57PB
+else::C::57
+fi::C::57
+conditional+tests::N::57E
+control+sequences::N::57PB
+escape+character::N::57
+\::T::57
+control+words::N::57
+control+symbols::N::57
+escape+character::N::57
+primitive//control+sequence::N::57
+def::C::58
+let::C::58
+control+sequences::N::58E
+control+symbols::N::58PB
+escape+character::N::58
+control+symbols::N::58E
+control+words::N::58PB
+escape+character::N::58
+control+words::N::58E
+decimal+constant::N::58PB
+decimal+constant::N::58E
+delimiters::N::58PB
+left::C::58
+right::C::58
+overwithdelims::C::58
+atopwithdelims::C::58
+abovewithdelims::C::58
+parentheses::N::58
+bigl::C::59
+bigr::C::59
+)::T::59
+)::T::59
+[::T::59
+]::T::59
+lbrack::C::59
+rbrack::C::59
+{::C::59
+}::C::59
+lbrace::C::59
+rbrace::C::59
+lfloor::C::59
+rfloor::C::59
+lceil::C::59
+rceil::C::59
+langle::C::59
+rangle::C::59
+/::T::59
+backslash::C::59
+vert::C::59
+Vert::C::59
+uparrow::C::59
+downarrow::C::59
+updownarrow::C::59
+Uparrow::C::59
+Downarrow::C::59
+Updownarrow::C::59
+class//of+a+delimiter::N::59
+delimiter+codes::N::59B
+delcode::C::59
+delimiter::C::59
+metrics+file::N::60
+nulldelimiterspace::C::60
+delimiter+codes::N::60E
+delimiters::N::60E
+demerits::N::60PB
+line+breaks//demerits+for::N::60
+badness::N::60
+demerits::N::60E
+depth::N::60PB
+boxes//depth+of::N::60
+depth::N::60E
+dimensions::N::60PB
+units+of+measure::N::60
+point::N::60
+pica::N::60
+inch::N::60
+centimeter::N::61
+millimeter::N::61
+\didotpt::N::61
+cicero::N::61
+scaled+point::N::61
+ex::T::61
+em::T::61
+fil::T::61
+fill::T::61
+filll::T::61
+factor::N::61
+units+of+measure::N::61
+dimensions//negative::N::61
+mag::C::61
+magnification::N::61
+dimensions::N::61E
+display+math::N::61PB
+$$::T::61
+display+math::N::61E
+escape+character::N::61PB
+\::T::61
+catcode::C::61
+escapechar::C::62
+escape+character::N::62E
+family::N::62PB
+fonts//families+of::N::62
+text+size::N::62
+script+size::N::62
+scriptscript+size::N::62
+\plainTeX//font+families+in::N::62
+special+symbols::N::62
+math+extensions::N::62
+newfam::C::62
+textfont::C::62
+scriptfont::C::62
+scriptscriptfont::C::62
+family::N::62E
+files::N::62PB
+operating+system::N::62
+source+file::N::62
+input::C::62
+result+file::N::62
+\dvifile//as+a+result+file::N::62
+log+file//as+a+result+file::N::62
+read::C::63
+input+streams//reading+with+\b\tt\\read\e::N::63
+input::C::63
+write//output stream for::C::63
+output+streams::N::63
+openin::C::63
+openout::C::63
+closein::C::63
+closeout::C::63
+newread::C::63
+newwrite::C::63
+shipout::C::63
+immediate::C::64
+files::N::64E
+file+names::N::64PB
+operating+system::N::64
+file+names::N::64E
+fonts::N::65PB
+Computer+Modern+fonts::N::65
+Palatino+fonts::N::65
+Computer+Modern+fonts::N::65
+\ascii::N::65
+\tfmfile::N::65
+math+symbols::N::65
+logos::N::65
+device+drivers::N::66
+\dvifile//converted+by+driver::N::66
+pixel+file::N::66
+shape+file::N::66
+\pkfile::N::66
+\gffile::N::66
+fonts::N::66E
+footers::N::66PB
+footline::C::66
+footers::N::66E
+format+file::N::66PB
+dump::C::66
+virtex::T::66
+initex::T::66
+preloaded::N::66
+format+file::N::66E
+global::N::66PB
+globaldefs::C::67
+global::C::67
+macros//global::N::67
+edef//making global::C::67
+def//making global::C::67
+gdef::C::67
+xdef::C::67
+global::N::67E
+glue::N::67PB
+stretch::N::67B
+shrink::N::67B
+horizontal+lists::N::67
+vertical+lists::N::67
+hskip::C::67
+spaces//interword::N::67
+boxes//glue+with::N::67
+right+margin::N::67
+bottom+margin::N::67
+hskip::C::67
+vskip::C::67
+fil::T::68
+fill::T::68
+filll::T::68
+flush+left::N::69
+leftline::C::69
+flush+right::N::69
+rightline::C::69
+centered+text::N::69
+centerline::C::69
+glue//infinitely+shrinkable::N::69
+stretch::N::69E
+shrink::N::69E
+glue::N::69E
+groups::N::69PB
+{//starting a group::T::69
+}//ending a group::T::69
+groups::N::70E
+hboxes::N::70PB
+horizontal+lists//hboxes+formed+from::N::70
+hboxes::N::70E
+headers::N::70PB
+headline::C::70
+headers::N::70E
+height::N::70PB
+boxes//height+of::N::70
+height::N::70E
+horizontal+lists::N::70PB
+horizontal+lists::N::70E
+horizontal+mode::N::70PB
+hboxes//horizontal+mode+for::N::70
+ordinary+horizontal+mode::N::70
+restricted+horizontal+mode::N::70
+horizontal+lists//can't+contain+vertical+commands::N::70
+hrule//inherently vertical::C::71
+halign//inherently vertical::C::71
+horizontal+mode::N::71E
+hyphenation::N::71PB
+discretionary+hyphens::N::71
+-::C::71
+hyphenation::C::71
+hyphenation::N::71E
+input+streams::N::71PB
+input+streams::N::71E
+insertions::N::71PB
+footnote::C::71
+topinsert::C::71
+midinsert::C::71
+pageinsert::C::71
+insert::C::71
+insertions::N::71E
+output+routine//insertions,+treatment+of::N::71
+insert::C::71
+page+breaks//insertions+at::N::71
+interline+glue::N::72PB
+baselineskip::C::72
+lineskip::C::72
+lineskiplimit::C::72
+interline+glue::N::72E
+items::N::72PB
+items::N::72E
+justification::N::72PB
+ragged+right::N::72
+ragged+left::N::72
+centered+text::N::72
+leftskip::C::72
+rightskip::C::72
+raggedright::C::72
+justification::N::72E
+kerns::N::72PB
+spacing//adjusting+with+kerns::N::72
+\tfmfile::N::73
+kerns::N::73E
+leaders::N::73PB
+leaders::C::73B
+cleaders::C::73B
+xleaders::C::73B
+leaders::C::74E
+cleaders::C::74E
+xleaders::C::74E
+leaders::N::74E
+ligatures::N::74PB
+noboundary::C::75
+European+languages::N::75
+ligatures::N::75E
+line+breaks::N::75PB
+demerits::N::75
+penalties//in+horizontal+lists::N::75
+break::C::75
+nobreak::C::75
+discretionary+hyphens::N::75
+-//in line breaking::C::75
+solidus::N::75
+slash::C::75
+tie::N::75
+~//in line breaking::T::75
+hboxes//controlling+line+breaks::N::76
+line+breaks::N::76E
+lists::N::76PB
+lists::N::76E
+log+file::N::76PB
+log+file::N::76E
+macros::N::76PB
+macros//parameters+of::N::76B
+#::T::77P
+parameters//undelimited::N::77
+parameters//delimited::N::78B
+parameters//delimited::N::79E
+macros//parameters+of::N::79E
+macros::N::79E
+magnification::N::79PB
+mag::C::79
+design+size::N::79
+shape+file::N::79
+magstep::C::80
+magstephalf::C::80
+true::T::80
+magnification::N::80E
+margins::N::80PB
+hoffset::C::80
+voffset::C::80
+hsize::C::80
+vsize::C::80
+margins::N::80E
+marks::N::80PB
+mark+text::N::81
+mark::C::81
+topmark::C::81
+firstmark::C::81
+botmark::C::81
+footers//marks+used+in::N::81
+headers//marks+used+in::N::81
+mark::C::81
+firstmark::C::81
+botmark::C::81
+splitfirstmark::C::81
+splitbotmark::C::81
+marks::N::81E
+math+mode::N::81PB
+text+math+mode::N::81
+display+math+mode::N::81
+math+mode::N::81E
+mathcodes::N::81PB
+math+characters//described+by+mathcodes::N::81
+family//as+part+of+mathcode::N::81
+mathcode::C::82
+family//variable::N::82
+mathcodes::N::82E
+mathematical+units::N::83PB
+mathematical+units::N::83E
+modes::N::83PB
+ordinary+horizontal+mode::N::83
+restricted+horizontal+mode::N::83
+ordinary+vertical+mode::N::83
+internal+vertical+mode::N::83
+text+math+mode::N::83
+display+math+mode::N::83
+horizontal+mode::N::83
+vertical+mode::N::83
+math+mode::N::83
+modes::N::83E
+muglue::N::83PB
+mu::T::83
+mathematical+units::N::83
+glue//mathematical::N::83
+mskip::C::83
+muglue::N::83E
+numbers::N::83PB
+octal+numbers::N::83
+hexadecimal+numbers::N::83
+octal+numbers::N::83
+hexadecimal+numbers::N::83
+characters//\ascii\ codes+for::N::84
+edef//expansion of {\tt\\'\it c} in::C::84
+write//expansion of {\tt\\'\it c} in::C::84
+number::C::84
+romannumeral::C::84
+decimal+constant::N::84
+decimal+point::N::84
+numbers::N::84E
+ordinary+mode::N::84PB
+ordinary+mode::N::84E
+outer::N::84PB
+macros//outer::N::84B
+outer::C::84
+macros//outer::N::85E
+outer::N::85E
+output+routine::N::85PB
+\dvifile//material+from+output+routine::N::85
+output::C::85
+\dvifile//material+from+output+routine::N::85
+shipout::C::85
+output+routine::N::85E
+output+streams::N::85PB
+output+streams::N::85E
+pages::N::85PB
+main+vertical+list::N::85
+page+builder::N::85
+recent+contributions::N::85
+box255::C::86
+\dvifile//material+from+output+routine::N::86
+pages::N::86E
+page+breaks::N::86PB
+penalties//in+vertical+lists::N::86
+\dvifile//material+from+output+routine::N::87
+page+breaks::N::87E
+page+builder::N::87PB
+page+builder::N::87E
+page+layout::N::87PB
+margins::N::87B
+headers::N::87B
+footers::N::87B
+hoffset::C::87
+voffset::C::87
+hsize::C::87
+vsize::C::87
+margins::N::87E
+headline::C::87
+footline::C::87
+marks//with+headers+or+footers::N::88
+headers::N::88E
+footers::N::88E
+page+layout::N::88E
+paragraphs::N::88PB
+par::C::88
+par//ending a paragraph with::C::88
+indent::C::89
+noindent::C::89
+everypar::C::89
+parshape::C::89
+hangindent::C::89
+looseness::C::89
+paragraphs::N::89E
+parameters::N::89PB
+parindent::C::89
+assignments::N::89
+registers//parameters+as::N::90
+parameters::N::90E
+penalties::N::90PB
+horizontal+lists//penalties+in::N::90
+vertical+lists//penalties+in::N::90
+penalties::N::90E
+\plainTeX::N::90PB
+\plainTeX::N::90E
+primitive::N::90PB
+primitive::N::90E
+reference+point::N::90PB
+baselines::N::90
+boxes//reference+point+of::N::90
+reference+point::N::90E
+registers::N::91PB
+box+registers::N::91
+count+registers::N::91
+dimension+registers::N::91
+muglue+registers::N::91
+glue+registers::N::91
+token+registers::N::91
+parameters//like+registers::N::91
+newbox::C::91
+newcount::C::91
+newdimen::C::91
+newmuskip::C::91
+newskip::C::91
+newtoks::C::91
+page+numbering::N::92
+box255::C::92
+showthe::C::92
+registers::N::92E
+restricted+mode::N::92PB
+restricted+mode::N::92E
+rules::N::92PB
+horizontal+rules::N::92B
+vertical+rules::N::92B
+hrule::C::92B
+vrule::C::92B
+horizontal+lists//rule+in::N::92
+vertical+lists//rule+in::N::92
+horizontal+rules::N::93E
+vertical+rules::N::93E
+hrule::C::93E
+vrule::C::93E
+rules::N::93E
+script+size::N::93PB
+family//script+size+in::N::93
+script+size::N::93E
+scriptscript+size::N::93PB
+family//scriptscript+size+in::N::93
+scriptscript+size::N::93E
+shrink::N::93PB
+shrink::N::93E
+space::N::93PB
+end+of+line::N::93
+par//from empty line::C::93
+glue//creating+space+with::N::93
+kerns//creating+space+with::N::93
+space::N::94E
+stretch::N::94PB
+stretch::N::94E
+struts::N::94PB
+boxes//invisible::N::94
+offinterlineskip::C::94
+strut::C::94
+mathstrut::C::94
+struts::N::94E
+styles::N::94PB
+cramped+variants::N::95
+display+style::N::95
+text+style::N::95
+script+style::N::95
+scriptscript+style::N::95
+textstyle::C::95
+displaystyle::C::95
+scriptstyle::C::95
+scriptscriptstyle::C::95
+styles::N::95E
+\TeXMeX::N::95PB
+El+Paso::N::95
+\TeXMeX::N::95E
+text+math::N::95PB
+$::T::95
+text+math::N::95E
+text+size::N::95PB
+family//text+size+in::N::95
+text+size::N::95E
+tokens::N::95PB
+tokens::N::95E
+units+of+measure::N::95PB
+units+of+measure::N::95E
+vboxes::N::96PB
+vertical+lists//vboxes+formed+from::N::96
+vbox::C::96
+vtop::C::96
+vboxes::N::96E
+vertical+lists::N::96PB
+vertical+lists::N::96E
+vertical+mode::N::96PB
+vboxes//vertical+mode+for::N::96
+ordinary+vertical+mode::N::96
+internal+vertical+mode::N::96
+vertical+lists//can't+contain+horizontal+commands::N::96
+valign//inherently horizontal::C::96
+vrule//inherently horizontal::C::96
+vertical+mode::N::96E
+whatsit::N::97PB
+openout//whatsit produced by::C::97
+write//whatsit produced by::C::97
+closeout//whatsit produced by::C::97
+\dvifile//whatsits+in::N::97
+immediate::C::97
+special::C::97
+\dvifile//material+inserted+by+\b\tt\\special\e::N::97
+language::C::97
+setlanguage::C::97
+whatsit::N::97E
+width::N::97PB
+boxes//width+of::N::97
+width::N::97E
+ligatures::N::99B
+special+symbols::N::99
+European+alphabets::N::99
+AA::C::99P
+aa::C::99P
+AE::C::99P
+ae::C::99P
+L::C::99P
+l::C::99P
+O::C::99P
+o::C::99P
+OE::C::99P
+oe::C::99P
+ss::C::99P
+ligatures::N::100E
+special+characters::N::100
+#::C::100P
+$::C::100P
+%::C::100P
+&::C::100P
+_::C::100P
+lq::C::100P
+rq::C::100P
+lbrack::C::100P
+rbrack::C::100P
+dag::C::100P
+ddag::C::100P
+copyright::C::100P
+P::C::100P
+S::C::100P
+pound+sterling::N::100
+TeX::C::100P
+dots::C::101P
+dots::N::101
+ellipsis::N::101
+characters::N::101B
+char::C::101P
+mathchar::C::101P
+characters::N::101E
+accents::N::102
+'::C::102P
+acute+accent::N::102
+.::C::102P
+dot+accent::N::102
+=::C::102P
+macron+accent::N::102
+^::C::102P
+circumflex+accent::N::102
+`::C::102P
+grave+accent::N::102
+"::C::102P
+umlaut+accent::N::102
+~::C::102P
+tilde+accent::N::102
+cedilla+accent::N::102
+c::C::102P
+underdot+accent::N::102
+d::C::102P
+Hungarian+umlaut+accent::N::102
+H::C::102P
+tie-after+accent::N::102
+t::C::102P
+breve+accent::N::102
+u::C::102P
+check+accent::N::102
+v::C::102P
+i::C::102P
+j::C::102P
+dotless+letters::N::102
+imath::C::102
+jmath::C::102
+accent::C::102P
+accents::N::102
+ligatures::N::103B
+noboundary::C::103P
+ligatures::N::103E
+fonts::N::104
+fivebf::C::104P
+fivei::C::104P
+fiverm::C::104P
+fivesy::C::104P
+sevenbf::C::104P
+seveni::C::104P
+sevenrm::C::104P
+sevensy::C::104P
+tenbf::C::104P
+tenex::C::104P
+teni::C::104P
+tenrm::C::104P
+tensl::C::104P
+tensy::C::104P
+tenit::C::104P
+tentt::C::104P
+nullfont::C::104P
+type+styles::N::105
+bf::C::105P
+it::C::105P
+rm::C::105P
+sl::C::105P
+tt::C::105P
+case+conversion::N::105B
+uppercase//conversion+to::N::105B
+lowercase//conversion+to::N::105B
+lccode::C::105P
+uccode::C::105P
+lowercase::C::106P
+uppercase::C::106P
+case+conversion::N::106
+case+conversion::N::106E
+uppercase//conversion+to::N::106E
+lowercase//conversion+to::N::106E
+spaces//interword::N::106B
+ ::C::106
+control+space::N::106
+visible+space::N::106
+space::C::107P
+ ::C::107
+^^M::T::107P
+end+of+line::N::107
+par//from empty line::C::107
+~::T::107P
+tie::N::107
+/::C::108P
+italic+correction::N::108
+metrics+file//italic+correction+in::N::108
+italic+correction::N::108
+frenchspacing::C::108P
+nonfrenchspacing::C::108P
+interword+spacing::N::108
+obeyspaces::C::109P
+obeywhitespace::C::109
+spacefactor::C::109P
+spaceskip::C::109P
+xspaceskip::C::109P
+sfcode::C::109P
+interword+spacing::N::109
+space+factor::N::109
+spaces//interword::N::110E
+centering::N::110B
+flush+left::N::110B
+flush+right::N::110B
+justification::N::110B
+centerline::C::110P
+leftline::C::110P
+rightline::C::110P
+centering::N::111E
+flush+left::N::111E
+flush+right::N::111E
+justification::N::111E
+line::C::111P
+overlapping+text::N::111
+llap::C::111P
+rlap::C::111P
+overprinting::N::111
+cmtt10::T::111
+typewriter+font::N::111
+Computer+Modern+fonts::N::111
+paragraphs//shaping::N::112B
+par::C::112P
+paragraphs//starting::N::112
+everypar::C::112
+endgraf::C::113P
+par::C::113
+par::C::113
+parfillskip::C::113P
+paragraphs//glue+at+end+of::N::113
+indentation::N::113B
+indent::C::113P
+parskip::C::113
+indentation::N::113
+noindent::C::114P
+parskip::C::114
+indentation::N::114
+textindent::C::114P
+indentation::N::114
+footnotes//using+\b\tt\\textindent\e\ with::N::114
+parindent::C::115P
+indentation::N::115
+parskip::C::115
+everypar::C::115P
+line+breaks//and+paragraph+shape::N::116B
+hsize::C::116P
+line+length::N::116
+vboxes//width+determined+by+\b\tt\\hsize\e::N::116
+narrower::C::116P
+paragraphs//narrow::N::116
+indentation::N::116
+leftskip::C::117P
+rightskip::C::117P
+indentation::N::117
+ragged+left::N::117
+raggedright::C::118P
+ttraggedright::C::118P
+ragged+right::N::118
+justification::N::118
+hang::C::119P
+indentation::N::119
+hangafter::C::119P
+hangindent::C::119P
+hanging+indentation::N::119
+indentation::N::119
+everypar//for hanging indentation::C::119
+parshape::C::119
+parshape::C::120P
+hangafter::C::120
+hangindent::C::120
+hangafter::C::120
+hangindent::C::120
+indentation::N::121E
+prevgraf::C::122P
+vadjust::C::122P
+vertical+lists//inserting+in+paragraphs::N::122
+line+breaks//and+paragraph+shape::N::122E
+paragraphs//shaping::N::122E
+line+breaks::N::122B
+line+breaks//encouraging+or+discouraging::N::122B
+break::C::122P
+nobreak::C::123P
+allowbreak::C::123P
+line+breaks//in+math+formulas::N::123
+penalty::C::123P
+obeylines::C::124P
+verse,+typesetting::N::124
+poetry,+typesetting::N::124
+computer+programs,+typesetting::N::124
+obeyspaces::C::124
+slash::C::124P
+solidus::N::124
+line+breaks//encouraging+or+discouraging::N::124E
+line+breaks//parameters+affecting::N::125B
+pretolerance::C::125P
+tolerance::C::125P
+emergencystretch::C::125
+hbadness::C::125
+hfuzz::C::125
+emergencystretch::C::126P
+overfull+boxes::N::126
+tolerance::C::126
+looseness::C::126P
+tolerance::C::126
+everypar//for setting \b\tt\\looseness\e::C::126
+linepenalty::C::127P
+adjdemerits::C::127P
+hyphenation//penalties+for::N::127
+hyphenation//penalties+for::N::127B
+exhyphenpenalty::C::127P
+hyphenpenalty::C::127P
+discretionary+hyphens::N::127
+-//leads to {\tt\\hyphenpenalty}::T::127
+doublehyphendemerits::C::127P
+finalhyphendemerits::C::128P
+hyphenation//penalties+for::N::128E
+binoppenalty::C::128P
+operators::N::128
+relpenalty::C::128P
+relations::N::128
+line+breaks//parameters+affecting::N::128E
+hyphenation::N::128B
+-::C::128P
+discretionary+hyphens::N::128
+discretionary::C::129P
+hyphenation::N::129
+hyphenation//German::N::129
+hyphenation::C::129P
+hyphenation::N::129
+uchyph::C::130P
+showhyphens::C::130P
+language::C::130P
+hyphenation+rules::N::130
+European+languages::N::130
+local+information::N::130
+whatsit::N::130
+setlanguage::C::130P
+language::C::130
+lefthyphenmin::C::130P
+righthyphenmin::C::130P
+fonts//hyphenation+characters+for::N::131B
+hyphenchar::C::131P
+defaulthyphenchar::C::131P
+metrics+file//default+hyphen+in::N::131
+font::C::131
+hyphenchar::C::131
+fonts//hyphenation+characters+for::N::131E
+hyphenation::N::131E
+line+breaks::N::131E
+section+headings::N::131
+beginsection::C::131P
+item::C::132P
+itemitem::C::132P
+itemized+lists::N::132
+itemized+lists::N::132
+parindent//indentation for itemized lists::C::132
+proclaim::C::133P
+theorems::N::133
+lemmas::N::133
+hypotheses::N::133
+baselineskip::C::135P
+lineskiplimit::C::135P
+lineskip::C::135P
+line+spacing::N::135
+interline+glue::N::135B
+baselineskip::C::135B
+lineskip::C::135B
+lineskiplimit::C::135B
+vboxes//interline+glue+for::N::135
+prevdepth::C::135
+double+spacing::N::136
+interline+glue::N::136E
+baselineskip::C::136E
+lineskip::C::136E
+lineskiplimit::C::136E
+prevdepth::C::136P
+normalbaselineskip::C::136P
+normallineskiplimit::C::136P
+normallineskip::C::136P
+normalbaselines::C::136P
+baselineskip::C::136
+lineskip::C::136
+lineskiplimit::C::136
+offinterlineskip::C::137P
+struts::N::137
+alignments//using+\b\tt\\offinterlineskip\e\ in::N::137
+nointerlineskip::C::137P
+openup::C::137P
+baselineskip::C::137
+alignments//space+between+rows+of::N::137
+page+breaks::N::138B
+page+breaks//encouraging+or+discouraging::N::138B
+break::C::138P
+nobreak::C::138P
+allowbreak::C::138P
+penalty::C::138P
+goodbreak::C::139P
+smallbreak::C::139P
+medbreak::C::139P
+bigbreak::C::139P
+smallskip::C::139
+medskip::C::139
+bigskip::C::139
+eject::C::139P
+supereject::C::139P
+vfil//needed with {\tt\\eject}::C::139
+insertions//forced+out+by+\b\tt\\supereject\e::N::139
+filbreak::C::139P
+raggedbottom::C::139P
+normalbottom::C::139P
+page+breaks//encouraging+or+discouraging::N::140E
+page+breaks//parameters+for::N::140B
+interlinepenalty::C::140P
+clubpenalty::C::140P
+club+line::N::140
+widowpenalty::C::140P
+widow+line::N::140
+displaywidowpenalty::C::140P
+widow+line::N::140
+math+display::N::140
+predisplaypenalty::C::140P
+math+display::N::140
+postdisplaypenalty::C::140P
+math+display::N::140
+brokenpenalty::C::141P
+hyphenation::N::141
+hyphenpenalty::C::141
+insertpenalties::C::141P
+insertions//penalties+for::N::141B
+floating+material::N::141B
+output+routine//meaning+of+\b\tt\\insertpenalties\e\ in::N::141
+floatingpenalty::C::141P
+insertpenalties::C::141
+insertions//penalties+for::N::141E
+floating+material::N::141E
+pagegoal::C::141P
+pagetotal::C::141P
+pagedepth::C::141P
+pageshrink::C::142P
+pagestretch::C::142P
+pagefilstretch::C::142P
+pagefillstretch::C::142P
+pagefilllstretch::C::142P
+page+breaks//parameters+for::N::142E
+page+breaks::N::142E
+page+dimensions::N::142B
+hsize::C::142P
+vsize::C::142P
+pagegoal::C::142
+page+dimensions::N::142E
+hoffset::C::142P
+voffset::C::142P
+page+origin::N::142
+origin::N::*page+origin
+topskip::C::143P
+parskip::C::143P
+paragraph+skip::N::143
+paragraphs//glue+between::N::143
+maxdepth::C::143P
+device+drivers//page+origin+known+to::N::143
+page+numbering::N::144B
+pageno::C::144P
+count0::C::144
+shipout//{\tt\\count} registers displayed at::C::144
+advancepageno::C::144P
+nopagenumbers::C::144P
+folio::C::145P
+pageno::C::145
+page+numbering::N::145E
+headline::C::145P
+footline::C::145P
+mark::C::146P
+marks::N::146B
+firstmark::C::146P
+botmark::C::146P
+topmark::C::146P
+mark::C::146
+box255::C::146
+splitfirstmark::C::146P
+splitbotmark::C::146P
+marks//for+split+lists::N::146
+mark+text::N::146
+mark::C::146
+vsplit::C::146
+marks::N::147E
+footnote::C::147P
+vfootnote::C::147P
+reference+mark::N::147
+insertions//commands+for::N::148B
+topinsert::C::148P
+midinsert::C::148P
+pageinsert::C::148P
+floating+material::N::148
+endinsert::C::149P
+insert::C::149P
+topinsert::C::149
+midinsert::C::149
+pageinsert::C::149
+footnote::C::149
+vfootnote::C::149
+newinsert::C::149
+output+routine::N::149
+ifvoid::C::149
+insertions//commands+for::N::150E
+output+routine::N::150B
+output::C::150P
+box255::C::150
+plainoutput::C::150P
+output+routine//default+in+\plainTeX::N::150
+output::C::150
+shipout::C::150P
+\dvifile//receives+boxes+from+\b\tt\\shipout\e::N::150
+write//expanded during {\tt\\shipout}::C::150
+deadcycles::C::150P
+shipout::C::150
+maxdeadcycles::C::150P
+outputpenalty::C::151P
+holdinginserts::C::151P
+output+routine::N::151E
+vsplit::C::151P
+page+breaks//in+split+lists::N::151
+pagegoal::C::151
+splitmaxdepth::C::152P
+maxdepth::C::152
+splittopskip::C::152P
+topskip::C::152
+space//producing::N::155B
+horizontal+space::N::155B
+thinspace::C::155P
+negthinspace::C::155P
+enspace::C::156P
+en::N::156
+enskip::C::156P
+quad::C::156P
+qquad::C::156P
+en::N::156
+horizontal+space::N::156E
+vertical+space::N::156B
+smallskip::C::156P
+medskip::C::156P
+bigskip::C::156P
+smallskipamount::C::157P
+medskipamount::C::157P
+bigskipamount::C::157P
+baselineskip//and {\tt\\smallskipamount}, etc.::C::157
+vertical+space::N::157E
+hskip::C::157P
+vskip::C::157P
+vertical+skip::N::157
+vertical+glue::N::157
+horizontal+skip::N::157
+horizontal+glue::N::157
+horizontal+space::N::157B
+vertical+space::N::157B
+hglue::C::158P
+vglue::C::158P
+vertical+glue::N::158
+horizontal+glue::N::158
+topglue::C::158
+topglue::C::158P
+\newTeX::N::158
+kern::C::159P
+kerns::N::159
+hglue::C::159
+vglue::C::159
+line+breaks//kerns+at::N::159
+page+breaks//kerns+at::N::159
+hfil::C::159P
+hfill::C::159P
+vfil::C::159P
+vfill::C::159P
+glue//infinitely+stretchable::N::159B
+glue//infinitely+stretchable::N::160E
+hss::C::160P
+vss::C::160P
+hfilneg::C::161P
+vfilneg::C::161P
+glue//negative::N::161
+hfil::C::161
+space//producing::N::161E
+horizontal+space::N::161E
+vertical+space::N::161E
+box+commands::N::162B
+hboxes//constructing+with+\b\tt\\hbox\e::N::162
+hbox::C::162P
+hbox::C::162P
+hbox::C::162P
+hfil::C::162
+vtop::C::163P
+vtop::C::163P
+vtop::C::163P
+vbox::C::163P
+vbox::C::163P
+vbox::C::163P
+hbox//constructing+with+\b\tt\\hbox\e::N::163
+moveright::C::163
+moveleft::C::163
+vfil//filling a vbox::C::164
+boxmaxdepth::C::164
+boxmaxdepth::C::165P
+underbar::C::165P
+everyhbox::C::166P
+everyvbox::C::166P
+box+registers::N::166B
+setbox::C::166P
+box::C::166P
+assignments//of+boxes::N::166
+copy::C::166P
+boxes//copying::N::166
+box::C::167
+unhbox::C::167P
+unvbox::C::167P
+boxes//extracting+contents+of::N::167
+unhcopy::C::167P
+unvcopy::C::167P
+boxes//extracting+contents+of::N::167
+boxes//copying::N::167
+box+registers::N::168E
+moveleft::C::168P
+moveright::C::168P
+boxes//shifting::N::168B
+lower::C::168P
+raise::C::168P
+boxes//shifting::N::169E
+box+registers::N::169B
+dimensions//of+box+registers::N::169B
+ht::C::169P
+dp::C::169P
+wd::C::169P
+height::N::169
+depth::N::169
+width::N::169
+box+registers::N::169E
+dimensions//of+box+registers::N::169E
+struts::N::169B
+strut::C::169P
+offinterlineskip::C::169
+mathstrut::C::170P
+strut::C::170
+struts::N::170E
+phantom::C::170P
+boxes//phantom::N::170B
+phantoms::N::170B
+hphantom::C::171P
+vphantom::C::171P
+smash::C::171P
+boxes//phantom::N::171E
+phantoms::N::171E
+boxes//empty::N::171
+null::C::171P
+boxes//overfull::N::172B
+boxes//underfull::N::172B
+overfullrule::C::172P
+hbadness::C::172P
+vbadness::C::172P
+badness::C::172P
+hfuzz::C::173P
+vfuzz::C::173P
+boxes//overfull::N::173
+boxes//overfull::N::173E
+boxes//underfull::N::173E
+box+commands::N::173E
+boxes//last+box+in+a+list::N::173
+kerns//last+kern+in+a+list::N::173
+penalties//last+penalty+in+a+list::N::173
+glue//last+glue+item+in+a+list::N::173
+lastkern::C::173P
+lastskip::C::173P
+lastpenalty::C::173P
+lastbox::C::173P
+unkern::C::174P
+unskip::C::174P
+unpenalty::C::174P
+lastbox::C::174
+unbox::C::174
+rules::N::174B
+horizontal+rules::N::174B
+vertical+rules::N::174B
+hrule::C::174P
+hrule::C::174P
+vrule::C::174P
+vrule::C::174P
+horizontal+mode//rules+in::N::175
+vertical+mode//rules+in::N::175
+rules::N::175E
+horizontal+rules::N::175E
+vertical+rules::N::175E
+leaders::N::176B
+leaders::C::176P
+cleaders::C::176P
+xleaders::C::176P
+dotfill::C::177P
+hrulefill::C::177P
+fill::N::177
+leftarrowfill::C::177P
+rightarrowfill::C::177P
+fill::N::177
+arrows::N::177
+leaders::N::178E
+tabbing+alignments::N::178B
+alignments//commands+for::N::178B
++::C::178P
+tabalign::C::178P
+settabs::C::178P
+settabs::C::178P
+tabs::N::178
+cleartabs::C::179P
+tabbing+alignments::N::179E
+halign::C::180P
+halign::C::180P
+halign::C::180P
+preamble::N::180
+template::N::180B
+entry+(column+or+row)::N::180B
+valign::C::181P
+valign::C::181P
+valign::C::181P
+preamble::N::181
+template::N::181B
+row::N::181
+entry+(column+or+row)::N::181E
+struts//in+vertical+alignments::N::181
+ialign::C::182P
+halign::C::182
+cr::C::182P
+everycr::C::182
+endline::C::182P
+cr::C::182
+crcr::C::182P
+cr::C::182
+noalign::C::182
+omit::C::183P
+span::C::183P
+multispan::C::184
+multispan::C::184P
+template::N::184E
+noalign::C::185P
+noalign::C::185P
+openup::C::185
+tabskip::C::186P
+hidewidth::C::186P
+everycr::C::187P
+alignments//commands+for::N::187E
+math::N::189B
+Greek+letters::N::189B
+alpha::C::189P
+beta::C::189P
+chi::C::189P
+delta::C::189P
+Delta::C::189P
+epsilon::C::189P
+varepsilon::C::189P
+eta::C::189P
+gamma::C::189P
+Gamma::C::189P
+iota::C::189P
+kappa::C::189P
+lambda::C::189P
+Lambda::C::189P
+mu::C::189P
+nu::C::189P
+omega::C::189P
+Omega::C::189P
+phi::C::189P
+varphi::C::189P
+Phi::C::189P
+pi::C::189P
+varpi::C::189P
+Pi::C::189P
+psi::C::189P
+Psi::C::189P
+rho::C::189P
+varrho::C::189P
+sigma::C::189P
+varsigma::C::189P
+Sigma::C::189P
+tau::C::189P
+theta::C::189P
+vartheta::C::189P
+Theta::C::189P
+upsilon::C::189P
+Upsilon::C::189P
+xi::C::189P
+Xi::C::189P
+zeta::C::189P
+omicron::N::190
+beta::N::190
+Greek+letters::N::190E
+infty::C::190P
+Re::C::190P
+Im::C::190P
+angle::C::190P
+triangle::C::190P
+backslash::C::190P
+vert::C::190P
+|::C::190P
+Vert::C::190P
+emptyset::C::190P
+bot::C::190P
+top::C::190P
+exists::C::190P
+forall::C::190P
+hbar::C::190P
+ell::C::190P
+aleph::C::190P
+imath::C::190P
+jmath::C::190P
+nabla::C::190P
+neg::C::190P
+lnot::C::190P
+'::T::190P
+prime::C::190P
+partial::C::190P
+surd::C::190P
+wp::C::190P
+flat::C::190P
+sharp::C::190P
+natural::C::190P
+clubsuit::C::190P
+diamondsuit::C::190P
+heartsuit::C::190P
+spadesuit::C::190P
+music+symbols::N::190
+card+suits::N::190
+ordinary+symbol::N::190
+Vert::C::191
+neg::C::191
+lnot::C::191
+|::T::191
+bigm::C::191
+operations::N::191B
+vee::C::191P
+wedge::C::191P
+amalg::C::191P
+cap::C::191P
+cup::C::191P
+uplus::C::191P
+sqcap::C::191P
+sqcup::C::191P
+dagger::C::191P
+ddagger::C::191P
+land::C::191P
+lor::C::191P
+cdot::C::191P
+diamond::C::191P
+bullet::C::191P
+circ::C::191P
+bigcirc::C::191P
+odot::C::191P
+ominus::C::191P
+oplus::C::191P
+oslash::C::191P
+otimes::C::191P
+pm::C::191P
+mp::C::191P
+triangleleft::C::191P
+triangleright::C::191P
+bigtriangledown::C::191P
+bigtriangleup::C::191P
+ast::C::191P
+star::C::191P
+times::C::191P
+div::C::191P
+setminus::C::191P
+wr::C::191P
+*::C::192P
+operations::N::192E
+relations::N::192B
+asymp::C::192P
+cong::C::192P
+dashv::C::192P
+vdash::C::192P
+perp::C::192P
+mid::C::192P
+parallel::C::192P
+doteq::C::192P
+equiv::C::192P
+ge::C::192P
+geq::C::192P
+le::C::192P
+leq::C::192P
+gg::C::192P
+ll::C::192P
+models::C::192P
+ne::C::192P
+neq::C::192P
+notin::C::192P
+in::C::192P
+ni::C::192P
+owns::C::192P
+prec::C::192P
+preceq::C::192P
+succ::C::192P
+succeq::C::192P
+bowtie::C::192P
+propto::C::192P
+approx::C::192P
+sim::C::192P
+simeq::C::192P
+frown::C::192P
+smile::C::192P
+subset::C::192P
+subseteq::C::192P
+supset::C::192P
+supseteq::C::192P
+sqsubseteq::C::192P
+sqsupseteq::C::192P
+=::T::193
+asymp::C::193
+cong::C::193
+equiv::C::193
+=::T::193
+ge::C::193
+geq::C::193
+le::C::193
+leq::C::193
+prec::C::193
+preceq::C::193
+succ::C::193
+succeq::C::193
+approx::C::193
+sim::C::193
+simeq::C::193
+subset::C::193
+subseteq::C::193
+supset::C::193
+supseteq::C::193
+sqsubseteq::C::193
+sqsupseteq::C::193
+relations::N::193E
+delimiters::N::193B
+lbrace::C::193P
+{::C::193P
+rbrace::C::193P
+}::C::193P
+lbrack::C::193P
+rbrack::C::193P
+langle::C::193P
+rangle::C::193P
+lceil::C::193P
+rceil::C::193P
+lfloor::C::193P
+rfloor::C::193P
+opening::N::193
+closing::N::193
+delimiters::N::194E
+arrows::N::194B
+leftarrow::C::194P
+gets::C::194P
+Leftarrow::C::194P
+rightarrow::C::194P
+to::C::194P
+Rightarrow::C::194P
+leftrightarrow::C::194P
+Leftrightarrow::C::194P
+longleftarrow::C::194P
+Longleftarrow::C::194P
+longrightarrow::C::194P
+Longrightarrow::C::194P
+longleftrightarrow::C::194P
+Longleftrightarrow::C::194P
+iff::C::194P
+hookleftarrow::C::194P
+hookrightarrow::C::194P
+leftharpoondown::C::194P
+rightharpoondown::C::194P
+leftharpoonup::C::194P
+rightharpoonup::C::194P
+rightleftharpoons::C::194P
+mapsto::C::194P
+longmapsto::C::194P
+downarrow::C::194P
+Downarrow::C::194P
+uparrow::C::194P
+Uparrow::C::194P
+updownarrow::C::194P
+Updownarrow::C::194P
+nearrow::C::194P
+searrow::C::194P
+nwarrow::C::194P
+swarrow::C::194P
+arrows::N::195E
+functions,+names+of::N::195B
+cos::C::195P
+sin::C::195P
+tan::C::195P
+cot::C::195P
+csc::C::195P
+sec::C::195P
+arccos::C::195P
+arcsin::C::195P
+arctan::C::195P
+cosh::C::195P
+coth::C::195P
+sinh::C::195P
+tanh::C::195P
+det::C::195P
+dim::C::195P
+exp::C::195P
+ln::C::195P
+log::C::195P
+lg::C::195P
+arg::C::195P
+deg::C::195P
+gcd::C::195P
+hom::C::195P
+ker::C::195P
+inf::C::195P
+sup::C::195P
+lim::C::195P
+liminf::C::195P
+limsup::C::195P
+max::C::195P
+min::C::195P
+Pr::C::195P
+bmod::C::195P
+modulus::N::195
+pmod::C::196P
+modulus::N::196
+functions,+names+of::N::196E
+operators//large::N::196B
+bigcap::C::196P
+bigcup::C::196P
+bigodot::C::196P
+bigoplus::C::196P
+bigotimes::C::196P
+bigsqcup::C::196P
+biguplus::C::196P
+bigvee::C::196P
+bigwedge::C::196P
+coprod::C::196P
+smallint::C::196P
+int::C::196P
+oint::C::196P
+prod::C::196P
+sum::C::196P
+text+style::N::196
+display+style::N::196
+Sigma::C::196
+Pi::C::196
+limits::N::196
+limits::C::197P
+nolimits::C::197P
+int::C::197
+oint::C::197
+int//limits after::C::197
+displaylimits::C::197P
+operators//large::N::198E
+punctuation+in+math+formulas::N::198B
+cdotp::C::198P
+ldotp::C::198P
+cdot::C::198
+colon::C::198P
+punctuation+in+math+formulas::N::198E
+superscripts::N::199B
+subscripts::N::199B
+_::T::199P
+sb::C::199P
+^::T::199P
+sp::C::199P
+lower+limits::N::199
+upper+limits::N::199
+script+style::N::199
+scriptscript+style::N::199
+scriptstyle::C::199
+scriptscriptstyle::C::199
+lim::C::199
+det::C::199
+superscripts::N::199E
+subscripts::N::199E
+styles::N::200B
+textstyle::C::200P
+scriptstyle::C::200P
+scriptscriptstyle::C::200P
+displaystyle::C::200P
+text+style::N::200
+script+style::N::200
+scriptscript+style::N::200
+display+style::N::200
+mathchoice::C::200P
+mathpalette::C::200P
+math+symbols::N::200
+styles::N::201E
+accents::N::201
+math//accents::N::201
+acute+accent::N::201
+acute::C::201P
+bar-under+accent::N::201
+b::C::201P
+bar+accent::N::201
+bar::C::201P
+breve+accent::N::201
+breve::C::201P
+check+accent::N::201
+check::C::201P
+double+dot+accent::N::201
+ddot::C::201P
+dot+accent::N::201
+dot::C::201P
+grave+accent::N::201
+grave::C::201P
+hat+accent::N::201
+hat::C::201P
+wide+hat+accent::N::201
+widehat::C::201P
+tilde+accent::N::201
+tilde::C::201P
+wide+tilde+accent::N::201
+widetilde::C::201P
+vector+accent::N::201
+vec::C::201P
+mathaccent::C::201P
+fractions::N::202B
+stacking+subformulas::N::202B
+over::C::202P
+atop::C::202P
+above::C::202P
+choose::C::202P
+brace::C::202P
+brack::C::202P
+fractions//produced+by+\b\tt\\over\e::N::202
+overwithdelims::C::203P
+atopwithdelims::C::203P
+abovewithdelims::C::203P
+cases::C::203P
+combinations,+notation+for::N::203
+underbrace::C::204P
+overbrace::C::204P
+underline::C::204P
+overline::C::204P
+overleftarrow::C::204P
+overrightarrow::C::204P
+braces::N::204
+arrows::N::204
+buildrel::C::204P
+relations//putting+formulas+above::N::204
+fractions::N::204E
+stacking+subformulas::N::204E
+dots::N::205B
+ldots::C::205P
+cdots::C::205P
+dots::N::205
+vdots::C::205P
+ddots::C::205P
+dots::N::205E
+delimiters::N::206B
+lgroup::C::206P
+rgroup::C::206P
+parentheses::N::206
+left::C::206P
+right::C::206P
+over::C::206
+nulldelimiterspace::C::206
+delimiter::C::206P
+mathcode::C::207
+delimiterfactor::C::207P
+delimitershortfall::C::207P
+delimiters//height+of::N::207
+delimiters::N::207E
+matrix::C::207P
+pmatrix::C::207P
+bordermatrix::C::207P
+matrix::N::207
+sqrt::C::208P
+root::C::209P
+radical::C::209P
+delimiter+codes::N::209
+delcode::C::209
+eqno::C::209P
+leqno::C::209P
+displays//multiline::N::210B
+displaylines::C::210P
+eqalign::C::210P
+eqalignno::C::210P
+leqalignno::C::210P
+equation+numbers::N::210
+displays//multiline::N::211E
+fonts::N::211
+cal::C::211P
+mit::C::211P
+oldstyle::C::211P
+Greek+letters::N::211
+type+styles::N::212
+itfam::C::212P
+bffam::C::212P
+slfam::C::212P
+ttfam::C::212P
+fam::C::212P
+class::N::212
+family//given+by+\b\tt\\fam\e::N::212
+textfont::C::212P
+scriptfont::C::212P
+scriptscriptfont::C::212P
+text+style::N::212
+script+style::N::212
+scriptscript+style::N::212
+big::C::213P
+bigl::C::213P
+bigm::C::213P
+bigr::C::213P
+Big::C::213P
+Bigl::C::213P
+Bigm::C::213P
+Bigr::C::213P
+bigg::C::213P
+biggl::C::213P
+biggm::C::213P
+biggr::C::213P
+Bigg::C::213P
+Biggl::C::213P
+Biggm::C::213P
+Biggr::C::213P
+delimiters//enlarging::N::213
+downbracefill::C::213P
+upbracefill::C::213P
+horizontal+braces::N::213
+braces::N::213
+overbrace::C::214
+underbrace::C::214
+arrowvert::C::214P
+Arrowvert::C::214P
+lmoustache::C::214P
+rmoustache::C::214P
+bracevert::C::214P
+delimiters//parts+of::N::214
+cmex10::T::214
+accents//aligning::N::214B
+skew::C::214P
+skewchar::C::215P
+defaultskewchar::C::215P
+metrics+file//default+skew+character+in::N::215
+font::C::215
+skewchar::C::215
+accents//aligning::N::215E
+vcenter::C::215P
+axis::N::215
+space//in+math+formulas::N::216B
+!::C::216P
+,::C::216P
+>::C::216P
+;::C::216P
+extra+space::N::216
+thinmuskip::C::216P
+medmuskip::C::216P
+thickmuskip::C::216P
+jot::C::217P
+mkern::C::217P
+kerns//in+math+formulas::N::217
+mskip::C::217P
+glue::N::217
+nonscript::C::217P
+space//in+math+formulas::N::218E
+displays//spacing+parameters+for::N::218B
+displaywidth::C::218P
+displayindent::C::218P
+predisplaysize::C::218P
+abovedisplayskip::C::219P
+belowdisplayskip::C::219P
+abovedisplayshortskip::C::219P
+belowdisplayshortskip::C::219P
+displays//spacing+parameters+for::N::219E
+mathsurround::C::219P
+nulldelimiterspace::C::219P
+delimiters//null,+space+for::N::219
+scriptspace::C::220P
+nonscript::C::220
+mathord::C::220P
+mathop::C::220P
+mathbin::C::220P
+mathrel::C::220P
+mathopen::C::220P
+mathclose::C::220P
+mathpunct::C::220P
+class::N::220
+mathinner::C::220P
+everymath::C::220P
+everydisplay::C::220P
+displays//actions+for+every+display::N::220
+math::N::221E
+programming+features::N::223
+fonts//naming+and+modifying::N::223B
+font::C::223P
+font::C::223P
+font::C::223P
+font::C::223P
+metrics+file::N::223
+\tfmfile::N::223
+device+drivers::N::224
+resident+fonts::N::224
+fontdimen::C::224P
+fonts//parameters+of::N::224
+magnification::C::225P
+mag::C::225P
+scale+factor::N::225
+hsize//set by {\tt\\magnification}::C::225
+vsize//set by {\tt\\magnification}::C::225
+magstep::C::225
+magstephalf::C::225
+magstep::C::225P
+magstephalf::C::226P
+fonts//naming+and+modifying::N::226E
+numbers//converting+to+characters::N::226B
+number::C::226P
+Roman+numerals::N::226
+romannumeral::C::226P
+numbers//converting+to+characters::N::226E
+time+of+day::N::226
+time::C::226P
+date::N::227B
+day::C::227P
+month::C::227P
+year::C::227P
+date::N::227E
+version+number::N::227
+fmtname::C::227P
+fmtversion::C::227P
+\LaTeX::N::227
+jobname::C::227P
+auxiliary+files::N::228
+meaning::C::228P
+tokens//showing+the+meaning+of::N::228
+the::C::228
+string::C::228P
+control+sequences//converting+to+strings::N::228
+escapechar::C::228
+escape+character//represented+by+\b\tt\\escapechar\e::N::228
+csname::C::228
+escapechar::C::228P
+escape+character//represented+by+\b\tt\\escapechar\e::N::228
+backslash::N::229
+fontname::C::229P
+fonts//names+of::N::229
+groups::N::229B
+begingroup::C::229P
+endgroup::C::229P
+macros//using+\b\tt\\begingroup\e\ and+\b\tt\\endgroup\e\ in::N::229
+{::T::229P
+bgroup::C::229P
+}::T::229P
+egroup::C::229P
+macros//using+\b\tt\\bgroup\e\ and+\b\tt\\egroup\e\ in::N::230
+global::C::230P
+globaldefs::C::230P
+gdef::C::231
+xdef::C::231
+global::C::231
+global::C::231
+aftergroup::C::231P
+groups::N::231E
+afterassignment::C::231P
+macros::N::232B
+macros//defining::N::232B
+def::C::232P
+edef::C::232P
+noexpand::C::233
+expandafter::C::233
+write//expanded by {\tt\\edef} rules::C::233
+message//expanded by {\tt\\edef} rules::C::233
+errmessage//expanded by {\tt\\edef} rules::C::233
+wlog//expanded by {\tt\\edef} rules::C::233
+csname//expanded by {\tt\\edef} rules::C::233
+gdef::C::233P
+xdef::C::233P
+long::C::233P
+par//in macro arguments::C::233
+outer::C::234P
+outer::N::234
+chardef::C::234P
+characters//defined+by+\b\tt\\chardef\e::N::234
+math+characters::N::234
+mathcodes::N::234
+mathchardef::C::234P
+macros//defining::N::234E
+let::C::234P
+control+sequences//defining+with+\b\tt\\let\e::N::234
+futurelet::C::234P
+csname::C::235P
+string::C::235
+macros//controlling+expansion+of::N::235B
+expandafter::C::235P
+{//with {\tt\\expandafter}::T::235
+string::C::235
+noexpand::C::236P
+the::C::236P
+parameters//using+\b\tt\\the\e\ with::N::236
+registers//with+\b\tt\\the\e::N::236
+hyphenchar::C::236
+skewchar::C::236
+lastpenalty::C::236
+lastskip::C::236
+lastkern::C::236
+chardef::C::236
+mathchardef::C::236
+macros//controlling+expansion+of::N::237E
+conditional+tests::N::237B
+if::C::237P
+ifcat::C::237P
+category+codes//testing::N::237
+ifx::C::238P
+long::C::238
+outer::C::238
+ifnum::C::239P
+numbers//comparing::N::239
+ifodd::C::239P
+numbers//testing+for+odd/even::N::239
+ifdim::C::239P
+dimensions//comparing::N::239
+ifhmode::C::240P
+ifvmode::C::240P
+ifmmode::C::240P
+ifinner::C::240P
+horizontal+mode//testing+for::N::240
+vertical+mode//testing+for::N::240
+math+mode//testing+for::N::240
+internal+mode//testing+for::N::240
+ifhbox::C::240P
+ifvbox::C::240P
+ifvoid::C::240P
+hboxes//testing+for::N::240
+vboxes//testing+for::N::240
+boxes//testing+if+void::N::240
+ifeof::C::241P
+end+of+file,+testing+for::N::241
+ifcase::C::241P
+case+testing::N::241
+iftrue::C::241P
+iffalse::C::241P
+else::C::241P
+fi::C::242P
+newif::C::242P
+conditional+tests::N::242E
+repeated+actions::N::242B
+loops::N::242B
+loop::C::242P
+repeat::C::242P
+repeated+actions::N::243E
+loops::N::243E
+relax::C::243P
+empty::C::243P
+macros::N::243E
+registers::N::244B
+count::C::244P
+dimen::C::244P
+skip::C::244P
+muskip::C::244P
+toks::C::244P
+toks::C::244P
+count::C::244P
+dimen::C::244P
+skip::C::244P
+muskip::C::244P
+toks::C::244P
+assignments//of+registers::N::244
+the::C::244
+newcount::C::244
+count+registers::N::244
+dimension+registers::N::244
+skip+registers::N::245
+muskip+registers::N::245
+mu::T::245
+token+registers::N::245
+the::C::245
+maxdimen::C::246P
+dimensions//maximum::N::246
+registers//reserving::N::246B
+newcount::C::246P
+newdimen::C::246P
+newskip::C::246P
+newmuskip::C::246P
+newtoks::C::246P
+newbox::C::246P
+newread::C::246P
+newwrite::C::246P
+newfam::C::246P
+newinsert::C::246P
+newlanguage::C::246P
+count+registers//reserved+by+\b\tt\\newcount\e::N::246
+dimension+registers//reserved+by+\b\tt\\newdimen\e::N::246
+skip+registers//reserved+by+\b\tt\\newskip\e::N::246
+muskip+registers//reserved+by+\b\tt\\newmuskip\e::N::246
+token+registers//reserved+by+\b\tt\\newtoks\e::N::246
+box+registers//reserved+by+\b\tt\\newbox\e::N::246
+input+streams//reserved+by+\b\tt\\newread\e::N::246
+output+streams//reserved+by+\b\tt\\newwrite\e::N::246
+family//reserved+by+\b\tt\\newfam\e::N::246
+insertions//numbers+reserved+by+\b\tt\\newinsert\e::N::246
+countdef::C::247P
+dimendef::C::247P
+skipdef::C::247P
+muskipdef::C::247P
+toksdef::C::247P
+registers//reserving::N::247E
+arithmetic::N::247B
+registers//arithmetic+in::N::247B
+advance::C::247P
+advance::C::247P
+advance::C::247P
+advance::C::247P
+multiply::C::248P
+divide::C::248P
+count::C::248
+dimen::C::248
+skip::C::248
+muskip::C::248
+skip::C::248
+muskip::C::248
+arithmetic::N::248E
+registers//arithmetic+in::N::248E
+registers::N::248E
+ending+the+job::N::248
+bye::C::248P
+end::C::249P
+files::N::249B
+input+files::N::249B
+input::C::249P
+endinput::C::249P
+inputlineno::C::249P
+openin::C::249P
+input+streams//opening::N::250
+closein::C::250P
+read::C::250P
+input+streams//reading+with+\b\tt\\read\e::N::250
+reading+a+file::N::250
+openin::C::250
+input+files::N::250E
+output+files::N::251B
+openout::C::251P
+output+streams//opening::N::251
+immediate::C::251
+closeout::C::251P
+output+streams//closing::N::251
+immediate::C::251
+write::C::251P
+output+streams//writing::N::251
+writing+a+file::N::251
+immediate::C::251
+escapechar::C::252
+log+file//written+by+\b\tt\\write\e::N::252
+immediate::C::252P
+write//with {\tt\\immediate}::C::252
+openout//with {\tt\\immediate}::C::252
+closeout//with {\tt\\immediate}::C::252
+special::C::252P
+device+drivers//instructions+from+\b\tt\\special\e::N::252
+device+drivers::N::252
+newlinechar::C::252P
+files::N::253E
+output+files::N::253E
+catcode::C::253P
+category+codes//in+\b\tt\\catcode\e\ table::N::253
+active::C::253P
+mathcode::C::253P
+delcode::C::253P
+delimiter+codes::N::253
+mathcode::C::254
+endlinechar::C::254P
+input+lines::N::254
+ignorespaces::C::254P
+controlling+\TeX::N::254B
+running+\TeX::N::254B
+errorstopmode::C::254P
+scrollmode::C::254P
+nonstopmode::C::255P
+batchmode::C::255P
+pausing::C::255P
+show::C::255
+running+\TeX::N::255E
+controlling+\TeX::N::255E
+tracing::N::255B
+debugging::N::255B
+diagnostic+aids::N::255B
+show::C::255P
+showthe::C::255P
+showbox::C::255P
+showlists::C::255P
+tokens//displayed+by+\b\tt\\show\e::N::255
+terminal::N::256
+tracingonline::C::256
+tracingonline::C::256
+showboxbreadth::C::256
+showboxdepth::C::256
+tracingonline::C::258P
+showbox::C::258
+showlists::C::258
+tracingcommands::C::259P
+tracingonline::C::259
+tracinglostchars::C::259P
+tracingonline::C::260
+tracingmacros::C::260P
+macros//tracing::N::260
+tracingonline::C::260
+tracingoutput::C::260P
+\dvifile//boxes+recorded+in+log+file::N::260
+tracingonline::C::260
+showboxbreadth::C::260
+showboxdepth::C::260
+extra+space::N::260
+tracingpages::C::261P
+page+breaks//tracing::N::261
+tracingonline::C::261
+tracingparagraphs::C::262P
+line+breaking//tracing::N::262
+tracingonline::C::262
+tracingrestores::C::262P
+tracingonline::C::262
+tracingstats::C::262P
+shipout::C::262
+log+file//tracing+statistics+in::N::262
+tracingonline::C::262
+tracingall::C::263P
+tracingonline::C::263
+showboxbreadth::C::263P
+showbox::C::263
+tracingoutput::C::263
+showboxdepth::C::263P
+showbox::C::263
+showlists::C::263
+tracing::N::263E
+debugging::N::263E
+diagnostic+aids::N::263E
+messages,+sending::N::263B
+error+messages::N::263B
+message::C::263P
+errmessage::C::263P
+newlinechar::C::264
+wlog::C::264P
+log+file//written+by+\b\tt\\wlog\e::N::264
+errhelp::C::264P
+newlinechar::C::264
+newhelp::C::264P
+help+message::N::264
+help+text::N::264
+errhelp::C::264
+errorcontextlines::C::265P
+messages,+sending::N::265E
+error+messages::N::265E
+dump::C::265P
+format+file::N::265
+virtex::T::265
+initex::T::265
+everyjob::C::265P
+page+breaks//bad::N::267B
+vbox//fixing page breaks with::C::267
+nobreak::C::268
+eject::C::268
+vadjust::C::268
+vfill::C::268
+filbreak::C::268
+looseness::C::269
+vadjust::C::269
+looseness::C::269
+parskip::C::269
+baselineskip//and preserving end of page::C::269
+vertical+space//reserving+at+top+of+page::N::269
+page+breaks//glue+at::N::270
+topglue::C::270
+page+breaks//bad::N::270E
+line+breaks//bad::N::270B
+break//correcting line breaks with::C::270
+~::T::270
+-//in+line+breaking::C::270
+discretionary+hyphens//bad+line+breaks,+correcting+with::N::270
+hbox::C::270
+underfull+boxes::N::270
+overfull+boxes::N::270
+line+breaks//bad::N::270E
+overfull+boxes::N::270B
+underfull+boxes::N::270B
+boxes//overfull::N::270B
+boxes//underfull::N::270B
+emergencystretch::C::270
+discretionary+hyphens//overfull+boxes,+correcting+with::N::271
+hfuzz::C::271
+raggedright::C::271
+parskip::C::271
+vfuzz::C::271
+hbox//overfull box from::C::271B
+vbox//overfull box from::C::271B
+hss::C::272
+vss::C::272
+hfil::C::272
+vfil::C::272
+hbox//overfull box from::C::272E
+vbox//overfull box from::C::272E
+boxes//overfull::N::272E
+boxes//underfull::N::272E
+overfull+boxes::N::272E
+underfull+boxes::N::272E
+space//lost::N::272
+words+run+together::N::272
+control+space::N::272
+space//unwanted::N::272B
+braces//space+after::N::272
+category+codes//cause+of+unwanted+spaces::N::272
+%//to eliminate unwanted spaces::T::272
+space//unwanted::N::273E
+math+display::N::273
+abovedisplayskip::C::273
+abovedisplayshortskip::C::273
+paragraphs//shaping::N::274B
+hangindent::C::274
+leftskip::C::274
+line+breaking::N::274
+narrower::C::274
+hang::C::274
+par//when changing paragraph shape::C::274
+paragraphs//shaping::N::274E
+restricted+mode//horizontal::N::274
+rules::N::275B
+hrule::C::275
+vrule::C::275
+rules::N::275E
+headers//multiple-line::N::276B
+footers//multiple-line::N::276B
+headline::C::276
+footline::C::276
+makeheadline::C::276
+voffset::C::276
+vsize::C::276
+makefootline::C::276
+vsize::C::276
+headers//multiple-line::N::277E
+footers//multiple-line::N::277E
+braces//mismatched::N::277B
+braces//mismatched::N::277E
+\<dimen>::N::278B
+\<dimen>::N::278E
+fonts//composite::N::278B
+fonts//composite::N::279E
+verbatim+text::N::279
+computer+programs,+typesetting::N::279
+category+codes//for+verbatim+text::N::279
+obeyspaces::C::280
+obeylines::C::280
+obeywhitespace::C::280
+whitespace,+preserving::N::280
+break//end of line as::C::280
+forbidden+control+sequence::N::281
+incomplete+conditional::N::281
+macros//outer::N::281
+outer::C::281
+alignments//outer+control+sequence+in::N::281
+show::C::282
+category+codes//changing::N::282B
+computer+programs,+typesetting::N::282
+input+characters::N::282
+macros//arguments+of::N::282
+macros//parameters+of::N::282
+category+codes//changing::N::282E
+macros//making+readable::N::283B
+endlinechar::C::283
+space::C::283
+globaldefs::C::283
+macros//making+readable::N::283E
+error+messages::N::285B
+log+file//error+messages::N::285
+<to be read again>::T::287
+<inserted text>::T::288
+errorcontextlines::C::290
+<output>::T::290
+<write>::T::290
+error+messages::N::290E
+eplain.tex::T::293B
+category+codes//useful+definitions+for::N::293
+makeactive::C::293P
+letter::C::293P
+other::C::293P
+uncatcodespecials::C::293P
+^^M::T::293
+letreturn::C::293P
+gobble::C::293P
+gobbletwo::C::293P
+gobblethree::C::293P
+loggingall::C::294P
+tracingboxes::C::294P
+ehrule::C::294P
+evrule::C::294P
+rules//thickness+of::N::294
+write//writing \b\tt\%\e\ with::C::294
+%//writing out::T::294
+percentchar::C::294
+^^L::T::294
+tokstostring::C::294P
+character+tokens::N::294
+spacesub::C::295P
+ifempty::C::295P
+for::C::295
+for+loop::N::295
+obeywhitespace::C::295P
+obeylines::C::295
+obeyspaces::C::295
+space+characters::N::295
+fontdimen::C::295
+font::C::295
+letreturn::C::295
+frac::C::296P
+fractions//slashed+form::N::296
+Knuth,+Donald+E.::N::296
+LaTeX::C::296P
+AMSTeX::C::296P
+BibTeX::C::296P
+MF::C::296P
+blackbox::C::296P
+makeblankbox::C::296P
+numbername::C::297P
+testfileexistence::C::297P
+files//testing+for+existence+of::N::297
+displays,+formatting::N::297
+leftdisplays::C::297P
+centereddisplays::C::297P
+ifeqno::C::297P
+ifleqno::C::297P
+eqn::C::297P
+eq::C::297P
+leftdisplays::C::298P
+everydisplay::C::298
+displaysetup::C::298
+generaldisplay::C::298
+leftdisplays::C::299P
+displaylines::C::299
+eqalignno::C::299
+leqalignno::C::299
+halign//illegal in math mode::C::299
+vcenter::C::299
+time::C::299
+day::C::299
+month::C::299
+year::C::299
+time+of+day::N::299
+date::N::299
+monthname::C::299P
+timestring::C::299P
+timestamp::C::299P
+itemized+lists::N::300B
+enumerations::N::300B
+numberedlist::C::300P
+unorderedlist::C::300P
+li::C::300P
+listcompact::C::300P
+everydisplay::C::301
+numberedmarker::C::301P
+itemized+lists::N::302E
+enumerations::N::302E
+listing::C::302P
+setuplistinghook::C::302P
+table+of+contents::N::303
+writetocentry::C::303P
+readtocfile::C::304P
+cross-references::N::304
+xrdef::C::304P
+xrefn::C::304P
+xref::C::304P
+readreffile::C::305P
+equations,+labelling::N::306
+eqdef::C::306P
+eqref::C::306P
+eqprint::C::306P
+environments::N::306
+environment::C::307P
+newhelp::C::307
+flush+left::N::308B
+flush+right::N::308B
+centered+text::N::308B
+flushleft::C::308P
+flushright::C::308P
+center::C::308P
+aftergroup::C::309
+flush+left::N::309E
+flush+right::N::309E
+centered+text::N::309E
+makecolumns::C::309P
+valign//used in {\tt\\makecolumns}::C::310
+abovecolumnspenalty::C::310P
+footnotes::N::311
+numberedfootnote::C::311P
+vfootnote::C::311
+footnotemarkseparation::C::311P
+everyfootnote::C::311P
+double+columns::N::311
+singlecolumn::C::311P
+eplain.tex::T::313E
+primitive//command::N::315
+log+file::N::315
+ ::C::315
+!::C::315
+"::C::316
+#::T::316
+#::C::316
+$::T::316
+$::C::316
+%::T::316
+%::C::316
+&::T::316
+&::C::316
+'::T::316
+'::C::316
+*::C::316
++::C::316
+,::C::316
+-::C::316
+.::C::316
+/::C::316
+;::C::316
+=::C::316
+\::T::316
+>::C::316
+^::T::316
+^::C::316
+^^L::T::316
+^^M::T::316
+_::T::316
+_::C::316
+`::C::316
+{::T::316
+{::C::316
+|::C::316
+}::T::316
+}::C::316
+~::T::316
+~::C::316
+aa::C::316
+AA::C::316
+above::C::316
+abovedisplayshortskip::C::317
+abovedisplayskip::C::317
+abovewithdelims::C::317
+accent::C::317
+active::C::317
+acute::C::317
+adjdemerits::C::317
+advance::C::317
+advancepageno::C::317
+ae::C::317
+AE::C::317
+afterassignment::C::317
+aftergroup::C::317
+aleph::C::317
+allowbreak::C::317
+alpha::C::317
+amalg::C::317
+angle::C::317
+approx::C::317
+arccos::C::317
+arcsin::C::317
+arctan::C::317
+arg::C::317
+arrowvert::C::317
+Arrowvert::C::317
+ast::C::317
+asymp::C::317
+atop::C::317
+atopwithdelims::C::318
+b::C::318
+backslash::C::318
+badness::C::318
+bar::C::318
+baselineskip::C::318
+batchmode::C::318
+begingroup::C::318
+beginsection::C::318
+belowdisplayshortskip::C::318
+belowdisplayskip::C::318
+beta::C::318
+bf::C::318
+bffam::C::318
+bgroup::C::318
+big::C::318
+Big::C::318
+bigbreak::C::318
+bigcap::C::318
+bigcirc::C::318
+bigcup::C::318
+bigg::C::318
+Bigg::C::318
+biggl::C::318
+Biggl::C::318
+biggm::C::318
+Biggm::C::318
+biggr::C::318
+Biggr::C::318
+bigl::C::318
+Bigl::C::319
+bigm::C::319
+Bigm::C::319
+bigodot::C::319
+bigoplus::C::319
+bigotimes::C::319
+bigr::C::319
+Bigr::C::319
+bigskip::C::319
+bigskipamount::C::319
+bigsqcup::C::319
+bigtriangledown::C::319
+bigtriangleup::C::319
+biguplus::C::319
+bigvee::C::319
+bigwedge::C::319
+binoppenalty::C::319
+bmod::C::319
+bordermatrix::C::319
+bot::C::319
+botmark::C::319
+bowtie::C::319
+box::C::319
+boxmaxdepth::C::319
+brace::C::319
+bracevert::C::319
+brack::C::319
+break::C::319
+breve::C::319
+brokenpenalty::C::319
+buildrel::C::319
+bullet::C::319
+bye::C::320
+c::C::320
+cal::C::320
+cap::C::320
+cases::C::320
+catcode::C::320
+cdot::C::320
+cdotp::C::320
+cdots::C::320
+centerline::C::320
+char::C::320
+chardef::C::320
+check::C::320
+chi::C::320
+choose::C::320
+circ::C::320
+cleaders::C::320
+cleartabs::C::320
+closein::C::320
+closeout::C::320
+clubpenalty::C::320
+clubsuit::C::320
+colon::C::320
+cong::C::320
+coprod::C::320
+copy::C::320
+copyright::C::320
+cos::C::320
+cosh::C::320
+cot::C::320
+coth::C::320
+count::C::320
+countdef::C::320
+cr::C::320
+crcr::C::321
+csc::C::321
+csname::C::321
+cup::C::321
+d::C::321
+dag::C::321
+dagger::C::321
+dashv::C::321
+day::C::321
+ddag::C::321
+ddagger::C::321
+ddot::C::321
+ddots::C::321
+deadcycles::C::321
+def::C::321
+defaulthyphenchar::C::321
+defaultskewchar::C::321
+deg::C::321
+delcode::C::321
+delimiter::C::321
+delimiterfactor::C::321
+delimitershortfall::C::321
+delta::C::321
+Delta::C::321
+det::C::321
+diamond::C::321
+diamondsuit::C::321
+dim::C::321
+dimen::C::321
+dimendef::C::321
+discretionary::C::321
+displayindent::C::322
+displaylimits::C::322
+displaylines::C::322
+displaystyle::C::322
+displaywidowpenalty::C::322
+displaywidth::C::322
+div::C::322
+divide::C::322
+dot::C::322
+doteq::C::322
+dotfill::C::322
+dots::C::322
+doublehyphendemerits::C::322
+downarrow::C::322
+Downarrow::C::322
+downbracefill::C::322
+dp::C::322
+dump::C::322
+edef::C::322
+egroup::C::322
+eject::C::322
+ell::C::322
+else::C::322
+emergencystretch::C::322
+empty::C::322
+emptyset::C::322
+end::C::322
+endcsname::C::322
+endgraf::C::322
+endgroup::C::322
+endinput::C::322
+endinsert::C::323
+endline::C::323
+endlinechar::C::323
+enskip::C::323
+enspace::C::323
+epsilon::C::323
+eqalign::C::323
+eqalignno::C::323
+eqno::C::323
+equiv::C::323
+errhelp::C::323
+errmessage::C::323
+errorcontextlines::C::323
+errorstopmode::C::323
+escapechar::C::323
+eta::C::323
+everycr::C::323
+everydisplay::C::323
+everyhbox::C::323
+everyjob::C::323
+everymath::C::323
+everypar::C::323
+everyvbox::C::323
+exhyphenpenalty::C::323
+exists::C::323
+exp::C::323
+expandafter::C::323
+fam::C::324
+fi::C::324
+filbreak::C::324
+finalhyphendemerits::C::324
+firstmark::C::324
+fivebf::C::324
+fivei::C::324
+fiverm::C::324
+fivesy::C::324
+flat::C::324
+floatingpenalty::C::324
+fmtname::C::324
+fmtversion::C::324
+folio::C::324
+font::C::324
+fontdimen::C::324
+fontname::C::324
+footline::C::324
+footnote::C::324
+forall::C::324
+frenchspacing::C::324
+frown::C::324
+futurelet::C::324
+gamma::C::324
+Gamma::C::324
+gcd::C::324
+gdef::C::324
+ge::C::324
+geq::C::324
+gets::C::324
+gg::C::324
+global::C::325
+globaldefs::C::325
+goodbreak::C::325
+grave::C::325
+H::C::325
+halign::C::325
+hang::C::325
+hangafter::C::325
+hangindent::C::325
+hat::C::325
+hbadness::C::325
+hbar::C::325
+hbox::C::325
+headline::C::325
+heartsuit::C::325
+hfil::C::325
+hfill::C::325
+hfilneg::C::325
+hfuzz::C::325
+hglue::C::325
+hidewidth::C::325
+hoffset::C::325
+holdinginserts::C::325
+hom::C::325
+hookleftarrow::C::325
+hookrightarrow::C::325
+hphantom::C::325
+hrule::C::325
+hrulefill::C::325
+hsize::C::326
+hskip::C::326
+hss::C::326
+ht::C::326
+hyphenation::C::326
+hyphenchar::C::326
+hyphenpenalty::C::326
+i::C::326
+ialign::C::326
+if::C::326
+ifcase::C::326
+ifcat::C::326
+ifdim::C::326
+ifeof::C::326
+iff::C::326
+iffalse::C::326
+ifhbox::C::326
+ifhmode::C::326
+ifinner::C::326
+ifmmode::C::326
+ifnum::C::326
+ifodd::C::326
+iftrue::C::326
+ifvbox::C::326
+ifvmode::C::326
+ifvoid::C::326
+ifx::C::326
+ignorespaces::C::326
+Im::C::326
+imath::C::326
+immediate::C::326
+in::C::326
+indent::C::327
+inf::C::327
+infty::C::327
+input::C::327
+inputlineno::C::327
+insert::C::327
+insertpenalties::C::327
+int::C::327
+interlinepenalty::C::327
+iota::C::327
+it::C::327
+item::C::327
+itemitem::C::327
+itfam::C::327
+j::C::327
+jmath::C::327
+jobname::C::327
+jot::C::327
+kappa::C::327
+ker::C::327
+kern::C::327
+l::C::327
+L::C::327
+lambda::C::327
+Lambda::C::327
+land::C::327
+langle::C::327
+language::C::327
+lastbox::C::327
+lastkern::C::327
+lastpenalty::C::327
+lastskip::C::328
+lbrace::C::328
+lbrack::C::328
+lccode::C::328
+lceil::C::328
+ldotp::C::328
+ldots::C::328
+le::C::328
+leaders::C::328
+left::C::328
+leftarrow::C::328
+Leftarrow::C::328
+leftarrowfill::C::328
+leftharpoondown::C::328
+leftharpoonup::C::328
+lefthyphenmin::C::328
+leftline::C::328
+leftrightarrow::C::328
+Leftrightarrow::C::328
+leftskip::C::328
+leq::C::328
+leqalignno::C::328
+leqno::C::328
+let::C::328
+lfloor::C::328
+lg::C::328
+lgroup::C::328
+lim::C::328
+liminf::C::328
+limits::C::329
+limsup::C::329
+line::C::329
+linepenalty::C::329
+lineskip::C::329
+lineskiplimit::C::329
+ll::C::329
+llap::C::329
+lmoustache::C::329
+ln::C::329
+lnot::C::329
+log::C::329
+long::C::329
+longleftarrow::C::329
+Longleftarrow::C::329
+longleftrightarrow::C::329
+Longleftrightarrow::C::329
+longmapsto::C::329
+longrightarrow::C::329
+Longrightarrow::C::329
+loop::C::329
+looseness::C::329
+lor::C::329
+lower::C::329
+lowercase::C::329
+lq::C::329
+mag::C::329
+magnification::C::329
+magstep::C::329
+magstephalf::C::329
+mapsto::C::329
+mark::C::329
+mathaccent::C::330
+mathbin::C::330
+mathchar::C::330
+mathchardef::C::330
+mathchoice::C::330
+mathclose::C::330
+mathcode::C::330
+mathinner::C::330
+mathop::C::330
+mathopen::C::330
+mathord::C::330
+mathpalette::C::330
+mathpunct::C::330
+mathrel::C::330
+mathstrut::C::330
+mathsurround::C::330
+matrix::C::330
+max::C::330
+maxdeadcycles::C::330
+maxdepth::C::330
+maxdimen::C::330
+meaning::C::330
+medbreak::C::330
+medmuskip::C::330
+medskip::C::331
+medskipamount::C::331
+message::C::331
+mid::C::331
+midinsert::C::331
+min::C::331
+mit::C::331
+mkern::C::331
+models::C::331
+month::C::331
+moveleft::C::331
+moveright::C::331
+mp::C::331
+mskip::C::331
+mu::C::331
+multiply::C::331
+multispan::C::331
+muskip::C::331
+muskipdef::C::331
+nabla::C::331
+narrower::C::331
+natural::C::331
+nearrow::C::331
+ne::C::331
+neg::C::331
+negthinspace::C::331
+neq::C::331
+newbox::C::331
+newcount::C::331
+newdimen::C::331
+newfam::C::331
+newhelp::C::331
+newif::C::331
+newinsert::C::332
+newlanguage::C::332
+newlinechar::C::332
+newmuskip::C::332
+newread::C::332
+newskip::C::332
+newtoks::C::332
+newwrite::C::332
+ni::C::332
+noalign::C::332
+noboundary::C::332
+nobreak::C::332
+noexpand::C::332
+noindent::C::332
+nointerlineskip::C::332
+nolimits::C::332
+nonfrenchspacing::C::332
+nonscript::C::332
+nonstopmode::C::332
+nopagenumbers::C::332
+normalbaselines::C::332
+normalbaselineskip::C::332
+normalbottom::C::332
+normallineskip::C::332
+normallineskiplimit::C::332
+not::C::332
+notin::C::333
+nu::C::333
+null::C::333
+nulldelimiterspace::C::333
+nullfont::C::333
+number::C::333
+nwarrow::C::333
+o::C::333
+O::C::333
+obeylines::C::333
+obeyspaces::C::333
+odot::C::333
+oe::C::333
+OE::C::333
+offinterlineskip::C::333
+oint::C::333
+oldstyle::C::333
+omega::C::333
+Omega::C::333
+ominus::C::333
+omit::C::333
+openin::C::333
+openout::C::333
+openup::C::333
+oplus::C::333
+or::C::333
+oslash::C::333
+otimes::C::333
+outer::C::333
+output::C::333
+outputpenalty::C::333
+over::C::333
+overbrace::C::334
+overfullrule::C::334
+overleftarrow::C::334
+overline::C::334
+overrightarrow::C::334
+overwithdelims::C::334
+owns::C::334
+P::C::334
+pagedepth::C::334
+pagefilllstretch::C::334
+pagefillstretch::C::334
+pagefilstretch::C::334
+pagegoal::C::334
+pageinsert::C::334
+pageno::C::334
+pageshrink::C::334
+pagestretch::C::334
+pagetotal::C::334
+par::C::334
+parallel::C::334
+parfillskip::C::334
+parindent::C::334
+parshape::C::334
+parskip::C::334
+partial::C::334
+pausing::C::335
+penalty::C::335
+perp::C::335
+phantom::C::335
+phi::C::335
+Phi::C::335
+pi::C::335
+Pi::C::335
+plainoutput::C::335
+pm::C::335
+pmatrix::C::335
+pmod::C::335
+postdisplaypenalty::C::335
+Pr::C::335
+prec::C::335
+preceq::C::335
+predisplaypenalty::C::335
+predisplaysize::C::335
+pretolerance::C::335
+prevdepth::C::335
+prevgraf::C::335
+prime::C::335
+proclaim::C::335
+prod::C::335
+propto::C::335
+psi::C::335
+Psi::C::335
+qquad::C::335
+quad::C::335
+radical::C::335
+raggedbottom::C::335
+raggedright::C::336
+raise::C::336
+rangle::C::336
+rbrace::C::336
+rbrack::C::336
+rceil::C::336
+Re::C::336
+read::C::336
+relax::C::336
+relpenalty::C::336
+repeat::C::336
+rfloor::C::336
+rgroup::C::336
+rho::C::336
+right::C::336
+rightarrow::C::336
+Rightarrow::C::336
+rightarrowfill::C::336
+rightharpoondown::C::336
+rightharpoonup::C::336
+rightleftharpoons::C::336
+rightline::C::336
+rightskip::C::336
+righthyphenmin::C::336
+rlap::C::336
+rm::C::336
+rmoustache::C::336
+romannumeral::C::336
+root::C::336
+rq::C::336
+S::C::336
+sb::C::337
+scriptfont::C::337
+scriptscriptfont::C::337
+scriptscriptstyle::C::337
+scriptspace::C::337
+scriptstyle::C::337
+scrollmode::C::337
+searrow::C::337
+sec::C::337
+setbox::C::337
+setlanguage::C::337
+setminus::C::337
+settabs::C::337
+sevenbf::C::337
+seveni::C::337
+sevenrm::C::337
+sevensy::C::337
+sfcode::C::337
+sharp::C::337
+shipout::C::337
+show::C::337
+showbox::C::337
+showboxbreadth::C::337
+showboxdepth::C::337
+showhyphens::C::337
+showlists::C::337
+showthe::C::337
+sigma::C::337
+Sigma::C::337
+sim::C::337
+simeq::C::337
+sin::C::338
+sinh::C::338
+skew::C::338
+skewchar::C::338
+skip::C::338
+skipdef::C::338
+sl::C::338
+slash::C::338
+slfam::C::338
+smallbreak::C::338
+smallint::C::338
+smallskip::C::338
+smallskipamount::C::338
+smash::C::338
+smile::C::338
+sp::C::338
+space::C::338
+spacefactor::C::338
+spaceskip::C::338
+spadesuit::C::338
+span::C::338
+special::C::338
+splitbotmark::C::338
+splitfirstmark::C::338
+splitmaxdepth::C::338
+splittopskip::C::338
+sqcap::C::338
+sqcup::C::338
+sqrt::C::338
+sqsubseteq::C::338
+sqsupseteq::C::339
+ss::C::339
+star::C::339
+string::C::339
+strut::C::339
+subset::C::339
+subseteq::C::339
+succ::C::339
+succeq::C::339
+sum::C::339
+sup::C::339
+supereject::C::339
+supset::C::339
+supseteq::C::339
+surd::C::339
+swarrow::C::339
+t::C::339
+tabalign::C::339
+tabskip::C::339
+tan::C::339
+tanh::C::339
+tau::C::339
+tenbf::C::339
+tenex::C::339
+teni::C::339
+tenit::C::339
+tenrm::C::339
+tensl::C::339
+tensy::C::339
+tentt::C::339
+TeX::C::339
+textfont::C::339
+textindent::C::339
+textstyle::C::339
+the::C::339
+theta::C::339
+Theta::C::340
+thickmuskip::C::340
+thinmuskip::C::340
+thinspace::C::340
+tilde::C::340
+time::C::340
+times::C::340
+toks::C::340
+toksdef::C::340
+tolerance::C::340
+to::C::340
+top::C::340
+topglue::C::340
+topinsert::C::340
+topmark::C::340
+topskip::C::340
+tracingall::C::340
+tracingcommands::C::340
+tracinglostchars::C::340
+tracingmacros::C::340
+tracingonline::C::340
+tracingoutput::C::340
+tracingpages::C::340
+tracingparagraphs::C::340
+tracingrestores::C::340
+tracingstats::C::340
+triangle::C::340
+triangleleft::C::340
+triangleright::C::340
+tt::C::340
+ttfam::C::340
+ttraggedright::C::340
+u::C::341
+uccode::C::341
+uchyph::C::341
+underbar::C::341
+underbrace::C::341
+underline::C::341
+unhbox::C::341
+unhcopy::C::341
+unkern::C::341
+unpenalty::C::341
+unskip::C::341
+unvbox::C::341
+unvcopy::C::341
+uparrow::C::341
+Uparrow::C::341
+upbracefill::C::341
+updownarrow::C::341
+Updownarrow::C::341
+uplus::C::341
+uppercase::C::341
+upsilon::C::341
+Upsilon::C::341
+v::C::341
+vadjust::C::341
+valign::C::341
+varepsilon::C::341
+varphi::C::341
+varpi::C::341
+varrho::C::342
+varsigma::C::342
+vartheta::C::342
+vbadness::C::342
+vbox::C::342
+vcenter::C::342
+vdash::C::342
+vdots::C::342
+vec::C::342
+vee::C::342
+vert::C::342
+Vert::C::342
+vfil::C::342
+vfill::C::342
+vfilneg::C::342
+vfootnote::C::342
+vfuzz::C::342
+vglue::C::342
+voffset::C::342
+vphantom::C::342
+vrule::C::342
+vsize::C::342
+vskip::C::342
+vsplit::C::342
+vss::C::342
+vtop::C::342
+wd::C::342
+wedge::C::342
+widehat::C::342
+widetilde::C::342
+widowpenalty::C::343
+wlog::C::343
+wp::C::343
+wr::C::343
+write::C::343
+xdef::C::343
+xi::C::343
+Xi::C::343
+xleaders::C::343
+xspaceskip::C::343
+year::C::343
+zeta::C::343
+diacritical+marks::N::*accents
+drawing+lines::N::*rules
+drivers::N::*device+drivers
+eyes::N::*\anatomy
+foreign+languages::N::*European+languages
+intestines::N::*\anatomy
+mouth::N::*\anatomy
+page+footers::N::*footers
+page+headers::N::*headers
+paragraphs//indenting::N::*indentation
+recursive+macros::N::*macros,+recursive
+stomach::N::*\anatomy
+tables::N::*alignments
diff --git a/teximpatient/book.log b/teximpatient/book.log
new file mode 100644
index 0000000..dd10763
--- /dev/null
+++ b/teximpatient/book.log
@@ -0,0 +1,1478 @@
+This is pdfTeX, Version 3.14159265-2.6-1.40.15 (TeX Live 2014) (preloaded format=pdftex 2016年2月21日) 31 MAR 2016 14:54
+entering extended mode
+ restricted \write18 enabled.
+ %&-line parsing enabled.
+**\nonstopmode\input book
+(./book.tex (./macros.tex (./eplain.tex) (./config.tex) (./fonts.tex)
+\openout3 = `book.idx'.
+
+
+No .aux file; I won't warn you about undefined labels.
+\openout0 = `book.aux'.
+
+) (./frontm.tex
+(./macros.tex) [-1{/usr/share/texlive/texmf-dist/fonts/map/pdftex/updmap/pdftex
+.map}] [-2] [-3] (./copyrght.tex (./macros.tex) [-4]) [-5] [-6] (./preface.tex
+(./macros.tex) 56: Undefined label `resources'. [-7]
+91: Undefined label `newtex'. [-8] [-9]) [-10] [-11] [-12] [-13] [-14]
+(./read1st.tex (./macros.tex) Undefined chapter `usebook'.
+Undefined chapter `usingtex'. Undefined chapter `examples'.
+Undefined chapter `capsule'. Undefined chapter `concepts'.
+Undefined chapter `capsule'.
+Overfull \hbox (8.8427pt too wide) in paragraph at lines 29--33
+ []\oldtenrm For a quick remin-der of what a com-m-and does, look in Sect-ion `
+capsule',|
+
+\hbox(6.94444+1.94444)x316.99124, glue set - 1.0
+.\glue(\leftskip) 20.00003
+.\hbox(3.44444+0.0)x0.0, glue set - 7.58334fil
+..\glue 0.0 plus 1.0fil minus 1.0fil
+..\rule(3.44444+-0.86108)x2.58334
+..\kern 5.0
+.\oldtenrm F
+.\kern-0.83334
+.\oldtenrm o
+.etc.
+
+Undefined chapter `concepts'. [-15])) (./usebook.tex (./macros.tex) [-16]
+\openout1 = `book.toc'.
+
+
+Undefined chapter `usebook'. Undefined chapter `examples'.
+Undefined chapter `concepts'. Undefined chapter `tips'.
+Undefined chapter `usingtex'. [1] Undefined chapter `paras'.
+Undefined chapter `general'. 69: Undefined label `cmddesc'.
+Undefined chapter `capsule'. Undefined chapter `errors'. [2]
+144: Undefined label `\plainTeX'. Undefined chapter `pages'.
+Undefined chapter `hvmodes'. Undefined chapter `math'. [3]
+202: Undefined label `arg1'. 232: Undefined label `introparms'. [4]
+Chapter ends on a verso page. [5]) (./usingtex.tex (./macros.tex) [6]
+43: Undefined label `\input'. [7] [8] Undefined chapter `examples'. [9]
+197: Undefined label `spaces'. [10] 291: Undefined label `bracegroup'. [11]
+299: Undefined label `parameter'. 320: Undefined label `category+code'.
+357: Undefined label `unwantedspace'. 364: Undefined label `glue'. [12]
+[13] 451: Undefined label `\frenchspacing'.
+Underfull \vbox (badness 10000) has occurred while \output is active
+\vbox(548.4975+2.5)x316.99124, glue set 6.00536
+.\glue(\topskip) 17.05556
+.\hbox(6.94444+2.15277)x316.99124, glue set 0.5625
+..\oldtenrm T
+..\oldtenrm h
+..\oldtenrm e
+..\glue 3.33333 plus 1.66666 minus 1.11111
+..\tenbt \
+..etc.
+.\penalty 10000
+.\glue(\baselineskip) 2.90279
+.\hbox(6.94444+1.94444)x316.99124, glue set 0.1842
+..\oldtenrm a
+..\oldtenrm s
+..\oldtenrm s
+..\oldtenrm o
+..\kern0.27779
+..etc.
+.etc.
+
+ [14]
+[15] Undefined chapter `math'. Undefined chapter `concepts'.
+648: Undefined label `\anatomy'. 657: Undefined label `box'. [16]
+686: Undefined label `line+break'. 693: Undefined label `page+break'.
+697: Undefined label `mode'. 709: Undefined label `mathform'. [17]
+727: Undefined label `\badness'. 728: Undefined label `\emergencystretch'.
+729: Undefined label `\errorcontextlines'.
+730: Undefined label `\holdinginserts'. 732: Undefined label `\language'.
+732: Undefined label `\@newlanguage'.
+Overfull \hbox (62.42314pt too wide) in paragraph at lines 731--733
+ [][]\tenbt \language\oldtenrm , []\tenbt \setlanguage\oldtenrm , and \tenbt \n
+ew-lan-guage \oldtenrm (pp.`\tenbt \language\oldtenrm ', `\tenbt \@newlanguage\
+oldtenrm ')|
+
+\hbox(7.5+2.5)x316.99124, glue set - 1.0
+.\glue(\leftskip) 20.00003
+.\hbox(3.44444+0.0)x0.0, glue set - 7.58334fil
+..\glue 0.0 plus 1.0fil minus 1.0fil
+..\rule(3.44444+-0.86108)x2.58334
+..\kern 5.0
+.\write3{language::C::\number \pageno }
+.\tenbt \
+.\tenbt l
+.etc.
+
+733: Undefined label `\lefthyphenmin'. 734: Undefined label `\noboundary'.
+735: Undefined label `\topglue'. 736: Undefined label `hexchars'. [18]
+Undefined chapter `eplain'. [19]) (./examples.tex (./macros.tex) [20]
+Undefined chapter `capsule'. 38: Undefined label `macro'.
+Overfull \hbox (1.3979pt too wide) in paragraph at lines 37--46
+[]\oldtenrm Each example exc-ept for the first one starts with a macro (see p.`
+\tenbt macro\oldtenrm ')|
+
+\hbox(7.5+2.5)x316.99124, glue set - 1.0
+.\hbox(0.0+0.0)x10.00002
+.\oldtenrm E
+.\oldtenrm a
+.\oldtenrm c
+.\kern-0.27779
+.etc.
+
+\openout4 = `x.tex'.
+
+[21] (./x.tex) [22]
+\openout4 = `x.tex'.
+
+ 51: Undefined label `xmphead'. [23] (./x.tex) [24]
+\openout4 = `x.tex'.
+
+
+51: Undefined label `accents'. 51: Undefined label `fornlets'.
+51: Undefined label `specsyms'. [25] (./x.tex
+Overfull \hbox (0.39742pt too wide) in paragraph at lines 25--31
+\oldtenrm and letters of European languages on page `\tenbt accents\oldtenrm '
+and page `\tenbt fornlets\oldtenrm '. |
+
+\hbox(6.94444+1.94444)x316.99124, glue set - 1.0
+.\oldtenrm a
+.\oldtenrm n
+.\oldtenrm d
+.\glue 3.33333 plus 1.66666 minus 1.11111
+.\oldtenrm l
+.etc.
+
+) [26]
+\openout4 = `x.tex'.
+
+ [27] (./x.tex) [28]
+\openout4 = `x.tex'.
+
+ [29] (./x.tex
+Overfull \hbox (10.01387pt too wide) in paragraph at lines 20--24
+ \oldtenrm a comp-an-ion to the Gryphon. Rep-utedly the principal|
+
+\hbox(6.94444+1.94444)x316.99124, glue set - 1.0
+.\glue(\leftskip) 96.0
+.\oldtenrm a
+.\glue 3.33333 plus 1.66666 minus 1.11111
+.\oldtenrm c
+.\oldtenrm o
+.etc.
+
+) [30]
+\openout4 = `x.tex'.
+
+ [31] (./x.tex) [32]
+\openout4 = `x.tex'.
+
+ [33] (./x.tex) [34]
+\openout4 = `x.tex'.
+
+ [35] (./x.tex) [36]
+\openout4 = `x.tex'.
+
+ [37]
+(./x.tex) [38]
+\openout4 = `x.tex'.
+
+ [39] (./x.tex) [40] [41]) (./concepts.tex (./macros.tex)
+[42] 44: Undefined label `\catcode'. [43
+\openout5 = `book.ccs'.
+
+] 90: Undefined label `\settabs'.
+92: Undefined label `\@plus'. [44] 150: Undefined label `\halign'. [45]
+212: Undefined label `\tabskip'. 215: Undefined label `\noalign'.
+225: Undefined label `\valign'. 248: Undefined label `\strut'. [46]
+291: Undefined label `\expandafter'. [47] 374: Undefined label `\count'.
+412: Undefined label `mismatched'. [48] [49]
+522: Undefined label `\tolerance'. [50] 593: Undefined label `\hbox'.
+594: Undefined label `\vbox'. 595: Undefined label `\vtop'.
+Overfull \hbox (0.2025pt too wide) in paragraph at lines 589--611
+\oldtenrm num-ber of T[]X[][] com-m-ands, notably []\tenbt \hbox \oldtenrm (p.`
+\tenbt \hbox\oldtenrm '), []\tenbt \vbox \oldtenrm (p.`\tenbt \vbox\oldtenrm ')
+,|
+
+\hbox(7.5+2.5)x316.99124, glue set - 1.0
+.\oldtenrm n
+.\kern-0.27779
+.\oldtenrm u
+.\discretionary replacing 2
+..\oldtenrm m
+..\oldtenrm -
+.\oldtenrm m
+.etc.
+
+[51] 696: Undefined label `\boxmaxdepth'. 727: Undefined label `\@newbox'.
+728: Undefined label `register'. [52]
+Overfull \hbox (5.23143pt too wide) in paragraph at lines 735--747
+[][]\tenbt category code. [][]\oldtenrm The \tenit category code \oldtenrm of a
+ charac-ter determ-ines that charac-|
+
+\hbox(6.94444+2.22223)x316.99124, glue set - 1.0
+.\write3{category+codes::N::\number \pageno PB}
+.\hbox(0.0+0.0)x0.0
+.\tenbt c
+.\tenbt a
+.\tenbt t
+.etc.
+
+752: Undefined label `\char'.
+Overfull \hbox (13.33278pt too wide) in paragraph at lines 761--767
+\oldtenrm change the roles of var-ious charac-ters. For in-stance, if you type
+`\tenbt \catcode`\@|
+
+\hbox(6.94444+1.94444)x316.99124, glue set - 1.0
+.\oldtenrm c
+.\kern-0.27779
+.\oldtenrm h
+.\oldtenrm a
+.\oldtenrm n
+.etc.
+
+769: Undefined label `twocarets'. [53] [54]
+Overfull \hbox (1.37051pt too wide) in paragraph at lines 969--977
+\oldtenrm produc-ing an output charac-ter has the me-an-ing ``Produce a box con
+taining|
+
+\hbox(6.94444+1.94444)x316.99124, glue set - 1.0
+.\oldtenrm p
+.\oldtenrm r
+.\oldtenrm o
+.\kern0.27779
+.\oldtenrm d
+.etc.
+
+[55] 1004: Undefined label `\mathord'. [56] 1079: Undefined label `conds'.
+Undefined chapter `eplain'. [57] 1167: Undefined label `number'.
+1191: Undefined label `\overwithdelims'. 1191: Undefined label `\left'.
+Overfull \hbox (0.66443pt too wide) in paragraph at lines 1172--1194
+\tenbt delims\oldtenrm , or \tenbt \above-with-delims [][][]\oldtenrm (see pp.`
+\tenbt \overwithdelims\oldtenrm ', `\tenbt \left\oldtenrm '). The|
+
+\hbox(7.5+2.5)x316.99124, glue set - 1.0
+.\tenbt d
+.\tenbt e
+.\tenbt l
+.\tenbt i
+.\tenbt m
+.etc.
+
+1222: Undefined label `\bigl'. [58] 1270: Undefined label `\lbrace'.
+1270: Undefined label `\Uparrow'. 1286: Undefined label `\delcode'.
+Overfull \hbox (1.58292pt too wide) in paragraph at lines 1283--1293
+ \oldtenrm (p.`\tenbt \delcode\oldtenrm '). There-af-ter the charac-ter acts as
+ a delim-iter whenever|
+
+\hbox(7.5+2.5)x316.99124, glue set - 1.0
+.\glue(\leftskip) 20.00003
+.\oldtenrm (
+.\oldtenrm p
+.\oldtenrm .
+.\kern 1.66672
+.etc.
+
+1294: Undefined label `\delimiter'. [59]
+Overfull \hbox (9.0644pt too wide) in paragraph at lines 1338--1352
+\oldtenrm when it's bre-aking a para-graph into lines (see ``line break'', p.`\
+tenbt line+break\oldtenrm ').|
+
+\hbox(7.5+2.5)x316.99124, glue set - 1.0
+.\oldtenrm w
+.\oldtenrm h
+.\oldtenrm e
+.\oldtenrm n
+.\glue 3.33333 plus 1.66666 minus 1.11111
+.etc.
+
+[60] 1461: Undefined label `verbatim'. [61]
+1469: Undefined label `\escapechar'. 1509: Undefined label `\@newfam'.
+1511: Undefined label `\scriptscriptfont'. [62] 1547: Undefined label `\read'.
+1560: Undefined label `\write'. 1578: Undefined label `\openin'.
+1579: Undefined label `\openout'. 1583: Undefined label `\closein'.
+1584: Undefined label `\closeout'. 1591: Undefined label `\@newwrite'.
+1604: Undefined label `\immediate'. [63]
+Underfull \vbox (badness 10000) has occurred while \output is active
+\vbox(548.4975+2.22223)x316.99124, glue set 50.92908
+.\glue(\topskip) 17.05556
+.\hbox(6.94444+1.94444)x316.99124, glue set - 0.40585
+..\oldtenrm o
+..\oldtenrm n
+..\glue 3.33333 plus 1.66666 minus 1.11111
+..\oldtenrm a
+..\oldtenrm n
+..etc.
+.\penalty 10000
+.\glue(\baselineskip) 2.55556
+.\hbox(7.5+2.5)x316.99124, glue set - 0.48347
+..\write3{immediate::C::\number \pageno }
+..\tenbt \
+..\tenbt i
+..\tenbt m
+..\tenbt m
+..etc.
+.etc.
+
+ [64]
+Overfull \hbox (15.87054pt too wide) in paragraph at lines 1633--1644
+\oldtenrm usually having the same typ-eface design, style (roman, italic, bold,
+ condensed,|
+
+\hbox(7.5+2.5)x316.99124, glue set - 1.0
+.\oldtenrm u
+.\oldtenrm s
+.\oldtenrm u
+.\oldtenrm a
+.\oldtenrm l
+.etc.
+
+1694: Undefined label `palatino'. [65] 1743: Undefined label `\footline'.
+1744: Undefined label `bighead'. 1755: Undefined label `\dump'.
+1794: Undefined label `\global'. 1794: Undefined label `\globaldefs'. [66]
+1801: Undefined label `\edef'. 1846: Undefined label `\hskip'.
+1851: Undefined label `\vskip'. [67] [68] 1922: Undefined label `\leftline'.
+1923: Undefined label `\raggedright'. 1927: Undefined label `\rightline'.
+1933: Undefined label `\centerline'. 1967: Undefined label `\hsize'. [69]
+2020: Undefined label `\headline'. 2070: Undefined label `\hrule'.
+Overfull \hbox (23.75804pt too wide) in paragraph at lines 2068--2075
+\oldtenrm are in fact in-her-ently vertical: \tenbt \halign \oldtenrm (p.`\tenb
+t \halign\oldtenrm ') and \tenbt \hrule \oldtenrm (p.`\tenbt \hrule\oldtenrm ')
+.|
+
+\hbox(7.5+2.5)x316.99124, glue set - 1.0
+.\oldtenrm a
+.\oldtenrm r
+.\oldtenrm e
+.\glue 3.33333 plus 1.66666 minus 1.11111
+.\oldtenrm i
+.etc.
+
+[70] 2106: Undefined label `\@minus'. 2109: Undefined label `\hyphenation'.
+2113: Undefined label `\hyphenpenalty'.
+Overfull \hbox (54.11897pt too wide) in paragraph at lines 2112--2114
+ []\oldtenrm You can set the value of pen-alt-ies such as \tenbt \hyphenpenalty
+ \oldtenrm (p.`\tenbt \hyphenpenalty\oldtenrm '). |
+
+\hbox(7.5+2.5)x316.99124, glue set - 1.0
+.\glue(\leftskip) 20.00003
+.\hbox(3.44444+0.0)x0.0, glue set - 7.58334fil
+..\glue 0.0 plus 1.0fil minus 1.0fil
+..\rule(3.44444+-0.86108)x2.58334
+..\kern 5.0
+.\oldtenrm Y
+.\kern-0.83334
+.\oldtenrm o
+.etc.
+
+2123: Undefined label `file'. 2140: Undefined label `\insert'.
+2156: Undefined label `\footnote'. 2156: Undefined label `endofinsert'.
+Overfull \hbox (2.3331pt too wide) in paragraph at lines 2128--2159
+\oldtenrm inserted into a page when T[]X[][] has fin-is-hed build-ing that page
+.$[]$ Examples|
+
+\hbox(8.14003+2.15277)x316.99124, glue set - 1.0
+.\oldtenrm i
+.\oldtenrm n
+.\oldtenrm s
+.\oldtenrm e
+.\oldtenrm r
+.etc.
+
+
+Overfull \hbox (29.06348pt too wide) in paragraph at lines 2128--2159
+[]\tenbt \pageinsert\oldtenrm , as well as the prim-it-ive []\tenbt \insert \ol
+dtenrm com-m-and it-self (pp.`\tenbt \footnote\oldtenrm '--|
+
+\hbox(7.5+2.5)x316.99124, glue set - 1.0
+.\write3{pageinsert::C::\number \pageno }
+.\tenbt \
+.\tenbt p
+.\tenbt a
+.\tenbt g
+.etc.
+
+
+Overfull \hbox (3.2769pt too wide) in paragraph at lines 2128--2159
+\oldtenrm `\tenbt endofinsert\oldtenrm '). T[]X[][]'s mech-anism for han-dling
+insert-ions is rather compli-|
+
+\hbox(7.5+2.5)x316.99124, glue set - 1.0
+.\oldtenrm `
+.\tenbt e
+.\tenbt n
+.\tenbt d
+.\tenbt o
+.etc.
+
+2169: Undefined label `\baselineskip'.
+Overfull \hbox (48.03455pt too wide) in paragraph at lines 2163--2170
+[]\tenbt \baselineskip\oldtenrm , []\tenbt \lineskip\oldtenrm , and []\tenbt \l
+ineskiplimit \oldtenrm param-eters (p.`\tenbt \baselineskip\oldtenrm '). |
+
+\hbox(7.5+2.5)x316.99124, glue set - 1.0
+.\write3{baselineskip::C::\number \pageno }
+.\tenbt \
+.\tenbt b
+.\tenbt a
+.\tenbt s
+.etc.
+
+[71] 2199: Undefined label `\leftskip'.
+Overfull \hbox (22.3682pt too wide) in paragraph at lines 2185--2200
+[]\tenbt \rightskip\oldtenrm , and []\tenbt \raggedright \oldtenrm com-m-ands (
+pp.`\tenbt \leftskip\oldtenrm ', `\tenbt \raggedright\oldtenrm ')|
+
+\hbox(7.5+2.5)x316.99124, glue set - 1.0
+.\write3{rightskip::C::\number \pageno }
+.\tenbt \
+.\tenbt r
+.\tenbt i
+.\tenbt g
+.etc.
+
+[72] 2273: Undefined label `\leaders'. [73] [74]
+2436: Undefined label `hpenalty'. 2445: Undefined label `hbreak'.
+2445: Undefined label `hnobreak'. 2452: Undefined label `hyphenation'.
+2456: Undefined label `\slash'.
+Overfull \hbox (3.92601pt too wide) in paragraph at lines 2463--2466
+ []\oldtenrm You can adjust the pen-alt-ies as-s-oc-iated with line bre-aking b
+y assigning|
+
+\hbox(6.94444+1.94444)x316.99124, glue set - 1.0
+.\glue(\leftskip) 20.00003
+.\hbox(3.44444+0.0)x0.0, glue set - 7.58334fil
+..\glue 0.0 plus 1.0fil minus 1.0fil
+..\rule(3.44444+-0.86108)x2.58334
+..\kern 5.0
+.\oldtenrm Y
+.\kern-0.83334
+.\oldtenrm o
+.etc.
+
+
+Overfull \hbox (9.12033pt too wide) in paragraph at lines 2467--2470
+ []\oldtenrm You can en-close a word or sequ-ence of words in an hbox, thus pre
+venting|
+
+\hbox(6.94444+1.94444)x316.99124, glue set - 1.0
+.\glue(\leftskip) 20.00003
+.\hbox(3.44444+0.0)x0.0, glue set - 7.58334fil
+..\glue 0.0 plus 1.0fil minus 1.0fil
+..\rule(3.44444+-0.86108)x2.58334
+..\kern 5.0
+.\oldtenrm Y
+.\kern-0.83334
+.\oldtenrm o
+.etc.
+
+[75] 2507: Undefined label `horizontal+list'.
+2507: Undefined label `vertical+list'. [76] [77] [78]
+2704: Undefined label `mac1'. 2704: Undefined label `mac2'.
+2715: Undefined label `\mag'. 2724: Undefined label `font'.
+2729: Undefined label `\font'. [79]
+Overfull \hbox (3.3255pt too wide) in paragraph at lines 2762--2769
+[][]\tenbt margins. [][]\oldtenrm The mar-gins of a page define a rectangle tha
+t normally contains|
+
+\hbox(6.94444+2.22223)x316.99124, glue set - 1.0
+.\write3{margins::N::\number \pageno PB}
+.\hbox(0.0+0.0)x0.0
+.\tenbt m
+.\tenbt a
+.\tenbt r
+.etc.
+
+2774: Undefined label `\voffset'. 2810: Undefined label `\mark'.
+2814: Undefined label `\topmark'. [80] 2843: Undefined label `\vsplit'.
+2846: Undefined label `\splitfirstmark'. [81]
+2931: Undefined label `\mathcode'. 2941: Undefined label `\fam'.
+2958: Undefined label `muglue'.
+Underfull \vbox (badness 10000) has occurred while \output is active
+\vbox(548.4975+2.15277)x316.99124, glue set 8.33249
+.\glue(\topskip) 17.05556
+.\hbox(6.94444+2.15277)x316.99124, glue set - 0.6414
+..\hbox(0.0+0.0)x10.00002
+..\oldtenrm T
+..\kern -1.66702
+..\hbox(6.83331+0.0)x6.80557, shifted 2.15277
+...\oldtenrm E
+..\kern -1.25
+..etc.
+.\penalty 10000
+.\glue(\baselineskip) 2.90279
+.\hbox(6.94444+1.94444)x316.99124, glue set 0.06053
+..\oldtenrm t
+..\oldtenrm h
+..\oldtenrm r
+..\oldtenrm e
+..\oldtenrm e
+..etc.
+.etc.
+
+ [82]
+[83] 3066: Undefined label `\number'. 3071: Undefined label `dimension'.
+3090: Undefined label `horizontal+mode'.
+3090: Undefined label `vertical+mode'.
+Overfull \hbox (36.67471pt too wide) in paragraph at lines 3087--3091
+\oldtenrm ``hor-izontal mode'' (p.`\tenbt horizontal+mode\oldtenrm '), ``vertic
+al mode'' (p.`\tenbt vertical+mode\oldtenrm '). |
+
+\hbox(7.5+2.5)x316.99124, glue set - 1.0
+.\oldtenrm \ (ligature ``)
+.\oldtenrm h
+.\oldtenrm o
+.\oldtenrm r
+.\discretionary
+..\oldtenrm -
+.etc.
+
+3102: Undefined label `\outer'. [84] 3121: Undefined label `\@proclaim'.
+3148: Undefined label `\output'.
+Overfull \hbox (19.1475pt too wide) in paragraph at lines 3147--3150
+[]\oldtenrm The cur-rent output rout-ine is defined by the value of []\tenbt \o
+utput \oldtenrm (p.`\tenbt \output\oldtenrm '),|
+
+\hbox(7.5+2.5)x316.99124, glue set - 1.0
+.\hbox(0.0+0.0)x10.00002
+.\oldtenrm T
+.\oldtenrm h
+.\oldtenrm e
+.\glue 3.33333 plus 1.66666 minus 1.11111
+.etc.
+
+3166: Undefined label `\shipout'. 3197: Undefined label `\eject'. [85]
+3259: Undefined label `page'. 3264: Undefined label `vpenalty'.
+3273: Undefined label `vbreak'. [86]
+Overfull \hbox (8.37047pt too wide) in paragraph at lines 3275--3278
+ []\oldtenrm You can adjust the pen-alt-ies as-s-oc-iated with page bre-aking b
+y assigning|
+
+\hbox(6.94444+1.94444)x316.99124, glue set - 1.0
+.\glue(\leftskip) 20.00003
+.\hbox(3.44444+0.0)x0.0, glue set - 7.58334fil
+..\glue 0.0 plus 1.0fil minus 1.0fil
+..\rule(3.44444+-0.86108)x2.58334
+..\kern 5.0
+.\oldtenrm Y
+.\kern-0.83334
+.\oldtenrm o
+.etc.
+
+3332: Undefined label `margins'. [87] 3359: Undefined label `mark'.
+3368: Undefined label `\@par'.
+Underfull \vbox (badness 10000) has occurred while \output is active
+\vbox(548.4975+1.94444)x316.99124, glue set 42.64886
+.\glue(\topskip) 17.05556
+.\hbox(6.94444+1.94444)x316.99124, glue set - 0.48352
+..\oldtenrm p
+..\oldtenrm r
+..\oldtenrm o
+..\kern0.27779
+..\oldtenrm d
+..etc.
+.\penalty 10000
+.\glue(\abovedisplayskip) 4.5 plus 1.485 minus 1.125
+.\glue(\baselineskip) 1.55556
+.etc.
+
+ [88]
+3390: Undefined label `\indent'. 3390: Undefined label `\noindent'. [89]
+[90] 3579: Undefined label `\copy'. [91] 3635: Undefined label `\showthe'.
+3673: Undefined label `\vrule'. [92]
+Overfull \hbox (23.47963pt too wide) in paragraph at lines 3715--3719
+\oldtenrm the com-m-and `\tenbt \vrule height1pt depth2pt width3in\oldtenrm ' p
+roduces this horizontal-|
+
+\hbox(6.94444+2.22223)x316.99124, glue set - 1.0
+.\oldtenrm t
+.\oldtenrm h
+.\oldtenrm e
+.\glue(\spaceskip) 2.99997 plus 1.66666 minus 1.22223
+.\oldtenrm c
+.etc.
+
+
+Overfull \hbox (6.67625pt too wide) in paragraph at lines 3764--3767
+[][]\tenbt space. [][]\oldtenrm You can cause T[]X[][] to put \tenit space \old
+tenrm bet-ween two items in several ways: |
+
+\hbox(6.94444+2.22223)x316.99124, glue set - 1.0
+.\write3{space::N::\number \pageno PB}
+.\hbox(0.0+0.0)x0.0
+.\tenbt s
+.\tenbt p
+.\tenbt a
+.etc.
+
+[93] 3825: Undefined label `\mathstrut'. [94] 3906: Undefined label `family'.
+3916: Undefined label `\textstyle'. [95] [96]
+4067: Undefined label `\special'. [97]) (./paras.tex (./macros.tex) [98]
+Overfull \hbox (1.09271pt too wide) in paragraph at lines 39--47
+\oldtenrm languages---but if you need to typ-eset a large am-ount of text in a
+European|
+
+\hbox(6.94444+1.94444)x316.99124, glue set - 1.0
+.\oldtenrm l
+.\oldtenrm a
+.\oldtenrm n
+.\oldtenrm g
+.\oldtenrm u
+.etc.
+
+[99] [100] 124: Undefined label `\ldots'. [101] 219: Undefined label `\imath'.
+[102] 253: Undefined label `mathaccent'. [103] [104]
+369: Undefined label `mathfonts'. [105] 448: Undefined label `\spacefactor'.
+[106] [107] 593: Undefined label `periodspacing'. [108]
+616: Undefined label `ewhitesp'. 624: Undefined label `\obeylines'. [109]
+730: Undefined label `eplaincenter'. [110]
+Overfull \hbox (1.95349pt too wide) in paragraph at lines 732--735
+[]\oldtenrm Don't use these com-m-ands within a paragraph---if you do, T[]X[][]
+ probably|
+
+\hbox(6.94444+2.15277)x316.99124, glue set - 1.0
+.\hbox(0.0+0.0)x10.00002
+.\oldtenrm D
+.\oldtenrm o
+.\oldtenrm n
+.\oldtenrm '
+.etc.
+
+[111] 832: Undefined label `\parskip'. 833: Undefined label `\parindent'.
+842: Undefined label `\everypar'. [112] [113] 967: Undefined label `\item'.
+[114] [115] [116] [117] [118] [119] [120]
+Overfull \hbox (3.03223pt too wide) in paragraph at lines 1368--1387
+\sixrm reg-ion var-ies gre-atly from|
+
+\hbox(4.16667+1.16667)x77.0, glue set - 1.0
+.\sixrm r
+.\sixrm e
+.\sixrm g
+.\discretionary
+..\sixrm -
+.\sixrm i
+.etc.
+
+[121]
+Overfull \hbox (26.76924pt too wide) in paragraph at lines 1423--1427
+\tenbi See also: \tenbt \parindent \oldtenrm (p.`\tenbt \parindent\oldtenrm '),
+ \tenbt \parskip \oldtenrm (p.`\tenbt \parskip\oldtenrm '), \tenbt \everypar|
+
+\hbox(7.5+2.5)x316.99124, glue set - 1.0
+.\tenbi S
+.\tenbi e
+.\kern-0.5889
+.\tenbi e
+.\glue(\spaceskip) 3.33 plus 2.0 minus 1.1
+.etc.
+
+[122] [123] 1534: Undefined label `\obeyspaces'. [124]
+1634: Undefined label `\hbadness'. 1637: Undefined label `\hfuzz'. [125]
+1691: Undefined label `@not'. [126] [127] [128] [129] [130]
+2057: Undefined label `\pretolerance'. [131] [132] [133]) (./pages.tex
+(./macros.tex) [134] [135]
+Overfull \hbox (0.84067pt too wide) in paragraph at lines 111--118
+\tenbt \base-line-skip\oldtenrm , \tenbt \line-skip\oldtenrm , and \tenbt \line
+-skip-limit \oldtenrm to the val-ues contained|
+
+\hbox(6.94444+2.22223)x316.99124, glue set - 1.0
+.\tenbt \
+.\tenbt b
+.\tenbt a
+.\tenbt s
+.\tenbt e
+.etc.
+
+[136] [137] [138] 270: Undefined label `\smallskip'.
+281: Undefined label `\vfil'. 306: Undefined label `filbreak'. [139] [140]
+[141] 524: Undefined label `\pagegoal'. [142] [143] [144]
+712: Undefined label `\hfil'. [145] [146] [147] [148]
+954: Undefined label `.
+973: Undefined label `\@ifvoid'. [149]
+999: Undefined label `\floatingpenalty'.
+Overfull \hbox (6.55533pt too wide) in paragraph at lines 1055--1062
+\oldtenrm as-sumes that the output rout-ine has got-ten into a loop. T[]X[][] t
+hen complains|
+
+\hbox(6.94444+2.15277)x316.99124, glue set - 1.0
+.\oldtenrm a
+.\oldtenrm s
+.\discretionary
+..\oldtenrm -
+.\oldtenrm s
+.\oldtenrm u
+.etc.
+
+[150] 1088: Undefined label `\vsize'. 1139: Undefined label `\maxdepth'.
+[151] 1148: Undefined label `\topskip'. [152] Chapter ends on a verso page.
+[153]) (./modes.tex (./macros.tex) [154]
+Overfull \hbox (7.25896pt too wide) in paragraph at lines 7--16
+\oldtenrm ions used in this sect-ion, see ``Des-criptions of the com-m-ands'' (
+p.`\tenbt cmddesc\oldtenrm '). |
+
+\hbox(7.5+2.5)x316.99124, glue set - 1.0
+.\oldtenrm i
+.\oldtenrm o
+.\oldtenrm n
+.\oldtenrm s
+.\glue 3.33333 plus 1.66666 minus 1.11111
+.etc.
+
+33: Undefined label `dimdefs'. [155] [156]
+196: Undefined label `mathematical+unit'. 198: Undefined label `\mskip'.
+[157]
+Overfull \hbox (6.75899pt too wide) in paragraph at lines 258--262
+[]\oldtenrm This com-m-and is us-eful bec-ause T[]X[][] or-din-arily adjusts th
+e glue produced|
+
+\hbox(6.94444+2.15277)x316.99124, glue set - 1.0
+.\hbox(0.0+0.0)x10.00002
+.\oldtenrm T
+.\oldtenrm h
+.\oldtenrm i
+.\oldtenrm s
+.etc.
+
+[158] 299: Undefined label `\mkern'. [159] [160]
+454: Undefined label `\vbadness'. 455: Undefined label `\vfuzz'.
+456: Undefined label `leaders'. [161] [162] [163] [164]
+680: Undefined label `\maxdimen'. [165] [166] 831: Undefined label `\ht'.
+[167] [168] [169] [170] [171] [172] [173] [174] [175] [176] [177]
+1464: Undefined label `outer'. [178] 1558: Undefined label `\endline'. [179]
+1579: Undefined label `alignment'. [180] [181]
+1745: Undefined label `\everycr'. [182] [183] [184]
+1899: Undefined label `\openup'. [185] [186] [187]) (./math.tex (./macros.tex)
+[188] [189] 165: Undefined label `\bigm'. [190] [191] [192]
+336: Undefined label `arrows'. [193] 438: Undefined label `\big'.
+496: Undefined label `relations'.
+Overfull \hbox (12.00807pt too wide) in paragraph at lines 500--502
+[]\oldtenrm The com-m-and \tenbt \iff \oldtenrm differs from \tenbt \Longleftri
+ghtarrow \oldtenrm in that it produces|
+
+\hbox(6.94444+2.22223)x316.99124, glue set - 1.0
+.\hbox(0.0+0.0)x10.00002
+.\oldtenrm T
+.\oldtenrm h
+.\oldtenrm e
+.\glue 3.33333 plus 1.66666 minus 1.11111
+.etc.
+
+504: Undefined label `\buildrel'. [194] [195] 636: Undefined label `binops'.
+[196] [197] 745: Undefined label `\cdot'. [198]
+808: Undefined label `\scriptscriptstyle'. 812: Undefined label `namedfns'.
+[199] [200] [201] [202] [203] [204] 1158: Undefined label `\vcenter'.
+1205: Undefined label `\dots'. [205]
+Overfull \hbox (6.89119pt too wide) in paragraph at lines 1236--1244
+\oldtenrm adjusted to fit the vertical size (height plus depth) of $\tensy h$\t
+enit subformula$\tensy i$\oldtenrm . $\tensy h$\tenit delim$[]$$\tensy i$|
+
+\hbox(7.5+2.5)x316.99124, glue set - 1.0
+.\oldtenrm a
+.\oldtenrm d
+.\oldtenrm j
+.\oldtenrm u
+.\oldtenrm s
+.etc.
+
+1247: Undefined label `\over'. [206] 1316: Undefined label `\vert'. [207]
+[208] 1441: Undefined label `\eqalignno'. [209] [210]
+1578: Undefined label `selfont'. [211]
+Overfull \hbox (4.61119pt too wide) in paragraph at lines 1597--1601
+\oldtenrm These com-m-ands define type famil-ies for use in math mode. Their pr
+incipal|
+
+\hbox(6.94444+1.94444)x316.99124, glue set - 1.0
+.\oldtenrm T
+.\oldtenrm h
+.\oldtenrm e
+.\oldtenrm s
+.\oldtenrm e
+.etc.
+
+1648: Undefined label `seltype'. [212] 1719: Undefined label `\overbrace'.
+[213] [214] [215] [216] 1926: Undefined label `\kern'. [217] [218]
+2105: Undefined label `\nonscript'.
+Overfull \hbox (15.22125pt too wide) in paragraph at lines 2102--2108
+\oldtenrm af-ter a sub-script or super-script. The \tenbt \nonscript \oldtenrm
+com-m-and (p.`\tenbt \nonscript\oldtenrm ')|
+
+\hbox(7.5+2.5)x316.99124, glue set - 1.0
+.\oldtenrm a
+.\oldtenrm f
+.\discretionary
+..\oldtenrm -
+.\oldtenrm t
+.\oldtenrm e
+.etc.
+
+
+Overfull \hbox (4.02693pt too wide) in paragraph at lines 2102--2108
+[]\oldtenrm af-ter a sub-script or super-script canc-els this space. Plain T[]X
+[][] sets \tenbt \script-|
+
+\hbox(6.94444+2.22223)x316.99124, glue set - 1.0
+.\write3{nonscript::C::\number \pageno }
+.\oldtenrm a
+.\oldtenrm f
+.\discretionary
+..\oldtenrm -
+.\oldtenrm t
+.etc.
+
+[219] [220] [221]) (./genops.tex (./macros.tex) [222] [223]
+66: Undefined label `shape'. 73: Undefined label `magnification'.
+117: Undefined label `\spaceskip'. 119: Undefined label `\xspaceskip'.
+Overfull \hbox (15.84158pt too wide) in paragraph at lines 114--123
+\oldtenrm param-eters for produc-ing interword spaces (see \regttfont \spaceski
+p\oldtenrm , p.`\regttfont \spaceskip\oldtenrm ')|
+
+\hbox(7.5+2.5)x316.99124, glue set - 1.0
+.\oldtenrm p
+.\oldtenrm a
+.\oldtenrm r
+.\oldtenrm a
+.\oldtenrm m
+.etc.
+
+[224] [225] [226]
+Overfull \hbox (1124.92886pt too wide) in paragraph at lines 325--327
+\oldtenrm 1991 (and plain 3.141592653/USenglish/polish/basque/czech/danish/dutc
+h/ukenglish/british/UKenglish/usenglishmax/finnish/french/patois/francais/germa
+n/ngerman/swissgerman/hungarian/italian/bokmal/norwegian/norsk/nynorsk/portugue
+se/portuges/brazil/brazilian/spanish/espanol/swedish/ukrainian/russian/german-|
+
+
+\hbox(7.5+2.5)x306.99123, glue set - 1.0
+.\oldtenrm 1
+.\oldtenrm 9
+.\oldtenrm 9
+.\oldtenrm 1
+.\glue 3.33333 plus 1.66666 minus 1.11111
+.etc.
+
+
+Overfull \hbox (2332.54315pt too wide) in paragraph at lines 325--327
+\oldtenrm x-2013年05月26日/german-x-latest/ngerman-x-2013年05月26日/ngerman-x-latest/af
+rikaans/ancientgreek/ibycus/arabic/armenian/bulgarian/catalan/pinyin/coptic/cro
+atian/esperanto/estonian/ethiopic/amharic/geez/farsi/persian/friulan/galician/g
+eorgian/monogreek/greek/polygreek/icelandic/assamese/bengali/gujarati/hindi/kan
+nada/malayalam/marathi/oriya/odia/panjabi/tamil/telugu/indonesian/interlingua/i
+rish/kurmanji/latin/latvian/lithuanian/mongolian/mongolianlmc/piedmontese/roman
+ian/romansh/sanskrit/serbian/serbianc/slovak/slovenian/slovene/thai/turkish/tur
+kmen/uppersorbian/welsh). |
+
+\hbox(7.5+2.5)x306.99123
+.\oldtenrm x
+.\oldtenrm -
+.\discretionary
+.\oldtenrm 2
+.\oldtenrm 0
+.etc.
+
+355: Undefined label `\the'. [227] 378: Undefined label `\csname'. [228]
+[229] 518: Undefined label `global'. 543: Undefined label `\gdef'. [230]
+Overfull \hbox (3.24916pt too wide) in paragraph at lines 594--603
+\oldtenrm assign-ment, only the last call has any effect. One use of \regttfont
+ \afterassignment|
+
+\hbox(6.94444+2.22223)x316.99124, glue set - 1.0
+.\oldtenrm a
+.\oldtenrm s
+.\oldtenrm s
+.\oldtenrm i
+.\oldtenrm g
+.etc.
+
+[231] 674: Undefined label `\noexpand'.
+Overfull \hbox (8.99915pt too wide) in paragraph at lines 673--677
+\oldtenrm erwise be exp-anded by using \regttfont \no-expand \oldtenrm (p.`\reg
+ttfont \noexpand\oldtenrm '). []You can postpone|
+
+\hbox(7.5+2.5)x316.99124, glue set - 1.0
+.\oldtenrm e
+.\oldtenrm r
+.\oldtenrm w
+.\oldtenrm i
+.\oldtenrm s
+.etc.
+
+
+Overfull \hbox (26.9803pt too wide) in paragraph at lines 673--677
+\oldtenrm the exp-ans-ion of a control sequ-ence by using []\regttfont \expanda
+fter \oldtenrm (p.`\regttfont \expandafter\oldtenrm '). |
+
+\hbox(7.5+2.5)x316.99124, glue set - 1.0
+.\oldtenrm t
+.\oldtenrm h
+.\oldtenrm e
+.\glue 3.33333 plus 1.66666 minus 1.11111
+.\oldtenrm e
+.etc.
+
+[232] [233] [234] 862: Undefined label `\string'. [235] [236]
+976: Undefined label `convert'. [237]
+Overfull \hbox (0.8981pt too wide) in paragraph at lines 1070--1072
+ []\oldtenrm both tokens are charac-ters (or control sequ-en-ces den-ot-ing cha
+rac-|
+
+\hbox(7.5+2.5)x316.99124, glue set - 1.0
+.\glue(\leftskip) 40.00006
+.\hbox(7.5+2.5)x0.0, glue set - 13.88892fil
+..\glue 0.0 plus 1.0fil minus 1.0fil
+..\oldtenrm a
+..\oldtenrm )
+..\kern 5.0
+.\oldtenrm b
+.\kern0.27779
+.\oldtenrm o
+.etc.
+
+1079: Undefined label `\long'. [238] [239] [240] [241] [242] [243]
+1497: Undefined label `\@newcount'.
+Overfull \hbox (1.33162pt too wide) in paragraph at lines 1534--1541
+[]\oldtenrm A \regttfont \skip \oldtenrm register contains the dimensions of gl
+ue. Un-like a \regttfont \dimen \oldtenrm register,|
+
+\hbox(6.94444+2.22223)x316.99124, glue set - 1.0
+.\write3{skip+registers::N::\number \pageno }
+.\oldtenrm A
+.\glue 3.33333 plus 1.66498 minus 1.11221
+.\regttfont \
+.\regttfont s
+.etc.
+
+[244] [245] 1620: Undefined label `\advance'. 1621: Undefined label `\divide'.
+1621: Undefined label `\box'. [246] 1717: Undefined label `\@newif'.
+1717: Undefined label `\@newhelp'. [247] 1763: Undefined label `\skip'.
+[248] 1845: Undefined label `file+name'. [249]
+1888: Undefined label `\@newread'. [250] [251] [252]
+2106: Undefined label `catcodes'. 2131: Undefined label `mathcode'. [253]
+[254] 2297: Undefined label `\tracingonline'. [255]
+2308: Undefined label `\showboxbreadth'. [256] [257] [258] [259] [260] [261]
+[262] 2713: Undefined label `\newlinechar'. [263] [264]
+2808: Undefined label `format+file'. [265]) (./tips.tex (./macros.tex) [266]
+43: Undefined label `\interlinepenalty'. [267] 51: Undefined label `vnobreak'.
+72: Undefined label `\vadjust'. 76: Undefined label `\vfill'.
+92: Undefined label `\filbreak'. [268] 118: Undefined label `\looseness'.
+124: Undefined label `\tracingpages'. [269] [270] 291: Undefined label `\hss'.
+[271] 356: Undefined label `\tracingcommands'. [272] [273] [274] [275] [276]
+[277] [278] [279] [280] 896: Undefined label `\show'. [281]
+966: Undefined label `\endlinechar'. 974: Undefined label `\space'. [282]
+[283]) (./errors.tex (./macros.tex) [284] 50: Undefined label `infiles'.
+[285] [286] [287] [288] [289]
+Overfull \hbox (20.95186pt too wide) in paragraph at lines 303--309
+[]\oldtenrm You can use the []\tentt \errorcontextlines \oldtenrm com-m-and (p.
+`\tentt \errorcontextlines\oldtenrm ')|
+
+\hbox(7.5+2.5)x316.99124, glue set - 1.0
+.\hbox(0.0+0.0)x10.00002
+.\oldtenrm Y
+.\kern-0.83334
+.\oldtenrm o
+.\oldtenrm u
+.etc.
+
+[290] Chapter ends on a verso page. [291]) (./usermacs.tex (./macros.tex)
+[292] [293] 134: Undefined label `xrefs'. [294] [295]
+246: Undefined label `listmacs'. [296] [297] [298] [299] [300] [301] [302]
+[303] [304] [305] [306] [307] [308] [309] [310] [311] [312]
+1154: Undefined label `eplainconv'. [313]) (./capsule.tex (./macros.tex)
+[314] 19: Undefined label `character'. 28: Undefined label `primitive'.
+38: Undefined label `display+math'. 52: Undefined label `\@space'.
+54: Undefined label `\@shriek'. 55: Undefined label `\@quote'.
+57: Undefined label `@msharp'. 57: Undefined label `@asharp'. [315]
+58: Undefined label `\@pound'. 60: Undefined label `\@bucks'.
+61: Undefined label `comments'. 62: Undefined label `\@percent'.
+63: Undefined label `@and'. 64: Undefined label `\@and'.
+65: Undefined label `@prime'. 66: Undefined label `\@prime'.
+67: Undefined label `\@star'. 69: Undefined label `\@comma'.
+71: Undefined label `\@dot'. 72: Undefined label `\@slash'.
+73: Undefined label `\@semi'. 74: Undefined label `\@equal'.
+75: Undefined label `@backslash'. 76: Undefined label `\@greater'.
+77: Undefined label `@hat'. 78: Undefined label `\@hat'.
+82: Undefined label `@newline'. 84: Undefined label `@underscore'.
+85: Undefined label `\@underscore'. 87: Undefined label `\@lquote'.
+88: Undefined label `@lbrace'. 89: Undefined label `\@lbrace'.
+90: Undefined label `\@bar'. 91: Undefined label `@rbrace'.
+92: Undefined label `\@rbrace'. 94: Undefined label `\@not'.
+95: Undefined label `\aa'. 96: Undefined label `\AA'.
+97: Undefined label `\above'. 100: Undefined label `\abovedisplayshortskip'.
+103: Undefined label `\abovedisplayskip'. [316]
+105: Undefined label `\abovewithdelims'. 106: Undefined label `\accent'.
+107: Undefined label `\active'. 108: Undefined label `\acute'.
+110: Undefined label `\adjdemerits'. 113: Undefined label `\advancepageno'.
+114: Undefined label `\ae'. 115: Undefined label `\AE'.
+117: Undefined label `\afterassignment'. 119: Undefined label `\aftergroup'.
+120: Undefined label `\aleph'. 122: Undefined label `hallowbreak'.
+122: Undefined label `vallowbreak'. 123: Undefined label `\alpha'.
+124: Undefined label `\amalg'. 125: Undefined label `\angle'.
+126: Undefined label `\approx'. 127: Undefined label `\arccos'.
+128: Undefined label `\arcsin'. 129: Undefined label `\arctan'.
+130: Undefined label `\arg'. 131: Undefined label `\arrowvert'.
+132: Undefined label `\Arrowvert'. 133: Undefined label `\ast'.
+134: Undefined label `\asymp'. 135: Undefined label `\atop'.
+137: Undefined label `\atopwithdelims'. 138: Undefined label `\b'. [317]
+139: Undefined label `\backslash'. 142: Undefined label `\bar'.
+145: Undefined label `\batchmode'. 146: Undefined label `\begingroup'.
+148: Undefined label `\@beginsection'.
+151: Undefined label `\belowdisplayshortskip'.
+154: Undefined label `\belowdisplayskip'. 155: Undefined label `\beta'.
+156: Undefined label `\bf'. 157: Undefined label `\bffam'.
+158: Undefined label `\bgroup'. 161: Undefined label `\Big'.
+163: Undefined label `\bigbreak'. 165: Undefined label `\bigcap'.
+166: Undefined label `\bigcirc'. 167: Undefined label `\bigcup'.
+168: Undefined label `\bigg'. 169: Undefined label `\Bigg'.
+170: Undefined label `\biggl'. 171: Undefined label `\Biggl'.
+172: Undefined label `\biggm'. 173: Undefined label `\Biggm'.
+174: Undefined label `\biggr'. 175: Undefined label `\Biggr'.
+177: Undefined label `\Bigl'. [318] 179: Undefined label `\Bigm'.
+180: Undefined label `\bigodot'. 181: Undefined label `\bigoplus'.
+182: Undefined label `\bigotimes'. 183: Undefined label `\bigr'.
+184: Undefined label `\Bigr'. 185: Undefined label `\bigskip'.
+187: Undefined label `\bigskipamount'. 188: Undefined label `\bigsqcup'.
+190: Undefined label `\bigtriangledown'.
+191: Undefined label `\bigtriangleup'.
+Overfull \hbox (23.74132pt too wide) in paragraph at lines 191--191
+[]\tentt \bigtriangleup \oldtenrm triangle op-era-tor pointing upward: $\tensy
+ 4$ \oldtenrm (p.`\tentt \bigtriangleup\oldtenrm ') |
+
+\hbox(7.5+2.5)x316.99124, glue set - 1.0
+.\hbox(0.0+0.0)x0.0
+..\glue 0.0 plus 1.0fil minus 1.0fil
+.\tentt \
+.\tentt b
+.\tentt i
+.\tentt g
+.etc.
+
+192: Undefined label `\biguplus'. 193: Undefined label `\bigvee'.
+194: Undefined label `\bigwedge'. 196: Undefined label `\binoppenalty'.
+197: Undefined label `\bmod'. 198: Undefined label `\bordermatrix'.
+199: Undefined label `\bot'. 200: Undefined label `\botmark'.
+201: Undefined label `\bowtie'. 206: Undefined label `\brace'.
+207: Undefined label `\bracevert'. 208: Undefined label `\brack'.
+211: Undefined label `\breve'. 213: Undefined label `\brokenpenalty'.
+215: Undefined label `\bullet'. 217: Undefined label `\@bye'.
+218: Undefined label `\c'. [319] 220: Undefined label `\cal'.
+221: Undefined label `\cap'. 222: Undefined label `\cases'.
+225: Undefined label `\cdotp'. 226: Undefined label `\cdots'.
+231: Undefined label `\chardef'. 232: Undefined label `\check'.
+233: Undefined label `\chi'. 235: Undefined label `\choose'.
+236: Undefined label `\circ'. 238: Undefined label `\cleaders'.
+239: Undefined label `\cleartabs'. 243: Undefined label `\clubpenalty'.
+244: Undefined label `\clubsuit'. 245: Undefined label `\colon'.
+246: Undefined label `\cong'. 247: Undefined label `\coprod'.
+249: Undefined label `\copyright'. 250: Undefined label `\cos'.
+251: Undefined label `\cosh'. 252: Undefined label `\cot'.
+253: Undefined label `\coth'. 256: Undefined label `\countdef'.
+257: Undefined label `\cr'. 259: Undefined label `\crcr'.
+260: Undefined label `\csc'. [320] 262: Undefined label `\cup'.
+263: Undefined label `\d'. 264: Undefined label `\dag'.
+265: Undefined label `\dagger'. 266: Undefined label `\dashv'.
+267: Undefined label `\day'. 268: Undefined label `\ddag'.
+269: Undefined label `\ddagger'. 270: Undefined label `\ddot'.
+271: Undefined label `\ddots'. 273: Undefined label `\deadcycles'.
+274: Undefined label `\def'. 275: Undefined label `\defaulthyphenchar'.
+276: Undefined label `\defaultskewchar'. 277: Undefined label `\deg'.
+282: Undefined label `\delimiterfactor'.
+284: Undefined label `\delimitershortfall'. 285: Undefined label `\delta'.
+286: Undefined label `\Delta'. 287: Undefined label `\det'.
+288: Undefined label `\diamond'. 289: Undefined label `\diamondsuit'.
+290: Undefined label `\dim'. 291: Undefined label `\dimen'.
+293: Undefined label `\dimendef'. 295: Undefined label `\discretionary'.
+296: Undefined label `\displayindent'. 298: Undefined label `\displaylimits'.
+[321] 300: Undefined label `\displaylines'.
+301: Undefined label `\displaystyle'.
+303: Undefined label `\displaywidowpenalty'.
+304: Undefined label `\displaywidth'. 305: Undefined label `\div'.
+307: Undefined label `\dot'. 308: Undefined label `\doteq'.
+309: Undefined label `\dotfill'. 312: Undefined label `\doublehyphendemerits'.
+313: Undefined label `\downarrow'. 314: Undefined label `\Downarrow'.
+316: Undefined label `\downbracefill'. 317: Undefined label `\dp'.
+321: Undefined label `\egroup'. 324: Undefined label `\ell'.
+325: Undefined label `\@else'. 328: Undefined label `\empty'.
+329: Undefined label `\emptyset'. 330: Undefined label `\end'.
+332: Undefined label `\endcsname'. 333: Undefined label `\endgraf'.
+334: Undefined label `\endgroup'. 335: Undefined label `\endinput'.
+336: Undefined label `\endinsert'. [322] 340: Undefined label `\enskip'.
+341: Undefined label `\enspace'. 342: Undefined label `\epsilon'.
+344: Undefined label `\eqalign'. 347: Undefined label `\eqno'.
+348: Undefined label `\equiv'. 350: Undefined label `\errhelp'.
+351: Undefined label `\errmessage'. 354: Undefined label `\errorstopmode'.
+Overfull \hbox (19.79346pt too wide) in paragraph at lines 354--354
+[]\tentt \errorstopmode \oldtenrm stop for interact-ion at error mes-sages (p.
+`\tentt \errorstopmode\oldtenrm ') |
+
+\hbox(7.5+2.5)x316.99124, glue set - 1.0
+.\hbox(5.20833+0.0)x0.0, glue set - 5.24995fil
+..\glue 0.0 plus 1.0fil minus 1.0fil
+..\hbox(5.20833+0.0)x5.24995
+...\tentt *
+.\tentt \
+.\tentt e
+.\tentt r
+.\tentt r
+.etc.
+
+357: Undefined label `\eta'. 360: Undefined label `\everydisplay'.
+361: Undefined label `\everyhbox'. 362: Undefined label `\everyjob'.
+364: Undefined label `\everymath'. 366: Undefined label `\everyvbox'.
+368: Undefined label `\exhyphenpenalty'. 369: Undefined label `\exists'.
+370: Undefined label `\exp'. 375: Undefined label `\@fi'. [323]
+379: Undefined label `\finalhyphendemerits'.
+380: Undefined label `\firstmark'. 381: Undefined label `\fivebf'.
+382: Undefined label `\fivei'. 383: Undefined label `\fiverm'.
+384: Undefined label `\fivesy'. 385: Undefined label `\flat'.
+388: Undefined label `\fmtname'. 389: Undefined label `\fmtversion'.
+391: Undefined label `\folio'. 393: Undefined label `\fontdimen'.
+394: Undefined label `\fontname'. 398: Undefined label `\forall'.
+400: Undefined label `\frown'. 402: Undefined label `\futurelet'.
+403: Undefined label `\gamma'. 404: Undefined label `\Gamma'.
+405: Undefined label `\gcd'. 407: Undefined label `\ge'.
+408: Undefined label `\geq'. 409: Undefined label `\gets'.
+410: Undefined label `\gg'.
+Overfull \hbox (11.26892pt too wide) in paragraph at lines 412--412
+[]\tentt \globaldefs \oldtenrm over-rides \tentt \global \oldtenrm pref-ixes o
+n assign-ments (p.`\tentt \globaldefs\oldtenrm ') |
+
+\hbox(7.5+2.5)x316.99124, glue set - 1.0
+.\hbox(5.20833+0.0)x0.0, glue set - 5.24995fil
+..\glue 0.0 plus 1.0fil minus 1.0fil
+..\hbox(5.20833+0.0)x5.24995
+...\tentt *
+.\tentt \
+.\tentt g
+.\tentt l
+.\tentt o
+.etc.
+
+[324] 413: Undefined label `\goodbreak'. 414: Undefined label `\grave'.
+415: Undefined label `\H'. 417: Undefined label `\hang'.
+418: Undefined label `\hangafter'. 419: Undefined label `\hangindent'.
+420: Undefined label `\hat'. 423: Undefined label `\hbar'.
+427: Undefined label `\heartsuit'. 430: Undefined label `\hfill'.
+431: Undefined label `\hfilneg'. 435: Undefined label `\hglue'.
+437: Undefined label `\hidewidth'. 438: Undefined label `\hoffset'.
+441: Undefined label `\hom'. 442: Undefined label `\hookleftarrow'.
+443: Undefined label `\hookrightarrow'. 445: Undefined label `\hphantom'.
+447: Undefined label `\hrulefill'. [325] 455: Undefined label `\hyphenchar'.
+458: Undefined label `\i'. 460: Undefined label `\ialign'.
+461: Undefined label `\@if'. 462: Undefined label `\@ifcase'.
+464: Undefined label `\@ifcat'. 466: Undefined label `\@ifdim'.
+467: Undefined label `\@ifeof'. 468: Undefined label `\iff'.
+469: Undefined label `\@iffalse'. 470: Undefined label `\@ifhbox'.
+471: Undefined label `\@ifhmode'. 472: Undefined label `\@ifinner'.
+473: Undefined label `\@ifmmode'. 475: Undefined label `\@ifnum'.
+476: Undefined label `\@ifodd'. 477: Undefined label `\@iftrue'.
+478: Undefined label `\@ifvbox'. 479: Undefined label `\@ifvmode'.
+482: Undefined label `\@ifx'. 483: Undefined label `\ignorespaces'.
+484: Undefined label `\Im'. 487: Undefined label `\in'.
+490: Undefined label `\inf'. [326] 491: Undefined label `\infty'.
+493: Undefined label `\inputlineno'. 495: Undefined label `\insertpenalties'.
+Overfull \hbox (25.12662pt too wide) in paragraph at lines 495--495
+[]\tentt \insertpenalties \oldtenrm sum of pen-alt-ies due to insert-ions (p.`
+\tentt \insertpenalties\oldtenrm ') |
+
+\hbox(7.5+2.5)x316.99124, glue set - 1.0
+.\hbox(5.20833+0.0)x0.0, glue set - 5.24995fil
+..\glue 0.0 plus 1.0fil minus 1.0fil
+..\hbox(5.20833+0.0)x5.24995
+...\tentt *
+.\tentt \
+.\tentt i
+.\tentt n
+.\tentt s
+.etc.
+
+496: Undefined label `\int'. 499: Undefined label `\iota'.
+500: Undefined label `\it'. 503: Undefined label `\itemitem'.
+504: Undefined label `\itfam'. 505: Undefined label `\j'.
+506: Undefined label `\jmath'. 507: Undefined label `\jobname'.
+508: Undefined label `\jot'. 509: Undefined label `\kappa'.
+510: Undefined label `\ker'. 513: Undefined label `\l'.
+514: Undefined label `\L'. 515: Undefined label `\lambda'.
+516: Undefined label `\Lambda'. 517: Undefined label `\land'.
+518: Undefined label `\langle'. 521: Undefined label `\lastbox'.
+523: Undefined label `\lastkern'. 525: Undefined label `\lastpenalty'.
+527: Undefined label `\lastskip'. [327] 529: Undefined label `\lbrack'.
+530: Undefined label `\lccode'. 531: Undefined label `\lceil'.
+532: Undefined label `\ldotp'. 534: Undefined label `\le'.
+539: Undefined label `\leftarrow'. 540: Undefined label `\Leftarrow'.
+542: Undefined label `\leftarrowfill'.
+543: Undefined label `\leftharpoondown'.
+544: Undefined label `\leftharpoonup'. 548: Undefined label `\leftrightarrow'.
+549: Undefined label `\Leftrightarrow'. 551: Undefined label `\leq'.
+553: Undefined label `\leqalignno'. 554: Undefined label `\leqno'.
+555: Undefined label `\let'. 556: Undefined label `\lfloor'.
+557: Undefined label `\lg'. 559: Undefined label `\lgroup'.
+560: Undefined label `\lim'. 561: Undefined label `\liminf'.
+563: Undefined label `\limits'. 564: Undefined label `\limsup'. [328]
+565: Undefined label `\line'. 567: Undefined label `\linepenalty'.
+569: Undefined label `\lineskip'. 571: Undefined label `\lineskiplimit'.
+572: Undefined label `\ll'. 574: Undefined label `\llap'.
+575: Undefined label `\lmoustache'. 576: Undefined label `\ln'.
+577: Undefined label `\lnot'. 578: Undefined label `\log'.
+581: Undefined label `\longleftarrow'. 582: Undefined label `\Longleftarrow'.
+583: Undefined label `\longleftrightarrow'.
+584: Undefined label `\Longleftrightarrow'.
+585: Undefined label `\longmapsto'. 586: Undefined label `\longrightarrow'.
+587: Undefined label `\Longrightarrow'. 588: Undefined label `\loop'.
+591: Undefined label `\lor'. 592: Undefined label `\lower'.
+594: Undefined label `\lowercase'. 595: Undefined label `\lq'.
+597: Undefined label `\magnification'. 598: Undefined label `\magstep'.
+599: Undefined label `\magstephalf'. 600: Undefined label `\mapsto'.
+602: Undefined label `\mathaccent'. 603: Undefined label `\mathbin'. [329]
+604: Undefined label `\mathchar'. 606: Undefined label `\mathchardef'.
+608: Undefined label `\mathchoice'. 609: Undefined label `\mathclose'.
+612: Undefined label `\mathinner'. 613: Undefined label `\mathop'.
+614: Undefined label `\mathopen'. 617: Undefined label `\mathpalette'.
+618: Undefined label `\mathpunct'. 619: Undefined label `\mathrel'.
+622: Undefined label `\mathsurround'. 623: Undefined label `\matrix'.
+624: Undefined label `\max'. 626: Undefined label `\maxdeadcycles'.
+631: Undefined label `\meaning'. 633: Undefined label `\medbreak'.
+635: Undefined label `\medmuskip'. 636: Undefined label `\medskip'.
+638: Undefined label `\medskipamount'. [330] 639: Undefined label `\message'.
+640: Undefined label `\mid'. 642: Undefined label `\midinsert'.
+643: Undefined label `\min'. 644: Undefined label `\mit'.
+646: Undefined label `\models'. 647: Undefined label `\month'.
+649: Undefined label `\moveleft'. 651: Undefined label `\moveright'.
+652: Undefined label `\mp'. 654: Undefined label `\mu'.
+656: Undefined label `\multiply'. 658: Undefined label `\multispan'.
+659: Undefined label `\muskip'. 661: Undefined label `\muskipdef'.
+662: Undefined label `\nabla'. 664: Undefined label `\narrower'.
+665: Undefined label `\natural'. 666: Undefined label `\nearrow'.
+667: Undefined label `\ne'. 668: Undefined label `\neg'.
+669: Undefined label `\negthinspace'. 670: Undefined label `\neq'.
+673: Undefined label `\@newdimen'. [331] 682: Undefined label `\@newmuskip'.
+684: Undefined label `\@newskip'. 685: Undefined label `\@newtoks'.
+687: Undefined label `\ni'. 696: Undefined label `\nointerlineskip'.
+697: Undefined label `\nolimits'. 698: Undefined label `\nonfrenchspacing'.
+701: Undefined label `\nonstopmode'. 703: Undefined label `\nopagenumbers'.
+705: Undefined label `\normalbaselines'.
+707: Undefined label `\normalbaselineskip'.
+708: Undefined label `\normalbottom'. 710: Undefined label `\normallineskip'.
+712: Undefined label `\normallineskiplimit'. 714: Undefined label `\not'.
+715: Undefined label `\notin'. 716: Undefined label `\nu'. [332]
+717: Undefined label `\null'. 719: Undefined label `\nulldelimiterspace'.
+720: Undefined label `\nullfont'. 722: Undefined label `\nwarrow'.
+723: Undefined label `\o'. 724: Undefined label `\O'.
+729: Undefined label `\odot'. 730: Undefined label `\oe'.
+731: Undefined label `\OE'. 732: Undefined label `\offinterlineskip'.
+Overfull \hbox (35.70988pt too wide) in paragraph at lines 732--732
+[]\tentt \offinterlineskip \oldtenrm in-hibit interline glue from now on (p.`\
+tentt \offinterlineskip\oldtenrm ') |
+
+\hbox(7.5+2.5)x316.99124, glue set - 1.0
+.\hbox(0.0+0.0)x0.0
+..\glue 0.0 plus 1.0fil minus 1.0fil
+.\tentt \
+.\tentt o
+.\tentt f
+.\tentt f
+.etc.
+
+733: Undefined label `\oint'. 734: Undefined label `\oldstyle'.
+735: Undefined label `\omega'. 736: Undefined label `\Omega'.
+737: Undefined label `\ominus'. 738: Undefined label `\omit'.
+743: Undefined label `\oplus'. 744: Undefined label `\@or'.
+745: Undefined label `\oslash'. 746: Undefined label `\otimes'.
+751: Undefined label `\outputpenalty'. 755: Undefined label `\overfullrule'.
+[333] 757: Undefined label `\overleftarrow'. 759: Undefined label `\overline'.
+761: Undefined label `\overrightarrow'. 764: Undefined label `\owns'.
+765: Undefined label `\P'. 767: Undefined label `\pagedepth'.
+769: Undefined label `\pagefilllstretch'.
+771: Undefined label `\pagefillstretch'.
+773: Undefined label `\pagefilstretch'. 777: Undefined label `\pageinsert'.
+779: Undefined label `\pageno'. 781: Undefined label `\pageshrink'.
+783: Undefined label `\pagestretch'. 785: Undefined label `\pagetotal'.
+787: Undefined label `\parallel'. 789: Undefined label `\parfillskip'.
+793: Undefined label `\parshape'. 795: Undefined label `\partial'.
+797: Undefined label `\pausing'. [334] 800: Undefined label `\perp'.
+802: Undefined label `\phantom'. 803: Undefined label `\phi'.
+804: Undefined label `\Phi'. 805: Undefined label `\pi'.
+806: Undefined label `\Pi'. 807: Undefined label `\plainoutput'.
+808: Undefined label `\pm'. 809: Undefined label `\pmatrix'.
+811: Undefined label `\pmod'. 813: Undefined label `\postdisplaypenalty'.
+814: Undefined label `\Pr'. 815: Undefined label `\prec'.
+816: Undefined label `\preceq'. 818: Undefined label `\predisplaypenalty'.
+820: Undefined label `\predisplaysize'. 824: Undefined label `\prevdepth'.
+827: Undefined label `\prevgraf'. 828: Undefined label `\prime'.
+830: Undefined label `\prod'. 831: Undefined label `\propto'.
+832: Undefined label `\psi'. 833: Undefined label `\Psi'.
+834: Undefined label `\qquad'. 835: Undefined label `\quad'.
+836: Undefined label `\radical'. 837: Undefined label `\raggedbottom'.
+839: Undefined label `\raise'. [335] 840: Undefined label `\rangle'.
+841: Undefined label `\rbrace'. 842: Undefined label `\rbrack'.
+843: Undefined label `\rceil'. 844: Undefined label `\Re'.
+846: Undefined label `\relax'. 848: Undefined label `\relpenalty'.
+849: Undefined label `\@repeat'. 850: Undefined label `\rfloor'.
+852: Undefined label `\rgroup'. 853: Undefined label `\rho'.
+855: Undefined label `\right'. 856: Undefined label `\rightarrow'.
+857: Undefined label `\Rightarrow'. 859: Undefined label `\rightarrowfill'.
+860: Undefined label `\rightharpoondown'.
+861: Undefined label `\rightharpoonup'.
+862: Undefined label `\rightleftharpoons'. 864: Undefined label `\rightskip'.
+866: Undefined label `\righthyphenmin'. 868: Undefined label `\rlap'.
+869: Undefined label `\rm'. 870: Undefined label `\rmoustache'.
+872: Undefined label `\romannumeral'. 874: Undefined label `\root'.
+875: Undefined label `\rq'. 876: Undefined label `\S'.
+877: Undefined label `\sb'. 878: Undefined label `\scriptfont'. [336]
+883: Undefined label `\scriptspace'. 884: Undefined label `\scriptstyle'.
+886: Undefined label `\scrollmode'. 887: Undefined label `\searrow'.
+888: Undefined label `\sec'. 889: Undefined label `\setbox'.
+891: Undefined label `\setlanguage'. 892: Undefined label `\setminus'.
+894: Undefined label `\sevenbf'. 895: Undefined label `\seveni'.
+896: Undefined label `\sevenrm'. 897: Undefined label `\sevensy'.
+898: Undefined label `\sfcode'. 899: Undefined label `\sharp'.
+903: Undefined label `\showbox'. 906: Undefined label `\showboxdepth'.
+908: Undefined label `\showhyphens'. 909: Undefined label `\showlists'.
+912: Undefined label `\sigma'. 913: Undefined label `\Sigma'.
+914: Undefined label `\sim'. 915: Undefined label `\simeq'.
+916: Undefined label `\sin'. 917: Undefined label `\sinh'. [337]
+919: Undefined label `\skew'. 920: Undefined label `\skewchar'.
+923: Undefined label `\skipdef'. 924: Undefined label `\sl'.
+926: Undefined label `\slfam'. 928: Undefined label `\smallbreak'.
+929: Undefined label `\smallint'. 932: Undefined label `\smallskipamount'.
+933: Undefined label `\smash'. 934: Undefined label `\smile'.
+935: Undefined label `\sp'. 941: Undefined label `\spadesuit'.
+943: Undefined label `\span'. 946: Undefined label `\splitbotmark'.
+949: Undefined label `\splitmaxdepth'. 951: Undefined label `\splittopskip'.
+952: Undefined label `\sqcap'. 953: Undefined label `\sqcup'.
+954: Undefined label `\sqrt'. 955: Undefined label `\sqsubseteq'.
+956: Undefined label `\sqsupseteq'. 957: Undefined label `\ss'. [338]
+958: Undefined label `\star'. 963: Undefined label `\subset'.
+964: Undefined label `\subseteq'. 965: Undefined label `\succ'.
+966: Undefined label `\succeq'. 967: Undefined label `\sum'.
+968: Undefined label `\sup'. 969: Undefined label `\supereject'.
+970: Undefined label `\supset'. 971: Undefined label `\supseteq'.
+972: Undefined label `\surd'. 973: Undefined label `\swarrow'.
+974: Undefined label `\t'. 975: Undefined label `\tabalign'.
+977: Undefined label `\tan'. 978: Undefined label `\tanh'.
+979: Undefined label `\tau'. 980: Undefined label `\tenbf'.
+981: Undefined label `\tenex'. 982: Undefined label `\teni'.
+983: Undefined label `\tenit'. 984: Undefined label `\tenrm'.
+985: Undefined label `\tensl'. 986: Undefined label `\tensy'.
+987: Undefined label `\tentt'. 988: Undefined label `\TeX'.
+989: Undefined label `\textfont'. 990: Undefined label `\textindent'.
+993: Undefined label `\theta'. 994: Undefined label `\Theta'.
+995: Undefined label `\thickmuskip'. [339] 996: Undefined label `\thinmuskip'.
+997: Undefined label `\thinspace'. 998: Undefined label `\tilde'.
+999: Undefined label `\time'. 1000: Undefined label `\times'.
+1001: Undefined label `\toks'. 1003: Undefined label `\toksdef'.
+1006: Undefined label `\to'. 1007: Undefined label `\top'.
+1010: Undefined label `\topinsert'. 1014: Undefined label `\tracingall'.
+Overfull \hbox (16.8833pt too wide) in paragraph at lines 1015--1015
+[]\tentt \tracingcommands \oldtenrm dis-play exe-cut-ion of com-m-ands (p.`\te
+ntt \tracingcommands\oldtenrm ') |
+
+\hbox(7.5+2.5)x316.99124, glue set - 1.0
+.\hbox(5.20833+0.0)x0.0, glue set - 5.24995fil
+..\glue 0.0 plus 1.0fil minus 1.0fil
+..\hbox(5.20833+0.0)x5.24995
+...\tentt *
+.\tentt \
+.\tentt t
+.\tentt r
+.\tentt a
+.etc.
+
+1017: Undefined label `\tracinglostchars'.
+1018: Undefined label `\tracingmacros'.
+1021: Undefined label `\tracingoutput'.
+Overfull \hbox (21.99129pt too wide) in paragraph at lines 1021--1021
+[]\tentt \tracingoutput \oldtenrm dis-play cont-ents of shipped-out boxes (p.`
+\tentt \tracingoutput\oldtenrm ') |
+
+\hbox(7.5+2.5)x316.99124, glue set - 1.0
+.\hbox(5.20833+0.0)x0.0, glue set - 5.24995fil
+..\glue 0.0 plus 1.0fil minus 1.0fil
+..\hbox(5.20833+0.0)x5.24995
+...\tentt *
+.\tentt \
+.\tentt t
+.\tentt r
+.\tentt a
+.etc.
+
+1023: Undefined label `\tracingparagraphs'.
+Overfull \hbox (33.18864pt too wide) in paragraph at lines 1023--1023
+[]\tentt \tracingparagraphs \oldtenrm dis-play line break calculat-ions (p.`\t
+entt \tracingparagraphs\oldtenrm ') |
+
+\hbox(7.5+2.5)x316.99124, glue set - 1.0
+.\hbox(5.20833+0.0)x0.0, glue set - 5.24995fil
+..\glue 0.0 plus 1.0fil minus 1.0fil
+..\hbox(5.20833+0.0)x5.24995
+...\tentt *
+.\tentt \
+.\tentt t
+.\tentt r
+.\tentt a
+.etc.
+
+1025: Undefined label `\tracingrestores'.
+1026: Undefined label `\tracingstats'. 1027: Undefined label `\triangle'.
+1028: Undefined label `\triangleleft'. 1029: Undefined label `\triangleright'.
+1030: Undefined label `\tt'. 1031: Undefined label `\ttfam'.
+1033: Undefined label `\ttraggedright'. 1034: Undefined label `\u'.
+1035: Undefined label `\uccode'. [340] 1037: Undefined label `\uchyph'.
+1039: Undefined label `\underbar'. 1041: Undefined label `\underbrace'.
+1043: Undefined label `\underline'. 1047: Undefined label `\unhbox'.
+1048: Undefined label `\unhcopy'. 1049: Undefined label `\unkern'.
+1051: Undefined label `\unpenalty'. 1052: Undefined label `\unskip'.
+1056: Undefined label `\unvbox'. 1057: Undefined label `\unvcopy'.
+1058: Undefined label `\uparrow'. 1061: Undefined label `\upbracefill'.
+1062: Undefined label `\updownarrow'. 1063: Undefined label `\Updownarrow'.
+1064: Undefined label `\uplus'. 1066: Undefined label `\uppercase'.
+1067: Undefined label `\upsilon'. 1068: Undefined label `\Upsilon'.
+1069: Undefined label `\v'. 1072: Undefined label `\varepsilon'.
+1073: Undefined label `\varphi'. 1074: Undefined label `\varpi'.
+1075: Undefined label `\varrho'. 1076: Undefined label `\varsigma'. [341]
+1077: Undefined label `\vartheta'. 1083: Undefined label `\vdash'.
+1084: Undefined label `\vdots'. 1085: Undefined label `\vec'.
+1086: Undefined label `\vee'. 1088: Undefined label `\Vert'.
+1092: Undefined label `\vfilneg'. 1094: Undefined label `\vfootnote'.
+1098: Undefined label `\vglue'. 1102: Undefined label `\vphantom'.
+1109: Undefined label `\vss'. 1111: Undefined label `\wd'.
+1112: Undefined label `\wedge'. 1113: Undefined label `\widehat'.
+1114: Undefined label `\widetilde'. 1116: Undefined label `\widowpenalty'.
+1117: Undefined label `\wlog'. [342] 1118: Undefined label `\wp'.
+1119: Undefined label `\wr'. 1122: Undefined label `\xdef'.
+1123: Undefined label `\xi'. 1124: Undefined label `\Xi'.
+1126: Undefined label `\xleaders'. 1129: Undefined label `\year'.
+1130: Undefined label `\zeta'. [343]) (./fdl.tex [344] [345] [346]
+156: Undefined equation label `copying'. [347] [348] [349] [350] [351] [352]
+[353] [354] Chapter ends on a verso page. [355]) (./index.tex (./macros.tex)
+[356] (./book.sdx [357] [358] [359] [360] [361] [362] [363] [364] [365]
+[366] [367] [368] [369] [370] [371] [372]) [373]) (./backm.tex (./macros.tex)
+[374] [375] Undefined chapter `eplain'. [376] (./book.ccs) [377]) ){/usr/share/
+texlive/texmf-dist/fonts/enc/dvips/base/8r.enc}</usr/share/texlive/texmf-dist/f
+onts/type1/public/amsfonts/cm/cmbx10.pfb></usr/share/texlive/texmf-dist/fonts/t
+ype1/public/amsfonts/cm/cmbx12.pfb></usr/share/texlive/texmf-dist/fonts/type1/p
+ublic/amsfonts/cm/cmbxti10.pfb></usr/share/texlive/texmf-dist/fonts/type1/publi
+c/amsfonts/cm/cmcsc10.pfb></usr/share/texlive/texmf-dist/fonts/type1/public/ams
+fonts/cm/cmex10.pfb></usr/share/texlive/texmf-dist/fonts/type1/public/amsfonts/
+cm/cmmi10.pfb></usr/share/texlive/texmf-dist/fonts/type1/public/amsfonts/cm/cmm
+i5.pfb></usr/share/texlive/texmf-dist/fonts/type1/public/amsfonts/cm/cmmi7.pfb>
+</usr/share/texlive/texmf-dist/fonts/type1/public/amsfonts/cm/cmmi8.pfb></usr/s
+hare/texlive/texmf-dist/fonts/type1/public/amsfonts/cm/cmr10.pfb></usr/share/te
+xlive/texmf-dist/fonts/type1/public/amsfonts/cm/cmr5.pfb></usr/share/texlive/te
+xmf-dist/fonts/type1/public/amsfonts/cm/cmr6.pfb></usr/share/texlive/texmf-dist
+/fonts/type1/public/amsfonts/cm/cmr7.pfb></usr/share/texlive/texmf-dist/fonts/t
+ype1/public/amsfonts/cm/cmr8.pfb></usr/share/texlive/texmf-dist/fonts/type1/pub
+lic/amsfonts/cm/cmr9.pfb></usr/share/texlive/texmf-dist/fonts/type1/public/amsf
+onts/cm/cmsl10.pfb></usr/share/texlive/texmf-dist/fonts/type1/public/amsfonts/c
+m/cmsl8.pfb></usr/share/texlive/texmf-dist/fonts/type1/public/amsfonts/cm/cmss1
+0.pfb></usr/share/texlive/texmf-dist/fonts/type1/public/amsfonts/cm/cmsy10.pfb>
+</usr/share/texlive/texmf-dist/fonts/type1/public/amsfonts/cm/cmsy7.pfb></usr/s
+hare/texlive/texmf-dist/fonts/type1/public/amsfonts/cm/cmsy8.pfb></usr/share/te
+xlive/texmf-dist/fonts/type1/public/amsfonts/cm/cmti10.pfb></usr/share/texlive/
+texmf-dist/fonts/type1/public/amsfonts/cm/cmti8.pfb></usr/share/texlive/texmf-d
+ist/fonts/type1/public/amsfonts/cm/cmti9.pfb></usr/share/texlive/texmf-dist/fon
+ts/type1/public/amsfonts/cm/cmtt10.pfb></usr/share/texlive/texmf-dist/fonts/typ
+e1/public/amsfonts/cm/cmtt8.pfb></usr/share/texlive/texmf-dist/fonts/type1/hoek
+water/mflogo/logo10.pfb></usr/share/texlive/texmf-dist/fonts/type1/hoekwater/mf
+logo/logo8.pfb></usr/share/texlive/texmf-dist/fonts/type1/hoekwater/mflogo/logo
+sl10.pfb></usr/share/texlive/texmf-dist/fonts/type1/urw/palatino/uplr8a.pfb></u
+sr/share/texlive/texmf-dist/fonts/type1/urw/zapfding/uzdr.pfb>
+Output written on book.pdf (393 pages, 1331489 bytes).
+PDF statistics:
+ 1403 PDF objects out of 1440 (max. 8388607)
+ 961 compressed objects within 10 object streams
+ 0 named destinations out of 1000 (max. 500000)
+ 1 words of extra memory for PDF output out of 10000 (max. 10000000)
+
diff --git a/teximpatient/book.pdf b/teximpatient/book.pdf
new file mode 100644
index 0000000..5c4ab64
--- /dev/null
+++ b/teximpatient/book.pdf
Binary files differ
diff --git a/teximpatient/book.toc b/teximpatient/book.toc
new file mode 100644
index 0000000..3d9a923
--- /dev/null
+++ b/teximpatient/book.toc
@@ -0,0 +1,201 @@
+\tocchapterentry {Using this book}{1}{1}
+\tocsectionentry {Syntactic conventions}{}{2}
+\tocsectionentry {Descriptions of the commands}{}{3}
+\tocchapterentry {Using \TeX }{2}{7}
+\tocsectionentry {Turning input into ink}{}{7}
+\tocsubsectionentry {Programs and files you need}{}{7}
+\tocsubsectionentry {Running {\TeX }}{}{9}
+\tocsectionentry {Preparing an input file}{}{10}
+\tocsubsectionentry {Commands and control sequences}{}{10}
+\tocsubsectionentry {Arguments}{}{11}
+\tocsubsectionentry {Parameters}{}{12}
+\tocsubsectionentry {Spaces}{}{12}
+\tocsubsectionentry {Comments}{}{13}
+\tocsubsectionentry {Punctuation}{}{13}
+\tocsubsectionentry {Special characters}{}{15}
+\tocsubsectionentry {Groups}{}{15}
+\tocsubsectionentry {Math formulas}{}{16}
+\tocsectionentry {How \TeX \ works}{}{16}
+\tocsectionentry {New \TeX \ versus old {\TeX }}{}{18}
+\tocsectionentry {Resources}{}{18}
+\tocchapterentry {Examples}{3}{21}
+\tocsectionentry{Entering simple text}{}{22}
+\tocsectionentry{Indentation}{}{24}
+\tocsectionentry{Fonts and special characters}{}{26}
+\tocsectionentry{Interline spacing}{}{28}
+\tocsectionentry{Spacing, rules, and boxes}{}{30}
+\tocsectionentry{Odds and ends}{}{32}
+\tocsectionentry{Using fonts from other sources}{}{34}
+\tocsectionentry{A ruled table}{}{36}
+\tocsectionentry{Typesetting mathematics}{}{38}
+\tocsectionentry{More mathematics}{}{40}
+\tocchapterentry {Concepts}{4}{43}
+\tocchapterentry {Commands \linebreak for composing \linebreak paragraphs}{5}{99}
+\tocsectionentry {Characters and accents}{}{99}
+\tocsubsectionentry {Letters and ligatures for European alphabets}{}{99}
+\tocsubsectionentry {Special symbols}{}{100}
+\tocsubsectionentry {Arbitrary characters}{}{101}
+\tocsubsectionentry {Accents}{}{102}
+\tocsubsectionentry {Defeating boundary ligatures}{}{103}
+\tocsectionentry {Selecting fonts}{}{104}
+\tocsubsectionentry {Particular fonts}{}{104}
+\tocsubsectionentry {Type styles}{}{105}
+\tocsectionentry {Uppercase and lowercase}{}{105}
+\tocsectionentry {Interword spacing}{}{106}
+\tocsectionentry {Centering and justifying lines}{}{110}
+\tocsectionentry {Shaping paragraphs}{}{112}
+\tocsubsectionentry {Starting, ending, and indenting paragraphs}{}{112}
+\tocsubsectionentry {Shaping entire paragraphs}{}{116}
+\tocsectionentry {Line breaks}{}{122}
+\tocsubsectionentry {Encouraging or discouraging line breaks}{}{122}
+\tocsubsectionentry {Line breaking parameters}{}{125}
+\tocsubsectionentry {Hyphenation}{}{128}
+\tocsectionentry {Section headings, lists, and theorems}{}{131}
+\tocchapterentry {Commands for \linebreak composing pages}{6}{135}
+\tocsectionentry {Interline and interparagraph spaces}{}{135}
+\tocsectionentry {Page breaks}{}{138}
+\tocsubsectionentry {Encouraging or discouraging page breaks}{}{138}
+\tocsubsectionentry {Page breaking parameters}{}{140}
+\tocsectionentry {Page layout}{}{142}
+\tocsubsectionentry {Page description parameters}{}{142}
+\tocsubsectionentry {Page numbers}{}{144}
+\tocsubsectionentry {Header and footer lines}{}{145}
+\tocsubsectionentry {Marks}{}{146}
+\tocsectionentry {Insertions}{}{147}
+\tocsubsectionentry {Footnotes}{}{147}
+\tocsubsectionentry {General insertions}{}{148}
+\tocsectionentry {Modifying the output routine}{}{150}
+\tocsectionentry {Splitting vertical lists}{}{151}
+\tocchapterentry {Commands for \linebreak horizontal and \linebreak vertical modes}{7}{155}
+\tocsectionentry {Producing space}{}{155}
+\tocsubsectionentry {Fixed-width horizontal space}{}{155}
+\tocsubsectionentry {Fixed-length vertical space}{}{156}
+\tocsubsectionentry {Variable-size space}{}{157}
+\tocsectionentry {Manipulating boxes}{}{162}
+\tocsubsectionentry {Constructing hboxes and vboxes}{}{162}
+\tocsubsectionentry {Setting and retrieving the contents of boxes}{}{166}
+\tocsubsectionentry {Shifting boxes}{}{168}
+\tocsubsectionentry {Dimensions of box registers}{}{169}
+\tocsubsectionentry {Struts, phantoms, and empty boxes}{}{169}
+\tocsubsectionentry {Parameters pertaining to malformed boxes}{}{172}
+\tocsectionentry {Retrieving the last item from a list}{}{173}
+\tocsectionentry {Rules and leaders}{}{174}
+\tocsectionentry {Alignments}{}{178}
+\tocsubsectionentry {Tabbing alignments}{}{178}
+\tocsubsectionentry {General alignments}{}{180}
+\tocchapterentry {Commands \linebreak for composing \linebreak math formulas}{8}{189}
+\tocsectionentry {Simple parts of formulas}{}{189}
+\tocsubsectionentry {Greek letters}{}{189}
+\tocsubsectionentry {Miscellaneous ordinary math symbols}{}{190}
+\tocsubsectionentry {Binary operations}{}{191}
+\tocsubsectionentry {Relations}{}{192}
+\tocsubsectionentry {Left and right delimiters}{}{193}
+\tocsubsectionentry {Arrows}{}{194}
+\tocsubsectionentry {Named mathematical functions}{}{195}
+\tocsubsectionentry {Large operators}{}{196}
+\tocsubsectionentry {Punctuation}{}{198}
+\tocsectionentry {Superscripts and subscripts}{}{199}
+\tocsubsectionentry {Selecting and using styles}{}{200}
+\tocsectionentry {Compound symbols}{}{201}
+\tocsubsectionentry {Math accents}{}{201}
+\tocsubsectionentry {Fractions and other stacking operations}{}{202}
+\tocsubsectionentry {Dots}{}{205}
+\tocsubsectionentry {Delimiters}{}{206}
+\tocsubsectionentry {Matrices}{}{207}
+\tocsubsectionentry {Roots and radicals}{}{208}
+\tocsectionentry {Equation numbers}{}{209}
+\tocsectionentry {Multiline displays}{}{210}
+\tocsectionentry {Fonts in math formulas}{}{211}
+\tocsectionentry {Constructing math symbols}{}{213}
+\tocsubsectionentry {Making delimiters bigger}{}{213}
+\tocsubsectionentry {Parts of large symbols}{}{213}
+\tocsectionentry {Aligning parts of a formula}{}{214}
+\tocsubsectionentry {Aligning accents}{}{214}
+\tocsubsectionentry {Aligning material vertically}{}{215}
+\tocsectionentry {Producing spaces}{}{216}
+\tocsubsectionentry {Fixed-width math spaces}{}{216}
+\tocsubsectionentry {Variable-width math spaces}{}{217}
+\tocsubsectionentry {Spacing parameters for displays}{}{218}
+\tocsubsectionentry {Other spacing parameters for math}{}{219}
+\tocsectionentry {Categorizing math constructs}{}{220}
+\tocsectionentry {Special actions for math formulas}{}{220}
+\tocchapterentry {Commands for \linebreak general operations}{9}{223}
+\tocsectionentry {Naming and modifying fonts}{}{223}
+\tocsectionentry {Converting information to tokens}{}{226}
+\tocsubsectionentry {Numbers}{}{226}
+\tocsubsectionentry {Environmental information}{}{226}
+\tocsubsectionentry {Values of variables}{}{228}
+\tocsectionentry {Grouping}{}{229}
+\tocsectionentry {Macros}{}{232}
+\tocsubsectionentry {Defining macros}{}{232}
+\tocsubsectionentry {Other definitions}{}{234}
+\tocsubsectionentry {Controlling expansion}{}{235}
+\tocsubsectionentry {Conditional tests}{}{237}
+\tocsubsectionentry {Repeated actions}{}{242}
+\tocsubsectionentry {Doing nothing}{}{243}
+\tocsectionentry {Registers}{}{244}
+\tocsubsectionentry {Using registers}{}{244}
+\tocsubsectionentry {Naming and reserving registers, etc.}{}{246}
+\tocsubsectionentry {Doing arithmetic in registers}{}{247}
+\tocsectionentry {Ending the job}{}{248}
+\tocsectionentry {Input and output}{}{249}
+\tocsubsectionentry {Operations on input files}{}{249}
+\tocsubsectionentry {Operations on output files}{}{251}
+\tocsubsectionentry {Interpreting input characters}{}{253}
+\tocsectionentry {Controlling interaction with \TeX }{}{254}
+\tocsectionentry {Diagnostic aids}{}{255}
+\tocsubsectionentry {Displaying internal data}{}{255}
+\tocsubsectionentry {Specifying what is traced}{}{258}
+\tocsubsectionentry {Sending messages}{}{263}
+\tocsectionentry {Initializing \TeX }{}{265}
+\tocchapterentry {Tips and techniques}{10}{267}
+\tocsectionentry {Correcting bad page breaks}{}{267}
+\tocsectionentry {Preserving the end of a page}{}{269}
+\tocsectionentry {Leaving space at the top of a page}{}{269}
+\tocsectionentry {Correcting bad line breaks}{}{270}
+\tocsectionentry {Correcting overfull or underfull boxes}{}{270}
+\tocsectionentry {Recovering lost interword spaces}{}{272}
+\tocsectionentry {Avoiding unwanted interword spaces}{}{272}
+\tocsectionentry {Avoiding excess space around a display}{}{273}
+\tocsectionentry {Avoiding excess space after a paragraph}{}{273}
+\tocsectionentry {Changing the paragraph shape}{}{274}
+\tocsectionentry {Putting paragraphs into a box}{}{274}
+\tocsectionentry {Drawing lines}{}{275}
+\tocsectionentry {Creating multiline headers or footers}{}{276}
+\tocsectionentry {Finding mismatched braces}{}{277}
+\tocsectionentry {Setting dimensions}{}{278}
+\tocsectionentry {Creating composite fonts}{}{278}
+\tocsectionentry {Reproducing text verbatim}{}{279}
+\tocsectionentry {Using outer macros}{}{281}
+\tocsectionentry {Changing category codes}{}{282}
+\tocsectionentry {Making macro files more readable}{}{283}
+\tocchapterentry {Making sense \linebreak of error messages}{11}{285}
+\tocchapterentry {A compendium \linebreak of useful macros}{12}{293}
+\tocsectionentry {Preliminaries}{}{293}
+\tocsectionentry {Displays}{}{297}
+\tocsectionentry {Time of day}{}{299}
+\tocsectionentry {Lists}{}{300}
+\tocsectionentry {Verbatim listing}{}{302}
+\tocsectionentry {Tables of contents}{}{303}
+\tocsectionentry {Cross-references}{}{304}
+\tocsectionentry {Environments}{}{306}
+\tocsectionentry {Justification}{}{308}
+\tocsectionentry {Tables}{}{309}
+\tocsectionentry {Footnotes}{}{311}
+\tocsectionentry {Double columns}{}{311}
+\tocsectionentry {Finishing up}{}{313}
+\tocchapterentry {Capsule summary \linebreak of commands}{13}{315}
+\setback
+\tocchapterentry {GNU Free Documentation \linebreak License}{14}{345}
+\tocsectionentry {PREAMBLE}{}{345}
+\tocsectionentry {APPLICABILITY AND DEFINITIONS}{}{346}
+\tocsectionentry {VERBATIM COPYING}{}{347}
+\tocsectionentry {COPYING IN QUANTITY}{}{348}
+\tocsectionentry {MODIFICATIONS}{}{349}
+\tocsectionentry {COMBINING DOCUMENTS}{}{351}
+\tocsectionentry {COLLECTIONS OF DOCUMENTS}{}{351}
+\tocsectionentry {AGGREGATION WITH INDEPENDENT WORKS}{}{351}
+\tocsectionentry {TRANSLATION}{}{352}
+\tocsectionentry {TERMINATION}{}{352}
+\tocsectionentry {FUTURE REVISIONS OF THIS LICENSE}{}{353}
+\tocchapterentry {Index}{15}{357}
diff --git a/teximpatient/config.log b/teximpatient/config.log
new file mode 100644
index 0000000..ef06536
--- /dev/null
+++ b/teximpatient/config.log
@@ -0,0 +1,157 @@
+This file contains any messages produced by compilers while
+running configure, to aid debugging if configure makes a mistake.
+
+It was created by teximpatient configure 2.4, which was
+generated by GNU Autoconf 2.69. Invocation command line was
+
+ $ ./configure
+
+## --------- ##
+## Platform. ##
+## --------- ##
+
+hostname = daniel-desktop
+uname -m = x86_64
+uname -r = 4.4.6-300.fc23.x86_64
+uname -s = Linux
+uname -v = #1 SMP Wed Mar 16 22:10:37 UTC 2016
+
+/usr/bin/uname -p = x86_64
+/bin/uname -X = unknown
+
+/bin/arch = x86_64
+/usr/bin/arch -k = unknown
+/usr/convex/getsysinfo = unknown
+/usr/bin/hostinfo = unknown
+/bin/machine = unknown
+/usr/bin/oslevel = unknown
+/bin/universe = unknown
+
+PATH: /usr/lib64/qt-3.3/bin
+PATH: /usr/local/bin
+PATH: /usr/local/sbin
+PATH: /usr/bin
+PATH: /usr/sbin
+PATH: /home/djames/bin
+
+
+## ----------- ##
+## Core tests. ##
+## ----------- ##
+
+configure:1721: checking for a BSD-compatible install
+configure:1789: result: /usr/bin/install -c
+configure:1800: checking for a thread-safe mkdir -p
+configure:1839: result: /usr/bin/mkdir -p
+configure:1844: checking for icon
+configure:1877: result: no
+configure:1884: checking for tex
+configure:1902: found /usr/bin/tex
+configure:1914: result: /usr/bin/tex
+configure:1924: checking for pdftex
+configure:1942: found /usr/bin/pdftex
+configure:1954: result: /usr/bin/pdftex
+configure:1964: checking for httex
+configure:1982: found /usr/bin/httex
+configure:1994: result: /usr/bin/httex
+configure:2155: creating ./config.status
+
+## ---------------------- ##
+## Running config.status. ##
+## ---------------------- ##
+
+This file was extended by teximpatient config.status 2.4, which was
+generated by GNU Autoconf 2.69. Invocation command line was
+
+ CONFIG_FILES =
+ CONFIG_HEADERS =
+ CONFIG_LINKS =
+ CONFIG_COMMANDS =
+ $ ./config.status
+
+on daniel-desktop
+
+config.status:722: creating Makefile
+
+## ---------------- ##
+## Cache variables. ##
+## ---------------- ##
+
+ac_cv_env_build_alias_set=
+ac_cv_env_build_alias_value=
+ac_cv_env_host_alias_set=
+ac_cv_env_host_alias_value=
+ac_cv_env_target_alias_set=
+ac_cv_env_target_alias_value=
+ac_cv_path_HTTEX=/usr/bin/httex
+ac_cv_path_PDFTEX=/usr/bin/pdftex
+ac_cv_path_TEX=/usr/bin/tex
+ac_cv_path_install='/usr/bin/install -c'
+ac_cv_path_mkdir=/usr/bin/mkdir
+
+## ----------------- ##
+## Output variables. ##
+## ----------------- ##
+
+DEFS='-DPACKAGE_NAME=\"teximpatient\" -DPACKAGE_TARNAME=\"teximpatient\" -DPACKAGE_VERSION=\"2.4\" -DPACKAGE_STRING=\"teximpatient\ 2.4\" -DPACKAGE_BUGREPORT=\"impatient@tug.org\" -DPACKAGE_URL=\"\"'
+ECHO_C=''
+ECHO_N='-n'
+ECHO_T=''
+HTTEX='/usr/bin/httex'
+ICON=''
+INSTALL_DATA='${INSTALL} -m 644'
+INSTALL_PROGRAM='${INSTALL}'
+INSTALL_SCRIPT='${INSTALL}'
+LIBOBJS=''
+LIBS=''
+LTLIBOBJS=''
+MKDIR_P='/usr/bin/mkdir -p'
+PACKAGE_BUGREPORT='impatient@tug.org'
+PACKAGE_NAME='teximpatient'
+PACKAGE_STRING='teximpatient 2.4'
+PACKAGE_TARNAME='teximpatient'
+PACKAGE_URL=''
+PACKAGE_VERSION='2.4'
+PATH_SEPARATOR=':'
+PDFTEX='/usr/bin/pdftex'
+SHELL='/bin/sh'
+TEX='/usr/bin/tex'
+bindir='${exec_prefix}/bin'
+build_alias=''
+datadir='${datarootdir}'
+datarootdir='${prefix}/share'
+docdir='${datarootdir}/doc/${PACKAGE_TARNAME}'
+dvidir='${docdir}'
+exec_prefix='${prefix}'
+host_alias=''
+htmldir='${docdir}'
+includedir='${prefix}/include'
+infodir='${datarootdir}/info'
+libdir='${exec_prefix}/lib'
+libexecdir='${exec_prefix}/libexec'
+localedir='${datarootdir}/locale'
+localstatedir='${prefix}/var'
+mandir='${datarootdir}/man'
+oldincludedir='/usr/include'
+pdfdir='${docdir}'
+prefix='/usr/local'
+program_transform_name='s,x,x,'
+psdir='${docdir}'
+sbindir='${exec_prefix}/sbin'
+sharedstatedir='${prefix}/com'
+sysconfdir='${prefix}/etc'
+target_alias=''
+
+## ----------- ##
+## confdefs.h. ##
+## ----------- ##
+
+/* confdefs.h */
+#define PACKAGE_NAME "teximpatient"
+#define PACKAGE_TARNAME "teximpatient"
+#define PACKAGE_VERSION "2.4"
+#define PACKAGE_STRING "teximpatient 2.4"
+#define PACKAGE_BUGREPORT "impatient@tug.org"
+#define PACKAGE_URL ""
+
+configure: exit 0
diff --git a/teximpatient/config.status b/teximpatient/config.status
new file mode 100755
index 0000000..214de24
--- /dev/null
+++ b/teximpatient/config.status
@@ -0,0 +1,900 @@
+#! /bin/sh
+# Generated by configure.
+# Run this file to recreate the current configuration.
+# Compiler output produced by configure, useful for debugging
+# configure, is in config.log if it exists.
+
+debug=false
+ac_cs_recheck=false
+ac_cs_silent=false
+
+SHELL=${CONFIG_SHELL-/bin/sh}
+export SHELL
+## -------------------- ##
+## M4sh Initialization. ##
+## -------------------- ##
+
+# Be more Bourne compatible
+DUALCASE=1; export DUALCASE # for MKS sh
+if test -n "${ZSH_VERSION+set}" && (emulate sh) >/dev/null 2>&1; then :
+ emulate sh
+ NULLCMD=:
+ # Pre-4.2 versions of Zsh do word splitting on ${1+"$@"}, which
+ # is contrary to our usage. Disable this feature.
+ alias -g '${1+"$@"}'='"$@"'
+ setopt NO_GLOB_SUBST
+else
+ case `(set -o) 2>/dev/null` in #(
+ *posix*) :
+ set -o posix ;; #(
+ *) :
+ ;;
+esac
+fi
+
+
+as_nl='
+'
+export as_nl
+# Printing a long string crashes Solaris 7 /usr/bin/printf.
+as_echo='\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\'
+as_echo=$as_echo$as_echo$as_echo$as_echo$as_echo
+as_echo=$as_echo$as_echo$as_echo$as_echo$as_echo$as_echo
+# Prefer a ksh shell builtin over an external printf program on Solaris,
+# but without wasting forks for bash or zsh.
+if test -z "$BASH_VERSION$ZSH_VERSION" \
+ && (test "X`print -r -- $as_echo`" = "X$as_echo") 2>/dev/null; then
+ as_echo='print -r --'
+ as_echo_n='print -rn --'
+elif (test "X`printf %s $as_echo`" = "X$as_echo") 2>/dev/null; then
+ as_echo='printf %s\n'
+ as_echo_n='printf %s'
+else
+ if test "X`(/usr/ucb/echo -n -n $as_echo) 2>/dev/null`" = "X-n $as_echo"; then
+ as_echo_body='eval /usr/ucb/echo -n "1ドル$as_nl"'
+ as_echo_n='/usr/ucb/echo -n'
+ else
+ as_echo_body='eval expr "X1ドル" : "X\\(.*\\)"'
+ as_echo_n_body='eval
+ arg=1ドル;
+ case $arg in #(
+ *"$as_nl"*)
+ expr "X$arg" : "X\\(.*\\)$as_nl";
+ arg=`expr "X$arg" : ".*$as_nl\\(.*\\)"`;;
+ esac;
+ expr "X$arg" : "X\\(.*\\)" | tr -d "$as_nl"
+ '
+ export as_echo_n_body
+ as_echo_n='sh -c $as_echo_n_body as_echo'
+ fi
+ export as_echo_body
+ as_echo='sh -c $as_echo_body as_echo'
+fi
+
+# The user is always right.
+if test "${PATH_SEPARATOR+set}" != set; then
+ PATH_SEPARATOR=:
+ (PATH='/bin;/bin'; FPATH=$PATH; sh -c :) >/dev/null 2>&1 && {
+ (PATH='/bin:/bin'; FPATH=$PATH; sh -c :) >/dev/null 2>&1 ||
+ PATH_SEPARATOR=';'
+ }
+fi
+
+
+# IFS
+# We need space, tab and new line, in precisely that order. Quoting is
+# there to prevent editors from complaining about space-tab.
+# (If _AS_PATH_WALK were called with IFS unset, it would disable word
+# splitting by setting IFS to empty value.)
+IFS=" "" $as_nl"
+
+# Find who we are. Look in the path if we contain no directory separator.
+as_myself=
+case 0ドル in #((
+ *[\\/]* ) as_myself=0ドル ;;
+ *) as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
+for as_dir in $PATH
+do
+ IFS=$as_save_IFS
+ test -z "$as_dir" && as_dir=.
+ test -r "$as_dir/0ドル" && as_myself=$as_dir/0ドル && break
+ done
+IFS=$as_save_IFS
+
+ ;;
+esac
+# We did not find ourselves, most probably we were run as `sh COMMAND'
+# in which case we are not to be found in the path.
+if test "x$as_myself" = x; then
+ as_myself=0ドル
+fi
+if test ! -f "$as_myself"; then
+ $as_echo "$as_myself: error: cannot find myself; rerun with an absolute file name" >&2
+ exit 1
+fi
+
+# Unset variables that we do not need and which cause bugs (e.g. in
+# pre-3.0 UWIN ksh). But do not cause bugs in bash 2.01; the "|| exit 1"
+# suppresses any "Segmentation fault" message there. '((' could
+# trigger a bug in pdksh 5.2.14.
+for as_var in BASH_ENV ENV MAIL MAILPATH
+do eval test x\${$as_var+set} = xset \
+ && ( (unset $as_var) || exit 1) >/dev/null 2>&1 && unset $as_var || :
+done
+PS1='$ '
+PS2='> '
+PS4='+ '
+
+# NLS nuisances.
+LC_ALL=C
+export LC_ALL
+LANGUAGE=C
+export LANGUAGE
+
+# CDPATH.
+(unset CDPATH) >/dev/null 2>&1 && unset CDPATH
+
+
+# as_fn_error STATUS ERROR [LINENO LOG_FD]
+# ----------------------------------------
+# Output "`basename 0ドル`: error: ERROR" to stderr. If LINENO and LOG_FD are
+# provided, also output the error to LOG_FD, referencing LINENO. Then exit the
+# script with STATUS, using 1 if that was 0.
+as_fn_error ()
+{
+ as_status=1ドル; test $as_status -eq 0 && as_status=1
+ if test "4ドル"; then
+ as_lineno=${as_lineno-"3ドル"} as_lineno_stack=as_lineno_stack=$as_lineno_stack
+ $as_echo "$as_me:${as_lineno-$LINENO}: error: 2ドル" >&4ドル
+ fi
+ $as_echo "$as_me: error: 2ドル" >&2
+ as_fn_exit $as_status
+} # as_fn_error
+
+
+# as_fn_set_status STATUS
+# -----------------------
+# Set $? to STATUS, without forking.
+as_fn_set_status ()
+{
+ return 1ドル
+} # as_fn_set_status
+
+# as_fn_exit STATUS
+# -----------------
+# Exit the shell with STATUS, even in a "trap 0" or "set -e" context.
+as_fn_exit ()
+{
+ set +e
+ as_fn_set_status 1ドル
+ exit 1ドル
+} # as_fn_exit
+
+# as_fn_unset VAR
+# ---------------
+# Portably unset VAR.
+as_fn_unset ()
+{
+ { eval 1ドル=; unset 1ドル;}
+}
+as_unset=as_fn_unset
+# as_fn_append VAR VALUE
+# ----------------------
+# Append the text in VALUE to the end of the definition contained in VAR. Take
+# advantage of any shell optimizations that allow amortized linear growth over
+# repeated appends, instead of the typical quadratic growth present in naive
+# implementations.
+if (eval "as_var=1; as_var+=2; test x\$as_var = x12") 2>/dev/null; then :
+ eval 'as_fn_append ()
+ {
+ eval 1ドル+=\2ドル
+ }'
+else
+ as_fn_append ()
+ {
+ eval 1ドル=\$1ドル\2ドル
+ }
+fi # as_fn_append
+
+# as_fn_arith ARG...
+# ------------------
+# Perform arithmetic evaluation on the ARGs, and store the result in the
+# global $as_val. Take advantage of shells that can avoid forks. The arguments
+# must be portable across $(()) and expr.
+if (eval "test \$(( 1 + 1 )) = 2") 2>/dev/null; then :
+ eval 'as_fn_arith ()
+ {
+ as_val=$(( $* ))
+ }'
+else
+ as_fn_arith ()
+ {
+ as_val=`expr "$@" || test $? -eq 1`
+ }
+fi # as_fn_arith
+
+
+if expr a : '\(a\)' >/dev/null 2>&1 &&
+ test "X`expr 00001 : '.*\(...\)'`" = X001; then
+ as_expr=expr
+else
+ as_expr=false
+fi
+
+if (basename -- /) >/dev/null 2>&1 && test "X`basename -- / 2>&1`" = "X/"; then
+ as_basename=basename
+else
+ as_basename=false
+fi
+
+if (as_dir=`dirname -- /` && test "X$as_dir" = X/) >/dev/null 2>&1; then
+ as_dirname=dirname
+else
+ as_dirname=false
+fi
+
+as_me=`$as_basename -- "0ドル" ||
+$as_expr X/"0ドル" : '.*/\([^/][^/]*\)/*$' \| \
+ X"0ドル" : 'X\(//\)$' \| \
+ X"0ドル" : 'X\(/\)' \| . 2>/dev/null ||
+$as_echo X/"0ドル" |
+ sed '/^.*\/\([^/][^/]*\)\/*$/{
+ s//1円/
+ q
+ }
+ /^X\/\(\/\/\)$/{
+ s//1円/
+ q
+ }
+ /^X\/\(\/\).*/{
+ s//1円/
+ q
+ }
+ s/.*/./; q'`
+
+# Avoid depending upon Character Ranges.
+as_cr_letters='abcdefghijklmnopqrstuvwxyz'
+as_cr_LETTERS='ABCDEFGHIJKLMNOPQRSTUVWXYZ'
+as_cr_Letters=$as_cr_letters$as_cr_LETTERS
+as_cr_digits='0123456789'
+as_cr_alnum=$as_cr_Letters$as_cr_digits
+
+ECHO_C= ECHO_N= ECHO_T=
+case `echo -n x` in #(((((
+-n*)
+ case `echo 'xy\c'` in
+ *c*) ECHO_T=' ';; # ECHO_T is single tab character.
+ xy) ECHO_C='\c';;
+ *) echo `echo ksh88 bug on AIX 6.1` > /dev/null
+ ECHO_T=' ';;
+ esac;;
+*)
+ ECHO_N='-n';;
+esac
+
+rm -f conf$$ conf$$.exe conf$$.file
+if test -d conf$$.dir; then
+ rm -f conf$$.dir/conf$$.file
+else
+ rm -f conf$$.dir
+ mkdir conf$$.dir 2>/dev/null
+fi
+if (echo >conf$$.file) 2>/dev/null; then
+ if ln -s conf$$.file conf$$ 2>/dev/null; then
+ as_ln_s='ln -s'
+ # ... but there are two gotchas:
+ # 1) On MSYS, both `ln -s file dir' and `ln file dir' fail.
+ # 2) DJGPP < 2.04 has no symlinks; `ln -s' creates a wrapper executable.
+ # In both cases, we have to default to `cp -pR'.
+ ln -s conf$$.file conf$$.dir 2>/dev/null && test ! -f conf$$.exe ||
+ as_ln_s='cp -pR'
+ elif ln conf$$.file conf$$ 2>/dev/null; then
+ as_ln_s=ln
+ else
+ as_ln_s='cp -pR'
+ fi
+else
+ as_ln_s='cp -pR'
+fi
+rm -f conf$$ conf$$.exe conf$$.dir/conf$$.file conf$$.file
+rmdir conf$$.dir 2>/dev/null
+
+
+# as_fn_mkdir_p
+# -------------
+# Create "$as_dir" as a directory, including parents if necessary.
+as_fn_mkdir_p ()
+{
+
+ case $as_dir in #(
+ -*) as_dir=./$as_dir;;
+ esac
+ test -d "$as_dir" || eval $as_mkdir_p || {
+ as_dirs=
+ while :; do
+ case $as_dir in #(
+ *\'*) as_qdir=`$as_echo "$as_dir" | sed "s/'/'\\\\\\\\''/g"`;; #'(
+ *) as_qdir=$as_dir;;
+ esac
+ as_dirs="'$as_qdir' $as_dirs"
+ as_dir=`$as_dirname -- "$as_dir" ||
+$as_expr X"$as_dir" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \
+ X"$as_dir" : 'X\(//\)[^/]' \| \
+ X"$as_dir" : 'X\(//\)$' \| \
+ X"$as_dir" : 'X\(/\)' \| . 2>/dev/null ||
+$as_echo X"$as_dir" |
+ sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{
+ s//1円/
+ q
+ }
+ /^X\(\/\/\)[^/].*/{
+ s//1円/
+ q
+ }
+ /^X\(\/\/\)$/{
+ s//1円/
+ q
+ }
+ /^X\(\/\).*/{
+ s//1円/
+ q
+ }
+ s/.*/./; q'`
+ test -d "$as_dir" && break
+ done
+ test -z "$as_dirs" || eval "mkdir $as_dirs"
+ } || test -d "$as_dir" || as_fn_error $? "cannot create directory $as_dir"
+
+
+} # as_fn_mkdir_p
+if mkdir -p . 2>/dev/null; then
+ as_mkdir_p='mkdir -p "$as_dir"'
+else
+ test -d ./-p && rmdir ./-p
+ as_mkdir_p=false
+fi
+
+
+# as_fn_executable_p FILE
+# -----------------------
+# Test if FILE is an executable regular file.
+as_fn_executable_p ()
+{
+ test -f "1ドル" && test -x "1ドル"
+} # as_fn_executable_p
+as_test_x='test -x'
+as_executable_p=as_fn_executable_p
+
+# Sed expression to map a string onto a valid CPP name.
+as_tr_cpp="eval sed 'y%*$as_cr_letters%P$as_cr_LETTERS%;s%[^_$as_cr_alnum]%_%g'"
+
+# Sed expression to map a string onto a valid variable name.
+as_tr_sh="eval sed 'y%*+%pp%;s%[^_$as_cr_alnum]%_%g'"
+
+
+exec 6>&1
+## ----------------------------------- ##
+## Main body of $CONFIG_STATUS script. ##
+## ----------------------------------- ##
+# Save the log message, to keep 0ドル and so on meaningful, and to
+# report actual input values of CONFIG_FILES etc. instead of their
+# values after options handling.
+ac_log="
+This file was extended by teximpatient $as_me 2.4, which was
+generated by GNU Autoconf 2.69. Invocation command line was
+
+ CONFIG_FILES = $CONFIG_FILES
+ CONFIG_HEADERS = $CONFIG_HEADERS
+ CONFIG_LINKS = $CONFIG_LINKS
+ CONFIG_COMMANDS = $CONFIG_COMMANDS
+ $ 0ドル $@
+
+on `(hostname || uname -n) 2>/dev/null | sed 1q`
+"
+
+# Files that config.status was made for.
+config_files=" Makefile"
+
+ac_cs_usage="\
+\`$as_me' instantiates files and other configuration actions
+from templates according to the current configuration. Unless the files
+and actions are specified as TAGs, all are instantiated by default.
+
+Usage: 0ドル [OPTION]... [TAG]...
+
+ -h, --help print this help, then exit
+ -V, --version print version number and configuration settings, then exit
+ --config print configuration, then exit
+ -q, --quiet, --silent
+ do not print progress messages
+ -d, --debug don't remove temporary files
+ --recheck update $as_me by reconfiguring in the same conditions
+ --file=FILE[:TEMPLATE]
+ instantiate the configuration file FILE
+
+Configuration files:
+$config_files
+
+Report bugs to <impatient@tug.org>."
+
+ac_cs_config=""
+ac_cs_version="\
+teximpatient config.status 2.4
+configured by ./configure, generated by GNU Autoconf 2.69,
+ with options \"$ac_cs_config\"
+
+Copyright (C) 2012 Free Software Foundation, Inc.
+This config.status script is free software; the Free Software Foundation
+gives unlimited permission to copy, distribute and modify it."
+
+ac_pwd='/home/djames/src/teximpatient/teximpatient'
+srcdir='.'
+INSTALL='/usr/bin/install -c'
+MKDIR_P='/usr/bin/mkdir -p'
+test -n "$AWK" || AWK=awk
+# The default lists apply if the user does not specify any file.
+ac_need_defaults=:
+while test $# != 0
+do
+ case 1ドル in
+ --*=?*)
+ ac_option=`expr "X1ドル" : 'X\([^=]*\)='`
+ ac_optarg=`expr "X1ドル" : 'X[^=]*=\(.*\)'`
+ ac_shift=:
+ ;;
+ --*=)
+ ac_option=`expr "X1ドル" : 'X\([^=]*\)='`
+ ac_optarg=
+ ac_shift=:
+ ;;
+ *)
+ ac_option=1ドル
+ ac_optarg=2ドル
+ ac_shift=shift
+ ;;
+ esac
+
+ case $ac_option in
+ # Handling of the options.
+ -recheck | --recheck | --rechec | --reche | --rech | --rec | --re | --r)
+ ac_cs_recheck=: ;;
+ --version | --versio | --versi | --vers | --ver | --ve | --v | -V )
+ $as_echo "$ac_cs_version"; exit ;;
+ --config | --confi | --conf | --con | --co | --c )
+ $as_echo "$ac_cs_config"; exit ;;
+ --debug | --debu | --deb | --de | --d | -d )
+ debug=: ;;
+ --file | --fil | --fi | --f )
+ $ac_shift
+ case $ac_optarg in
+ *\'*) ac_optarg=`$as_echo "$ac_optarg" | sed "s/'/'\\\\\\\\''/g"` ;;
+ '') as_fn_error $? "missing file argument" ;;
+ esac
+ as_fn_append CONFIG_FILES " '$ac_optarg'"
+ ac_need_defaults=false;;
+ --he | --h | --help | --hel | -h )
+ $as_echo "$ac_cs_usage"; exit ;;
+ -q | -quiet | --quiet | --quie | --qui | --qu | --q \
+ | -silent | --silent | --silen | --sile | --sil | --si | --s)
+ ac_cs_silent=: ;;
+
+ # This is an error.
+ -*) as_fn_error $? "unrecognized option: \`1ドル'
+Try \`0ドル --help' for more information." ;;
+
+ *) as_fn_append ac_config_targets " 1ドル"
+ ac_need_defaults=false ;;
+
+ esac
+ shift
+done
+
+ac_configure_extra_args=
+
+if $ac_cs_silent; then
+ exec 6>/dev/null
+ ac_configure_extra_args="$ac_configure_extra_args --silent"
+fi
+
+if $ac_cs_recheck; then
+ set X /bin/sh './configure' $ac_configure_extra_args --no-create --no-recursion
+ shift
+ $as_echo "running CONFIG_SHELL=/bin/sh $*" >&6
+ CONFIG_SHELL='/bin/sh'
+ export CONFIG_SHELL
+ exec "$@"
+fi
+
+exec 5>>config.log
+{
+ echo
+ sed 'h;s/./-/g;s/^.../## /;s/...$/ ##/;p;x;p;x' <<_ASBOX
+## Running $as_me. ##
+_ASBOX
+ $as_echo "$ac_log"
+} >&5
+
+
+# Handling of arguments.
+for ac_config_target in $ac_config_targets
+do
+ case $ac_config_target in
+ "Makefile") CONFIG_FILES="$CONFIG_FILES Makefile" ;;
+
+ *) as_fn_error $? "invalid argument: \`$ac_config_target'" "$LINENO" 5;;
+ esac
+done
+
+
+# If the user did not use the arguments to specify the items to instantiate,
+# then the envvar interface is used. Set only those that are not.
+# We use the long form for the default assignment because of an extremely
+# bizarre bug on SunOS 4.1.3.
+if $ac_need_defaults; then
+ test "${CONFIG_FILES+set}" = set || CONFIG_FILES=$config_files
+fi
+
+# Have a temporary directory for convenience. Make it in the build tree
+# simply because there is no reason against having it here, and in addition,
+# creating and moving files from /tmp can sometimes cause problems.
+# Hook for its removal unless debugging.
+# Note that there is a small window in which the directory will not be cleaned:
+# after its creation but before its name has been assigned to `$tmp'.
+$debug ||
+{
+ tmp= ac_tmp=
+ trap 'exit_status=$?
+ : "${ac_tmp:=$tmp}"
+ { test ! -d "$ac_tmp" || rm -fr "$ac_tmp"; } && exit $exit_status
+' 0
+ trap 'as_fn_exit 1' 1 2 13 15
+}
+# Create a (secure) tmp directory for tmp files.
+
+{
+ tmp=`(umask 077 && mktemp -d "./confXXXXXX") 2>/dev/null` &&
+ test -d "$tmp"
+} ||
+{
+ tmp=./conf$$-$RANDOM
+ (umask 077 && mkdir "$tmp")
+} || as_fn_error $? "cannot create a temporary directory in ." "$LINENO" 5
+ac_tmp=$tmp
+
+# Set up the scripts for CONFIG_FILES section.
+# No need to generate them if there are no CONFIG_FILES.
+# This happens for instance with `./config.status config.h'.
+if test -n "$CONFIG_FILES"; then
+
+
+ac_cr=`echo X | tr X '015円'`
+# On cygwin, bash can eat \r inside `` if the user requested igncr.
+# But we know of no other shell where ac_cr would be empty at this
+# point, so we can use a bashism as a fallback.
+if test "x$ac_cr" = x; then
+ eval ac_cr=\$\'\\r\'
+fi
+ac_cs_awk_cr=`$AWK 'BEGIN { print "a\rb" }' </dev/null 2>/dev/null`
+if test "$ac_cs_awk_cr" = "a${ac_cr}b"; then
+ ac_cs_awk_cr='\\r'
+else
+ ac_cs_awk_cr=$ac_cr
+fi
+
+echo 'BEGIN {' >"$ac_tmp/subs1.awk" &&
+cat >>"$ac_tmp/subs1.awk" <<\_ACAWK &&
+S["LTLIBOBJS"]=""
+S["LIBOBJS"]=""
+S["HTTEX"]="/usr/bin/httex"
+S["PDFTEX"]="/usr/bin/pdftex"
+S["TEX"]="/usr/bin/tex"
+S["ICON"]=""
+S["MKDIR_P"]="/usr/bin/mkdir -p"
+S["INSTALL_DATA"]="${INSTALL} -m 644"
+S["INSTALL_SCRIPT"]="${INSTALL}"
+S["INSTALL_PROGRAM"]="${INSTALL}"
+S["target_alias"]=""
+S["host_alias"]=""
+S["build_alias"]=""
+S["LIBS"]=""
+S["ECHO_T"]=""
+S["ECHO_N"]="-n"
+S["ECHO_C"]=""
+S["DEFS"]="-DPACKAGE_NAME=\\\"teximpatient\\\" -DPACKAGE_TARNAME=\\\"teximpatient\\\" -DPACKAGE_VERSION=\\\"2.4\\\" -DPACKAGE_STRING=\\\"teximpatient\\ 2.4\\\" -DPACKAGE_BUGREP"\
+"ORT=\\\"impatient@tug.org\\\" -DPACKAGE_URL=\\\"\\\""
+S["mandir"]="${datarootdir}/man"
+S["localedir"]="${datarootdir}/locale"
+S["libdir"]="${exec_prefix}/lib"
+S["psdir"]="${docdir}"
+S["pdfdir"]="${docdir}"
+S["dvidir"]="${docdir}"
+S["htmldir"]="${docdir}"
+S["infodir"]="${datarootdir}/info"
+S["docdir"]="${datarootdir}/doc/${PACKAGE_TARNAME}"
+S["oldincludedir"]="/usr/include"
+S["includedir"]="${prefix}/include"
+S["localstatedir"]="${prefix}/var"
+S["sharedstatedir"]="${prefix}/com"
+S["sysconfdir"]="${prefix}/etc"
+S["datadir"]="${datarootdir}"
+S["datarootdir"]="${prefix}/share"
+S["libexecdir"]="${exec_prefix}/libexec"
+S["sbindir"]="${exec_prefix}/sbin"
+S["bindir"]="${exec_prefix}/bin"
+S["program_transform_name"]="s,x,x,"
+S["prefix"]="/usr/local"
+S["exec_prefix"]="${prefix}"
+S["PACKAGE_URL"]=""
+S["PACKAGE_BUGREPORT"]="impatient@tug.org"
+S["PACKAGE_STRING"]="teximpatient 2.4"
+S["PACKAGE_VERSION"]="2.4"
+S["PACKAGE_TARNAME"]="teximpatient"
+S["PACKAGE_NAME"]="teximpatient"
+S["PATH_SEPARATOR"]=":"
+S["SHELL"]="/bin/sh"
+_ACAWK
+cat >>"$ac_tmp/subs1.awk" <<_ACAWK &&
+ for (key in S) S_is_set[key] = 1
+ FS = ""
+
+}
+{
+ line = $ 0
+ nfields = split(line, field, "@")
+ substed = 0
+ len = length(field[1])
+ for (i = 2; i < nfields; i++) {
+ key = field[i]
+ keylen = length(key)
+ if (S_is_set[key]) {
+ value = S[key]
+ line = substr(line, 1, len) "" value "" substr(line, len + keylen + 3)
+ len += length(value) + length(field[++i])
+ substed = 1
+ } else
+ len += 1 + keylen
+ }
+
+ print line
+}
+
+_ACAWK
+if sed "s/$ac_cr//" < /dev/null > /dev/null 2>&1; then
+ sed "s/$ac_cr\$//; s/$ac_cr/$ac_cs_awk_cr/g"
+else
+ cat
+fi < "$ac_tmp/subs1.awk" > "$ac_tmp/subs.awk" \
+ || as_fn_error $? "could not setup config files machinery" "$LINENO" 5
+fi # test -n "$CONFIG_FILES"
+
+
+eval set X " :F $CONFIG_FILES "
+shift
+for ac_tag
+do
+ case $ac_tag in
+ :[FHLC]) ac_mode=$ac_tag; continue;;
+ esac
+ case $ac_mode$ac_tag in
+ :[FHL]*:*);;
+ :L* | :C*:*) as_fn_error $? "invalid tag \`$ac_tag'" "$LINENO" 5;;
+ :[FH]-) ac_tag=-:-;;
+ :[FH]*) ac_tag=$ac_tag:$ac_tag.in;;
+ esac
+ ac_save_IFS=$IFS
+ IFS=:
+ set x $ac_tag
+ IFS=$ac_save_IFS
+ shift
+ ac_file=1ドル
+ shift
+
+ case $ac_mode in
+ :L) ac_source=1ドル;;
+ :[FH])
+ ac_file_inputs=
+ for ac_f
+ do
+ case $ac_f in
+ -) ac_f="$ac_tmp/stdin";;
+ *) # Look for the file first in the build tree, then in the source tree
+ # (if the path is not absolute). The absolute path cannot be DOS-style,
+ # because $ac_f cannot contain `:'.
+ test -f "$ac_f" ||
+ case $ac_f in
+ [\\/$]*) false;;
+ *) test -f "$srcdir/$ac_f" && ac_f="$srcdir/$ac_f";;
+ esac ||
+ as_fn_error 1 "cannot find input file: \`$ac_f'" "$LINENO" 5;;
+ esac
+ case $ac_f in *\'*) ac_f=`$as_echo "$ac_f" | sed "s/'/'\\\\\\\\''/g"`;; esac
+ as_fn_append ac_file_inputs " '$ac_f'"
+ done
+
+ # Let's still pretend it is `configure' which instantiates (i.e., don't
+ # use $as_me), people would be surprised to read:
+ # /* config.h. Generated by config.status. */
+ configure_input='Generated from '`
+ $as_echo "$*" | sed 's|^[^:]*/||;s|:[^:]*/|, |g'
+ `' by configure.'
+ if test x"$ac_file" != x-; then
+ configure_input="$ac_file. $configure_input"
+ { $as_echo "$as_me:${as_lineno-$LINENO}: creating $ac_file" >&5
+$as_echo "$as_me: creating $ac_file" >&6;}
+ fi
+ # Neutralize special characters interpreted by sed in replacement strings.
+ case $configure_input in #(
+ *\&* | *\|* | *\\* )
+ ac_sed_conf_input=`$as_echo "$configure_input" |
+ sed 's/[\\\\&|]/\\\\&/g'`;; #(
+ *) ac_sed_conf_input=$configure_input;;
+ esac
+
+ case $ac_tag in
+ *:-:* | *:-) cat >"$ac_tmp/stdin" \
+ || as_fn_error $? "could not create $ac_file" "$LINENO" 5 ;;
+ esac
+ ;;
+ esac
+
+ ac_dir=`$as_dirname -- "$ac_file" ||
+$as_expr X"$ac_file" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \
+ X"$ac_file" : 'X\(//\)[^/]' \| \
+ X"$ac_file" : 'X\(//\)$' \| \
+ X"$ac_file" : 'X\(/\)' \| . 2>/dev/null ||
+$as_echo X"$ac_file" |
+ sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{
+ s//1円/
+ q
+ }
+ /^X\(\/\/\)[^/].*/{
+ s//1円/
+ q
+ }
+ /^X\(\/\/\)$/{
+ s//1円/
+ q
+ }
+ /^X\(\/\).*/{
+ s//1円/
+ q
+ }
+ s/.*/./; q'`
+ as_dir="$ac_dir"; as_fn_mkdir_p
+ ac_builddir=.
+
+case "$ac_dir" in
+.) ac_dir_suffix= ac_top_builddir_sub=. ac_top_build_prefix= ;;
+*)
+ ac_dir_suffix=/`$as_echo "$ac_dir" | sed 's|^\.[\\/]||'`
+ # A ".." for each directory in $ac_dir_suffix.
+ ac_top_builddir_sub=`$as_echo "$ac_dir_suffix" | sed 's|/[^\\/]*|/..|g;s|/||'`
+ case $ac_top_builddir_sub in
+ "") ac_top_builddir_sub=. ac_top_build_prefix= ;;
+ *) ac_top_build_prefix=$ac_top_builddir_sub/ ;;
+ esac ;;
+esac
+ac_abs_top_builddir=$ac_pwd
+ac_abs_builddir=$ac_pwd$ac_dir_suffix
+# for backward compatibility:
+ac_top_builddir=$ac_top_build_prefix
+
+case $srcdir in
+ .) # We are building in place.
+ ac_srcdir=.
+ ac_top_srcdir=$ac_top_builddir_sub
+ ac_abs_top_srcdir=$ac_pwd ;;
+ [\\/]* | ?:[\\/]* ) # Absolute name.
+ ac_srcdir=$srcdir$ac_dir_suffix;
+ ac_top_srcdir=$srcdir
+ ac_abs_top_srcdir=$srcdir ;;
+ *) # Relative name.
+ ac_srcdir=$ac_top_build_prefix$srcdir$ac_dir_suffix
+ ac_top_srcdir=$ac_top_build_prefix$srcdir
+ ac_abs_top_srcdir=$ac_pwd/$srcdir ;;
+esac
+ac_abs_srcdir=$ac_abs_top_srcdir$ac_dir_suffix
+
+
+ case $ac_mode in
+ :F)
+ #
+ # CONFIG_FILE
+ #
+
+ case $INSTALL in
+ [\\/$]* | ?:[\\/]* ) ac_INSTALL=$INSTALL ;;
+ *) ac_INSTALL=$ac_top_build_prefix$INSTALL ;;
+ esac
+ ac_MKDIR_P=$MKDIR_P
+ case $MKDIR_P in
+ [\\/$]* | ?:[\\/]* ) ;;
+ */*) ac_MKDIR_P=$ac_top_build_prefix$MKDIR_P ;;
+ esac
+# If the template does not know about datarootdir, expand it.
+# FIXME: This hack should be removed a few years after 2.60.
+ac_datarootdir_hack=; ac_datarootdir_seen=
+ac_sed_dataroot='
+/datarootdir/ {
+ p
+ q
+}
+/@datadir@/p
+/@docdir@/p
+/@infodir@/p
+/@localedir@/p
+/@mandir@/p'
+case `eval "sed -n \"\$ac_sed_dataroot\" $ac_file_inputs"` in
+*datarootdir*) ac_datarootdir_seen=yes;;
+*@datadir@*|*@docdir@*|*@infodir@*|*@localedir@*|*@mandir@*)
+ { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: $ac_file_inputs seems to ignore the --datarootdir setting" >&5
+$as_echo "$as_me: WARNING: $ac_file_inputs seems to ignore the --datarootdir setting" >&2;}
+ ac_datarootdir_hack='
+ s&@datadir@&${datarootdir}&g
+ s&@docdir@&${datarootdir}/doc/${PACKAGE_TARNAME}&g
+ s&@infodir@&${datarootdir}/info&g
+ s&@localedir@&${datarootdir}/locale&g
+ s&@mandir@&${datarootdir}/man&g
+ s&\${datarootdir}&${prefix}/share&g' ;;
+esac
+ac_sed_extra="/^[ ]*VPATH[ ]*=[ ]*/{
+h
+s///
+s/^/:/
+s/[ ]*$/:/
+s/:\$(srcdir):/:/g
+s/:\${srcdir}:/:/g
+s/:@srcdir@:/:/g
+s/^:*//
+s/:*$//
+x
+s/\(=[ ]*\).*/1円/
+G
+s/\n//
+s/^[^=]*=[ ]*$//
+}
+
+:t
+/@[a-zA-Z_][a-zA-Z_0-9]*@/!b
+s|@configure_input@|$ac_sed_conf_input|;t t
+s&@top_builddir@&$ac_top_builddir_sub&;t t
+s&@top_build_prefix@&$ac_top_build_prefix&;t t
+s&@srcdir@&$ac_srcdir&;t t
+s&@abs_srcdir@&$ac_abs_srcdir&;t t
+s&@top_srcdir@&$ac_top_srcdir&;t t
+s&@abs_top_srcdir@&$ac_abs_top_srcdir&;t t
+s&@builddir@&$ac_builddir&;t t
+s&@abs_builddir@&$ac_abs_builddir&;t t
+s&@abs_top_builddir@&$ac_abs_top_builddir&;t t
+s&@INSTALL@&$ac_INSTALL&;t t
+s&@MKDIR_P@&$ac_MKDIR_P&;t t
+$ac_datarootdir_hack
+"
+eval sed \"\$ac_sed_extra\" "$ac_file_inputs" | $AWK -f "$ac_tmp/subs.awk" \
+ >$ac_tmp/out || as_fn_error $? "could not create $ac_file" "$LINENO" 5
+
+test -z "$ac_datarootdir_hack$ac_datarootdir_seen" &&
+ { ac_out=`sed -n '/\${datarootdir}/p' "$ac_tmp/out"`; test -n "$ac_out"; } &&
+ { ac_out=`sed -n '/^[ ]*datarootdir[ ]*:*=/p' \
+ "$ac_tmp/out"`; test -z "$ac_out"; } &&
+ { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: $ac_file contains a reference to the variable \`datarootdir'
+which seems to be undefined. Please make sure it is defined" >&5
+$as_echo "$as_me: WARNING: $ac_file contains a reference to the variable \`datarootdir'
+which seems to be undefined. Please make sure it is defined" >&2;}
+
+ rm -f "$ac_tmp/stdin"
+ case $ac_file in
+ -) cat "$ac_tmp/out" && rm -f "$ac_tmp/out";;
+ *) rm -f "$ac_file" && mv "$ac_tmp/out" "$ac_file";;
+ esac \
+ || as_fn_error $? "could not create $ac_file" "$LINENO" 5
+ ;;
+
+
+
+ esac
+
+done # for ac_tag
+
+
+as_fn_exit 0
diff --git a/teximpatient/configure b/teximpatient/configure
new file mode 100755
index 0000000..6d33a2f
--- /dev/null
+++ b/teximpatient/configure
@@ -0,0 +1,3172 @@
+#! /bin/sh
+# Guess values for system-dependent variables and create Makefiles.
+# Generated by GNU Autoconf 2.69 for teximpatient 2.4.
+#
+# Report bugs to <impatient@tug.org>.
+#
+#
+# Copyright (C) 1992-1996, 1998-2012 Free Software Foundation, Inc.
+#
+#
+# This configure script is free software; the Free Software Foundation
+# gives unlimited permission to copy, distribute and modify it.
+## -------------------- ##
+## M4sh Initialization. ##
+## -------------------- ##
+
+# Be more Bourne compatible
+DUALCASE=1; export DUALCASE # for MKS sh
+if test -n "${ZSH_VERSION+set}" && (emulate sh) >/dev/null 2>&1; then :
+ emulate sh
+ NULLCMD=:
+ # Pre-4.2 versions of Zsh do word splitting on ${1+"$@"}, which
+ # is contrary to our usage. Disable this feature.
+ alias -g '${1+"$@"}'='"$@"'
+ setopt NO_GLOB_SUBST
+else
+ case `(set -o) 2>/dev/null` in #(
+ *posix*) :
+ set -o posix ;; #(
+ *) :
+ ;;
+esac
+fi
+
+
+as_nl='
+'
+export as_nl
+# Printing a long string crashes Solaris 7 /usr/bin/printf.
+as_echo='\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\'
+as_echo=$as_echo$as_echo$as_echo$as_echo$as_echo
+as_echo=$as_echo$as_echo$as_echo$as_echo$as_echo$as_echo
+# Prefer a ksh shell builtin over an external printf program on Solaris,
+# but without wasting forks for bash or zsh.
+if test -z "$BASH_VERSION$ZSH_VERSION" \
+ && (test "X`print -r -- $as_echo`" = "X$as_echo") 2>/dev/null; then
+ as_echo='print -r --'
+ as_echo_n='print -rn --'
+elif (test "X`printf %s $as_echo`" = "X$as_echo") 2>/dev/null; then
+ as_echo='printf %s\n'
+ as_echo_n='printf %s'
+else
+ if test "X`(/usr/ucb/echo -n -n $as_echo) 2>/dev/null`" = "X-n $as_echo"; then
+ as_echo_body='eval /usr/ucb/echo -n "1ドル$as_nl"'
+ as_echo_n='/usr/ucb/echo -n'
+ else
+ as_echo_body='eval expr "X1ドル" : "X\\(.*\\)"'
+ as_echo_n_body='eval
+ arg=1ドル;
+ case $arg in #(
+ *"$as_nl"*)
+ expr "X$arg" : "X\\(.*\\)$as_nl";
+ arg=`expr "X$arg" : ".*$as_nl\\(.*\\)"`;;
+ esac;
+ expr "X$arg" : "X\\(.*\\)" | tr -d "$as_nl"
+ '
+ export as_echo_n_body
+ as_echo_n='sh -c $as_echo_n_body as_echo'
+ fi
+ export as_echo_body
+ as_echo='sh -c $as_echo_body as_echo'
+fi
+
+# The user is always right.
+if test "${PATH_SEPARATOR+set}" != set; then
+ PATH_SEPARATOR=:
+ (PATH='/bin;/bin'; FPATH=$PATH; sh -c :) >/dev/null 2>&1 && {
+ (PATH='/bin:/bin'; FPATH=$PATH; sh -c :) >/dev/null 2>&1 ||
+ PATH_SEPARATOR=';'
+ }
+fi
+
+
+# IFS
+# We need space, tab and new line, in precisely that order. Quoting is
+# there to prevent editors from complaining about space-tab.
+# (If _AS_PATH_WALK were called with IFS unset, it would disable word
+# splitting by setting IFS to empty value.)
+IFS=" "" $as_nl"
+
+# Find who we are. Look in the path if we contain no directory separator.
+as_myself=
+case 0ドル in #((
+ *[\\/]* ) as_myself=0ドル ;;
+ *) as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
+for as_dir in $PATH
+do
+ IFS=$as_save_IFS
+ test -z "$as_dir" && as_dir=.
+ test -r "$as_dir/0ドル" && as_myself=$as_dir/0ドル && break
+ done
+IFS=$as_save_IFS
+
+ ;;
+esac
+# We did not find ourselves, most probably we were run as `sh COMMAND'
+# in which case we are not to be found in the path.
+if test "x$as_myself" = x; then
+ as_myself=0ドル
+fi
+if test ! -f "$as_myself"; then
+ $as_echo "$as_myself: error: cannot find myself; rerun with an absolute file name" >&2
+ exit 1
+fi
+
+# Unset variables that we do not need and which cause bugs (e.g. in
+# pre-3.0 UWIN ksh). But do not cause bugs in bash 2.01; the "|| exit 1"
+# suppresses any "Segmentation fault" message there. '((' could
+# trigger a bug in pdksh 5.2.14.
+for as_var in BASH_ENV ENV MAIL MAILPATH
+do eval test x\${$as_var+set} = xset \
+ && ( (unset $as_var) || exit 1) >/dev/null 2>&1 && unset $as_var || :
+done
+PS1='$ '
+PS2='> '
+PS4='+ '
+
+# NLS nuisances.
+LC_ALL=C
+export LC_ALL
+LANGUAGE=C
+export LANGUAGE
+
+# CDPATH.
+(unset CDPATH) >/dev/null 2>&1 && unset CDPATH
+
+# Use a proper internal environment variable to ensure we don't fall
+ # into an infinite loop, continuously re-executing ourselves.
+ if test x"${_as_can_reexec}" != xno && test "x$CONFIG_SHELL" != x; then
+ _as_can_reexec=no; export _as_can_reexec;
+ # We cannot yet assume a decent shell, so we have to provide a
+# neutralization value for shells without unset; and this also
+# works around shells that cannot unset nonexistent variables.
+# Preserve -v and -x to the replacement shell.
+BASH_ENV=/dev/null
+ENV=/dev/null
+(unset BASH_ENV) >/dev/null 2>&1 && unset BASH_ENV ENV
+case $- in # ((((
+ *v*x* | *x*v* ) as_opts=-vx ;;
+ *v* ) as_opts=-v ;;
+ *x* ) as_opts=-x ;;
+ * ) as_opts= ;;
+esac
+exec $CONFIG_SHELL $as_opts "$as_myself" ${1+"$@"}
+# Admittedly, this is quite paranoid, since all the known shells bail
+# out after a failed `exec'.
+$as_echo "0ドル: could not re-execute with $CONFIG_SHELL" >&2
+as_fn_exit 255
+ fi
+ # We don't want this to propagate to other subprocesses.
+ { _as_can_reexec=; unset _as_can_reexec;}
+if test "x$CONFIG_SHELL" = x; then
+ as_bourne_compatible="if test -n \"\${ZSH_VERSION+set}\" && (emulate sh) >/dev/null 2>&1; then :
+ emulate sh
+ NULLCMD=:
+ # Pre-4.2 versions of Zsh do word splitting on \${1+\"\$@\"}, which
+ # is contrary to our usage. Disable this feature.
+ alias -g '\${1+\"\$@\"}'='\"\$@\"'
+ setopt NO_GLOB_SUBST
+else
+ case \`(set -o) 2>/dev/null\` in #(
+ *posix*) :
+ set -o posix ;; #(
+ *) :
+ ;;
+esac
+fi
+"
+ as_required="as_fn_return () { (exit \1ドル); }
+as_fn_success () { as_fn_return 0; }
+as_fn_failure () { as_fn_return 1; }
+as_fn_ret_success () { return 0; }
+as_fn_ret_failure () { return 1; }
+
+exitcode=0
+as_fn_success || { exitcode=1; echo as_fn_success failed.; }
+as_fn_failure && { exitcode=1; echo as_fn_failure succeeded.; }
+as_fn_ret_success || { exitcode=1; echo as_fn_ret_success failed.; }
+as_fn_ret_failure && { exitcode=1; echo as_fn_ret_failure succeeded.; }
+if ( set x; as_fn_ret_success y && test x = \"\1ドル\" ); then :
+
+else
+ exitcode=1; echo positional parameters were not saved.
+fi
+test x\$exitcode = x0 || exit 1
+test -x / || exit 1"
+ as_suggested=" as_lineno_1=";as_suggested=$as_suggested$LINENO;as_suggested=$as_suggested" as_lineno_1a=\$LINENO
+ as_lineno_2=";as_suggested=$as_suggested$LINENO;as_suggested=$as_suggested" as_lineno_2a=\$LINENO
+ eval 'test \"x\$as_lineno_1'\$as_run'\" != \"x\$as_lineno_2'\$as_run'\" &&
+ test \"x\`expr \$as_lineno_1'\$as_run' + 1\`\" = \"x\$as_lineno_2'\$as_run'\"' || exit 1"
+ if (eval "$as_required") 2>/dev/null; then :
+ as_have_required=yes
+else
+ as_have_required=no
+fi
+ if test x$as_have_required = xyes && (eval "$as_suggested") 2>/dev/null; then :
+
+else
+ as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
+as_found=false
+for as_dir in /bin$PATH_SEPARATOR/usr/bin$PATH_SEPARATOR$PATH
+do
+ IFS=$as_save_IFS
+ test -z "$as_dir" && as_dir=.
+ as_found=:
+ case $as_dir in #(
+ /*)
+ for as_base in sh bash ksh sh5; do
+ # Try only shells that exist, to save several forks.
+ as_shell=$as_dir/$as_base
+ if { test -f "$as_shell" || test -f "$as_shell.exe"; } &&
+ { $as_echo "$as_bourne_compatible""$as_required" | as_run=a "$as_shell"; } 2>/dev/null; then :
+ CONFIG_SHELL=$as_shell as_have_required=yes
+ if { $as_echo "$as_bourne_compatible""$as_suggested" | as_run=a "$as_shell"; } 2>/dev/null; then :
+ break 2
+fi
+fi
+ done;;
+ esac
+ as_found=false
+done
+$as_found || { if { test -f "$SHELL" || test -f "$SHELL.exe"; } &&
+ { $as_echo "$as_bourne_compatible""$as_required" | as_run=a "$SHELL"; } 2>/dev/null; then :
+ CONFIG_SHELL=$SHELL as_have_required=yes
+fi; }
+IFS=$as_save_IFS
+
+
+ if test "x$CONFIG_SHELL" != x; then :
+ export CONFIG_SHELL
+ # We cannot yet assume a decent shell, so we have to provide a
+# neutralization value for shells without unset; and this also
+# works around shells that cannot unset nonexistent variables.
+# Preserve -v and -x to the replacement shell.
+BASH_ENV=/dev/null
+ENV=/dev/null
+(unset BASH_ENV) >/dev/null 2>&1 && unset BASH_ENV ENV
+case $- in # ((((
+ *v*x* | *x*v* ) as_opts=-vx ;;
+ *v* ) as_opts=-v ;;
+ *x* ) as_opts=-x ;;
+ * ) as_opts= ;;
+esac
+exec $CONFIG_SHELL $as_opts "$as_myself" ${1+"$@"}
+# Admittedly, this is quite paranoid, since all the known shells bail
+# out after a failed `exec'.
+$as_echo "0ドル: could not re-execute with $CONFIG_SHELL" >&2
+exit 255
+fi
+
+ if test x$as_have_required = xno; then :
+ $as_echo "0ドル: This script requires a shell more modern than all"
+ $as_echo "0ドル: the shells that I found on your system."
+ if test x${ZSH_VERSION+set} = xset ; then
+ $as_echo "0ドル: In particular, zsh $ZSH_VERSION has bugs and should"
+ $as_echo "0ドル: be upgraded to zsh 4.3.4 or later."
+ else
+ $as_echo "0ドル: Please tell bug-autoconf@gnu.org and impatient@tug.org
+0ドル: about your system, including any error possibly output
+0ドル: before this message. Then install a modern shell, or
+0ドル: manually run the script under such a shell if you do
+0ドル: have one."
+ fi
+ exit 1
+fi
+fi
+fi
+SHELL=${CONFIG_SHELL-/bin/sh}
+export SHELL
+# Unset more variables known to interfere with behavior of common tools.
+CLICOLOR_FORCE= GREP_OPTIONS=
+unset CLICOLOR_FORCE GREP_OPTIONS
+
+## --------------------- ##
+## M4sh Shell Functions. ##
+## --------------------- ##
+# as_fn_unset VAR
+# ---------------
+# Portably unset VAR.
+as_fn_unset ()
+{
+ { eval 1ドル=; unset 1ドル;}
+}
+as_unset=as_fn_unset
+
+# as_fn_set_status STATUS
+# -----------------------
+# Set $? to STATUS, without forking.
+as_fn_set_status ()
+{
+ return 1ドル
+} # as_fn_set_status
+
+# as_fn_exit STATUS
+# -----------------
+# Exit the shell with STATUS, even in a "trap 0" or "set -e" context.
+as_fn_exit ()
+{
+ set +e
+ as_fn_set_status 1ドル
+ exit 1ドル
+} # as_fn_exit
+
+# as_fn_mkdir_p
+# -------------
+# Create "$as_dir" as a directory, including parents if necessary.
+as_fn_mkdir_p ()
+{
+
+ case $as_dir in #(
+ -*) as_dir=./$as_dir;;
+ esac
+ test -d "$as_dir" || eval $as_mkdir_p || {
+ as_dirs=
+ while :; do
+ case $as_dir in #(
+ *\'*) as_qdir=`$as_echo "$as_dir" | sed "s/'/'\\\\\\\\''/g"`;; #'(
+ *) as_qdir=$as_dir;;
+ esac
+ as_dirs="'$as_qdir' $as_dirs"
+ as_dir=`$as_dirname -- "$as_dir" ||
+$as_expr X"$as_dir" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \
+ X"$as_dir" : 'X\(//\)[^/]' \| \
+ X"$as_dir" : 'X\(//\)$' \| \
+ X"$as_dir" : 'X\(/\)' \| . 2>/dev/null ||
+$as_echo X"$as_dir" |
+ sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{
+ s//1円/
+ q
+ }
+ /^X\(\/\/\)[^/].*/{
+ s//1円/
+ q
+ }
+ /^X\(\/\/\)$/{
+ s//1円/
+ q
+ }
+ /^X\(\/\).*/{
+ s//1円/
+ q
+ }
+ s/.*/./; q'`
+ test -d "$as_dir" && break
+ done
+ test -z "$as_dirs" || eval "mkdir $as_dirs"
+ } || test -d "$as_dir" || as_fn_error $? "cannot create directory $as_dir"
+
+
+} # as_fn_mkdir_p
+
+# as_fn_executable_p FILE
+# -----------------------
+# Test if FILE is an executable regular file.
+as_fn_executable_p ()
+{
+ test -f "1ドル" && test -x "1ドル"
+} # as_fn_executable_p
+# as_fn_append VAR VALUE
+# ----------------------
+# Append the text in VALUE to the end of the definition contained in VAR. Take
+# advantage of any shell optimizations that allow amortized linear growth over
+# repeated appends, instead of the typical quadratic growth present in naive
+# implementations.
+if (eval "as_var=1; as_var+=2; test x\$as_var = x12") 2>/dev/null; then :
+ eval 'as_fn_append ()
+ {
+ eval 1ドル+=\2ドル
+ }'
+else
+ as_fn_append ()
+ {
+ eval 1ドル=\$1ドル\2ドル
+ }
+fi # as_fn_append
+
+# as_fn_arith ARG...
+# ------------------
+# Perform arithmetic evaluation on the ARGs, and store the result in the
+# global $as_val. Take advantage of shells that can avoid forks. The arguments
+# must be portable across $(()) and expr.
+if (eval "test \$(( 1 + 1 )) = 2") 2>/dev/null; then :
+ eval 'as_fn_arith ()
+ {
+ as_val=$(( $* ))
+ }'
+else
+ as_fn_arith ()
+ {
+ as_val=`expr "$@" || test $? -eq 1`
+ }
+fi # as_fn_arith
+
+
+# as_fn_error STATUS ERROR [LINENO LOG_FD]
+# ----------------------------------------
+# Output "`basename 0ドル`: error: ERROR" to stderr. If LINENO and LOG_FD are
+# provided, also output the error to LOG_FD, referencing LINENO. Then exit the
+# script with STATUS, using 1 if that was 0.
+as_fn_error ()
+{
+ as_status=1ドル; test $as_status -eq 0 && as_status=1
+ if test "4ドル"; then
+ as_lineno=${as_lineno-"3ドル"} as_lineno_stack=as_lineno_stack=$as_lineno_stack
+ $as_echo "$as_me:${as_lineno-$LINENO}: error: 2ドル" >&4ドル
+ fi
+ $as_echo "$as_me: error: 2ドル" >&2
+ as_fn_exit $as_status
+} # as_fn_error
+
+if expr a : '\(a\)' >/dev/null 2>&1 &&
+ test "X`expr 00001 : '.*\(...\)'`" = X001; then
+ as_expr=expr
+else
+ as_expr=false
+fi
+
+if (basename -- /) >/dev/null 2>&1 && test "X`basename -- / 2>&1`" = "X/"; then
+ as_basename=basename
+else
+ as_basename=false
+fi
+
+if (as_dir=`dirname -- /` && test "X$as_dir" = X/) >/dev/null 2>&1; then
+ as_dirname=dirname
+else
+ as_dirname=false
+fi
+
+as_me=`$as_basename -- "0ドル" ||
+$as_expr X/"0ドル" : '.*/\([^/][^/]*\)/*$' \| \
+ X"0ドル" : 'X\(//\)$' \| \
+ X"0ドル" : 'X\(/\)' \| . 2>/dev/null ||
+$as_echo X/"0ドル" |
+ sed '/^.*\/\([^/][^/]*\)\/*$/{
+ s//1円/
+ q
+ }
+ /^X\/\(\/\/\)$/{
+ s//1円/
+ q
+ }
+ /^X\/\(\/\).*/{
+ s//1円/
+ q
+ }
+ s/.*/./; q'`
+
+# Avoid depending upon Character Ranges.
+as_cr_letters='abcdefghijklmnopqrstuvwxyz'
+as_cr_LETTERS='ABCDEFGHIJKLMNOPQRSTUVWXYZ'
+as_cr_Letters=$as_cr_letters$as_cr_LETTERS
+as_cr_digits='0123456789'
+as_cr_alnum=$as_cr_Letters$as_cr_digits
+
+
+ as_lineno_1=$LINENO as_lineno_1a=$LINENO
+ as_lineno_2=$LINENO as_lineno_2a=$LINENO
+ eval 'test "x$as_lineno_1'$as_run'" != "x$as_lineno_2'$as_run'" &&
+ test "x`expr $as_lineno_1'$as_run' + 1`" = "x$as_lineno_2'$as_run'"' || {
+ # Blame Lee E. McMahon (1931-1989) for sed's syntax. :-)
+ sed -n '
+ p
+ /[$]LINENO/=
+ ' <$as_myself |
+ sed '
+ s/[$]LINENO.*/&-/
+ t lineno
+ b
+ :lineno
+ N
+ :loop
+ s/[$]LINENO\([^'$as_cr_alnum'_].*\n\)\(.*\)/2円1円2円/
+ t loop
+ s/-\n.*//
+ ' >$as_me.lineno &&
+ chmod +x "$as_me.lineno" ||
+ { $as_echo "$as_me: error: cannot create $as_me.lineno; rerun with a POSIX shell" >&2; as_fn_exit 1; }
+
+ # If we had to re-execute with $CONFIG_SHELL, we're ensured to have
+ # already done that, so ensure we don't try to do so again and fall
+ # in an infinite loop. This has already happened in practice.
+ _as_can_reexec=no; export _as_can_reexec
+ # Don't try to exec as it changes $[0], causing all sort of problems
+ # (the dirname of $[0] is not the place where we might find the
+ # original and so on. Autoconf is especially sensitive to this).
+ . "./$as_me.lineno"
+ # Exit status is that of the last command.
+ exit
+}
+
+ECHO_C= ECHO_N= ECHO_T=
+case `echo -n x` in #(((((
+-n*)
+ case `echo 'xy\c'` in
+ *c*) ECHO_T=' ';; # ECHO_T is single tab character.
+ xy) ECHO_C='\c';;
+ *) echo `echo ksh88 bug on AIX 6.1` > /dev/null
+ ECHO_T=' ';;
+ esac;;
+*)
+ ECHO_N='-n';;
+esac
+
+rm -f conf$$ conf$$.exe conf$$.file
+if test -d conf$$.dir; then
+ rm -f conf$$.dir/conf$$.file
+else
+ rm -f conf$$.dir
+ mkdir conf$$.dir 2>/dev/null
+fi
+if (echo >conf$$.file) 2>/dev/null; then
+ if ln -s conf$$.file conf$$ 2>/dev/null; then
+ as_ln_s='ln -s'
+ # ... but there are two gotchas:
+ # 1) On MSYS, both `ln -s file dir' and `ln file dir' fail.
+ # 2) DJGPP < 2.04 has no symlinks; `ln -s' creates a wrapper executable.
+ # In both cases, we have to default to `cp -pR'.
+ ln -s conf$$.file conf$$.dir 2>/dev/null && test ! -f conf$$.exe ||
+ as_ln_s='cp -pR'
+ elif ln conf$$.file conf$$ 2>/dev/null; then
+ as_ln_s=ln
+ else
+ as_ln_s='cp -pR'
+ fi
+else
+ as_ln_s='cp -pR'
+fi
+rm -f conf$$ conf$$.exe conf$$.dir/conf$$.file conf$$.file
+rmdir conf$$.dir 2>/dev/null
+
+if mkdir -p . 2>/dev/null; then
+ as_mkdir_p='mkdir -p "$as_dir"'
+else
+ test -d ./-p && rmdir ./-p
+ as_mkdir_p=false
+fi
+
+as_test_x='test -x'
+as_executable_p=as_fn_executable_p
+
+# Sed expression to map a string onto a valid CPP name.
+as_tr_cpp="eval sed 'y%*$as_cr_letters%P$as_cr_LETTERS%;s%[^_$as_cr_alnum]%_%g'"
+
+# Sed expression to map a string onto a valid variable name.
+as_tr_sh="eval sed 'y%*+%pp%;s%[^_$as_cr_alnum]%_%g'"
+
+
+test -n "$DJDIR" || exec 7<&0 </dev/null
+exec 6>&1
+
+# Name of the host.
+# hostname on some systems (SVR3.2, old GNU/Linux) returns a bogus exit status,
+# so uname gets run too.
+ac_hostname=`(hostname || uname -n) 2>/dev/null | sed 1q`
+
+#
+# Initializations.
+#
+ac_default_prefix=/usr/local
+ac_clean_files=
+ac_config_libobj_dir=.
+LIBOBJS=
+cross_compiling=no
+subdirs=
+MFLAGS=
+MAKEFLAGS=
+
+# Identity of this package.
+PACKAGE_NAME='teximpatient'
+PACKAGE_TARNAME='teximpatient'
+PACKAGE_VERSION='2.4'
+PACKAGE_STRING='teximpatient 2.4'
+PACKAGE_BUGREPORT='impatient@tug.org'
+PACKAGE_URL=''
+
+ac_unique_file="book.tex"
+ac_subst_vars='LTLIBOBJS
+LIBOBJS
+HTTEX
+PDFTEX
+TEX
+ICON
+MKDIR_P
+INSTALL_DATA
+INSTALL_SCRIPT
+INSTALL_PROGRAM
+target_alias
+host_alias
+build_alias
+LIBS
+ECHO_T
+ECHO_N
+ECHO_C
+DEFS
+mandir
+localedir
+libdir
+psdir
+pdfdir
+dvidir
+htmldir
+infodir
+docdir
+oldincludedir
+includedir
+localstatedir
+sharedstatedir
+sysconfdir
+datadir
+datarootdir
+libexecdir
+sbindir
+bindir
+program_transform_name
+prefix
+exec_prefix
+PACKAGE_URL
+PACKAGE_BUGREPORT
+PACKAGE_STRING
+PACKAGE_VERSION
+PACKAGE_TARNAME
+PACKAGE_NAME
+PATH_SEPARATOR
+SHELL'
+ac_subst_files=''
+ac_user_opts='
+enable_option_checking
+'
+ ac_precious_vars='build_alias
+host_alias
+target_alias'
+
+
+# Initialize some variables set by options.
+ac_init_help=
+ac_init_version=false
+ac_unrecognized_opts=
+ac_unrecognized_sep=
+# The variables have the same names as the options, with
+# dashes changed to underlines.
+cache_file=/dev/null
+exec_prefix=NONE
+no_create=
+no_recursion=
+prefix=NONE
+program_prefix=NONE
+program_suffix=NONE
+program_transform_name=s,x,x,
+silent=
+site=
+srcdir=
+verbose=
+x_includes=NONE
+x_libraries=NONE
+
+# Installation directory options.
+# These are left unexpanded so users can "make install exec_prefix=/foo"
+# and all the variables that are supposed to be based on exec_prefix
+# by default will actually change.
+# Use braces instead of parens because sh, perl, etc. also accept them.
+# (The list follows the same order as the GNU Coding Standards.)
+bindir='${exec_prefix}/bin'
+sbindir='${exec_prefix}/sbin'
+libexecdir='${exec_prefix}/libexec'
+datarootdir='${prefix}/share'
+datadir='${datarootdir}'
+sysconfdir='${prefix}/etc'
+sharedstatedir='${prefix}/com'
+localstatedir='${prefix}/var'
+includedir='${prefix}/include'
+oldincludedir='/usr/include'
+docdir='${datarootdir}/doc/${PACKAGE_TARNAME}'
+infodir='${datarootdir}/info'
+htmldir='${docdir}'
+dvidir='${docdir}'
+pdfdir='${docdir}'
+psdir='${docdir}'
+libdir='${exec_prefix}/lib'
+localedir='${datarootdir}/locale'
+mandir='${datarootdir}/man'
+
+ac_prev=
+ac_dashdash=
+for ac_option
+do
+ # If the previous option needs an argument, assign it.
+ if test -n "$ac_prev"; then
+ eval $ac_prev=\$ac_option
+ ac_prev=
+ continue
+ fi
+
+ case $ac_option in
+ *=?*) ac_optarg=`expr "X$ac_option" : '[^=]*=\(.*\)'` ;;
+ *=) ac_optarg= ;;
+ *) ac_optarg=yes ;;
+ esac
+
+ # Accept the important Cygnus configure options, so we can diagnose typos.
+
+ case $ac_dashdash$ac_option in
+ --)
+ ac_dashdash=yes ;;
+
+ -bindir | --bindir | --bindi | --bind | --bin | --bi)
+ ac_prev=bindir ;;
+ -bindir=* | --bindir=* | --bindi=* | --bind=* | --bin=* | --bi=*)
+ bindir=$ac_optarg ;;
+
+ -build | --build | --buil | --bui | --bu)
+ ac_prev=build_alias ;;
+ -build=* | --build=* | --buil=* | --bui=* | --bu=*)
+ build_alias=$ac_optarg ;;
+
+ -cache-file | --cache-file | --cache-fil | --cache-fi \
+ | --cache-f | --cache- | --cache | --cach | --cac | --ca | --c)
+ ac_prev=cache_file ;;
+ -cache-file=* | --cache-file=* | --cache-fil=* | --cache-fi=* \
+ | --cache-f=* | --cache-=* | --cache=* | --cach=* | --cac=* | --ca=* | --c=*)
+ cache_file=$ac_optarg ;;
+
+ --config-cache | -C)
+ cache_file=config.cache ;;
+
+ -datadir | --datadir | --datadi | --datad)
+ ac_prev=datadir ;;
+ -datadir=* | --datadir=* | --datadi=* | --datad=*)
+ datadir=$ac_optarg ;;
+
+ -datarootdir | --datarootdir | --datarootdi | --datarootd | --dataroot \
+ | --dataroo | --dataro | --datar)
+ ac_prev=datarootdir ;;
+ -datarootdir=* | --datarootdir=* | --datarootdi=* | --datarootd=* \
+ | --dataroot=* | --dataroo=* | --dataro=* | --datar=*)
+ datarootdir=$ac_optarg ;;
+
+ -disable-* | --disable-*)
+ ac_useropt=`expr "x$ac_option" : 'x-*disable-\(.*\)'`
+ # Reject names that are not valid shell variable names.
+ expr "x$ac_useropt" : ".*[^-+._$as_cr_alnum]" >/dev/null &&
+ as_fn_error $? "invalid feature name: $ac_useropt"
+ ac_useropt_orig=$ac_useropt
+ ac_useropt=`$as_echo "$ac_useropt" | sed 's/[-+.]/_/g'`
+ case $ac_user_opts in
+ *"
+"enable_$ac_useropt"
+"*) ;;
+ *) ac_unrecognized_opts="$ac_unrecognized_opts$ac_unrecognized_sep--disable-$ac_useropt_orig"
+ ac_unrecognized_sep=', ';;
+ esac
+ eval enable_$ac_useropt=no ;;
+
+ -docdir | --docdir | --docdi | --doc | --do)
+ ac_prev=docdir ;;
+ -docdir=* | --docdir=* | --docdi=* | --doc=* | --do=*)
+ docdir=$ac_optarg ;;
+
+ -dvidir | --dvidir | --dvidi | --dvid | --dvi | --dv)
+ ac_prev=dvidir ;;
+ -dvidir=* | --dvidir=* | --dvidi=* | --dvid=* | --dvi=* | --dv=*)
+ dvidir=$ac_optarg ;;
+
+ -enable-* | --enable-*)
+ ac_useropt=`expr "x$ac_option" : 'x-*enable-\([^=]*\)'`
+ # Reject names that are not valid shell variable names.
+ expr "x$ac_useropt" : ".*[^-+._$as_cr_alnum]" >/dev/null &&
+ as_fn_error $? "invalid feature name: $ac_useropt"
+ ac_useropt_orig=$ac_useropt
+ ac_useropt=`$as_echo "$ac_useropt" | sed 's/[-+.]/_/g'`
+ case $ac_user_opts in
+ *"
+"enable_$ac_useropt"
+"*) ;;
+ *) ac_unrecognized_opts="$ac_unrecognized_opts$ac_unrecognized_sep--enable-$ac_useropt_orig"
+ ac_unrecognized_sep=', ';;
+ esac
+ eval enable_$ac_useropt=\$ac_optarg ;;
+
+ -exec-prefix | --exec_prefix | --exec-prefix | --exec-prefi \
+ | --exec-pref | --exec-pre | --exec-pr | --exec-p | --exec- \
+ | --exec | --exe | --ex)
+ ac_prev=exec_prefix ;;
+ -exec-prefix=* | --exec_prefix=* | --exec-prefix=* | --exec-prefi=* \
+ | --exec-pref=* | --exec-pre=* | --exec-pr=* | --exec-p=* | --exec-=* \
+ | --exec=* | --exe=* | --ex=*)
+ exec_prefix=$ac_optarg ;;
+
+ -gas | --gas | --ga | --g)
+ # Obsolete; use --with-gas.
+ with_gas=yes ;;
+
+ -help | --help | --hel | --he | -h)
+ ac_init_help=long ;;
+ -help=r* | --help=r* | --hel=r* | --he=r* | -hr*)
+ ac_init_help=recursive ;;
+ -help=s* | --help=s* | --hel=s* | --he=s* | -hs*)
+ ac_init_help=short ;;
+
+ -host | --host | --hos | --ho)
+ ac_prev=host_alias ;;
+ -host=* | --host=* | --hos=* | --ho=*)
+ host_alias=$ac_optarg ;;
+
+ -htmldir | --htmldir | --htmldi | --htmld | --html | --htm | --ht)
+ ac_prev=htmldir ;;
+ -htmldir=* | --htmldir=* | --htmldi=* | --htmld=* | --html=* | --htm=* \
+ | --ht=*)
+ htmldir=$ac_optarg ;;
+
+ -includedir | --includedir | --includedi | --included | --include \
+ | --includ | --inclu | --incl | --inc)
+ ac_prev=includedir ;;
+ -includedir=* | --includedir=* | --includedi=* | --included=* | --include=* \
+ | --includ=* | --inclu=* | --incl=* | --inc=*)
+ includedir=$ac_optarg ;;
+
+ -infodir | --infodir | --infodi | --infod | --info | --inf)
+ ac_prev=infodir ;;
+ -infodir=* | --infodir=* | --infodi=* | --infod=* | --info=* | --inf=*)
+ infodir=$ac_optarg ;;
+
+ -libdir | --libdir | --libdi | --libd)
+ ac_prev=libdir ;;
+ -libdir=* | --libdir=* | --libdi=* | --libd=*)
+ libdir=$ac_optarg ;;
+
+ -libexecdir | --libexecdir | --libexecdi | --libexecd | --libexec \
+ | --libexe | --libex | --libe)
+ ac_prev=libexecdir ;;
+ -libexecdir=* | --libexecdir=* | --libexecdi=* | --libexecd=* | --libexec=* \
+ | --libexe=* | --libex=* | --libe=*)
+ libexecdir=$ac_optarg ;;
+
+ -localedir | --localedir | --localedi | --localed | --locale)
+ ac_prev=localedir ;;
+ -localedir=* | --localedir=* | --localedi=* | --localed=* | --locale=*)
+ localedir=$ac_optarg ;;
+
+ -localstatedir | --localstatedir | --localstatedi | --localstated \
+ | --localstate | --localstat | --localsta | --localst | --locals)
+ ac_prev=localstatedir ;;
+ -localstatedir=* | --localstatedir=* | --localstatedi=* | --localstated=* \
+ | --localstate=* | --localstat=* | --localsta=* | --localst=* | --locals=*)
+ localstatedir=$ac_optarg ;;
+
+ -mandir | --mandir | --mandi | --mand | --man | --ma | --m)
+ ac_prev=mandir ;;
+ -mandir=* | --mandir=* | --mandi=* | --mand=* | --man=* | --ma=* | --m=*)
+ mandir=$ac_optarg ;;
+
+ -nfp | --nfp | --nf)
+ # Obsolete; use --without-fp.
+ with_fp=no ;;
+
+ -no-create | --no-create | --no-creat | --no-crea | --no-cre \
+ | --no-cr | --no-c | -n)
+ no_create=yes ;;
+
+ -no-recursion | --no-recursion | --no-recursio | --no-recursi \
+ | --no-recurs | --no-recur | --no-recu | --no-rec | --no-re | --no-r)
+ no_recursion=yes ;;
+
+ -oldincludedir | --oldincludedir | --oldincludedi | --oldincluded \
+ | --oldinclude | --oldinclud | --oldinclu | --oldincl | --oldinc \
+ | --oldin | --oldi | --old | --ol | --o)
+ ac_prev=oldincludedir ;;
+ -oldincludedir=* | --oldincludedir=* | --oldincludedi=* | --oldincluded=* \
+ | --oldinclude=* | --oldinclud=* | --oldinclu=* | --oldincl=* | --oldinc=* \
+ | --oldin=* | --oldi=* | --old=* | --ol=* | --o=*)
+ oldincludedir=$ac_optarg ;;
+
+ -prefix | --prefix | --prefi | --pref | --pre | --pr | --p)
+ ac_prev=prefix ;;
+ -prefix=* | --prefix=* | --prefi=* | --pref=* | --pre=* | --pr=* | --p=*)
+ prefix=$ac_optarg ;;
+
+ -program-prefix | --program-prefix | --program-prefi | --program-pref \
+ | --program-pre | --program-pr | --program-p)
+ ac_prev=program_prefix ;;
+ -program-prefix=* | --program-prefix=* | --program-prefi=* \
+ | --program-pref=* | --program-pre=* | --program-pr=* | --program-p=*)
+ program_prefix=$ac_optarg ;;
+
+ -program-suffix | --program-suffix | --program-suffi | --program-suff \
+ | --program-suf | --program-su | --program-s)
+ ac_prev=program_suffix ;;
+ -program-suffix=* | --program-suffix=* | --program-suffi=* \
+ | --program-suff=* | --program-suf=* | --program-su=* | --program-s=*)
+ program_suffix=$ac_optarg ;;
+
+ -program-transform-name | --program-transform-name \
+ | --program-transform-nam | --program-transform-na \
+ | --program-transform-n | --program-transform- \
+ | --program-transform | --program-transfor \
+ | --program-transfo | --program-transf \
+ | --program-trans | --program-tran \
+ | --progr-tra | --program-tr | --program-t)
+ ac_prev=program_transform_name ;;
+ -program-transform-name=* | --program-transform-name=* \
+ | --program-transform-nam=* | --program-transform-na=* \
+ | --program-transform-n=* | --program-transform-=* \
+ | --program-transform=* | --program-transfor=* \
+ | --program-transfo=* | --program-transf=* \
+ | --program-trans=* | --program-tran=* \
+ | --progr-tra=* | --program-tr=* | --program-t=*)
+ program_transform_name=$ac_optarg ;;
+
+ -pdfdir | --pdfdir | --pdfdi | --pdfd | --pdf | --pd)
+ ac_prev=pdfdir ;;
+ -pdfdir=* | --pdfdir=* | --pdfdi=* | --pdfd=* | --pdf=* | --pd=*)
+ pdfdir=$ac_optarg ;;
+
+ -psdir | --psdir | --psdi | --psd | --ps)
+ ac_prev=psdir ;;
+ -psdir=* | --psdir=* | --psdi=* | --psd=* | --ps=*)
+ psdir=$ac_optarg ;;
+
+ -q | -quiet | --quiet | --quie | --qui | --qu | --q \
+ | -silent | --silent | --silen | --sile | --sil)
+ silent=yes ;;
+
+ -sbindir | --sbindir | --sbindi | --sbind | --sbin | --sbi | --sb)
+ ac_prev=sbindir ;;
+ -sbindir=* | --sbindir=* | --sbindi=* | --sbind=* | --sbin=* \
+ | --sbi=* | --sb=*)
+ sbindir=$ac_optarg ;;
+
+ -sharedstatedir | --sharedstatedir | --sharedstatedi \
+ | --sharedstated | --sharedstate | --sharedstat | --sharedsta \
+ | --sharedst | --shareds | --shared | --share | --shar \
+ | --sha | --sh)
+ ac_prev=sharedstatedir ;;
+ -sharedstatedir=* | --sharedstatedir=* | --sharedstatedi=* \
+ | --sharedstated=* | --sharedstate=* | --sharedstat=* | --sharedsta=* \
+ | --sharedst=* | --shareds=* | --shared=* | --share=* | --shar=* \
+ | --sha=* | --sh=*)
+ sharedstatedir=$ac_optarg ;;
+
+ -site | --site | --sit)
+ ac_prev=site ;;
+ -site=* | --site=* | --sit=*)
+ site=$ac_optarg ;;
+
+ -srcdir | --srcdir | --srcdi | --srcd | --src | --sr)
+ ac_prev=srcdir ;;
+ -srcdir=* | --srcdir=* | --srcdi=* | --srcd=* | --src=* | --sr=*)
+ srcdir=$ac_optarg ;;
+
+ -sysconfdir | --sysconfdir | --sysconfdi | --sysconfd | --sysconf \
+ | --syscon | --sysco | --sysc | --sys | --sy)
+ ac_prev=sysconfdir ;;
+ -sysconfdir=* | --sysconfdir=* | --sysconfdi=* | --sysconfd=* | --sysconf=* \
+ | --syscon=* | --sysco=* | --sysc=* | --sys=* | --sy=*)
+ sysconfdir=$ac_optarg ;;
+
+ -target | --target | --targe | --targ | --tar | --ta | --t)
+ ac_prev=target_alias ;;
+ -target=* | --target=* | --targe=* | --targ=* | --tar=* | --ta=* | --t=*)
+ target_alias=$ac_optarg ;;
+
+ -v | -verbose | --verbose | --verbos | --verbo | --verb)
+ verbose=yes ;;
+
+ -version | --version | --versio | --versi | --vers | -V)
+ ac_init_version=: ;;
+
+ -with-* | --with-*)
+ ac_useropt=`expr "x$ac_option" : 'x-*with-\([^=]*\)'`
+ # Reject names that are not valid shell variable names.
+ expr "x$ac_useropt" : ".*[^-+._$as_cr_alnum]" >/dev/null &&
+ as_fn_error $? "invalid package name: $ac_useropt"
+ ac_useropt_orig=$ac_useropt
+ ac_useropt=`$as_echo "$ac_useropt" | sed 's/[-+.]/_/g'`
+ case $ac_user_opts in
+ *"
+"with_$ac_useropt"
+"*) ;;
+ *) ac_unrecognized_opts="$ac_unrecognized_opts$ac_unrecognized_sep--with-$ac_useropt_orig"
+ ac_unrecognized_sep=', ';;
+ esac
+ eval with_$ac_useropt=\$ac_optarg ;;
+
+ -without-* | --without-*)
+ ac_useropt=`expr "x$ac_option" : 'x-*without-\(.*\)'`
+ # Reject names that are not valid shell variable names.
+ expr "x$ac_useropt" : ".*[^-+._$as_cr_alnum]" >/dev/null &&
+ as_fn_error $? "invalid package name: $ac_useropt"
+ ac_useropt_orig=$ac_useropt
+ ac_useropt=`$as_echo "$ac_useropt" | sed 's/[-+.]/_/g'`
+ case $ac_user_opts in
+ *"
+"with_$ac_useropt"
+"*) ;;
+ *) ac_unrecognized_opts="$ac_unrecognized_opts$ac_unrecognized_sep--without-$ac_useropt_orig"
+ ac_unrecognized_sep=', ';;
+ esac
+ eval with_$ac_useropt=no ;;
+
+ --x)
+ # Obsolete; use --with-x.
+ with_x=yes ;;
+
+ -x-includes | --x-includes | --x-include | --x-includ | --x-inclu \
+ | --x-incl | --x-inc | --x-in | --x-i)
+ ac_prev=x_includes ;;
+ -x-includes=* | --x-includes=* | --x-include=* | --x-includ=* | --x-inclu=* \
+ | --x-incl=* | --x-inc=* | --x-in=* | --x-i=*)
+ x_includes=$ac_optarg ;;
+
+ -x-libraries | --x-libraries | --x-librarie | --x-librari \
+ | --x-librar | --x-libra | --x-libr | --x-lib | --x-li | --x-l)
+ ac_prev=x_libraries ;;
+ -x-libraries=* | --x-libraries=* | --x-librarie=* | --x-librari=* \
+ | --x-librar=* | --x-libra=* | --x-libr=* | --x-lib=* | --x-li=* | --x-l=*)
+ x_libraries=$ac_optarg ;;
+
+ -*) as_fn_error $? "unrecognized option: \`$ac_option'
+Try \`0ドル --help' for more information"
+ ;;
+
+ *=*)
+ ac_envvar=`expr "x$ac_option" : 'x\([^=]*\)='`
+ # Reject names that are not valid shell variable names.
+ case $ac_envvar in #(
+ '' | [0-9]* | *[!_$as_cr_alnum]* )
+ as_fn_error $? "invalid variable name: \`$ac_envvar'" ;;
+ esac
+ eval $ac_envvar=\$ac_optarg
+ export $ac_envvar ;;
+
+ *)
+ # FIXME: should be removed in autoconf 3.0.
+ $as_echo "$as_me: WARNING: you should use --build, --host, --target" >&2
+ expr "x$ac_option" : ".*[^-._$as_cr_alnum]" >/dev/null &&
+ $as_echo "$as_me: WARNING: invalid host type: $ac_option" >&2
+ : "${build_alias=$ac_option} ${host_alias=$ac_option} ${target_alias=$ac_option}"
+ ;;
+
+ esac
+done
+
+if test -n "$ac_prev"; then
+ ac_option=--`echo $ac_prev | sed 's/_/-/g'`
+ as_fn_error $? "missing argument to $ac_option"
+fi
+
+if test -n "$ac_unrecognized_opts"; then
+ case $enable_option_checking in
+ no) ;;
+ fatal) as_fn_error $? "unrecognized options: $ac_unrecognized_opts" ;;
+ *) $as_echo "$as_me: WARNING: unrecognized options: $ac_unrecognized_opts" >&2 ;;
+ esac
+fi
+
+# Check all directory arguments for consistency.
+for ac_var in exec_prefix prefix bindir sbindir libexecdir datarootdir \
+ datadir sysconfdir sharedstatedir localstatedir includedir \
+ oldincludedir docdir infodir htmldir dvidir pdfdir psdir \
+ libdir localedir mandir
+do
+ eval ac_val=\$$ac_var
+ # Remove trailing slashes.
+ case $ac_val in
+ */ )
+ ac_val=`expr "X$ac_val" : 'X\(.*[^/]\)' \| "X$ac_val" : 'X\(.*\)'`
+ eval $ac_var=\$ac_val;;
+ esac
+ # Be sure to have absolute directory names.
+ case $ac_val in
+ [\\/$]* | ?:[\\/]* ) continue;;
+ NONE | '' ) case $ac_var in *prefix ) continue;; esac;;
+ esac
+ as_fn_error $? "expected an absolute directory name for --$ac_var: $ac_val"
+done
+
+# There might be people who depend on the old broken behavior: `$host'
+# used to hold the argument of --host etc.
+# FIXME: To remove some day.
+build=$build_alias
+host=$host_alias
+target=$target_alias
+
+# FIXME: To remove some day.
+if test "x$host_alias" != x; then
+ if test "x$build_alias" = x; then
+ cross_compiling=maybe
+ elif test "x$build_alias" != "x$host_alias"; then
+ cross_compiling=yes
+ fi
+fi
+
+ac_tool_prefix=
+test -n "$host_alias" && ac_tool_prefix=$host_alias-
+
+test "$silent" = yes && exec 6>/dev/null
+
+
+ac_pwd=`pwd` && test -n "$ac_pwd" &&
+ac_ls_di=`ls -di .` &&
+ac_pwd_ls_di=`cd "$ac_pwd" && ls -di .` ||
+ as_fn_error $? "working directory cannot be determined"
+test "X$ac_ls_di" = "X$ac_pwd_ls_di" ||
+ as_fn_error $? "pwd does not report name of working directory"
+
+
+# Find the source files, if location was not specified.
+if test -z "$srcdir"; then
+ ac_srcdir_defaulted=yes
+ # Try the directory containing this script, then the parent directory.
+ ac_confdir=`$as_dirname -- "$as_myself" ||
+$as_expr X"$as_myself" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \
+ X"$as_myself" : 'X\(//\)[^/]' \| \
+ X"$as_myself" : 'X\(//\)$' \| \
+ X"$as_myself" : 'X\(/\)' \| . 2>/dev/null ||
+$as_echo X"$as_myself" |
+ sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{
+ s//1円/
+ q
+ }
+ /^X\(\/\/\)[^/].*/{
+ s//1円/
+ q
+ }
+ /^X\(\/\/\)$/{
+ s//1円/
+ q
+ }
+ /^X\(\/\).*/{
+ s//1円/
+ q
+ }
+ s/.*/./; q'`
+ srcdir=$ac_confdir
+ if test ! -r "$srcdir/$ac_unique_file"; then
+ srcdir=..
+ fi
+else
+ ac_srcdir_defaulted=no
+fi
+if test ! -r "$srcdir/$ac_unique_file"; then
+ test "$ac_srcdir_defaulted" = yes && srcdir="$ac_confdir or .."
+ as_fn_error $? "cannot find sources ($ac_unique_file) in $srcdir"
+fi
+ac_msg="sources are in $srcdir, but \`cd $srcdir' does not work"
+ac_abs_confdir=`(
+ cd "$srcdir" && test -r "./$ac_unique_file" || as_fn_error $? "$ac_msg"
+ pwd)`
+# When building in place, set srcdir=.
+if test "$ac_abs_confdir" = "$ac_pwd"; then
+ srcdir=.
+fi
+# Remove unnecessary trailing slashes from srcdir.
+# Double slashes in file names in object file debugging info
+# mess up M-x gdb in Emacs.
+case $srcdir in
+*/) srcdir=`expr "X$srcdir" : 'X\(.*[^/]\)' \| "X$srcdir" : 'X\(.*\)'`;;
+esac
+for ac_var in $ac_precious_vars; do
+ eval ac_env_${ac_var}_set=\${${ac_var}+set}
+ eval ac_env_${ac_var}_value=\$${ac_var}
+ eval ac_cv_env_${ac_var}_set=\${${ac_var}+set}
+ eval ac_cv_env_${ac_var}_value=\$${ac_var}
+done
+
+#
+# Report the --help message.
+#
+if test "$ac_init_help" = "long"; then
+ # Omit some internal or obsolete options to make the list less imposing.
+ # This message is too long to be a string in the A/UX 3.1 sh.
+ cat <<_ACEOF
+\`configure' configures teximpatient 2.4 to adapt to many kinds of systems.
+
+Usage: 0ドル [OPTION]... [VAR=VALUE]...
+
+To assign environment variables (e.g., CC, CFLAGS...), specify them as
+VAR=VALUE. See below for descriptions of some of the useful variables.
+
+Defaults for the options are specified in brackets.
+
+Configuration:
+ -h, --help display this help and exit
+ --help=short display options specific to this package
+ --help=recursive display the short help of all the included packages
+ -V, --version display version information and exit
+ -q, --quiet, --silent do not print \`checking ...' messages
+ --cache-file=FILE cache test results in FILE [disabled]
+ -C, --config-cache alias for \`--cache-file=config.cache'
+ -n, --no-create do not create output files
+ --srcdir=DIR find the sources in DIR [configure dir or \`..']
+
+Installation directories:
+ --prefix=PREFIX install architecture-independent files in PREFIX
+ [$ac_default_prefix]
+ --exec-prefix=EPREFIX install architecture-dependent files in EPREFIX
+ [PREFIX]
+
+By default, \`make install' will install all the files in
+\`$ac_default_prefix/bin', \`$ac_default_prefix/lib' etc. You can specify
+an installation prefix other than \`$ac_default_prefix' using \`--prefix',
+for instance \`--prefix=\$HOME'.
+
+For better control, use the options below.
+
+Fine tuning of the installation directories:
+ --bindir=DIR user executables [EPREFIX/bin]
+ --sbindir=DIR system admin executables [EPREFIX/sbin]
+ --libexecdir=DIR program executables [EPREFIX/libexec]
+ --sysconfdir=DIR read-only single-machine data [PREFIX/etc]
+ --sharedstatedir=DIR modifiable architecture-independent data [PREFIX/com]
+ --localstatedir=DIR modifiable single-machine data [PREFIX/var]
+ --libdir=DIR object code libraries [EPREFIX/lib]
+ --includedir=DIR C header files [PREFIX/include]
+ --oldincludedir=DIR C header files for non-gcc [/usr/include]
+ --datarootdir=DIR read-only arch.-independent data root [PREFIX/share]
+ --datadir=DIR read-only architecture-independent data [DATAROOTDIR]
+ --infodir=DIR info documentation [DATAROOTDIR/info]
+ --localedir=DIR locale-dependent data [DATAROOTDIR/locale]
+ --mandir=DIR man documentation [DATAROOTDIR/man]
+ --docdir=DIR documentation root [DATAROOTDIR/doc/teximpatient]
+ --htmldir=DIR html documentation [DOCDIR]
+ --dvidir=DIR dvi documentation [DOCDIR]
+ --pdfdir=DIR pdf documentation [DOCDIR]
+ --psdir=DIR ps documentation [DOCDIR]
+_ACEOF
+
+ cat <<\_ACEOF
+_ACEOF
+fi
+
+if test -n "$ac_init_help"; then
+ case $ac_init_help in
+ short | recursive ) echo "Configuration of teximpatient 2.4:";;
+ esac
+ cat <<\_ACEOF
+
+Report bugs to <impatient@tug.org>.
+_ACEOF
+ac_status=$?
+fi
+
+if test "$ac_init_help" = "recursive"; then
+ # If there are subdirs, report their specific --help.
+ for ac_dir in : $ac_subdirs_all; do test "x$ac_dir" = x: && continue
+ test -d "$ac_dir" ||
+ { cd "$srcdir" && ac_pwd=`pwd` && srcdir=. && test -d "$ac_dir"; } ||
+ continue
+ ac_builddir=.
+
+case "$ac_dir" in
+.) ac_dir_suffix= ac_top_builddir_sub=. ac_top_build_prefix= ;;
+*)
+ ac_dir_suffix=/`$as_echo "$ac_dir" | sed 's|^\.[\\/]||'`
+ # A ".." for each directory in $ac_dir_suffix.
+ ac_top_builddir_sub=`$as_echo "$ac_dir_suffix" | sed 's|/[^\\/]*|/..|g;s|/||'`
+ case $ac_top_builddir_sub in
+ "") ac_top_builddir_sub=. ac_top_build_prefix= ;;
+ *) ac_top_build_prefix=$ac_top_builddir_sub/ ;;
+ esac ;;
+esac
+ac_abs_top_builddir=$ac_pwd
+ac_abs_builddir=$ac_pwd$ac_dir_suffix
+# for backward compatibility:
+ac_top_builddir=$ac_top_build_prefix
+
+case $srcdir in
+ .) # We are building in place.
+ ac_srcdir=.
+ ac_top_srcdir=$ac_top_builddir_sub
+ ac_abs_top_srcdir=$ac_pwd ;;
+ [\\/]* | ?:[\\/]* ) # Absolute name.
+ ac_srcdir=$srcdir$ac_dir_suffix;
+ ac_top_srcdir=$srcdir
+ ac_abs_top_srcdir=$srcdir ;;
+ *) # Relative name.
+ ac_srcdir=$ac_top_build_prefix$srcdir$ac_dir_suffix
+ ac_top_srcdir=$ac_top_build_prefix$srcdir
+ ac_abs_top_srcdir=$ac_pwd/$srcdir ;;
+esac
+ac_abs_srcdir=$ac_abs_top_srcdir$ac_dir_suffix
+
+ cd "$ac_dir" || { ac_status=$?; continue; }
+ # Check for guested configure.
+ if test -f "$ac_srcdir/configure.gnu"; then
+ echo &&
+ $SHELL "$ac_srcdir/configure.gnu" --help=recursive
+ elif test -f "$ac_srcdir/configure"; then
+ echo &&
+ $SHELL "$ac_srcdir/configure" --help=recursive
+ else
+ $as_echo "$as_me: WARNING: no configuration information is in $ac_dir" >&2
+ fi || ac_status=$?
+ cd "$ac_pwd" || { ac_status=$?; break; }
+ done
+fi
+
+test -n "$ac_init_help" && exit $ac_status
+if $ac_init_version; then
+ cat <<\_ACEOF
+teximpatient configure 2.4
+generated by GNU Autoconf 2.69
+
+Copyright (C) 2012 Free Software Foundation, Inc.
+This configure script is free software; the Free Software Foundation
+gives unlimited permission to copy, distribute and modify it.
+_ACEOF
+ exit
+fi
+
+## ------------------------ ##
+## Autoconf initialization. ##
+## ------------------------ ##
+cat >config.log <<_ACEOF
+This file contains any messages produced by compilers while
+running configure, to aid debugging if configure makes a mistake.
+
+It was created by teximpatient $as_me 2.4, which was
+generated by GNU Autoconf 2.69. Invocation command line was
+
+ $ 0ドル $@
+
+_ACEOF
+exec 5>>config.log
+{
+cat <<_ASUNAME
+## --------- ##
+## Platform. ##
+## --------- ##
+
+hostname = `(hostname || uname -n) 2>/dev/null | sed 1q`
+uname -m = `(uname -m) 2>/dev/null || echo unknown`
+uname -r = `(uname -r) 2>/dev/null || echo unknown`
+uname -s = `(uname -s) 2>/dev/null || echo unknown`
+uname -v = `(uname -v) 2>/dev/null || echo unknown`
+
+/usr/bin/uname -p = `(/usr/bin/uname -p) 2>/dev/null || echo unknown`
+/bin/uname -X = `(/bin/uname -X) 2>/dev/null || echo unknown`
+
+/bin/arch = `(/bin/arch) 2>/dev/null || echo unknown`
+/usr/bin/arch -k = `(/usr/bin/arch -k) 2>/dev/null || echo unknown`
+/usr/convex/getsysinfo = `(/usr/convex/getsysinfo) 2>/dev/null || echo unknown`
+/usr/bin/hostinfo = `(/usr/bin/hostinfo) 2>/dev/null || echo unknown`
+/bin/machine = `(/bin/machine) 2>/dev/null || echo unknown`
+/usr/bin/oslevel = `(/usr/bin/oslevel) 2>/dev/null || echo unknown`
+/bin/universe = `(/bin/universe) 2>/dev/null || echo unknown`
+
+_ASUNAME
+
+as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
+for as_dir in $PATH
+do
+ IFS=$as_save_IFS
+ test -z "$as_dir" && as_dir=.
+ $as_echo "PATH: $as_dir"
+ done
+IFS=$as_save_IFS
+
+} >&5
+
+cat >&5 <<_ACEOF
+
+
+## ----------- ##
+## Core tests. ##
+## ----------- ##
+
+_ACEOF
+
+
+# Keep a trace of the command line.
+# Strip out --no-create and --no-recursion so they do not pile up.
+# Strip out --silent because we don't want to record it for future runs.
+# Also quote any args containing shell meta-characters.
+# Make two passes to allow for proper duplicate-argument suppression.
+ac_configure_args=
+ac_configure_args0=
+ac_configure_args1=
+ac_must_keep_next=false
+for ac_pass in 1 2
+do
+ for ac_arg
+ do
+ case $ac_arg in
+ -no-create | --no-c* | -n | -no-recursion | --no-r*) continue ;;
+ -q | -quiet | --quiet | --quie | --qui | --qu | --q \
+ | -silent | --silent | --silen | --sile | --sil)
+ continue ;;
+ *\'*)
+ ac_arg=`$as_echo "$ac_arg" | sed "s/'/'\\\\\\\\''/g"` ;;
+ esac
+ case $ac_pass in
+ 1) as_fn_append ac_configure_args0 " '$ac_arg'" ;;
+ 2)
+ as_fn_append ac_configure_args1 " '$ac_arg'"
+ if test $ac_must_keep_next = true; then
+ ac_must_keep_next=false # Got value, back to normal.
+ else
+ case $ac_arg in
+ *=* | --config-cache | -C | -disable-* | --disable-* \
+ | -enable-* | --enable-* | -gas | --g* | -nfp | --nf* \
+ | -q | -quiet | --q* | -silent | --sil* | -v | -verb* \
+ | -with-* | --with-* | -without-* | --without-* | --x)
+ case "$ac_configure_args0 " in
+ "$ac_configure_args1"*" '$ac_arg' "* ) continue ;;
+ esac
+ ;;
+ -* ) ac_must_keep_next=true ;;
+ esac
+ fi
+ as_fn_append ac_configure_args " '$ac_arg'"
+ ;;
+ esac
+ done
+done
+{ ac_configure_args0=; unset ac_configure_args0;}
+{ ac_configure_args1=; unset ac_configure_args1;}
+
+# When interrupted or exit'd, cleanup temporary files, and complete
+# config.log. We remove comments because anyway the quotes in there
+# would cause problems or look ugly.
+# WARNING: Use '\'' to represent an apostrophe within the trap.
+# WARNING: Do not start the trap code with a newline, due to a FreeBSD 4.0 bug.
+trap 'exit_status=$?
+ # Save into config.log some information that might help in debugging.
+ {
+ echo
+
+ $as_echo "## ---------------- ##
+## Cache variables. ##
+## ---------------- ##"
+ echo
+ # The following way of writing the cache mishandles newlines in values,
+(
+ for ac_var in `(set) 2>&1 | sed -n '\''s/^\([a-zA-Z_][a-zA-Z0-9_]*\)=.*/1円/p'\''`; do
+ eval ac_val=\$$ac_var
+ case $ac_val in #(
+ *${as_nl}*)
+ case $ac_var in #(
+ *_cv_*) { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: cache variable $ac_var contains a newline" >&5
+$as_echo "$as_me: WARNING: cache variable $ac_var contains a newline" >&2;} ;;
+ esac
+ case $ac_var in #(
+ _ | IFS | as_nl) ;; #(
+ BASH_ARGV | BASH_SOURCE) eval $ac_var= ;; #(
+ *) { eval $ac_var=; unset $ac_var;} ;;
+ esac ;;
+ esac
+ done
+ (set) 2>&1 |
+ case $as_nl`(ac_space='\'' '\''; set) 2>&1` in #(
+ *${as_nl}ac_space=\ *)
+ sed -n \
+ "s/'\''/'\''\\\\'\'''\''/g;
+ s/^\\([_$as_cr_alnum]*_cv_[_$as_cr_alnum]*\\)=\\(.*\\)/\1円='\''\2円'\''/p"
+ ;; #(
+ *)
+ sed -n "/^[_$as_cr_alnum]*_cv_[_$as_cr_alnum]*=/p"
+ ;;
+ esac |
+ sort
+)
+ echo
+
+ $as_echo "## ----------------- ##
+## Output variables. ##
+## ----------------- ##"
+ echo
+ for ac_var in $ac_subst_vars
+ do
+ eval ac_val=\$$ac_var
+ case $ac_val in
+ *\'\''*) ac_val=`$as_echo "$ac_val" | sed "s/'\''/'\''\\\\\\\\'\'''\''/g"`;;
+ esac
+ $as_echo "$ac_var='\''$ac_val'\''"
+ done | sort
+ echo
+
+ if test -n "$ac_subst_files"; then
+ $as_echo "## ------------------- ##
+## File substitutions. ##
+## ------------------- ##"
+ echo
+ for ac_var in $ac_subst_files
+ do
+ eval ac_val=\$$ac_var
+ case $ac_val in
+ *\'\''*) ac_val=`$as_echo "$ac_val" | sed "s/'\''/'\''\\\\\\\\'\'''\''/g"`;;
+ esac
+ $as_echo "$ac_var='\''$ac_val'\''"
+ done | sort
+ echo
+ fi
+
+ if test -s confdefs.h; then
+ $as_echo "## ----------- ##
+## confdefs.h. ##
+## ----------- ##"
+ echo
+ cat confdefs.h
+ echo
+ fi
+ test "$ac_signal" != 0 &&
+ $as_echo "$as_me: caught signal $ac_signal"
+ $as_echo "$as_me: exit $exit_status"
+ } >&5
+ rm -f core *.core core.conftest.* &&
+ rm -f -r conftest* confdefs* conf$$* $ac_clean_files &&
+ exit $exit_status
+' 0
+for ac_signal in 1 2 13 15; do
+ trap 'ac_signal='$ac_signal'; as_fn_exit 1' $ac_signal
+done
+ac_signal=0
+
+# confdefs.h avoids OS command line length limits that DEFS can exceed.
+rm -f -r conftest* confdefs.h
+
+$as_echo "/* confdefs.h */" > confdefs.h
+
+# Predefined preprocessor variables.
+
+cat >>confdefs.h <<_ACEOF
+#define PACKAGE_NAME "$PACKAGE_NAME"
+_ACEOF
+
+cat >>confdefs.h <<_ACEOF
+#define PACKAGE_TARNAME "$PACKAGE_TARNAME"
+_ACEOF
+
+cat >>confdefs.h <<_ACEOF
+#define PACKAGE_VERSION "$PACKAGE_VERSION"
+_ACEOF
+
+cat >>confdefs.h <<_ACEOF
+#define PACKAGE_STRING "$PACKAGE_STRING"
+_ACEOF
+
+cat >>confdefs.h <<_ACEOF
+#define PACKAGE_BUGREPORT "$PACKAGE_BUGREPORT"
+_ACEOF
+
+cat >>confdefs.h <<_ACEOF
+#define PACKAGE_URL "$PACKAGE_URL"
+_ACEOF
+
+
+# Let the site file select an alternate cache file if it wants to.
+# Prefer an explicitly selected file to automatically selected ones.
+ac_site_file1=NONE
+ac_site_file2=NONE
+if test -n "$CONFIG_SITE"; then
+ # We do not want a PATH search for config.site.
+ case $CONFIG_SITE in #((
+ -*) ac_site_file1=./$CONFIG_SITE;;
+ */*) ac_site_file1=$CONFIG_SITE;;
+ *) ac_site_file1=./$CONFIG_SITE;;
+ esac
+elif test "x$prefix" != xNONE; then
+ ac_site_file1=$prefix/share/config.site
+ ac_site_file2=$prefix/etc/config.site
+else
+ ac_site_file1=$ac_default_prefix/share/config.site
+ ac_site_file2=$ac_default_prefix/etc/config.site
+fi
+for ac_site_file in "$ac_site_file1" "$ac_site_file2"
+do
+ test "x$ac_site_file" = xNONE && continue
+ if test /dev/null != "$ac_site_file" && test -r "$ac_site_file"; then
+ { $as_echo "$as_me:${as_lineno-$LINENO}: loading site script $ac_site_file" >&5
+$as_echo "$as_me: loading site script $ac_site_file" >&6;}
+ sed 's/^/| /' "$ac_site_file" >&5
+ . "$ac_site_file" \
+ || { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5
+$as_echo "$as_me: error: in \`$ac_pwd':" >&2;}
+as_fn_error $? "failed to load site script $ac_site_file
+See \`config.log' for more details" "$LINENO" 5; }
+ fi
+done
+
+if test -r "$cache_file"; then
+ # Some versions of bash will fail to source /dev/null (special files
+ # actually), so we avoid doing that. DJGPP emulates it as a regular file.
+ if test /dev/null != "$cache_file" && test -f "$cache_file"; then
+ { $as_echo "$as_me:${as_lineno-$LINENO}: loading cache $cache_file" >&5
+$as_echo "$as_me: loading cache $cache_file" >&6;}
+ case $cache_file in
+ [\\/]* | ?:[\\/]* ) . "$cache_file";;
+ *) . "./$cache_file";;
+ esac
+ fi
+else
+ { $as_echo "$as_me:${as_lineno-$LINENO}: creating cache $cache_file" >&5
+$as_echo "$as_me: creating cache $cache_file" >&6;}
+ >$cache_file
+fi
+
+# Check that the precious variables saved in the cache have kept the same
+# value.
+ac_cache_corrupted=false
+for ac_var in $ac_precious_vars; do
+ eval ac_old_set=\$ac_cv_env_${ac_var}_set
+ eval ac_new_set=\$ac_env_${ac_var}_set
+ eval ac_old_val=\$ac_cv_env_${ac_var}_value
+ eval ac_new_val=\$ac_env_${ac_var}_value
+ case $ac_old_set,$ac_new_set in
+ set,)
+ { $as_echo "$as_me:${as_lineno-$LINENO}: error: \`$ac_var' was set to \`$ac_old_val' in the previous run" >&5
+$as_echo "$as_me: error: \`$ac_var' was set to \`$ac_old_val' in the previous run" >&2;}
+ ac_cache_corrupted=: ;;
+ ,set)
+ { $as_echo "$as_me:${as_lineno-$LINENO}: error: \`$ac_var' was not set in the previous run" >&5
+$as_echo "$as_me: error: \`$ac_var' was not set in the previous run" >&2;}
+ ac_cache_corrupted=: ;;
+ ,);;
+ *)
+ if test "x$ac_old_val" != "x$ac_new_val"; then
+ # differences in whitespace do not lead to failure.
+ ac_old_val_w=`echo x $ac_old_val`
+ ac_new_val_w=`echo x $ac_new_val`
+ if test "$ac_old_val_w" != "$ac_new_val_w"; then
+ { $as_echo "$as_me:${as_lineno-$LINENO}: error: \`$ac_var' has changed since the previous run:" >&5
+$as_echo "$as_me: error: \`$ac_var' has changed since the previous run:" >&2;}
+ ac_cache_corrupted=:
+ else
+ { $as_echo "$as_me:${as_lineno-$LINENO}: warning: ignoring whitespace changes in \`$ac_var' since the previous run:" >&5
+$as_echo "$as_me: warning: ignoring whitespace changes in \`$ac_var' since the previous run:" >&2;}
+ eval $ac_var=\$ac_old_val
+ fi
+ { $as_echo "$as_me:${as_lineno-$LINENO}: former value: \`$ac_old_val'" >&5
+$as_echo "$as_me: former value: \`$ac_old_val'" >&2;}
+ { $as_echo "$as_me:${as_lineno-$LINENO}: current value: \`$ac_new_val'" >&5
+$as_echo "$as_me: current value: \`$ac_new_val'" >&2;}
+ fi;;
+ esac
+ # Pass precious variables to config.status.
+ if test "$ac_new_set" = set; then
+ case $ac_new_val in
+ *\'*) ac_arg=$ac_var=`$as_echo "$ac_new_val" | sed "s/'/'\\\\\\\\''/g"` ;;
+ *) ac_arg=$ac_var=$ac_new_val ;;
+ esac
+ case " $ac_configure_args " in
+ *" '$ac_arg' "*) ;; # Avoid dups. Use of quotes ensures accuracy.
+ *) as_fn_append ac_configure_args " '$ac_arg'" ;;
+ esac
+ fi
+done
+if $ac_cache_corrupted; then
+ { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5
+$as_echo "$as_me: error: in \`$ac_pwd':" >&2;}
+ { $as_echo "$as_me:${as_lineno-$LINENO}: error: changes in the environment can compromise the build" >&5
+$as_echo "$as_me: error: changes in the environment can compromise the build" >&2;}
+ as_fn_error $? "run \`make distclean' and/or \`rm $cache_file' and start over" "$LINENO" 5
+fi
+## -------------------- ##
+## Main body of script. ##
+## -------------------- ##
+
+ac_ext=c
+ac_cpp='$CPP $CPPFLAGS'
+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5'
+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5'
+ac_compiler_gnu=$ac_cv_c_compiler_gnu
+
+
+
+
+ac_aux_dir=
+for ac_dir in "$srcdir" "$srcdir/.." "$srcdir/../.."; do
+ if test -f "$ac_dir/install-sh"; then
+ ac_aux_dir=$ac_dir
+ ac_install_sh="$ac_aux_dir/install-sh -c"
+ break
+ elif test -f "$ac_dir/install.sh"; then
+ ac_aux_dir=$ac_dir
+ ac_install_sh="$ac_aux_dir/install.sh -c"
+ break
+ elif test -f "$ac_dir/shtool"; then
+ ac_aux_dir=$ac_dir
+ ac_install_sh="$ac_aux_dir/shtool install -c"
+ break
+ fi
+done
+if test -z "$ac_aux_dir"; then
+ as_fn_error $? "cannot find install-sh, install.sh, or shtool in \"$srcdir\" \"$srcdir/..\" \"$srcdir/../..\"" "$LINENO" 5
+fi
+
+# These three variables are undocumented and unsupported,
+# and are intended to be withdrawn in a future Autoconf release.
+# They can cause serious problems if a builder's source tree is in a directory
+# whose full name contains unusual characters.
+ac_config_guess="$SHELL $ac_aux_dir/config.guess" # Please don't use this var.
+ac_config_sub="$SHELL $ac_aux_dir/config.sub" # Please don't use this var.
+ac_configure="$SHELL $ac_aux_dir/configure" # Please don't use this var.
+
+
+# Find a good install program. We prefer a C program (faster),
+# so one script is as good as another. But avoid the broken or
+# incompatible versions:
+# SysV /etc/install, /usr/sbin/install
+# SunOS /usr/etc/install
+# IRIX /sbin/install
+# AIX /bin/install
+# AmigaOS /C/install, which installs bootblocks on floppy discs
+# AIX 4 /usr/bin/installbsd, which doesn't work without a -g flag
+# AFS /usr/afsws/bin/install, which mishandles nonexistent args
+# SVR4 /usr/ucb/install, which tries to use the nonexistent group "staff"
+# OS/2's system install, which has a completely different semantic
+# ./install, which can be erroneously created by make from ./install.sh.
+# Reject install programs that cannot install multiple files.
+{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for a BSD-compatible install" >&5
+$as_echo_n "checking for a BSD-compatible install... " >&6; }
+if test -z "$INSTALL"; then
+if ${ac_cv_path_install+:} false; then :
+ $as_echo_n "(cached) " >&6
+else
+ as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
+for as_dir in $PATH
+do
+ IFS=$as_save_IFS
+ test -z "$as_dir" && as_dir=.
+ # Account for people who put trailing slashes in PATH elements.
+case $as_dir/ in #((
+ ./ | .// | /[cC]/* | \
+ /etc/* | /usr/sbin/* | /usr/etc/* | /sbin/* | /usr/afsws/bin/* | \
+ ?:[\\/]os2[\\/]install[\\/]* | ?:[\\/]OS2[\\/]INSTALL[\\/]* | \
+ /usr/ucb/* ) ;;
+ *)
+ # OSF1 and SCO ODT 3.0 have their own names for install.
+ # Don't use installbsd from OSF since it installs stuff as root
+ # by default.
+ for ac_prog in ginstall scoinst install; do
+ for ac_exec_ext in '' $ac_executable_extensions; do
+ if as_fn_executable_p "$as_dir/$ac_prog$ac_exec_ext"; then
+ if test $ac_prog = install &&
+ grep dspmsg "$as_dir/$ac_prog$ac_exec_ext" >/dev/null 2>&1; then
+ # AIX install. It has an incompatible calling convention.
+ :
+ elif test $ac_prog = install &&
+ grep pwplus "$as_dir/$ac_prog$ac_exec_ext" >/dev/null 2>&1; then
+ # program-specific install script used by HP pwplus--don't use.
+ :
+ else
+ rm -rf conftest.one conftest.two conftest.dir
+ echo one > conftest.one
+ echo two > conftest.two
+ mkdir conftest.dir
+ if "$as_dir/$ac_prog$ac_exec_ext" -c conftest.one conftest.two "`pwd`/conftest.dir" &&
+ test -s conftest.one && test -s conftest.two &&
+ test -s conftest.dir/conftest.one &&
+ test -s conftest.dir/conftest.two
+ then
+ ac_cv_path_install="$as_dir/$ac_prog$ac_exec_ext -c"
+ break 3
+ fi
+ fi
+ fi
+ done
+ done
+ ;;
+esac
+
+ done
+IFS=$as_save_IFS
+
+rm -rf conftest.one conftest.two conftest.dir
+
+fi
+ if test "${ac_cv_path_install+set}" = set; then
+ INSTALL=$ac_cv_path_install
+ else
+ # As a last resort, use the slow shell script. Don't cache a
+ # value for INSTALL within a source directory, because that will
+ # break other packages using the cache if that directory is
+ # removed, or if the value is a relative name.
+ INSTALL=$ac_install_sh
+ fi
+fi
+{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $INSTALL" >&5
+$as_echo "$INSTALL" >&6; }
+
+# Use test -z because SunOS4 sh mishandles braces in ${var-val}.
+# It thinks the first close brace ends the variable substitution.
+test -z "$INSTALL_PROGRAM" && INSTALL_PROGRAM='${INSTALL}'
+
+test -z "$INSTALL_SCRIPT" && INSTALL_SCRIPT='${INSTALL}'
+
+test -z "$INSTALL_DATA" && INSTALL_DATA='${INSTALL} -m 644'
+
+{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for a thread-safe mkdir -p" >&5
+$as_echo_n "checking for a thread-safe mkdir -p... " >&6; }
+if test -z "$MKDIR_P"; then
+ if ${ac_cv_path_mkdir+:} false; then :
+ $as_echo_n "(cached) " >&6
+else
+ as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
+for as_dir in $PATH$PATH_SEPARATOR/opt/sfw/bin
+do
+ IFS=$as_save_IFS
+ test -z "$as_dir" && as_dir=.
+ for ac_prog in mkdir gmkdir; do
+ for ac_exec_ext in '' $ac_executable_extensions; do
+ as_fn_executable_p "$as_dir/$ac_prog$ac_exec_ext" || continue
+ case `"$as_dir/$ac_prog$ac_exec_ext" --version 2>&1` in #(
+ 'mkdir (GNU coreutils) '* | \
+ 'mkdir (coreutils) '* | \
+ 'mkdir (fileutils) '4.1*)
+ ac_cv_path_mkdir=$as_dir/$ac_prog$ac_exec_ext
+ break 3;;
+ esac
+ done
+ done
+ done
+IFS=$as_save_IFS
+
+fi
+
+ test -d ./--version && rmdir ./--version
+ if test "${ac_cv_path_mkdir+set}" = set; then
+ MKDIR_P="$ac_cv_path_mkdir -p"
+ else
+ # As a last resort, use the slow shell script. Don't cache a
+ # value for MKDIR_P within a source directory, because that will
+ # break other packages using the cache if that directory is
+ # removed, or if the value is a relative name.
+ MKDIR_P="$ac_install_sh -d"
+ fi
+fi
+{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $MKDIR_P" >&5
+$as_echo "$MKDIR_P" >&6; }
+
+# Extract the first word of "icon", so it can be a program name with args.
+set dummy icon; ac_word=2ドル
+{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
+$as_echo_n "checking for $ac_word... " >&6; }
+if ${ac_cv_path_ICON+:} false; then :
+ $as_echo_n "(cached) " >&6
+else
+ case $ICON in
+ [\\/]* | ?:[\\/]*)
+ ac_cv_path_ICON="$ICON" # Let the user override the test with a path.
+ ;;
+ *)
+ as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
+for as_dir in $PATH
+do
+ IFS=$as_save_IFS
+ test -z "$as_dir" && as_dir=.
+ for ac_exec_ext in '' $ac_executable_extensions; do
+ if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
+ ac_cv_path_ICON="$as_dir/$ac_word$ac_exec_ext"
+ $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5
+ break 2
+ fi
+done
+ done
+IFS=$as_save_IFS
+
+ ;;
+esac
+fi
+ICON=$ac_cv_path_ICON
+if test -n "$ICON"; then
+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ICON" >&5
+$as_echo "$ICON" >&6; }
+else
+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5
+$as_echo "no" >&6; }
+fi
+
+
+# Extract the first word of "tex", so it can be a program name with args.
+set dummy tex; ac_word=2ドル
+{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
+$as_echo_n "checking for $ac_word... " >&6; }
+if ${ac_cv_path_TEX+:} false; then :
+ $as_echo_n "(cached) " >&6
+else
+ case $TEX in
+ [\\/]* | ?:[\\/]*)
+ ac_cv_path_TEX="$TEX" # Let the user override the test with a path.
+ ;;
+ *)
+ as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
+for as_dir in $PATH
+do
+ IFS=$as_save_IFS
+ test -z "$as_dir" && as_dir=.
+ for ac_exec_ext in '' $ac_executable_extensions; do
+ if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
+ ac_cv_path_TEX="$as_dir/$ac_word$ac_exec_ext"
+ $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5
+ break 2
+ fi
+done
+ done
+IFS=$as_save_IFS
+
+ ;;
+esac
+fi
+TEX=$ac_cv_path_TEX
+if test -n "$TEX"; then
+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $TEX" >&5
+$as_echo "$TEX" >&6; }
+else
+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5
+$as_echo "no" >&6; }
+fi
+
+
+# Extract the first word of "pdftex", so it can be a program name with args.
+set dummy pdftex; ac_word=2ドル
+{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
+$as_echo_n "checking for $ac_word... " >&6; }
+if ${ac_cv_path_PDFTEX+:} false; then :
+ $as_echo_n "(cached) " >&6
+else
+ case $PDFTEX in
+ [\\/]* | ?:[\\/]*)
+ ac_cv_path_PDFTEX="$PDFTEX" # Let the user override the test with a path.
+ ;;
+ *)
+ as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
+for as_dir in $PATH
+do
+ IFS=$as_save_IFS
+ test -z "$as_dir" && as_dir=.
+ for ac_exec_ext in '' $ac_executable_extensions; do
+ if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
+ ac_cv_path_PDFTEX="$as_dir/$ac_word$ac_exec_ext"
+ $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5
+ break 2
+ fi
+done
+ done
+IFS=$as_save_IFS
+
+ ;;
+esac
+fi
+PDFTEX=$ac_cv_path_PDFTEX
+if test -n "$PDFTEX"; then
+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $PDFTEX" >&5
+$as_echo "$PDFTEX" >&6; }
+else
+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5
+$as_echo "no" >&6; }
+fi
+
+
+# Extract the first word of "httex", so it can be a program name with args.
+set dummy httex; ac_word=2ドル
+{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
+$as_echo_n "checking for $ac_word... " >&6; }
+if ${ac_cv_path_HTTEX+:} false; then :
+ $as_echo_n "(cached) " >&6
+else
+ case $HTTEX in
+ [\\/]* | ?:[\\/]*)
+ ac_cv_path_HTTEX="$HTTEX" # Let the user override the test with a path.
+ ;;
+ *)
+ as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
+for as_dir in $PATH
+do
+ IFS=$as_save_IFS
+ test -z "$as_dir" && as_dir=.
+ for ac_exec_ext in '' $ac_executable_extensions; do
+ if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
+ ac_cv_path_HTTEX="$as_dir/$ac_word$ac_exec_ext"
+ $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5
+ break 2
+ fi
+done
+ done
+IFS=$as_save_IFS
+
+ ;;
+esac
+fi
+HTTEX=$ac_cv_path_HTTEX
+if test -n "$HTTEX"; then
+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $HTTEX" >&5
+$as_echo "$HTTEX" >&6; }
+else
+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5
+$as_echo "no" >&6; }
+fi
+
+
+
+ac_config_files="$ac_config_files Makefile"
+
+cat >confcache <<\_ACEOF
+# This file is a shell script that caches the results of configure
+# tests run on this system so they can be shared between configure
+# scripts and configure runs, see configure's option --config-cache.
+# It is not useful on other systems. If it contains results you don't
+# want to keep, you may remove or edit it.
+#
+# config.status only pays attention to the cache file if you give it
+# the --recheck option to rerun configure.
+#
+# `ac_cv_env_foo' variables (set or unset) will be overridden when
+# loading this file, other *unset* `ac_cv_foo' will be assigned the
+# following values.
+
+_ACEOF
+
+# The following way of writing the cache mishandles newlines in values,
+# but we know of no workaround that is simple, portable, and efficient.
+# So, we kill variables containing newlines.
+# Ultrix sh set writes to stderr and can't be redirected directly,
+# and sets the high bit in the cache file unless we assign to the vars.
+(
+ for ac_var in `(set) 2>&1 | sed -n 's/^\([a-zA-Z_][a-zA-Z0-9_]*\)=.*/1円/p'`; do
+ eval ac_val=\$$ac_var
+ case $ac_val in #(
+ *${as_nl}*)
+ case $ac_var in #(
+ *_cv_*) { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: cache variable $ac_var contains a newline" >&5
+$as_echo "$as_me: WARNING: cache variable $ac_var contains a newline" >&2;} ;;
+ esac
+ case $ac_var in #(
+ _ | IFS | as_nl) ;; #(
+ BASH_ARGV | BASH_SOURCE) eval $ac_var= ;; #(
+ *) { eval $ac_var=; unset $ac_var;} ;;
+ esac ;;
+ esac
+ done
+
+ (set) 2>&1 |
+ case $as_nl`(ac_space=' '; set) 2>&1` in #(
+ *${as_nl}ac_space=\ *)
+ # `set' does not quote correctly, so add quotes: double-quote
+ # substitution turns \\\\ into \,円 and sed turns \\ into \.
+ sed -n \
+ "s/'/'\\\\''/g;
+ s/^\\([_$as_cr_alnum]*_cv_[_$as_cr_alnum]*\\)=\\(.*\\)/\1円='\2円'/p"
+ ;; #(
+ *)
+ # `set' quotes correctly as required by POSIX, so do not add quotes.
+ sed -n "/^[_$as_cr_alnum]*_cv_[_$as_cr_alnum]*=/p"
+ ;;
+ esac |
+ sort
+) |
+ sed '
+ /^ac_cv_env_/b end
+ t clear
+ :clear
+ s/^\([^=]*\)=\(.*[{}].*\)$/test "${1円+set}" = set || &/
+ t end
+ s/^\([^=]*\)=\(.*\)$/1円=${1円=2円}/
+ :end' >>confcache
+if diff "$cache_file" confcache >/dev/null 2>&1; then :; else
+ if test -w "$cache_file"; then
+ if test "x$cache_file" != "x/dev/null"; then
+ { $as_echo "$as_me:${as_lineno-$LINENO}: updating cache $cache_file" >&5
+$as_echo "$as_me: updating cache $cache_file" >&6;}
+ if test ! -f "$cache_file" || test -h "$cache_file"; then
+ cat confcache >"$cache_file"
+ else
+ case $cache_file in #(
+ */* | ?:*)
+ mv -f confcache "$cache_file"$$ &&
+ mv -f "$cache_file"$$ "$cache_file" ;; #(
+ *)
+ mv -f confcache "$cache_file" ;;
+ esac
+ fi
+ fi
+ else
+ { $as_echo "$as_me:${as_lineno-$LINENO}: not updating unwritable cache $cache_file" >&5
+$as_echo "$as_me: not updating unwritable cache $cache_file" >&6;}
+ fi
+fi
+rm -f confcache
+
+test "x$prefix" = xNONE && prefix=$ac_default_prefix
+# Let make expand exec_prefix.
+test "x$exec_prefix" = xNONE && exec_prefix='${prefix}'
+
+# Transform confdefs.h into DEFS.
+# Protect against shell expansion while executing Makefile rules.
+# Protect against Makefile macro expansion.
+#
+# If the first sed substitution is executed (which looks for macros that
+# take arguments), then branch to the quote section. Otherwise,
+# look for a macro that doesn't take arguments.
+ac_script='
+:mline
+/\\$/{
+ N
+ s,\\\n,,
+ b mline
+}
+t clear
+:clear
+s/^[ ]*#[ ]*define[ ][ ]*\([^ (][^ (]*([^)]*)\)[ ]*\(.*\)/-D1円=2円/g
+t quote
+s/^[ ]*#[ ]*define[ ][ ]*\([^ ][^ ]*\)[ ]*\(.*\)/-D1円=2円/g
+t quote
+b any
+:quote
+s/[ `~#$^&*(){}\\|;'\''"<>?]/\\&/g
+s/\[/\\&/g
+s/\]/\\&/g
+s/\$/$$/g
+H
+:any
+${
+ g
+ s/^\n//
+ s/\n/ /g
+ p
+}
+'
+DEFS=`sed -n "$ac_script" confdefs.h`
+
+
+ac_libobjs=
+ac_ltlibobjs=
+U=
+for ac_i in : $LIBOBJS; do test "x$ac_i" = x: && continue
+ # 1. Remove the extension, and $U if already installed.
+ ac_script='s/\$U\././;s/\.o$//;s/\.obj$//'
+ ac_i=`$as_echo "$ac_i" | sed "$ac_script"`
+ # 2. Prepend LIBOBJDIR. When used with automake>=1.10 LIBOBJDIR
+ # will be set to the directory where LIBOBJS objects are built.
+ as_fn_append ac_libobjs " \${LIBOBJDIR}$ac_i\$U.$ac_objext"
+ as_fn_append ac_ltlibobjs " \${LIBOBJDIR}$ac_i"'$U.lo'
+done
+LIBOBJS=$ac_libobjs
+
+LTLIBOBJS=$ac_ltlibobjs
+
+
+
+: "${CONFIG_STATUS=./config.status}"
+ac_write_fail=0
+ac_clean_files_save=$ac_clean_files
+ac_clean_files="$ac_clean_files $CONFIG_STATUS"
+{ $as_echo "$as_me:${as_lineno-$LINENO}: creating $CONFIG_STATUS" >&5
+$as_echo "$as_me: creating $CONFIG_STATUS" >&6;}
+as_write_fail=0
+cat >$CONFIG_STATUS <<_ASEOF || as_write_fail=1
+#! $SHELL
+# Generated by $as_me.
+# Run this file to recreate the current configuration.
+# Compiler output produced by configure, useful for debugging
+# configure, is in config.log if it exists.
+
+debug=false
+ac_cs_recheck=false
+ac_cs_silent=false
+
+SHELL=\${CONFIG_SHELL-$SHELL}
+export SHELL
+_ASEOF
+cat >>$CONFIG_STATUS <<\_ASEOF || as_write_fail=1
+## -------------------- ##
+## M4sh Initialization. ##
+## -------------------- ##
+
+# Be more Bourne compatible
+DUALCASE=1; export DUALCASE # for MKS sh
+if test -n "${ZSH_VERSION+set}" && (emulate sh) >/dev/null 2>&1; then :
+ emulate sh
+ NULLCMD=:
+ # Pre-4.2 versions of Zsh do word splitting on ${1+"$@"}, which
+ # is contrary to our usage. Disable this feature.
+ alias -g '${1+"$@"}'='"$@"'
+ setopt NO_GLOB_SUBST
+else
+ case `(set -o) 2>/dev/null` in #(
+ *posix*) :
+ set -o posix ;; #(
+ *) :
+ ;;
+esac
+fi
+
+
+as_nl='
+'
+export as_nl
+# Printing a long string crashes Solaris 7 /usr/bin/printf.
+as_echo='\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\'
+as_echo=$as_echo$as_echo$as_echo$as_echo$as_echo
+as_echo=$as_echo$as_echo$as_echo$as_echo$as_echo$as_echo
+# Prefer a ksh shell builtin over an external printf program on Solaris,
+# but without wasting forks for bash or zsh.
+if test -z "$BASH_VERSION$ZSH_VERSION" \
+ && (test "X`print -r -- $as_echo`" = "X$as_echo") 2>/dev/null; then
+ as_echo='print -r --'
+ as_echo_n='print -rn --'
+elif (test "X`printf %s $as_echo`" = "X$as_echo") 2>/dev/null; then
+ as_echo='printf %s\n'
+ as_echo_n='printf %s'
+else
+ if test "X`(/usr/ucb/echo -n -n $as_echo) 2>/dev/null`" = "X-n $as_echo"; then
+ as_echo_body='eval /usr/ucb/echo -n "1ドル$as_nl"'
+ as_echo_n='/usr/ucb/echo -n'
+ else
+ as_echo_body='eval expr "X1ドル" : "X\\(.*\\)"'
+ as_echo_n_body='eval
+ arg=1ドル;
+ case $arg in #(
+ *"$as_nl"*)
+ expr "X$arg" : "X\\(.*\\)$as_nl";
+ arg=`expr "X$arg" : ".*$as_nl\\(.*\\)"`;;
+ esac;
+ expr "X$arg" : "X\\(.*\\)" | tr -d "$as_nl"
+ '
+ export as_echo_n_body
+ as_echo_n='sh -c $as_echo_n_body as_echo'
+ fi
+ export as_echo_body
+ as_echo='sh -c $as_echo_body as_echo'
+fi
+
+# The user is always right.
+if test "${PATH_SEPARATOR+set}" != set; then
+ PATH_SEPARATOR=:
+ (PATH='/bin;/bin'; FPATH=$PATH; sh -c :) >/dev/null 2>&1 && {
+ (PATH='/bin:/bin'; FPATH=$PATH; sh -c :) >/dev/null 2>&1 ||
+ PATH_SEPARATOR=';'
+ }
+fi
+
+
+# IFS
+# We need space, tab and new line, in precisely that order. Quoting is
+# there to prevent editors from complaining about space-tab.
+# (If _AS_PATH_WALK were called with IFS unset, it would disable word
+# splitting by setting IFS to empty value.)
+IFS=" "" $as_nl"
+
+# Find who we are. Look in the path if we contain no directory separator.
+as_myself=
+case 0ドル in #((
+ *[\\/]* ) as_myself=0ドル ;;
+ *) as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
+for as_dir in $PATH
+do
+ IFS=$as_save_IFS
+ test -z "$as_dir" && as_dir=.
+ test -r "$as_dir/0ドル" && as_myself=$as_dir/0ドル && break
+ done
+IFS=$as_save_IFS
+
+ ;;
+esac
+# We did not find ourselves, most probably we were run as `sh COMMAND'
+# in which case we are not to be found in the path.
+if test "x$as_myself" = x; then
+ as_myself=0ドル
+fi
+if test ! -f "$as_myself"; then
+ $as_echo "$as_myself: error: cannot find myself; rerun with an absolute file name" >&2
+ exit 1
+fi
+
+# Unset variables that we do not need and which cause bugs (e.g. in
+# pre-3.0 UWIN ksh). But do not cause bugs in bash 2.01; the "|| exit 1"
+# suppresses any "Segmentation fault" message there. '((' could
+# trigger a bug in pdksh 5.2.14.
+for as_var in BASH_ENV ENV MAIL MAILPATH
+do eval test x\${$as_var+set} = xset \
+ && ( (unset $as_var) || exit 1) >/dev/null 2>&1 && unset $as_var || :
+done
+PS1='$ '
+PS2='> '
+PS4='+ '
+
+# NLS nuisances.
+LC_ALL=C
+export LC_ALL
+LANGUAGE=C
+export LANGUAGE
+
+# CDPATH.
+(unset CDPATH) >/dev/null 2>&1 && unset CDPATH
+
+
+# as_fn_error STATUS ERROR [LINENO LOG_FD]
+# ----------------------------------------
+# Output "`basename 0ドル`: error: ERROR" to stderr. If LINENO and LOG_FD are
+# provided, also output the error to LOG_FD, referencing LINENO. Then exit the
+# script with STATUS, using 1 if that was 0.
+as_fn_error ()
+{
+ as_status=1ドル; test $as_status -eq 0 && as_status=1
+ if test "4ドル"; then
+ as_lineno=${as_lineno-"3ドル"} as_lineno_stack=as_lineno_stack=$as_lineno_stack
+ $as_echo "$as_me:${as_lineno-$LINENO}: error: 2ドル" >&4ドル
+ fi
+ $as_echo "$as_me: error: 2ドル" >&2
+ as_fn_exit $as_status
+} # as_fn_error
+
+
+# as_fn_set_status STATUS
+# -----------------------
+# Set $? to STATUS, without forking.
+as_fn_set_status ()
+{
+ return 1ドル
+} # as_fn_set_status
+
+# as_fn_exit STATUS
+# -----------------
+# Exit the shell with STATUS, even in a "trap 0" or "set -e" context.
+as_fn_exit ()
+{
+ set +e
+ as_fn_set_status 1ドル
+ exit 1ドル
+} # as_fn_exit
+
+# as_fn_unset VAR
+# ---------------
+# Portably unset VAR.
+as_fn_unset ()
+{
+ { eval 1ドル=; unset 1ドル;}
+}
+as_unset=as_fn_unset
+# as_fn_append VAR VALUE
+# ----------------------
+# Append the text in VALUE to the end of the definition contained in VAR. Take
+# advantage of any shell optimizations that allow amortized linear growth over
+# repeated appends, instead of the typical quadratic growth present in naive
+# implementations.
+if (eval "as_var=1; as_var+=2; test x\$as_var = x12") 2>/dev/null; then :
+ eval 'as_fn_append ()
+ {
+ eval 1ドル+=\2ドル
+ }'
+else
+ as_fn_append ()
+ {
+ eval 1ドル=\$1ドル\2ドル
+ }
+fi # as_fn_append
+
+# as_fn_arith ARG...
+# ------------------
+# Perform arithmetic evaluation on the ARGs, and store the result in the
+# global $as_val. Take advantage of shells that can avoid forks. The arguments
+# must be portable across $(()) and expr.
+if (eval "test \$(( 1 + 1 )) = 2") 2>/dev/null; then :
+ eval 'as_fn_arith ()
+ {
+ as_val=$(( $* ))
+ }'
+else
+ as_fn_arith ()
+ {
+ as_val=`expr "$@" || test $? -eq 1`
+ }
+fi # as_fn_arith
+
+
+if expr a : '\(a\)' >/dev/null 2>&1 &&
+ test "X`expr 00001 : '.*\(...\)'`" = X001; then
+ as_expr=expr
+else
+ as_expr=false
+fi
+
+if (basename -- /) >/dev/null 2>&1 && test "X`basename -- / 2>&1`" = "X/"; then
+ as_basename=basename
+else
+ as_basename=false
+fi
+
+if (as_dir=`dirname -- /` && test "X$as_dir" = X/) >/dev/null 2>&1; then
+ as_dirname=dirname
+else
+ as_dirname=false
+fi
+
+as_me=`$as_basename -- "0ドル" ||
+$as_expr X/"0ドル" : '.*/\([^/][^/]*\)/*$' \| \
+ X"0ドル" : 'X\(//\)$' \| \
+ X"0ドル" : 'X\(/\)' \| . 2>/dev/null ||
+$as_echo X/"0ドル" |
+ sed '/^.*\/\([^/][^/]*\)\/*$/{
+ s//1円/
+ q
+ }
+ /^X\/\(\/\/\)$/{
+ s//1円/
+ q
+ }
+ /^X\/\(\/\).*/{
+ s//1円/
+ q
+ }
+ s/.*/./; q'`
+
+# Avoid depending upon Character Ranges.
+as_cr_letters='abcdefghijklmnopqrstuvwxyz'
+as_cr_LETTERS='ABCDEFGHIJKLMNOPQRSTUVWXYZ'
+as_cr_Letters=$as_cr_letters$as_cr_LETTERS
+as_cr_digits='0123456789'
+as_cr_alnum=$as_cr_Letters$as_cr_digits
+
+ECHO_C= ECHO_N= ECHO_T=
+case `echo -n x` in #(((((
+-n*)
+ case `echo 'xy\c'` in
+ *c*) ECHO_T=' ';; # ECHO_T is single tab character.
+ xy) ECHO_C='\c';;
+ *) echo `echo ksh88 bug on AIX 6.1` > /dev/null
+ ECHO_T=' ';;
+ esac;;
+*)
+ ECHO_N='-n';;
+esac
+
+rm -f conf$$ conf$$.exe conf$$.file
+if test -d conf$$.dir; then
+ rm -f conf$$.dir/conf$$.file
+else
+ rm -f conf$$.dir
+ mkdir conf$$.dir 2>/dev/null
+fi
+if (echo >conf$$.file) 2>/dev/null; then
+ if ln -s conf$$.file conf$$ 2>/dev/null; then
+ as_ln_s='ln -s'
+ # ... but there are two gotchas:
+ # 1) On MSYS, both `ln -s file dir' and `ln file dir' fail.
+ # 2) DJGPP < 2.04 has no symlinks; `ln -s' creates a wrapper executable.
+ # In both cases, we have to default to `cp -pR'.
+ ln -s conf$$.file conf$$.dir 2>/dev/null && test ! -f conf$$.exe ||
+ as_ln_s='cp -pR'
+ elif ln conf$$.file conf$$ 2>/dev/null; then
+ as_ln_s=ln
+ else
+ as_ln_s='cp -pR'
+ fi
+else
+ as_ln_s='cp -pR'
+fi
+rm -f conf$$ conf$$.exe conf$$.dir/conf$$.file conf$$.file
+rmdir conf$$.dir 2>/dev/null
+
+
+# as_fn_mkdir_p
+# -------------
+# Create "$as_dir" as a directory, including parents if necessary.
+as_fn_mkdir_p ()
+{
+
+ case $as_dir in #(
+ -*) as_dir=./$as_dir;;
+ esac
+ test -d "$as_dir" || eval $as_mkdir_p || {
+ as_dirs=
+ while :; do
+ case $as_dir in #(
+ *\'*) as_qdir=`$as_echo "$as_dir" | sed "s/'/'\\\\\\\\''/g"`;; #'(
+ *) as_qdir=$as_dir;;
+ esac
+ as_dirs="'$as_qdir' $as_dirs"
+ as_dir=`$as_dirname -- "$as_dir" ||
+$as_expr X"$as_dir" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \
+ X"$as_dir" : 'X\(//\)[^/]' \| \
+ X"$as_dir" : 'X\(//\)$' \| \
+ X"$as_dir" : 'X\(/\)' \| . 2>/dev/null ||
+$as_echo X"$as_dir" |
+ sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{
+ s//1円/
+ q
+ }
+ /^X\(\/\/\)[^/].*/{
+ s//1円/
+ q
+ }
+ /^X\(\/\/\)$/{
+ s//1円/
+ q
+ }
+ /^X\(\/\).*/{
+ s//1円/
+ q
+ }
+ s/.*/./; q'`
+ test -d "$as_dir" && break
+ done
+ test -z "$as_dirs" || eval "mkdir $as_dirs"
+ } || test -d "$as_dir" || as_fn_error $? "cannot create directory $as_dir"
+
+
+} # as_fn_mkdir_p
+if mkdir -p . 2>/dev/null; then
+ as_mkdir_p='mkdir -p "$as_dir"'
+else
+ test -d ./-p && rmdir ./-p
+ as_mkdir_p=false
+fi
+
+
+# as_fn_executable_p FILE
+# -----------------------
+# Test if FILE is an executable regular file.
+as_fn_executable_p ()
+{
+ test -f "1ドル" && test -x "1ドル"
+} # as_fn_executable_p
+as_test_x='test -x'
+as_executable_p=as_fn_executable_p
+
+# Sed expression to map a string onto a valid CPP name.
+as_tr_cpp="eval sed 'y%*$as_cr_letters%P$as_cr_LETTERS%;s%[^_$as_cr_alnum]%_%g'"
+
+# Sed expression to map a string onto a valid variable name.
+as_tr_sh="eval sed 'y%*+%pp%;s%[^_$as_cr_alnum]%_%g'"
+
+
+exec 6>&1
+## ----------------------------------- ##
+## Main body of $CONFIG_STATUS script. ##
+## ----------------------------------- ##
+_ASEOF
+test $as_write_fail = 0 && chmod +x $CONFIG_STATUS || ac_write_fail=1
+
+cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1
+# Save the log message, to keep 0ドル and so on meaningful, and to
+# report actual input values of CONFIG_FILES etc. instead of their
+# values after options handling.
+ac_log="
+This file was extended by teximpatient $as_me 2.4, which was
+generated by GNU Autoconf 2.69. Invocation command line was
+
+ CONFIG_FILES = $CONFIG_FILES
+ CONFIG_HEADERS = $CONFIG_HEADERS
+ CONFIG_LINKS = $CONFIG_LINKS
+ CONFIG_COMMANDS = $CONFIG_COMMANDS
+ $ 0ドル $@
+
+on `(hostname || uname -n) 2>/dev/null | sed 1q`
+"
+
+_ACEOF
+
+case $ac_config_files in *"
+"*) set x $ac_config_files; shift; ac_config_files=$*;;
+esac
+
+
+
+cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1
+# Files that config.status was made for.
+config_files="$ac_config_files"
+
+_ACEOF
+
+cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1
+ac_cs_usage="\
+\`$as_me' instantiates files and other configuration actions
+from templates according to the current configuration. Unless the files
+and actions are specified as TAGs, all are instantiated by default.
+
+Usage: 0ドル [OPTION]... [TAG]...
+
+ -h, --help print this help, then exit
+ -V, --version print version number and configuration settings, then exit
+ --config print configuration, then exit
+ -q, --quiet, --silent
+ do not print progress messages
+ -d, --debug don't remove temporary files
+ --recheck update $as_me by reconfiguring in the same conditions
+ --file=FILE[:TEMPLATE]
+ instantiate the configuration file FILE
+
+Configuration files:
+$config_files
+
+Report bugs to <impatient@tug.org>."
+
+_ACEOF
+cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1
+ac_cs_config="`$as_echo "$ac_configure_args" | sed 's/^ //; s/[\\""\`\$]/\\\\&/g'`"
+ac_cs_version="\\
+teximpatient config.status 2.4
+configured by 0,ドル generated by GNU Autoconf 2.69,
+ with options \\"\$ac_cs_config\\"
+
+Copyright (C) 2012 Free Software Foundation, Inc.
+This config.status script is free software; the Free Software Foundation
+gives unlimited permission to copy, distribute and modify it."
+
+ac_pwd='$ac_pwd'
+srcdir='$srcdir'
+INSTALL='$INSTALL'
+MKDIR_P='$MKDIR_P'
+test -n "\$AWK" || AWK=awk
+_ACEOF
+
+cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1
+# The default lists apply if the user does not specify any file.
+ac_need_defaults=:
+while test $# != 0
+do
+ case 1ドル in
+ --*=?*)
+ ac_option=`expr "X1ドル" : 'X\([^=]*\)='`
+ ac_optarg=`expr "X1ドル" : 'X[^=]*=\(.*\)'`
+ ac_shift=:
+ ;;
+ --*=)
+ ac_option=`expr "X1ドル" : 'X\([^=]*\)='`
+ ac_optarg=
+ ac_shift=:
+ ;;
+ *)
+ ac_option=1ドル
+ ac_optarg=2ドル
+ ac_shift=shift
+ ;;
+ esac
+
+ case $ac_option in
+ # Handling of the options.
+ -recheck | --recheck | --rechec | --reche | --rech | --rec | --re | --r)
+ ac_cs_recheck=: ;;
+ --version | --versio | --versi | --vers | --ver | --ve | --v | -V )
+ $as_echo "$ac_cs_version"; exit ;;
+ --config | --confi | --conf | --con | --co | --c )
+ $as_echo "$ac_cs_config"; exit ;;
+ --debug | --debu | --deb | --de | --d | -d )
+ debug=: ;;
+ --file | --fil | --fi | --f )
+ $ac_shift
+ case $ac_optarg in
+ *\'*) ac_optarg=`$as_echo "$ac_optarg" | sed "s/'/'\\\\\\\\''/g"` ;;
+ '') as_fn_error $? "missing file argument" ;;
+ esac
+ as_fn_append CONFIG_FILES " '$ac_optarg'"
+ ac_need_defaults=false;;
+ --he | --h | --help | --hel | -h )
+ $as_echo "$ac_cs_usage"; exit ;;
+ -q | -quiet | --quiet | --quie | --qui | --qu | --q \
+ | -silent | --silent | --silen | --sile | --sil | --si | --s)
+ ac_cs_silent=: ;;
+
+ # This is an error.
+ -*) as_fn_error $? "unrecognized option: \`1ドル'
+Try \`0ドル --help' for more information." ;;
+
+ *) as_fn_append ac_config_targets " 1ドル"
+ ac_need_defaults=false ;;
+
+ esac
+ shift
+done
+
+ac_configure_extra_args=
+
+if $ac_cs_silent; then
+ exec 6>/dev/null
+ ac_configure_extra_args="$ac_configure_extra_args --silent"
+fi
+
+_ACEOF
+cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1
+if \$ac_cs_recheck; then
+ set X $SHELL '0ドル' $ac_configure_args \$ac_configure_extra_args --no-create --no-recursion
+ shift
+ \$as_echo "running CONFIG_SHELL=$SHELL \$*" >&6
+ CONFIG_SHELL='$SHELL'
+ export CONFIG_SHELL
+ exec "\$@"
+fi
+
+_ACEOF
+cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1
+exec 5>>config.log
+{
+ echo
+ sed 'h;s/./-/g;s/^.../## /;s/...$/ ##/;p;x;p;x' <<_ASBOX
+## Running $as_me. ##
+_ASBOX
+ $as_echo "$ac_log"
+} >&5
+
+_ACEOF
+cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1
+_ACEOF
+
+cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1
+
+# Handling of arguments.
+for ac_config_target in $ac_config_targets
+do
+ case $ac_config_target in
+ "Makefile") CONFIG_FILES="$CONFIG_FILES Makefile" ;;
+
+ *) as_fn_error $? "invalid argument: \`$ac_config_target'" "$LINENO" 5;;
+ esac
+done
+
+
+# If the user did not use the arguments to specify the items to instantiate,
+# then the envvar interface is used. Set only those that are not.
+# We use the long form for the default assignment because of an extremely
+# bizarre bug on SunOS 4.1.3.
+if $ac_need_defaults; then
+ test "${CONFIG_FILES+set}" = set || CONFIG_FILES=$config_files
+fi
+
+# Have a temporary directory for convenience. Make it in the build tree
+# simply because there is no reason against having it here, and in addition,
+# creating and moving files from /tmp can sometimes cause problems.
+# Hook for its removal unless debugging.
+# Note that there is a small window in which the directory will not be cleaned:
+# after its creation but before its name has been assigned to `$tmp'.
+$debug ||
+{
+ tmp= ac_tmp=
+ trap 'exit_status=$?
+ : "${ac_tmp:=$tmp}"
+ { test ! -d "$ac_tmp" || rm -fr "$ac_tmp"; } && exit $exit_status
+' 0
+ trap 'as_fn_exit 1' 1 2 13 15
+}
+# Create a (secure) tmp directory for tmp files.
+
+{
+ tmp=`(umask 077 && mktemp -d "./confXXXXXX") 2>/dev/null` &&
+ test -d "$tmp"
+} ||
+{
+ tmp=./conf$$-$RANDOM
+ (umask 077 && mkdir "$tmp")
+} || as_fn_error $? "cannot create a temporary directory in ." "$LINENO" 5
+ac_tmp=$tmp
+
+# Set up the scripts for CONFIG_FILES section.
+# No need to generate them if there are no CONFIG_FILES.
+# This happens for instance with `./config.status config.h'.
+if test -n "$CONFIG_FILES"; then
+
+
+ac_cr=`echo X | tr X '015円'`
+# On cygwin, bash can eat \r inside `` if the user requested igncr.
+# But we know of no other shell where ac_cr would be empty at this
+# point, so we can use a bashism as a fallback.
+if test "x$ac_cr" = x; then
+ eval ac_cr=\$\'\\r\'
+fi
+ac_cs_awk_cr=`$AWK 'BEGIN { print "a\rb" }' </dev/null 2>/dev/null`
+if test "$ac_cs_awk_cr" = "a${ac_cr}b"; then
+ ac_cs_awk_cr='\\r'
+else
+ ac_cs_awk_cr=$ac_cr
+fi
+
+echo 'BEGIN {' >"$ac_tmp/subs1.awk" &&
+_ACEOF
+
+
+{
+ echo "cat >conf$$subs.awk <<_ACEOF" &&
+ echo "$ac_subst_vars" | sed 's/.*/&!$&$ac_delim/' &&
+ echo "_ACEOF"
+} >conf$$subs.sh ||
+ as_fn_error $? "could not make $CONFIG_STATUS" "$LINENO" 5
+ac_delim_num=`echo "$ac_subst_vars" | grep -c '^'`
+ac_delim='%!_!# '
+for ac_last_try in false false false false false :; do
+ . ./conf$$subs.sh ||
+ as_fn_error $? "could not make $CONFIG_STATUS" "$LINENO" 5
+
+ ac_delim_n=`sed -n "s/.*$ac_delim\$/X/p" conf$$subs.awk | grep -c X`
+ if test $ac_delim_n = $ac_delim_num; then
+ break
+ elif $ac_last_try; then
+ as_fn_error $? "could not make $CONFIG_STATUS" "$LINENO" 5
+ else
+ ac_delim="$ac_delim!$ac_delim _$ac_delim!! "
+ fi
+done
+rm -f conf$$subs.sh
+
+cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1
+cat >>"\$ac_tmp/subs1.awk" <<\\_ACAWK &&
+_ACEOF
+sed -n '
+h
+s/^/S["/; s/!.*/"]=/
+p
+g
+s/^[^!]*!//
+:repl
+t repl
+s/'"$ac_delim"'$//
+t delim
+:nl
+h
+s/\(.\{148\}\)..*/1円/
+t more1
+s/["\\]/\\&/g; s/^/"/; s/$/\\n"\\/
+p
+n
+b repl
+:more1
+s/["\\]/\\&/g; s/^/"/; s/$/"\\/
+p
+g
+s/.\{148\}//
+t nl
+:delim
+h
+s/\(.\{148\}\)..*/1円/
+t more2
+s/["\\]/\\&/g; s/^/"/; s/$/"/
+p
+b
+:more2
+s/["\\]/\\&/g; s/^/"/; s/$/"\\/
+p
+g
+s/.\{148\}//
+t delim
+' <conf$$subs.awk | sed '
+/^[^""]/{
+ N
+ s/\n//
+}
+' >>$CONFIG_STATUS || ac_write_fail=1
+rm -f conf$$subs.awk
+cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1
+_ACAWK
+cat >>"\$ac_tmp/subs1.awk" <<_ACAWK &&
+ for (key in S) S_is_set[key] = 1
+ FS = ""
+
+}
+{
+ line = $ 0
+ nfields = split(line, field, "@")
+ substed = 0
+ len = length(field[1])
+ for (i = 2; i < nfields; i++) {
+ key = field[i]
+ keylen = length(key)
+ if (S_is_set[key]) {
+ value = S[key]
+ line = substr(line, 1, len) "" value "" substr(line, len + keylen + 3)
+ len += length(value) + length(field[++i])
+ substed = 1
+ } else
+ len += 1 + keylen
+ }
+
+ print line
+}
+
+_ACAWK
+_ACEOF
+cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1
+if sed "s/$ac_cr//" < /dev/null > /dev/null 2>&1; then
+ sed "s/$ac_cr\$//; s/$ac_cr/$ac_cs_awk_cr/g"
+else
+ cat
+fi < "$ac_tmp/subs1.awk" > "$ac_tmp/subs.awk" \
+ || as_fn_error $? "could not setup config files machinery" "$LINENO" 5
+_ACEOF
+
+# VPATH may cause trouble with some makes, so we remove sole $(srcdir),
+# ${srcdir} and @srcdir@ entries from VPATH if srcdir is ".", strip leading and
+# trailing colons and then remove the whole line if VPATH becomes empty
+# (actually we leave an empty line to preserve line numbers).
+if test "x$srcdir" = x.; then
+ ac_vpsub='/^[ ]*VPATH[ ]*=[ ]*/{
+h
+s///
+s/^/:/
+s/[ ]*$/:/
+s/:\$(srcdir):/:/g
+s/:\${srcdir}:/:/g
+s/:@srcdir@:/:/g
+s/^:*//
+s/:*$//
+x
+s/\(=[ ]*\).*/1円/
+G
+s/\n//
+s/^[^=]*=[ ]*$//
+}'
+fi
+
+cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1
+fi # test -n "$CONFIG_FILES"
+
+
+eval set X " :F $CONFIG_FILES "
+shift
+for ac_tag
+do
+ case $ac_tag in
+ :[FHLC]) ac_mode=$ac_tag; continue;;
+ esac
+ case $ac_mode$ac_tag in
+ :[FHL]*:*);;
+ :L* | :C*:*) as_fn_error $? "invalid tag \`$ac_tag'" "$LINENO" 5;;
+ :[FH]-) ac_tag=-:-;;
+ :[FH]*) ac_tag=$ac_tag:$ac_tag.in;;
+ esac
+ ac_save_IFS=$IFS
+ IFS=:
+ set x $ac_tag
+ IFS=$ac_save_IFS
+ shift
+ ac_file=1ドル
+ shift
+
+ case $ac_mode in
+ :L) ac_source=1ドル;;
+ :[FH])
+ ac_file_inputs=
+ for ac_f
+ do
+ case $ac_f in
+ -) ac_f="$ac_tmp/stdin";;
+ *) # Look for the file first in the build tree, then in the source tree
+ # (if the path is not absolute). The absolute path cannot be DOS-style,
+ # because $ac_f cannot contain `:'.
+ test -f "$ac_f" ||
+ case $ac_f in
+ [\\/$]*) false;;
+ *) test -f "$srcdir/$ac_f" && ac_f="$srcdir/$ac_f";;
+ esac ||
+ as_fn_error 1 "cannot find input file: \`$ac_f'" "$LINENO" 5;;
+ esac
+ case $ac_f in *\'*) ac_f=`$as_echo "$ac_f" | sed "s/'/'\\\\\\\\''/g"`;; esac
+ as_fn_append ac_file_inputs " '$ac_f'"
+ done
+
+ # Let's still pretend it is `configure' which instantiates (i.e., don't
+ # use $as_me), people would be surprised to read:
+ # /* config.h. Generated by config.status. */
+ configure_input='Generated from '`
+ $as_echo "$*" | sed 's|^[^:]*/||;s|:[^:]*/|, |g'
+ `' by configure.'
+ if test x"$ac_file" != x-; then
+ configure_input="$ac_file. $configure_input"
+ { $as_echo "$as_me:${as_lineno-$LINENO}: creating $ac_file" >&5
+$as_echo "$as_me: creating $ac_file" >&6;}
+ fi
+ # Neutralize special characters interpreted by sed in replacement strings.
+ case $configure_input in #(
+ *\&* | *\|* | *\\* )
+ ac_sed_conf_input=`$as_echo "$configure_input" |
+ sed 's/[\\\\&|]/\\\\&/g'`;; #(
+ *) ac_sed_conf_input=$configure_input;;
+ esac
+
+ case $ac_tag in
+ *:-:* | *:-) cat >"$ac_tmp/stdin" \
+ || as_fn_error $? "could not create $ac_file" "$LINENO" 5 ;;
+ esac
+ ;;
+ esac
+
+ ac_dir=`$as_dirname -- "$ac_file" ||
+$as_expr X"$ac_file" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \
+ X"$ac_file" : 'X\(//\)[^/]' \| \
+ X"$ac_file" : 'X\(//\)$' \| \
+ X"$ac_file" : 'X\(/\)' \| . 2>/dev/null ||
+$as_echo X"$ac_file" |
+ sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{
+ s//1円/
+ q
+ }
+ /^X\(\/\/\)[^/].*/{
+ s//1円/
+ q
+ }
+ /^X\(\/\/\)$/{
+ s//1円/
+ q
+ }
+ /^X\(\/\).*/{
+ s//1円/
+ q
+ }
+ s/.*/./; q'`
+ as_dir="$ac_dir"; as_fn_mkdir_p
+ ac_builddir=.
+
+case "$ac_dir" in
+.) ac_dir_suffix= ac_top_builddir_sub=. ac_top_build_prefix= ;;
+*)
+ ac_dir_suffix=/`$as_echo "$ac_dir" | sed 's|^\.[\\/]||'`
+ # A ".." for each directory in $ac_dir_suffix.
+ ac_top_builddir_sub=`$as_echo "$ac_dir_suffix" | sed 's|/[^\\/]*|/..|g;s|/||'`
+ case $ac_top_builddir_sub in
+ "") ac_top_builddir_sub=. ac_top_build_prefix= ;;
+ *) ac_top_build_prefix=$ac_top_builddir_sub/ ;;
+ esac ;;
+esac
+ac_abs_top_builddir=$ac_pwd
+ac_abs_builddir=$ac_pwd$ac_dir_suffix
+# for backward compatibility:
+ac_top_builddir=$ac_top_build_prefix
+
+case $srcdir in
+ .) # We are building in place.
+ ac_srcdir=.
+ ac_top_srcdir=$ac_top_builddir_sub
+ ac_abs_top_srcdir=$ac_pwd ;;
+ [\\/]* | ?:[\\/]* ) # Absolute name.
+ ac_srcdir=$srcdir$ac_dir_suffix;
+ ac_top_srcdir=$srcdir
+ ac_abs_top_srcdir=$srcdir ;;
+ *) # Relative name.
+ ac_srcdir=$ac_top_build_prefix$srcdir$ac_dir_suffix
+ ac_top_srcdir=$ac_top_build_prefix$srcdir
+ ac_abs_top_srcdir=$ac_pwd/$srcdir ;;
+esac
+ac_abs_srcdir=$ac_abs_top_srcdir$ac_dir_suffix
+
+
+ case $ac_mode in
+ :F)
+ #
+ # CONFIG_FILE
+ #
+
+ case $INSTALL in
+ [\\/$]* | ?:[\\/]* ) ac_INSTALL=$INSTALL ;;
+ *) ac_INSTALL=$ac_top_build_prefix$INSTALL ;;
+ esac
+ ac_MKDIR_P=$MKDIR_P
+ case $MKDIR_P in
+ [\\/$]* | ?:[\\/]* ) ;;
+ */*) ac_MKDIR_P=$ac_top_build_prefix$MKDIR_P ;;
+ esac
+_ACEOF
+
+cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1
+# If the template does not know about datarootdir, expand it.
+# FIXME: This hack should be removed a few years after 2.60.
+ac_datarootdir_hack=; ac_datarootdir_seen=
+ac_sed_dataroot='
+/datarootdir/ {
+ p
+ q
+}
+/@datadir@/p
+/@docdir@/p
+/@infodir@/p
+/@localedir@/p
+/@mandir@/p'
+case `eval "sed -n \"\$ac_sed_dataroot\" $ac_file_inputs"` in
+*datarootdir*) ac_datarootdir_seen=yes;;
+*@datadir@*|*@docdir@*|*@infodir@*|*@localedir@*|*@mandir@*)
+ { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: $ac_file_inputs seems to ignore the --datarootdir setting" >&5
+$as_echo "$as_me: WARNING: $ac_file_inputs seems to ignore the --datarootdir setting" >&2;}
+_ACEOF
+cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1
+ ac_datarootdir_hack='
+ s&@datadir@&$datadir&g
+ s&@docdir@&$docdir&g
+ s&@infodir@&$infodir&g
+ s&@localedir@&$localedir&g
+ s&@mandir@&$mandir&g
+ s&\\\${datarootdir}&$datarootdir&g' ;;
+esac
+_ACEOF
+
+# Neutralize VPATH when `$srcdir' = `.'.
+# Shell code in configure.ac might set extrasub.
+# FIXME: do we really want to maintain this feature?
+cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1
+ac_sed_extra="$ac_vpsub
+$extrasub
+_ACEOF
+cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1
+:t
+/@[a-zA-Z_][a-zA-Z_0-9]*@/!b
+s|@configure_input@|$ac_sed_conf_input|;t t
+s&@top_builddir@&$ac_top_builddir_sub&;t t
+s&@top_build_prefix@&$ac_top_build_prefix&;t t
+s&@srcdir@&$ac_srcdir&;t t
+s&@abs_srcdir@&$ac_abs_srcdir&;t t
+s&@top_srcdir@&$ac_top_srcdir&;t t
+s&@abs_top_srcdir@&$ac_abs_top_srcdir&;t t
+s&@builddir@&$ac_builddir&;t t
+s&@abs_builddir@&$ac_abs_builddir&;t t
+s&@abs_top_builddir@&$ac_abs_top_builddir&;t t
+s&@INSTALL@&$ac_INSTALL&;t t
+s&@MKDIR_P@&$ac_MKDIR_P&;t t
+$ac_datarootdir_hack
+"
+eval sed \"\$ac_sed_extra\" "$ac_file_inputs" | $AWK -f "$ac_tmp/subs.awk" \
+ >$ac_tmp/out || as_fn_error $? "could not create $ac_file" "$LINENO" 5
+
+test -z "$ac_datarootdir_hack$ac_datarootdir_seen" &&
+ { ac_out=`sed -n '/\${datarootdir}/p' "$ac_tmp/out"`; test -n "$ac_out"; } &&
+ { ac_out=`sed -n '/^[ ]*datarootdir[ ]*:*=/p' \
+ "$ac_tmp/out"`; test -z "$ac_out"; } &&
+ { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: $ac_file contains a reference to the variable \`datarootdir'
+which seems to be undefined. Please make sure it is defined" >&5
+$as_echo "$as_me: WARNING: $ac_file contains a reference to the variable \`datarootdir'
+which seems to be undefined. Please make sure it is defined" >&2;}
+
+ rm -f "$ac_tmp/stdin"
+ case $ac_file in
+ -) cat "$ac_tmp/out" && rm -f "$ac_tmp/out";;
+ *) rm -f "$ac_file" && mv "$ac_tmp/out" "$ac_file";;
+ esac \
+ || as_fn_error $? "could not create $ac_file" "$LINENO" 5
+ ;;
+
+
+
+ esac
+
+done # for ac_tag
+
+
+as_fn_exit 0
+_ACEOF
+ac_clean_files=$ac_clean_files_save
+
+test $ac_write_fail = 0 ||
+ as_fn_error $? "write failure creating $CONFIG_STATUS" "$LINENO" 5
+
+
+# configure is writing to config.log, and then calls config.status.
+# config.status does its own redirection, appending to config.log.
+# Unfortunately, on DOS this fails, as config.log is still kept open
+# by configure, so config.status won't be able to write to it; its
+# output is simply discarded. So we exec the FD to /dev/null,
+# effectively closing config.log, so it can be properly (re)opened and
+# appended to by config.status. When coming back to configure, we
+# need to make the FD available again.
+if test "$no_create" != yes; then
+ ac_cs_success=:
+ ac_config_status_args=
+ test "$silent" = yes &&
+ ac_config_status_args="$ac_config_status_args --quiet"
+ exec 5>/dev/null
+ $SHELL $CONFIG_STATUS $ac_config_status_args || ac_cs_success=false
+ exec 5>>config.log
+ # Use ||, not &&, to avoid exiting from the if with $? = 1, which
+ # would make configure fail if this is the last instruction.
+ $ac_cs_success || as_fn_exit 1
+fi
+if test -n "$ac_unrecognized_opts" && test "$enable_option_checking" != no; then
+ { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: unrecognized options: $ac_unrecognized_opts" >&5
+$as_echo "$as_me: WARNING: unrecognized options: $ac_unrecognized_opts" >&2;}
+fi
+
diff --git a/teximpatient/x.tex b/teximpatient/x.tex
new file mode 100644
index 0000000..cabdcf2
--- /dev/null
+++ b/teximpatient/x.tex
@@ -0,0 +1,36 @@
+\xmpheader !xmpnum/{More mathematics}% !xmpheaddef
+^^{math}
+The absolute value of $X,ドル $|x|,ドル is defined by:
+$$|x| = \cases{x, &if $x\ge 0$;\cr
+-x,&otherwise.\cr}$$
+Now for some numbered equations.
+It is the case that for $k \ge 0$:
+$$x^{k^2}=\overbrace{x\>x\>\cdots\> x}^{2k\ \rm times}
+\eqno (1)$$
+
+Here's an example that shows some spacing controls, with
+a number on the left:
+$$[u]!negthin[v][w],円[x]\>[y]\;[z]\leqno(2a)$$
+The amount of space between the items in brackets
+gradually increases from left to right. (We've made
+the space between the first two items be {\it less\/}
+than the natural space.)
+It is sometimes the case that $$\leqalignno{
+u'_1 + tu''_2 &= u'_2 + tu''_1&(2b)\cr
+\hat\imath &\ne \hat \jmath&(2c)\cr
+\vec {\vphantom{b}a}&\approx \vec b\cr}$$
+% The \vphantom is an invisible rule as tall as a `b'.
+The result is of order $O(n \log\log n)$. Thus
+$$\sum_{i=1}^n x_i = x_1+x_2+\cdots+x_n
+= {\rm Sum}(x_1,x_2,\ldots,x_n). \eqno(3)$$
+and
+$$dx,円dy = r,円dr,円d\theta!negthin.\eqno(4)$$
+The set of all $q$ such that $q\le0$ is written as:
+$$\{,円q\mid q\le0,円 \}$$
+Thus
+$$\forall x\exists y\;P(x,y)\Rightarrow
+\exists x\exists y\;P(x,y)$$
+where
+$$P(x,y) \buildrel \rm def \over \equiv
+\hbox{\rm any predicate in $x$ and $y$} . $$
+\bye
generated by cgit v1.2.3 (git 2.39.1) at 2025年09月02日 01:21:32 +0000

AltStyle によって変換されたページ (->オリジナル) /