printproto-1.0.5/aclocal.m4000064401431060000012000002453651151122464300160750ustar00alancstaff00002660200007# generated automatically by aclocal 1.11.1 -*- Autoconf -*- # Copyright (C) 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004, # 2005, 2006, 2007, 2008, 2009 Free Software Foundation, Inc. # This file is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY, to the extent permitted by law; without # even the implied warranty of MERCHANTABILITY or FITNESS FOR A # PARTICULAR PURPOSE. m4_ifndef([AC_AUTOCONF_VERSION], [m4_copy([m4_PACKAGE_VERSION], [AC_AUTOCONF_VERSION])])dnl m4_if(m4_defn([AC_AUTOCONF_VERSION]), [2.68],, [m4_warning([this file was generated for autoconf 2.68. You have another version of autoconf. It may work, but is not guaranteed to. If you have problems, you may need to regenerate the build system entirely. To do so, use the procedure documented by the package, typically `autoreconf'.])]) # Copyright (C) 2002, 2003, 2005, 2006, 2007, 2008 Free Software Foundation, Inc. # # This file is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. # AM_AUTOMAKE_VERSION(VERSION) # ---------------------------- # Automake X.Y traces this macro to ensure aclocal.m4 has been # generated from the m4 files accompanying Automake X.Y. # (This private macro should not be called outside this file.) AC_DEFUN([AM_AUTOMAKE_VERSION], [am__api_version='1.11' dnl Some users find AM_AUTOMAKE_VERSION and mistake it for a way to dnl require some minimum version. Point them to the right macro. m4_if([$1], [1.11.1], [], [AC_FATAL([Do not call $0, use AM_INIT_AUTOMAKE([$1]).])])dnl ]) # _AM_AUTOCONF_VERSION(VERSION) # ----------------------------- # aclocal traces this macro to find the Autoconf version. # This is a private macro too. Using m4_define simplifies # the logic in aclocal, which can simply ignore this definition. m4_define([_AM_AUTOCONF_VERSION], []) # AM_SET_CURRENT_AUTOMAKE_VERSION # ------------------------------- # Call AM_AUTOMAKE_VERSION and AM_AUTOMAKE_VERSION so they can be traced. # This function is AC_REQUIREd by AM_INIT_AUTOMAKE. AC_DEFUN([AM_SET_CURRENT_AUTOMAKE_VERSION], [AM_AUTOMAKE_VERSION([1.11.1])dnl m4_ifndef([AC_AUTOCONF_VERSION], [m4_copy([m4_PACKAGE_VERSION], [AC_AUTOCONF_VERSION])])dnl _AM_AUTOCONF_VERSION(m4_defn([AC_AUTOCONF_VERSION]))]) # AM_AUX_DIR_EXPAND -*- Autoconf -*- # Copyright (C) 2001, 2003, 2005 Free Software Foundation, Inc. # # This file is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. # For projects using AC_CONFIG_AUX_DIR([foo]), Autoconf sets # $ac_aux_dir to `$srcdir/foo'. In other projects, it is set to # `$srcdir', `$srcdir/..', or `$srcdir/../..'. # # Of course, Automake must honor this variable whenever it calls a # tool from the auxiliary directory. The problem is that $srcdir (and # therefore $ac_aux_dir as well) can be either absolute or relative, # depending on how configure is run. This is pretty annoying, since # it makes $ac_aux_dir quite unusable in subdirectories: in the top # source directory, any form will work fine, but in subdirectories a # relative path needs to be adjusted first. # # $ac_aux_dir/missing # fails when called from a subdirectory if $ac_aux_dir is relative # $top_srcdir/$ac_aux_dir/missing # fails if $ac_aux_dir is absolute, # fails when called from a subdirectory in a VPATH build with # a relative $ac_aux_dir # # The reason of the latter failure is that $top_srcdir and $ac_aux_dir # are both prefixed by $srcdir. In an in-source build this is usually # harmless because $srcdir is `.', but things will broke when you # start a VPATH build or use an absolute $srcdir. # # So we could use something similar to $top_srcdir/$ac_aux_dir/missing, # iff we strip the leading $srcdir from $ac_aux_dir. That would be: # am_aux_dir='\$(top_srcdir)/'`expr "$ac_aux_dir" : "$srcdir//*\(.*\)"` # and then we would define $MISSING as # MISSING="\${SHELL} $am_aux_dir/missing" # This will work as long as MISSING is not called from configure, because # unfortunately $(top_srcdir) has no meaning in configure. # However there are other variables, like CC, which are often used in # configure, and could therefore not use this "fixed" $ac_aux_dir. # # Another solution, used here, is to always expand $ac_aux_dir to an # absolute PATH. The drawback is that using absolute paths prevent a # configured tree to be moved without reconfiguration. AC_DEFUN([AM_AUX_DIR_EXPAND], [dnl Rely on autoconf to set up CDPATH properly. AC_PREREQ([2.50])dnl # expand $ac_aux_dir to an absolute path am_aux_dir=`cd $ac_aux_dir && pwd` ]) # AM_CONDITIONAL -*- Autoconf -*- # Copyright (C) 1997, 2000, 2001, 2003, 2004, 2005, 2006, 2008 # Free Software Foundation, Inc. # # This file is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. # serial 9 # AM_CONDITIONAL(NAME, SHELL-CONDITION) # ------------------------------------- # Define a conditional. AC_DEFUN([AM_CONDITIONAL], [AC_PREREQ(2.52)dnl ifelse([$1], [TRUE], [AC_FATAL([$0: invalid condition: $1])], [$1], [FALSE], [AC_FATAL([$0: invalid condition: $1])])dnl AC_SUBST([$1_TRUE])dnl AC_SUBST([$1_FALSE])dnl _AM_SUBST_NOTMAKE([$1_TRUE])dnl _AM_SUBST_NOTMAKE([$1_FALSE])dnl m4_define([_AM_COND_VALUE_$1], [$2])dnl if $2; then $1_TRUE= $1_FALSE='#' else $1_TRUE='#' $1_FALSE= fi AC_CONFIG_COMMANDS_PRE( [if test -z "${$1_TRUE}" && test -z "${$1_FALSE}"; then AC_MSG_ERROR([[conditional "$1" was never defined. Usually this means the macro was only invoked conditionally.]]) fi])]) # Copyright (C) 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2009 # Free Software Foundation, Inc. # # This file is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. # serial 10 # There are a few dirty hacks below to avoid letting `AC_PROG_CC' be # written in clear, in which case automake, when reading aclocal.m4, # will think it sees a *use*, and therefore will trigger all it's # C support machinery. Also note that it means that autoscan, seeing # CC etc. in the Makefile, will ask for an AC_PROG_CC use... # _AM_DEPENDENCIES(NAME) # ---------------------- # See how the compiler implements dependency checking. # NAME is "CC", "CXX", "GCJ", or "OBJC". # We try a few techniques and use that to set a single cache variable. # # We don't AC_REQUIRE the corresponding AC_PROG_CC since the latter was # modified to invoke _AM_DEPENDENCIES(CC); we would have a circular # dependency, and given that the user is not expected to run this macro, # just rely on AC_PROG_CC. AC_DEFUN([_AM_DEPENDENCIES], [AC_REQUIRE([AM_SET_DEPDIR])dnl AC_REQUIRE([AM_OUTPUT_DEPENDENCY_COMMANDS])dnl AC_REQUIRE([AM_MAKE_INCLUDE])dnl AC_REQUIRE([AM_DEP_TRACK])dnl ifelse([$1], CC, [depcc="$CC" am_compiler_list=], [$1], CXX, [depcc="$CXX" am_compiler_list=], [$1], OBJC, [depcc="$OBJC" am_compiler_list='gcc3 gcc'], [$1], UPC, [depcc="$UPC" am_compiler_list=], [$1], GCJ, [depcc="$GCJ" am_compiler_list='gcc3 gcc'], [depcc="$$1" am_compiler_list=]) AC_CACHE_CHECK([dependency style of $depcc], [am_cv_$1_dependencies_compiler_type], [if test -z "$AMDEP_TRUE" && test -f "$am_depcomp"; then # We make a subdir and do the tests there. Otherwise we can end up # making bogus files that we don't know about and never remove. For # instance it was reported that on HP-UX the gcc test will end up # making a dummy file named `D' -- because `-MD' means `put the output # in D'. mkdir conftest.dir # Copy depcomp to subdir because otherwise we won't find it if we're # using a relative directory. cp "$am_depcomp" conftest.dir cd conftest.dir # We will build objects and dependencies in a subdirectory because # it helps to detect inapplicable dependency modes. For instance # both Tru64's cc and ICC support -MD to output dependencies as a # side effect of compilation, but ICC will put the dependencies in # the current directory while Tru64 will put them in the object # directory. mkdir sub am_cv_$1_dependencies_compiler_type=none if test "$am_compiler_list" = ""; then am_compiler_list=`sed -n ['s/^#*\([a-zA-Z0-9]*\))$/\1/p'] < ./depcomp` fi am__universal=false m4_case([$1], [CC], [case " $depcc " in #( *\ -arch\ *\ -arch\ *) am__universal=true ;; esac], [CXX], [case " $depcc " in #( *\ -arch\ *\ -arch\ *) am__universal=true ;; esac]) for depmode in $am_compiler_list; do # Setup a source with many dependencies, because some compilers # like to wrap large dependency lists on column 80 (with \), and # we should not choose a depcomp mode which is confused by this. # # We need to recreate these files for each test, as the compiler may # overwrite some of them when testing with obscure command lines. # This happens at least with the AIX C compiler. : > sub/conftest.c for i in 1 2 3 4 5 6; do echo '#include "conftst'$i'.h"' >> sub/conftest.c # Using `: > sub/conftst$i.h' creates only sub/conftst1.h with # Solaris 8's {/usr,}/bin/sh. touch sub/conftst$i.h done echo "${am__include} ${am__quote}sub/conftest.Po${am__quote}" > confmf # We check with `-c' and `-o' for the sake of the "dashmstdout" # mode. It turns out that the SunPro C++ compiler does not properly # handle `-M -o', and we need to detect this. Also, some Intel # versions had trouble with output in subdirs am__obj=sub/conftest.${OBJEXT-o} am__minus_obj="-o $am__obj" case $depmode in gcc) # This depmode causes a compiler race in universal mode. test "$am__universal" = false || continue ;; nosideeffect) # after this tag, mechanisms are not by side-effect, so they'll # only be used when explicitly requested if test "x$enable_dependency_tracking" = xyes; then continue else break fi ;; msvisualcpp | msvcmsys) # This compiler won't grok `-c -o', but also, the minuso test has # not run yet. These depmodes are late enough in the game, and # so weak that their functioning should not be impacted. am__obj=conftest.${OBJEXT-o} am__minus_obj= ;; none) break ;; esac if depmode=$depmode \ source=sub/conftest.c object=$am__obj \ depfile=sub/conftest.Po tmpdepfile=sub/conftest.TPo \ $SHELL ./depcomp $depcc -c $am__minus_obj sub/conftest.c \ >/dev/null 2>conftest.err && grep sub/conftst1.h sub/conftest.Po > /dev/null 2>&1 && grep sub/conftst6.h sub/conftest.Po > /dev/null 2>&1 && grep $am__obj sub/conftest.Po > /dev/null 2>&1 && ${MAKE-make} -s -f confmf > /dev/null 2>&1; then # icc doesn't choke on unknown options, it will just issue warnings # or remarks (even with -Werror). So we grep stderr for any message # that says an option was ignored or not supported. # When given -MP, icc 7.0 and 7.1 complain thusly: # icc: Command line warning: ignoring option '-M'; no argument required # The diagnosis changed in icc 8.0: # icc: Command line remark: option '-MP' not supported if (grep 'ignoring option' conftest.err || grep 'not supported' conftest.err) >/dev/null 2>&1; then :; else am_cv_$1_dependencies_compiler_type=$depmode break fi fi done cd .. rm -rf conftest.dir else am_cv_$1_dependencies_compiler_type=none fi ]) AC_SUBST([$1DEPMODE], [depmode=$am_cv_$1_dependencies_compiler_type]) AM_CONDITIONAL([am__fastdep$1], [ test "x$enable_dependency_tracking" != xno \ && test "$am_cv_$1_dependencies_compiler_type" = gcc3]) ]) # AM_SET_DEPDIR # ------------- # Choose a directory name for dependency files. # This macro is AC_REQUIREd in _AM_DEPENDENCIES AC_DEFUN([AM_SET_DEPDIR], [AC_REQUIRE([AM_SET_LEADING_DOT])dnl AC_SUBST([DEPDIR], ["${am__leading_dot}deps"])dnl ]) # AM_DEP_TRACK # ------------ AC_DEFUN([AM_DEP_TRACK], [AC_ARG_ENABLE(dependency-tracking, [ --disable-dependency-tracking speeds up one-time build --enable-dependency-tracking do not reject slow dependency extractors]) if test "x$enable_dependency_tracking" != xno; then am_depcomp="$ac_aux_dir/depcomp" AMDEPBACKSLASH='\' fi AM_CONDITIONAL([AMDEP], [test "x$enable_dependency_tracking" != xno]) AC_SUBST([AMDEPBACKSLASH])dnl _AM_SUBST_NOTMAKE([AMDEPBACKSLASH])dnl ]) # Generate code to set up dependency tracking. -*- Autoconf -*- # Copyright (C) 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2008 # Free Software Foundation, Inc. # # This file is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. #serial 5 # _AM_OUTPUT_DEPENDENCY_COMMANDS # ------------------------------ AC_DEFUN([_AM_OUTPUT_DEPENDENCY_COMMANDS], [{ # Autoconf 2.62 quotes --file arguments for eval, but not when files # are listed without --file. Let's play safe and only enable the eval # if we detect the quoting. case $CONFIG_FILES in *\'*) eval set x "$CONFIG_FILES" ;; *) set x $CONFIG_FILES ;; esac shift for mf do # Strip MF so we end up with the name of the file. mf=`echo "$mf" | sed -e 's/:.*$//'` # Check whether this is an Automake generated Makefile or not. # We used to match only the files named `Makefile.in', but # some people rename them; so instead we look at the file content. # Grep'ing the first line is not enough: some people post-process # each Makefile.in and add a new line on top of each file to say so. # Grep'ing the whole file is not good either: AIX grep has a line # limit of 2048, but all sed's we know have understand at least 4000. if sed -n 's,^#.*generated by automake.*,X,p' "$mf" | grep X >/dev/null 2>&1; then dirpart=`AS_DIRNAME("$mf")` else continue fi # Extract the definition of DEPDIR, am__include, and am__quote # from the Makefile without running `make'. DEPDIR=`sed -n 's/^DEPDIR = //p' < "$mf"` test -z "$DEPDIR" && continue am__include=`sed -n 's/^am__include = //p' < "$mf"` test -z "am__include" && continue am__quote=`sed -n 's/^am__quote = //p' < "$mf"` # When using ansi2knr, U may be empty or an underscore; expand it U=`sed -n 's/^U = //p' < "$mf"` # Find all dependency output files, they are included files with # $(DEPDIR) in their names. We invoke sed twice because it is the # simplest approach to changing $(DEPDIR) to its actual value in the # expansion. for file in `sed -n " s/^$am__include $am__quote\(.*(DEPDIR).*\)$am__quote"'$/\1/p' <"$mf" | \ sed -e 's/\$(DEPDIR)/'"$DEPDIR"'/g' -e 's/\$U/'"$U"'/g'`; do # Make sure the directory exists. test -f "$dirpart/$file" && continue fdir=`AS_DIRNAME(["$file"])` AS_MKDIR_P([$dirpart/$fdir]) # echo "creating $dirpart/$file" echo '# dummy' > "$dirpart/$file" done done } ])# _AM_OUTPUT_DEPENDENCY_COMMANDS # AM_OUTPUT_DEPENDENCY_COMMANDS # ----------------------------- # This macro should only be invoked once -- use via AC_REQUIRE. # # This code is only required when automatic dependency tracking # is enabled. FIXME. This creates each `.P' file that we will # need in order to bootstrap the dependency handling code. AC_DEFUN([AM_OUTPUT_DEPENDENCY_COMMANDS], [AC_CONFIG_COMMANDS([depfiles], [test x"$AMDEP_TRUE" != x"" || _AM_OUTPUT_DEPENDENCY_COMMANDS], [AMDEP_TRUE="$AMDEP_TRUE" ac_aux_dir="$ac_aux_dir"]) ]) # Do all the work for Automake. -*- Autoconf -*- # Copyright (C) 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004, # 2005, 2006, 2008, 2009 Free Software Foundation, Inc. # # This file is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. # serial 16 # This macro actually does too much. Some checks are only needed if # your package does certain things. But this isn't really a big deal. # AM_INIT_AUTOMAKE(PACKAGE, VERSION, [NO-DEFINE]) # AM_INIT_AUTOMAKE([OPTIONS]) # ----------------------------------------------- # The call with PACKAGE and VERSION arguments is the old style # call (pre autoconf-2.50), which is being phased out. PACKAGE # and VERSION should now be passed to AC_INIT and removed from # the call to AM_INIT_AUTOMAKE. # We support both call styles for the transition. After # the next Automake release, Autoconf can make the AC_INIT # arguments mandatory, and then we can depend on a new Autoconf # release and drop the old call support. AC_DEFUN([AM_INIT_AUTOMAKE], [AC_PREREQ([2.62])dnl dnl Autoconf wants to disallow AM_ names. We explicitly allow dnl the ones we care about. m4_pattern_allow([^AM_[A-Z]+FLAGS$])dnl AC_REQUIRE([AM_SET_CURRENT_AUTOMAKE_VERSION])dnl AC_REQUIRE([AC_PROG_INSTALL])dnl if test "`cd $srcdir && pwd`" != "`pwd`"; then # Use -I$(srcdir) only when $(srcdir) != ., so that make's output # is not polluted with repeated "-I." AC_SUBST([am__isrc], [' -I$(srcdir)'])_AM_SUBST_NOTMAKE([am__isrc])dnl # test to see if srcdir already configured if test -f $srcdir/config.status; then AC_MSG_ERROR([source directory already configured; run "make distclean" there first]) fi fi # test whether we have cygpath if test -z "$CYGPATH_W"; then if (cygpath --version) >/dev/null 2>/dev/null; then CYGPATH_W='cygpath -w' else CYGPATH_W=echo fi fi AC_SUBST([CYGPATH_W]) # Define the identity of the package. dnl Distinguish between old-style and new-style calls. m4_ifval([$2], [m4_ifval([$3], [_AM_SET_OPTION([no-define])])dnl AC_SUBST([PACKAGE], [$1])dnl AC_SUBST([VERSION], [$2])], [_AM_SET_OPTIONS([$1])dnl dnl Diagnose old-style AC_INIT with new-style AM_AUTOMAKE_INIT. m4_if(m4_ifdef([AC_PACKAGE_NAME], 1)m4_ifdef([AC_PACKAGE_VERSION], 1), 11,, [m4_fatal([AC_INIT should be called with package and version arguments])])dnl AC_SUBST([PACKAGE], ['AC_PACKAGE_TARNAME'])dnl AC_SUBST([VERSION], ['AC_PACKAGE_VERSION'])])dnl _AM_IF_OPTION([no-define],, [AC_DEFINE_UNQUOTED(PACKAGE, "$PACKAGE", [Name of package]) AC_DEFINE_UNQUOTED(VERSION, "$VERSION", [Version number of package])])dnl # Some tools Automake needs. AC_REQUIRE([AM_SANITY_CHECK])dnl AC_REQUIRE([AC_ARG_PROGRAM])dnl AM_MISSING_PROG(ACLOCAL, aclocal-${am__api_version}) AM_MISSING_PROG(AUTOCONF, autoconf) AM_MISSING_PROG(AUTOMAKE, automake-${am__api_version}) AM_MISSING_PROG(AUTOHEADER, autoheader) AM_MISSING_PROG(MAKEINFO, makeinfo) AC_REQUIRE([AM_PROG_INSTALL_SH])dnl AC_REQUIRE([AM_PROG_INSTALL_STRIP])dnl AC_REQUIRE([AM_PROG_MKDIR_P])dnl # We need awk for the "check" target. The system "awk" is bad on # some platforms. AC_REQUIRE([AC_PROG_AWK])dnl AC_REQUIRE([AC_PROG_MAKE_SET])dnl AC_REQUIRE([AM_SET_LEADING_DOT])dnl _AM_IF_OPTION([tar-ustar], [_AM_PROG_TAR([ustar])], [_AM_IF_OPTION([tar-pax], [_AM_PROG_TAR([pax])], [_AM_PROG_TAR([v7])])]) _AM_IF_OPTION([no-dependencies],, [AC_PROVIDE_IFELSE([AC_PROG_CC], [_AM_DEPENDENCIES(CC)], [define([AC_PROG_CC], defn([AC_PROG_CC])[_AM_DEPENDENCIES(CC)])])dnl AC_PROVIDE_IFELSE([AC_PROG_CXX], [_AM_DEPENDENCIES(CXX)], [define([AC_PROG_CXX], defn([AC_PROG_CXX])[_AM_DEPENDENCIES(CXX)])])dnl AC_PROVIDE_IFELSE([AC_PROG_OBJC], [_AM_DEPENDENCIES(OBJC)], [define([AC_PROG_OBJC], defn([AC_PROG_OBJC])[_AM_DEPENDENCIES(OBJC)])])dnl ]) _AM_IF_OPTION([silent-rules], [AC_REQUIRE([AM_SILENT_RULES])])dnl dnl The `parallel-tests' driver may need to know about EXEEXT, so add the dnl `am__EXEEXT' conditional if _AM_COMPILER_EXEEXT was seen. This macro dnl is hooked onto _AC_COMPILER_EXEEXT early, see below. AC_CONFIG_COMMANDS_PRE(dnl [m4_provide_if([_AM_COMPILER_EXEEXT], [AM_CONDITIONAL([am__EXEEXT], [test -n "$EXEEXT"])])])dnl ]) dnl Hook into `_AC_COMPILER_EXEEXT' early to learn its expansion. Do not dnl add the conditional right here, as _AC_COMPILER_EXEEXT may be further dnl mangled by Autoconf and run in a shell conditional statement. m4_define([_AC_COMPILER_EXEEXT], m4_defn([_AC_COMPILER_EXEEXT])[m4_provide([_AM_COMPILER_EXEEXT])]) # When config.status generates a header, we must update the stamp-h file. # This file resides in the same directory as the config header # that is generated. The stamp files are numbered to have different names. # Autoconf calls _AC_AM_CONFIG_HEADER_HOOK (when defined) in the # loop where config.status creates the headers, so we can generate # our stamp files there. AC_DEFUN([_AC_AM_CONFIG_HEADER_HOOK], [# Compute $1's index in $config_headers. _am_arg=$1 _am_stamp_count=1 for _am_header in $config_headers :; do case $_am_header in $_am_arg | $_am_arg:* ) break ;; * ) _am_stamp_count=`expr $_am_stamp_count + 1` ;; esac done echo "timestamp for $_am_arg" >`AS_DIRNAME(["$_am_arg"])`/stamp-h[]$_am_stamp_count]) # Copyright (C) 2001, 2003, 2005, 2008 Free Software Foundation, Inc. # # This file is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. # AM_PROG_INSTALL_SH # ------------------ # Define $install_sh. AC_DEFUN([AM_PROG_INSTALL_SH], [AC_REQUIRE([AM_AUX_DIR_EXPAND])dnl if test x"${install_sh}" != xset; then case $am_aux_dir in *\ * | *\ *) install_sh="\${SHELL} '$am_aux_dir/install-sh'" ;; *) install_sh="\${SHELL} $am_aux_dir/install-sh" esac fi AC_SUBST(install_sh)]) # Copyright (C) 2003, 2005 Free Software Foundation, Inc. # # This file is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. # serial 2 # Check whether the underlying file-system supports filenames # with a leading dot. For instance MS-DOS doesn't. AC_DEFUN([AM_SET_LEADING_DOT], [rm -rf .tst 2>/dev/null mkdir .tst 2>/dev/null if test -d .tst; then am__leading_dot=. else am__leading_dot=_ fi rmdir .tst 2>/dev/null AC_SUBST([am__leading_dot])]) # Add --enable-maintainer-mode option to configure. -*- Autoconf -*- # From Jim Meyering # Copyright (C) 1996, 1998, 2000, 2001, 2002, 2003, 2004, 2005, 2008 # Free Software Foundation, Inc. # # This file is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. # serial 5 # AM_MAINTAINER_MODE([DEFAULT-MODE]) # ---------------------------------- # Control maintainer-specific portions of Makefiles. # Default is to disable them, unless `enable' is passed literally. # For symmetry, `disable' may be passed as well. Anyway, the user # can override the default with the --enable/--disable switch. AC_DEFUN([AM_MAINTAINER_MODE], [m4_case(m4_default([$1], [disable]), [enable], [m4_define([am_maintainer_other], [disable])], [disable], [m4_define([am_maintainer_other], [enable])], [m4_define([am_maintainer_other], [enable]) m4_warn([syntax], [unexpected argument to AM@&t@_MAINTAINER_MODE: $1])]) AC_MSG_CHECKING([whether to am_maintainer_other maintainer-specific portions of Makefiles]) dnl maintainer-mode's default is 'disable' unless 'enable' is passed AC_ARG_ENABLE([maintainer-mode], [ --][am_maintainer_other][-maintainer-mode am_maintainer_other make rules and dependencies not useful (and sometimes confusing) to the casual installer], [USE_MAINTAINER_MODE=$enableval], [USE_MAINTAINER_MODE=]m4_if(am_maintainer_other, [enable], [no], [yes])) AC_MSG_RESULT([$USE_MAINTAINER_MODE]) AM_CONDITIONAL([MAINTAINER_MODE], [test $USE_MAINTAINER_MODE = yes]) MAINT=$MAINTAINER_MODE_TRUE AC_SUBST([MAINT])dnl ] ) AU_DEFUN([jm_MAINTAINER_MODE], [AM_MAINTAINER_MODE]) # Check to see how 'make' treats includes. -*- Autoconf -*- # Copyright (C) 2001, 2002, 2003, 2005, 2009 Free Software Foundation, Inc. # # This file is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. # serial 4 # AM_MAKE_INCLUDE() # ----------------- # Check to see how make treats includes. AC_DEFUN([AM_MAKE_INCLUDE], [am_make=${MAKE-make} cat > confinc << 'END' am__doit: @echo this is the am__doit target .PHONY: am__doit END # If we don't find an include directive, just comment out the code. AC_MSG_CHECKING([for style of include used by $am_make]) am__include="#" am__quote= _am_result=none # First try GNU make style include. echo "include confinc" > confmf # Ignore all kinds of additional output from `make'. case `$am_make -s -f confmf 2> /dev/null` in #( *the\ am__doit\ target*) am__include=include am__quote= _am_result=GNU ;; esac # Now try BSD make style include. if test "$am__include" = "#"; then echo '.include "confinc"' > confmf case `$am_make -s -f confmf 2> /dev/null` in #( *the\ am__doit\ target*) am__include=.include am__quote="\"" _am_result=BSD ;; esac fi AC_SUBST([am__include]) AC_SUBST([am__quote]) AC_MSG_RESULT([$_am_result]) rm -f confinc confmf ]) # Fake the existence of programs that GNU maintainers use. -*- Autoconf -*- # Copyright (C) 1997, 1999, 2000, 2001, 2003, 2004, 2005, 2008 # Free Software Foundation, Inc. # # This file is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. # serial 6 # AM_MISSING_PROG(NAME, PROGRAM) # ------------------------------ AC_DEFUN([AM_MISSING_PROG], [AC_REQUIRE([AM_MISSING_HAS_RUN]) $1=${$1-"${am_missing_run}$2"} AC_SUBST($1)]) # AM_MISSING_HAS_RUN # ------------------ # Define MISSING if not defined so far and test if it supports --run. # If it does, set am_missing_run to use it, otherwise, to nothing. AC_DEFUN([AM_MISSING_HAS_RUN], [AC_REQUIRE([AM_AUX_DIR_EXPAND])dnl AC_REQUIRE_AUX_FILE([missing])dnl if test x"${MISSING+set}" != xset; then case $am_aux_dir in *\ * | *\ *) MISSING="\${SHELL} \"$am_aux_dir/missing\"" ;; *) MISSING="\${SHELL} $am_aux_dir/missing" ;; esac fi # Use eval to expand $SHELL if eval "$MISSING --run true"; then am_missing_run="$MISSING --run " else am_missing_run= AC_MSG_WARN([`missing' script is too old or missing]) fi ]) # Copyright (C) 2003, 2004, 2005, 2006 Free Software Foundation, Inc. # # This file is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. # AM_PROG_MKDIR_P # --------------- # Check for `mkdir -p'. AC_DEFUN([AM_PROG_MKDIR_P], [AC_PREREQ([2.60])dnl AC_REQUIRE([AC_PROG_MKDIR_P])dnl dnl Automake 1.8 to 1.9.6 used to define mkdir_p. We now use MKDIR_P, dnl while keeping a definition of mkdir_p for backward compatibility. dnl @MKDIR_P@ is magic: AC_OUTPUT adjusts its value for each Makefile. dnl However we cannot define mkdir_p as $(MKDIR_P) for the sake of dnl Makefile.ins that do not define MKDIR_P, so we do our own dnl adjustment using top_builddir (which is defined more often than dnl MKDIR_P). AC_SUBST([mkdir_p], ["$MKDIR_P"])dnl case $mkdir_p in [[\\/$]]* | ?:[[\\/]]*) ;; */*) mkdir_p="\$(top_builddir)/$mkdir_p" ;; esac ]) # Helper functions for option handling. -*- Autoconf -*- # Copyright (C) 2001, 2002, 2003, 2005, 2008 Free Software Foundation, Inc. # # This file is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. # serial 4 # _AM_MANGLE_OPTION(NAME) # ----------------------- AC_DEFUN([_AM_MANGLE_OPTION], [[_AM_OPTION_]m4_bpatsubst($1, [[^a-zA-Z0-9_]], [_])]) # _AM_SET_OPTION(NAME) # ------------------------------ # Set option NAME. Presently that only means defining a flag for this option. AC_DEFUN([_AM_SET_OPTION], [m4_define(_AM_MANGLE_OPTION([$1]), 1)]) # _AM_SET_OPTIONS(OPTIONS) # ---------------------------------- # OPTIONS is a space-separated list of Automake options. AC_DEFUN([_AM_SET_OPTIONS], [m4_foreach_w([_AM_Option], [$1], [_AM_SET_OPTION(_AM_Option)])]) # _AM_IF_OPTION(OPTION, IF-SET, [IF-NOT-SET]) # ------------------------------------------- # Execute IF-SET if OPTION is set, IF-NOT-SET otherwise. AC_DEFUN([_AM_IF_OPTION], [m4_ifset(_AM_MANGLE_OPTION([$1]), [$2], [$3])]) # Check to make sure that the build environment is sane. -*- Autoconf -*- # Copyright (C) 1996, 1997, 2000, 2001, 2003, 2005, 2008 # Free Software Foundation, Inc. # # This file is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. # serial 5 # AM_SANITY_CHECK # --------------- AC_DEFUN([AM_SANITY_CHECK], [AC_MSG_CHECKING([whether build environment is sane]) # Just in case sleep 1 echo timestamp > conftest.file # Reject unsafe characters in $srcdir or the absolute working directory # name. Accept space and tab only in the latter. am_lf=' ' case `pwd` in *[[\\\"\#\$\&\'\`$am_lf]]*) AC_MSG_ERROR([unsafe absolute working directory name]);; esac case $srcdir in *[[\\\"\#\$\&\'\`$am_lf\ \ ]]*) AC_MSG_ERROR([unsafe srcdir value: `$srcdir']);; esac # Do `set' in a subshell so we don't clobber the current shell's # arguments. Must try -L first in case configure is actually a # symlink; some systems play weird games with the mod time of symlinks # (eg FreeBSD returns the mod time of the symlink's containing # directory). if ( set X `ls -Lt "$srcdir/configure" conftest.file 2> /dev/null` if test "$[*]" = "X"; then # -L didn't work. set X `ls -t "$srcdir/configure" conftest.file` fi rm -f conftest.file if test "$[*]" != "X $srcdir/configure conftest.file" \ && test "$[*]" != "X conftest.file $srcdir/configure"; then # If neither matched, then we have a broken ls. This can happen # if, for instance, CONFIG_SHELL is bash and it inherits a # broken ls alias from the environment. This has actually # happened. Such a system could not be considered "sane". AC_MSG_ERROR([ls -t appears to fail. Make sure there is not a broken alias in your environment]) fi test "$[2]" = conftest.file ) then # Ok. : else AC_MSG_ERROR([newly created file is older than distributed files! Check your system clock]) fi AC_MSG_RESULT(yes)]) # Copyright (C) 2009 Free Software Foundation, Inc. # # This file is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. # serial 1 # AM_SILENT_RULES([DEFAULT]) # -------------------------- # Enable less verbose build rules; with the default set to DEFAULT # (`yes' being less verbose, `no' or empty being verbose). AC_DEFUN([AM_SILENT_RULES], [AC_ARG_ENABLE([silent-rules], [ --enable-silent-rules less verbose build output (undo: `make V=1') --disable-silent-rules verbose build output (undo: `make V=0')]) case $enable_silent_rules in yes) AM_DEFAULT_VERBOSITY=0;; no) AM_DEFAULT_VERBOSITY=1;; *) AM_DEFAULT_VERBOSITY=m4_if([$1], [yes], [0], [1]);; esac AC_SUBST([AM_DEFAULT_VERBOSITY])dnl AM_BACKSLASH='\' AC_SUBST([AM_BACKSLASH])dnl _AM_SUBST_NOTMAKE([AM_BACKSLASH])dnl ]) # Copyright (C) 2001, 2003, 2005 Free Software Foundation, Inc. # # This file is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. # AM_PROG_INSTALL_STRIP # --------------------- # One issue with vendor `install' (even GNU) is that you can't # specify the program used to strip binaries. This is especially # annoying in cross-compiling environments, where the build's strip # is unlikely to handle the host's binaries. # Fortunately install-sh will honor a STRIPPROG variable, so we # always use install-sh in `make install-strip', and initialize # STRIPPROG with the value of the STRIP variable (set by the user). AC_DEFUN([AM_PROG_INSTALL_STRIP], [AC_REQUIRE([AM_PROG_INSTALL_SH])dnl # Installed binaries are usually stripped using `strip' when the user # run `make install-strip'. However `strip' might not be the right # tool to use in cross-compilation environments, therefore Automake # will honor the `STRIP' environment variable to overrule this program. dnl Don't test for $cross_compiling = yes, because it might be `maybe'. if test "$cross_compiling" != no; then AC_CHECK_TOOL([STRIP], [strip], :) fi INSTALL_STRIP_PROGRAM="\$(install_sh) -c -s" AC_SUBST([INSTALL_STRIP_PROGRAM])]) # Copyright (C) 2006, 2008 Free Software Foundation, Inc. # # This file is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. # serial 2 # _AM_SUBST_NOTMAKE(VARIABLE) # --------------------------- # Prevent Automake from outputting VARIABLE = @VARIABLE@ in Makefile.in. # This macro is traced by Automake. AC_DEFUN([_AM_SUBST_NOTMAKE]) # AM_SUBST_NOTMAKE(VARIABLE) # --------------------------- # Public sister of _AM_SUBST_NOTMAKE. AC_DEFUN([AM_SUBST_NOTMAKE], [_AM_SUBST_NOTMAKE($@)]) # Check how to create a tarball. -*- Autoconf -*- # Copyright (C) 2004, 2005 Free Software Foundation, Inc. # # This file is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. # serial 2 # _AM_PROG_TAR(FORMAT) # -------------------- # Check how to create a tarball in format FORMAT. # FORMAT should be one of `v7', `ustar', or `pax'. # # Substitute a variable $(am__tar) that is a command # writing to stdout a FORMAT-tarball containing the directory # $tardir. # tardir=directory && $(am__tar) > result.tar # # Substitute a variable $(am__untar) that extract such # a tarball read from stdin. # $(am__untar) < result.tar AC_DEFUN([_AM_PROG_TAR], [# Always define AMTAR for backward compatibility. AM_MISSING_PROG([AMTAR], [tar]) m4_if([$1], [v7], [am__tar='${AMTAR} chof - "$$tardir"'; am__untar='${AMTAR} xf -'], [m4_case([$1], [ustar],, [pax],, [m4_fatal([Unknown tar format])]) AC_MSG_CHECKING([how to create a $1 tar archive]) # Loop over all known methods to create a tar archive until one works. _am_tools='gnutar m4_if([$1], [ustar], [plaintar]) pax cpio none' _am_tools=${am_cv_prog_tar_$1-$_am_tools} # Do not fold the above two line into one, because Tru64 sh and # Solaris sh will not grok spaces in the rhs of `-'. for _am_tool in $_am_tools do case $_am_tool in gnutar) for _am_tar in tar gnutar gtar; do AM_RUN_LOG([$_am_tar --version]) && break done am__tar="$_am_tar --format=m4_if([$1], [pax], [posix], [$1]) -chf - "'"$$tardir"' am__tar_="$_am_tar --format=m4_if([$1], [pax], [posix], [$1]) -chf - "'"$tardir"' am__untar="$_am_tar -xf -" ;; plaintar) # Must skip GNU tar: if it does not support --format= it doesn't create # ustar tarball either. (tar --version) >/dev/null 2>&1 && continue am__tar='tar chf - "$$tardir"' am__tar_='tar chf - "$tardir"' am__untar='tar xf -' ;; pax) am__tar='pax -L -x $1 -w "$$tardir"' am__tar_='pax -L -x $1 -w "$tardir"' am__untar='pax -r' ;; cpio) am__tar='find "$$tardir" -print | cpio -o -H $1 -L' am__tar_='find "$tardir" -print | cpio -o -H $1 -L' am__untar='cpio -i -H $1 -d' ;; none) am__tar=false am__tar_=false am__untar=false ;; esac # If the value was cached, stop now. We just wanted to have am__tar # and am__untar set. test -n "${am_cv_prog_tar_$1}" && break # tar/untar a dummy directory, and stop if the command works rm -rf conftest.dir mkdir conftest.dir echo GrepMe > conftest.dir/file AM_RUN_LOG([tardir=conftest.dir && eval $am__tar_ >conftest.tar]) rm -rf conftest.dir if test -s conftest.tar; then AM_RUN_LOG([$am__untar /dev/null 2>&1 && break fi done rm -rf conftest.dir AC_CACHE_VAL([am_cv_prog_tar_$1], [am_cv_prog_tar_$1=$_am_tool]) AC_MSG_RESULT([$am_cv_prog_tar_$1])]) AC_SUBST([am__tar]) AC_SUBST([am__untar]) ]) # _AM_PROG_TAR dnl xorg-macros.m4. Generated from xorg-macros.m4.in xorgversion.m4 by configure. dnl dnl Copyright (c) 2005, 2006, Oracle and/or its affiliates. All rights reserved. dnl dnl Permission is hereby granted, free of charge, to any person obtaining a dnl copy of this software and associated documentation files (the "Software"), dnl to deal in the Software without restriction, including without limitation dnl the rights to use, copy, modify, merge, publish, distribute, sublicense, dnl and/or sell copies of the Software, and to permit persons to whom the dnl Software is furnished to do so, subject to the following conditions: dnl dnl The above copyright notice and this permission notice (including the next dnl paragraph) shall be included in all copies or substantial portions of the dnl Software. dnl dnl THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR dnl IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, dnl FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL dnl THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER dnl LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING dnl FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER dnl DEALINGS IN THE SOFTWARE. # XORG_MACROS_VERSION(required-version) # ------------------------------------- # Minimum version: 1.1.0 # # If you're using a macro added in Version 1.1 or newer, include this in # your configure.ac with the minimum required version, such as: # XORG_MACROS_VERSION(1.1) # # To ensure that this macro is defined, also add: # m4_ifndef([XORG_MACROS_VERSION], # [m4_fatal([must install xorg-macros 1.1 or later before running autoconf/autogen])]) # # # See the "minimum version" comment for each macro you use to see what # version you require. m4_defun([XORG_MACROS_VERSION],[ m4_define([vers_have], [1.11.0]) m4_define([maj_have], m4_substr(vers_have, 0, m4_index(vers_have, [.]))) m4_define([maj_needed], m4_substr([$1], 0, m4_index([$1], [.]))) m4_if(m4_cmp(maj_have, maj_needed), 0,, [m4_fatal([xorg-macros major version ]maj_needed[ is required but ]vers_have[ found])]) m4_if(m4_version_compare(vers_have, [$1]), -1, [m4_fatal([xorg-macros version $1 or higher is required but ]vers_have[ found])]) m4_undefine([vers_have]) m4_undefine([maj_have]) m4_undefine([maj_needed]) ]) # XORG_MACROS_VERSION # XORG_PROG_RAWCPP() # ------------------ # Minimum version: 1.0.0 # # Find cpp program and necessary flags for use in pre-processing text files # such as man pages and config files AC_DEFUN([XORG_PROG_RAWCPP],[ AC_REQUIRE([AC_PROG_CPP]) AC_PATH_PROGS(RAWCPP, [cpp], [${CPP}], [$PATH:/bin:/usr/bin:/usr/lib:/usr/libexec:/usr/ccs/lib:/usr/ccs/lbin:/lib]) # Check for flag to avoid builtin definitions - assumes unix is predefined, # which is not the best choice for supporting other OS'es, but covers most # of the ones we need for now. AC_MSG_CHECKING([if $RAWCPP requires -undef]) AC_LANG_CONFTEST([Does cpp redefine unix ?]) if test `${RAWCPP} < conftest.$ac_ext | grep -c 'unix'` -eq 1 ; then AC_MSG_RESULT([no]) else if test `${RAWCPP} -undef < conftest.$ac_ext | grep -c 'unix'` -eq 1 ; then RAWCPPFLAGS=-undef AC_MSG_RESULT([yes]) # under Cygwin unix is still defined even with -undef elif test `${RAWCPP} -undef -ansi < conftest.$ac_ext | grep -c 'unix'` -eq 1 ; then RAWCPPFLAGS="-undef -ansi" AC_MSG_RESULT([yes, with -ansi]) else AC_MSG_ERROR([${RAWCPP} defines unix with or without -undef. I don't know what to do.]) fi fi rm -f conftest.$ac_ext AC_MSG_CHECKING([if $RAWCPP requires -traditional]) AC_LANG_CONFTEST([Does cpp preserve "whitespace"?]) if test `${RAWCPP} < conftest.$ac_ext | grep -c 'preserve \"'` -eq 1 ; then AC_MSG_RESULT([no]) else if test `${RAWCPP} -traditional < conftest.$ac_ext | grep -c 'preserve \"'` -eq 1 ; then RAWCPPFLAGS="${RAWCPPFLAGS} -traditional" AC_MSG_RESULT([yes]) else AC_MSG_ERROR([${RAWCPP} does not preserve whitespace with or without -traditional. I don't know what to do.]) fi fi rm -f conftest.$ac_ext AC_SUBST(RAWCPPFLAGS) ]) # XORG_PROG_RAWCPP # XORG_MANPAGE_SECTIONS() # ----------------------- # Minimum version: 1.0.0 # # Determine which sections man pages go in for the different man page types # on this OS - replaces *ManSuffix settings in old Imake *.cf per-os files. # Not sure if there's any better way than just hardcoding by OS name. # Override default settings by setting environment variables # Added MAN_SUBSTS in version 1.8 # Added AC_PROG_SED in version 1.8 AC_DEFUN([XORG_MANPAGE_SECTIONS],[ AC_REQUIRE([AC_CANONICAL_HOST]) AC_REQUIRE([AC_PROG_SED]) if test x$APP_MAN_SUFFIX = x ; then APP_MAN_SUFFIX=1 fi if test x$APP_MAN_DIR = x ; then APP_MAN_DIR='$(mandir)/man$(APP_MAN_SUFFIX)' fi if test x$LIB_MAN_SUFFIX = x ; then LIB_MAN_SUFFIX=3 fi if test x$LIB_MAN_DIR = x ; then LIB_MAN_DIR='$(mandir)/man$(LIB_MAN_SUFFIX)' fi if test x$FILE_MAN_SUFFIX = x ; then case $host_os in solaris*) FILE_MAN_SUFFIX=4 ;; *) FILE_MAN_SUFFIX=5 ;; esac fi if test x$FILE_MAN_DIR = x ; then FILE_MAN_DIR='$(mandir)/man$(FILE_MAN_SUFFIX)' fi if test x$MISC_MAN_SUFFIX = x ; then case $host_os in solaris*) MISC_MAN_SUFFIX=5 ;; *) MISC_MAN_SUFFIX=7 ;; esac fi if test x$MISC_MAN_DIR = x ; then MISC_MAN_DIR='$(mandir)/man$(MISC_MAN_SUFFIX)' fi if test x$DRIVER_MAN_SUFFIX = x ; then case $host_os in solaris*) DRIVER_MAN_SUFFIX=7 ;; *) DRIVER_MAN_SUFFIX=4 ;; esac fi if test x$DRIVER_MAN_DIR = x ; then DRIVER_MAN_DIR='$(mandir)/man$(DRIVER_MAN_SUFFIX)' fi if test x$ADMIN_MAN_SUFFIX = x ; then case $host_os in solaris*) ADMIN_MAN_SUFFIX=1m ;; *) ADMIN_MAN_SUFFIX=8 ;; esac fi if test x$ADMIN_MAN_DIR = x ; then ADMIN_MAN_DIR='$(mandir)/man$(ADMIN_MAN_SUFFIX)' fi AC_SUBST([APP_MAN_SUFFIX]) AC_SUBST([LIB_MAN_SUFFIX]) AC_SUBST([FILE_MAN_SUFFIX]) AC_SUBST([MISC_MAN_SUFFIX]) AC_SUBST([DRIVER_MAN_SUFFIX]) AC_SUBST([ADMIN_MAN_SUFFIX]) AC_SUBST([APP_MAN_DIR]) AC_SUBST([LIB_MAN_DIR]) AC_SUBST([FILE_MAN_DIR]) AC_SUBST([MISC_MAN_DIR]) AC_SUBST([DRIVER_MAN_DIR]) AC_SUBST([ADMIN_MAN_DIR]) XORG_MAN_PAGE="X Version 11" AC_SUBST([XORG_MAN_PAGE]) MAN_SUBSTS="\ -e 's|__vendorversion__|\"\$(PACKAGE_STRING)\" \"\$(XORG_MAN_PAGE)\"|' \ -e 's|__xorgversion__|\"\$(PACKAGE_STRING)\" \"\$(XORG_MAN_PAGE)\"|' \ -e 's|__xservername__|Xorg|g' \ -e 's|__xconfigfile__|xorg.conf|g' \ -e 's|__projectroot__|\$(prefix)|g' \ -e 's|__apploaddir__|\$(appdefaultdir)|g' \ -e 's|__appmansuffix__|\$(APP_MAN_SUFFIX)|g' \ -e 's|__drivermansuffix__|\$(DRIVER_MAN_SUFFIX)|g' \ -e 's|__adminmansuffix__|\$(ADMIN_MAN_SUFFIX)|g' \ -e 's|__libmansuffix__|\$(LIB_MAN_SUFFIX)|g' \ -e 's|__miscmansuffix__|\$(MISC_MAN_SUFFIX)|g' \ -e 's|__filemansuffix__|\$(FILE_MAN_SUFFIX)|g'" AC_SUBST([MAN_SUBSTS]) ]) # XORG_MANPAGE_SECTIONS # XORG_CHECK_SGML_DOCTOOLS([MIN-VERSION]) # ------------------------ # Minimum version: 1.7.0 # # Defines the variable XORG_SGML_PATH containing the location of X11/defs.ent # provided by xorg-sgml-doctools, if installed. AC_DEFUN([XORG_CHECK_SGML_DOCTOOLS],[ AC_MSG_CHECKING([for X.Org SGML entities m4_ifval([$1],[>= $1])]) XORG_SGML_PATH= PKG_CHECK_EXISTS([xorg-sgml-doctools m4_ifval([$1],[>= $1])], [XORG_SGML_PATH=`$PKG_CONFIG --variable=sgmlrootdir xorg-sgml-doctools`], [m4_ifval([$1],[:], [if test x"$cross_compiling" != x"yes" ; then AC_CHECK_FILE([$prefix/share/sgml/X11/defs.ent], [XORG_SGML_PATH=$prefix/share/sgml]) fi]) ]) # Define variables STYLESHEET_SRCDIR and XSL_STYLESHEET containing # the path and the name of the doc stylesheet if test "x$XORG_SGML_PATH" != "x" ; then AC_MSG_RESULT([$XORG_SGML_PATH]) STYLESHEET_SRCDIR=$XORG_SGML_PATH/X11 XSL_STYLESHEET=$STYLESHEET_SRCDIR/xorg.xsl else AC_MSG_RESULT([no]) fi AC_SUBST(XORG_SGML_PATH) AC_SUBST(STYLESHEET_SRCDIR) AC_SUBST(XSL_STYLESHEET) AM_CONDITIONAL([HAVE_STYLESHEETS], [test "x$XSL_STYLESHEET" != "x"]) ]) # XORG_CHECK_SGML_DOCTOOLS # XORG_CHECK_LINUXDOC # ------------------- # Minimum version: 1.0.0 # # Defines the variable MAKE_TEXT if the necessary tools and # files are found. $(MAKE_TEXT) blah.sgml will then produce blah.txt. # Whether or not the necessary tools and files are found can be checked # with the AM_CONDITIONAL "BUILD_LINUXDOC" AC_DEFUN([XORG_CHECK_LINUXDOC],[ AC_REQUIRE([XORG_CHECK_SGML_DOCTOOLS]) AC_REQUIRE([XORG_WITH_PS2PDF]) AC_PATH_PROG(LINUXDOC, linuxdoc) AC_MSG_CHECKING([whether to build documentation]) if test x$XORG_SGML_PATH != x && test x$LINUXDOC != x ; then BUILDDOC=yes else BUILDDOC=no fi AM_CONDITIONAL(BUILD_LINUXDOC, [test x$BUILDDOC = xyes]) AC_MSG_RESULT([$BUILDDOC]) AC_MSG_CHECKING([whether to build pdf documentation]) if test x$have_ps2pdf != xno && test x$BUILD_PDFDOC != xno; then BUILDPDFDOC=yes else BUILDPDFDOC=no fi AM_CONDITIONAL(BUILD_PDFDOC, [test x$BUILDPDFDOC = xyes]) AC_MSG_RESULT([$BUILDPDFDOC]) MAKE_TEXT="SGML_SEARCH_PATH=$XORG_SGML_PATH GROFF_NO_SGR=y $LINUXDOC -B txt -f" MAKE_PS="SGML_SEARCH_PATH=$XORG_SGML_PATH $LINUXDOC -B latex --papersize=letter --output=ps" MAKE_PDF="$PS2PDF" MAKE_HTML="SGML_SEARCH_PATH=$XORG_SGML_PATH $LINUXDOC -B html --split=0" AC_SUBST(MAKE_TEXT) AC_SUBST(MAKE_PS) AC_SUBST(MAKE_PDF) AC_SUBST(MAKE_HTML) ]) # XORG_CHECK_LINUXDOC # XORG_CHECK_DOCBOOK # ------------------- # Minimum version: 1.0.0 # # Checks for the ability to build output formats from SGML DocBook source. # For XXX in {TXT, PDF, PS, HTML}, the AM_CONDITIONAL "BUILD_XXXDOC" # indicates whether the necessary tools and files are found and, if set, # $(MAKE_XXX) blah.sgml will produce blah.xxx. AC_DEFUN([XORG_CHECK_DOCBOOK],[ AC_REQUIRE([XORG_CHECK_SGML_DOCTOOLS]) BUILDTXTDOC=no BUILDPDFDOC=no BUILDPSDOC=no BUILDHTMLDOC=no AC_PATH_PROG(DOCBOOKPS, docbook2ps) AC_PATH_PROG(DOCBOOKPDF, docbook2pdf) AC_PATH_PROG(DOCBOOKHTML, docbook2html) AC_PATH_PROG(DOCBOOKTXT, docbook2txt) AC_MSG_CHECKING([whether to build text documentation]) if test x$XORG_SGML_PATH != x && test x$DOCBOOKTXT != x && test x$BUILD_TXTDOC != xno; then BUILDTXTDOC=yes fi AM_CONDITIONAL(BUILD_TXTDOC, [test x$BUILDTXTDOC = xyes]) AC_MSG_RESULT([$BUILDTXTDOC]) AC_MSG_CHECKING([whether to build PDF documentation]) if test x$XORG_SGML_PATH != x && test x$DOCBOOKPDF != x && test x$BUILD_PDFDOC != xno; then BUILDPDFDOC=yes fi AM_CONDITIONAL(BUILD_PDFDOC, [test x$BUILDPDFDOC = xyes]) AC_MSG_RESULT([$BUILDPDFDOC]) AC_MSG_CHECKING([whether to build PostScript documentation]) if test x$XORG_SGML_PATH != x && test x$DOCBOOKPS != x && test x$BUILD_PSDOC != xno; then BUILDPSDOC=yes fi AM_CONDITIONAL(BUILD_PSDOC, [test x$BUILDPSDOC = xyes]) AC_MSG_RESULT([$BUILDPSDOC]) AC_MSG_CHECKING([whether to build HTML documentation]) if test x$XORG_SGML_PATH != x && test x$DOCBOOKHTML != x && test x$BUILD_HTMLDOC != xno; then BUILDHTMLDOC=yes fi AM_CONDITIONAL(BUILD_HTMLDOC, [test x$BUILDHTMLDOC = xyes]) AC_MSG_RESULT([$BUILDHTMLDOC]) MAKE_TEXT="SGML_SEARCH_PATH=$XORG_SGML_PATH $DOCBOOKTXT" MAKE_PS="SGML_SEARCH_PATH=$XORG_SGML_PATH $DOCBOOKPS" MAKE_PDF="SGML_SEARCH_PATH=$XORG_SGML_PATH $DOCBOOKPDF" MAKE_HTML="SGML_SEARCH_PATH=$XORG_SGML_PATH $DOCBOOKHTML" AC_SUBST(MAKE_TEXT) AC_SUBST(MAKE_PS) AC_SUBST(MAKE_PDF) AC_SUBST(MAKE_HTML) ]) # XORG_CHECK_DOCBOOK # XORG_WITH_XMLTO([MIN-VERSION], [DEFAULT]) # ---------------- # Minimum version: 1.5.0 # Minimum version for optional DEFAULT argument: 1.11.0 # # Documentation tools are not always available on all platforms and sometimes # not at the appropriate level. This macro enables a module to test for the # presence of the tool and obtain it's path in separate variables. Coupled with # the --with-xmlto option, it allows maximum flexibilty in making decisions # as whether or not to use the xmlto package. When DEFAULT is not specified, # --with-xmlto assumes 'auto'. # # Interface to module: # HAVE_XMLTO: used in makefiles to conditionally generate documentation # XMLTO: returns the path of the xmlto program found # returns the path set by the user in the environment # --with-xmlto: 'yes' user instructs the module to use xmlto # 'no' user instructs the module not to use xmlto # # Added in version 1.10.0 # HAVE_XMLTO_TEXT: used in makefiles to conditionally generate text documentation # xmlto for text output requires either lynx, links, or w3m browsers # # If the user sets the value of XMLTO, AC_PATH_PROG skips testing the path. # AC_DEFUN([XORG_WITH_XMLTO],[ AC_ARG_VAR([XMLTO], [Path to xmlto command]) m4_define([_defopt], m4_default([$2], [auto])) AC_ARG_WITH(xmlto, AS_HELP_STRING([--with-xmlto], [Use xmlto to regenerate documentation (default: ]_defopt[)]), [use_xmlto=$withval], [use_xmlto=]_defopt) m4_undefine([_defopt]) if test "x$use_xmlto" = x"auto"; then AC_PATH_PROG([XMLTO], [xmlto]) if test "x$XMLTO" = "x"; then AC_MSG_WARN([xmlto not found - documentation targets will be skipped]) have_xmlto=no else have_xmlto=yes fi elif test "x$use_xmlto" = x"yes" ; then AC_PATH_PROG([XMLTO], [xmlto]) if test "x$XMLTO" = "x"; then AC_MSG_ERROR([--with-xmlto=yes specified but xmlto not found in PATH]) fi have_xmlto=yes elif test "x$use_xmlto" = x"no" ; then if test "x$XMLTO" != "x"; then AC_MSG_WARN([ignoring XMLTO environment variable since --with-xmlto=no was specified]) fi have_xmlto=no else AC_MSG_ERROR([--with-xmlto expects 'yes' or 'no']) fi # Test for a minimum version of xmlto, if provided. m4_ifval([$1], [if test "$have_xmlto" = yes; then # scrape the xmlto version AC_MSG_CHECKING([the xmlto version]) xmlto_version=`$XMLTO --version 2>/dev/null | cut -d' ' -f3` AC_MSG_RESULT([$xmlto_version]) AS_VERSION_COMPARE([$xmlto_version], [$1], [if test "x$use_xmlto" = xauto; then AC_MSG_WARN([xmlto version $xmlto_version found, but $1 needed]) have_xmlto=no else AC_MSG_ERROR([xmlto version $xmlto_version found, but $1 needed]) fi]) fi]) # Test for the ability of xmlto to generate a text target have_xmlto_text=no cat > conftest.xml << "EOF" EOF AS_IF([test "$have_xmlto" = yes], [AS_IF([$XMLTO --skip-validation txt conftest.xml >/dev/null 2>&1], [have_xmlto_text=yes], [AC_MSG_WARN([xmlto cannot generate text format, this format skipped])])]) rm -f conftest.xml AM_CONDITIONAL([HAVE_XMLTO_TEXT], [test $have_xmlto_text = yes]) AM_CONDITIONAL([HAVE_XMLTO], [test "$have_xmlto" = yes]) ]) # XORG_WITH_XMLTO # XORG_WITH_ASCIIDOC([MIN-VERSION], [DEFAULT]) # ---------------- # Minimum version: 1.5.0 # Minimum version for optional DEFAULT argument: 1.11.0 # # Documentation tools are not always available on all platforms and sometimes # not at the appropriate level. This macro enables a module to test for the # presence of the tool and obtain it's path in separate variables. Coupled with # the --with-asciidoc option, it allows maximum flexibilty in making decisions # as whether or not to use the asciidoc package. When DEFAULT is not specified, # --with-asciidoc assumes 'auto'. # # Interface to module: # HAVE_ASCIIDOC: used in makefiles to conditionally generate documentation # ASCIIDOC: returns the path of the asciidoc program found # returns the path set by the user in the environment # --with-asciidoc: 'yes' user instructs the module to use asciidoc # 'no' user instructs the module not to use asciidoc # # If the user sets the value of ASCIIDOC, AC_PATH_PROG skips testing the path. # AC_DEFUN([XORG_WITH_ASCIIDOC],[ AC_ARG_VAR([ASCIIDOC], [Path to asciidoc command]) m4_define([_defopt], m4_default([$2], [auto])) AC_ARG_WITH(asciidoc, AS_HELP_STRING([--with-asciidoc], [Use asciidoc to regenerate documentation (default: ]_defopt[)]), [use_asciidoc=$withval], [use_asciidoc=]_defopt) m4_undefine([_defopt]) if test "x$use_asciidoc" = x"auto"; then AC_PATH_PROG([ASCIIDOC], [asciidoc]) if test "x$ASCIIDOC" = "x"; then AC_MSG_WARN([asciidoc not found - documentation targets will be skipped]) have_asciidoc=no else have_asciidoc=yes fi elif test "x$use_asciidoc" = x"yes" ; then AC_PATH_PROG([ASCIIDOC], [asciidoc]) if test "x$ASCIIDOC" = "x"; then AC_MSG_ERROR([--with-asciidoc=yes specified but asciidoc not found in PATH]) fi have_asciidoc=yes elif test "x$use_asciidoc" = x"no" ; then if test "x$ASCIIDOC" != "x"; then AC_MSG_WARN([ignoring ASCIIDOC environment variable since --with-asciidoc=no was specified]) fi have_asciidoc=no else AC_MSG_ERROR([--with-asciidoc expects 'yes' or 'no']) fi m4_ifval([$1], [if test "$have_asciidoc" = yes; then # scrape the asciidoc version AC_MSG_CHECKING([the asciidoc version]) asciidoc_version=`$ASCIIDOC --version 2>/dev/null | cut -d' ' -f2` AC_MSG_RESULT([$asciidoc_version]) AS_VERSION_COMPARE([$asciidoc_version], [$1], [if test "x$use_asciidoc" = xauto; then AC_MSG_WARN([asciidoc version $asciidoc_version found, but $1 needed]) have_asciidoc=no else AC_MSG_ERROR([asciidoc version $asciidoc_version found, but $1 needed]) fi]) fi]) AM_CONDITIONAL([HAVE_ASCIIDOC], [test "$have_asciidoc" = yes]) ]) # XORG_WITH_ASCIIDOC # XORG_WITH_DOXYGEN([MIN-VERSION], [DEFAULT]) # -------------------------------- # Minimum version: 1.5.0 # Minimum version for optional DEFAULT argument: 1.11.0 # # Documentation tools are not always available on all platforms and sometimes # not at the appropriate level. This macro enables a module to test for the # presence of the tool and obtain it's path in separate variables. Coupled with # the --with-doxygen option, it allows maximum flexibilty in making decisions # as whether or not to use the doxygen package. When DEFAULT is not specified, # --with-doxygen assumes 'auto'. # # Interface to module: # HAVE_DOXYGEN: used in makefiles to conditionally generate documentation # DOXYGEN: returns the path of the doxygen program found # returns the path set by the user in the environment # --with-doxygen: 'yes' user instructs the module to use doxygen # 'no' user instructs the module not to use doxygen # # If the user sets the value of DOXYGEN, AC_PATH_PROG skips testing the path. # AC_DEFUN([XORG_WITH_DOXYGEN],[ AC_ARG_VAR([DOXYGEN], [Path to doxygen command]) m4_define([_defopt], m4_default([$2], [auto])) AC_ARG_WITH(doxygen, AS_HELP_STRING([--with-doxygen], [Use doxygen to regenerate documentation (default: ]_defopt[)]), [use_doxygen=$withval], [use_doxygen=]_defopt) m4_undefine([_defopt]) if test "x$use_doxygen" = x"auto"; then AC_PATH_PROG([DOXYGEN], [doxygen]) if test "x$DOXYGEN" = "x"; then AC_MSG_WARN([doxygen not found - documentation targets will be skipped]) have_doxygen=no else have_doxygen=yes fi elif test "x$use_doxygen" = x"yes" ; then AC_PATH_PROG([DOXYGEN], [doxygen]) if test "x$DOXYGEN" = "x"; then AC_MSG_ERROR([--with-doxygen=yes specified but doxygen not found in PATH]) fi have_doxygen=yes elif test "x$use_doxygen" = x"no" ; then if test "x$DOXYGEN" != "x"; then AC_MSG_WARN([ignoring DOXYGEN environment variable since --with-doxygen=no was specified]) fi have_doxygen=no else AC_MSG_ERROR([--with-doxygen expects 'yes' or 'no']) fi m4_ifval([$1], [if test "$have_doxygen" = yes; then # scrape the doxygen version AC_MSG_CHECKING([the doxygen version]) doxygen_version=`$DOXYGEN --version 2>/dev/null` AC_MSG_RESULT([$doxygen_version]) AS_VERSION_COMPARE([$doxygen_version], [$1], [if test "x$use_doxygen" = xauto; then AC_MSG_WARN([doxygen version $doxygen_version found, but $1 needed]) have_doxygen=no else AC_MSG_ERROR([doxygen version $doxygen_version found, but $1 needed]) fi]) fi]) AM_CONDITIONAL([HAVE_DOXYGEN], [test "$have_doxygen" = yes]) ]) # XORG_WITH_DOXYGEN # XORG_WITH_GROFF([DEFAULT]) # ---------------- # Minimum version: 1.6.0 # Minimum version for optional DEFAULT argument: 1.11.0 # # Documentation tools are not always available on all platforms and sometimes # not at the appropriate level. This macro enables a module to test for the # presence of the tool and obtain it's path in separate variables. Coupled with # the --with-groff option, it allows maximum flexibilty in making decisions # as whether or not to use the groff package. When DEFAULT is not specified, # --with-groff assumes 'auto'. # # Interface to module: # HAVE_GROFF: used in makefiles to conditionally generate documentation # HAVE_GROFF_MM: the memorandum macros (-mm) package # HAVE_GROFF_MS: the -ms macros package # GROFF: returns the path of the groff program found # returns the path set by the user in the environment # --with-groff: 'yes' user instructs the module to use groff # 'no' user instructs the module not to use groff # # Added in version 1.9.0: # HAVE_GROFF_HTML: groff has dependencies to output HTML format: # pnmcut pnmcrop pnmtopng pnmtops from the netpbm package. # psselect from the psutils package. # the ghostcript package. Refer to the grohtml man pages # # If the user sets the value of GROFF, AC_PATH_PROG skips testing the path. # # OS and distros often splits groff in a basic and full package, the former # having the groff program and the later having devices, fonts and macros # Checking for the groff executable is not enough. # # If macros are missing, we cannot assume that groff is useless, so we don't # unset HAVE_GROFF or GROFF env variables. # HAVE_GROFF_?? can never be true while HAVE_GROFF is false. # AC_DEFUN([XORG_WITH_GROFF],[ AC_ARG_VAR([GROFF], [Path to groff command]) m4_define([_defopt], m4_default([$1], [auto])) AC_ARG_WITH(groff, AS_HELP_STRING([--with-groff], [Use groff to regenerate documentation (default: ]_defopt[)]), [use_groff=$withval], [use_groff=]_defopt) m4_undefine([_defopt]) if test "x$use_groff" = x"auto"; then AC_PATH_PROG([GROFF], [groff]) if test "x$GROFF" = "x"; then AC_MSG_WARN([groff not found - documentation targets will be skipped]) have_groff=no else have_groff=yes fi elif test "x$use_groff" = x"yes" ; then AC_PATH_PROG([GROFF], [groff]) if test "x$GROFF" = "x"; then AC_MSG_ERROR([--with-groff=yes specified but groff not found in PATH]) fi have_groff=yes elif test "x$use_groff" = x"no" ; then if test "x$GROFF" != "x"; then AC_MSG_WARN([ignoring GROFF environment variable since --with-groff=no was specified]) fi have_groff=no else AC_MSG_ERROR([--with-groff expects 'yes' or 'no']) fi # We have groff, test for the presence of the macro packages if test "x$have_groff" = x"yes"; then AC_MSG_CHECKING([for ${GROFF} -ms macros]) if ${GROFF} -ms -I. /dev/null >/dev/null 2>&1 ; then groff_ms_works=yes else groff_ms_works=no fi AC_MSG_RESULT([$groff_ms_works]) AC_MSG_CHECKING([for ${GROFF} -mm macros]) if ${GROFF} -mm -I. /dev/null >/dev/null 2>&1 ; then groff_mm_works=yes else groff_mm_works=no fi AC_MSG_RESULT([$groff_mm_works]) fi # We have groff, test for HTML dependencies, one command per package if test "x$have_groff" = x"yes"; then AC_PATH_PROGS(GS_PATH, [gs gswin32c]) AC_PATH_PROG(PNMTOPNG_PATH, [pnmtopng]) AC_PATH_PROG(PSSELECT_PATH, [psselect]) if test "x$GS_PATH" != "x" -a "x$PNMTOPNG_PATH" != "x" -a "x$PSSELECT_PATH" != "x"; then have_groff_html=yes else have_groff_html=no AC_MSG_WARN([grohtml dependencies not found - HTML Documentation skipped. Refer to grohtml man pages]) fi fi # Set Automake conditionals for Makefiles AM_CONDITIONAL([HAVE_GROFF], [test "$have_groff" = yes]) AM_CONDITIONAL([HAVE_GROFF_MS], [test "$groff_ms_works" = yes]) AM_CONDITIONAL([HAVE_GROFF_MM], [test "$groff_mm_works" = yes]) AM_CONDITIONAL([HAVE_GROFF_HTML], [test "$have_groff_html" = yes]) ]) # XORG_WITH_GROFF # XORG_WITH_FOP([DEFAULT]) # ---------------- # Minimum version: 1.6.0 # Minimum version for optional DEFAULT argument: 1.11.0 # # Documentation tools are not always available on all platforms and sometimes # not at the appropriate level. This macro enables a module to test for the # presence of the tool and obtain it's path in separate variables. Coupled with # the --with-fop option, it allows maximum flexibilty in making decisions # as whether or not to use the fop package. When DEFAULT is not specified, # --with-fop assumes 'auto'. # # Interface to module: # HAVE_FOP: used in makefiles to conditionally generate documentation # FOP: returns the path of the fop program found # returns the path set by the user in the environment # --with-fop: 'yes' user instructs the module to use fop # 'no' user instructs the module not to use fop # # If the user sets the value of FOP, AC_PATH_PROG skips testing the path. # AC_DEFUN([XORG_WITH_FOP],[ AC_ARG_VAR([FOP], [Path to fop command]) m4_define([_defopt], m4_default([$1], [auto])) AC_ARG_WITH(fop, AS_HELP_STRING([--with-fop], [Use fop to regenerate documentation (default: ]_defopt[)]), [use_fop=$withval], [use_fop=]_defopt) m4_undefine([_defopt]) if test "x$use_fop" = x"auto"; then AC_PATH_PROG([FOP], [fop]) if test "x$FOP" = "x"; then AC_MSG_WARN([fop not found - documentation targets will be skipped]) have_fop=no else have_fop=yes fi elif test "x$use_fop" = x"yes" ; then AC_PATH_PROG([FOP], [fop]) if test "x$FOP" = "x"; then AC_MSG_ERROR([--with-fop=yes specified but fop not found in PATH]) fi have_fop=yes elif test "x$use_fop" = x"no" ; then if test "x$FOP" != "x"; then AC_MSG_WARN([ignoring FOP environment variable since --with-fop=no was specified]) fi have_fop=no else AC_MSG_ERROR([--with-fop expects 'yes' or 'no']) fi AM_CONDITIONAL([HAVE_FOP], [test "$have_fop" = yes]) ]) # XORG_WITH_FOP # XORG_WITH_PS2PDF([DEFAULT]) # ---------------- # Minimum version: 1.6.0 # Minimum version for optional DEFAULT argument: 1.11.0 # # Documentation tools are not always available on all platforms and sometimes # not at the appropriate level. This macro enables a module to test for the # presence of the tool and obtain it's path in separate variables. Coupled with # the --with-ps2pdf option, it allows maximum flexibilty in making decisions # as whether or not to use the ps2pdf package. When DEFAULT is not specified, # --with-ps2pdf assumes 'auto'. # # Interface to module: # HAVE_PS2PDF: used in makefiles to conditionally generate documentation # PS2PDF: returns the path of the ps2pdf program found # returns the path set by the user in the environment # --with-ps2pdf: 'yes' user instructs the module to use ps2pdf # 'no' user instructs the module not to use ps2pdf # # If the user sets the value of PS2PDF, AC_PATH_PROG skips testing the path. # AC_DEFUN([XORG_WITH_PS2PDF],[ AC_ARG_VAR([PS2PDF], [Path to ps2pdf command]) m4_define([_defopt], m4_default([$1], [auto])) AC_ARG_WITH(ps2pdf, AS_HELP_STRING([--with-ps2pdf], [Use ps2pdf to regenerate documentation (default: ]_defopt[)]), [use_ps2pdf=$withval], [use_ps2pdf=]_defopt) m4_undefine([_defopt]) if test "x$use_ps2pdf" = x"auto"; then AC_PATH_PROG([PS2PDF], [ps2pdf]) if test "x$PS2PDF" = "x"; then AC_MSG_WARN([ps2pdf not found - documentation targets will be skipped]) have_ps2pdf=no else have_ps2pdf=yes fi elif test "x$use_ps2pdf" = x"yes" ; then AC_PATH_PROG([PS2PDF], [ps2pdf]) if test "x$PS2PDF" = "x"; then AC_MSG_ERROR([--with-ps2pdf=yes specified but ps2pdf not found in PATH]) fi have_ps2pdf=yes elif test "x$use_ps2pdf" = x"no" ; then if test "x$PS2PDF" != "x"; then AC_MSG_WARN([ignoring PS2PDF environment variable since --with-ps2pdf=no was specified]) fi have_ps2pdf=no else AC_MSG_ERROR([--with-ps2pdf expects 'yes' or 'no']) fi AM_CONDITIONAL([HAVE_PS2PDF], [test "$have_ps2pdf" = yes]) ]) # XORG_WITH_PS2PDF # XORG_ENABLE_DOCS (enable_docs=yes) # ---------------- # Minimum version: 1.6.0 # # Documentation tools are not always available on all platforms and sometimes # not at the appropriate level. This macro enables a builder to skip all # documentation targets except traditional man pages. # Combined with the specific tool checking macros XORG_WITH_*, it provides # maximum flexibilty in controlling documentation building. # Refer to: # XORG_WITH_XMLTO --with-xmlto # XORG_WITH_ASCIIDOC --with-asciidoc # XORG_WITH_DOXYGEN --with-doxygen # XORG_WITH_FOP --with-fop # XORG_WITH_GROFF --with-groff # XORG_WITH_PS2PDF --with-ps2pdf # # Interface to module: # ENABLE_DOCS: used in makefiles to conditionally generate documentation # --enable-docs: 'yes' user instructs the module to generate docs # 'no' user instructs the module not to generate docs # parm1: specify the default value, yes or no. # AC_DEFUN([XORG_ENABLE_DOCS],[ m4_define([docs_default], m4_default([$1], [yes])) AC_ARG_ENABLE(docs, AS_HELP_STRING([--enable-docs], [Enable building the documentation (default: ]docs_default[)]), [build_docs=$enableval], [build_docs=]docs_default) m4_undefine([docs_default]) AM_CONDITIONAL(ENABLE_DOCS, [test x$build_docs = xyes]) AC_MSG_CHECKING([whether to build documentation]) AC_MSG_RESULT([$build_docs]) ]) # XORG_ENABLE_DOCS # XORG_ENABLE_DEVEL_DOCS (enable_devel_docs=yes) # ---------------- # Minimum version: 1.6.0 # # This macro enables a builder to skip all developer documentation. # Combined with the specific tool checking macros XORG_WITH_*, it provides # maximum flexibilty in controlling documentation building. # Refer to: # XORG_WITH_XMLTO --with-xmlto # XORG_WITH_ASCIIDOC --with-asciidoc # XORG_WITH_DOXYGEN --with-doxygen # XORG_WITH_FOP --with-fop # XORG_WITH_GROFF --with-groff # XORG_WITH_PS2PDF --with-ps2pdf # # Interface to module: # ENABLE_DEVEL_DOCS: used in makefiles to conditionally generate developer docs # --enable-devel-docs: 'yes' user instructs the module to generate developer docs # 'no' user instructs the module not to generate developer docs # parm1: specify the default value, yes or no. # AC_DEFUN([XORG_ENABLE_DEVEL_DOCS],[ m4_define([devel_default], m4_default([$1], [yes])) AC_ARG_ENABLE(devel-docs, AS_HELP_STRING([--enable-devel-docs], [Enable building the developer documentation (default: ]devel_default[)]), [build_devel_docs=$enableval], [build_devel_docs=]devel_default) m4_undefine([devel_default]) AM_CONDITIONAL(ENABLE_DEVEL_DOCS, [test x$build_devel_docs = xyes]) AC_MSG_CHECKING([whether to build developer documentation]) AC_MSG_RESULT([$build_devel_docs]) ]) # XORG_ENABLE_DEVEL_DOCS # XORG_ENABLE_SPECS (enable_specs=yes) # ---------------- # Minimum version: 1.6.0 # # This macro enables a builder to skip all functional specification targets. # Combined with the specific tool checking macros XORG_WITH_*, it provides # maximum flexibilty in controlling documentation building. # Refer to: # XORG_WITH_XMLTO --with-xmlto # XORG_WITH_ASCIIDOC --with-asciidoc # XORG_WITH_DOXYGEN --with-doxygen # XORG_WITH_FOP --with-fop # XORG_WITH_GROFF --with-groff # XORG_WITH_PS2PDF --with-ps2pdf # # Interface to module: # ENABLE_SPECS: used in makefiles to conditionally generate specs # --enable-specs: 'yes' user instructs the module to generate specs # 'no' user instructs the module not to generate specs # parm1: specify the default value, yes or no. # AC_DEFUN([XORG_ENABLE_SPECS],[ m4_define([spec_default], m4_default([$1], [yes])) AC_ARG_ENABLE(specs, AS_HELP_STRING([--enable-specs], [Enable building the specs (default: ]spec_default[)]), [build_specs=$enableval], [build_specs=]spec_default) m4_undefine([spec_default]) AM_CONDITIONAL(ENABLE_SPECS, [test x$build_specs = xyes]) AC_MSG_CHECKING([whether to build functional specifications]) AC_MSG_RESULT([$build_specs]) ]) # XORG_ENABLE_SPECS # XORG_CHECK_MALLOC_ZERO # ---------------------- # Minimum version: 1.0.0 # # Defines {MALLOC,XMALLOC,XTMALLOC}_ZERO_CFLAGS appropriately if # malloc(0) returns NULL. Packages should add one of these cflags to # their AM_CFLAGS (or other appropriate *_CFLAGS) to use them. AC_DEFUN([XORG_CHECK_MALLOC_ZERO],[ AC_ARG_ENABLE(malloc0returnsnull, AS_HELP_STRING([--enable-malloc0returnsnull], [malloc(0) returns NULL (default: auto)]), [MALLOC_ZERO_RETURNS_NULL=$enableval], [MALLOC_ZERO_RETURNS_NULL=auto]) AC_MSG_CHECKING([whether malloc(0) returns NULL]) if test "x$MALLOC_ZERO_RETURNS_NULL" = xauto; then AC_RUN_IFELSE([AC_LANG_PROGRAM([ #include ],[ char *m0, *r0, *c0, *p; m0 = malloc(0); p = malloc(10); r0 = realloc(p,0); c0 = calloc(0,10); exit((m0 == 0 || r0 == 0 || c0 == 0) ? 0 : 1); ])], [MALLOC_ZERO_RETURNS_NULL=yes], [MALLOC_ZERO_RETURNS_NULL=no], [MALLOC_ZERO_RETURNS_NULL=yes]) fi AC_MSG_RESULT([$MALLOC_ZERO_RETURNS_NULL]) if test "x$MALLOC_ZERO_RETURNS_NULL" = xyes; then MALLOC_ZERO_CFLAGS="-DMALLOC_0_RETURNS_NULL" XMALLOC_ZERO_CFLAGS=$MALLOC_ZERO_CFLAGS XTMALLOC_ZERO_CFLAGS="$MALLOC_ZERO_CFLAGS -DXTMALLOC_BC" else MALLOC_ZERO_CFLAGS="" XMALLOC_ZERO_CFLAGS="" XTMALLOC_ZERO_CFLAGS="" fi AC_SUBST([MALLOC_ZERO_CFLAGS]) AC_SUBST([XMALLOC_ZERO_CFLAGS]) AC_SUBST([XTMALLOC_ZERO_CFLAGS]) ]) # XORG_CHECK_MALLOC_ZERO # XORG_WITH_LINT() # ---------------- # Minimum version: 1.1.0 # # This macro enables the use of a tool that flags some suspicious and # non-portable constructs (likely to be bugs) in C language source code. # It will attempt to locate the tool and use appropriate options. # There are various lint type tools on different platforms. # # Interface to module: # LINT: returns the path to the tool found on the platform # or the value set to LINT on the configure cmd line # also an Automake conditional # LINT_FLAGS: an Automake variable with appropriate flags # # --with-lint: 'yes' user instructs the module to use lint # 'no' user instructs the module not to use lint (default) # # If the user sets the value of LINT, AC_PATH_PROG skips testing the path. # If the user sets the value of LINT_FLAGS, they are used verbatim. # AC_DEFUN([XORG_WITH_LINT],[ AC_ARG_VAR([LINT], [Path to a lint-style command]) AC_ARG_VAR([LINT_FLAGS], [Flags for the lint-style command]) AC_ARG_WITH(lint, [AS_HELP_STRING([--with-lint], [Use a lint-style source code checker (default: disabled)])], [use_lint=$withval], [use_lint=no]) # Obtain platform specific info like program name and options # The lint program on FreeBSD and NetBSD is different from the one on Solaris case $host_os in *linux* | *openbsd* | kfreebsd*-gnu | darwin* | cygwin*) lint_name=splint lint_options="-badflag" ;; *freebsd* | *netbsd*) lint_name=lint lint_options="-u -b" ;; *solaris*) lint_name=lint lint_options="-u -b -h -erroff=E_INDISTING_FROM_TRUNC2" ;; esac # Test for the presence of the program (either guessed by the code or spelled out by the user) if test "x$use_lint" = x"yes" ; then AC_PATH_PROG([LINT], [$lint_name]) if test "x$LINT" = "x"; then AC_MSG_ERROR([--with-lint=yes specified but lint-style tool not found in PATH]) fi elif test "x$use_lint" = x"no" ; then if test "x$LINT" != "x"; then AC_MSG_WARN([ignoring LINT environment variable since --with-lint=no was specified]) fi else AC_MSG_ERROR([--with-lint expects 'yes' or 'no'. Use LINT variable to specify path.]) fi # User supplied flags override default flags if test "x$LINT_FLAGS" != "x"; then lint_options=$LINT_FLAGS fi AC_SUBST([LINT_FLAGS],[$lint_options]) AM_CONDITIONAL(LINT, [test "x$LINT" != x]) ]) # XORG_WITH_LINT # XORG_LINT_LIBRARY(LIBNAME) # -------------------------- # Minimum version: 1.1.0 # # Sets up flags for building lint libraries for checking programs that call # functions in the library. # # Interface to module: # LINTLIB - Automake variable with the name of lint library file to make # MAKE_LINT_LIB - Automake conditional # # --enable-lint-library: - 'yes' user instructs the module to created a lint library # - 'no' user instructs the module not to create a lint library (default) AC_DEFUN([XORG_LINT_LIBRARY],[ AC_REQUIRE([XORG_WITH_LINT]) AC_ARG_ENABLE(lint-library, [AS_HELP_STRING([--enable-lint-library], [Create lint library (default: disabled)])], [make_lint_lib=$enableval], [make_lint_lib=no]) if test "x$make_lint_lib" = x"yes" ; then LINTLIB=llib-l$1.ln if test "x$LINT" = "x"; then AC_MSG_ERROR([Cannot make lint library without --with-lint]) fi elif test "x$make_lint_lib" != x"no" ; then AC_MSG_ERROR([--enable-lint-library expects 'yes' or 'no'.]) fi AC_SUBST(LINTLIB) AM_CONDITIONAL(MAKE_LINT_LIB, [test x$make_lint_lib != xno]) ]) # XORG_LINT_LIBRARY # XORG_CWARNFLAGS # --------------- # Minimum version: 1.2.0 # # Defines CWARNFLAGS to enable C compiler warnings. # AC_DEFUN([XORG_CWARNFLAGS], [ AC_REQUIRE([AC_PROG_CC_C99]) if test "x$GCC" = xyes ; then CWARNFLAGS="-Wall -Wpointer-arith -Wstrict-prototypes -Wmissing-prototypes \ -Wmissing-declarations -Wnested-externs -fno-strict-aliasing \ -Wbad-function-cast -Wformat=2" case `$CC -dumpversion` in 3.4.* | 4.*) CWARNFLAGS="$CWARNFLAGS -Wold-style-definition -Wdeclaration-after-statement" ;; esac else AC_CHECK_DECL([__SUNPRO_C], [SUNCC="yes"], [SUNCC="no"]) if test "x$SUNCC" = "xyes"; then CWARNFLAGS="-v" fi fi AC_SUBST(CWARNFLAGS) ]) # XORG_CWARNFLAGS # XORG_STRICT_OPTION # ----------------------- # Minimum version: 1.3.0 # # Add configure option to enable strict compilation AC_DEFUN([XORG_STRICT_OPTION], [ # If the module's configure.ac calls AC_PROG_CC later on, CC gets set to C89 AC_REQUIRE([AC_PROG_CC_C99]) AC_REQUIRE([XORG_CWARNFLAGS]) AC_ARG_ENABLE(strict-compilation, AS_HELP_STRING([--enable-strict-compilation], [Enable all warnings from compiler and make them errors (default: disabled)]), [STRICT_COMPILE=$enableval], [STRICT_COMPILE=no]) if test "x$STRICT_COMPILE" = "xyes"; then AC_CHECK_DECL([__SUNPRO_C], [SUNCC="yes"], [SUNCC="no"]) AC_CHECK_DECL([__INTEL_COMPILER], [INTELCC="yes"], [INTELCC="no"]) if test "x$GCC" = xyes ; then STRICT_CFLAGS="-pedantic -Werror" elif test "x$SUNCC" = "xyes"; then STRICT_CFLAGS="-errwarn" elif test "x$INTELCC" = "xyes"; then STRICT_CFLAGS="-Werror" fi fi CWARNFLAGS="$CWARNFLAGS $STRICT_CFLAGS" AC_SUBST([CWARNFLAGS]) ]) # XORG_STRICT_OPTION # XORG_DEFAULT_OPTIONS # -------------------- # Minimum version: 1.3.0 # # Defines default options for X.Org modules. # AC_DEFUN([XORG_DEFAULT_OPTIONS], [ AC_REQUIRE([AC_PROG_INSTALL]) XORG_CWARNFLAGS XORG_STRICT_OPTION XORG_RELEASE_VERSION XORG_CHANGELOG XORG_INSTALL XORG_MANPAGE_SECTIONS m4_ifdef([AM_SILENT_RULES], [AM_SILENT_RULES([yes])], [AC_SUBST([AM_DEFAULT_VERBOSITY], [1])]) ]) # XORG_DEFAULT_OPTIONS # XORG_INSTALL() # ---------------- # Minimum version: 1.4.0 # # Defines the variable INSTALL_CMD as the command to copy # INSTALL from $prefix/share/util-macros. # AC_DEFUN([XORG_INSTALL], [ AC_REQUIRE([PKG_PROG_PKG_CONFIG]) macros_datadir=`$PKG_CONFIG --print-errors --variable=pkgdatadir xorg-macros` INSTALL_CMD="(cp -f "$macros_datadir/INSTALL" \$(top_srcdir)/.INSTALL.tmp && \ mv \$(top_srcdir)/.INSTALL.tmp \$(top_srcdir)/INSTALL) \ || (rm -f \$(top_srcdir)/.INSTALL.tmp; touch \$(top_srcdir)/INSTALL; \ echo 'util-macros \"pkgdatadir\" from xorg-macros.pc not found: installing possibly empty INSTALL.' >&2)" AC_SUBST([INSTALL_CMD]) ]) # XORG_INSTALL dnl Copyright 2005 Red Hat, Inc dnl dnl Permission to use, copy, modify, distribute, and sell this software and its dnl documentation for any purpose is hereby granted without fee, provided that dnl the above copyright notice appear in all copies and that both that dnl copyright notice and this permission notice appear in supporting dnl documentation. dnl dnl The above copyright notice and this permission notice shall be included dnl in all copies or substantial portions of the Software. dnl dnl THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS dnl OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF dnl MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. dnl IN NO EVENT SHALL THE OPEN GROUP BE LIABLE FOR ANY CLAIM, DAMAGES OR dnl OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, dnl ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR dnl OTHER DEALINGS IN THE SOFTWARE. dnl dnl Except as contained in this notice, the name of the copyright holders shall dnl not be used in advertising or otherwise to promote the sale, use or dnl other dealings in this Software without prior written authorization dnl from the copyright holders. dnl # XORG_RELEASE_VERSION # -------------------- # Defines PACKAGE_VERSION_{MAJOR,MINOR,PATCHLEVEL} for modules to use. AC_DEFUN([XORG_RELEASE_VERSION],[ AC_DEFINE_UNQUOTED([PACKAGE_VERSION_MAJOR], [`echo $PACKAGE_VERSION | cut -d . -f 1`], [Major version of this package]) PVM=`echo $PACKAGE_VERSION | cut -d . -f 2 | cut -d - -f 1` if test "x$PVM" = "x"; then PVM="0" fi AC_DEFINE_UNQUOTED([PACKAGE_VERSION_MINOR], [$PVM], [Minor version of this package]) PVP=`echo $PACKAGE_VERSION | cut -d . -f 3 | cut -d - -f 1` if test "x$PVP" = "x"; then PVP="0" fi AC_DEFINE_UNQUOTED([PACKAGE_VERSION_PATCHLEVEL], [$PVP], [Patch version of this package]) ]) # XORG_CHANGELOG() # ---------------- # Minimum version: 1.2.0 # # Defines the variable CHANGELOG_CMD as the command to generate # ChangeLog from git. # # AC_DEFUN([XORG_CHANGELOG], [ CHANGELOG_CMD="(GIT_DIR=\$(top_srcdir)/.git git log > \$(top_srcdir)/.changelog.tmp && \ mv \$(top_srcdir)/.changelog.tmp \$(top_srcdir)/ChangeLog) \ || (rm -f \$(top_srcdir)/.changelog.tmp; touch \$(top_srcdir)/ChangeLog; \ echo 'git directory not found: installing possibly empty changelog.' >&2)" AC_SUBST([CHANGELOG_CMD]) ]) # XORG_CHANGELOG # pkg.m4 - Macros to locate and utilise pkg-config. -*- Autoconf -*- # # Copyright © 2004 Scott James Remnant . # # This program is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation; either version 2 of the License, or # (at your option) any later version. # # This program is distributed in the hope that it will be useful, but # WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU # General Public License for more details. # # You should have received a copy of the GNU General Public License # along with this program; if not, write to the Free Software # Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. # # As a special exception to the GNU General Public License, if you # distribute this file as part of a program that contains a # configuration script generated by Autoconf, you may include it under # the same distribution terms that you use for the rest of that program. # PKG_PROG_PKG_CONFIG([MIN-VERSION]) # ---------------------------------- AC_DEFUN([PKG_PROG_PKG_CONFIG], [m4_pattern_forbid([^_?PKG_[A-Z_]+$]) m4_pattern_allow([^PKG_CONFIG(_PATH)?$]) AC_ARG_VAR([PKG_CONFIG], [path to pkg-config utility])dnl if test "x$ac_cv_env_PKG_CONFIG_set" != "xset"; then AC_PATH_TOOL([PKG_CONFIG], [pkg-config]) fi if test -n "$PKG_CONFIG"; then _pkg_min_version=m4_default([$1], [0.9.0]) AC_MSG_CHECKING([pkg-config is at least version $_pkg_min_version]) if $PKG_CONFIG --atleast-pkgconfig-version $_pkg_min_version; then AC_MSG_RESULT([yes]) else AC_MSG_RESULT([no]) PKG_CONFIG="" fi fi[]dnl ])# PKG_PROG_PKG_CONFIG # PKG_CHECK_EXISTS(MODULES, [ACTION-IF-FOUND], [ACTION-IF-NOT-FOUND]) # # Check to see whether a particular set of modules exists. Similar # to PKG_CHECK_MODULES(), but does not set variables or print errors. # # # Similar to PKG_CHECK_MODULES, make sure that the first instance of # this or PKG_CHECK_MODULES is called, or make sure to call # PKG_CHECK_EXISTS manually # -------------------------------------------------------------- AC_DEFUN([PKG_CHECK_EXISTS], [AC_REQUIRE([PKG_PROG_PKG_CONFIG])dnl if test -n "$PKG_CONFIG" && \ AC_RUN_LOG([$PKG_CONFIG --exists --print-errors "$1"]); then m4_ifval([$2], [$2], [:]) m4_ifvaln([$3], [else $3])dnl fi]) # _PKG_CONFIG([VARIABLE], [COMMAND], [MODULES]) # --------------------------------------------- m4_define([_PKG_CONFIG], [if test -n "$$1"; then pkg_cv_[]$1="$$1" elif test -n "$PKG_CONFIG"; then PKG_CHECK_EXISTS([$3], [pkg_cv_[]$1=`$PKG_CONFIG --[]$2 "$3" 2>/dev/null`], [pkg_failed=yes]) else pkg_failed=untried fi[]dnl ])# _PKG_CONFIG # _PKG_SHORT_ERRORS_SUPPORTED # ----------------------------- AC_DEFUN([_PKG_SHORT_ERRORS_SUPPORTED], [AC_REQUIRE([PKG_PROG_PKG_CONFIG]) if $PKG_CONFIG --atleast-pkgconfig-version 0.20; then _pkg_short_errors_supported=yes else _pkg_short_errors_supported=no fi[]dnl ])# _PKG_SHORT_ERRORS_SUPPORTED # PKG_CHECK_MODULES(VARIABLE-PREFIX, MODULES, [ACTION-IF-FOUND], # [ACTION-IF-NOT-FOUND]) # # # Note that if there is a possibility the first call to # PKG_CHECK_MODULES might not happen, you should be sure to include an # explicit call to PKG_PROG_PKG_CONFIG in your configure.ac # # # -------------------------------------------------------------- AC_DEFUN([PKG_CHECK_MODULES], [AC_REQUIRE([PKG_PROG_PKG_CONFIG])dnl AC_ARG_VAR([$1][_CFLAGS], [C compiler flags for $1, overriding pkg-config])dnl AC_ARG_VAR([$1][_LIBS], [linker flags for $1, overriding pkg-config])dnl pkg_failed=no AC_MSG_CHECKING([for $1]) _PKG_CONFIG([$1][_CFLAGS], [cflags], [$2]) _PKG_CONFIG([$1][_LIBS], [libs], [$2]) m4_define([_PKG_TEXT], [Alternatively, you may set the environment variables $1[]_CFLAGS and $1[]_LIBS to avoid the need to call pkg-config. See the pkg-config man page for more details.]) if test $pkg_failed = yes; then _PKG_SHORT_ERRORS_SUPPORTED if test $_pkg_short_errors_supported = yes; then $1[]_PKG_ERRORS=`$PKG_CONFIG --short-errors --print-errors "$2" 2>&1` else $1[]_PKG_ERRORS=`$PKG_CONFIG --print-errors "$2" 2>&1` fi # Put the nasty error message in config.log where it belongs echo "$$1[]_PKG_ERRORS" >&AS_MESSAGE_LOG_FD ifelse([$4], , [AC_MSG_ERROR(dnl [Package requirements ($2) were not met: $$1_PKG_ERRORS Consider adjusting the PKG_CONFIG_PATH environment variable if you installed software in a non-standard prefix. _PKG_TEXT ])], [AC_MSG_RESULT([no]) $4]) elif test $pkg_failed = untried; then ifelse([$4], , [AC_MSG_FAILURE(dnl [The pkg-config script could not be found or is too old. Make sure it is in your PATH or set the PKG_CONFIG environment variable to the full path to pkg-config. _PKG_TEXT To get pkg-config, see .])], [$4]) else $1[]_CFLAGS=$pkg_cv_[]$1[]_CFLAGS $1[]_LIBS=$pkg_cv_[]$1[]_LIBS AC_MSG_RESULT([yes]) ifelse([$3], , :, [$3]) fi[]dnl ])# PKG_CHECK_MODULES UN([XORG_CWARNFLAGS], [ AC_REQUIRE([AC_PROG_CC_C99]) if test "x$GCC" = xyes ; then CWARNFLAGS="-Wall -Wpointer-arith -Wstrict-prototypes -Wmissing-prototypes \ -Wmissing-declarations -Wnested-externs -fno-strict-aliasing \ -Wbad-function-cast -Wformat=2" casprintproto-1.0.5/install-sh000075501431060000012000000325371151122464400162350ustar00alancstaff00002660200007#!/bin/sh # install - install a program, script, or datafile scriptversion=2009-04-28.21; # UTC # This originates from X11R5 (mit/util/scripts/install.sh), which was # later released in X11R6 (xc/config/util/install.sh) with the # following copyright and license. # # Copyright (C) 1994 X Consortium # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to # deal in the Software without restriction, including without limitation the # rights to use, copy, modify, merge, publish, distribute, sublicense, and/or # sell copies of the Software, and to permit persons to whom the Software is # furnished to do so, subject to the following conditions: # # The above copyright notice and this permission notice shall be included in # all copies or substantial portions of the Software. # # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR # IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, # FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE # X CONSORTIUM BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN # AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNEC- # TION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. # # Except as contained in this notice, the name of the X Consortium shall not # be used in advertising or otherwise to promote the sale, use or other deal- # ings in this Software without prior written authorization from the X Consor- # tium. # # # FSF changes to this file are in the public domain. # # Calling this script install-sh is preferred over install.sh, to prevent # `make' implicit rules from creating a file called install from it # when there is no Makefile. # # This script is compatible with the BSD install script, but was written # from scratch. nl=' ' IFS=" "" $nl" # set DOITPROG to echo to test this script # Don't use :- since 4.3BSD and earlier shells don't like it. doit=${DOITPROG-} if test -z "$doit"; then doit_exec=exec else doit_exec=$doit fi # Put in absolute file names if you don't have them in your path; # or use environment vars. chgrpprog=${CHGRPPROG-chgrp} chmodprog=${CHMODPROG-chmod} chownprog=${CHOWNPROG-chown} cmpprog=${CMPPROG-cmp} cpprog=${CPPROG-cp} mkdirprog=${MKDIRPROG-mkdir} mvprog=${MVPROG-mv} rmprog=${RMPROG-rm} stripprog=${STRIPPROG-strip} posix_glob='?' initialize_posix_glob=' test "$posix_glob" != "?" || { if (set -f) 2>/dev/null; then posix_glob= else posix_glob=: fi } ' posix_mkdir= # Desired mode of installed file. mode=0755 chgrpcmd= chmodcmd=$chmodprog chowncmd= mvcmd=$mvprog rmcmd="$rmprog -f" stripcmd= src= dst= dir_arg= dst_arg= copy_on_change=false no_target_directory= usage="\ Usage: $0 [OPTION]... [-T] SRCFILE DSTFILE or: $0 [OPTION]... SRCFILES... DIRECTORY or: $0 [OPTION]... -t DIRECTORY SRCFILES... or: $0 [OPTION]... -d DIRECTORIES... In the 1st form, copy SRCFILE to DSTFILE. In the 2nd and 3rd, copy all SRCFILES to DIRECTORY. In the 4th, create DIRECTORIES. Options: --help display this help and exit. --version display version info and exit. -c (ignored) -C install only if different (preserve the last data modification time) -d create directories instead of installing files. -g GROUP $chgrpprog installed files to GROUP. -m MODE $chmodprog installed files to MODE. -o USER $chownprog installed files to USER. -s $stripprog installed files. -t DIRECTORY install into DIRECTORY. -T report an error if DSTFILE is a directory. Environment variables override the default commands: CHGRPPROG CHMODPROG CHOWNPROG CMPPROG CPPROG MKDIRPROG MVPROG RMPROG STRIPPROG " while test $# -ne 0; do case $1 in -c) ;; -C) copy_on_change=true;; -d) dir_arg=true;; -g) chgrpcmd="$chgrpprog $2" shift;; --help) echo "$usage"; exit $?;; -m) mode=$2 case $mode in *' '* | *' '* | *' '* | *'*'* | *'?'* | *'['*) echo "$0: invalid mode: $mode" >&2 exit 1;; esac shift;; -o) chowncmd="$chownprog $2" shift;; -s) stripcmd=$stripprog;; -t) dst_arg=$2 shift;; -T) no_target_directory=true;; --version) echo "$0 $scriptversion"; exit $?;; --) shift break;; -*) echo "$0: invalid option: $1" >&2 exit 1;; *) break;; esac shift done if test $# -ne 0 && test -z "$dir_arg$dst_arg"; then # When -d is used, all remaining arguments are directories to create. # When -t is used, the destination is already specified. # Otherwise, the last argument is the destination. Remove it from $@. for arg do if test -n "$dst_arg"; then # $@ is not empty: it contains at least $arg. set fnord "$@" "$dst_arg" shift # fnord fi shift # arg dst_arg=$arg done fi if test $# -eq 0; then if test -z "$dir_arg"; then echo "$0: no input file specified." >&2 exit 1 fi # It's OK to call `install-sh -d' without argument. # This can happen when creating conditional directories. exit 0 fi if test -z "$dir_arg"; then trap '(exit $?); exit' 1 2 13 15 # Set umask so as not to create temps with too-generous modes. # However, 'strip' requires both read and write access to temps. case $mode in # Optimize common cases. *644) cp_umask=133;; *755) cp_umask=22;; *[0-7]) if test -z "$stripcmd"; then u_plus_rw= else u_plus_rw='% 200' fi cp_umask=`expr '(' 777 - $mode % 1000 ')' $u_plus_rw`;; *) if test -z "$stripcmd"; then u_plus_rw= else u_plus_rw=,u+rw fi cp_umask=$mode$u_plus_rw;; esac fi for src do # Protect names starting with `-'. case $src in -*) src=./$src;; esac if test -n "$dir_arg"; then dst=$src dstdir=$dst test -d "$dstdir" dstdir_status=$? else # Waiting for this to be detected by the "$cpprog $src $dsttmp" command # might cause directories to be created, which would be especially bad # if $src (and thus $dsttmp) contains '*'. if test ! -f "$src" && test ! -d "$src"; then echo "$0: $src does not exist." >&2 exit 1 fi if test -z "$dst_arg"; then echo "$0: no destination specified." >&2 exit 1 fi dst=$dst_arg # Protect names starting with `-'. case $dst in -*) dst=./$dst;; esac # If destination is a directory, append the input filename; won't work # if double slashes aren't ignored. if test -d "$dst"; then if test -n "$no_target_directory"; then echo "$0: $dst_arg: Is a directory" >&2 exit 1 fi dstdir=$dst dst=$dstdir/`basename "$src"` dstdir_status=0 else # Prefer dirname, but fall back on a substitute if dirname fails. dstdir=` (dirname "$dst") 2>/dev/null || expr X"$dst" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \ X"$dst" : 'X\(//\)[^/]' \| \ X"$dst" : 'X\(//\)$' \| \ X"$dst" : 'X\(/\)' \| . 2>/dev/null || echo X"$dst" | sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{ s//\1/ q } /^X\(\/\/\)[^/].*/{ s//\1/ q } /^X\(\/\/\)$/{ s//\1/ q } /^X\(\/\).*/{ s//\1/ q } s/.*/./; q' ` test -d "$dstdir" dstdir_status=$? fi fi obsolete_mkdir_used=false if test $dstdir_status != 0; then case $posix_mkdir in '') # Create intermediate dirs using mode 755 as modified by the umask. # This is like FreeBSD 'install' as of 1997-10-28. umask=`umask` case $stripcmd.$umask in # Optimize common cases. *[2367][2367]) mkdir_umask=$umask;; .*0[02][02] | .[02][02] | .[02]) mkdir_umask=22;; *[0-7]) mkdir_umask=`expr $umask + 22 \ - $umask % 100 % 40 + $umask % 20 \ - $umask % 10 % 4 + $umask % 2 `;; *) mkdir_umask=$umask,go-w;; esac # With -d, create the new directory with the user-specified mode. # Otherwise, rely on $mkdir_umask. if test -n "$dir_arg"; then mkdir_mode=-m$mode else mkdir_mode= fi posix_mkdir=false case $umask in *[123567][0-7][0-7]) # POSIX mkdir -p sets u+wx bits regardless of umask, which # is incompatible with FreeBSD 'install' when (umask & 300) != 0. ;; *) tmpdir=${TMPDIR-/tmp}/ins$RANDOM-$$ trap 'ret=$?; rmdir "$tmpdir/d" "$tmpdir" 2>/dev/null; exit $ret' 0 if (umask $mkdir_umask && exec $mkdirprog $mkdir_mode -p -- "$tmpdir/d") >/dev/null 2>&1 then if test -z "$dir_arg" || { # Check for POSIX incompatibilities with -m. # HP-UX 11.23 and IRIX 6.5 mkdir -m -p sets group- or # other-writeable bit of parent directory when it shouldn't. # FreeBSD 6.1 mkdir -m -p sets mode of existing directory. ls_ld_tmpdir=`ls -ld "$tmpdir"` case $ls_ld_tmpdir in d????-?r-*) different_mode=700;; d????-?--*) different_mode=755;; *) false;; esac && $mkdirprog -m$different_mode -p -- "$tmpdir" && { ls_ld_tmpdir_1=`ls -ld "$tmpdir"` test "$ls_ld_tmpdir" = "$ls_ld_tmpdir_1" } } then posix_mkdir=: fi rmdir "$tmpdir/d" "$tmpdir" else # Remove any dirs left behind by ancient mkdir implementations. rmdir ./$mkdir_mode ./-p ./-- 2>/dev/null fi trap '' 0;; esac;; esac if $posix_mkdir && ( umask $mkdir_umask && $doit_exec $mkdirprog $mkdir_mode -p -- "$dstdir" ) then : else # The umask is ridiculous, or mkdir does not conform to POSIX, # or it failed possibly due to a race condition. Create the # directory the slow way, step by step, checking for races as we go. case $dstdir in /*) prefix='/';; -*) prefix='./';; *) prefix='';; esac eval "$initialize_posix_glob" oIFS=$IFS IFS=/ $posix_glob set -f set fnord $dstdir shift $posix_glob set +f IFS=$oIFS prefixes= for d do test -z "$d" && continue prefix=$prefix$d if test -d "$prefix"; then prefixes= else if $posix_mkdir; then (umask=$mkdir_umask && $doit_exec $mkdirprog $mkdir_mode -p -- "$dstdir") && break # Don't fail if two instances are running concurrently. test -d "$prefix" || exit 1 else case $prefix in *\'*) qprefix=`echo "$prefix" | sed "s/'/'\\\\\\\\''/g"`;; *) qprefix=$prefix;; esac prefixes="$prefixes '$qprefix'" fi fi prefix=$prefix/ done if test -n "$prefixes"; then # Don't fail if two instances are running concurrently. (umask $mkdir_umask && eval "\$doit_exec \$mkdirprog $prefixes") || test -d "$dstdir" || exit 1 obsolete_mkdir_used=true fi fi fi if test -n "$dir_arg"; then { test -z "$chowncmd" || $doit $chowncmd "$dst"; } && { test -z "$chgrpcmd" || $doit $chgrpcmd "$dst"; } && { test "$obsolete_mkdir_used$chowncmd$chgrpcmd" = false || test -z "$chmodcmd" || $doit $chmodcmd $mode "$dst"; } || exit 1 else # Make a couple of temp file names in the proper directory. dsttmp=$dstdir/_inst.$$_ rmtmp=$dstdir/_rm.$$_ # Trap to clean up those temp files at exit. trap 'ret=$?; rm -f "$dsttmp" "$rmtmp" && exit $ret' 0 # Copy the file name to the temp name. (umask $cp_umask && $doit_exec $cpprog "$src" "$dsttmp") && # and set any options; do chmod last to preserve setuid bits. # # If any of these fail, we abort the whole thing. If we want to # ignore errors from any of these, just make sure not to ignore # errors from the above "$doit $cpprog $src $dsttmp" command. # { test -z "$chowncmd" || $doit $chowncmd "$dsttmp"; } && { test -z "$chgrpcmd" || $doit $chgrpcmd "$dsttmp"; } && { test -z "$stripcmd" || $doit $stripcmd "$dsttmp"; } && { test -z "$chmodcmd" || $doit $chmodcmd $mode "$dsttmp"; } && # If -C, don't bother to copy if it wouldn't change the file. if $copy_on_change && old=`LC_ALL=C ls -dlL "$dst" 2>/dev/null` && new=`LC_ALL=C ls -dlL "$dsttmp" 2>/dev/null` && eval "$initialize_posix_glob" && $posix_glob set -f && set X $old && old=:$2:$4:$5:$6 && set X $new && new=:$2:$4:$5:$6 && $posix_glob set +f && test "$old" = "$new" && $cmpprog "$dst" "$dsttmp" >/dev/null 2>&1 then rm -f "$dsttmp" else # Rename the file to the real destination. $doit $mvcmd -f "$dsttmp" "$dst" 2>/dev/null || # The rename failed, perhaps because mv can't rename something else # to itself, or perhaps because mv is so ancient that it does not # support -f. { # Now remove or move aside any old file at destination location. # We try this two ways since rm can't unlink itself on some # systems and the destination file might be busy for other # reasons. In this case, the final cleanup might fail but the new # file should still install successfully. { test ! -f "$dst" || $doit $rmcmd -f "$dst" 2>/dev/null || { $doit $mvcmd -f "$dst" "$rmtmp" 2>/dev/null && { $doit $rmcmd -f "$rmtmp" 2>/dev/null; :; } } || { echo "$0: cannot unlink or rename $dst" >&2 (exit 1); exit 1 } } && # Now rename the file to the real destination. $doit $mvcmd "$dsttmp" "$dst" } fi || exit 1 trap '' 0 fi done # Local variables: # eval: (add-hook 'write-file-hooks 'time-stamp) # time-stamp-start: "scriptversion=" # time-stamp-format: "%:y-%02m-%02d.%02H" # time-stamp-time-zone: "UTC" # time-stamp-end: "; # UTC" # End: printproto-1.0.5/printproto.pc.in000064401431060000012000000003131126616702300173710ustar00alancstaff00002660200007prefix=@prefix@ exec_prefix=@exec_prefix@ libdir=@libdir@ includedir=@includedir@ Name: PrintProto Description: Print extension headers Version: @PACKAGE_VERSION@ Requires: xau Cflags: -I${includedir} printproto-1.0.5/ChangeLog000064401431060000012000000223221151122470100157640ustar00alancstaff00002660200007commit cca2ca69d2a6b4b133dba69d5330499fbfe88257 Author: Alan Coopersmith Date: Wed Jan 5 18:31:40 2011 -0800 printproto 1.0.5 Signed-off-by: Alan Coopersmith commit bf29f29a6e054e4208951a906d818b85949a93cc Author: Alan Coopersmith Date: Tue Dec 28 19:05:41 2010 -0800 Add README with pointers to mailing lists, git, bugzilla, the true status, etc. Signed-off-by: Alan Coopersmith commit 6e385b9711f9ac4808672528f8e856033b9cea06 Author: Alan Coopersmith Date: Tue Dec 28 18:57:31 2010 -0800 config: Replace obsolete usage of AC_OUTPUT with AC_CONFIG_FILES Signed-off-by: Alan Coopersmith commit be513b2f2f296cba566093f9533d51a5deaddab3 Author: Alan Coopersmith Date: Tue Dec 28 18:56:43 2010 -0800 config: Add missing AC_CONFIG_SRCDIR & AM_MAINTAINER_MODE Regroup AC statements under the Autoconf initialization section. Regroup AM statements under the Automake initialization section. Signed-off-by: Alan Coopersmith commit bb21c638673d1b2c4b24374267490e9dfedf97cb Author: Gaetan Nadon Date: Tue Dec 28 18:55:27 2010 -0800 config: update AC_PREREQ statement to 2.60 Unrelated to the previous patches, the new value simply reflects the reality that the minimum level for autoconf to configure all x.org modules is 2.60 dated June 2006. ftp://ftp.gnu.org/gnu/autoconf/autoconf-2.60.tar.gz Signed-off-by: Gaetan Nadon Signed-off-by: Alan Coopersmith commit 687530cecc4e139dadda3c0dcbd8ab77824f7588 Author: Paulo Zanoni Date: Thu Dec 16 13:41:51 2010 -0200 Use docbookx.dtd version 4.3 for all docs Signed-off-by: Paulo Zanoni Signed-off-by: Alan Coopersmith commit 37932b0b0af27872bc7517a80d23a98a6dd15127 Author: Alan Coopersmith Date: Sun Nov 21 11:43:56 2010 -0800 Sun's copyrights belong to Oracle now Signed-off-by: Alan Coopersmith commit 8418a3a9fb81c8581093621e833267055150e1d3 Author: Alan Coopersmith Date: Tue Oct 13 14:58:56 2009 -0700 Move Xprint protocol spec & overview man pages from xorg-docs Signed-off-by: Alan Coopersmith commit 6a0dc8f9fee906d55be46acfc7dd3dd29b3bde9a Author: Alan Coopersmith Date: Tue Oct 13 14:58:11 2009 -0700 Migrate to xorg macros 1.3 & XORG_DEFAULT_OPTIONS Signed-off-by: Alan Coopersmith commit 7b8abe5362d4b3231f6bed9182b33db060492431 Author: Paulo Cesar Pereira de Andrade Date: Tue Jan 27 20:06:28 2009 -0200 Janitor: Correct make distcheck and dont distribute autogen.sh commit 1a3f6429362c505c1ab5df5fcc00cb913381c8c0 Author: Eamon Walsh Date: Fri Dec 14 01:09:37 2007 -0500 Update package version number for devPrivates rework. commit f53c6b6069407a005b7911b5275761ff10c270cb Merge: e580369 257f711 Author: Eamon Walsh Date: Fri Dec 7 20:20:45 2007 -0500 Merge branch 'master' into XACE-SELINUX commit 257f7118e71ef4aa59bec55cd43bf1bdd228d152 Author: James Cloos Date: Thu Dec 6 16:39:03 2007 -0500 Replace static ChangeLog with dist-hook to generate from git log commit 378417f12b1a8839c2943822545e8a9a74543d6d Merge: d284123 4524de4 Author: James Cloos Date: Mon Sep 3 06:17:42 2007 -0400 Merge branch 'master' of ssh://git.freedesktop.org/git/xorg/proto/printproto commit d284123348eeffdc8419144c7999c2b82b0cddc0 Author: James Cloos Date: Mon Sep 3 05:54:11 2007 -0400 Add *~ to .gitignore to skip patch/emacs droppings commit e58036978c7c9077fe90517cd9e3e3c8035ca1f2 Author: Eamon Walsh Date: Tue Aug 28 09:50:44 2007 -0400 Updates to printproto as part of devPrivates rework. commit 4524de4602ba112cef88fc01aaa3dedfa3e13b5d Merge: 4f039c9 e0972b5 Author: Eamon Walsh Date: Mon Aug 27 11:48:46 2007 -0400 Merge branch 'XACE-SELINUX' commit 4f039c9a8c7e9270cb41c3584a53a78610a804fd Author: Alan Coopersmith Date: Fri Jul 14 18:56:25 2006 -0700 renamed: .cvsignore -> .gitignore commit edf1eb2c9b0cb27f703a647c313f991df01a7a2c Author: Kevin E Martin Date: Thu Dec 15 00:24:38 2005 +0000 Update package version number for final X11R7 release candidate. commit fd24d13432838905386228344ef915cbfa4c228a Author: Kevin E Martin Date: Sat Dec 3 05:49:46 2005 +0000 Update package version number for X11R7 RC3 release. commit 353a1f812eb7fcf560df8e8b4e08bc229ef78c0a Author: Kevin E Martin Date: Sat Nov 19 07:15:48 2005 +0000 Update pkgconfig files to separate library build-time dependencies from application build-time dependencies, and update package deps to work with separate build roots. commit 9aba897159ed942e5399a4b2b6fff665deeac8d5 Author: Kevin E Martin Date: Wed Oct 19 02:48:14 2005 +0000 Update package version number for RC1 release. commit 46bc30b476513df72ad9ef1fa0484338c69b2b33 Author: Eric Anholt Date: Tue Aug 2 19:19:39 2005 +0000 Add basic .cvsignore files for proto modules. commit 89dbcc4915ae60e4a03142fe2b013ca7023499d1 Author: Kevin E Martin Date: Fri Jul 29 21:22:56 2005 +0000 Various changes preparing packages for RC0: - Verify and update package version numbers as needed - Implement versioning scheme - Change bug address to point to bugzilla bug entry form - Disable loadable i18n in libX11 by default (use --enable-loadable-i18n to reenable it) - Fix makedepend to use pkgconfig and pass distcheck - Update build script to build macros first - Update modular Xorg version commit 73623780051fecab6397cf075f87c707eca1a5ab Author: Alan Coopersmith Date: Mon Jul 25 16:15:05 2005 +0000 #include "fontstruct.h" -> for modularization (Drew Parsons) commit 6b9a6d5696f2324b7982ee958f51de9a21297285 Author: Daniel Stone Date: Sat May 21 04:13:23 2005 +0000 Set version to 1.0. commit 1cdce3bdede75f204d241c254c51b60c248369dc Author: Adam Jackson Date: Thu May 19 00:22:39 2005 +0000 revert last change, didn't do right thing at all, sorry for the noise commit 14bb8b2c0366c09f234c438a357adc0e40d767ad Author: Adam Jackson Date: Thu May 19 00:10:18 2005 +0000 Require automake 1.7 in AM_INIT_AUTOMAKE commit edb479dbcee12685ced059a70e4ad7a462d6a793 Author: Josh Triplett Date: Mon May 16 08:42:55 2005 +0000 Add COPYING file for Print. commit 163d7443ea3776eeb00f85fdebebb53938924fb0 Author: Søren Sandmann Pedersen Date: Mon May 9 18:20:05 2005 +0000 Change all the protonames from Ext to Proto. commit 61968cefee6fa47e6a2e99ac1277aa7496555d9b Author: Kevin E Martin Date: Fri May 6 01:46:31 2005 +0000 Initial build system files for proto module. commit 3450fba3cd4e37d66f612c06dae92b416ba267d7 Author: Egbert Eich Date: Fri Apr 23 18:43:06 2004 +0000 Merging XORG-CURRENT into trunk commit e33d669067beddc3f89cd5fbd91371a5f735ad27 Author: Egbert Eich Date: Sun Mar 14 08:31:35 2004 +0000 Importing vendor version xf86-4_4_99_1 on Sun Mar 14 00:26:39 PST 2004 commit e0972b5ba2e9a39f5afa6ad17668dfa517e04cea Author: Egbert Eich Date: Fri Mar 5 13:38:51 2004 +0000 23. Merged with XFree86 4.4.0. Added changes that went into infected files. Reverted darwin/bundle/**/Credits.rtf to XFree86 versions to avoid future conflicts on ASCII but not humal readable files. (There should probably be separate CreditsXorg.rtf files) (Egbert Eich). commit 3501dfac1febcaf4a6fd615216258cec5f8bdf98 Author: Egbert Eich Date: Wed Mar 3 12:10:54 2004 +0000 Importing vendor version xf86-4_4_0 on Wed Mar 3 04:09:24 PST 2004 commit 53d3ca9ad964d55afc04916ada912c06d10d5209 Author: Egbert Eich Date: Thu Feb 26 13:35:11 2004 +0000 readding XFree86's cvs IDs commit e91280eaba1651b9e600fe87c1760601981b9edf Author: Egbert Eich Date: Thu Feb 26 09:22:27 2004 +0000 Importing vendor version xf86-4_3_99_903 on Wed Feb 26 01:21:00 PST 2004 commit 498f7aff528f11f2ad33a659c1634ae74d291aba Author: Kaleb Keithley Date: Mon Nov 17 19:03:40 2003 +0000 merge XFree86 4.3.0.1 to -CURRENT commit 2e88b0d462b9dc068096c6be7f0ba49e21f7e1c7 Author: Kaleb Keithley Date: Fri Nov 14 16:48:42 2003 +0000 XFree86 4.3.0.1 commit 4382611f85dc0dcbfc7cca9a4ba175b3bc83da14 Author: Kaleb Keithley Date: Fri Nov 14 15:54:35 2003 +0000 R6.6 is the Xorg base-line printproto-1.0.5/man/Xprint.man000064401431060000012000000371411126616702300167650ustar00alancstaff00002660200007.\" -*- coding: us-ascii -*- .TH Xprint __miscmansuffix__ "8 October 2004" .SH NAME Xprint \- The "X print service" - a portable, network-transparent printing system based on the X11 protocol .SH SYNOPSIS Xprint is a very flexible, extensible, scaleable, client/server print system based on ISO 10175 (and some other specs) and the X11 rendering protocol. Using Xprint an application can search, query and use devices like printers, FAX machines or create documents in formats like PDF. In particular, an application can seek a printer, query supported attributes (like paper size, trays, fonts etc.), configure the printer device to match it\(cqs needs and print on it like on any other X device reusing parts of the code which is used for the video card Xserver. .SH OVERVIEW The "X Print Service" technology allows X rendering to devices such as printers and fax. Most of the service is available in the X11 technology stack as Xp, with the remainder in single toolkit stacks (e.g. DtPrint for CDE). Modifications have also been made to the LessTif/Motif/Qt technology stacks to support Xprint. .PP The Xp portion consists of: .TP 0.2i \(bu Xp Extension for the X-Server (included in the X-Server Xprt) .TP 0.2i \(bu Xp Extension API for the client side (libXp/libXprintUtils) .TP 0.2i \(bu PCL ddx driver that converts core X to native PCL .TP 0.2i \(bu PDF ddx driver that converts core X to native PDF .TP 0.2i \(bu PostScript ddx driver that converts core X to native PostScript .TP 0.2i \(bu Raster ddx driver that generates xwd rasters which can be converted to PCL, PDF or PostScript rasters .PP .PP From an X clients perspective, it can attach to one of two nearly identical X-Servers, a "Video" X-Server, and a "Print" X-Server which has the additional Xp capability but otherwise looks and behaves the same. .SH "HOW THE X PRINT SERVICE WORKS" The X Print Service expands on the traditional X-Server and Xlib world in four ways. .TP 0.4i 1. Most obvious is the use of "print ddx drivers" instead of "video ddx drivers". While a video ddx driver modifies pixels in a video frame buffer, a print ddx driver generates "page description language (PDL)" output (such as PCL, PDF or PostScript) or sends the print rendering instructions to a platform-specific print API (like Win32/GDI). Once a print ddx driver generates PDL output, it can be sent to a spooler such as \fBlp\fR(1) or retrieved by the client (to implement functionality like "print-to-file"). Though not currently done, a single X-Server can support both print and video ddx drivers. .TP 0.4i 2. Since printers support "paged" output, unlike video, a portion of the Xp Extension supports APIs to delineate printed output. For example, XpStartPage and XpEndPage tell the X-Server where a physical page starts and ends in an otherwise continuous stream of X rendering primitives. Likewise, XpStartJob and XpEndJob determine when a collection of pages starts and ends. XpEndJob typically causes the generated PDL to be submitted to a spooler, such as \fBlp\fR(1). .TP 0.4i 3. Since printers have extensive capabilities, another portion of the Xp Extension supports APIs to manipulate "print contexts". Once a printer is selected using the Xp Extension API, a print context to represent it can be created. A print context embodies the printer selected - it contains the printer's default capabilities, selectable range of capabilities, printer state, and generated output. Some "attributes" within the print context can be modified by the user, and the X-Server and print ddx driver will react accordingly. For example, the attribute "content-orientation" can be set to "landscape" or "portrait" (if the printer supports these values - which can be queried using the Xprint API as well). .TP 0.4i 4. Since printers can have "built in" fonts, the Xp Extension in the X-Server works with the print ddx drivers to make available (for printing only) additional fonts on a per print context basis. When a print context is created and set for a given printer, the X font calls may be able to access additional printer fonts. To do this (typically), the X-Server must have access to "printer metric files" (.pmf) that describe at minimum the metrics of the built in fonts. .PP .SH USAGE There are three tasks to start the X Print Service: .TP 0.4i 1. configuring the X Print Server, .TP 0.4i 2. starting the X Print Service .TP 0.4i 3. configuring the user session so that clients can find the running X Print Service .PP .PP The tasks are described in detail below. .SH "SERVER CONFIGURATION" The X Print Server (Xprt) can read a number of configuration files which control its behavior and support for printers. Each vendor platform has a default location for this information. Xprt can also read the environment variable \fBXPCONFIGDIR\fR to locate alternate configuration directories. Common settings include: export XPCONFIGDIR=/X11/lib/X11/XpConfig/ .PP export XPCONFIGDIR=/proj/x11/xc/programs/Xserver/XpConfig/ .PP Xprt has many built-in defaults, and lacking any configuration files, will immediately try to support all printers visible via \fBlpstat\fR(1). .PP In order of importance for configuration by a system administrator, the configuration files for a "C" locale are as follows (see \fBXprt\fR(__appmansuffix__) for more details (including support for non-"C" locales)): .TP \fB${XPCONFIGDIR}/C/print/Xprinters\fR \&'Xprinters' is the top most configuration file. It tells Xprt which specific printer names (e.g. mylaser) should be supported, and whether \fBlpstat\fR(1) or other commands should be used to automatically supplement the list of printers. .TP \fB${XPCONFIGDIR}/C/print/attributes/printer\fR The 'printer' file maps printer names to model configurations (see 'model-config' below). For example, "mylaser" could be mapped to a "HPDJ1600C", and all other arbitrary printers could be mapped to a default, such as "HPLJ4SI". When depending on \fBlpstat\fR(1) in the Xprinters file, setting up defaults in 'printer' becomes all the more important. .TP \fB${XPCONFIGDIR}/C/print/attributes/document\fR The 'document' file specifies the initial document values for any print jobs. For example, which paper tray to use, what default resolution, etc. .TP \fB${XPCONFIGDIR}/C/print/attributes/job\fR The 'job' file specifies the initial job values for any print jobs. For example, "notification-profile" can be set so that when a print job is successfully sent to a printer, e-mail is sent to the user. .TP \fB${XPCONFIGDIR}/C/print/models/PSdefault/model\-config\fR, \fB${XPCONFIGDIR}/C/print/models/PSdefault/fonts/fonts.dir\fR, \fB${XPCONFIGDIR}/C/print/models/PSdefault/fonts/9nb00051.pmf\fR, \fB${XPCONFIGDIR}/C/print/models/PSdefault/fonts/9nb00093.pmf\fR The 'model-config' file has attributes that describe the printer model\(cqs capabilities and default settings. Printer model fonts may also be present. The model-config file also identifies the print ddx driver to be used. For each printer model supported, a complete hierarchy of files should exist. In most cases, these files do not need to be modified. .TP \fB${XPCONFIGDIR}/C/print/ddx\-config/raster/pcl\fR, \fB${XPCONFIGDIR}/C/print/ddx\-config/raster/pdf\fR, \fB${XPCONFIGDIR}/C/print/ddx\-config/raster/postscript\fR The print ddx drivers can have highly specific configuration files to control their behavior. In most cases, these files do not need to be modified. .PP More information in how to configure and customize the X print server can be found in the \fBXprt\fR(__appmansuffix__) manual page. .SH "STARTING UP" The summary checklist for starting the X Print Service is as follows: .TP 0.4i 1. Choose an execution model for the X Print Service. The X Print Service can be run on a per-user session basis, per machine basis, or can be run on a few machines globally available to a number of users. .TP 0.4i 2. If print jobs are to be submitted to a spooler (almost always the case), make sure all needed printers are available to the spooler subsystem (most often \fBlp\fR(1)) on the same machine running the X Print Service. .TP 0.4i 3. Configure the X Print Server. See ``X Print Server Configuration''. .TP 0.4i 4. Depending on #1, start the X Print Server process "Xprt", and then the toolkit-specific Print Dialog Manager Daemon process (such as CDEnext's "dtpdmd") at the appropriate times. Note that libXprintUtils-based applications/toolkits do not need a Print Dialog Manager Daemon process to use Xprint. .PP The details are described below. .PP Because the X Print Service is based on X, it can be easily distributed. The most significant factors in which execution model to choose will be driven by: .TP 0.2i \(bu how many printers will be accessable through the printer subsystem on any given machine. A system administrator may choose to cluster printers on a few given machines, or scatter them across an organization and possibly make extensive use of remote spoolers to make them globally available. .TP 0.2i \(bu how many machines will need a copy of the X Print Server configuration files. The files have been architected so that one super-set version of them can be maintained and distributed (e.g. via NFS), and a per-machine or per-user version of the `Xprinters' is all that is needed to have the appropriate information in them utilized or ignored. .TP 0.2i \(bu how many users can demand services from a given X Print Service. .PP With the above in mind, some obvious execution models include: .TP 0.2i \(bu Global - in this model, the system administrator is choosing to run the X Print Service on a *few* select machines with appropriate printers configured, and allow clients access to the global resource. This can centralize the administration of printers and configuration files, but may have to be monitored for performance loading. Startup would likely be done by boot-up scripts (such as \fB/etc/init.d/xprint\fR). .TP 0.2i \(bu Per-machine - every machine with potential X Print Service users would run the service. Printer and configuration file administration is decentralized, and usage would be limited to the users on the machine. Startup would likely be done by boot-up scripts (such as \fB/etc/init.d/xprint\fR). .TP 0.2i \(bu Per-user session - every user would run an entire X Print Service for themselves. In the future, the Video X Server normally started may contain Print X Server capability, so this model becomes very natural. Startup would likely be done at session login or by launching actions or processes manually once the user logs in. Note: Deamons like "dtpdmd" must be started after Xprt. .PP .PP Starting of the processes is straight forward. In strict order (example is for manually starting the X print server for CDEnext usage): .TP 0.4i 1. .nf [machineA] % Xprt [\-XpFile ] [:dispNum] & .fi Note that Xprt will look for configuration files in either a default location or where \fBXPCONFIGDIR\fR points. \fB\-XpFile\fR specifies an alternate `Xprinters' file, rather than the default one or `\fB${XPCONFIGDIR}/C/print/Xprinters\fR'. .TP 0.4i 2. .nf [machineA] % dtpdmd \-d machineA[:dispNum] [\-l /tmp/dtpdmd.log] & .fi The dtpdmd will maintain an X-Selection on the X-Server, and will start dtpdm's as required to service requests. .PP .PP In all but the per-user session model, the machine running the dtpdmd (thus dtpdm's) will need display authorization to the users video display. .SH "CLIENT CONFIGURATION" Once a X Print Server and dtpdmd have been started -- many of them in some cases -- clients will need to find and use them. There are two mechanisms that allow clients to discover X Print Servers and printers. .TP 0.2i \(bu "X Print Specifier" - assuming usage of the DtPrint/XprintUtils-based print applications, the following notation is understood: .nf printer_name@machine[:dispNum] .fi For example: .nf colorlj7@printhub:2 .fi In the above example, the X Print Server running at `printhub:2' is assumed to support the printer named `colorlj7'. .TP 0.2i \(bu \fB${XPSERVERLIST}\fR - assuming usage of the DtPrint print dialogs, the environment variable \fB${XPSERVERLIST}\fR can contain a list of X Print Servers. For example: .nf XPSERVERLIST="printhub:2 printhub:3 otherdept:0" .fi Then in the dialogs, only a printer name needs to be entered. The dialog will then search the X Print Servers in \fB${XPSERVERLIST}\fR for a server than supports the printer, and then establish contact. .PP .SH "END-USER SEQUENCE" From most CDEnext applications, printing is accomplished by bringing down the menu and selecting . This will result in the DtPrintSetupBox dialog, which will request the name of a printer, and offer limited capability to configure print options (e.g. number of copies). If the user wishes, they can select , which will start a dtpdm capable of modifying additional print options. Finally, the user should select . .SH ENVIRONMENT .TP \fB${XPCONFIGDIR}\fR This environment variable points to the root of the Xprint server configuration directory hierarchy. If the variable is not defined, the default path is be assumed. The default path may be \fB/usr/X11R6/lib/X11/xserver/\fR, \fB/usr/lib/X11/xserver/\fR, \fB/usr/share/Xprint/xserver/\fR or \fB/usr/openwin/server/etc/XpConfig\fR, depending on the system, and may be configured in \fB/etc/init.d/xprint\fR. .TP \fB${LANG}\fR This environment variable selects the locale settings used by the Xprint server. Xprt allows language-specific settings (stored in \fB${XPCONFIGDIR}/${LANG}/print/\fR) which will override the default settings (stored in \fB${XPCONFIGDIR}/C/print/\fR). If \fB${LANG}\fR is not set "C" is assumed. .TP \fB${XPSERVERLIST}\fR The environment variable \fB${XPSERVERLIST}\fR contains a list of display identifiers (separated by whitespace) which tell an application where it can find the Xprint servers. Usually \fB${XPSERVERLIST}\fR is set by the profile startup scripts (e.g. \fB/etc/profile\fR or \fB/etc/profile.d/xprint.sh\fR) using the output of \fB/etc/init.d/xprint get_xpserverlist\fR. Example: .nf export XPSERVERLIST="`/etc/init.d/xprint get_xpserverlist`" .fi Alternatively \fB${XPSERVERLIST}\fR can be set manually. Example: .nf export XPSERVERLIST="littlecat:80 bitdog:72" .fi instructs an application to find an Xprint server at display 80 on the machine "littlecat" and at display 72 on the machine bigdog. .TP \fB${XPRINTER}\fR The environment variable \fB${XPRINTER}\fR defines the default printer used by print applications. The syntax is either \fIprintername\fR or \fIprintername\fR@\fIdisplay\fR. Examples: .RS .TP \fBXPRINTER=ps003\fR tells an application to look for the first printer named "ps003" on all Xprint servers. .TP \fBXPRINTER=hplaser19@littlecat:80\fR tells an application to use the printer "hplaser19" on the Xprint server at display "littlecat:80". .RE If \fB${XPRINTER}\fR is not set the applications will examine the values of the \fB${PDPRINTER}\fR, \fB${LPDEST}\fR, and \fB${PRINTER}\fR environment variables (in that order). .SH "SEE ALSO" \fBX11\fR(__miscmansuffix__), \fBxplsprinters\fR(__appmansuffix__), \fBxprehashprinterlist\fR(__appmansuffix__), \fBxphelloworld\fR(__appmansuffix__), \fBxpxmhelloworld\fR(__appmansuffix__), \fBxpawhelloworld\fR(__appmansuffix__), \fBxpxthelloworld\fR(__appmansuffix__), \fBxpsimplehelloworld\fR(__appmansuffix__), \fBXserver\fR(__appmansuffix__), \fBXprt\fR(__appmansuffix__), \fBlibXp\fR(__libmansuffix__), \fBlibXprintUtils\fR(__libmansuffix__), \fBlibXprintAppUtils\fR(__libmansuffix__), \fBXmPrintShell\fR(__libmansuffix__), \fBXawPrintShell\fR(__libmansuffix__), Xprint FAQ (http://xprint.mozdev.org/docs/Xprint_FAQ.html), Xprint main site (http://xprint.mozdev.org/) .SH AUTHORS This manual page was written by Roland Mainz based on the original X11R6.6 \fBxc/programs/Xserver/XpConfig/README\fR. printer names to model configurations (see 'model-config' below). For example, "mylaser" could be mapped to a "HPDJ1600C", and all other arbitrary printers could be mapped to a default, such as "HPLJ4SI". When depending on \fBlpstat\fR(1) in the Xprinters file, setting up defaults in 'printer' becomes all the more important. .TP \fB${XPCONFIGDIR}/C/print/attributes/document\fR The 'document' file specifies theprintproto-1.0.5/man/Xprint.sgml000064401431060000012000000671001150261000300171320ustar00alancstaff00002660200007 Xprint __miscmansuffix__ Xprint The "X print service" - a portable, network-transparent printing system based on the X11 protocol Xprint is a very flexible, extensible, scaleable, client/server print system based on ISO 10175 (and some other specs) and the X11 rendering protocol. Using Xprint an application can search, query and use devices like printers, FAX machines or create documents in formats like PDF. In particular, an application can seek a printer, query supported attributes (like paper size, trays, fonts etc.), configure the printer device to match it’s needs and print on it like on any other X device reusing parts of the code which is used for the video card Xserver. OVERVIEW The "X Print Service" technology allows X rendering to devices such as printers and fax. Most of the service is available in the X11 technology stack as Xp, with the remainder in single toolkit stacks (e.g. DtPrint for CDE). Modifications have also been made to the LessTif/Motif/Qt technology stacks to support Xprint. The Xp portion consists of: Xp Extension for the X-Server (included in the X-Server Xprt) Xp Extension API for the client side (libXp/libXprintUtils) PCL ddx driver that converts core X to native PCL PDF ddx driver that converts core X to native PDF PostScript ddx driver that converts core X to native PostScript Raster ddx driver that generates xwd rasters which can be converted to PCL, PDF or PostScript rasters From an X clients perspective, it can attach to one of two nearly identical X-Servers, a "Video" X-Server, and a "Print" X-Server which has the additional Xp capability but otherwise looks and behaves the same. HOW THE X PRINT SERVICE WORKS The X Print Service expands on the traditional X-Server and Xlib world in four ways. Most obvious is the use of "print ddx drivers" instead of "video ddx drivers". While a video ddx driver modifies pixels in a video frame buffer, a print ddx driver generates "page description language (PDL)" output (such as PCL, PDF or PostScript) or sends the print rendering instructions to a platform-specific print API (like Win32/GDI). Once a print ddx driver generates PDL output, it can be sent to a spooler such as lp1 or retrieved by the client (to implement functionality like "print-to-file"). Though not currently done, a single X-Server can support both print and video ddx drivers. Since printers support "paged" output, unlike video, a portion of the Xp Extension supports APIs to delineate printed output. For example, XpStartPage and XpEndPage tell the X-Server where a physical page starts and ends in an otherwise continuous stream of X rendering primitives. Likewise, XpStartJob and XpEndJob determine when a collection of pages starts and ends. XpEndJob typically causes the generated PDL to be submitted to a spooler, such as lp1. Since printers have extensive capabilities, another portion of the Xp Extension supports APIs to manipulate "print contexts". Once a printer is selected using the Xp Extension API, a print context to represent it can be created. A print context embodies the printer selected - it contains the printer's default capabilities, selectable range of capabilities, printer state, and generated output. Some "attributes" within the print context can be modified by the user, and the X-Server and print ddx driver will react accordingly. For example, the attribute "content-orientation" can be set to "landscape" or "portrait" (if the printer supports these values - which can be queried using the Xprint API as well). Since printers can have "built in" fonts, the Xp Extension in the X-Server works with the print ddx drivers to make available (for printing only) additional fonts on a per print context basis. When a print context is created and set for a given printer, the X font calls may be able to access additional printer fonts. To do this (typically), the X-Server must have access to "printer metric files" (.pmf) that describe at minimum the metrics of the built in fonts. USAGE There are three tasks to start the X Print Service: configuring the X Print Server, starting the X Print Service configuring the user session so that clients can find the running X Print Service The tasks are described in detail below. SERVER CONFIGURATION The X Print Server (Xprt) can read a number of configuration files which control its behavior and support for printers. Each vendor platform has a default location for this information. Xprt can also read the environment variable XPCONFIGDIR to locate alternate configuration directories. Common settings include: export XPCONFIGDIR=/X11/lib/X11/XpConfig/ export XPCONFIGDIR=/proj/x11/xc/programs/Xserver/XpConfig/ Xprt has many built-in defaults, and lacking any configuration files, will immediately try to support all printers visible via lpstat1. In order of importance for configuration by a system administrator, the configuration files for a "C" locale are as follows (see Xprt__appmansuffix__ for more details (including support for non-"C" locales)): ${XPCONFIGDIR}/C/print/Xprinters 'Xprinters' is the top most configuration file. It tells Xprt which specific printer names (e.g. mylaser) should be supported, and whether lpstat1 or other commands should be used to automatically supplement the list of printers. ${XPCONFIGDIR}/C/print/attributes/printer The 'printer' file maps printer names to model configurations (see 'model-config' below). For example, "mylaser" could be mapped to a "HPDJ1600C", and all other arbitrary printers could be mapped to a default, such as "HPLJ4SI". When depending on lpstat1 in the Xprinters file, setting up defaults in 'printer' becomes all the more important. ${XPCONFIGDIR}/C/print/attributes/document The 'document' file specifies the initial document values for any print jobs. For example, which paper tray to use, what default resolution, etc. ${XPCONFIGDIR}/C/print/attributes/job The 'job' file specifies the initial job values for any print jobs. For example, "notification-profile" can be set so that when a print job is successfully sent to a printer, e-mail is sent to the user. ${XPCONFIGDIR}/C/print/models/PSdefault/model-config ${XPCONFIGDIR}/C/print/models/PSdefault/fonts/fonts.dir ${XPCONFIGDIR}/C/print/models/PSdefault/fonts/9nb00051.pmf ${XPCONFIGDIR}/C/print/models/PSdefault/fonts/9nb00093.pmf The 'model-config' file has attributes that describe the printer model’s capabilities and default settings. Printer model fonts may also be present. The model-config file also identifies the print ddx driver to be used. For each printer model supported, a complete hierarchy of files should exist. In most cases, these files do not need to be modified. ${XPCONFIGDIR}/C/print/ddx-config/raster/pcl ${XPCONFIGDIR}/C/print/ddx-config/raster/pdf ${XPCONFIGDIR}/C/print/ddx-config/raster/postscript The print ddx drivers can have highly specific configuration files to control their behavior. In most cases, these files do not need to be modified. More information in how to configure and customize the X print server can be found in the Xprt__appmansuffix__ manual page. STARTING UP The summary checklist for starting the X Print Service is as follows: Choose an execution model for the X Print Service. The X Print Service can be run on a per-user session basis, per machine basis, or can be run on a few machines globally available to a number of users. If print jobs are to be submitted to a spooler (almost always the case), make sure all needed printers are available to the spooler subsystem (most often lp1) on the same machine running the X Print Service. Configure the X Print Server. See ``X Print Server Configuration''. Depending on #1, start the X Print Server process "Xprt", and then the toolkit-specific Print Dialog Manager Daemon process (such as CDEnext's "dtpdmd") at the appropriate times. Note that libXprintUtils-based applications/toolkits do not need a Print Dialog Manager Daemon process to use Xprint. The details are described below. Because the X Print Service is based on X, it can be easily distributed. The most significant factors in which execution model to choose will be driven by: how many printers will be accessable through the printer subsystem on any given machine. A system administrator may choose to cluster printers on a few given machines, or scatter them across an organization and possibly make extensive use of remote spoolers to make them globally available. how many machines will need a copy of the X Print Server configuration files. The files have been architected so that one super-set version of them can be maintained and distributed (e.g. via NFS), and a per-machine or per-user version of the `Xprinters' is all that is needed to have the appropriate information in them utilized or ignored. how many users can demand services from a given X Print Service. With the above in mind, some obvious execution models include: Global - in this model, the system administrator is choosing to run the X Print Service on a *few* select machines with appropriate printers configured, and allow clients access to the global resource. This can centralize the administration of printers and configuration files, but may have to be monitored for performance loading. Startup would likely be done by boot-up scripts (such as /etc/init.d/xprint). Per-machine - every machine with potential X Print Service users would run the service. Printer and configuration file administration is decentralized, and usage would be limited to the users on the machine. Startup would likely be done by boot-up scripts (such as /etc/init.d/xprint). Per-user session - every user would run an entire X Print Service for themselves. In the future, the Video X Server normally started may contain Print X Server capability, so this model becomes very natural. Startup would likely be done at session login or by launching actions or processes manually once the user logs in. Note: Deamons like "dtpdmd" must be started after Xprt. Starting of the processes is straight forward. In strict order (example is for manually starting the X print server for CDEnext usage): [machineA] % Xprt [-XpFile <Xprinters file>] [:dispNum] & Note that Xprt will look for configuration files in either a default location or where XPCONFIGDIR points. specifies an alternate `Xprinters' file, rather than the default one or `${XPCONFIGDIR}/C/print/Xprinters'. [machineA] % dtpdmd -d machineA[:dispNum] [-l /tmp/dtpdmd.log] & The dtpdmd will maintain an X-Selection on the X-Server, and will start dtpdm's as required to service requests. In all but the per-user session model, the machine running the dtpdmd (thus dtpdm's) will need display authorization to the users video display. CLIENT CONFIGURATION Once a X Print Server and dtpdmd have been started -- many of them in some cases -- clients will need to find and use them. There are two mechanisms that allow clients to discover X Print Servers and printers. "X Print Specifier" - assuming usage of the DtPrint/XprintUtils-based print applications, the following notation is understood: printer_name@machine[:dispNum] For example: colorlj7@printhub:2 In the above example, the X Print Server running at `printhub:2' is assumed to support the printer named `colorlj7'. ${XPSERVERLIST} - assuming usage of the DtPrint print dialogs, the environment variable ${XPSERVERLIST} can contain a list of X Print Servers. For example: XPSERVERLIST="printhub:2 printhub:3 otherdept:0" Then in the dialogs, only a printer name needs to be entered. The dialog will then search the X Print Servers in ${XPSERVERLIST} for a server than supports the printer, and then establish contact. END-USER SEQUENCE From most CDEnext applications, printing is accomplished by bringing down the <File> menu and selecting <Print...>. This will result in the DtPrintSetupBox dialog, which will request the name of a printer, and offer limited capability to configure print options (e.g. number of copies). If the user wishes, they can select <Setup...>, which will start a dtpdm capable of modifying additional print options. Finally, the user should select <Print>. ENVIRONMENT ${XPCONFIGDIR} This environment variable points to the root of the Xprint server configuration directory hierarchy. If the variable is not defined, the default path is be assumed. The default path may be /usr/X11R6/lib/X11/xserver/, /usr/lib/X11/xserver/, /usr/share/Xprint/xserver/ or /usr/openwin/server/etc/XpConfig, depending on the system, and may be configured in /etc/init.d/xprint. ${LANG} This environment variable selects the locale settings used by the Xprint server. Xprt allows language-specific settings (stored in ${XPCONFIGDIR}/${LANG}/print/) which will override the default settings (stored in ${XPCONFIGDIR}/C/print/). If ${LANG} is not set "C" is assumed. ${XPSERVERLIST} The environment variable ${XPSERVERLIST} contains a list of display identifiers (separated by whitespace) which tell an application where it can find the Xprint servers. Usually ${XPSERVERLIST} is set by the profile startup scripts (e.g. /etc/profile or /etc/profile.d/xprint.sh) using the output of /etc/init.d/xprint get_xpserverlist. Example: export XPSERVERLIST="`/etc/init.d/xprint get_xpserverlist`" Alternatively ${XPSERVERLIST} can be set manually. Example: export XPSERVERLIST="littlecat:80 bitdog:72" instructs an application to find an Xprint server at display 80 on the machine "littlecat" and at display 72 on the machine bigdog. ${XPRINTER} The environment variable ${XPRINTER} defines the default printer used by print applications. The syntax is either printername or printername@display. Examples: XPRINTER=ps003 tells an application to look for the first printer named "ps003" on all Xprint servers. XPRINTER=hplaser19@littlecat:80 tells an application to use the printer "hplaser19" on the Xprint server at display "littlecat:80". If ${XPRINTER} is not set the applications will examine the values of the ${PDPRINTER}, ${LPDEST}, and ${PRINTER} environment variables (in that order). SEE ALSO X11__miscmansuffix__ xplsprinters__appmansuffix__ xprehashprinterlist__appmansuffix__ xphelloworld__appmansuffix__ xpxmhelloworld__appmansuffix__ xpawhelloworld__appmansuffix__ xpxthelloworld__appmansuffix__ xpsimplehelloworld__appmansuffix__ Xserver__appmansuffix__ Xprt__appmansuffix__ libXp__libmansuffix__ libXprintUtils__libmansuffix__ libXprintAppUtils__libmansuffix__ XmPrintShell__libmansuffix__ XawPrintShell__libmansuffix__ Xprint FAQ (http://xprint.mozdev.org/docs/Xprint_FAQ.html) Xprint main site (http://xprint.mozdev.org/) AUTHORS This manual page was written by Roland Mainz roland.mainz@nrubsig.org based on the original X11R6.6 xc/programs/Xserver/XpConfig/README. specifies an alternate `Xprinters' file, rather than the default one or `${XPCONFIGDIR}/C/print/Xprinters'. [machineA] % dtpdmd -d machineA[:dispNum] [-l /tmp/dtpdmd.log] & The dtpdmd wprintproto-1.0.5/configure000075501431060000012000005142261151122464400161400ustar00alancstaff00002660200007#! /bin/sh # Guess values for system-dependent variables and create Makefiles. # Generated by GNU Autoconf 2.68 for PrintProto 1.0.5. # # Report bugs to . # # # Copyright (C) 1992, 1993, 1994, 1995, 1996, 1998, 1999, 2000, 2001, # 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010 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 "X$1" : "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 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" 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 test \$(( 1 + 1 )) = 2 || 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 : # 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 export CONFIG_SHELL 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+"$@"} 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 $0: https://bugs.freedesktop.org/enter_bug.cgi?product=xorg $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_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; } # 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 -p'. ln -s conf$$.file conf$$.dir 2>/dev/null && test ! -f conf$$.exe || as_ln_s='cp -p' elif ln conf$$.file conf$$ 2>/dev/null; then as_ln_s=ln else as_ln_s='cp -p' fi else as_ln_s='cp -p' 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 if test -x / >/dev/null 2>&1; then as_test_x='test -x' else if ls -dL / >/dev/null 2>&1; then as_ls_L_option=L else as_ls_L_option= fi as_test_x=' eval sh -c '\'' if test -d "$1"; then test -d "$1/."; else case $1 in #( -*)set "./$1";; esac; case `ls -ld'$as_ls_L_option' "$1" 2>/dev/null` in #(( ???[sx]*):;;*)false;;esac;fi '\'' sh ' fi as_executable_p=$as_test_x # 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 &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='PrintProto' PACKAGE_TARNAME='printproto' PACKAGE_VERSION='1.0.5' PACKAGE_STRING='PrintProto 1.0.5' PACKAGE_BUGREPORT='https://bugs.freedesktop.org/enter_bug.cgi?product=xorg' PACKAGE_URL='' ac_unique_file="Makefile.am" # Factoring default headers for most tests. ac_includes_default="\ #include #ifdef HAVE_SYS_TYPES_H # include #endif #ifdef HAVE_SYS_STAT_H # include #endif #ifdef STDC_HEADERS # include # include #else # ifdef HAVE_STDLIB_H # include # endif #endif #ifdef HAVE_STRING_H # if !defined STDC_HEADERS && defined HAVE_MEMORY_H # include # endif # include #endif #ifdef HAVE_STRINGS_H # include #endif #ifdef HAVE_INTTYPES_H # include #endif #ifdef HAVE_STDINT_H # include #endif #ifdef HAVE_UNISTD_H # include #endif" ac_subst_vars='am__EXEEXT_FALSE am__EXEEXT_TRUE LTLIBOBJS LIBOBJS AM_BACKSLASH AM_DEFAULT_VERBOSITY MAN_SUBSTS XORG_MAN_PAGE ADMIN_MAN_DIR DRIVER_MAN_DIR MISC_MAN_DIR FILE_MAN_DIR LIB_MAN_DIR APP_MAN_DIR ADMIN_MAN_SUFFIX DRIVER_MAN_SUFFIX MISC_MAN_SUFFIX FILE_MAN_SUFFIX LIB_MAN_SUFFIX APP_MAN_SUFFIX SED host_os host_vendor host_cpu host build_os build_vendor build_cpu build INSTALL_CMD PKG_CONFIG CHANGELOG_CMD CWARNFLAGS EGREP GREP CPP am__fastdepCC_FALSE am__fastdepCC_TRUE CCDEPMODE AMDEPBACKSLASH AMDEP_FALSE AMDEP_TRUE am__quote am__include DEPDIR OBJEXT EXEEXT ac_ct_CC CPPFLAGS LDFLAGS CFLAGS CC MAINT MAINTAINER_MODE_FALSE MAINTAINER_MODE_TRUE am__untar am__tar AMTAR am__leading_dot SET_MAKE AWK mkdir_p MKDIR_P INSTALL_STRIP_PROGRAM STRIP install_sh MAKEINFO AUTOHEADER AUTOMAKE AUTOCONF ACLOCAL VERSION PACKAGE CYGPATH_W am__isrc 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 enable_maintainer_mode enable_dependency_tracking enable_strict_compilation enable_silent_rules ' ac_precious_vars='build_alias host_alias target_alias CC CFLAGS LDFLAGS LIBS CPPFLAGS CPP PKG_CONFIG' # 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 $as_echo "$as_me: WARNING: if you wanted to set the --build type, don't use --host. If a cross compiler is detected then cross compile mode will be used" >&2 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 PrintProto 1.0.5 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/printproto] --htmldir=DIR html documentation [DOCDIR] --dvidir=DIR dvi documentation [DOCDIR] --pdfdir=DIR pdf documentation [DOCDIR] --psdir=DIR ps documentation [DOCDIR] _ACEOF cat <<\_ACEOF Program names: --program-prefix=PREFIX prepend PREFIX to installed program names --program-suffix=SUFFIX append SUFFIX to installed program names --program-transform-name=PROGRAM run sed PROGRAM on installed program names System types: --build=BUILD configure for building on BUILD [guessed] --host=HOST cross-compile to build programs to run on HOST [BUILD] _ACEOF fi if test -n "$ac_init_help"; then case $ac_init_help in short | recursive ) echo "Configuration of PrintProto 1.0.5:";; esac cat <<\_ACEOF Optional Features: --disable-option-checking ignore unrecognized --enable/--with options --disable-FEATURE do not include FEATURE (same as --enable-FEATURE=no) --enable-FEATURE[=ARG] include FEATURE [ARG=yes] --enable-maintainer-mode enable make rules and dependencies not useful (and sometimes confusing) to the casual installer --disable-dependency-tracking speeds up one-time build --enable-dependency-tracking do not reject slow dependency extractors --enable-strict-compilation Enable all warnings from compiler and make them errors (default: disabled) --enable-silent-rules less verbose build output (undo: `make V=1') --disable-silent-rules verbose build output (undo: `make V=0') Some influential environment variables: CC C compiler command CFLAGS C compiler flags LDFLAGS linker flags, e.g. -L if you have libraries in a nonstandard directory LIBS libraries to pass to the linker, e.g. -l CPPFLAGS (Objective) C/C++ preprocessor flags, e.g. -I if you have headers in a nonstandard directory CPP C preprocessor PKG_CONFIG path to pkg-config utility Use these variables to override the choices made by `configure' or to help it to find libraries and programs with nonstandard names/locations. Report bugs to . _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 PrintProto configure 1.0.5 generated by GNU Autoconf 2.68 Copyright (C) 2010 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. ## ## ------------------------ ## # ac_fn_c_try_compile LINENO # -------------------------- # Try to compile conftest.$ac_ext, and return whether this succeeded. ac_fn_c_try_compile () { as_lineno=${as_lineno-"$1"} as_lineno_stack=as_lineno_stack=$as_lineno_stack rm -f conftest.$ac_objext if { { ac_try="$ac_compile" case "(($ac_try" in *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; *) ac_try_echo=$ac_try;; esac eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\"" $as_echo "$ac_try_echo"; } >&5 (eval "$ac_compile") 2>conftest.err ac_status=$? if test -s conftest.err; then grep -v '^ *+' conftest.err >conftest.er1 cat conftest.er1 >&5 mv -f conftest.er1 conftest.err fi $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 test $ac_status = 0; } && { test -z "$ac_c_werror_flag" || test ! -s conftest.err } && test -s conftest.$ac_objext; then : ac_retval=0 else $as_echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 ac_retval=1 fi eval $as_lineno_stack; ${as_lineno_stack:+:} unset as_lineno as_fn_set_status $ac_retval } # ac_fn_c_try_compile # ac_fn_c_check_decl LINENO SYMBOL VAR INCLUDES # --------------------------------------------- # Tests whether SYMBOL is declared in INCLUDES, setting cache variable VAR # accordingly. ac_fn_c_check_decl () { as_lineno=${as_lineno-"$1"} as_lineno_stack=as_lineno_stack=$as_lineno_stack as_decl_name=`echo $2|sed 's/ *(.*//'` as_decl_use=`echo $2|sed -e 's/(/((/' -e 's/)/) 0&/' -e 's/,/) 0& (/g'` { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether $as_decl_name is declared" >&5 $as_echo_n "checking whether $as_decl_name is declared... " >&6; } if eval \${$3+:} false; then : $as_echo_n "(cached) " >&6 else cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ $4 int main () { #ifndef $as_decl_name #ifdef __cplusplus (void) $as_decl_use; #else (void) $as_decl_name; #endif #endif ; return 0; } _ACEOF if ac_fn_c_try_compile "$LINENO"; then : eval "$3=yes" else eval "$3=no" fi rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext fi eval ac_res=\$$3 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_res" >&5 $as_echo "$ac_res" >&6; } eval $as_lineno_stack; ${as_lineno_stack:+:} unset as_lineno } # ac_fn_c_check_decl # ac_fn_c_try_cpp LINENO # ---------------------- # Try to preprocess conftest.$ac_ext, and return whether this succeeded. ac_fn_c_try_cpp () { as_lineno=${as_lineno-"$1"} as_lineno_stack=as_lineno_stack=$as_lineno_stack if { { ac_try="$ac_cpp conftest.$ac_ext" case "(($ac_try" in *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; *) ac_try_echo=$ac_try;; esac eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\"" $as_echo "$ac_try_echo"; } >&5 (eval "$ac_cpp conftest.$ac_ext") 2>conftest.err ac_status=$? if test -s conftest.err; then grep -v '^ *+' conftest.err >conftest.er1 cat conftest.er1 >&5 mv -f conftest.er1 conftest.err fi $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 test $ac_status = 0; } > conftest.i && { test -z "$ac_c_preproc_warn_flag$ac_c_werror_flag" || test ! -s conftest.err }; then : ac_retval=0 else $as_echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 ac_retval=1 fi eval $as_lineno_stack; ${as_lineno_stack:+:} unset as_lineno as_fn_set_status $ac_retval } # ac_fn_c_try_cpp # ac_fn_c_try_run LINENO # ---------------------- # Try to link conftest.$ac_ext, and return whether this succeeded. Assumes # that executables *can* be run. ac_fn_c_try_run () { as_lineno=${as_lineno-"$1"} as_lineno_stack=as_lineno_stack=$as_lineno_stack if { { ac_try="$ac_link" case "(($ac_try" in *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; *) ac_try_echo=$ac_try;; esac eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\"" $as_echo "$ac_try_echo"; } >&5 (eval "$ac_link") 2>&5 ac_status=$? $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 test $ac_status = 0; } && { ac_try='./conftest$ac_exeext' { { case "(($ac_try" in *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; *) ac_try_echo=$ac_try;; esac eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\"" $as_echo "$ac_try_echo"; } >&5 (eval "$ac_try") 2>&5 ac_status=$? $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 test $ac_status = 0; }; }; then : ac_retval=0 else $as_echo "$as_me: program exited with status $ac_status" >&5 $as_echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 ac_retval=$ac_status fi rm -rf conftest.dSYM conftest_ipa8_conftest.oo eval $as_lineno_stack; ${as_lineno_stack:+:} unset as_lineno as_fn_set_status $ac_retval } # ac_fn_c_try_run # ac_fn_c_check_header_compile LINENO HEADER VAR INCLUDES # ------------------------------------------------------- # Tests whether HEADER exists and can be compiled using the include files in # INCLUDES, setting the cache variable VAR accordingly. ac_fn_c_check_header_compile () { as_lineno=${as_lineno-"$1"} as_lineno_stack=as_lineno_stack=$as_lineno_stack { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $2" >&5 $as_echo_n "checking for $2... " >&6; } if eval \${$3+:} false; then : $as_echo_n "(cached) " >&6 else cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ $4 #include <$2> _ACEOF if ac_fn_c_try_compile "$LINENO"; then : eval "$3=yes" else eval "$3=no" fi rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext fi eval ac_res=\$$3 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_res" >&5 $as_echo "$ac_res" >&6; } eval $as_lineno_stack; ${as_lineno_stack:+:} unset as_lineno } # ac_fn_c_check_header_compile 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 PrintProto $as_me 1.0.5, which was generated by GNU Autoconf 2.68. 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 # Initialize Automake am__api_version='1.11' 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 { test -f "$as_dir/$ac_prog$ac_exec_ext" && $as_test_x "$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 whether build environment is sane" >&5 $as_echo_n "checking whether build environment is sane... " >&6; } # Just in case sleep 1 echo timestamp > conftest.file # Reject unsafe characters in $srcdir or the absolute working directory # name. Accept space and tab only in the latter. am_lf=' ' case `pwd` in *[\\\"\#\$\&\'\`$am_lf]*) as_fn_error $? "unsafe absolute working directory name" "$LINENO" 5;; esac case $srcdir in *[\\\"\#\$\&\'\`$am_lf\ \ ]*) as_fn_error $? "unsafe srcdir value: \`$srcdir'" "$LINENO" 5;; esac # Do `set' in a subshell so we don't clobber the current shell's # arguments. Must try -L first in case configure is actually a # symlink; some systems play weird games with the mod time of symlinks # (eg FreeBSD returns the mod time of the symlink's containing # directory). if ( set X `ls -Lt "$srcdir/configure" conftest.file 2> /dev/null` if test "$*" = "X"; then # -L didn't work. set X `ls -t "$srcdir/configure" conftest.file` fi rm -f conftest.file if test "$*" != "X $srcdir/configure conftest.file" \ && test "$*" != "X conftest.file $srcdir/configure"; then # If neither matched, then we have a broken ls. This can happen # if, for instance, CONFIG_SHELL is bash and it inherits a # broken ls alias from the environment. This has actually # happened. Such a system could not be considered "sane". as_fn_error $? "ls -t appears to fail. Make sure there is not a broken alias in your environment" "$LINENO" 5 fi test "$2" = conftest.file ) then # Ok. : else as_fn_error $? "newly created file is older than distributed files! Check your system clock" "$LINENO" 5 fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5 $as_echo "yes" >&6; } test "$program_prefix" != NONE && program_transform_name="s&^&$program_prefix&;$program_transform_name" # Use a double $ so make ignores it. test "$program_suffix" != NONE && program_transform_name="s&\$&$program_suffix&;$program_transform_name" # Double any \ or $. # By default was `s,x,x', remove it if useless. ac_script='s/[\\$]/&&/g;s/;s,x,x,$//' program_transform_name=`$as_echo "$program_transform_name" | sed "$ac_script"` # expand $ac_aux_dir to an absolute path am_aux_dir=`cd $ac_aux_dir && pwd` if test x"${MISSING+set}" != xset; then case $am_aux_dir in *\ * | *\ *) MISSING="\${SHELL} \"$am_aux_dir/missing\"" ;; *) MISSING="\${SHELL} $am_aux_dir/missing" ;; esac fi # Use eval to expand $SHELL if eval "$MISSING --run true"; then am_missing_run="$MISSING --run " else am_missing_run= { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: \`missing' script is too old or missing" >&5 $as_echo "$as_me: WARNING: \`missing' script is too old or missing" >&2;} fi if test x"${install_sh}" != xset; then case $am_aux_dir in *\ * | *\ *) install_sh="\${SHELL} '$am_aux_dir/install-sh'" ;; *) install_sh="\${SHELL} $am_aux_dir/install-sh" esac fi # Installed binaries are usually stripped using `strip' when the user # run `make install-strip'. However `strip' might not be the right # tool to use in cross-compilation environments, therefore Automake # will honor the `STRIP' environment variable to overrule this program. if test "$cross_compiling" != no; then if test -n "$ac_tool_prefix"; then # Extract the first word of "${ac_tool_prefix}strip", so it can be a program name with args. set dummy ${ac_tool_prefix}strip; 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_prog_STRIP+:} false; then : $as_echo_n "(cached) " >&6 else if test -n "$STRIP"; then ac_cv_prog_STRIP="$STRIP" # Let the user override the test. else 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 { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then ac_cv_prog_STRIP="${ac_tool_prefix}strip" $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 fi fi STRIP=$ac_cv_prog_STRIP if test -n "$STRIP"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: $STRIP" >&5 $as_echo "$STRIP" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi fi if test -z "$ac_cv_prog_STRIP"; then ac_ct_STRIP=$STRIP # Extract the first word of "strip", so it can be a program name with args. set dummy strip; 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_prog_ac_ct_STRIP+:} false; then : $as_echo_n "(cached) " >&6 else if test -n "$ac_ct_STRIP"; then ac_cv_prog_ac_ct_STRIP="$ac_ct_STRIP" # Let the user override the test. else 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 { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then ac_cv_prog_ac_ct_STRIP="strip" $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 fi fi ac_ct_STRIP=$ac_cv_prog_ac_ct_STRIP if test -n "$ac_ct_STRIP"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_ct_STRIP" >&5 $as_echo "$ac_ct_STRIP" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi if test "x$ac_ct_STRIP" = x; then STRIP=":" else case $cross_compiling:$ac_tool_warned in yes:) { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet" >&5 $as_echo "$as_me: WARNING: using cross tools not prefixed with host triplet" >&2;} ac_tool_warned=yes ;; esac STRIP=$ac_ct_STRIP fi else STRIP="$ac_cv_prog_STRIP" fi fi INSTALL_STRIP_PROGRAM="\$(install_sh) -c -s" { $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 { test -f "$as_dir/$ac_prog$ac_exec_ext" && $as_test_x "$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; } mkdir_p="$MKDIR_P" case $mkdir_p in [\\/$]* | ?:[\\/]*) ;; */*) mkdir_p="\$(top_builddir)/$mkdir_p" ;; esac for ac_prog in gawk mawk nawk awk do # Extract the first word of "$ac_prog", so it can be a program name with args. set dummy $ac_prog; 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_prog_AWK+:} false; then : $as_echo_n "(cached) " >&6 else if test -n "$AWK"; then ac_cv_prog_AWK="$AWK" # Let the user override the test. else 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 { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then ac_cv_prog_AWK="$ac_prog" $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 fi fi AWK=$ac_cv_prog_AWK if test -n "$AWK"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: $AWK" >&5 $as_echo "$AWK" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi test -n "$AWK" && break done { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether ${MAKE-make} sets \$(MAKE)" >&5 $as_echo_n "checking whether ${MAKE-make} sets \$(MAKE)... " >&6; } set x ${MAKE-make} ac_make=`$as_echo "$2" | sed 's/+/p/g; s/[^a-zA-Z0-9_]/_/g'` if eval \${ac_cv_prog_make_${ac_make}_set+:} false; then : $as_echo_n "(cached) " >&6 else cat >conftest.make <<\_ACEOF SHELL = /bin/sh all: @echo '@@@%%%=$(MAKE)=@@@%%%' _ACEOF # GNU make sometimes prints "make[1]: Entering ...", which would confuse us. case `${MAKE-make} -f conftest.make 2>/dev/null` in *@@@%%%=?*=@@@%%%*) eval ac_cv_prog_make_${ac_make}_set=yes;; *) eval ac_cv_prog_make_${ac_make}_set=no;; esac rm -f conftest.make fi if eval test \$ac_cv_prog_make_${ac_make}_set = yes; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5 $as_echo "yes" >&6; } SET_MAKE= else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } SET_MAKE="MAKE=${MAKE-make}" fi rm -rf .tst 2>/dev/null mkdir .tst 2>/dev/null if test -d .tst; then am__leading_dot=. else am__leading_dot=_ fi rmdir .tst 2>/dev/null if test "`cd $srcdir && pwd`" != "`pwd`"; then # Use -I$(srcdir) only when $(srcdir) != ., so that make's output # is not polluted with repeated "-I." am__isrc=' -I$(srcdir)' # test to see if srcdir already configured if test -f $srcdir/config.status; then as_fn_error $? "source directory already configured; run \"make distclean\" there first" "$LINENO" 5 fi fi # test whether we have cygpath if test -z "$CYGPATH_W"; then if (cygpath --version) >/dev/null 2>/dev/null; then CYGPATH_W='cygpath -w' else CYGPATH_W=echo fi fi # Define the identity of the package. PACKAGE='printproto' VERSION='1.0.5' cat >>confdefs.h <<_ACEOF #define PACKAGE "$PACKAGE" _ACEOF cat >>confdefs.h <<_ACEOF #define VERSION "$VERSION" _ACEOF # Some tools Automake needs. ACLOCAL=${ACLOCAL-"${am_missing_run}aclocal-${am__api_version}"} AUTOCONF=${AUTOCONF-"${am_missing_run}autoconf"} AUTOMAKE=${AUTOMAKE-"${am_missing_run}automake-${am__api_version}"} AUTOHEADER=${AUTOHEADER-"${am_missing_run}autoheader"} MAKEINFO=${MAKEINFO-"${am_missing_run}makeinfo"} # We need awk for the "check" target. The system "awk" is bad on # some platforms. # Always define AMTAR for backward compatibility. AMTAR=${AMTAR-"${am_missing_run}tar"} am__tar='${AMTAR} chof - "$$tardir"'; am__untar='${AMTAR} xf -' { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether to enable maintainer-specific portions of Makefiles" >&5 $as_echo_n "checking whether to enable maintainer-specific portions of Makefiles... " >&6; } # Check whether --enable-maintainer-mode was given. if test "${enable_maintainer_mode+set}" = set; then : enableval=$enable_maintainer_mode; USE_MAINTAINER_MODE=$enableval else USE_MAINTAINER_MODE=no fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $USE_MAINTAINER_MODE" >&5 $as_echo "$USE_MAINTAINER_MODE" >&6; } if test $USE_MAINTAINER_MODE = yes; then MAINTAINER_MODE_TRUE= MAINTAINER_MODE_FALSE='#' else MAINTAINER_MODE_TRUE='#' MAINTAINER_MODE_FALSE= fi MAINT=$MAINTAINER_MODE_TRUE # Require xorg-macros 1.3 or later: XORG_DEFAULT_OPTIONS DEPDIR="${am__leading_dot}deps" ac_config_commands="$ac_config_commands depfiles" am_make=${MAKE-make} cat > confinc << 'END' am__doit: @echo this is the am__doit target .PHONY: am__doit END # If we don't find an include directive, just comment out the code. { $as_echo "$as_me:${as_lineno-$LINENO}: checking for style of include used by $am_make" >&5 $as_echo_n "checking for style of include used by $am_make... " >&6; } am__include="#" am__quote= _am_result=none # First try GNU make style include. echo "include confinc" > confmf # Ignore all kinds of additional output from `make'. case `$am_make -s -f confmf 2> /dev/null` in #( *the\ am__doit\ target*) am__include=include am__quote= _am_result=GNU ;; esac # Now try BSD make style include. if test "$am__include" = "#"; then echo '.include "confinc"' > confmf case `$am_make -s -f confmf 2> /dev/null` in #( *the\ am__doit\ target*) am__include=.include am__quote="\"" _am_result=BSD ;; esac fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $_am_result" >&5 $as_echo "$_am_result" >&6; } rm -f confinc confmf # Check whether --enable-dependency-tracking was given. if test "${enable_dependency_tracking+set}" = set; then : enableval=$enable_dependency_tracking; fi if test "x$enable_dependency_tracking" != xno; then am_depcomp="$ac_aux_dir/depcomp" AMDEPBACKSLASH='\' fi if test "x$enable_dependency_tracking" != xno; then AMDEP_TRUE= AMDEP_FALSE='#' else AMDEP_TRUE='#' AMDEP_FALSE= fi 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 if test -n "$ac_tool_prefix"; then # Extract the first word of "${ac_tool_prefix}gcc", so it can be a program name with args. set dummy ${ac_tool_prefix}gcc; 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_prog_CC+:} false; then : $as_echo_n "(cached) " >&6 else if test -n "$CC"; then ac_cv_prog_CC="$CC" # Let the user override the test. else 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 { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then ac_cv_prog_CC="${ac_tool_prefix}gcc" $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 fi fi CC=$ac_cv_prog_CC if test -n "$CC"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: $CC" >&5 $as_echo "$CC" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi fi if test -z "$ac_cv_prog_CC"; then ac_ct_CC=$CC # Extract the first word of "gcc", so it can be a program name with args. set dummy gcc; 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_prog_ac_ct_CC+:} false; then : $as_echo_n "(cached) " >&6 else if test -n "$ac_ct_CC"; then ac_cv_prog_ac_ct_CC="$ac_ct_CC" # Let the user override the test. else 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 { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then ac_cv_prog_ac_ct_CC="gcc" $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 fi fi ac_ct_CC=$ac_cv_prog_ac_ct_CC if test -n "$ac_ct_CC"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_ct_CC" >&5 $as_echo "$ac_ct_CC" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi if test "x$ac_ct_CC" = x; then CC="" else case $cross_compiling:$ac_tool_warned in yes:) { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet" >&5 $as_echo "$as_me: WARNING: using cross tools not prefixed with host triplet" >&2;} ac_tool_warned=yes ;; esac CC=$ac_ct_CC fi else CC="$ac_cv_prog_CC" fi if test -z "$CC"; then if test -n "$ac_tool_prefix"; then # Extract the first word of "${ac_tool_prefix}cc", so it can be a program name with args. set dummy ${ac_tool_prefix}cc; 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_prog_CC+:} false; then : $as_echo_n "(cached) " >&6 else if test -n "$CC"; then ac_cv_prog_CC="$CC" # Let the user override the test. else 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 { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then ac_cv_prog_CC="${ac_tool_prefix}cc" $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 fi fi CC=$ac_cv_prog_CC if test -n "$CC"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: $CC" >&5 $as_echo "$CC" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi fi fi if test -z "$CC"; then # Extract the first word of "cc", so it can be a program name with args. set dummy cc; 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_prog_CC+:} false; then : $as_echo_n "(cached) " >&6 else if test -n "$CC"; then ac_cv_prog_CC="$CC" # Let the user override the test. else ac_prog_rejected=no 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 { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then if test "$as_dir/$ac_word$ac_exec_ext" = "/usr/ucb/cc"; then ac_prog_rejected=yes continue fi ac_cv_prog_CC="cc" $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 if test $ac_prog_rejected = yes; then # We found a bogon in the path, so make sure we never use it. set dummy $ac_cv_prog_CC shift if test $# != 0; then # We chose a different compiler from the bogus one. # However, it has the same basename, so the bogon will be chosen # first if we set CC to just the basename; use the full file name. shift ac_cv_prog_CC="$as_dir/$ac_word${1+' '}$@" fi fi fi fi CC=$ac_cv_prog_CC if test -n "$CC"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: $CC" >&5 $as_echo "$CC" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi fi if test -z "$CC"; then if test -n "$ac_tool_prefix"; then for ac_prog in cl.exe do # Extract the first word of "$ac_tool_prefix$ac_prog", so it can be a program name with args. set dummy $ac_tool_prefix$ac_prog; 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_prog_CC+:} false; then : $as_echo_n "(cached) " >&6 else if test -n "$CC"; then ac_cv_prog_CC="$CC" # Let the user override the test. else 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 { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then ac_cv_prog_CC="$ac_tool_prefix$ac_prog" $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 fi fi CC=$ac_cv_prog_CC if test -n "$CC"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: $CC" >&5 $as_echo "$CC" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi test -n "$CC" && break done fi if test -z "$CC"; then ac_ct_CC=$CC for ac_prog in cl.exe do # Extract the first word of "$ac_prog", so it can be a program name with args. set dummy $ac_prog; 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_prog_ac_ct_CC+:} false; then : $as_echo_n "(cached) " >&6 else if test -n "$ac_ct_CC"; then ac_cv_prog_ac_ct_CC="$ac_ct_CC" # Let the user override the test. else 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 { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then ac_cv_prog_ac_ct_CC="$ac_prog" $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 fi fi ac_ct_CC=$ac_cv_prog_ac_ct_CC if test -n "$ac_ct_CC"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_ct_CC" >&5 $as_echo "$ac_ct_CC" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi test -n "$ac_ct_CC" && break done if test "x$ac_ct_CC" = x; then CC="" else case $cross_compiling:$ac_tool_warned in yes:) { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet" >&5 $as_echo "$as_me: WARNING: using cross tools not prefixed with host triplet" >&2;} ac_tool_warned=yes ;; esac CC=$ac_ct_CC fi fi fi test -z "$CC" && { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5 $as_echo "$as_me: error: in \`$ac_pwd':" >&2;} as_fn_error $? "no acceptable C compiler found in \$PATH See \`config.log' for more details" "$LINENO" 5; } # Provide some information about the compiler. $as_echo "$as_me:${as_lineno-$LINENO}: checking for C compiler version" >&5 set X $ac_compile ac_compiler=$2 for ac_option in --version -v -V -qversion; do { { ac_try="$ac_compiler $ac_option >&5" case "(($ac_try" in *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; *) ac_try_echo=$ac_try;; esac eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\"" $as_echo "$ac_try_echo"; } >&5 (eval "$ac_compiler $ac_option >&5") 2>conftest.err ac_status=$? if test -s conftest.err; then sed '10a\ ... rest of stderr output deleted ... 10q' conftest.err >conftest.er1 cat conftest.er1 >&5 fi rm -f conftest.er1 conftest.err $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 test $ac_status = 0; } done cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ int main () { ; return 0; } _ACEOF ac_clean_files_save=$ac_clean_files ac_clean_files="$ac_clean_files a.out a.out.dSYM a.exe b.out" # Try to create an executable without -o first, disregard a.out. # It will help us diagnose broken compilers, and finding out an intuition # of exeext. { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether the C compiler works" >&5 $as_echo_n "checking whether the C compiler works... " >&6; } ac_link_default=`$as_echo "$ac_link" | sed 's/ -o *conftest[^ ]*//'` # The possible output files: ac_files="a.out conftest.exe conftest a.exe a_out.exe b.out conftest.*" ac_rmfiles= for ac_file in $ac_files do case $ac_file in *.$ac_ext | *.xcoff | *.tds | *.d | *.pdb | *.xSYM | *.bb | *.bbg | *.map | *.inf | *.dSYM | *.o | *.obj ) ;; * ) ac_rmfiles="$ac_rmfiles $ac_file";; esac done rm -f $ac_rmfiles if { { ac_try="$ac_link_default" case "(($ac_try" in *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; *) ac_try_echo=$ac_try;; esac eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\"" $as_echo "$ac_try_echo"; } >&5 (eval "$ac_link_default") 2>&5 ac_status=$? $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 test $ac_status = 0; }; then : # Autoconf-2.13 could set the ac_cv_exeext variable to `no'. # So ignore a value of `no', otherwise this would lead to `EXEEXT = no' # in a Makefile. We should not override ac_cv_exeext if it was cached, # so that the user can short-circuit this test for compilers unknown to # Autoconf. for ac_file in $ac_files '' do test -f "$ac_file" || continue case $ac_file in *.$ac_ext | *.xcoff | *.tds | *.d | *.pdb | *.xSYM | *.bb | *.bbg | *.map | *.inf | *.dSYM | *.o | *.obj ) ;; [ab].out ) # We found the default executable, but exeext='' is most # certainly right. break;; *.* ) if test "${ac_cv_exeext+set}" = set && test "$ac_cv_exeext" != no; then :; else ac_cv_exeext=`expr "$ac_file" : '[^.]*\(\..*\)'` fi # We set ac_cv_exeext here because the later test for it is not # safe: cross compilers may not add the suffix if given an `-o' # argument, so we may need to know it at that point already. # Even if this section looks crufty: it has the advantage of # actually working. break;; * ) break;; esac done test "$ac_cv_exeext" = no && ac_cv_exeext= else ac_file='' fi if test -z "$ac_file"; then : { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } $as_echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5 $as_echo "$as_me: error: in \`$ac_pwd':" >&2;} as_fn_error 77 "C compiler cannot create executables See \`config.log' for more details" "$LINENO" 5; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5 $as_echo "yes" >&6; } fi { $as_echo "$as_me:${as_lineno-$LINENO}: checking for C compiler default output file name" >&5 $as_echo_n "checking for C compiler default output file name... " >&6; } { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_file" >&5 $as_echo "$ac_file" >&6; } ac_exeext=$ac_cv_exeext rm -f -r a.out a.out.dSYM a.exe conftest$ac_cv_exeext b.out ac_clean_files=$ac_clean_files_save { $as_echo "$as_me:${as_lineno-$LINENO}: checking for suffix of executables" >&5 $as_echo_n "checking for suffix of executables... " >&6; } if { { ac_try="$ac_link" case "(($ac_try" in *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; *) ac_try_echo=$ac_try;; esac eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\"" $as_echo "$ac_try_echo"; } >&5 (eval "$ac_link") 2>&5 ac_status=$? $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 test $ac_status = 0; }; then : # If both `conftest.exe' and `conftest' are `present' (well, observable) # catch `conftest.exe'. For instance with Cygwin, `ls conftest' will # work properly (i.e., refer to `conftest.exe'), while it won't with # `rm'. for ac_file in conftest.exe conftest conftest.*; do test -f "$ac_file" || continue case $ac_file in *.$ac_ext | *.xcoff | *.tds | *.d | *.pdb | *.xSYM | *.bb | *.bbg | *.map | *.inf | *.dSYM | *.o | *.obj ) ;; *.* ) ac_cv_exeext=`expr "$ac_file" : '[^.]*\(\..*\)'` break;; * ) break;; esac done else { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5 $as_echo "$as_me: error: in \`$ac_pwd':" >&2;} as_fn_error $? "cannot compute suffix of executables: cannot compile and link See \`config.log' for more details" "$LINENO" 5; } fi rm -f conftest conftest$ac_cv_exeext { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_exeext" >&5 $as_echo "$ac_cv_exeext" >&6; } rm -f conftest.$ac_ext EXEEXT=$ac_cv_exeext ac_exeext=$EXEEXT cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ #include int main () { FILE *f = fopen ("conftest.out", "w"); return ferror (f) || fclose (f) != 0; ; return 0; } _ACEOF ac_clean_files="$ac_clean_files conftest.out" # Check that the compiler produces executables we can run. If not, either # the compiler is broken, or we cross compile. { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether we are cross compiling" >&5 $as_echo_n "checking whether we are cross compiling... " >&6; } if test "$cross_compiling" != yes; then { { ac_try="$ac_link" case "(($ac_try" in *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; *) ac_try_echo=$ac_try;; esac eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\"" $as_echo "$ac_try_echo"; } >&5 (eval "$ac_link") 2>&5 ac_status=$? $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 test $ac_status = 0; } if { ac_try='./conftest$ac_cv_exeext' { { case "(($ac_try" in *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; *) ac_try_echo=$ac_try;; esac eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\"" $as_echo "$ac_try_echo"; } >&5 (eval "$ac_try") 2>&5 ac_status=$? $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 test $ac_status = 0; }; }; then cross_compiling=no else if test "$cross_compiling" = maybe; then cross_compiling=yes else { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5 $as_echo "$as_me: error: in \`$ac_pwd':" >&2;} as_fn_error $? "cannot run C compiled programs. If you meant to cross compile, use \`--host'. See \`config.log' for more details" "$LINENO" 5; } fi fi fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $cross_compiling" >&5 $as_echo "$cross_compiling" >&6; } rm -f conftest.$ac_ext conftest$ac_cv_exeext conftest.out ac_clean_files=$ac_clean_files_save { $as_echo "$as_me:${as_lineno-$LINENO}: checking for suffix of object files" >&5 $as_echo_n "checking for suffix of object files... " >&6; } if ${ac_cv_objext+:} false; then : $as_echo_n "(cached) " >&6 else cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ int main () { ; return 0; } _ACEOF rm -f conftest.o conftest.obj if { { ac_try="$ac_compile" case "(($ac_try" in *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; *) ac_try_echo=$ac_try;; esac eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\"" $as_echo "$ac_try_echo"; } >&5 (eval "$ac_compile") 2>&5 ac_status=$? $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 test $ac_status = 0; }; then : for ac_file in conftest.o conftest.obj conftest.*; do test -f "$ac_file" || continue; case $ac_file in *.$ac_ext | *.xcoff | *.tds | *.d | *.pdb | *.xSYM | *.bb | *.bbg | *.map | *.inf | *.dSYM ) ;; *) ac_cv_objext=`expr "$ac_file" : '.*\.\(.*\)'` break;; esac done else $as_echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5 $as_echo "$as_me: error: in \`$ac_pwd':" >&2;} as_fn_error $? "cannot compute suffix of object files: cannot compile See \`config.log' for more details" "$LINENO" 5; } fi rm -f conftest.$ac_cv_objext conftest.$ac_ext fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_objext" >&5 $as_echo "$ac_cv_objext" >&6; } OBJEXT=$ac_cv_objext ac_objext=$OBJEXT { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether we are using the GNU C compiler" >&5 $as_echo_n "checking whether we are using the GNU C compiler... " >&6; } if ${ac_cv_c_compiler_gnu+:} false; then : $as_echo_n "(cached) " >&6 else cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ int main () { #ifndef __GNUC__ choke me #endif ; return 0; } _ACEOF if ac_fn_c_try_compile "$LINENO"; then : ac_compiler_gnu=yes else ac_compiler_gnu=no fi rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext ac_cv_c_compiler_gnu=$ac_compiler_gnu fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_c_compiler_gnu" >&5 $as_echo "$ac_cv_c_compiler_gnu" >&6; } if test $ac_compiler_gnu = yes; then GCC=yes else GCC= fi ac_test_CFLAGS=${CFLAGS+set} ac_save_CFLAGS=$CFLAGS { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether $CC accepts -g" >&5 $as_echo_n "checking whether $CC accepts -g... " >&6; } if ${ac_cv_prog_cc_g+:} false; then : $as_echo_n "(cached) " >&6 else ac_save_c_werror_flag=$ac_c_werror_flag ac_c_werror_flag=yes ac_cv_prog_cc_g=no CFLAGS="-g" cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ int main () { ; return 0; } _ACEOF if ac_fn_c_try_compile "$LINENO"; then : ac_cv_prog_cc_g=yes else CFLAGS="" cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ int main () { ; return 0; } _ACEOF if ac_fn_c_try_compile "$LINENO"; then : else ac_c_werror_flag=$ac_save_c_werror_flag CFLAGS="-g" cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ int main () { ; return 0; } _ACEOF if ac_fn_c_try_compile "$LINENO"; then : ac_cv_prog_cc_g=yes fi rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext fi rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext fi rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext ac_c_werror_flag=$ac_save_c_werror_flag fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_prog_cc_g" >&5 $as_echo "$ac_cv_prog_cc_g" >&6; } if test "$ac_test_CFLAGS" = set; then CFLAGS=$ac_save_CFLAGS elif test $ac_cv_prog_cc_g = yes; then if test "$GCC" = yes; then CFLAGS="-g -O2" else CFLAGS="-g" fi else if test "$GCC" = yes; then CFLAGS="-O2" else CFLAGS= fi fi { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $CC option to accept ISO C89" >&5 $as_echo_n "checking for $CC option to accept ISO C89... " >&6; } if ${ac_cv_prog_cc_c89+:} false; then : $as_echo_n "(cached) " >&6 else ac_cv_prog_cc_c89=no ac_save_CC=$CC cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ #include #include #include #include /* Most of the following tests are stolen from RCS 5.7's src/conf.sh. */ struct buf { int x; }; FILE * (*rcsopen) (struct buf *, struct stat *, int); static char *e (p, i) char **p; int i; { return p[i]; } static char *f (char * (*g) (char **, int), char **p, ...) { char *s; va_list v; va_start (v,p); s = g (p, va_arg (v,int)); va_end (v); return s; } /* OSF 4.0 Compaq cc is some sort of almost-ANSI by default. It has function prototypes and stuff, but not '\xHH' hex character constants. These don't provoke an error unfortunately, instead are silently treated as 'x'. The following induces an error, until -std is added to get proper ANSI mode. Curiously '\x00'!='x' always comes out true, for an array size at least. It's necessary to write '\x00'==0 to get something that's true only with -std. */ int osf4_cc_array ['\x00' == 0 ? 1 : -1]; /* IBM C 6 for AIX is almost-ANSI by default, but it replaces macro parameters inside strings and character constants. */ #define FOO(x) 'x' int xlc6_cc_array[FOO(a) == 'x' ? 1 : -1]; int test (int i, double x); struct s1 {int (*f) (int a);}; struct s2 {int (*f) (double a);}; int pairnames (int, char **, FILE *(*)(struct buf *, struct stat *, int), int, int); int argc; char **argv; int main () { return f (e, argv, 0) != argv[0] || f (e, argv, 1) != argv[1]; ; return 0; } _ACEOF for ac_arg in '' -qlanglvl=extc89 -qlanglvl=ansi -std \ -Ae "-Aa -D_HPUX_SOURCE" "-Xc -D__EXTENSIONS__" do CC="$ac_save_CC $ac_arg" if ac_fn_c_try_compile "$LINENO"; then : ac_cv_prog_cc_c89=$ac_arg fi rm -f core conftest.err conftest.$ac_objext test "x$ac_cv_prog_cc_c89" != "xno" && break done rm -f conftest.$ac_ext CC=$ac_save_CC fi # AC_CACHE_VAL case "x$ac_cv_prog_cc_c89" in x) { $as_echo "$as_me:${as_lineno-$LINENO}: result: none needed" >&5 $as_echo "none needed" >&6; } ;; xno) { $as_echo "$as_me:${as_lineno-$LINENO}: result: unsupported" >&5 $as_echo "unsupported" >&6; } ;; *) CC="$CC $ac_cv_prog_cc_c89" { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_prog_cc_c89" >&5 $as_echo "$ac_cv_prog_cc_c89" >&6; } ;; esac if test "x$ac_cv_prog_cc_c89" != xno; then : fi 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 depcc="$CC" am_compiler_list= { $as_echo "$as_me:${as_lineno-$LINENO}: checking dependency style of $depcc" >&5 $as_echo_n "checking dependency style of $depcc... " >&6; } if ${am_cv_CC_dependencies_compiler_type+:} false; then : $as_echo_n "(cached) " >&6 else if test -z "$AMDEP_TRUE" && test -f "$am_depcomp"; then # We make a subdir and do the tests there. Otherwise we can end up # making bogus files that we don't know about and never remove. For # instance it was reported that on HP-UX the gcc test will end up # making a dummy file named `D' -- because `-MD' means `put the output # in D'. mkdir conftest.dir # Copy depcomp to subdir because otherwise we won't find it if we're # using a relative directory. cp "$am_depcomp" conftest.dir cd conftest.dir # We will build objects and dependencies in a subdirectory because # it helps to detect inapplicable dependency modes. For instance # both Tru64's cc and ICC support -MD to output dependencies as a # side effect of compilation, but ICC will put the dependencies in # the current directory while Tru64 will put them in the object # directory. mkdir sub am_cv_CC_dependencies_compiler_type=none if test "$am_compiler_list" = ""; then am_compiler_list=`sed -n 's/^#*\([a-zA-Z0-9]*\))$/\1/p' < ./depcomp` fi am__universal=false case " $depcc " in #( *\ -arch\ *\ -arch\ *) am__universal=true ;; esac for depmode in $am_compiler_list; do # Setup a source with many dependencies, because some compilers # like to wrap large dependency lists on column 80 (with \), and # we should not choose a depcomp mode which is confused by this. # # We need to recreate these files for each test, as the compiler may # overwrite some of them when testing with obscure command lines. # This happens at least with the AIX C compiler. : > sub/conftest.c for i in 1 2 3 4 5 6; do echo '#include "conftst'$i'.h"' >> sub/conftest.c # Using `: > sub/conftst$i.h' creates only sub/conftst1.h with # Solaris 8's {/usr,}/bin/sh. touch sub/conftst$i.h done echo "${am__include} ${am__quote}sub/conftest.Po${am__quote}" > confmf # We check with `-c' and `-o' for the sake of the "dashmstdout" # mode. It turns out that the SunPro C++ compiler does not properly # handle `-M -o', and we need to detect this. Also, some Intel # versions had trouble with output in subdirs am__obj=sub/conftest.${OBJEXT-o} am__minus_obj="-o $am__obj" case $depmode in gcc) # This depmode causes a compiler race in universal mode. test "$am__universal" = false || continue ;; nosideeffect) # after this tag, mechanisms are not by side-effect, so they'll # only be used when explicitly requested if test "x$enable_dependency_tracking" = xyes; then continue else break fi ;; msvisualcpp | msvcmsys) # This compiler won't grok `-c -o', but also, the minuso test has # not run yet. These depmodes are late enough in the game, and # so weak that their functioning should not be impacted. am__obj=conftest.${OBJEXT-o} am__minus_obj= ;; none) break ;; esac if depmode=$depmode \ source=sub/conftest.c object=$am__obj \ depfile=sub/conftest.Po tmpdepfile=sub/conftest.TPo \ $SHELL ./depcomp $depcc -c $am__minus_obj sub/conftest.c \ >/dev/null 2>conftest.err && grep sub/conftst1.h sub/conftest.Po > /dev/null 2>&1 && grep sub/conftst6.h sub/conftest.Po > /dev/null 2>&1 && grep $am__obj sub/conftest.Po > /dev/null 2>&1 && ${MAKE-make} -s -f confmf > /dev/null 2>&1; then # icc doesn't choke on unknown options, it will just issue warnings # or remarks (even with -Werror). So we grep stderr for any message # that says an option was ignored or not supported. # When given -MP, icc 7.0 and 7.1 complain thusly: # icc: Command line warning: ignoring option '-M'; no argument required # The diagnosis changed in icc 8.0: # icc: Command line remark: option '-MP' not supported if (grep 'ignoring option' conftest.err || grep 'not supported' conftest.err) >/dev/null 2>&1; then :; else am_cv_CC_dependencies_compiler_type=$depmode break fi fi done cd .. rm -rf conftest.dir else am_cv_CC_dependencies_compiler_type=none fi fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $am_cv_CC_dependencies_compiler_type" >&5 $as_echo "$am_cv_CC_dependencies_compiler_type" >&6; } CCDEPMODE=depmode=$am_cv_CC_dependencies_compiler_type if test "x$enable_dependency_tracking" != xno \ && test "$am_cv_CC_dependencies_compiler_type" = gcc3; then am__fastdepCC_TRUE= am__fastdepCC_FALSE='#' else am__fastdepCC_TRUE='#' am__fastdepCC_FALSE= fi { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $CC option to accept ISO C99" >&5 $as_echo_n "checking for $CC option to accept ISO C99... " >&6; } if ${ac_cv_prog_cc_c99+:} false; then : $as_echo_n "(cached) " >&6 else ac_cv_prog_cc_c99=no ac_save_CC=$CC cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ #include #include #include #include #include // Check varargs macros. These examples are taken from C99 6.10.3.5. #define debug(...) fprintf (stderr, __VA_ARGS__) #define showlist(...) puts (#__VA_ARGS__) #define report(test,...) ((test) ? puts (#test) : printf (__VA_ARGS__)) static void test_varargs_macros (void) { int x = 1234; int y = 5678; debug ("Flag"); debug ("X = %d\n", x); showlist (The first, second, and third items.); report (x>y, "x is %d but y is %d", x, y); } // Check long long types. #define BIG64 18446744073709551615ull #define BIG32 4294967295ul #define BIG_OK (BIG64 / BIG32 == 4294967297ull && BIG64 % BIG32 == 0) #if !BIG_OK your preprocessor is broken; #endif #if BIG_OK #else your preprocessor is broken; #endif static long long int bignum = -9223372036854775807LL; static unsigned long long int ubignum = BIG64; struct incomplete_array { int datasize; double data[]; }; struct named_init { int number; const wchar_t *name; double average; }; typedef const char *ccp; static inline int test_restrict (ccp restrict text) { // See if C++-style comments work. // Iterate through items via the restricted pointer. // Also check for declarations in for loops. for (unsigned int i = 0; *(text+i) != '\0'; ++i) continue; return 0; } // Check varargs and va_copy. static void test_varargs (const char *format, ...) { va_list args; va_start (args, format); va_list args_copy; va_copy (args_copy, args); const char *str; int number; float fnumber; while (*format) { switch (*format++) { case 's': // string str = va_arg (args_copy, const char *); break; case 'd': // int number = va_arg (args_copy, int); break; case 'f': // float fnumber = va_arg (args_copy, double); break; default: break; } } va_end (args_copy); va_end (args); } int main () { // Check bool. _Bool success = false; // Check restrict. if (test_restrict ("String literal") == 0) success = true; char *restrict newvar = "Another string"; // Check varargs. test_varargs ("s, d' f .", "string", 65, 34.234); test_varargs_macros (); // Check flexible array members. struct incomplete_array *ia = malloc (sizeof (struct incomplete_array) + (sizeof (double) * 10)); ia->datasize = 10; for (int i = 0; i < ia->datasize; ++i) ia->data[i] = i * 1.234; // Check named initializers. struct named_init ni = { .number = 34, .name = L"Test wide string", .average = 543.34343, }; ni.number = 58; int dynamic_array[ni.number]; dynamic_array[ni.number - 1] = 543; // work around unused variable warnings return (!success || bignum == 0LL || ubignum == 0uLL || newvar[0] == 'x' || dynamic_array[ni.number - 1] != 543); ; return 0; } _ACEOF for ac_arg in '' -std=gnu99 -std=c99 -c99 -AC99 -xc99=all -qlanglvl=extc99 do CC="$ac_save_CC $ac_arg" if ac_fn_c_try_compile "$LINENO"; then : ac_cv_prog_cc_c99=$ac_arg fi rm -f core conftest.err conftest.$ac_objext test "x$ac_cv_prog_cc_c99" != "xno" && break done rm -f conftest.$ac_ext CC=$ac_save_CC fi # AC_CACHE_VAL case "x$ac_cv_prog_cc_c99" in x) { $as_echo "$as_me:${as_lineno-$LINENO}: result: none needed" >&5 $as_echo "none needed" >&6; } ;; xno) { $as_echo "$as_me:${as_lineno-$LINENO}: result: unsupported" >&5 $as_echo "unsupported" >&6; } ;; *) CC="$CC $ac_cv_prog_cc_c99" { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_prog_cc_c99" >&5 $as_echo "$ac_cv_prog_cc_c99" >&6; } ;; esac if test "x$ac_cv_prog_cc_c99" != xno; then : fi 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 { $as_echo "$as_me:${as_lineno-$LINENO}: checking how to run the C preprocessor" >&5 $as_echo_n "checking how to run the C preprocessor... " >&6; } # On Suns, sometimes $CPP names a directory. if test -n "$CPP" && test -d "$CPP"; then CPP= fi if test -z "$CPP"; then if ${ac_cv_prog_CPP+:} false; then : $as_echo_n "(cached) " >&6 else # Double quotes because CPP needs to be expanded for CPP in "$CC -E" "$CC -E -traditional-cpp" "/lib/cpp" do ac_preproc_ok=false for ac_c_preproc_warn_flag in '' yes do # Use a header file that comes with gcc, so configuring glibc # with a fresh cross-compiler works. # Prefer to if __STDC__ is defined, since # exists even on freestanding compilers. # On the NeXT, cc -E runs the code through the compiler's parser, # not just through cpp. "Syntax error" is here to catch this case. cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ #ifdef __STDC__ # include #else # include #endif Syntax error _ACEOF if ac_fn_c_try_cpp "$LINENO"; then : else # Broken: fails on valid input. continue fi rm -f conftest.err conftest.i conftest.$ac_ext # OK, works on sane cases. Now check whether nonexistent headers # can be detected and how. cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ #include _ACEOF if ac_fn_c_try_cpp "$LINENO"; then : # Broken: success on invalid input. continue else # Passes both tests. ac_preproc_ok=: break fi rm -f conftest.err conftest.i conftest.$ac_ext done # Because of `break', _AC_PREPROC_IFELSE's cleaning code was skipped. rm -f conftest.i conftest.err conftest.$ac_ext if $ac_preproc_ok; then : break fi done ac_cv_prog_CPP=$CPP fi CPP=$ac_cv_prog_CPP else ac_cv_prog_CPP=$CPP fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $CPP" >&5 $as_echo "$CPP" >&6; } ac_preproc_ok=false for ac_c_preproc_warn_flag in '' yes do # Use a header file that comes with gcc, so configuring glibc # with a fresh cross-compiler works. # Prefer to if __STDC__ is defined, since # exists even on freestanding compilers. # On the NeXT, cc -E runs the code through the compiler's parser, # not just through cpp. "Syntax error" is here to catch this case. cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ #ifdef __STDC__ # include #else # include #endif Syntax error _ACEOF if ac_fn_c_try_cpp "$LINENO"; then : else # Broken: fails on valid input. continue fi rm -f conftest.err conftest.i conftest.$ac_ext # OK, works on sane cases. Now check whether nonexistent headers # can be detected and how. cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ #include _ACEOF if ac_fn_c_try_cpp "$LINENO"; then : # Broken: success on invalid input. continue else # Passes both tests. ac_preproc_ok=: break fi rm -f conftest.err conftest.i conftest.$ac_ext done # Because of `break', _AC_PREPROC_IFELSE's cleaning code was skipped. rm -f conftest.i conftest.err conftest.$ac_ext if $ac_preproc_ok; then : else { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5 $as_echo "$as_me: error: in \`$ac_pwd':" >&2;} as_fn_error $? "C preprocessor \"$CPP\" fails sanity check See \`config.log' for more details" "$LINENO" 5; } fi 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 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for grep that handles long lines and -e" >&5 $as_echo_n "checking for grep that handles long lines and -e... " >&6; } if ${ac_cv_path_GREP+:} false; then : $as_echo_n "(cached) " >&6 else if test -z "$GREP"; then ac_path_GREP_found=false # Loop through the user's path and test for each of PROGNAME-LIST as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH$PATH_SEPARATOR/usr/xpg4/bin do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_prog in grep ggrep; do for ac_exec_ext in '' $ac_executable_extensions; do ac_path_GREP="$as_dir/$ac_prog$ac_exec_ext" { test -f "$ac_path_GREP" && $as_test_x "$ac_path_GREP"; } || continue # Check for GNU ac_path_GREP and select it if it is found. # Check for GNU $ac_path_GREP case `"$ac_path_GREP" --version 2>&1` in *GNU*) ac_cv_path_GREP="$ac_path_GREP" ac_path_GREP_found=:;; *) ac_count=0 $as_echo_n 0123456789 >"conftest.in" while : do cat "conftest.in" "conftest.in" >"conftest.tmp" mv "conftest.tmp" "conftest.in" cp "conftest.in" "conftest.nl" $as_echo 'GREP' >> "conftest.nl" "$ac_path_GREP" -e 'GREP$' -e '-(cannot match)-' < "conftest.nl" >"conftest.out" 2>/dev/null || break diff "conftest.out" "conftest.nl" >/dev/null 2>&1 || break as_fn_arith $ac_count + 1 && ac_count=$as_val if test $ac_count -gt ${ac_path_GREP_max-0}; then # Best one so far, save it but keep looking for a better one ac_cv_path_GREP="$ac_path_GREP" ac_path_GREP_max=$ac_count fi # 10*(2^10) chars as input seems more than enough test $ac_count -gt 10 && break done rm -f conftest.in conftest.tmp conftest.nl conftest.out;; esac $ac_path_GREP_found && break 3 done done done IFS=$as_save_IFS if test -z "$ac_cv_path_GREP"; then as_fn_error $? "no acceptable grep could be found in $PATH$PATH_SEPARATOR/usr/xpg4/bin" "$LINENO" 5 fi else ac_cv_path_GREP=$GREP fi fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_path_GREP" >&5 $as_echo "$ac_cv_path_GREP" >&6; } GREP="$ac_cv_path_GREP" { $as_echo "$as_me:${as_lineno-$LINENO}: checking for egrep" >&5 $as_echo_n "checking for egrep... " >&6; } if ${ac_cv_path_EGREP+:} false; then : $as_echo_n "(cached) " >&6 else if echo a | $GREP -E '(a|b)' >/dev/null 2>&1 then ac_cv_path_EGREP="$GREP -E" else if test -z "$EGREP"; then ac_path_EGREP_found=false # Loop through the user's path and test for each of PROGNAME-LIST as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH$PATH_SEPARATOR/usr/xpg4/bin do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_prog in egrep; do for ac_exec_ext in '' $ac_executable_extensions; do ac_path_EGREP="$as_dir/$ac_prog$ac_exec_ext" { test -f "$ac_path_EGREP" && $as_test_x "$ac_path_EGREP"; } || continue # Check for GNU ac_path_EGREP and select it if it is found. # Check for GNU $ac_path_EGREP case `"$ac_path_EGREP" --version 2>&1` in *GNU*) ac_cv_path_EGREP="$ac_path_EGREP" ac_path_EGREP_found=:;; *) ac_count=0 $as_echo_n 0123456789 >"conftest.in" while : do cat "conftest.in" "conftest.in" >"conftest.tmp" mv "conftest.tmp" "conftest.in" cp "conftest.in" "conftest.nl" $as_echo 'EGREP' >> "conftest.nl" "$ac_path_EGREP" 'EGREP$' < "conftest.nl" >"conftest.out" 2>/dev/null || break diff "conftest.out" "conftest.nl" >/dev/null 2>&1 || break as_fn_arith $ac_count + 1 && ac_count=$as_val if test $ac_count -gt ${ac_path_EGREP_max-0}; then # Best one so far, save it but keep looking for a better one ac_cv_path_EGREP="$ac_path_EGREP" ac_path_EGREP_max=$ac_count fi # 10*(2^10) chars as input seems more than enough test $ac_count -gt 10 && break done rm -f conftest.in conftest.tmp conftest.nl conftest.out;; esac $ac_path_EGREP_found && break 3 done done done IFS=$as_save_IFS if test -z "$ac_cv_path_EGREP"; then as_fn_error $? "no acceptable egrep could be found in $PATH$PATH_SEPARATOR/usr/xpg4/bin" "$LINENO" 5 fi else ac_cv_path_EGREP=$EGREP fi fi fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_path_EGREP" >&5 $as_echo "$ac_cv_path_EGREP" >&6; } EGREP="$ac_cv_path_EGREP" { $as_echo "$as_me:${as_lineno-$LINENO}: checking for ANSI C header files" >&5 $as_echo_n "checking for ANSI C header files... " >&6; } if ${ac_cv_header_stdc+:} false; then : $as_echo_n "(cached) " >&6 else cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ #include #include #include #include int main () { ; return 0; } _ACEOF if ac_fn_c_try_compile "$LINENO"; then : ac_cv_header_stdc=yes else ac_cv_header_stdc=no fi rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext if test $ac_cv_header_stdc = yes; then # SunOS 4.x string.h does not declare mem*, contrary to ANSI. cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ #include _ACEOF if (eval "$ac_cpp conftest.$ac_ext") 2>&5 | $EGREP "memchr" >/dev/null 2>&1; then : else ac_cv_header_stdc=no fi rm -f conftest* fi if test $ac_cv_header_stdc = yes; then # ISC 2.0.2 stdlib.h does not declare free, contrary to ANSI. cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ #include _ACEOF if (eval "$ac_cpp conftest.$ac_ext") 2>&5 | $EGREP "free" >/dev/null 2>&1; then : else ac_cv_header_stdc=no fi rm -f conftest* fi if test $ac_cv_header_stdc = yes; then # /bin/cc in Irix-4.0.5 gets non-ANSI ctype macros unless using -ansi. if test "$cross_compiling" = yes; then : : else cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ #include #include #if ((' ' & 0x0FF) == 0x020) # define ISLOWER(c) ('a' <= (c) && (c) <= 'z') # define TOUPPER(c) (ISLOWER(c) ? 'A' + ((c) - 'a') : (c)) #else # define ISLOWER(c) \ (('a' <= (c) && (c) <= 'i') \ || ('j' <= (c) && (c) <= 'r') \ || ('s' <= (c) && (c) <= 'z')) # define TOUPPER(c) (ISLOWER(c) ? ((c) | 0x40) : (c)) #endif #define XOR(e, f) (((e) && !(f)) || (!(e) && (f))) int main () { int i; for (i = 0; i < 256; i++) if (XOR (islower (i), ISLOWER (i)) || toupper (i) != TOUPPER (i)) return 2; return 0; } _ACEOF if ac_fn_c_try_run "$LINENO"; then : else ac_cv_header_stdc=no fi rm -f core *.core core.conftest.* gmon.out bb.out conftest$ac_exeext \ conftest.$ac_objext conftest.beam conftest.$ac_ext fi fi fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_header_stdc" >&5 $as_echo "$ac_cv_header_stdc" >&6; } if test $ac_cv_header_stdc = yes; then $as_echo "#define STDC_HEADERS 1" >>confdefs.h fi # On IRIX 5.3, sys/types and inttypes.h are conflicting. for ac_header in sys/types.h sys/stat.h stdlib.h string.h memory.h strings.h \ inttypes.h stdint.h unistd.h do : as_ac_Header=`$as_echo "ac_cv_header_$ac_header" | $as_tr_sh` ac_fn_c_check_header_compile "$LINENO" "$ac_header" "$as_ac_Header" "$ac_includes_default " if eval test \"x\$"$as_ac_Header"\" = x"yes"; then : cat >>confdefs.h <<_ACEOF #define `$as_echo "HAVE_$ac_header" | $as_tr_cpp` 1 _ACEOF fi done if test "x$ac_cv_env_PKG_CONFIG_set" != "xset"; then if test -n "$ac_tool_prefix"; then # Extract the first word of "${ac_tool_prefix}pkg-config", so it can be a program name with args. set dummy ${ac_tool_prefix}pkg-config; 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_PKG_CONFIG+:} false; then : $as_echo_n "(cached) " >&6 else case $PKG_CONFIG in [\\/]* | ?:[\\/]*) ac_cv_path_PKG_CONFIG="$PKG_CONFIG" # 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 { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then ac_cv_path_PKG_CONFIG="$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 PKG_CONFIG=$ac_cv_path_PKG_CONFIG if test -n "$PKG_CONFIG"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: $PKG_CONFIG" >&5 $as_echo "$PKG_CONFIG" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi fi if test -z "$ac_cv_path_PKG_CONFIG"; then ac_pt_PKG_CONFIG=$PKG_CONFIG # Extract the first word of "pkg-config", so it can be a program name with args. set dummy pkg-config; 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_ac_pt_PKG_CONFIG+:} false; then : $as_echo_n "(cached) " >&6 else case $ac_pt_PKG_CONFIG in [\\/]* | ?:[\\/]*) ac_cv_path_ac_pt_PKG_CONFIG="$ac_pt_PKG_CONFIG" # 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 { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then ac_cv_path_ac_pt_PKG_CONFIG="$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 ac_pt_PKG_CONFIG=$ac_cv_path_ac_pt_PKG_CONFIG if test -n "$ac_pt_PKG_CONFIG"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_pt_PKG_CONFIG" >&5 $as_echo "$ac_pt_PKG_CONFIG" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi if test "x$ac_pt_PKG_CONFIG" = x; then PKG_CONFIG="" else case $cross_compiling:$ac_tool_warned in yes:) { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet" >&5 $as_echo "$as_me: WARNING: using cross tools not prefixed with host triplet" >&2;} ac_tool_warned=yes ;; esac PKG_CONFIG=$ac_pt_PKG_CONFIG fi else PKG_CONFIG="$ac_cv_path_PKG_CONFIG" fi fi if test -n "$PKG_CONFIG"; then _pkg_min_version=0.9.0 { $as_echo "$as_me:${as_lineno-$LINENO}: checking pkg-config is at least version $_pkg_min_version" >&5 $as_echo_n "checking pkg-config is at least version $_pkg_min_version... " >&6; } if $PKG_CONFIG --atleast-pkgconfig-version $_pkg_min_version; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5 $as_echo "yes" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } PKG_CONFIG="" fi fi # Make sure we can run config.sub. $SHELL "$ac_aux_dir/config.sub" sun4 >/dev/null 2>&1 || as_fn_error $? "cannot run $SHELL $ac_aux_dir/config.sub" "$LINENO" 5 { $as_echo "$as_me:${as_lineno-$LINENO}: checking build system type" >&5 $as_echo_n "checking build system type... " >&6; } if ${ac_cv_build+:} false; then : $as_echo_n "(cached) " >&6 else ac_build_alias=$build_alias test "x$ac_build_alias" = x && ac_build_alias=`$SHELL "$ac_aux_dir/config.guess"` test "x$ac_build_alias" = x && as_fn_error $? "cannot guess build type; you must specify one" "$LINENO" 5 ac_cv_build=`$SHELL "$ac_aux_dir/config.sub" $ac_build_alias` || as_fn_error $? "$SHELL $ac_aux_dir/config.sub $ac_build_alias failed" "$LINENO" 5 fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_build" >&5 $as_echo "$ac_cv_build" >&6; } case $ac_cv_build in *-*-*) ;; *) as_fn_error $? "invalid value of canonical build" "$LINENO" 5;; esac build=$ac_cv_build ac_save_IFS=$IFS; IFS='-' set x $ac_cv_build shift build_cpu=$1 build_vendor=$2 shift; shift # Remember, the first character of IFS is used to create $*, # except with old shells: build_os=$* IFS=$ac_save_IFS case $build_os in *\ *) build_os=`echo "$build_os" | sed 's/ /-/g'`;; esac { $as_echo "$as_me:${as_lineno-$LINENO}: checking host system type" >&5 $as_echo_n "checking host system type... " >&6; } if ${ac_cv_host+:} false; then : $as_echo_n "(cached) " >&6 else if test "x$host_alias" = x; then ac_cv_host=$ac_cv_build else ac_cv_host=`$SHELL "$ac_aux_dir/config.sub" $host_alias` || as_fn_error $? "$SHELL $ac_aux_dir/config.sub $host_alias failed" "$LINENO" 5 fi fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_host" >&5 $as_echo "$ac_cv_host" >&6; } case $ac_cv_host in *-*-*) ;; *) as_fn_error $? "invalid value of canonical host" "$LINENO" 5;; esac host=$ac_cv_host ac_save_IFS=$IFS; IFS='-' set x $ac_cv_host shift host_cpu=$1 host_vendor=$2 shift; shift # Remember, the first character of IFS is used to create $*, # except with old shells: host_os=$* IFS=$ac_save_IFS case $host_os in *\ *) host_os=`echo "$host_os" | sed 's/ /-/g'`;; esac { $as_echo "$as_me:${as_lineno-$LINENO}: checking for a sed that does not truncate output" >&5 $as_echo_n "checking for a sed that does not truncate output... " >&6; } if ${ac_cv_path_SED+:} false; then : $as_echo_n "(cached) " >&6 else ac_script=s/aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa/bbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbb/ for ac_i in 1 2 3 4 5 6 7; do ac_script="$ac_script$as_nl$ac_script" done echo "$ac_script" 2>/dev/null | sed 99q >conftest.sed { ac_script=; unset ac_script;} if test -z "$SED"; then ac_path_SED_found=false # Loop through the user's path and test for each of PROGNAME-LIST 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_prog in sed gsed; do for ac_exec_ext in '' $ac_executable_extensions; do ac_path_SED="$as_dir/$ac_prog$ac_exec_ext" { test -f "$ac_path_SED" && $as_test_x "$ac_path_SED"; } || continue # Check for GNU ac_path_SED and select it if it is found. # Check for GNU $ac_path_SED case `"$ac_path_SED" --version 2>&1` in *GNU*) ac_cv_path_SED="$ac_path_SED" ac_path_SED_found=:;; *) ac_count=0 $as_echo_n 0123456789 >"conftest.in" while : do cat "conftest.in" "conftest.in" >"conftest.tmp" mv "conftest.tmp" "conftest.in" cp "conftest.in" "conftest.nl" $as_echo '' >> "conftest.nl" "$ac_path_SED" -f conftest.sed < "conftest.nl" >"conftest.out" 2>/dev/null || break diff "conftest.out" "conftest.nl" >/dev/null 2>&1 || break as_fn_arith $ac_count + 1 && ac_count=$as_val if test $ac_count -gt ${ac_path_SED_max-0}; then # Best one so far, save it but keep looking for a better one ac_cv_path_SED="$ac_path_SED" ac_path_SED_max=$ac_count fi # 10*(2^10) chars as input seems more than enough test $ac_count -gt 10 && break done rm -f conftest.in conftest.tmp conftest.nl conftest.out;; esac $ac_path_SED_found && break 3 done done done IFS=$as_save_IFS if test -z "$ac_cv_path_SED"; then as_fn_error $? "no acceptable sed could be found in \$PATH" "$LINENO" 5 fi else ac_cv_path_SED=$SED fi fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_path_SED" >&5 $as_echo "$ac_cv_path_SED" >&6; } SED="$ac_cv_path_SED" rm -f conftest.sed if test "x$GCC" = xyes ; then CWARNFLAGS="-Wall -Wpointer-arith -Wstrict-prototypes -Wmissing-prototypes \ -Wmissing-declarations -Wnested-externs -fno-strict-aliasing \ -Wbad-function-cast -Wformat=2" case `$CC -dumpversion` in 3.4.* | 4.*) CWARNFLAGS="$CWARNFLAGS -Wold-style-definition -Wdeclaration-after-statement" ;; esac else ac_fn_c_check_decl "$LINENO" "__SUNPRO_C" "ac_cv_have_decl___SUNPRO_C" "$ac_includes_default" if test "x$ac_cv_have_decl___SUNPRO_C" = xyes; then : SUNCC="yes" else SUNCC="no" fi if test "x$SUNCC" = "xyes"; then CWARNFLAGS="-v" fi fi # If the module's configure.ac calls AC_PROG_CC later on, CC gets set to C89 # Check whether --enable-strict-compilation was given. if test "${enable_strict_compilation+set}" = set; then : enableval=$enable_strict_compilation; STRICT_COMPILE=$enableval else STRICT_COMPILE=no fi if test "x$STRICT_COMPILE" = "xyes"; then ac_fn_c_check_decl "$LINENO" "__SUNPRO_C" "ac_cv_have_decl___SUNPRO_C" "$ac_includes_default" if test "x$ac_cv_have_decl___SUNPRO_C" = xyes; then : SUNCC="yes" else SUNCC="no" fi ac_fn_c_check_decl "$LINENO" "__INTEL_COMPILER" "ac_cv_have_decl___INTEL_COMPILER" "$ac_includes_default" if test "x$ac_cv_have_decl___INTEL_COMPILER" = xyes; then : INTELCC="yes" else INTELCC="no" fi if test "x$GCC" = xyes ; then STRICT_CFLAGS="-pedantic -Werror" elif test "x$SUNCC" = "xyes"; then STRICT_CFLAGS="-errwarn" elif test "x$INTELCC" = "xyes"; then STRICT_CFLAGS="-Werror" fi fi CWARNFLAGS="$CWARNFLAGS $STRICT_CFLAGS" cat >>confdefs.h <<_ACEOF #define PACKAGE_VERSION_MAJOR `echo $PACKAGE_VERSION | cut -d . -f 1` _ACEOF PVM=`echo $PACKAGE_VERSION | cut -d . -f 2 | cut -d - -f 1` if test "x$PVM" = "x"; then PVM="0" fi cat >>confdefs.h <<_ACEOF #define PACKAGE_VERSION_MINOR $PVM _ACEOF PVP=`echo $PACKAGE_VERSION | cut -d . -f 3 | cut -d - -f 1` if test "x$PVP" = "x"; then PVP="0" fi cat >>confdefs.h <<_ACEOF #define PACKAGE_VERSION_PATCHLEVEL $PVP _ACEOF CHANGELOG_CMD="(GIT_DIR=\$(top_srcdir)/.git git log > \$(top_srcdir)/.changelog.tmp && \ mv \$(top_srcdir)/.changelog.tmp \$(top_srcdir)/ChangeLog) \ || (rm -f \$(top_srcdir)/.changelog.tmp; touch \$(top_srcdir)/ChangeLog; \ echo 'git directory not found: installing possibly empty changelog.' >&2)" macros_datadir=`$PKG_CONFIG --print-errors --variable=pkgdatadir xorg-macros` INSTALL_CMD="(cp -f "$macros_datadir/INSTALL" \$(top_srcdir)/.INSTALL.tmp && \ mv \$(top_srcdir)/.INSTALL.tmp \$(top_srcdir)/INSTALL) \ || (rm -f \$(top_srcdir)/.INSTALL.tmp; touch \$(top_srcdir)/INSTALL; \ echo 'util-macros \"pkgdatadir\" from xorg-macros.pc not found: installing possibly empty INSTALL.' >&2)" if test x$APP_MAN_SUFFIX = x ; then APP_MAN_SUFFIX=1 fi if test x$APP_MAN_DIR = x ; then APP_MAN_DIR='$(mandir)/man$(APP_MAN_SUFFIX)' fi if test x$LIB_MAN_SUFFIX = x ; then LIB_MAN_SUFFIX=3 fi if test x$LIB_MAN_DIR = x ; then LIB_MAN_DIR='$(mandir)/man$(LIB_MAN_SUFFIX)' fi if test x$FILE_MAN_SUFFIX = x ; then case $host_os in solaris*) FILE_MAN_SUFFIX=4 ;; *) FILE_MAN_SUFFIX=5 ;; esac fi if test x$FILE_MAN_DIR = x ; then FILE_MAN_DIR='$(mandir)/man$(FILE_MAN_SUFFIX)' fi if test x$MISC_MAN_SUFFIX = x ; then case $host_os in solaris*) MISC_MAN_SUFFIX=5 ;; *) MISC_MAN_SUFFIX=7 ;; esac fi if test x$MISC_MAN_DIR = x ; then MISC_MAN_DIR='$(mandir)/man$(MISC_MAN_SUFFIX)' fi if test x$DRIVER_MAN_SUFFIX = x ; then case $host_os in solaris*) DRIVER_MAN_SUFFIX=7 ;; *) DRIVER_MAN_SUFFIX=4 ;; esac fi if test x$DRIVER_MAN_DIR = x ; then DRIVER_MAN_DIR='$(mandir)/man$(DRIVER_MAN_SUFFIX)' fi if test x$ADMIN_MAN_SUFFIX = x ; then case $host_os in solaris*) ADMIN_MAN_SUFFIX=1m ;; *) ADMIN_MAN_SUFFIX=8 ;; esac fi if test x$ADMIN_MAN_DIR = x ; then ADMIN_MAN_DIR='$(mandir)/man$(ADMIN_MAN_SUFFIX)' fi XORG_MAN_PAGE="X Version 11" MAN_SUBSTS="\ -e 's|__vendorversion__|\"\$(PACKAGE_STRING)\" \"\$(XORG_MAN_PAGE)\"|' \ -e 's|__xorgversion__|\"\$(PACKAGE_STRING)\" \"\$(XORG_MAN_PAGE)\"|' \ -e 's|__xservername__|Xorg|g' \ -e 's|__xconfigfile__|xorg.conf|g' \ -e 's|__projectroot__|\$(prefix)|g' \ -e 's|__apploaddir__|\$(appdefaultdir)|g' \ -e 's|__appmansuffix__|\$(APP_MAN_SUFFIX)|g' \ -e 's|__drivermansuffix__|\$(DRIVER_MAN_SUFFIX)|g' \ -e 's|__adminmansuffix__|\$(ADMIN_MAN_SUFFIX)|g' \ -e 's|__libmansuffix__|\$(LIB_MAN_SUFFIX)|g' \ -e 's|__miscmansuffix__|\$(MISC_MAN_SUFFIX)|g' \ -e 's|__filemansuffix__|\$(FILE_MAN_SUFFIX)|g'" # Check whether --enable-silent-rules was given. if test "${enable_silent_rules+set}" = set; then : enableval=$enable_silent_rules; fi case $enable_silent_rules in yes) AM_DEFAULT_VERBOSITY=0;; no) AM_DEFAULT_VERBOSITY=1;; *) AM_DEFAULT_VERBOSITY=0;; esac AM_BACKSLASH='\' ac_config_files="$ac_config_files Makefile printproto.pc" 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[ ][ ]*\([^ (][^ (]*([^)]*)\)[ ]*\(.*\)/-D\1=\2/g t quote s/^[ ]*#[ ]*define[ ][ ]*\([^ ][^ ]*\)[ ]*\(.*\)/-D\1=\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 if test -n "$EXEEXT"; then am__EXEEXT_TRUE= am__EXEEXT_FALSE='#' else am__EXEEXT_TRUE='#' am__EXEEXT_FALSE= fi if test -z "${MAINTAINER_MODE_TRUE}" && test -z "${MAINTAINER_MODE_FALSE}"; then as_fn_error $? "conditional \"MAINTAINER_MODE\" was never defined. Usually this means the macro was only invoked conditionally." "$LINENO" 5 fi if test -z "${AMDEP_TRUE}" && test -z "${AMDEP_FALSE}"; then as_fn_error $? "conditional \"AMDEP\" was never defined. Usually this means the macro was only invoked conditionally." "$LINENO" 5 fi if test -z "${am__fastdepCC_TRUE}" && test -z "${am__fastdepCC_FALSE}"; then as_fn_error $? "conditional \"am__fastdepCC\" was never defined. Usually this means the macro was only invoked conditionally." "$LINENO" 5 fi : "${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 "X$1" : "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 -p'. ln -s conf$$.file conf$$.dir 2>/dev/null && test ! -f conf$$.exe || as_ln_s='cp -p' elif ln conf$$.file conf$$ 2>/dev/null; then as_ln_s=ln else as_ln_s='cp -p' fi else as_ln_s='cp -p' 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 if test -x / >/dev/null 2>&1; then as_test_x='test -x' else if ls -dL / >/dev/null 2>&1; then as_ls_L_option=L else as_ls_L_option= fi as_test_x=' eval sh -c '\'' if test -d "$1"; then test -d "$1/."; else case $1 in #( -*)set "./$1";; esac; case `ls -ld'$as_ls_L_option' "$1" 2>/dev/null` in #(( ???[sx]*):;;*)false;;esac;fi '\'' sh ' fi as_executable_p=$as_test_x # 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 PrintProto $as_me 1.0.5, which was generated by GNU Autoconf 2.68. 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" config_commands="$ac_config_commands" _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 Configuration commands: $config_commands Report bugs to ." _ACEOF cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1 ac_cs_config="`$as_echo "$ac_configure_args" | sed 's/^ //; s/[\\""\`\$]/\\\\&/g'`" ac_cs_version="\\ PrintProto config.status 1.0.5 configured by $0, generated by GNU Autoconf 2.68, with options \\"\$ac_cs_config\\" Copyright (C) 2010 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' AWK='$AWK' 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 "X$1" : 'X\([^=]*\)='` ac_optarg=`expr "X$1" : 'X[^=]*=\(.*\)'` ac_shift=: ;; --*=) ac_option=`expr "X$1" : '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 # # INIT-COMMANDS # AMDEP_TRUE="$AMDEP_TRUE" ac_aux_dir="$ac_aux_dir" _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 "depfiles") CONFIG_COMMANDS="$CONFIG_COMMANDS depfiles" ;; "Makefile") CONFIG_FILES="$CONFIG_FILES Makefile" ;; "printproto.pc") CONFIG_FILES="$CONFIG_FILES printproto.pc" ;; *) 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 test "${CONFIG_COMMANDS+set}" = set || CONFIG_COMMANDS=$config_commands 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` 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 ' >$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 :C $CONFIG_COMMANDS" 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 ;; :C) { $as_echo "$as_me:${as_lineno-$LINENO}: executing $ac_file commands" >&5 $as_echo "$as_me: executing $ac_file commands" >&6;} ;; esac case $ac_file$ac_mode in "depfiles":C) test x"$AMDEP_TRUE" != x"" || { # Autoconf 2.62 quotes --file arguments for eval, but not when files # are listed without --file. Let's play safe and only enable the eval # if we detect the quoting. case $CONFIG_FILES in *\'*) eval set x "$CONFIG_FILES" ;; *) set x $CONFIG_FILES ;; esac shift for mf do # Strip MF so we end up with the name of the file. mf=`echo "$mf" | sed -e 's/:.*$//'` # Check whether this is an Automake generated Makefile or not. # We used to match only the files named `Makefile.in', but # some people rename them; so instead we look at the file content. # Grep'ing the first line is not enough: some people post-process # each Makefile.in and add a new line on top of each file to say so. # Grep'ing the whole file is not good either: AIX grep has a line # limit of 2048, but all sed's we know have understand at least 4000. if sed -n 's,^#.*generated by automake.*,X,p' "$mf" | grep X >/dev/null 2>&1; then dirpart=`$as_dirname -- "$mf" || $as_expr X"$mf" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \ X"$mf" : 'X\(//\)[^/]' \| \ X"$mf" : 'X\(//\)$' \| \ X"$mf" : 'X\(/\)' \| . 2>/dev/null || $as_echo X"$mf" | sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{ s//\1/ q } /^X\(\/\/\)[^/].*/{ s//\1/ q } /^X\(\/\/\)$/{ s//\1/ q } /^X\(\/\).*/{ s//\1/ q } s/.*/./; q'` else continue fi # Extract the definition of DEPDIR, am__include, and am__quote # from the Makefile without running `make'. DEPDIR=`sed -n 's/^DEPDIR = //p' < "$mf"` test -z "$DEPDIR" && continue am__include=`sed -n 's/^am__include = //p' < "$mf"` test -z "am__include" && continue am__quote=`sed -n 's/^am__quote = //p' < "$mf"` # When using ansi2knr, U may be empty or an underscore; expand it U=`sed -n 's/^U = //p' < "$mf"` # Find all dependency output files, they are included files with # $(DEPDIR) in their names. We invoke sed twice because it is the # simplest approach to changing $(DEPDIR) to its actual value in the # expansion. for file in `sed -n " s/^$am__include $am__quote\(.*(DEPDIR).*\)$am__quote"'$/\1/p' <"$mf" | \ sed -e 's/\$(DEPDIR)/'"$DEPDIR"'/g' -e 's/\$U/'"$U"'/g'`; do # Make sure the directory exists. test -f "$dirpart/$file" && continue fdir=`$as_dirname -- "$file" || $as_expr X"$file" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \ X"$file" : 'X\(//\)[^/]' \| \ X"$file" : 'X\(//\)$' \| \ X"$file" : 'X\(/\)' \| . 2>/dev/null || $as_echo X"$file" | sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{ s//\1/ q } /^X\(\/\/\)[^/].*/{ s//\1/ q } /^X\(\/\/\)$/{ s//\1/ q } /^X\(\/\).*/{ s//\1/ q } s/.*/./; q'` as_dir=$dirpart/$fdir; as_fn_mkdir_p # echo "creating $dirpart/$file" echo '# dummy' > "$dirpart/$file" done done } ;; 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 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 reprintproto-1.0.5/configure.ac000064401431060000012000000011401151122453200164750ustar00alancstaff00002660200007dnl dnl Process this file with autoconf to create configure. # Initialize Autoconf AC_PREREQ([2.60]) AC_INIT([PrintProto], [1.0.5], [https://bugs.freedesktop.org/enter_bug.cgi?product=xorg]) AC_CONFIG_SRCDIR([Makefile.am]) # Initialize Automake AM_INIT_AUTOMAKE([foreign dist-bzip2]) AM_MAINTAINER_MODE # Require xorg-macros 1.3 or later: XORG_DEFAULT_OPTIONS m4_ifndef([XORG_MACROS_VERSION], [m4_fatal([must install xorg-macros 1.3 or later before running autoconf/autogen])]) XORG_MACROS_VERSION(1.3) XORG_DEFAULT_OPTIONS AC_CONFIG_FILES([Makefile printproto.pc]) AC_OUTPUT printproto-1.0.5/config.sub000064401431060000012000001043761151122464400162120ustar00alancstaff00002660200007#! /bin/sh # Configuration validation subroutine script. # Copyright (C) 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999, # 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010 # Free Software Foundation, Inc. timestamp='2010-09-11' # This file is (in principle) common to ALL GNU software. # The presence of a machine in this file suggests that SOME GNU software # can handle that machine. It does not imply ALL GNU software can. # # This file is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation; either version 2 of the License, or # (at your option) any later version. # # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. # # You should have received a copy of the GNU General Public License # along with this program; if not, write to the Free Software # Foundation, Inc., 51 Franklin Street - Fifth Floor, Boston, MA # 02110-1301, USA. # # As a special exception to the GNU General Public License, if you # distribute this file as part of a program that contains a # configuration script generated by Autoconf, you may include it under # the same distribution terms that you use for the rest of that program. # Please send patches to . Submit a context # diff and a properly formatted GNU ChangeLog entry. # # Configuration subroutine to validate and canonicalize a configuration type. # Supply the specified configuration type as an argument. # If it is invalid, we print an error message on stderr and exit with code 1. # Otherwise, we print the canonical config type on stdout and succeed. # You can get the latest version of this script from: # http://git.savannah.gnu.org/gitweb/?p=config.git;a=blob_plain;f=config.sub;hb=HEAD # This file is supposed to be the same for all GNU packages # and recognize all the CPU types, system types and aliases # that are meaningful with *any* GNU software. # Each package is responsible for reporting which valid configurations # it does not support. The user should be able to distinguish # a failure to support a valid configuration from a meaningless # configuration. # The goal of this file is to map all the various variations of a given # machine specification into a single specification in the form: # CPU_TYPE-MANUFACTURER-OPERATING_SYSTEM # or in some cases, the newer four-part form: # CPU_TYPE-MANUFACTURER-KERNEL-OPERATING_SYSTEM # It is wrong to echo any other type of specification. me=`echo "$0" | sed -e 's,.*/,,'` usage="\ Usage: $0 [OPTION] CPU-MFR-OPSYS $0 [OPTION] ALIAS Canonicalize a configuration name. Operation modes: -h, --help print this help, then exit -t, --time-stamp print date of last modification, then exit -v, --version print version number, then exit Report bugs and patches to ." version="\ GNU config.sub ($timestamp) Copyright (C) 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010 Free Software Foundation, Inc. This is free software; see the source for copying conditions. There is NO warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE." help=" Try \`$me --help' for more information." # Parse command line while test $# -gt 0 ; do case $1 in --time-stamp | --time* | -t ) echo "$timestamp" ; exit ;; --version | -v ) echo "$version" ; exit ;; --help | --h* | -h ) echo "$usage"; exit ;; -- ) # Stop option processing shift; break ;; - ) # Use stdin as input. break ;; -* ) echo "$me: invalid option $1$help" exit 1 ;; *local*) # First pass through any local machine types. echo $1 exit ;; * ) break ;; esac done case $# in 0) echo "$me: missing argument$help" >&2 exit 1;; 1) ;; *) echo "$me: too many arguments$help" >&2 exit 1;; esac # Separate what the user gave into CPU-COMPANY and OS or KERNEL-OS (if any). # Here we must recognize all the valid KERNEL-OS combinations. maybe_os=`echo $1 | sed 's/^\(.*\)-\([^-]*-[^-]*\)$/\2/'` case $maybe_os in nto-qnx* | linux-gnu* | linux-android* | linux-dietlibc | linux-newlib* | \ linux-uclibc* | uclinux-uclibc* | uclinux-gnu* | kfreebsd*-gnu* | \ knetbsd*-gnu* | netbsd*-gnu* | \ kopensolaris*-gnu* | \ storm-chaos* | os2-emx* | rtmk-nova*) os=-$maybe_os basic_machine=`echo $1 | sed 's/^\(.*\)-\([^-]*-[^-]*\)$/\1/'` ;; *) basic_machine=`echo $1 | sed 's/-[^-]*$//'` if [ $basic_machine != $1 ] then os=`echo $1 | sed 's/.*-/-/'` else os=; fi ;; esac ### Let's recognize common machines as not being operating systems so ### that things like config.sub decstation-3100 work. We also ### recognize some manufacturers as not being operating systems, so we ### can provide default operating systems below. case $os in -sun*os*) # Prevent following clause from handling this invalid input. ;; -dec* | -mips* | -sequent* | -encore* | -pc532* | -sgi* | -sony* | \ -att* | -7300* | -3300* | -delta* | -motorola* | -sun[234]* | \ -unicom* | -ibm* | -next | -hp | -isi* | -apollo | -altos* | \ -convergent* | -ncr* | -news | -32* | -3600* | -3100* | -hitachi* |\ -c[123]* | -convex* | -sun | -crds | -omron* | -dg | -ultra | -tti* | \ -harris | -dolphin | -highlevel | -gould | -cbm | -ns | -masscomp | \ -apple | -axis | -knuth | -cray | -microblaze) os= basic_machine=$1 ;; -bluegene*) os=-cnk ;; -sim | -cisco | -oki | -wec | -winbond) os= basic_machine=$1 ;; -scout) ;; -wrs) os=-vxworks basic_machine=$1 ;; -chorusos*) os=-chorusos basic_machine=$1 ;; -chorusrdb) os=-chorusrdb basic_machine=$1 ;; -hiux*) os=-hiuxwe2 ;; -sco6) os=-sco5v6 basic_machine=`echo $1 | sed -e 's/86-.*/86-pc/'` ;; -sco5) os=-sco3.2v5 basic_machine=`echo $1 | sed -e 's/86-.*/86-pc/'` ;; -sco4) os=-sco3.2v4 basic_machine=`echo $1 | sed -e 's/86-.*/86-pc/'` ;; -sco3.2.[4-9]*) os=`echo $os | sed -e 's/sco3.2./sco3.2v/'` basic_machine=`echo $1 | sed -e 's/86-.*/86-pc/'` ;; -sco3.2v[4-9]*) # Don't forget version if it is 3.2v4 or newer. basic_machine=`echo $1 | sed -e 's/86-.*/86-pc/'` ;; -sco5v6*) # Don't forget version if it is 3.2v4 or newer. basic_machine=`echo $1 | sed -e 's/86-.*/86-pc/'` ;; -sco*) os=-sco3.2v2 basic_machine=`echo $1 | sed -e 's/86-.*/86-pc/'` ;; -udk*) basic_machine=`echo $1 | sed -e 's/86-.*/86-pc/'` ;; -isc) os=-isc2.2 basic_machine=`echo $1 | sed -e 's/86-.*/86-pc/'` ;; -clix*) basic_machine=clipper-intergraph ;; -isc*) basic_machine=`echo $1 | sed -e 's/86-.*/86-pc/'` ;; -lynx*) os=-lynxos ;; -ptx*) basic_machine=`echo $1 | sed -e 's/86-.*/86-sequent/'` ;; -windowsnt*) os=`echo $os | sed -e 's/windowsnt/winnt/'` ;; -psos*) os=-psos ;; -mint | -mint[0-9]*) basic_machine=m68k-atari os=-mint ;; esac # Decode aliases for certain CPU-COMPANY combinations. case $basic_machine in # Recognize the basic CPU types without company name. # Some are omitted here because they have special meanings below. 1750a | 580 \ | a29k \ | alpha | alphaev[4-8] | alphaev56 | alphaev6[78] | alphapca5[67] \ | alpha64 | alpha64ev[4-8] | alpha64ev56 | alpha64ev6[78] | alpha64pca5[67] \ | am33_2.0 \ | arc | arm | arm[bl]e | arme[lb] | armv[2345] | armv[345][lb] | avr | avr32 \ | bfin \ | c4x | clipper \ | d10v | d30v | dlx | dsp16xx \ | fido | fr30 | frv \ | h8300 | h8500 | hppa | hppa1.[01] | hppa2.0 | hppa2.0[nw] | hppa64 \ | i370 | i860 | i960 | ia64 \ | ip2k | iq2000 \ | lm32 \ | m32c | m32r | m32rle | m68000 | m68k | m88k \ | maxq | mb | microblaze | mcore | mep | metag \ | mips | mipsbe | mipseb | mipsel | mipsle \ | mips16 \ | mips64 | mips64el \ | mips64octeon | mips64octeonel \ | mips64orion | mips64orionel \ | mips64r5900 | mips64r5900el \ | mips64vr | mips64vrel \ | mips64vr4100 | mips64vr4100el \ | mips64vr4300 | mips64vr4300el \ | mips64vr5000 | mips64vr5000el \ | mips64vr5900 | mips64vr5900el \ | mipsisa32 | mipsisa32el \ | mipsisa32r2 | mipsisa32r2el \ | mipsisa64 | mipsisa64el \ | mipsisa64r2 | mipsisa64r2el \ | mipsisa64sb1 | mipsisa64sb1el \ | mipsisa64sr71k | mipsisa64sr71kel \ | mipstx39 | mipstx39el \ | mn10200 | mn10300 \ | moxie \ | mt \ | msp430 \ | nds32 | nds32le | nds32be \ | nios | nios2 \ | ns16k | ns32k \ | or32 \ | pdp10 | pdp11 | pj | pjl \ | powerpc | powerpc64 | powerpc64le | powerpcle | ppcbe \ | pyramid \ | rx \ | score \ | sh | sh[1234] | sh[24]a | sh[24]aeb | sh[23]e | sh[34]eb | sheb | shbe | shle | sh[1234]le | sh3ele \ | sh64 | sh64le \ | sparc | sparc64 | sparc64b | sparc64v | sparc86x | sparclet | sparclite \ | sparcv8 | sparcv9 | sparcv9b | sparcv9v \ | spu | strongarm \ | tahoe | thumb | tic4x | tic54x | tic55x | tic6x | tic80 | tron \ | ubicom32 \ | v850 | v850e \ | we32k \ | x86 | xc16x | xscale | xscalee[bl] | xstormy16 | xtensa \ | z8k | z80) basic_machine=$basic_machine-unknown ;; c54x) basic_machine=tic54x-unknown ;; c55x) basic_machine=tic55x-unknown ;; c6x) basic_machine=tic6x-unknown ;; m6811 | m68hc11 | m6812 | m68hc12 | picochip) # Motorola 68HC11/12. basic_machine=$basic_machine-unknown os=-none ;; m88110 | m680[12346]0 | m683?2 | m68360 | m5200 | v70 | w65 | z8k) ;; ms1) basic_machine=mt-unknown ;; # We use `pc' rather than `unknown' # because (1) that's what they normally are, and # (2) the word "unknown" tends to confuse beginning users. i*86 | x86_64) basic_machine=$basic_machine-pc ;; # Object if more than one company name word. *-*-*) echo Invalid configuration \`$1\': machine \`$basic_machine\' not recognized 1>&2 exit 1 ;; # Recognize the basic CPU types with company name. 580-* \ | a29k-* \ | alpha-* | alphaev[4-8]-* | alphaev56-* | alphaev6[78]-* \ | alpha64-* | alpha64ev[4-8]-* | alpha64ev56-* | alpha64ev6[78]-* \ | alphapca5[67]-* | alpha64pca5[67]-* | arc-* \ | arm-* | armbe-* | armle-* | armeb-* | armv*-* \ | avr-* | avr32-* \ | bfin-* | bs2000-* \ | c[123]* | c30-* | [cjt]90-* | c4x-* \ | clipper-* | craynv-* | cydra-* \ | d10v-* | d30v-* | dlx-* \ | elxsi-* \ | f30[01]-* | f700-* | fido-* | fr30-* | frv-* | fx80-* \ | h8300-* | h8500-* \ | hppa-* | hppa1.[01]-* | hppa2.0-* | hppa2.0[nw]-* | hppa64-* \ | i*86-* | i860-* | i960-* | ia64-* \ | ip2k-* | iq2000-* \ | lm32-* \ | m32c-* | m32r-* | m32rle-* \ | m68000-* | m680[012346]0-* | m68360-* | m683?2-* | m68k-* \ | m88110-* | m88k-* | maxq-* | mcore-* | metag-* | microblaze-* \ | mips-* | mipsbe-* | mipseb-* | mipsel-* | mipsle-* \ | mips16-* \ | mips64-* | mips64el-* \ | mips64octeon-* | mips64octeonel-* \ | mips64orion-* | mips64orionel-* \ | mips64r5900-* | mips64r5900el-* \ | mips64vr-* | mips64vrel-* \ | mips64vr4100-* | mips64vr4100el-* \ | mips64vr4300-* | mips64vr4300el-* \ | mips64vr5000-* | mips64vr5000el-* \ | mips64vr5900-* | mips64vr5900el-* \ | mipsisa32-* | mipsisa32el-* \ | mipsisa32r2-* | mipsisa32r2el-* \ | mipsisa64-* | mipsisa64el-* \ | mipsisa64r2-* | mipsisa64r2el-* \ | mipsisa64sb1-* | mipsisa64sb1el-* \ | mipsisa64sr71k-* | mipsisa64sr71kel-* \ | mipstx39-* | mipstx39el-* \ | mmix-* \ | mt-* \ | msp430-* \ | nds32-* | nds32le-* | nds32be-* \ | nios-* | nios2-* \ | none-* | np1-* | ns16k-* | ns32k-* \ | orion-* \ | pdp10-* | pdp11-* | pj-* | pjl-* | pn-* | power-* \ | powerpc-* | powerpc64-* | powerpc64le-* | powerpcle-* | ppcbe-* \ | pyramid-* \ | romp-* | rs6000-* | rx-* \ | sh-* | sh[1234]-* | sh[24]a-* | sh[24]aeb-* | sh[23]e-* | sh[34]eb-* | sheb-* | shbe-* \ | shle-* | sh[1234]le-* | sh3ele-* | sh64-* | sh64le-* \ | sparc-* | sparc64-* | sparc64b-* | sparc64v-* | sparc86x-* | sparclet-* \ | sparclite-* \ | sparcv8-* | sparcv9-* | sparcv9b-* | sparcv9v-* | strongarm-* | sv1-* | sx?-* \ | tahoe-* | thumb-* \ | tic30-* | tic4x-* | tic54x-* | tic55x-* | tic6x-* | tic80-* \ | tile-* | tilegx-* \ | tron-* \ | ubicom32-* \ | v850-* | v850e-* | vax-* \ | we32k-* \ | x86-* | x86_64-* | xc16x-* | xps100-* | xscale-* | xscalee[bl]-* \ | xstormy16-* | xtensa*-* \ | ymp-* \ | z8k-* | z80-*) ;; # Recognize the basic CPU types without company name, with glob match. xtensa*) basic_machine=$basic_machine-unknown ;; # Recognize the various machine names and aliases which stand # for a CPU type and a company and sometimes even an OS. 386bsd) basic_machine=i386-unknown os=-bsd ;; 3b1 | 7300 | 7300-att | att-7300 | pc7300 | safari | unixpc) basic_machine=m68000-att ;; 3b*) basic_machine=we32k-att ;; a29khif) basic_machine=a29k-amd os=-udi ;; abacus) basic_machine=abacus-unknown ;; adobe68k) basic_machine=m68010-adobe os=-scout ;; alliant | fx80) basic_machine=fx80-alliant ;; altos | altos3068) basic_machine=m68k-altos ;; am29k) basic_machine=a29k-none os=-bsd ;; amd64) basic_machine=x86_64-pc ;; amd64-*) basic_machine=x86_64-`echo $basic_machine | sed 's/^[^-]*-//'` ;; amdahl) basic_machine=580-amdahl os=-sysv ;; amiga | amiga-*) basic_machine=m68k-unknown ;; amigaos | amigados) basic_machine=m68k-unknown os=-amigaos ;; amigaunix | amix) basic_machine=m68k-unknown os=-sysv4 ;; apollo68) basic_machine=m68k-apollo os=-sysv ;; apollo68bsd) basic_machine=m68k-apollo os=-bsd ;; aros) basic_machine=i386-pc os=-aros ;; aux) basic_machine=m68k-apple os=-aux ;; balance) basic_machine=ns32k-sequent os=-dynix ;; blackfin) basic_machine=bfin-unknown os=-linux ;; blackfin-*) basic_machine=bfin-`echo $basic_machine | sed 's/^[^-]*-//'` os=-linux ;; bluegene*) basic_machine=powerpc-ibm os=-cnk ;; c54x-*) basic_machine=tic54x-`echo $basic_machine | sed 's/^[^-]*-//'` ;; c55x-*) basic_machine=tic55x-`echo $basic_machine | sed 's/^[^-]*-//'` ;; c6x-*) basic_machine=tic6x-`echo $basic_machine | sed 's/^[^-]*-//'` ;; c90) basic_machine=c90-cray os=-unicos ;; cegcc) basic_machine=arm-unknown os=-cegcc ;; convex-c1) basic_machine=c1-convex os=-bsd ;; convex-c2) basic_machine=c2-convex os=-bsd ;; convex-c32) basic_machine=c32-convex os=-bsd ;; convex-c34) basic_machine=c34-convex os=-bsd ;; convex-c38) basic_machine=c38-convex os=-bsd ;; cray | j90) basic_machine=j90-cray os=-unicos ;; craynv) basic_machine=craynv-cray os=-unicosmp ;; cr16) basic_machine=cr16-unknown os=-elf ;; crds | unos) basic_machine=m68k-crds ;; crisv32 | crisv32-* | etraxfs*) basic_machine=crisv32-axis ;; cris | cris-* | etrax*) basic_machine=cris-axis ;; crx) basic_machine=crx-unknown os=-elf ;; da30 | da30-*) basic_machine=m68k-da30 ;; decstation | decstation-3100 | pmax | pmax-* | pmin | dec3100 | decstatn) basic_machine=mips-dec ;; decsystem10* | dec10*) basic_machine=pdp10-dec os=-tops10 ;; decsystem20* | dec20*) basic_machine=pdp10-dec os=-tops20 ;; delta | 3300 | motorola-3300 | motorola-delta \ | 3300-motorola | delta-motorola) basic_machine=m68k-motorola ;; delta88) basic_machine=m88k-motorola os=-sysv3 ;; dicos) basic_machine=i686-pc os=-dicos ;; djgpp) basic_machine=i586-pc os=-msdosdjgpp ;; dpx20 | dpx20-*) basic_machine=rs6000-bull os=-bosx ;; dpx2* | dpx2*-bull) basic_machine=m68k-bull os=-sysv3 ;; ebmon29k) basic_machine=a29k-amd os=-ebmon ;; elxsi) basic_machine=elxsi-elxsi os=-bsd ;; encore | umax | mmax) basic_machine=ns32k-encore ;; es1800 | OSE68k | ose68k | ose | OSE) basic_machine=m68k-ericsson os=-ose ;; fx2800) basic_machine=i860-alliant ;; genix) basic_machine=ns32k-ns ;; gmicro) basic_machine=tron-gmicro os=-sysv ;; go32) basic_machine=i386-pc os=-go32 ;; h3050r* | hiux*) basic_machine=hppa1.1-hitachi os=-hiuxwe2 ;; h8300hms) basic_machine=h8300-hitachi os=-hms ;; h8300xray) basic_machine=h8300-hitachi os=-xray ;; h8500hms) basic_machine=h8500-hitachi os=-hms ;; harris) basic_machine=m88k-harris os=-sysv3 ;; hp300-*) basic_machine=m68k-hp ;; hp300bsd) basic_machine=m68k-hp os=-bsd ;; hp300hpux) basic_machine=m68k-hp os=-hpux ;; hp3k9[0-9][0-9] | hp9[0-9][0-9]) basic_machine=hppa1.0-hp ;; hp9k2[0-9][0-9] | hp9k31[0-9]) basic_machine=m68000-hp ;; hp9k3[2-9][0-9]) basic_machine=m68k-hp ;; hp9k6[0-9][0-9] | hp6[0-9][0-9]) basic_machine=hppa1.0-hp ;; hp9k7[0-79][0-9] | hp7[0-79][0-9]) basic_machine=hppa1.1-hp ;; hp9k78[0-9] | hp78[0-9]) # FIXME: really hppa2.0-hp basic_machine=hppa1.1-hp ;; hp9k8[67]1 | hp8[67]1 | hp9k80[24] | hp80[24] | hp9k8[78]9 | hp8[78]9 | hp9k893 | hp893) # FIXME: really hppa2.0-hp basic_machine=hppa1.1-hp ;; hp9k8[0-9][13679] | hp8[0-9][13679]) basic_machine=hppa1.1-hp ;; hp9k8[0-9][0-9] | hp8[0-9][0-9]) basic_machine=hppa1.0-hp ;; hppa-next) os=-nextstep3 ;; hppaosf) basic_machine=hppa1.1-hp os=-osf ;; hppro) basic_machine=hppa1.1-hp os=-proelf ;; i370-ibm* | ibm*) basic_machine=i370-ibm ;; # I'm not sure what "Sysv32" means. Should this be sysv3.2? i*86v32) basic_machine=`echo $1 | sed -e 's/86.*/86-pc/'` os=-sysv32 ;; i*86v4*) basic_machine=`echo $1 | sed -e 's/86.*/86-pc/'` os=-sysv4 ;; i*86v) basic_machine=`echo $1 | sed -e 's/86.*/86-pc/'` os=-sysv ;; i*86sol2) basic_machine=`echo $1 | sed -e 's/86.*/86-pc/'` os=-solaris2 ;; i386mach) basic_machine=i386-mach os=-mach ;; i386-vsta | vsta) basic_machine=i386-unknown os=-vsta ;; iris | iris4d) basic_machine=mips-sgi case $os in -irix*) ;; *) os=-irix4 ;; esac ;; isi68 | isi) basic_machine=m68k-isi os=-sysv ;; m68knommu) basic_machine=m68k-unknown os=-linux ;; m68knommu-*) basic_machine=m68k-`echo $basic_machine | sed 's/^[^-]*-//'` os=-linux ;; m88k-omron*) basic_machine=m88k-omron ;; magnum | m3230) basic_machine=mips-mips os=-sysv ;; merlin) basic_machine=ns32k-utek os=-sysv ;; microblaze) basic_machine=microblaze-xilinx ;; mingw32) basic_machine=i386-pc os=-mingw32 ;; mingw32ce) basic_machine=arm-unknown os=-mingw32ce ;; miniframe) basic_machine=m68000-convergent ;; *mint | -mint[0-9]* | *MiNT | *MiNT[0-9]*) basic_machine=m68k-atari os=-mint ;; mips3*-*) basic_machine=`echo $basic_machine | sed -e 's/mips3/mips64/'` ;; mips3*) basic_machine=`echo $basic_machine | sed -e 's/mips3/mips64/'`-unknown ;; monitor) basic_machine=m68k-rom68k os=-coff ;; morphos) basic_machine=powerpc-unknown os=-morphos ;; msdos) basic_machine=i386-pc os=-msdos ;; ms1-*) basic_machine=`echo $basic_machine | sed -e 's/ms1-/mt-/'` ;; mvs) basic_machine=i370-ibm os=-mvs ;; ncr3000) basic_machine=i486-ncr os=-sysv4 ;; netbsd386) basic_machine=i386-unknown os=-netbsd ;; netwinder) basic_machine=armv4l-rebel os=-linux ;; news | news700 | news800 | news900) basic_machine=m68k-sony os=-newsos ;; news1000) basic_machine=m68030-sony os=-newsos ;; news-3600 | risc-news) basic_machine=mips-sony os=-newsos ;; necv70) basic_machine=v70-nec os=-sysv ;; next | m*-next ) basic_machine=m68k-next case $os in -nextstep* ) ;; -ns2*) os=-nextstep2 ;; *) os=-nextstep3 ;; esac ;; nh3000) basic_machine=m68k-harris os=-cxux ;; nh[45]000) basic_machine=m88k-harris os=-cxux ;; nindy960) basic_machine=i960-intel os=-nindy ;; mon960) basic_machine=i960-intel os=-mon960 ;; nonstopux) basic_machine=mips-compaq os=-nonstopux ;; np1) basic_machine=np1-gould ;; neo-tandem) basic_machine=neo-tandem ;; nse-tandem) basic_machine=nse-tandem ;; nsr-tandem) basic_machine=nsr-tandem ;; op50n-* | op60c-*) basic_machine=hppa1.1-oki os=-proelf ;; openrisc | openrisc-*) basic_machine=or32-unknown ;; os400) basic_machine=powerpc-ibm os=-os400 ;; OSE68000 | ose68000) basic_machine=m68000-ericsson os=-ose ;; os68k) basic_machine=m68k-none os=-os68k ;; pa-hitachi) basic_machine=hppa1.1-hitachi os=-hiuxwe2 ;; paragon) basic_machine=i860-intel os=-osf ;; parisc) basic_machine=hppa-unknown os=-linux ;; parisc-*) basic_machine=hppa-`echo $basic_machine | sed 's/^[^-]*-//'` os=-linux ;; pbd) basic_machine=sparc-tti ;; pbb) basic_machine=m68k-tti ;; pc532 | pc532-*) basic_machine=ns32k-pc532 ;; pc98) basic_machine=i386-pc ;; pc98-*) basic_machine=i386-`echo $basic_machine | sed 's/^[^-]*-//'` ;; pentium | p5 | k5 | k6 | nexgen | viac3) basic_machine=i586-pc ;; pentiumpro | p6 | 6x86 | athlon | athlon_*) basic_machine=i686-pc ;; pentiumii | pentium2 | pentiumiii | pentium3) basic_machine=i686-pc ;; pentium4) basic_machine=i786-pc ;; pentium-* | p5-* | k5-* | k6-* | nexgen-* | viac3-*) basic_machine=i586-`echo $basic_machine | sed 's/^[^-]*-//'` ;; pentiumpro-* | p6-* | 6x86-* | athlon-*) basic_machine=i686-`echo $basic_machine | sed 's/^[^-]*-//'` ;; pentiumii-* | pentium2-* | pentiumiii-* | pentium3-*) basic_machine=i686-`echo $basic_machine | sed 's/^[^-]*-//'` ;; pentium4-*) basic_machine=i786-`echo $basic_machine | sed 's/^[^-]*-//'` ;; pn) basic_machine=pn-gould ;; power) basic_machine=power-ibm ;; ppc) basic_machine=powerpc-unknown ;; ppc-*) basic_machine=powerpc-`echo $basic_machine | sed 's/^[^-]*-//'` ;; ppcle | powerpclittle | ppc-le | powerpc-little) basic_machine=powerpcle-unknown ;; ppcle-* | powerpclittle-*) basic_machine=powerpcle-`echo $basic_machine | sed 's/^[^-]*-//'` ;; ppc64) basic_machine=powerpc64-unknown ;; ppc64-*) basic_machine=powerpc64-`echo $basic_machine | sed 's/^[^-]*-//'` ;; ppc64le | powerpc64little | ppc64-le | powerpc64-little) basic_machine=powerpc64le-unknown ;; ppc64le-* | powerpc64little-*) basic_machine=powerpc64le-`echo $basic_machine | sed 's/^[^-]*-//'` ;; ps2) basic_machine=i386-ibm ;; pw32) basic_machine=i586-unknown os=-pw32 ;; rdos) basic_machine=i386-pc os=-rdos ;; rom68k) basic_machine=m68k-rom68k os=-coff ;; rm[46]00) basic_machine=mips-siemens ;; rtpc | rtpc-*) basic_machine=romp-ibm ;; s390 | s390-*) basic_machine=s390-ibm ;; s390x | s390x-*) basic_machine=s390x-ibm ;; sa29200) basic_machine=a29k-amd os=-udi ;; sb1) basic_machine=mipsisa64sb1-unknown ;; sb1el) basic_machine=mipsisa64sb1el-unknown ;; sde) basic_machine=mipsisa32-sde os=-elf ;; sei) basic_machine=mips-sei os=-seiux ;; sequent) basic_machine=i386-sequent ;; sh) basic_machine=sh-hitachi os=-hms ;; sh5el) basic_machine=sh5le-unknown ;; sh64) basic_machine=sh64-unknown ;; sparclite-wrs | simso-wrs) basic_machine=sparclite-wrs os=-vxworks ;; sps7) basic_machine=m68k-bull os=-sysv2 ;; spur) basic_machine=spur-unknown ;; st2000) basic_machine=m68k-tandem ;; stratus) basic_machine=i860-stratus os=-sysv4 ;; sun2) basic_machine=m68000-sun ;; sun2os3) basic_machine=m68000-sun os=-sunos3 ;; sun2os4) basic_machine=m68000-sun os=-sunos4 ;; sun3os3) basic_machine=m68k-sun os=-sunos3 ;; sun3os4) basic_machine=m68k-sun os=-sunos4 ;; sun4os3) basic_machine=sparc-sun os=-sunos3 ;; sun4os4) basic_machine=sparc-sun os=-sunos4 ;; sun4sol2) basic_machine=sparc-sun os=-solaris2 ;; sun3 | sun3-*) basic_machine=m68k-sun ;; sun4) basic_machine=sparc-sun ;; sun386 | sun386i | roadrunner) basic_machine=i386-sun ;; sv1) basic_machine=sv1-cray os=-unicos ;; symmetry) basic_machine=i386-sequent os=-dynix ;; t3e) basic_machine=alphaev5-cray os=-unicos ;; t90) basic_machine=t90-cray os=-unicos ;; # This must be matched before tile*. tilegx*) basic_machine=tilegx-unknown os=-linux-gnu ;; tile*) basic_machine=tile-unknown os=-linux-gnu ;; tx39) basic_machine=mipstx39-unknown ;; tx39el) basic_machine=mipstx39el-unknown ;; toad1) basic_machine=pdp10-xkl os=-tops20 ;; tower | tower-32) basic_machine=m68k-ncr ;; tpf) basic_machine=s390x-ibm os=-tpf ;; udi29k) basic_machine=a29k-amd os=-udi ;; ultra3) basic_machine=a29k-nyu os=-sym1 ;; v810 | necv810) basic_machine=v810-nec os=-none ;; vaxv) basic_machine=vax-dec os=-sysv ;; vms) basic_machine=vax-dec os=-vms ;; vpp*|vx|vx-*) basic_machine=f301-fujitsu ;; vxworks960) basic_machine=i960-wrs os=-vxworks ;; vxworks68) basic_machine=m68k-wrs os=-vxworks ;; vxworks29k) basic_machine=a29k-wrs os=-vxworks ;; w65*) basic_machine=w65-wdc os=-none ;; w89k-*) basic_machine=hppa1.1-winbond os=-proelf ;; xbox) basic_machine=i686-pc os=-mingw32 ;; xps | xps100) basic_machine=xps100-honeywell ;; ymp) basic_machine=ymp-cray os=-unicos ;; z8k-*-coff) basic_machine=z8k-unknown os=-sim ;; z80-*-coff) basic_machine=z80-unknown os=-sim ;; none) basic_machine=none-none os=-none ;; # Here we handle the default manufacturer of certain CPU types. It is in # some cases the only manufacturer, in others, it is the most popular. w89k) basic_machine=hppa1.1-winbond ;; op50n) basic_machine=hppa1.1-oki ;; op60c) basic_machine=hppa1.1-oki ;; romp) basic_machine=romp-ibm ;; mmix) basic_machine=mmix-knuth ;; rs6000) basic_machine=rs6000-ibm ;; vax) basic_machine=vax-dec ;; pdp10) # there are many clones, so DEC is not a safe bet basic_machine=pdp10-unknown ;; pdp11) basic_machine=pdp11-dec ;; we32k) basic_machine=we32k-att ;; sh[1234] | sh[24]a | sh[24]aeb | sh[34]eb | sh[1234]le | sh[23]ele) basic_machine=sh-unknown ;; sparc | sparcv8 | sparcv9 | sparcv9b | sparcv9v) basic_machine=sparc-sun ;; cydra) basic_machine=cydra-cydrome ;; orion) basic_machine=orion-highlevel ;; orion105) basic_machine=clipper-highlevel ;; mac | mpw | mac-mpw) basic_machine=m68k-apple ;; pmac | pmac-mpw) basic_machine=powerpc-apple ;; *-unknown) # Make sure to match an already-canonicalized machine name. ;; *) echo Invalid configuration \`$1\': machine \`$basic_machine\' not recognized 1>&2 exit 1 ;; esac # Here we canonicalize certain aliases for manufacturers. case $basic_machine in *-digital*) basic_machine=`echo $basic_machine | sed 's/digital.*/dec/'` ;; *-commodore*) basic_machine=`echo $basic_machine | sed 's/commodore.*/cbm/'` ;; *) ;; esac # Decode manufacturer-specific aliases for certain operating systems. if [ x"$os" != x"" ] then case $os in # First match some system type aliases # that might get confused with valid system types. # -solaris* is a basic system type, with this one exception. -auroraux) os=-auroraux ;; -solaris1 | -solaris1.*) os=`echo $os | sed -e 's|solaris1|sunos4|'` ;; -solaris) os=-solaris2 ;; -svr4*) os=-sysv4 ;; -unixware*) os=-sysv4.2uw ;; -gnu/linux*) os=`echo $os | sed -e 's|gnu/linux|linux-gnu|'` ;; # First accept the basic system types. # The portable systems comes first. # Each alternative MUST END IN A *, to match a version number. # -sysv* is not here because it comes later, after sysvr4. -gnu* | -bsd* | -mach* | -minix* | -genix* | -ultrix* | -irix* \ | -*vms* | -sco* | -esix* | -isc* | -aix* | -cnk* | -sunos | -sunos[34]*\ | -hpux* | -unos* | -osf* | -luna* | -dgux* | -auroraux* | -solaris* \ | -sym* | -kopensolaris* \ | -amigaos* | -amigados* | -msdos* | -newsos* | -unicos* | -aof* \ | -aos* | -aros* \ | -nindy* | -vxsim* | -vxworks* | -ebmon* | -hms* | -mvs* \ | -clix* | -riscos* | -uniplus* | -iris* | -rtu* | -xenix* \ | -hiux* | -386bsd* | -knetbsd* | -mirbsd* | -netbsd* \ | -openbsd* | -solidbsd* \ | -ekkobsd* | -kfreebsd* | -freebsd* | -riscix* | -lynxos* \ | -bosx* | -nextstep* | -cxux* | -aout* | -elf* | -oabi* \ | -ptx* | -coff* | -ecoff* | -winnt* | -domain* | -vsta* \ | -udi* | -eabi* | -lites* | -ieee* | -go32* | -aux* \ | -chorusos* | -chorusrdb* | -cegcc* \ | -cygwin* | -pe* | -psos* | -moss* | -proelf* | -rtems* \ | -mingw32* | -linux-gnu* | -linux-android* \ | -linux-newlib* | -linux-uclibc* \ | -uxpv* | -beos* | -mpeix* | -udk* \ | -interix* | -uwin* | -mks* | -rhapsody* | -darwin* | -opened* \ | -openstep* | -oskit* | -conix* | -pw32* | -nonstopux* \ | -storm-chaos* | -tops10* | -tenex* | -tops20* | -its* \ | -os2* | -vos* | -palmos* | -uclinux* | -nucleus* \ | -morphos* | -superux* | -rtmk* | -rtmk-nova* | -windiss* \ | -powermax* | -dnix* | -nx6 | -nx7 | -sei* | -dragonfly* \ | -skyos* | -haiku* | -rdos* | -toppers* | -drops* | -es*) # Remember, each alternative MUST END IN *, to match a version number. ;; -qnx*) case $basic_machine in x86-* | i*86-*) ;; *) os=-nto$os ;; esac ;; -nto-qnx*) ;; -nto*) os=`echo $os | sed -e 's|nto|nto-qnx|'` ;; -sim | -es1800* | -hms* | -xray | -os68k* | -none* | -v88r* \ | -windows* | -osx | -abug | -netware* | -os9* | -beos* | -haiku* \ | -macos* | -mpw* | -magic* | -mmixware* | -mon960* | -lnews*) ;; -mac*) os=`echo $os | sed -e 's|mac|macos|'` ;; -linux-dietlibc) os=-linux-dietlibc ;; -linux*) os=`echo $os | sed -e 's|linux|linux-gnu|'` ;; -sunos5*) os=`echo $os | sed -e 's|sunos5|solaris2|'` ;; -sunos6*) os=`echo $os | sed -e 's|sunos6|solaris3|'` ;; -opened*) os=-openedition ;; -os400*) os=-os400 ;; -wince*) os=-wince ;; -osfrose*) os=-osfrose ;; -osf*) os=-osf ;; -utek*) os=-bsd ;; -dynix*) os=-bsd ;; -acis*) os=-aos ;; -atheos*) os=-atheos ;; -syllable*) os=-syllable ;; -386bsd) os=-bsd ;; -ctix* | -uts*) os=-sysv ;; -nova*) os=-rtmk-nova ;; -ns2 ) os=-nextstep2 ;; -nsk*) os=-nsk ;; # Preserve the version number of sinix5. -sinix5.*) os=`echo $os | sed -e 's|sinix|sysv|'` ;; -sinix*) os=-sysv4 ;; -tpf*) os=-tpf ;; -triton*) os=-sysv3 ;; -oss*) os=-sysv3 ;; -svr4) os=-sysv4 ;; -svr3) os=-sysv3 ;; -sysvr4) os=-sysv4 ;; # This must come after -sysvr4. -sysv*) ;; -ose*) os=-ose ;; -es1800*) os=-ose ;; -xenix) os=-xenix ;; -*mint | -mint[0-9]* | -*MiNT | -MiNT[0-9]*) os=-mint ;; -aros*) os=-aros ;; -kaos*) os=-kaos ;; -zvmoe) os=-zvmoe ;; -dicos*) os=-dicos ;; -nacl*) ;; -none) ;; *) # Get rid of the `-' at the beginning of $os. os=`echo $os | sed 's/[^-]*-//'` echo Invalid configuration \`$1\': system \`$os\' not recognized 1>&2 exit 1 ;; esac else # Here we handle the default operating systems that come with various machines. # The value should be what the vendor currently ships out the door with their # machine or put another way, the most popular os provided with the machine. # Note that if you're going to try to match "-MANUFACTURER" here (say, # "-sun"), then you have to tell the case statement up towards the top # that MANUFACTURER isn't an operating system. Otherwise, code above # will signal an error saying that MANUFACTURER isn't an operating # system, and we'll never get to this point. case $basic_machine in score-*) os=-elf ;; spu-*) os=-elf ;; *-acorn) os=-riscix1.2 ;; arm*-rebel) os=-linux ;; arm*-semi) os=-aout ;; c4x-* | tic4x-*) os=-coff ;; tic54x-*) os=-coff ;; tic55x-*) os=-coff ;; tic6x-*) os=-coff ;; # This must come before the *-dec entry. pdp10-*) os=-tops20 ;; pdp11-*) os=-none ;; *-dec | vax-*) os=-ultrix4.2 ;; m68*-apollo) os=-domain ;; i386-sun) os=-sunos4.0.2 ;; m68000-sun) os=-sunos3 # This also exists in the configure program, but was not the # default. # os=-sunos4 ;; m68*-cisco) os=-aout ;; mep-*) os=-elf ;; mips*-cisco) os=-elf ;; mips*-*) os=-elf ;; or32-*) os=-coff ;; *-tti) # must be before sparc entry or we get the wrong os. os=-sysv3 ;; sparc-* | *-sun) os=-sunos4.1.1 ;; *-be) os=-beos ;; *-haiku) os=-haiku ;; *-ibm) os=-aix ;; *-knuth) os=-mmixware ;; *-wec) os=-proelf ;; *-winbond) os=-proelf ;; *-oki) os=-proelf ;; *-hp) os=-hpux ;; *-hitachi) os=-hiux ;; i860-* | *-att | *-ncr | *-altos | *-motorola | *-convergent) os=-sysv ;; *-cbm) os=-amigaos ;; *-dg) os=-dgux ;; *-dolphin) os=-sysv3 ;; m68k-ccur) os=-rtu ;; m88k-omron*) os=-luna ;; *-next ) os=-nextstep ;; *-sequent) os=-ptx ;; *-crds) os=-unos ;; *-ns) os=-genix ;; i370-*) os=-mvs ;; *-next) os=-nextstep3 ;; *-gould) os=-sysv ;; *-highlevel) os=-bsd ;; *-encore) os=-bsd ;; *-sgi) os=-irix ;; *-siemens) os=-sysv4 ;; *-masscomp) os=-rtu ;; f30[01]-fujitsu | f700-fujitsu) os=-uxpv ;; *-rom68k) os=-coff ;; *-*bug) os=-coff ;; *-apple) os=-macos ;; *-atari*) os=-mint ;; *) os=-none ;; esac fi # Here we handle the case where we know the os, and the CPU type, but not the # manufacturer. We pick the logical manufacturer. vendor=unknown case $basic_machine in *-unknown) case $os in -riscix*) vendor=acorn ;; -sunos*) vendor=sun ;; -cnk*|-aix*) vendor=ibm ;; -beos*) vendor=be ;; -hpux*) vendor=hp ;; -mpeix*) vendor=hp ;; -hiux*) vendor=hitachi ;; -unos*) vendor=crds ;; -dgux*) vendor=dg ;; -luna*) vendor=omron ;; -genix*) vendor=ns ;; -mvs* | -opened*) vendor=ibm ;; -os400*) vendor=ibm ;; -ptx*) vendor=sequent ;; -tpf*) vendor=ibm ;; -vxsim* | -vxworks* | -windiss*) vendor=wrs ;; -aux*) vendor=apple ;; -hms*) vendor=hitachi ;; -mpw* | -macos*) vendor=apple ;; -*mint | -mint[0-9]* | -*MiNT | -MiNT[0-9]*) vendor=atari ;; -vos*) vendor=stratus ;; esac basic_machine=`echo $basic_machine | sed "s/unknown/$vendor/"` ;; esac echo $basic_machine$os exit # Local variables: # eval: (add-hook 'write-file-hooks 'time-stamp) # time-stamp-start: "timestamp='" # time-stamp-format: "%:y-%02m-%02d" # time-stamp-end: "'" # End: ;; v810 | necv810) basic_machine=v810-nec os=-none ;; vaxv) basic_machine=vax-dec os=-sysv ;; vms) basic_machine=vax-dec os=-vms ;; vpp*|vx|vx-*) basic_machine=f301-fujitsu ;; vxworks960) basic_machine=i960-wrs os=-vxworks ;printproto-1.0.5/COPYING000064401431060000012000000030431147227314100152540ustar00alancstaff00002660200007(c) Copyright 1996 Hewlett-Packard Company (c) Copyright 1996 International Business Machines Corp. (c) Copyright 1996, Oracle and/or its affiliates. All rights reserved. (c) Copyright 1996 Novell, Inc. (c) Copyright 1996 Digital Equipment Corp. (c) Copyright 1996 Fujitsu Limited (c) Copyright 1996 Hitachi, Ltd. Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. Except as contained in this notice, the names of the copyright holders shall not be used in advertising or otherwise to promote the sale, use or other dealings in this Software without prior written authorization from said copyright holders. printproto-1.0.5/config.guess000064401431060000012000001277641151122464400165550ustar00alancstaff00002660200007#! /bin/sh # Attempt to guess a canonical system name. # Copyright (C) 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999, # 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010 # Free Software Foundation, Inc. timestamp='2010-08-21' # This file is free software; you can redistribute it and/or modify it # under the terms of the GNU General Public License as published by # the Free Software Foundation; either version 2 of the License, or # (at your option) any later version. # # This program is distributed in the hope that it will be useful, but # WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU # General Public License for more details. # # You should have received a copy of the GNU General Public License # along with this program; if not, write to the Free Software # Foundation, Inc., 51 Franklin Street - Fifth Floor, Boston, MA # 02110-1301, USA. # # As a special exception to the GNU General Public License, if you # distribute this file as part of a program that contains a # configuration script generated by Autoconf, you may include it under # the same distribution terms that you use for the rest of that program. # Originally written by Per Bothner. Please send patches (context # diff format) to and include a ChangeLog # entry. # # This script attempts to guess a canonical system name similar to # config.sub. If it succeeds, it prints the system name on stdout, and # exits with 0. Otherwise, it exits with 1. # # You can get the latest version of this script from: # http://git.savannah.gnu.org/gitweb/?p=config.git;a=blob_plain;f=config.guess;hb=HEAD me=`echo "$0" | sed -e 's,.*/,,'` usage="\ Usage: $0 [OPTION] Output the configuration name of the system \`$me' is run on. Operation modes: -h, --help print this help, then exit -t, --time-stamp print date of last modification, then exit -v, --version print version number, then exit Report bugs and patches to ." version="\ GNU config.guess ($timestamp) Originally written by Per Bothner. Copyright (C) 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010 Free Software Foundation, Inc. This is free software; see the source for copying conditions. There is NO warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE." help=" Try \`$me --help' for more information." # Parse command line while test $# -gt 0 ; do case $1 in --time-stamp | --time* | -t ) echo "$timestamp" ; exit ;; --version | -v ) echo "$version" ; exit ;; --help | --h* | -h ) echo "$usage"; exit ;; -- ) # Stop option processing shift; break ;; - ) # Use stdin as input. break ;; -* ) echo "$me: invalid option $1$help" >&2 exit 1 ;; * ) break ;; esac done if test $# != 0; then echo "$me: too many arguments$help" >&2 exit 1 fi trap 'exit 1' HUP INT TERM # CC_FOR_BUILD -- compiler used by this script. Note that the use of a # compiler to aid in system detection is discouraged as it requires # temporary files to be created and, as you can see below, it is a # headache to deal with in a portable fashion. # Historically, `CC_FOR_BUILD' used to be named `HOST_CC'. We still # use `HOST_CC' if defined, but it is deprecated. # Portable tmp directory creation inspired by the Autoconf team. set_cc_for_build=' trap "exitcode=\$?; (rm -f \$tmpfiles 2>/dev/null; rmdir \$tmp 2>/dev/null) && exit \$exitcode" 0 ; trap "rm -f \$tmpfiles 2>/dev/null; rmdir \$tmp 2>/dev/null; exit 1" HUP INT PIPE TERM ; : ${TMPDIR=/tmp} ; { tmp=`(umask 077 && mktemp -d "$TMPDIR/cgXXXXXX") 2>/dev/null` && test -n "$tmp" && test -d "$tmp" ; } || { test -n "$RANDOM" && tmp=$TMPDIR/cg$$-$RANDOM && (umask 077 && mkdir $tmp) ; } || { tmp=$TMPDIR/cg-$$ && (umask 077 && mkdir $tmp) && echo "Warning: creating insecure temp directory" >&2 ; } || { echo "$me: cannot create a temporary directory in $TMPDIR" >&2 ; exit 1 ; } ; dummy=$tmp/dummy ; tmpfiles="$dummy.c $dummy.o $dummy.rel $dummy" ; case $CC_FOR_BUILD,$HOST_CC,$CC in ,,) echo "int x;" > $dummy.c ; for c in cc gcc c89 c99 ; do if ($c -c -o $dummy.o $dummy.c) >/dev/null 2>&1 ; then CC_FOR_BUILD="$c"; break ; fi ; done ; if test x"$CC_FOR_BUILD" = x ; then CC_FOR_BUILD=no_compiler_found ; fi ;; ,,*) CC_FOR_BUILD=$CC ;; ,*,*) CC_FOR_BUILD=$HOST_CC ;; esac ; set_cc_for_build= ;' # This is needed to find uname on a Pyramid OSx when run in the BSD universe. # (ghazi@noc.rutgers.edu 1994-08-24) if (test -f /.attbin/uname) >/dev/null 2>&1 ; then PATH=$PATH:/.attbin ; export PATH fi UNAME_MACHINE=`(uname -m) 2>/dev/null` || UNAME_MACHINE=unknown UNAME_RELEASE=`(uname -r) 2>/dev/null` || UNAME_RELEASE=unknown UNAME_SYSTEM=`(uname -s) 2>/dev/null` || UNAME_SYSTEM=unknown UNAME_VERSION=`(uname -v) 2>/dev/null` || UNAME_VERSION=unknown # Note: order is significant - the case branches are not exclusive. case "${UNAME_MACHINE}:${UNAME_SYSTEM}:${UNAME_RELEASE}:${UNAME_VERSION}" in *:NetBSD:*:*) # NetBSD (nbsd) targets should (where applicable) match one or # more of the tupples: *-*-netbsdelf*, *-*-netbsdaout*, # *-*-netbsdecoff* and *-*-netbsd*. For targets that recently # switched to ELF, *-*-netbsd* would select the old # object file format. This provides both forward # compatibility and a consistent mechanism for selecting the # object file format. # # Note: NetBSD doesn't particularly care about the vendor # portion of the name. We always set it to "unknown". sysctl="sysctl -n hw.machine_arch" UNAME_MACHINE_ARCH=`(/sbin/$sysctl 2>/dev/null || \ /usr/sbin/$sysctl 2>/dev/null || echo unknown)` case "${UNAME_MACHINE_ARCH}" in armeb) machine=armeb-unknown ;; arm*) machine=arm-unknown ;; sh3el) machine=shl-unknown ;; sh3eb) machine=sh-unknown ;; sh5el) machine=sh5le-unknown ;; *) machine=${UNAME_MACHINE_ARCH}-unknown ;; esac # The Operating System including object format, if it has switched # to ELF recently, or will in the future. case "${UNAME_MACHINE_ARCH}" in arm*|i386|m68k|ns32k|sh3*|sparc|vax) eval $set_cc_for_build if echo __ELF__ | $CC_FOR_BUILD -E - 2>/dev/null \ | grep -q __ELF__ then # Once all utilities can be ECOFF (netbsdecoff) or a.out (netbsdaout). # Return netbsd for either. FIX? os=netbsd else os=netbsdelf fi ;; *) os=netbsd ;; esac # The OS release # Debian GNU/NetBSD machines have a different userland, and # thus, need a distinct triplet. However, they do not need # kernel version information, so it can be replaced with a # suitable tag, in the style of linux-gnu. case "${UNAME_VERSION}" in Debian*) release='-gnu' ;; *) release=`echo ${UNAME_RELEASE}|sed -e 's/[-_].*/\./'` ;; esac # Since CPU_TYPE-MANUFACTURER-KERNEL-OPERATING_SYSTEM: # contains redundant information, the shorter form: # CPU_TYPE-MANUFACTURER-OPERATING_SYSTEM is used. echo "${machine}-${os}${release}" exit ;; *:OpenBSD:*:*) UNAME_MACHINE_ARCH=`arch | sed 's/OpenBSD.//'` echo ${UNAME_MACHINE_ARCH}-unknown-openbsd${UNAME_RELEASE} exit ;; *:ekkoBSD:*:*) echo ${UNAME_MACHINE}-unknown-ekkobsd${UNAME_RELEASE} exit ;; *:SolidBSD:*:*) echo ${UNAME_MACHINE}-unknown-solidbsd${UNAME_RELEASE} exit ;; macppc:MirBSD:*:*) echo powerpc-unknown-mirbsd${UNAME_RELEASE} exit ;; *:MirBSD:*:*) echo ${UNAME_MACHINE}-unknown-mirbsd${UNAME_RELEASE} exit ;; alpha:OSF1:*:*) case $UNAME_RELEASE in *4.0) UNAME_RELEASE=`/usr/sbin/sizer -v | awk '{print $3}'` ;; *5.*) UNAME_RELEASE=`/usr/sbin/sizer -v | awk '{print $4}'` ;; esac # According to Compaq, /usr/sbin/psrinfo has been available on # OSF/1 and Tru64 systems produced since 1995. I hope that # covers most systems running today. This code pipes the CPU # types through head -n 1, so we only detect the type of CPU 0. ALPHA_CPU_TYPE=`/usr/sbin/psrinfo -v | sed -n -e 's/^ The alpha \(.*\) processor.*$/\1/p' | head -n 1` case "$ALPHA_CPU_TYPE" in "EV4 (21064)") UNAME_MACHINE="alpha" ;; "EV4.5 (21064)") UNAME_MACHINE="alpha" ;; "LCA4 (21066/21068)") UNAME_MACHINE="alpha" ;; "EV5 (21164)") UNAME_MACHINE="alphaev5" ;; "EV5.6 (21164A)") UNAME_MACHINE="alphaev56" ;; "EV5.6 (21164PC)") UNAME_MACHINE="alphapca56" ;; "EV5.7 (21164PC)") UNAME_MACHINE="alphapca57" ;; "EV6 (21264)") UNAME_MACHINE="alphaev6" ;; "EV6.7 (21264A)") UNAME_MACHINE="alphaev67" ;; "EV6.8CB (21264C)") UNAME_MACHINE="alphaev68" ;; "EV6.8AL (21264B)") UNAME_MACHINE="alphaev68" ;; "EV6.8CX (21264D)") UNAME_MACHINE="alphaev68" ;; "EV6.9A (21264/EV69A)") UNAME_MACHINE="alphaev69" ;; "EV7 (21364)") UNAME_MACHINE="alphaev7" ;; "EV7.9 (21364A)") UNAME_MACHINE="alphaev79" ;; esac # A Pn.n version is a patched version. # A Vn.n version is a released version. # A Tn.n version is a released field test version. # A Xn.n version is an unreleased experimental baselevel. # 1.2 uses "1.2" for uname -r. echo ${UNAME_MACHINE}-dec-osf`echo ${UNAME_RELEASE} | sed -e 's/^[PVTX]//' | tr 'ABCDEFGHIJKLMNOPQRSTUVWXYZ' 'abcdefghijklmnopqrstuvwxyz'` exit ;; Alpha\ *:Windows_NT*:*) # How do we know it's Interix rather than the generic POSIX subsystem? # Should we change UNAME_MACHINE based on the output of uname instead # of the specific Alpha model? echo alpha-pc-interix exit ;; 21064:Windows_NT:50:3) echo alpha-dec-winnt3.5 exit ;; Amiga*:UNIX_System_V:4.0:*) echo m68k-unknown-sysv4 exit ;; *:[Aa]miga[Oo][Ss]:*:*) echo ${UNAME_MACHINE}-unknown-amigaos exit ;; *:[Mm]orph[Oo][Ss]:*:*) echo ${UNAME_MACHINE}-unknown-morphos exit ;; *:OS/390:*:*) echo i370-ibm-openedition exit ;; *:z/VM:*:*) echo s390-ibm-zvmoe exit ;; *:OS400:*:*) echo powerpc-ibm-os400 exit ;; arm:RISC*:1.[012]*:*|arm:riscix:1.[012]*:*) echo arm-acorn-riscix${UNAME_RELEASE} exit ;; arm:riscos:*:*|arm:RISCOS:*:*) echo arm-unknown-riscos exit ;; SR2?01:HI-UX/MPP:*:* | SR8000:HI-UX/MPP:*:*) echo hppa1.1-hitachi-hiuxmpp exit ;; Pyramid*:OSx*:*:* | MIS*:OSx*:*:* | MIS*:SMP_DC-OSx*:*:*) # akee@wpdis03.wpafb.af.mil (Earle F. Ake) contributed MIS and NILE. if test "`(/bin/universe) 2>/dev/null`" = att ; then echo pyramid-pyramid-sysv3 else echo pyramid-pyramid-bsd fi exit ;; NILE*:*:*:dcosx) echo pyramid-pyramid-svr4 exit ;; DRS?6000:unix:4.0:6*) echo sparc-icl-nx6 exit ;; DRS?6000:UNIX_SV:4.2*:7* | DRS?6000:isis:4.2*:7*) case `/usr/bin/uname -p` in sparc) echo sparc-icl-nx7; exit ;; esac ;; s390x:SunOS:*:*) echo ${UNAME_MACHINE}-ibm-solaris2`echo ${UNAME_RELEASE}|sed -e 's/[^.]*//'` exit ;; sun4H:SunOS:5.*:*) echo sparc-hal-solaris2`echo ${UNAME_RELEASE}|sed -e 's/[^.]*//'` exit ;; sun4*:SunOS:5.*:* | tadpole*:SunOS:5.*:*) echo sparc-sun-solaris2`echo ${UNAME_RELEASE}|sed -e 's/[^.]*//'` exit ;; i86pc:AuroraUX:5.*:* | i86xen:AuroraUX:5.*:*) echo i386-pc-auroraux${UNAME_RELEASE} exit ;; i86pc:SunOS:5.*:* | i86xen:SunOS:5.*:*) eval $set_cc_for_build SUN_ARCH="i386" # If there is a compiler, see if it is configured for 64-bit objects. # Note that the Sun cc does not turn __LP64__ into 1 like gcc does. # This test works for both compilers. if [ "$CC_FOR_BUILD" != 'no_compiler_found' ]; then if (echo '#ifdef __amd64'; echo IS_64BIT_ARCH; echo '#endif') | \ (CCOPTS= $CC_FOR_BUILD -E - 2>/dev/null) | \ grep IS_64BIT_ARCH >/dev/null then SUN_ARCH="x86_64" fi fi echo ${SUN_ARCH}-pc-solaris2`echo ${UNAME_RELEASE}|sed -e 's/[^.]*//'` exit ;; sun4*:SunOS:6*:*) # According to config.sub, this is the proper way to canonicalize # SunOS6. Hard to guess exactly what SunOS6 will be like, but # it's likely to be more like Solaris than SunOS4. echo sparc-sun-solaris3`echo ${UNAME_RELEASE}|sed -e 's/[^.]*//'` exit ;; sun4*:SunOS:*:*) case "`/usr/bin/arch -k`" in Series*|S4*) UNAME_RELEASE=`uname -v` ;; esac # Japanese Language versions have a version number like `4.1.3-JL'. echo sparc-sun-sunos`echo ${UNAME_RELEASE}|sed -e 's/-/_/'` exit ;; sun3*:SunOS:*:*) echo m68k-sun-sunos${UNAME_RELEASE} exit ;; sun*:*:4.2BSD:*) UNAME_RELEASE=`(sed 1q /etc/motd | awk '{print substr($5,1,3)}') 2>/dev/null` test "x${UNAME_RELEASE}" = "x" && UNAME_RELEASE=3 case "`/bin/arch`" in sun3) echo m68k-sun-sunos${UNAME_RELEASE} ;; sun4) echo sparc-sun-sunos${UNAME_RELEASE} ;; esac exit ;; aushp:SunOS:*:*) echo sparc-auspex-sunos${UNAME_RELEASE} exit ;; # The situation for MiNT is a little confusing. The machine name # can be virtually everything (everything which is not # "atarist" or "atariste" at least should have a processor # > m68000). The system name ranges from "MiNT" over "FreeMiNT" # to the lowercase version "mint" (or "freemint"). Finally # the system name "TOS" denotes a system which is actually not # MiNT. But MiNT is downward compatible to TOS, so this should # be no problem. atarist[e]:*MiNT:*:* | atarist[e]:*mint:*:* | atarist[e]:*TOS:*:*) echo m68k-atari-mint${UNAME_RELEASE} exit ;; atari*:*MiNT:*:* | atari*:*mint:*:* | atarist[e]:*TOS:*:*) echo m68k-atari-mint${UNAME_RELEASE} exit ;; *falcon*:*MiNT:*:* | *falcon*:*mint:*:* | *falcon*:*TOS:*:*) echo m68k-atari-mint${UNAME_RELEASE} exit ;; milan*:*MiNT:*:* | milan*:*mint:*:* | *milan*:*TOS:*:*) echo m68k-milan-mint${UNAME_RELEASE} exit ;; hades*:*MiNT:*:* | hades*:*mint:*:* | *hades*:*TOS:*:*) echo m68k-hades-mint${UNAME_RELEASE} exit ;; *:*MiNT:*:* | *:*mint:*:* | *:*TOS:*:*) echo m68k-unknown-mint${UNAME_RELEASE} exit ;; m68k:machten:*:*) echo m68k-apple-machten${UNAME_RELEASE} exit ;; powerpc:machten:*:*) echo powerpc-apple-machten${UNAME_RELEASE} exit ;; RISC*:Mach:*:*) echo mips-dec-mach_bsd4.3 exit ;; RISC*:ULTRIX:*:*) echo mips-dec-ultrix${UNAME_RELEASE} exit ;; VAX*:ULTRIX*:*:*) echo vax-dec-ultrix${UNAME_RELEASE} exit ;; 2020:CLIX:*:* | 2430:CLIX:*:*) echo clipper-intergraph-clix${UNAME_RELEASE} exit ;; mips:*:*:UMIPS | mips:*:*:RISCos) eval $set_cc_for_build sed 's/^ //' << EOF >$dummy.c #ifdef __cplusplus #include /* for printf() prototype */ int main (int argc, char *argv[]) { #else int main (argc, argv) int argc; char *argv[]; { #endif #if defined (host_mips) && defined (MIPSEB) #if defined (SYSTYPE_SYSV) printf ("mips-mips-riscos%ssysv\n", argv[1]); exit (0); #endif #if defined (SYSTYPE_SVR4) printf ("mips-mips-riscos%ssvr4\n", argv[1]); exit (0); #endif #if defined (SYSTYPE_BSD43) || defined(SYSTYPE_BSD) printf ("mips-mips-riscos%sbsd\n", argv[1]); exit (0); #endif #endif exit (-1); } EOF $CC_FOR_BUILD -o $dummy $dummy.c && dummyarg=`echo "${UNAME_RELEASE}" | sed -n 's/\([0-9]*\).*/\1/p'` && SYSTEM_NAME=`$dummy $dummyarg` && { echo "$SYSTEM_NAME"; exit; } echo mips-mips-riscos${UNAME_RELEASE} exit ;; Motorola:PowerMAX_OS:*:*) echo powerpc-motorola-powermax exit ;; Motorola:*:4.3:PL8-*) echo powerpc-harris-powermax exit ;; Night_Hawk:*:*:PowerMAX_OS | Synergy:PowerMAX_OS:*:*) echo powerpc-harris-powermax exit ;; Night_Hawk:Power_UNIX:*:*) echo powerpc-harris-powerunix exit ;; m88k:CX/UX:7*:*) echo m88k-harris-cxux7 exit ;; m88k:*:4*:R4*) echo m88k-motorola-sysv4 exit ;; m88k:*:3*:R3*) echo m88k-motorola-sysv3 exit ;; AViiON:dgux:*:*) # DG/UX returns AViiON for all architectures UNAME_PROCESSOR=`/usr/bin/uname -p` if [ $UNAME_PROCESSOR = mc88100 ] || [ $UNAME_PROCESSOR = mc88110 ] then if [ ${TARGET_BINARY_INTERFACE}x = m88kdguxelfx ] || \ [ ${TARGET_BINARY_INTERFACE}x = x ] then echo m88k-dg-dgux${UNAME_RELEASE} else echo m88k-dg-dguxbcs${UNAME_RELEASE} fi else echo i586-dg-dgux${UNAME_RELEASE} fi exit ;; M88*:DolphinOS:*:*) # DolphinOS (SVR3) echo m88k-dolphin-sysv3 exit ;; M88*:*:R3*:*) # Delta 88k system running SVR3 echo m88k-motorola-sysv3 exit ;; XD88*:*:*:*) # Tektronix XD88 system running UTekV (SVR3) echo m88k-tektronix-sysv3 exit ;; Tek43[0-9][0-9]:UTek:*:*) # Tektronix 4300 system running UTek (BSD) echo m68k-tektronix-bsd exit ;; *:IRIX*:*:*) echo mips-sgi-irix`echo ${UNAME_RELEASE}|sed -e 's/-/_/g'` exit ;; ????????:AIX?:[12].1:2) # AIX 2.2.1 or AIX 2.1.1 is RT/PC AIX. echo romp-ibm-aix # uname -m gives an 8 hex-code CPU id exit ;; # Note that: echo "'`uname -s`'" gives 'AIX ' i*86:AIX:*:*) echo i386-ibm-aix exit ;; ia64:AIX:*:*) if [ -x /usr/bin/oslevel ] ; then IBM_REV=`/usr/bin/oslevel` else IBM_REV=${UNAME_VERSION}.${UNAME_RELEASE} fi echo ${UNAME_MACHINE}-ibm-aix${IBM_REV} exit ;; *:AIX:2:3) if grep bos325 /usr/include/stdio.h >/dev/null 2>&1; then eval $set_cc_for_build sed 's/^ //' << EOF >$dummy.c #include main() { if (!__power_pc()) exit(1); puts("powerpc-ibm-aix3.2.5"); exit(0); } EOF if $CC_FOR_BUILD -o $dummy $dummy.c && SYSTEM_NAME=`$dummy` then echo "$SYSTEM_NAME" else echo rs6000-ibm-aix3.2.5 fi elif grep bos324 /usr/include/stdio.h >/dev/null 2>&1; then echo rs6000-ibm-aix3.2.4 else echo rs6000-ibm-aix3.2 fi exit ;; *:AIX:*:[4567]) IBM_CPU_ID=`/usr/sbin/lsdev -C -c processor -S available | sed 1q | awk '{ print $1 }'` if /usr/sbin/lsattr -El ${IBM_CPU_ID} | grep ' POWER' >/dev/null 2>&1; then IBM_ARCH=rs6000 else IBM_ARCH=powerpc fi if [ -x /usr/bin/oslevel ] ; then IBM_REV=`/usr/bin/oslevel` else IBM_REV=${UNAME_VERSION}.${UNAME_RELEASE} fi echo ${IBM_ARCH}-ibm-aix${IBM_REV} exit ;; *:AIX:*:*) echo rs6000-ibm-aix exit ;; ibmrt:4.4BSD:*|romp-ibm:BSD:*) echo romp-ibm-bsd4.4 exit ;; ibmrt:*BSD:*|romp-ibm:BSD:*) # covers RT/PC BSD and echo romp-ibm-bsd${UNAME_RELEASE} # 4.3 with uname added to exit ;; # report: romp-ibm BSD 4.3 *:BOSX:*:*) echo rs6000-bull-bosx exit ;; DPX/2?00:B.O.S.:*:*) echo m68k-bull-sysv3 exit ;; 9000/[34]??:4.3bsd:1.*:*) echo m68k-hp-bsd exit ;; hp300:4.4BSD:*:* | 9000/[34]??:4.3bsd:2.*:*) echo m68k-hp-bsd4.4 exit ;; 9000/[34678]??:HP-UX:*:*) HPUX_REV=`echo ${UNAME_RELEASE}|sed -e 's/[^.]*.[0B]*//'` case "${UNAME_MACHINE}" in 9000/31? ) HP_ARCH=m68000 ;; 9000/[34]?? ) HP_ARCH=m68k ;; 9000/[678][0-9][0-9]) if [ -x /usr/bin/getconf ]; then sc_cpu_version=`/usr/bin/getconf SC_CPU_VERSION 2>/dev/null` sc_kernel_bits=`/usr/bin/getconf SC_KERNEL_BITS 2>/dev/null` case "${sc_cpu_version}" in 523) HP_ARCH="hppa1.0" ;; # CPU_PA_RISC1_0 528) HP_ARCH="hppa1.1" ;; # CPU_PA_RISC1_1 532) # CPU_PA_RISC2_0 case "${sc_kernel_bits}" in 32) HP_ARCH="hppa2.0n" ;; 64) HP_ARCH="hppa2.0w" ;; '') HP_ARCH="hppa2.0" ;; # HP-UX 10.20 esac ;; esac fi if [ "${HP_ARCH}" = "" ]; then eval $set_cc_for_build sed 's/^ //' << EOF >$dummy.c #define _HPUX_SOURCE #include #include int main () { #if defined(_SC_KERNEL_BITS) long bits = sysconf(_SC_KERNEL_BITS); #endif long cpu = sysconf (_SC_CPU_VERSION); switch (cpu) { case CPU_PA_RISC1_0: puts ("hppa1.0"); break; case CPU_PA_RISC1_1: puts ("hppa1.1"); break; case CPU_PA_RISC2_0: #if defined(_SC_KERNEL_BITS) switch (bits) { case 64: puts ("hppa2.0w"); break; case 32: puts ("hppa2.0n"); break; default: puts ("hppa2.0"); break; } break; #else /* !defined(_SC_KERNEL_BITS) */ puts ("hppa2.0"); break; #endif default: puts ("hppa1.0"); break; } exit (0); } EOF (CCOPTS= $CC_FOR_BUILD -o $dummy $dummy.c 2>/dev/null) && HP_ARCH=`$dummy` test -z "$HP_ARCH" && HP_ARCH=hppa fi ;; esac if [ ${HP_ARCH} = "hppa2.0w" ] then eval $set_cc_for_build # hppa2.0w-hp-hpux* has a 64-bit kernel and a compiler generating # 32-bit code. hppa64-hp-hpux* has the same kernel and a compiler # generating 64-bit code. GNU and HP use different nomenclature: # # $ CC_FOR_BUILD=cc ./config.guess # => hppa2.0w-hp-hpux11.23 # $ CC_FOR_BUILD="cc +DA2.0w" ./config.guess # => hppa64-hp-hpux11.23 if echo __LP64__ | (CCOPTS= $CC_FOR_BUILD -E - 2>/dev/null) | grep -q __LP64__ then HP_ARCH="hppa2.0w" else HP_ARCH="hppa64" fi fi echo ${HP_ARCH}-hp-hpux${HPUX_REV} exit ;; ia64:HP-UX:*:*) HPUX_REV=`echo ${UNAME_RELEASE}|sed -e 's/[^.]*.[0B]*//'` echo ia64-hp-hpux${HPUX_REV} exit ;; 3050*:HI-UX:*:*) eval $set_cc_for_build sed 's/^ //' << EOF >$dummy.c #include int main () { long cpu = sysconf (_SC_CPU_VERSION); /* The order matters, because CPU_IS_HP_MC68K erroneously returns true for CPU_PA_RISC1_0. CPU_IS_PA_RISC returns correct results, however. */ if (CPU_IS_PA_RISC (cpu)) { switch (cpu) { case CPU_PA_RISC1_0: puts ("hppa1.0-hitachi-hiuxwe2"); break; case CPU_PA_RISC1_1: puts ("hppa1.1-hitachi-hiuxwe2"); break; case CPU_PA_RISC2_0: puts ("hppa2.0-hitachi-hiuxwe2"); break; default: puts ("hppa-hitachi-hiuxwe2"); break; } } else if (CPU_IS_HP_MC68K (cpu)) puts ("m68k-hitachi-hiuxwe2"); else puts ("unknown-hitachi-hiuxwe2"); exit (0); } EOF $CC_FOR_BUILD -o $dummy $dummy.c && SYSTEM_NAME=`$dummy` && { echo "$SYSTEM_NAME"; exit; } echo unknown-hitachi-hiuxwe2 exit ;; 9000/7??:4.3bsd:*:* | 9000/8?[79]:4.3bsd:*:* ) echo hppa1.1-hp-bsd exit ;; 9000/8??:4.3bsd:*:*) echo hppa1.0-hp-bsd exit ;; *9??*:MPE/iX:*:* | *3000*:MPE/iX:*:*) echo hppa1.0-hp-mpeix exit ;; hp7??:OSF1:*:* | hp8?[79]:OSF1:*:* ) echo hppa1.1-hp-osf exit ;; hp8??:OSF1:*:*) echo hppa1.0-hp-osf exit ;; i*86:OSF1:*:*) if [ -x /usr/sbin/sysversion ] ; then echo ${UNAME_MACHINE}-unknown-osf1mk else echo ${UNAME_MACHINE}-unknown-osf1 fi exit ;; parisc*:Lites*:*:*) echo hppa1.1-hp-lites exit ;; C1*:ConvexOS:*:* | convex:ConvexOS:C1*:*) echo c1-convex-bsd exit ;; C2*:ConvexOS:*:* | convex:ConvexOS:C2*:*) if getsysinfo -f scalar_acc then echo c32-convex-bsd else echo c2-convex-bsd fi exit ;; C34*:ConvexOS:*:* | convex:ConvexOS:C34*:*) echo c34-convex-bsd exit ;; C38*:ConvexOS:*:* | convex:ConvexOS:C38*:*) echo c38-convex-bsd exit ;; C4*:ConvexOS:*:* | convex:ConvexOS:C4*:*) echo c4-convex-bsd exit ;; CRAY*Y-MP:*:*:*) echo ymp-cray-unicos${UNAME_RELEASE} | sed -e 's/\.[^.]*$/.X/' exit ;; CRAY*[A-Z]90:*:*:*) echo ${UNAME_MACHINE}-cray-unicos${UNAME_RELEASE} \ | sed -e 's/CRAY.*\([A-Z]90\)/\1/' \ -e y/ABCDEFGHIJKLMNOPQRSTUVWXYZ/abcdefghijklmnopqrstuvwxyz/ \ -e 's/\.[^.]*$/.X/' exit ;; CRAY*TS:*:*:*) echo t90-cray-unicos${UNAME_RELEASE} | sed -e 's/\.[^.]*$/.X/' exit ;; CRAY*T3E:*:*:*) echo alphaev5-cray-unicosmk${UNAME_RELEASE} | sed -e 's/\.[^.]*$/.X/' exit ;; CRAY*SV1:*:*:*) echo sv1-cray-unicos${UNAME_RELEASE} | sed -e 's/\.[^.]*$/.X/' exit ;; *:UNICOS/mp:*:*) echo craynv-cray-unicosmp${UNAME_RELEASE} | sed -e 's/\.[^.]*$/.X/' exit ;; F30[01]:UNIX_System_V:*:* | F700:UNIX_System_V:*:*) FUJITSU_PROC=`uname -m | tr 'ABCDEFGHIJKLMNOPQRSTUVWXYZ' 'abcdefghijklmnopqrstuvwxyz'` FUJITSU_SYS=`uname -p | tr 'ABCDEFGHIJKLMNOPQRSTUVWXYZ' 'abcdefghijklmnopqrstuvwxyz' | sed -e 's/\///'` FUJITSU_REL=`echo ${UNAME_RELEASE} | sed -e 's/ /_/'` echo "${FUJITSU_PROC}-fujitsu-${FUJITSU_SYS}${FUJITSU_REL}" exit ;; 5000:UNIX_System_V:4.*:*) FUJITSU_SYS=`uname -p | tr 'ABCDEFGHIJKLMNOPQRSTUVWXYZ' 'abcdefghijklmnopqrstuvwxyz' | sed -e 's/\///'` FUJITSU_REL=`echo ${UNAME_RELEASE} | tr 'ABCDEFGHIJKLMNOPQRSTUVWXYZ' 'abcdefghijklmnopqrstuvwxyz' | sed -e 's/ /_/'` echo "sparc-fujitsu-${FUJITSU_SYS}${FUJITSU_REL}" exit ;; i*86:BSD/386:*:* | i*86:BSD/OS:*:* | *:Ascend\ Embedded/OS:*:*) echo ${UNAME_MACHINE}-pc-bsdi${UNAME_RELEASE} exit ;; sparc*:BSD/OS:*:*) echo sparc-unknown-bsdi${UNAME_RELEASE} exit ;; *:BSD/OS:*:*) echo ${UNAME_MACHINE}-unknown-bsdi${UNAME_RELEASE} exit ;; *:FreeBSD:*:*) case ${UNAME_MACHINE} in pc98) echo i386-unknown-freebsd`echo ${UNAME_RELEASE}|sed -e 's/[-(].*//'` ;; amd64) echo x86_64-unknown-freebsd`echo ${UNAME_RELEASE}|sed -e 's/[-(].*//'` ;; *) echo ${UNAME_MACHINE}-unknown-freebsd`echo ${UNAME_RELEASE}|sed -e 's/[-(].*//'` ;; esac exit ;; i*:CYGWIN*:*) echo ${UNAME_MACHINE}-pc-cygwin exit ;; *:MINGW*:*) echo ${UNAME_MACHINE}-pc-mingw32 exit ;; i*:windows32*:*) # uname -m includes "-pc" on this system. echo ${UNAME_MACHINE}-mingw32 exit ;; i*:PW*:*) echo ${UNAME_MACHINE}-pc-pw32 exit ;; *:Interix*:*) case ${UNAME_MACHINE} in x86) echo i586-pc-interix${UNAME_RELEASE} exit ;; authenticamd | genuineintel | EM64T) echo x86_64-unknown-interix${UNAME_RELEASE} exit ;; IA64) echo ia64-unknown-interix${UNAME_RELEASE} exit ;; esac ;; [345]86:Windows_95:* | [345]86:Windows_98:* | [345]86:Windows_NT:*) echo i${UNAME_MACHINE}-pc-mks exit ;; 8664:Windows_NT:*) echo x86_64-pc-mks exit ;; i*:Windows_NT*:* | Pentium*:Windows_NT*:*) # How do we know it's Interix rather than the generic POSIX subsystem? # It also conflicts with pre-2.0 versions of AT&T UWIN. Should we # UNAME_MACHINE based on the output of uname instead of i386? echo i586-pc-interix exit ;; i*:UWIN*:*) echo ${UNAME_MACHINE}-pc-uwin exit ;; amd64:CYGWIN*:*:* | x86_64:CYGWIN*:*:*) echo x86_64-unknown-cygwin exit ;; p*:CYGWIN*:*) echo powerpcle-unknown-cygwin exit ;; prep*:SunOS:5.*:*) echo powerpcle-unknown-solaris2`echo ${UNAME_RELEASE}|sed -e 's/[^.]*//'` exit ;; *:GNU:*:*) # the GNU system echo `echo ${UNAME_MACHINE}|sed -e 's,[-/].*$,,'`-unknown-gnu`echo ${UNAME_RELEASE}|sed -e 's,/.*$,,'` exit ;; *:GNU/*:*:*) # other systems with GNU libc and userland echo ${UNAME_MACHINE}-unknown-`echo ${UNAME_SYSTEM} | sed 's,^[^/]*/,,' | tr '[A-Z]' '[a-z]'``echo ${UNAME_RELEASE}|sed -e 's/[-(].*//'`-gnu exit ;; i*86:Minix:*:*) echo ${UNAME_MACHINE}-pc-minix exit ;; alpha:Linux:*:*) case `sed -n '/^cpu model/s/^.*: \(.*\)/\1/p' < /proc/cpuinfo` in EV5) UNAME_MACHINE=alphaev5 ;; EV56) UNAME_MACHINE=alphaev56 ;; PCA56) UNAME_MACHINE=alphapca56 ;; PCA57) UNAME_MACHINE=alphapca56 ;; EV6) UNAME_MACHINE=alphaev6 ;; EV67) UNAME_MACHINE=alphaev67 ;; EV68*) UNAME_MACHINE=alphaev68 ;; esac objdump --private-headers /bin/sh | grep -q ld.so.1 if test "$?" = 0 ; then LIBC="libc1" ; else LIBC="" ; fi echo ${UNAME_MACHINE}-unknown-linux-gnu${LIBC} exit ;; arm*:Linux:*:*) eval $set_cc_for_build if echo __ARM_EABI__ | $CC_FOR_BUILD -E - 2>/dev/null \ | grep -q __ARM_EABI__ then echo ${UNAME_MACHINE}-unknown-linux-gnu else echo ${UNAME_MACHINE}-unknown-linux-gnueabi fi exit ;; avr32*:Linux:*:*) echo ${UNAME_MACHINE}-unknown-linux-gnu exit ;; cris:Linux:*:*) echo cris-axis-linux-gnu exit ;; crisv32:Linux:*:*) echo crisv32-axis-linux-gnu exit ;; frv:Linux:*:*) echo frv-unknown-linux-gnu exit ;; i*86:Linux:*:*) LIBC=gnu eval $set_cc_for_build sed 's/^ //' << EOF >$dummy.c #ifdef __dietlibc__ LIBC=dietlibc #endif EOF eval `$CC_FOR_BUILD -E $dummy.c 2>/dev/null | grep '^LIBC'` echo "${UNAME_MACHINE}-pc-linux-${LIBC}" exit ;; ia64:Linux:*:*) echo ${UNAME_MACHINE}-unknown-linux-gnu exit ;; m32r*:Linux:*:*) echo ${UNAME_MACHINE}-unknown-linux-gnu exit ;; m68*:Linux:*:*) echo ${UNAME_MACHINE}-unknown-linux-gnu exit ;; mips:Linux:*:* | mips64:Linux:*:*) eval $set_cc_for_build sed 's/^ //' << EOF >$dummy.c #undef CPU #undef ${UNAME_MACHINE} #undef ${UNAME_MACHINE}el #if defined(__MIPSEL__) || defined(__MIPSEL) || defined(_MIPSEL) || defined(MIPSEL) CPU=${UNAME_MACHINE}el #else #if defined(__MIPSEB__) || defined(__MIPSEB) || defined(_MIPSEB) || defined(MIPSEB) CPU=${UNAME_MACHINE} #else CPU= #endif #endif EOF eval `$CC_FOR_BUILD -E $dummy.c 2>/dev/null | grep '^CPU'` test x"${CPU}" != x && { echo "${CPU}-unknown-linux-gnu"; exit; } ;; or32:Linux:*:*) echo or32-unknown-linux-gnu exit ;; padre:Linux:*:*) echo sparc-unknown-linux-gnu exit ;; parisc64:Linux:*:* | hppa64:Linux:*:*) echo hppa64-unknown-linux-gnu exit ;; parisc:Linux:*:* | hppa:Linux:*:*) # Look for CPU level case `grep '^cpu[^a-z]*:' /proc/cpuinfo 2>/dev/null | cut -d' ' -f2` in PA7*) echo hppa1.1-unknown-linux-gnu ;; PA8*) echo hppa2.0-unknown-linux-gnu ;; *) echo hppa-unknown-linux-gnu ;; esac exit ;; ppc64:Linux:*:*) echo powerpc64-unknown-linux-gnu exit ;; ppc:Linux:*:*) echo powerpc-unknown-linux-gnu exit ;; s390:Linux:*:* | s390x:Linux:*:*) echo ${UNAME_MACHINE}-ibm-linux exit ;; sh64*:Linux:*:*) echo ${UNAME_MACHINE}-unknown-linux-gnu exit ;; sh*:Linux:*:*) echo ${UNAME_MACHINE}-unknown-linux-gnu exit ;; sparc:Linux:*:* | sparc64:Linux:*:*) echo ${UNAME_MACHINE}-unknown-linux-gnu exit ;; tile*:Linux:*:*) echo ${UNAME_MACHINE}-tilera-linux-gnu exit ;; vax:Linux:*:*) echo ${UNAME_MACHINE}-dec-linux-gnu exit ;; x86_64:Linux:*:*) echo x86_64-unknown-linux-gnu exit ;; xtensa*:Linux:*:*) echo ${UNAME_MACHINE}-unknown-linux-gnu exit ;; i*86:DYNIX/ptx:4*:*) # ptx 4.0 does uname -s correctly, with DYNIX/ptx in there. # earlier versions are messed up and put the nodename in both # sysname and nodename. echo i386-sequent-sysv4 exit ;; i*86:UNIX_SV:4.2MP:2.*) # Unixware is an offshoot of SVR4, but it has its own version # number series starting with 2... # I am not positive that other SVR4 systems won't match this, # I just have to hope. -- rms. # Use sysv4.2uw... so that sysv4* matches it. echo ${UNAME_MACHINE}-pc-sysv4.2uw${UNAME_VERSION} exit ;; i*86:OS/2:*:*) # If we were able to find `uname', then EMX Unix compatibility # is probably installed. echo ${UNAME_MACHINE}-pc-os2-emx exit ;; i*86:XTS-300:*:STOP) echo ${UNAME_MACHINE}-unknown-stop exit ;; i*86:atheos:*:*) echo ${UNAME_MACHINE}-unknown-atheos exit ;; i*86:syllable:*:*) echo ${UNAME_MACHINE}-pc-syllable exit ;; i*86:LynxOS:2.*:* | i*86:LynxOS:3.[01]*:* | i*86:LynxOS:4.[02]*:*) echo i386-unknown-lynxos${UNAME_RELEASE} exit ;; i*86:*DOS:*:*) echo ${UNAME_MACHINE}-pc-msdosdjgpp exit ;; i*86:*:4.*:* | i*86:SYSTEM_V:4.*:*) UNAME_REL=`echo ${UNAME_RELEASE} | sed 's/\/MP$//'` if grep Novell /usr/include/link.h >/dev/null 2>/dev/null; then echo ${UNAME_MACHINE}-univel-sysv${UNAME_REL} else echo ${UNAME_MACHINE}-pc-sysv${UNAME_REL} fi exit ;; i*86:*:5:[678]*) # UnixWare 7.x, OpenUNIX and OpenServer 6. case `/bin/uname -X | grep "^Machine"` in *486*) UNAME_MACHINE=i486 ;; *Pentium) UNAME_MACHINE=i586 ;; *Pent*|*Celeron) UNAME_MACHINE=i686 ;; esac echo ${UNAME_MACHINE}-unknown-sysv${UNAME_RELEASE}${UNAME_SYSTEM}${UNAME_VERSION} exit ;; i*86:*:3.2:*) if test -f /usr/options/cb.name; then UNAME_REL=`sed -n 's/.*Version //p' /dev/null >/dev/null ; then UNAME_REL=`(/bin/uname -X|grep Release|sed -e 's/.*= //')` (/bin/uname -X|grep i80486 >/dev/null) && UNAME_MACHINE=i486 (/bin/uname -X|grep '^Machine.*Pentium' >/dev/null) \ && UNAME_MACHINE=i586 (/bin/uname -X|grep '^Machine.*Pent *II' >/dev/null) \ && UNAME_MACHINE=i686 (/bin/uname -X|grep '^Machine.*Pentium Pro' >/dev/null) \ && UNAME_MACHINE=i686 echo ${UNAME_MACHINE}-pc-sco$UNAME_REL else echo ${UNAME_MACHINE}-pc-sysv32 fi exit ;; pc:*:*:*) # Left here for compatibility: # uname -m prints for DJGPP always 'pc', but it prints nothing about # the processor, so we play safe by assuming i586. # Note: whatever this is, it MUST be the same as what config.sub # prints for the "djgpp" host, or else GDB configury will decide that # this is a cross-build. echo i586-pc-msdosdjgpp exit ;; Intel:Mach:3*:*) echo i386-pc-mach3 exit ;; paragon:*:*:*) echo i860-intel-osf1 exit ;; i860:*:4.*:*) # i860-SVR4 if grep Stardent /usr/include/sys/uadmin.h >/dev/null 2>&1 ; then echo i860-stardent-sysv${UNAME_RELEASE} # Stardent Vistra i860-SVR4 else # Add other i860-SVR4 vendors below as they are discovered. echo i860-unknown-sysv${UNAME_RELEASE} # Unknown i860-SVR4 fi exit ;; mini*:CTIX:SYS*5:*) # "miniframe" echo m68010-convergent-sysv exit ;; mc68k:UNIX:SYSTEM5:3.51m) echo m68k-convergent-sysv exit ;; M680?0:D-NIX:5.3:*) echo m68k-diab-dnix exit ;; M68*:*:R3V[5678]*:*) test -r /sysV68 && { echo 'm68k-motorola-sysv'; exit; } ;; 3[345]??:*:4.0:3.0 | 3[34]??A:*:4.0:3.0 | 3[34]??,*:*:4.0:3.0 | 3[34]??/*:*:4.0:3.0 | 4400:*:4.0:3.0 | 4850:*:4.0:3.0 | SKA40:*:4.0:3.0 | SDS2:*:4.0:3.0 | SHG2:*:4.0:3.0 | S7501*:*:4.0:3.0) OS_REL='' test -r /etc/.relid \ && OS_REL=.`sed -n 's/[^ ]* [^ ]* \([0-9][0-9]\).*/\1/p' < /etc/.relid` /bin/uname -p 2>/dev/null | grep 86 >/dev/null \ && { echo i486-ncr-sysv4.3${OS_REL}; exit; } /bin/uname -p 2>/dev/null | /bin/grep entium >/dev/null \ && { echo i586-ncr-sysv4.3${OS_REL}; exit; } ;; 3[34]??:*:4.0:* | 3[34]??,*:*:4.0:*) /bin/uname -p 2>/dev/null | grep 86 >/dev/null \ && { echo i486-ncr-sysv4; exit; } ;; NCR*:*:4.2:* | MPRAS*:*:4.2:*) OS_REL='.3' test -r /etc/.relid \ && OS_REL=.`sed -n 's/[^ ]* [^ ]* \([0-9][0-9]\).*/\1/p' < /etc/.relid` /bin/uname -p 2>/dev/null | grep 86 >/dev/null \ && { echo i486-ncr-sysv4.3${OS_REL}; exit; } /bin/uname -p 2>/dev/null | /bin/grep entium >/dev/null \ && { echo i586-ncr-sysv4.3${OS_REL}; exit; } /bin/uname -p 2>/dev/null | /bin/grep pteron >/dev/null \ && { echo i586-ncr-sysv4.3${OS_REL}; exit; } ;; m68*:LynxOS:2.*:* | m68*:LynxOS:3.0*:*) echo m68k-unknown-lynxos${UNAME_RELEASE} exit ;; mc68030:UNIX_System_V:4.*:*) echo m68k-atari-sysv4 exit ;; TSUNAMI:LynxOS:2.*:*) echo sparc-unknown-lynxos${UNAME_RELEASE} exit ;; rs6000:LynxOS:2.*:*) echo rs6000-unknown-lynxos${UNAME_RELEASE} exit ;; PowerPC:LynxOS:2.*:* | PowerPC:LynxOS:3.[01]*:* | PowerPC:LynxOS:4.[02]*:*) echo powerpc-unknown-lynxos${UNAME_RELEASE} exit ;; SM[BE]S:UNIX_SV:*:*) echo mips-dde-sysv${UNAME_RELEASE} exit ;; RM*:ReliantUNIX-*:*:*) echo mips-sni-sysv4 exit ;; RM*:SINIX-*:*:*) echo mips-sni-sysv4 exit ;; *:SINIX-*:*:*) if uname -p 2>/dev/null >/dev/null ; then UNAME_MACHINE=`(uname -p) 2>/dev/null` echo ${UNAME_MACHINE}-sni-sysv4 else echo ns32k-sni-sysv fi exit ;; PENTIUM:*:4.0*:*) # Unisys `ClearPath HMP IX 4000' SVR4/MP effort # says echo i586-unisys-sysv4 exit ;; *:UNIX_System_V:4*:FTX*) # From Gerald Hewes . # How about differentiating between stratus architectures? -djm echo hppa1.1-stratus-sysv4 exit ;; *:*:*:FTX*) # From seanf@swdc.stratus.com. echo i860-stratus-sysv4 exit ;; i*86:VOS:*:*) # From Paul.Green@stratus.com. echo ${UNAME_MACHINE}-stratus-vos exit ;; *:VOS:*:*) # From Paul.Green@stratus.com. echo hppa1.1-stratus-vos exit ;; mc68*:A/UX:*:*) echo m68k-apple-aux${UNAME_RELEASE} exit ;; news*:NEWS-OS:6*:*) echo mips-sony-newsos6 exit ;; R[34]000:*System_V*:*:* | R4000:UNIX_SYSV:*:* | R*000:UNIX_SV:*:*) if [ -d /usr/nec ]; then echo mips-nec-sysv${UNAME_RELEASE} else echo mips-unknown-sysv${UNAME_RELEASE} fi exit ;; BeBox:BeOS:*:*) # BeOS running on hardware made by Be, PPC only. echo powerpc-be-beos exit ;; BeMac:BeOS:*:*) # BeOS running on Mac or Mac clone, PPC only. echo powerpc-apple-beos exit ;; BePC:BeOS:*:*) # BeOS running on Intel PC compatible. echo i586-pc-beos exit ;; BePC:Haiku:*:*) # Haiku running on Intel PC compatible. echo i586-pc-haiku exit ;; SX-4:SUPER-UX:*:*) echo sx4-nec-superux${UNAME_RELEASE} exit ;; SX-5:SUPER-UX:*:*) echo sx5-nec-superux${UNAME_RELEASE} exit ;; SX-6:SUPER-UX:*:*) echo sx6-nec-superux${UNAME_RELEASE} exit ;; SX-7:SUPER-UX:*:*) echo sx7-nec-superux${UNAME_RELEASE} exit ;; SX-8:SUPER-UX:*:*) echo sx8-nec-superux${UNAME_RELEASE} exit ;; SX-8R:SUPER-UX:*:*) echo sx8r-nec-superux${UNAME_RELEASE} exit ;; Power*:Rhapsody:*:*) echo powerpc-apple-rhapsody${UNAME_RELEASE} exit ;; *:Rhapsody:*:*) echo ${UNAME_MACHINE}-apple-rhapsody${UNAME_RELEASE} exit ;; *:Darwin:*:*) UNAME_PROCESSOR=`uname -p` || UNAME_PROCESSOR=unknown case $UNAME_PROCESSOR in i386) eval $set_cc_for_build if [ "$CC_FOR_BUILD" != 'no_compiler_found' ]; then if (echo '#ifdef __LP64__'; echo IS_64BIT_ARCH; echo '#endif') | \ (CCOPTS= $CC_FOR_BUILD -E - 2>/dev/null) | \ grep IS_64BIT_ARCH >/dev/null then UNAME_PROCESSOR="x86_64" fi fi ;; unknown) UNAME_PROCESSOR=powerpc ;; esac echo ${UNAME_PROCESSOR}-apple-darwin${UNAME_RELEASE} exit ;; *:procnto*:*:* | *:QNX:[0123456789]*:*) UNAME_PROCESSOR=`uname -p` if test "$UNAME_PROCESSOR" = "x86"; then UNAME_PROCESSOR=i386 UNAME_MACHINE=pc fi echo ${UNAME_PROCESSOR}-${UNAME_MACHINE}-nto-qnx${UNAME_RELEASE} exit ;; *:QNX:*:4*) echo i386-pc-qnx exit ;; NSE-?:NONSTOP_KERNEL:*:*) echo nse-tandem-nsk${UNAME_RELEASE} exit ;; NSR-?:NONSTOP_KERNEL:*:*) echo nsr-tandem-nsk${UNAME_RELEASE} exit ;; *:NonStop-UX:*:*) echo mips-compaq-nonstopux exit ;; BS2000:POSIX*:*:*) echo bs2000-siemens-sysv exit ;; DS/*:UNIX_System_V:*:*) echo ${UNAME_MACHINE}-${UNAME_SYSTEM}-${UNAME_RELEASE} exit ;; *:Plan9:*:*) # "uname -m" is not consistent, so use $cputype instead. 386 # is converted to i386 for consistency with other x86 # operating systems. if test "$cputype" = "386"; then UNAME_MACHINE=i386 else UNAME_MACHINE="$cputype" fi echo ${UNAME_MACHINE}-unknown-plan9 exit ;; *:TOPS-10:*:*) echo pdp10-unknown-tops10 exit ;; *:TENEX:*:*) echo pdp10-unknown-tenex exit ;; KS10:TOPS-20:*:* | KL10:TOPS-20:*:* | TYPE4:TOPS-20:*:*) echo pdp10-dec-tops20 exit ;; XKL-1:TOPS-20:*:* | TYPE5:TOPS-20:*:*) echo pdp10-xkl-tops20 exit ;; *:TOPS-20:*:*) echo pdp10-unknown-tops20 exit ;; *:ITS:*:*) echo pdp10-unknown-its exit ;; SEI:*:*:SEIUX) echo mips-sei-seiux${UNAME_RELEASE} exit ;; *:DragonFly:*:*) echo ${UNAME_MACHINE}-unknown-dragonfly`echo ${UNAME_RELEASE}|sed -e 's/[-(].*//'` exit ;; *:*VMS:*:*) UNAME_MACHINE=`(uname -p) 2>/dev/null` case "${UNAME_MACHINE}" in A*) echo alpha-dec-vms ; exit ;; I*) echo ia64-dec-vms ; exit ;; V*) echo vax-dec-vms ; exit ;; esac ;; *:XENIX:*:SysV) echo i386-pc-xenix exit ;; i*86:skyos:*:*) echo ${UNAME_MACHINE}-pc-skyos`echo ${UNAME_RELEASE}` | sed -e 's/ .*$//' exit ;; i*86:rdos:*:*) echo ${UNAME_MACHINE}-pc-rdos exit ;; i*86:AROS:*:*) echo ${UNAME_MACHINE}-pc-aros exit ;; esac #echo '(No uname command or uname output not recognized.)' 1>&2 #echo "${UNAME_MACHINE}:${UNAME_SYSTEM}:${UNAME_RELEASE}:${UNAME_VERSION}" 1>&2 eval $set_cc_for_build cat >$dummy.c < # include #endif main () { #if defined (sony) #if defined (MIPSEB) /* BFD wants "bsd" instead of "newsos". Perhaps BFD should be changed, I don't know.... */ printf ("mips-sony-bsd\n"); exit (0); #else #include printf ("m68k-sony-newsos%s\n", #ifdef NEWSOS4 "4" #else "" #endif ); exit (0); #endif #endif #if defined (__arm) && defined (__acorn) && defined (__unix) printf ("arm-acorn-riscix\n"); exit (0); #endif #if defined (hp300) && !defined (hpux) printf ("m68k-hp-bsd\n"); exit (0); #endif #if defined (NeXT) #if !defined (__ARCHITECTURE__) #define __ARCHITECTURE__ "m68k" #endif int version; version=`(hostinfo | sed -n 's/.*NeXT Mach \([0-9]*\).*/\1/p') 2>/dev/null`; if (version < 4) printf ("%s-next-nextstep%d\n", __ARCHITECTURE__, version); else printf ("%s-next-openstep%d\n", __ARCHITECTURE__, version); exit (0); #endif #if defined (MULTIMAX) || defined (n16) #if defined (UMAXV) printf ("ns32k-encore-sysv\n"); exit (0); #else #if defined (CMU) printf ("ns32k-encore-mach\n"); exit (0); #else printf ("ns32k-encore-bsd\n"); exit (0); #endif #endif #endif #if defined (__386BSD__) printf ("i386-pc-bsd\n"); exit (0); #endif #if defined (sequent) #if defined (i386) printf ("i386-sequent-dynix\n"); exit (0); #endif #if defined (ns32000) printf ("ns32k-sequent-dynix\n"); exit (0); #endif #endif #if defined (_SEQUENT_) struct utsname un; uname(&un); if (strncmp(un.version, "V2", 2) == 0) { printf ("i386-sequent-ptx2\n"); exit (0); } if (strncmp(un.version, "V1", 2) == 0) { /* XXX is V1 correct? */ printf ("i386-sequent-ptx1\n"); exit (0); } printf ("i386-sequent-ptx\n"); exit (0); #endif #if defined (vax) # if !defined (ultrix) # include # if defined (BSD) # if BSD == 43 printf ("vax-dec-bsd4.3\n"); exit (0); # else # if BSD == 199006 printf ("vax-dec-bsd4.3reno\n"); exit (0); # else printf ("vax-dec-bsd\n"); exit (0); # endif # endif # else printf ("vax-dec-bsd\n"); exit (0); # endif # else printf ("vax-dec-ultrix\n"); exit (0); # endif #endif #if defined (alliant) && defined (i860) printf ("i860-alliant-bsd\n"); exit (0); #endif exit (1); } EOF $CC_FOR_BUILD -o $dummy $dummy.c 2>/dev/null && SYSTEM_NAME=`$dummy` && { echo "$SYSTEM_NAME"; exit; } # Apollos put the system type in the environment. test -d /usr/apollo && { echo ${ISP}-apollo-${SYSTYPE}; exit; } # Convex versions that predate uname can use getsysinfo(1) if [ -x /usr/convex/getsysinfo ] then case `getsysinfo -f cpu_type` in c1*) echo c1-convex-bsd exit ;; c2*) if getsysinfo -f scalar_acc then echo c32-convex-bsd else echo c2-convex-bsd fi exit ;; c34*) echo c34-convex-bsd exit ;; c38*) echo c38-convex-bsd exit ;; c4*) echo c4-convex-bsd exit ;; esac fi cat >&2 < in order to provide the needed information to handle your system. config.guess timestamp = $timestamp 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` /bin/uname -X = `(/bin/uname -X) 2>/dev/null` hostinfo = `(hostinfo) 2>/dev/null` /bin/universe = `(/bin/universe) 2>/dev/null` /usr/bin/arch -k = `(/usr/bin/arch -k) 2>/dev/null` /bin/arch = `(/bin/arch) 2>/dev/null` /usr/bin/oslevel = `(/usr/bin/oslevel) 2>/dev/null` /usr/convex/getsysinfo = `(/usr/convex/getsysinfo) 2>/dev/null` UNAME_MACHINE = ${UNAME_MACHINE} UNAME_RELEASE = ${UNAME_RELEASE} UNAME_SYSTEM = ${UNAME_SYSTEM} UNAME_VERSION = ${UNAME_VERSION} EOF exit 1 # Local variables: # eval: (add-hook 'write-file-hooks 'time-stamp) # time-stamp-start: "timestamp='" # time-stamp-format: "%:y-%02m-%02d" # time-stamp-end: "'" # End: OS_REL}; exiprintproto-1.0.5/Print.h000064401431060000012000000366241147227314100155010ustar00alancstaff00002660200007/* $Xorg: Print.h,v 1.3 2000/08/18 04:05:44 coskrey Exp $ */ /****************************************************************************** ****************************************************************************** ** ** File: Print.h ** ** Description: Definitions needed by the server, library, and ** clients. Subportion restricted to library and ** clients. ** ** Server, Library, Client portion has: ** o All sz_* defines ** o Revision and Name defines ** o Common defines and constants (e.g. Keywords, Masks) ** o Extension version structure ** ** Library and client subportion has: ** o Convience Marcos ** o Client side data structures ** o Client side event structures (non wire) ** o Library function prototypes ** o some private stuff denoted with _whatever ** ** Printstr.h for server and library, but NOT clients. ** ****************************************************************************** ** ** (c) Copyright 1996 Hewlett-Packard Company ** (c) Copyright 1996 International Business Machines Corp. ** (c) Copyright 1996, Oracle and/or its affiliates. All rights reserved. ** (c) Copyright 1996 Novell, Inc. ** (c) Copyright 1996 Digital Equipment Corp. ** (c) Copyright 1996 Fujitsu Limited ** (c) Copyright 1996 Hitachi, Ltd. ** ** Permission is hereby granted, free of charge, to any person obtaining a copy ** of this software and associated documentation files (the "Software"), to deal ** in the Software without restriction, including without limitation the rights ** to use, copy, modify, merge, publish, distribute, sublicense, and/or sell ** copies of the Software, and to permit persons to whom the Software is ** furnished to do so, subject to the following conditions: ** ** The above copyright notice and this permission notice shall be included in ** all copies or substantial portions of the Software. ** ** THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR ** IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, ** FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE ** COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER ** IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN ** CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. ** ** Except as contained in this notice, the names of the copyright holders shall ** not be used in advertising or otherwise to promote the sale, use or other ** dealings in this Software without prior written authorization from said ** copyright holders. ** ****************************************************************************** *****************************************************************************/ /* $XFree86: xc/include/extensions/Print.h,v 1.4 2000/01/25 18:37:31 dawes Exp $ */ #ifndef _XpPrint_H_ #define _XpPrint_H_ #ifndef _XP_PRINT_SERVER_ #include #include #include #endif /* _XP_PRINT_SERVER_ */ #include _XFUNCPROTOBEGIN /****************************************************************************** * * Definitions used by the server, library and client. */ /******************************************************************** * * Naming and versioning information. */ #define XP_PRINTNAME "XpExtension" /* * Add a define below for each major extension release. */ #define XP_DONT_CHECK 0 #define XP_INITIAL_RELEASE 1 /* * For each single entry above, create one major/minor pair. */ #define XP_PROTO_MAJOR 1 #define XP_PROTO_MINOR 0 /* * Identify current version. */ #define XP_MAJOR_VERSION XP_PROTO_MAJOR #define XP_MINOR_VERSION XP_PROTO_MINOR /* * Misc version defines. */ #define XP_ABSENT 0 /* Prior to XP Print support */ #define XP_PRESENT 1 /* With XP Print support */ /******************************************************************** * * Xp Print Error codes. */ #define XP_ERRORS 3 /* number of error types */ #define XPBadContext 0 /* Print Context invalid or missing */ #define XPBadSequence 1 /* Illegal sequence of XP operations */ #define XPBadResourceID 2 /* X-resource not valid */ /******************************************************************** * * Xp Print Event masks and codes. * */ #define XP_EVENTS 2 /* number of event types */ #define XPNoEventMask 0 /* not an event - just a null mask */ #define XPPrintMask (1L<<0) #define XPAttributeMask (1L<<1) #define XPPrintNotify 0 /* contains "detail" - see below */ #define XPAttributeNotify 1 /* contains "detail" - see below */ #define XPStartJobNotify 0 /* value for "detail" in XPPrintNotify*/ #define XPEndJobNotify 1 #define XPStartDocNotify 2 #define XPEndDocNotify 3 #define XPStartPageNotify 4 #define XPEndPageNotify 5 /******************************************************************** * * Xp Print Attribute Object codes (subset of ISO DPA 10175). The * Xp Server can get and set any of the values, while the Xp Library * may only be able to set a subset of the attribute objects. * * note: the codes are also used as "detail" for XPAttributeNotify * * note: XPPageAttr is not defined in ISO DPA 10175. It is unique * to Xp, and its attributes are a proper subset of XPDocAttr. */ typedef unsigned char XPAttributes; /* type of Xp*Attr codes */ #define XP_ATTRIBUTES 5 /* those attrs currently supported */ #define XPJobAttr 1 /* get/set */ #define XPDocAttr 2 /* get/set */ #define XPPageAttr 3 /* get/set - subset of XPDocAttr */ #define XPPrinterAttr 4 /* get only (library) */ #define XPServerAttr 5 /* get only (library), no context needed */ /* * note: ISO DPA 10175 defines a number of "attribute objects", of * which POSIX 1387.4 and the SI Xp will only support a * subset. */ #define XPMediumAttr 6 /* DPA-Object Medium */ #define XPFontAttr 7 /* DPA-Object Font */ #define XPResAttr 8 /* DPA-Object Resource */ #define XPTransAttr 9 /* DPA-Object Transfer method */ #define XPDelAttr 10 /* DPA-Object Delivery method */ #define XPAuxSPkg 11 /* DPA-Object Auxiliary sheet package */ #define XPAuxS 12 /* DPA-Object Auxiliary sheet */ #define XPFinishAttr 13 /* DPA-Object Finishing */ #define XPOutputAttr 14 /* DPA-Object Output method */ #define XPImpAttr 15 /* DPA-Object Imposition */ #define XPSchedAttr 16 /* DPA-Object Scheduler */ #define XPIntJobAttr 17 /* DPA-Object Initial value job */ #define XPIntDocAttr 18 /* DPA-Object Initial value document */ #define XPResConAttr 19 /* DPA-Object Resource context */ /* * Replacement rules for XpSetAttributes */ typedef unsigned char XPAttrReplacement; #define XPAttrReplace 1 #define XPAttrMerge 2 /* * Return codes for XpGetDocumentData */ typedef unsigned char XPGetDocStatus; #define XPGetDocFinished 0 /* normal termination */ #define XPGetDocSecondConsumer 1 /* setup error */ #define XPGetDocError 2 /* runtime error, see generated error */ /* * Save data types for XpStartJob. */ typedef unsigned char XPSaveData; #define XPSpool 1 /* Job data sent to spooler */ #define XPGetData 2 /* Job data via XpGetDocumentData */ /* * Document types for XpStartDoc. */ typedef unsigned char XPDocumentType; #define XPDocNormal 1 /* Doc data handled by Xserver */ #define XPDocRaw 2 /* Doc data passed through Xserver */ /******************************************************************** * * Xp Print Property Names */ #ifndef _XP_PRINT_SERVER_ /****************************************************************************** * * Definitions used by the library and clients only. */ /******************************************************************* * * General API defines and such. */ /* * Print Context for XpInitContext and related calls. */ typedef XID XPContext; /* * Struct for XpGetPrinterList. */ typedef struct { char *name; /* name */ char *desc; /* localized description */ } XPPrinterRec, *XPPrinterList; /* * Typedefs for XpGetDocumentData */ typedef void (*XPSaveProc)( Display *display, XPContext context, unsigned char *data, unsigned int data_len, XPointer client_data); typedef void (*XPFinishProc)( Display *display, XPContext context, XPGetDocStatus status, XPointer client_data); /* * Typedefs for XpSetLocaleHinter and XpGetLocaleHinter */ typedef char * (*XPHinterProc)(void); #if 0 /******************************************************************* * * Extension version structures. * **** this structure is now defined localy in the one file that uses it **** in order to avoid clashes with its definition in XI.h */ typedef struct { int present; short major_version; short minor_version; } XExtensionVersion; #endif /******************************************************************** * * Event structs for clients. * * note: these events are relative to a print context, and * not to a window as in core X. */ typedef struct { int type; /* base + XPPrintNotify */ unsigned long serial; /* # of last request processed by server */ Bool send_event; /* true if from a SendEvent request */ Display *display; /* Display the event was read from */ XPContext context; /* print context where operation was requested */ Bool cancel; /* was detailed event canceled */ int detail; /* XPStartJobNotify, XPEndJobNotify, XPStartDocNotify, XPEndDocNotify, XPStartPageNotify, XPEndPageNotify */ } XPPrintEvent; typedef struct { int type; /* base + XPAttributeNotify */ unsigned long serial; /* # of last request processed by server */ Bool send_event; /* true if from a SendEvent request */ Display *display; /* Display the event was read from */ XPContext context; /* print context where operation was requested */ int detail; /* XPJobAttr, XPDocAttr, XPPageAttr, XPPrinterAttr, XPSpoolerAttr, XPMediumAttr, XPServerAttr */ } XPAttributeEvent; typedef struct { int type; /* base + XPDataReadyNotify */ unsigned long serial; /* # of last request processed by server */ Bool send_event; /* true if from a SendEvent request */ Display *display; /* Display the event was read from */ XPContext context; /* print context where operation was requested */ unsigned long available; /* bytes available for retrieval */ } XPDataReadyEvent; /********************************************************** * * Function prototypes for library side. */ extern XPContext XpCreateContext ( Display *display, char *printer_name ); extern void XpSetContext ( Display *display, XPContext print_context ); extern XPContext XpGetContext ( Display *display ); extern void XpDestroyContext ( Display *display, XPContext print_context ); extern Screen *XpGetScreenOfContext ( Display *display, XPContext print_context ); extern Status XpGetPageDimensions ( Display *display, XPContext print_context, unsigned short *width, /* return value */ unsigned short *height, /* return value */ XRectangle *reproducible_area /* return value */ ); extern void XpStartJob ( Display *display, XPSaveData save_data ); extern void XpEndJob ( Display *display ); extern void XpCancelJob ( Display *display, Bool discard ); extern void XpStartDoc ( Display *display, XPDocumentType type ); extern void XpEndDoc ( Display *display ); extern void XpCancelDoc ( Display *display, Bool discard ); extern void XpPutDocumentData ( Display *display, Drawable drawable, unsigned char *data, int data_len, char *doc_fmt, char *options ); extern Status XpGetDocumentData ( Display *display, XPContext context, XPSaveProc save_proc, XPFinishProc finish_proc, XPointer client_data ); extern void XpStartPage ( Display *display, Window window ); extern void XpEndPage ( Display *display ); extern void XpCancelPage ( Display *display, Bool discard ); extern void XpSelectInput ( Display *display, XPContext print_context, unsigned long event_mask ); extern unsigned long XpInputSelected ( Display *display, XPContext print_context, unsigned long *all_events_mask ); extern Bool XpSetImageResolution ( Display *display, XPContext print_context, int image_res, int *prev_res ); extern int XpGetImageResolution ( Display *display, XPContext print_context ); extern char *XpGetAttributes ( Display *display, XPContext print_context, XPAttributes type ); extern void XpSetAttributes ( Display *display, XPContext print_context, XPAttributes type, char *pool, XPAttrReplacement replacement_rule ); extern char *XpGetOneAttribute ( Display *display, XPContext print_context, XPAttributes type, char *attribute_name ); extern XPPrinterList XpGetPrinterList ( Display *display, char *printer_name, int *list_count /* return value */ ); extern void XpFreePrinterList ( XPPrinterList printer_list ); extern void XpRehashPrinterList ( Display *display ); extern Status XpQueryVersion ( Display *display, short *major_version, /* return value */ short *minor_version /* return value */ ); extern Bool XpQueryExtension ( Display *display, int *event_base_return, /* return value */ int *error_base_return /* return value */ ); extern Screen **XpQueryScreens ( Display *display, int *list_count /* return value */ ); extern Status XpGetPdmStartParams ( Display *print_display, Window print_window, XPContext print_context, Display *video_display, Window video_window, Display **selection_display, /* return value */ Atom *selection, /* return value */ Atom *type, /* return value */ int *format, /* return value */ unsigned char **data, /* return value */ int *nelements /* return value */ ); extern Status XpGetAuthParams ( Display *print_display, Display *video_display, Display **selection_display, /* return value */ Atom *selection, /* return value */ Atom *target /* return value */ ); extern Status XpSendAuth ( Display *display, Window window ); extern Status XpSendOneTicket ( Display *display, Window window, Xauth *ticket, Bool more ); extern void XpSetLocaleHinter ( XPHinterProc hinter_proc, char *hinter_desc ); extern char *XpGetLocaleHinter ( XPHinterProc *hinter_proc ); extern char *XpGetLocaleNetString(void); extern char *XpNotifyPdm ( Display *print_display, Window print_window, XPContext print_context, Display *video_display, Window video_window, Bool auth_flag ); #endif /* _XP_PRINT_SERVER_ */ _XFUNCPROTOEND #endif /* _XpPrint_H_ */ printproto-1.0.5/Makefile.in000064401431060000012000000532611151122464400162730ustar00alancstaff00002660200007# Makefile.in generated by automake 1.11.1 from Makefile.am. # @configure_input@ # Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, # 2003, 2004, 2005, 2006, 2007, 2008, 2009 Free Software Foundation, # Inc. # This Makefile.in is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY, to the extent permitted by law; without # even the implied warranty of MERCHANTABILITY or FITNESS FOR A # PARTICULAR PURPOSE. @SET_MAKE@ VPATH = @srcdir@ pkgdatadir = $(datadir)/@PACKAGE@ pkgincludedir = $(includedir)/@PACKAGE@ pkglibdir = $(libdir)/@PACKAGE@ pkglibexecdir = $(libexecdir)/@PACKAGE@ am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd install_sh_DATA = $(install_sh) -c -m 644 install_sh_PROGRAM = $(install_sh) -c install_sh_SCRIPT = $(install_sh) -c INSTALL_HEADER = $(INSTALL_DATA) transform = $(program_transform_name) NORMAL_INSTALL = : PRE_INSTALL = : POST_INSTALL = : NORMAL_UNINSTALL = : PRE_UNINSTALL = : POST_UNINSTALL = : build_triplet = @build@ host_triplet = @host@ subdir = . DIST_COMMON = README $(am__configure_deps) $(print_HEADERS) \ $(srcdir)/Makefile.am $(srcdir)/Makefile.in \ $(srcdir)/printproto.pc.in $(top_srcdir)/configure COPYING \ ChangeLog config.guess config.sub install-sh missing ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 am__aclocal_m4_deps = $(top_srcdir)/configure.ac am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ $(ACLOCAL_M4) am__CONFIG_DISTCLEAN_FILES = config.status config.cache config.log \ configure.lineno config.status.lineno mkinstalldirs = $(install_sh) -d CONFIG_CLEAN_FILES = printproto.pc CONFIG_CLEAN_VPATH_FILES = AM_V_GEN = $(am__v_GEN_$(V)) am__v_GEN_ = $(am__v_GEN_$(AM_DEFAULT_VERBOSITY)) am__v_GEN_0 = @echo " GEN " $@; AM_V_at = $(am__v_at_$(V)) am__v_at_ = $(am__v_at_$(AM_DEFAULT_VERBOSITY)) am__v_at_0 = @ SOURCES = DIST_SOURCES = am__vpath_adj_setup = srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; am__vpath_adj = case $$p in \ $(srcdir)/*) f=`echo "$$p" | sed "s|^$$srcdirstrip/||"`;; \ *) f=$$p;; \ esac; am__strip_dir = f=`echo $$p | sed -e 's|^.*/||'`; am__install_max = 40 am__nobase_strip_setup = \ srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*|]/\\\\&/g'` am__nobase_strip = \ for p in $$list; do echo "$$p"; done | sed -e "s|$$srcdirstrip/||" am__nobase_list = $(am__nobase_strip_setup); \ for p in $$list; do echo "$$p $$p"; done | \ sed "s| $$srcdirstrip/| |;"' / .*\//!s/ .*/ ./; s,\( .*\)/[^/]*$$,\1,' | \ $(AWK) 'BEGIN { files["."] = "" } { files[$$2] = files[$$2] " " $$1; \ if (++n[$$2] == $(am__install_max)) \ { print $$2, files[$$2]; n[$$2] = 0; files[$$2] = "" } } \ END { for (dir in files) print dir, files[dir] }' am__base_list = \ sed '$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;s/\n/ /g' | \ sed '$$!N;$$!N;$$!N;$$!N;s/\n/ /g' am__installdirs = "$(DESTDIR)$(miscmandir)" \ "$(DESTDIR)$(pkgconfigdir)" "$(DESTDIR)$(printdir)" DATA = $(miscman_DATA) $(pkgconfig_DATA) HEADERS = $(print_HEADERS) ETAGS = etags CTAGS = ctags DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) distdir = $(PACKAGE)-$(VERSION) top_distdir = $(distdir) am__remove_distdir = \ { test ! -d "$(distdir)" \ || { find "$(distdir)" -type d ! -perm -200 -exec chmod u+w {} ';' \ && rm -fr "$(distdir)"; }; } DIST_ARCHIVES = $(distdir).tar.gz $(distdir).tar.bz2 GZIP_ENV = --best distuninstallcheck_listfiles = find . -type f -print distcleancheck_listfiles = find . -type f -print ACLOCAL = @ACLOCAL@ ADMIN_MAN_DIR = @ADMIN_MAN_DIR@ ADMIN_MAN_SUFFIX = @ADMIN_MAN_SUFFIX@ AMTAR = @AMTAR@ AM_DEFAULT_VERBOSITY = @AM_DEFAULT_VERBOSITY@ APP_MAN_DIR = @APP_MAN_DIR@ APP_MAN_SUFFIX = @APP_MAN_SUFFIX@ AUTOCONF = @AUTOCONF@ AUTOHEADER = @AUTOHEADER@ AUTOMAKE = @AUTOMAKE@ AWK = @AWK@ CC = @CC@ CCDEPMODE = @CCDEPMODE@ CFLAGS = @CFLAGS@ CHANGELOG_CMD = @CHANGELOG_CMD@ CPP = @CPP@ CPPFLAGS = @CPPFLAGS@ CWARNFLAGS = @CWARNFLAGS@ CYGPATH_W = @CYGPATH_W@ DEFS = @DEFS@ DEPDIR = @DEPDIR@ DRIVER_MAN_DIR = @DRIVER_MAN_DIR@ DRIVER_MAN_SUFFIX = @DRIVER_MAN_SUFFIX@ ECHO_C = @ECHO_C@ ECHO_N = @ECHO_N@ ECHO_T = @ECHO_T@ EGREP = @EGREP@ EXEEXT = @EXEEXT@ FILE_MAN_DIR = @FILE_MAN_DIR@ FILE_MAN_SUFFIX = @FILE_MAN_SUFFIX@ GREP = @GREP@ INSTALL = @INSTALL@ INSTALL_CMD = @INSTALL_CMD@ INSTALL_DATA = @INSTALL_DATA@ INSTALL_PROGRAM = @INSTALL_PROGRAM@ INSTALL_SCRIPT = @INSTALL_SCRIPT@ INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@ LDFLAGS = @LDFLAGS@ LIBOBJS = @LIBOBJS@ LIBS = @LIBS@ LIB_MAN_DIR = @LIB_MAN_DIR@ LIB_MAN_SUFFIX = @LIB_MAN_SUFFIX@ LTLIBOBJS = @LTLIBOBJS@ MAINT = @MAINT@ MAKEINFO = @MAKEINFO@ MAN_SUBSTS = \ -e 's|__vendorversion__|"$(XORGRELSTRING)" "$(XORGMANNAME)"|' \ -e 's|__xorgversion__|"$(XORGRELSTRING)" "$(XORGMANNAME)"|' \ -e 's|__datadir__|$(datadir)|g' \ -e 's|__libdir__|$(libdir)|g' \ -e 's|__sysconfdir__|$(sysconfdir)|g' \ -e 's|__appmansuffix__|$(APP_MAN_SUFFIX)|g' \ -e 's|__libmansuffix__|$(LIB_MAN_SUFFIX)|g' \ -e 's|__miscmansuffix__|$(MISC_MAN_SUFFIX)|g' MISC_MAN_DIR = @MISC_MAN_DIR@ MISC_MAN_SUFFIX = @MISC_MAN_SUFFIX@ MKDIR_P = @MKDIR_P@ OBJEXT = @OBJEXT@ PACKAGE = @PACKAGE@ PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@ PACKAGE_NAME = @PACKAGE_NAME@ PACKAGE_STRING = @PACKAGE_STRING@ PACKAGE_TARNAME = @PACKAGE_TARNAME@ PACKAGE_URL = @PACKAGE_URL@ PACKAGE_VERSION = @PACKAGE_VERSION@ PATH_SEPARATOR = @PATH_SEPARATOR@ PKG_CONFIG = @PKG_CONFIG@ SED = sed SET_MAKE = @SET_MAKE@ SHELL = @SHELL@ STRIP = @STRIP@ VERSION = @VERSION@ XORG_MAN_PAGE = @XORG_MAN_PAGE@ abs_builddir = @abs_builddir@ abs_srcdir = @abs_srcdir@ abs_top_builddir = @abs_top_builddir@ abs_top_srcdir = @abs_top_srcdir@ ac_ct_CC = @ac_ct_CC@ am__include = @am__include@ am__leading_dot = @am__leading_dot@ am__quote = @am__quote@ am__tar = @am__tar@ am__untar = @am__untar@ bindir = @bindir@ build = @build@ build_alias = @build_alias@ build_cpu = @build_cpu@ build_os = @build_os@ build_vendor = @build_vendor@ builddir = @builddir@ datadir = @datadir@ datarootdir = @datarootdir@ docdir = @docdir@ dvidir = @dvidir@ exec_prefix = @exec_prefix@ host = @host@ host_alias = @host_alias@ host_cpu = @host_cpu@ host_os = @host_os@ host_vendor = @host_vendor@ htmldir = @htmldir@ includedir = @includedir@ infodir = @infodir@ install_sh = @install_sh@ libdir = @libdir@ libexecdir = @libexecdir@ localedir = @localedir@ localstatedir = @localstatedir@ mandir = @mandir@ mkdir_p = @mkdir_p@ oldincludedir = @oldincludedir@ pdfdir = @pdfdir@ prefix = @prefix@ program_transform_name = @program_transform_name@ psdir = @psdir@ sbindir = @sbindir@ sharedstatedir = @sharedstatedir@ srcdir = @srcdir@ sysconfdir = @sysconfdir@ target_alias = @target_alias@ top_build_prefix = @top_build_prefix@ top_builddir = @top_builddir@ top_srcdir = @top_srcdir@ printdir = $(includedir)/X11/extensions print_HEADERS = \ Print.h \ Printstr.h pkgconfigdir = $(libdir)/pkgconfig pkgconfig_DATA = printproto.pc miscmandir = $(MISC_MAN_DIR) miscman_DATA = man/Xprint.$(MISC_MAN_SUFFIX) CLEANFILES = $(miscman_DATA) EXTRA_DIST = printproto.pc.in man/Xprint.man man/Xprint.sgml \ specs/xp_proto.book specs/xp_proto.mif specs/xp_proto.ps \ specs/xp_protoIX.doc specs/xp_protoTOC.doc \ specs/xp_proto_cov.mif ChangeLog MAINTAINERCLEANFILES = ChangeLog # Strings to replace in man pages XORGRELSTRING = @PACKAGE_STRING@ XORGMANNAME = X Version 11 SUFFIXES = .$(MISC_MAN_SUFFIX) .man all: all-am .SUFFIXES: .SUFFIXES: .$(MISC_MAN_SUFFIX) .man am--refresh: @: $(srcdir)/Makefile.in: @MAINTAINER_MODE_TRUE@ $(srcdir)/Makefile.am $(am__configure_deps) @for dep in $?; do \ case '$(am__configure_deps)' in \ *$$dep*) \ echo ' cd $(srcdir) && $(AUTOMAKE) --foreign'; \ $(am__cd) $(srcdir) && $(AUTOMAKE) --foreign \ && exit 0; \ exit 1;; \ esac; \ done; \ echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign Makefile'; \ $(am__cd) $(top_srcdir) && \ $(AUTOMAKE) --foreign Makefile .PRECIOUS: Makefile Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status @case '$?' in \ *config.status*) \ echo ' $(SHELL) ./config.status'; \ $(SHELL) ./config.status;; \ *) \ echo ' cd $(top_builddir) && $(SHELL) ./config.status $@ $(am__depfiles_maybe)'; \ cd $(top_builddir) && $(SHELL) ./config.status $@ $(am__depfiles_maybe);; \ esac; $(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) $(SHELL) ./config.status --recheck $(top_srcdir)/configure: @MAINTAINER_MODE_TRUE@ $(am__configure_deps) $(am__cd) $(srcdir) && $(AUTOCONF) $(ACLOCAL_M4): @MAINTAINER_MODE_TRUE@ $(am__aclocal_m4_deps) $(am__cd) $(srcdir) && $(ACLOCAL) $(ACLOCAL_AMFLAGS) $(am__aclocal_m4_deps): printproto.pc: $(top_builddir)/config.status $(srcdir)/printproto.pc.in cd $(top_builddir) && $(SHELL) ./config.status $@ install-miscmanDATA: $(miscman_DATA) @$(NORMAL_INSTALL) test -z "$(miscmandir)" || $(MKDIR_P) "$(DESTDIR)$(miscmandir)" @list='$(miscman_DATA)'; test -n "$(miscmandir)" || list=; \ for p in $$list; do \ if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \ echo "$$d$$p"; \ done | $(am__base_list) | \ while read files; do \ echo " $(INSTALL_DATA) $$files '$(DESTDIR)$(miscmandir)'"; \ $(INSTALL_DATA) $$files "$(DESTDIR)$(miscmandir)" || exit $$?; \ done uninstall-miscmanDATA: @$(NORMAL_UNINSTALL) @list='$(miscman_DATA)'; test -n "$(miscmandir)" || list=; \ files=`for p in $$list; do echo $$p; done | sed -e 's|^.*/||'`; \ test -n "$$files" || exit 0; \ echo " ( cd '$(DESTDIR)$(miscmandir)' && rm -f" $$files ")"; \ cd "$(DESTDIR)$(miscmandir)" && rm -f $$files install-pkgconfigDATA: $(pkgconfig_DATA) @$(NORMAL_INSTALL) test -z "$(pkgconfigdir)" || $(MKDIR_P) "$(DESTDIR)$(pkgconfigdir)" @list='$(pkgconfig_DATA)'; test -n "$(pkgconfigdir)" || list=; \ for p in $$list; do \ if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \ echo "$$d$$p"; \ done | $(am__base_list) | \ while read files; do \ echo " $(INSTALL_DATA) $$files '$(DESTDIR)$(pkgconfigdir)'"; \ $(INSTALL_DATA) $$files "$(DESTDIR)$(pkgconfigdir)" || exit $$?; \ done uninstall-pkgconfigDATA: @$(NORMAL_UNINSTALL) @list='$(pkgconfig_DATA)'; test -n "$(pkgconfigdir)" || list=; \ files=`for p in $$list; do echo $$p; done | sed -e 's|^.*/||'`; \ test -n "$$files" || exit 0; \ echo " ( cd '$(DESTDIR)$(pkgconfigdir)' && rm -f" $$files ")"; \ cd "$(DESTDIR)$(pkgconfigdir)" && rm -f $$files install-printHEADERS: $(print_HEADERS) @$(NORMAL_INSTALL) test -z "$(printdir)" || $(MKDIR_P) "$(DESTDIR)$(printdir)" @list='$(print_HEADERS)'; test -n "$(printdir)" || list=; \ for p in $$list; do \ if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \ echo "$$d$$p"; \ done | $(am__base_list) | \ while read files; do \ echo " $(INSTALL_HEADER) $$files '$(DESTDIR)$(printdir)'"; \ $(INSTALL_HEADER) $$files "$(DESTDIR)$(printdir)" || exit $$?; \ done uninstall-printHEADERS: @$(NORMAL_UNINSTALL) @list='$(print_HEADERS)'; test -n "$(printdir)" || list=; \ files=`for p in $$list; do echo $$p; done | sed -e 's|^.*/||'`; \ test -n "$$files" || exit 0; \ echo " ( cd '$(DESTDIR)$(printdir)' && rm -f" $$files ")"; \ cd "$(DESTDIR)$(printdir)" && rm -f $$files ID: $(HEADERS) $(SOURCES) $(LISP) $(TAGS_FILES) list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \ unique=`for i in $$list; do \ if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ done | \ $(AWK) '{ files[$$0] = 1; nonempty = 1; } \ END { if (nonempty) { for (i in files) print i; }; }'`; \ mkid -fID $$unique tags: TAGS TAGS: $(HEADERS) $(SOURCES) $(TAGS_DEPENDENCIES) \ $(TAGS_FILES) $(LISP) set x; \ here=`pwd`; \ list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \ unique=`for i in $$list; do \ if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ done | \ $(AWK) '{ files[$$0] = 1; nonempty = 1; } \ END { if (nonempty) { for (i in files) print i; }; }'`; \ shift; \ if test -z "$(ETAGS_ARGS)$$*$$unique"; then :; else \ test -n "$$unique" || unique=$$empty_fix; \ if test $$# -gt 0; then \ $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ "$$@" $$unique; \ else \ $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ $$unique; \ fi; \ fi ctags: CTAGS CTAGS: $(HEADERS) $(SOURCES) $(TAGS_DEPENDENCIES) \ $(TAGS_FILES) $(LISP) list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \ unique=`for i in $$list; do \ if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ done | \ $(AWK) '{ files[$$0] = 1; nonempty = 1; } \ END { if (nonempty) { for (i in files) print i; }; }'`; \ test -z "$(CTAGS_ARGS)$$unique" \ || $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \ $$unique GTAGS: here=`$(am__cd) $(top_builddir) && pwd` \ && $(am__cd) $(top_srcdir) \ && gtags -i $(GTAGS_ARGS) "$$here" distclean-tags: -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags distdir: $(DISTFILES) $(am__remove_distdir) test -d "$(distdir)" || mkdir "$(distdir)" @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ list='$(DISTFILES)'; \ dist_files=`for file in $$list; do echo $$file; done | \ sed -e "s|^$$srcdirstrip/||;t" \ -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \ case $$dist_files in \ */*) $(MKDIR_P) `echo "$$dist_files" | \ sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \ sort -u` ;; \ esac; \ for file in $$dist_files; do \ if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \ if test -d $$d/$$file; then \ dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \ if test -d "$(distdir)/$$file"; then \ find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ fi; \ if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \ cp -fpR $(srcdir)/$$file "$(distdir)$$dir" || exit 1; \ find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ fi; \ cp -fpR $$d/$$file "$(distdir)$$dir" || exit 1; \ else \ test -f "$(distdir)/$$file" \ || cp -p $$d/$$file "$(distdir)/$$file" \ || exit 1; \ fi; \ done $(MAKE) $(AM_MAKEFLAGS) \ top_distdir="$(top_distdir)" distdir="$(distdir)" \ dist-hook -test -n "$(am__skip_mode_fix)" \ || find "$(distdir)" -type d ! -perm -755 \ -exec chmod u+rwx,go+rx {} \; -o \ ! -type d ! -perm -444 -links 1 -exec chmod a+r {} \; -o \ ! -type d ! -perm -400 -exec chmod a+r {} \; -o \ ! -type d ! -perm -444 -exec $(install_sh) -c -m a+r {} {} \; \ || chmod -R a+r "$(distdir)" dist-gzip: distdir tardir=$(distdir) && $(am__tar) | GZIP=$(GZIP_ENV) gzip -c >$(distdir).tar.gz $(am__remove_distdir) dist-bzip2: distdir tardir=$(distdir) && $(am__tar) | bzip2 -9 -c >$(distdir).tar.bz2 $(am__remove_distdir) dist-lzma: distdir tardir=$(distdir) && $(am__tar) | lzma -9 -c >$(distdir).tar.lzma $(am__remove_distdir) dist-xz: distdir tardir=$(distdir) && $(am__tar) | xz -c >$(distdir).tar.xz $(am__remove_distdir) dist-tarZ: distdir tardir=$(distdir) && $(am__tar) | compress -c >$(distdir).tar.Z $(am__remove_distdir) dist-shar: distdir shar $(distdir) | GZIP=$(GZIP_ENV) gzip -c >$(distdir).shar.gz $(am__remove_distdir) dist-zip: distdir -rm -f $(distdir).zip zip -rq $(distdir).zip $(distdir) $(am__remove_distdir) dist dist-all: distdir tardir=$(distdir) && $(am__tar) | GZIP=$(GZIP_ENV) gzip -c >$(distdir).tar.gz tardir=$(distdir) && $(am__tar) | bzip2 -9 -c >$(distdir).tar.bz2 $(am__remove_distdir) # This target untars the dist file and tries a VPATH configuration. Then # it guarantees that the distribution is self-contained by making another # tarfile. distcheck: dist case '$(DIST_ARCHIVES)' in \ *.tar.gz*) \ GZIP=$(GZIP_ENV) gzip -dc $(distdir).tar.gz | $(am__untar) ;;\ *.tar.bz2*) \ bzip2 -dc $(distdir).tar.bz2 | $(am__untar) ;;\ *.tar.lzma*) \ lzma -dc $(distdir).tar.lzma | $(am__untar) ;;\ *.tar.xz*) \ xz -dc $(distdir).tar.xz | $(am__untar) ;;\ *.tar.Z*) \ uncompress -c $(distdir).tar.Z | $(am__untar) ;;\ *.shar.gz*) \ GZIP=$(GZIP_ENV) gzip -dc $(distdir).shar.gz | unshar ;;\ *.zip*) \ unzip $(distdir).zip ;;\ esac chmod -R a-w $(distdir); chmod a+w $(distdir) mkdir $(distdir)/_build mkdir $(distdir)/_inst chmod a-w $(distdir) test -d $(distdir)/_build || exit 0; \ dc_install_base=`$(am__cd) $(distdir)/_inst && pwd | sed -e 's,^[^:\\/]:[\\/],/,'` \ && dc_destdir="$${TMPDIR-/tmp}/am-dc-$$$$/" \ && am__cwd=`pwd` \ && $(am__cd) $(distdir)/_build \ && ../configure --srcdir=.. --prefix="$$dc_install_base" \ $(DISTCHECK_CONFIGURE_FLAGS) \ && $(MAKE) $(AM_MAKEFLAGS) \ && $(MAKE) $(AM_MAKEFLAGS) dvi \ && $(MAKE) $(AM_MAKEFLAGS) check \ && $(MAKE) $(AM_MAKEFLAGS) install \ && $(MAKE) $(AM_MAKEFLAGS) installcheck \ && $(MAKE) $(AM_MAKEFLAGS) uninstall \ && $(MAKE) $(AM_MAKEFLAGS) distuninstallcheck_dir="$$dc_install_base" \ distuninstallcheck \ && chmod -R a-w "$$dc_install_base" \ && ({ \ (cd ../.. && umask 077 && mkdir "$$dc_destdir") \ && $(MAKE) $(AM_MAKEFLAGS) DESTDIR="$$dc_destdir" install \ && $(MAKE) $(AM_MAKEFLAGS) DESTDIR="$$dc_destdir" uninstall \ && $(MAKE) $(AM_MAKEFLAGS) DESTDIR="$$dc_destdir" \ distuninstallcheck_dir="$$dc_destdir" distuninstallcheck; \ } || { rm -rf "$$dc_destdir"; exit 1; }) \ && rm -rf "$$dc_destdir" \ && $(MAKE) $(AM_MAKEFLAGS) dist \ && rm -rf $(DIST_ARCHIVES) \ && $(MAKE) $(AM_MAKEFLAGS) distcleancheck \ && cd "$$am__cwd" \ || exit 1 $(am__remove_distdir) @(echo "$(distdir) archives ready for distribution: "; \ list='$(DIST_ARCHIVES)'; for i in $$list; do echo $$i; done) | \ sed -e 1h -e 1s/./=/g -e 1p -e 1x -e '$$p' -e '$$x' distuninstallcheck: @$(am__cd) '$(distuninstallcheck_dir)' \ && test `$(distuninstallcheck_listfiles) | wc -l` -le 1 \ || { echo "ERROR: files left after uninstall:" ; \ if test -n "$(DESTDIR)"; then \ echo " (check DESTDIR support)"; \ fi ; \ $(distuninstallcheck_listfiles) ; \ exit 1; } >&2 distcleancheck: distclean @if test '$(srcdir)' = . ; then \ echo "ERROR: distcleancheck can only run from a VPATH build" ; \ exit 1 ; \ fi @test `$(distcleancheck_listfiles) | wc -l` -eq 0 \ || { echo "ERROR: files left in build directory after distclean:" ; \ $(distcleancheck_listfiles) ; \ exit 1; } >&2 check-am: all-am check: check-am all-am: Makefile $(DATA) $(HEADERS) installdirs: for dir in "$(DESTDIR)$(miscmandir)" "$(DESTDIR)$(pkgconfigdir)" "$(DESTDIR)$(printdir)"; do \ test -z "$$dir" || $(MKDIR_P) "$$dir"; \ done install: install-am install-exec: install-exec-am install-data: install-data-am uninstall: uninstall-am install-am: all-am @$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am installcheck: installcheck-am install-strip: $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ `test -z '$(STRIP)' || \ echo "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'"` install mostlyclean-generic: clean-generic: -test -z "$(CLEANFILES)" || rm -f $(CLEANFILES) distclean-generic: -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES) -test . = "$(srcdir)" || test -z "$(CONFIG_CLEAN_VPATH_FILES)" || rm -f $(CONFIG_CLEAN_VPATH_FILES) maintainer-clean-generic: @echo "This command is intended for maintainers to use" @echo "it deletes files that may require special tools to rebuild." -test -z "$(MAINTAINERCLEANFILES)" || rm -f $(MAINTAINERCLEANFILES) clean: clean-am clean-am: clean-generic mostlyclean-am distclean: distclean-am -rm -f $(am__CONFIG_DISTCLEAN_FILES) -rm -f Makefile distclean-am: clean-am distclean-generic distclean-tags dvi: dvi-am dvi-am: html: html-am html-am: info: info-am info-am: install-data-am: install-miscmanDATA install-pkgconfigDATA \ install-printHEADERS install-dvi: install-dvi-am install-dvi-am: install-exec-am: install-html: install-html-am install-html-am: install-info: install-info-am install-info-am: install-man: install-pdf: install-pdf-am install-pdf-am: install-ps: install-ps-am install-ps-am: installcheck-am: maintainer-clean: maintainer-clean-am -rm -f $(am__CONFIG_DISTCLEAN_FILES) -rm -rf $(top_srcdir)/autom4te.cache -rm -f Makefile maintainer-clean-am: distclean-am maintainer-clean-generic mostlyclean: mostlyclean-am mostlyclean-am: mostlyclean-generic pdf: pdf-am pdf-am: ps: ps-am ps-am: uninstall-am: uninstall-miscmanDATA uninstall-pkgconfigDATA \ uninstall-printHEADERS .MAKE: install-am install-strip .PHONY: CTAGS GTAGS all all-am am--refresh check check-am clean \ clean-generic ctags dist dist-all dist-bzip2 dist-gzip \ dist-hook dist-lzma dist-shar dist-tarZ dist-xz dist-zip \ distcheck distclean distclean-generic distclean-tags \ distcleancheck distdir distuninstallcheck dvi dvi-am html \ html-am info info-am install install-am install-data \ install-data-am install-dvi install-dvi-am install-exec \ install-exec-am install-html install-html-am install-info \ install-info-am install-man install-miscmanDATA install-pdf \ install-pdf-am install-pkgconfigDATA install-printHEADERS \ install-ps install-ps-am install-strip installcheck \ installcheck-am installdirs maintainer-clean \ maintainer-clean-generic mostlyclean mostlyclean-generic pdf \ pdf-am ps ps-am tags uninstall uninstall-am \ uninstall-miscmanDATA uninstall-pkgconfigDATA \ uninstall-printHEADERS .PHONY: ChangeLog ChangeLog: $(CHANGELOG_CMD) dist-hook: ChangeLog .man.$(MISC_MAN_SUFFIX): man $(MKDIR_P) man $(AM_V_GEN)$(SED) $(MAN_SUBSTS) < $< > $@ # Tell versions [3.59,3.63) of GNU make to not export all variables. # Otherwise a system limit (for SysV at least) may be exceeded. .NOEXPORT: $$list; do \ if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ done | \ $(AWK) '{ files[$$0] = 1; nonempty = 1; } \ END { if (nonempty) { for (i in files) print i; }; }'`; \ shift; \ if test -z "$(ETAGS_ARGS)$$*$$unique"; then :; else \ test -n "$$unique" || unique=$$empty_fix; \ if test $$# -gprintproto-1.0.5/specs/xp_proto.mif000064401431060000012000061765031126616702300177310ustar00alancstaff00002660200007 # Generated by FrameMaker xm5.0P3f # Options: # Paragraph Text # Paragraph Tags # Paragraph Formats # Font Information # Markers # Anchored Frames # Tables # Graphics and TextRect Layout # Master Page Items # Condition Catalog # Table Catalogs # Font Catalog # Paragraph Catalog # Document Template # Document Dictionary # Variables # > # end of Color > # end of Color > # end of Color > # end of Color > # end of Color > # end of Color > # end of Color > # end of Color > # end of Color > # end of Color > # end of ColorCatalog > # end of Condition > # end of Condition > # end of Condition > # end of ConditionCatalog > # end of PgfFont > # end of TabStop > # end of TabStop > # end of TabStop > # end of Pgf > # end of PgfFont \\t'> > # end of TabStop > # end of Pgf > # end of PgfFont .\\t'> > # end of TabStop > # end of Pgf > # end of PgfFont .\\t'> > # end of TabStop > # end of Pgf > # end of PgfFont .. \\t'> > # end of TabStop > # end of Pgf > # end of PgfFont ... \\t'> > # end of TabStop > # end of Pgf > # end of PgfFont > # end of Pgf > # end of PgfFont > # end of TabStop > # end of Pgf > # end of PgfFont > # end of TabStop > # end of Pgf > # end of PgfFont > # end of TabStop > # end of Pgf > # end of PgfFont > # end of TabStop > # end of Pgf > # end of PgfFont > # end of TabStop > # end of TabStop > # end of Pgf > # end of PgfFont > # end of TabStop > # end of TabStop > # end of TabStop > # end of TabStop > # end of TabStop > # end of TabStop > # end of TabStop > # end of Pgf > # end of PgfFont > # end of Pgf > # end of PgfFont > # end of Pgf > # end of PgfFont > # end of Pgf > # end of PgfFont > # end of Pgf > # end of PgfFont > # end of Pgf > # end of PgfFont > # end of Pgf > # end of PgfFont > # end of TabStop > # end of TabStop > # end of TabStop > # end of TabStop > # end of TabStop > # end of TabStop > # end of TabStop > # end of TabStop > # end of TabStop > # end of TabStop > # end of TabStop > # end of TabStop > # end of TabStop > # end of TabStop > # end of Pgf > # end of PgfFont > # end of TabStop > # end of Pgf > # end of PgfFont > # end of Pgf > # end of PgfFont > # end of TabStop > # end of TabStop > # end of TabStop > # end of TabStop > # end of TabStop > # end of TabStop > # end of TabStop > # end of TabStop > # end of TabStop > # end of TabStop > # end of Pgf > # end of PgfFont > # end of TabStop > # end of TabStop > # end of TabStop > # end of TabStop > # end of TabStop > # end of TabStop > # end of TabStop > # end of TabStop > # end of TabStop > # end of TabStop > # end of Pgf > # end of PgfFont > # end of TabStop > # end of TabStop > # end of Pgf > # end of PgfFont > # end of TabStop > # end of TabStop > # end of Pgf > # end of PgfFont > # end of TabStop > # end of Pgf > # end of PgfFont > # end of TabStop > # end of TabStop > # end of TabStop > # end of Pgf > # end of PgfFont > # end of TabStop > # end of Pgf > # end of PgfFont )'> > # end of Pgf > # end of PgfFont > # end of Pgf > # end of PgfFont . '> > # end of Pgf > # end of PgfFont > # end of Pgf > # end of PgfFont > # end of TabStop > # end of TabStop > # end of TabStop > # end of TabStop > # end of Pgf > # end of PgfFont > # end of TabStop > # end of Pgf > # end of PgfFont > # end of TabStop > # end of TabStop > # end of TabStop > # end of Pgf > # end of PgfFont > # end of Pgf > # end of PgfFont > # end of Pgf > # end of PgfFont > # end of TabStop > # end of TabStop > # end of TabStop > # end of TabStop > # end of TabStop > # end of TabStop > # end of Pgf > # end of PgfFont > # end of TabStop > # end of TabStop > # end of TabStop > # end of TabStop > # end of TabStop > # end of TabStop > # end of Pgf > # end of PgfFont > # end of Pgf > # end of PgfFont .\\t'> > # end of TabStop > # end of TabStop > # end of TabStop > # end of TabStop > # end of TabStop > # end of TabStop > # end of Pgf > # end of PgfFont .\\t'> > # end of TabStop > # end of TabStop > # end of TabStop > # end of TabStop > # end of TabStop > # end of TabStop > # end of Pgf > # end of PgfFont .\\t'> > # end of TabStop > # end of TabStop > # end of TabStop > # end of TabStop > # end of TabStop > # end of TabStop > # end of Pgf > # end of PgfFont .\\t'> > # end of TabStop > # end of TabStop > # end of TabStop > # end of TabStop > # end of TabStop > # end of TabStop > # end of Pgf > # end of PgfFont > # end of Pgf > # end of PgfFont > # end of Pgf > # end of PgfFont > # end of TabStop > # end of Pgf > # end of PgfFont > # end of Pgf > # end of PgfFont > # end of TabStop > # end of TabStop > # end of Pgf > # end of PgfFont > # end of TabStop > # end of TabStop > # end of TabStop > # end of Pgf > # end of PgfFont > # end of TabStop > # end of TabStop > # end of TabStop > # end of Pgf > # end of PgfFont > # end of TabStop > # end of TabStop > # end of TabStop > # end of Pgf > # end of PgfFont > # end of TabStop > # end of Pgf > # end of PgfFont > # end of TabStop > # end of Pgf > # end of PgfFont .\\t'> > # end of TabStop > # end of Pgf > # end of PgfFont > # end of TabStop > # end of TabStop > # end of TabStop > # end of TabStop > # end of TabStop > # end of TabStop > # end of TabStop > # end of TabStop > # end of TabStop > # end of TabStop > # end of TabStop > # end of TabStop > # end of TabStop > # end of TabStop > # end of Pgf > # end of PgfFont > # end of Pgf > # end of PgfFont > # end of Pgf > # end of PgfFont . '> > # end of Pgf > # end of PgfFont > # end of TabStop > # end of Pgf > # end of PgfFont > # end of TabStop > # end of Pgf > # end of PgfFont > # end of Pgf > # end of PgfFont > # end of Pgf > # end of PgfFont > # end of Pgf > # end of PgfFont > # end of Pgf > # end of PgfFont > # end of TabStop > # end of Pgf > # end of PgfFont > # end of TabStop > # end of Pgf > # end of PgfFont > # end of TabStop > # end of Pgf > # end of PgfFont > # end of TabStop > # end of Pgf > # end of PgfFont > # end of TabStop > # end of TabStop > # end of TabStop > # end of TabStop > # end of Pgf > # end of PgfFont > # end of TabStop > # end of TabStop > # end of TabStop > # end of TabStop > # end of Pgf > # end of PgfCatalog > # end of Font > # end of Font > # end of Font > # end of Font > # end of Font > # end of Font > # end of Font > # end of Font > # end of Font > # end of Font > # end of Font > # end of Font > # end of Font > # end of Font > # end of Font > # end of Font > # end of Font > # end of Font > # end of Font > # end of Font > # end of Font > # end of Font > # end of Font > # end of Font > # end of Font > # end of Font > # end of Font > # end of Font > # end of Font > # end of Font > # end of Font > # end of Font > # end of Font > # end of Font > # end of Font > # end of FontCatalog > # end of Ruling > # end of Ruling > # end of Ruling > # end of Ruling > # end of Ruling > # end of RulingCatalog > # end of TblColumnH > # end of TblColumnBody > # end of TblColumnF > # end of TblColumn > # end of TblColumnH > # end of TblColumnBody > # end of TblColumnF > # end of TblColumn > # end of TblTitlePgf1 > # end of TblFormat > # end of TblColumnH > # end of TblColumnBody > # end of TblColumnF > # end of TblColumn > # end of TblColumnH > # end of TblColumnBody > # end of TblColumnF > # end of TblColumn > # end of TblColumnH > # end of TblColumnBody > # end of TblColumnF > # end of TblColumn > # end of TblColumnH > # end of TblColumnBody > # end of TblColumnF > # end of TblColumn > # end of TblColumnH > # end of TblColumnBody > # end of TblColumnF > # end of TblColumn > # end of TblTitlePgf1 > # end of TblFormat > # end of TblColumnH > # end of TblColumnBody > # end of TblColumnF > # end of TblColumn > # end of TblColumnH > # end of TblColumnBody > # end of TblColumnF > # end of TblColumn > # end of TblColumnH > # end of TblColumnBody > # end of TblColumnF > # end of TblColumn > # end of TblTitlePgf1 > # end of TblFormat > # end of TblColumnH > # end of TblColumnBody > # end of TblColumnF > # end of TblColumn > # end of TblColumnH > # end of TblColumnBody > # end of TblColumnF > # end of TblColumn > # end of TblColumnH > # end of TblColumnBody > # end of TblColumnF > # end of TblColumn > # end of TblTitlePgf1 > # end of TblFormat > # end of PgfFont > # end of Pgf > # end of TblColumnH > # end of PgfFont > # end of Pgf > # end of TblColumnBody > # end of PgfFont > # end of Pgf > # end of TblColumnF > # end of TblColumn > # end of PgfFont > # end of Pgf > # end of TblColumnH > # end of PgfFont > # end of Pgf > # end of TblColumnBody > # end of PgfFont > # end of Pgf > # end of TblColumnF > # end of TblColumn > # end of PgfFont > # end of Pgf > # end of TblColumnH > # end of PgfFont > # end of Pgf > # end of TblColumnBody > # end of PgfFont > # end of Pgf > # end of TblColumnF > # end of TblColumn > # end of PgfFont > # end of Pgf > # end of TblTitlePgf1 > # end of TblFormat > # end of TblCatalog > # end of View > # end of View > # end of View > # end of View > # end of View > # end of View > # end of Views '> > # end of VariableFormat <$daynum\>, <$year\>'> > # end of VariableFormat /<$daynum\>/<$shortyear\>'> > # end of VariableFormat <$daynum\>, <$year\> <$hour\>:<$minute00\> <$ampm\>'> > # end of VariableFormat <$daynum\>, <$year\>'> > # end of VariableFormat , <$monthname\> <$daynum01\>, <$year\>'> > # end of VariableFormat /<$daynum\>/<$shortyear\>'> > # end of VariableFormat '> > # end of VariableFormat '> > # end of VariableFormat '> > # end of VariableFormat '> > # end of VariableFormat '> > # end of VariableFormat '> > # end of VariableFormat '> > # end of VariableFormat > # end of VariableFormat of <$tblsheetcount\>)'> > # end of VariableFormat '> > # end of VariableFormat '> > # end of VariableFormat > # end of VariableFormats \xd3 on page\x11 <$pagenum\>'> > # end of XRefFormat '> > # end of XRefFormat \xd3 on page\x11 <$pagenum\>.'> > # end of XRefFormat , \xd2 <$paratext\>,\xd3 on page\x11 <$pagenum\>'> > # end of XRefFormat , \xd2 <$paratext\>,\xd3 on page\x11 <$pagenum\>'> > # end of XRefFormat on page\x11 <$pagenum\>'> > # end of XRefFormat on page\x11 <$pagenum\>'> > # end of XRefFormat , \xd2 <$paratext\>,\xd3 on page\x11 <$pagenum\>'> > # end of XRefFormat '> > # end of XRefFormat '> > # end of XRefFormat '> > # end of XRefFormat \xd3 '> > # end of XRefFormat > # end of XRefFormats > # end of Document xp_proto.mifIOM.doc'> > # end of BookComponent xp_proto.mifIX.doc'> > # end of BookComponent xp_proto.mifTC.doc'> > # end of BookComponent # end of InitialAutoNums > # end of Dictionary > # end of DashedPattern > # end of PolyLine > # end of PolyLine > # end of Frame > # end of DashedPattern > # end of PolyLine > # end of PolyLine > # end of PolyLine > # end of PolyLine > # end of Frame > # end of DashedPattern > # end of PolyLine > # end of PolyLine > # end of PolyLine > # end of PolyLine > # end of Frame > # end of DashedPattern > # end of PolyLine > # end of PolyLine > # end of PolyLine > # end of PolyLine > # end of Frame > # end of DashedPattern > # end of PolyLine > # end of PolyLine > # end of Frame > # end of DashedPattern > # end of PolyLine > # end of PolyLine > # end of Frame > # end of DashedPattern > # end of PolyLine > # end of PolyLine > # end of PolyLine > # end of PolyLine > # end of Frame > # end of DashedPattern > # end of PolyLine > # end of PolyLine > # end of PolyLine > # end of PolyLine > # end of Frame > # end of DashedPattern > # end of PolyLine > # end of PolyLine > # end of PolyLine > # end of PolyLine > # end of Frame > # end of DashedPattern > # end of PolyLine > # end of PolyLine > # end of PolyLine > # end of PolyLine > # end of Frame > # end of DashedPattern > # end of PolyLine > # end of PolyLine > # end of PolyLine > # end of PolyLine > # end of Frame > # end of DashedPattern > # end of PolyLine > # end of PolyLine > # end of PolyLine > # end of PolyLine > # end of Frame > # end of DashedPattern > # end of PolyLine > # end of PolyLine > # end of PolyLine > # end of PolyLine > # end of Frame > # end of DashedPattern > # end of PolyLine > # end of PolyLine > # end of PolyLine > # end of PolyLine > # end of Frame > # end of DashedPattern > # end of PolyLine > # end of PolyLine > # end of Frame > # end of DashedPattern > # end of PolyLine > # end of PolyLine > # end of PolyLine > # end of PolyLine > # end of Frame > # end of DashedPattern > # end of PolyLine > # end of PolyLine > # end of PolyLine > # end of PolyLine > # end of Frame > # end of DashedPattern > # end of PolyLine > # end of PolyLine > # end of PolyLine > # end of PolyLine > # end of Frame > # end of DashedPattern > # end of PolyLine > # end of PolyLine > # end of PolyLine > # end of PolyLine > # end of Frame > # end of DashedPattern > # end of PolyLine > # end of PolyLine > # end of PolyLine > # end of PolyLine > # end of Frame > # end of DashedPattern > # end of PolyLine > # end of PolyLine > # end of PolyLine > # end of PolyLine > # end of Frame > # end of DashedPattern > # end of PolyLine > # end of PolyLine > # end of PolyLine > # end of PolyLine > # end of Frame > # end of DashedPattern > # end of PolyLine > # end of PolyLine > # end of PolyLine > # end of PolyLine > # end of Frame > # end of DashedPattern > # end of PolyLine > # end of PolyLine > # end of PolyLine > # end of PolyLine > # end of Frame > # end of DashedPattern > # end of PolyLine > # end of PolyLine > # end of Frame > # end of DashedPattern > # end of PolyLine > # end of PolyLine > # end of PolyLine > # end of PolyLine > # end of Frame > # end of DashedPattern > # end of PolyLine > # end of PolyLine > # end of PolyLine > # end of PolyLine > # end of Frame > # end of DashedPattern > # end of PolyLine > # end of PolyLine > # end of PolyLine > # end of PolyLine > # end of Frame > # end of DashedPattern > # end of PolyLine > # end of PolyLine > # end of Frame > # end of DashedPattern > # end of PolyLine > # end of PolyLine > # end of PolyLine > # end of PolyLine > # end of Frame > # end of DashedPattern > # end of PolyLine > # end of PolyLine > # end of Frame > # end of DashedPattern > # end of PolyLine > # end of PolyLine > # end of Frame > # end of DashedPattern > # end of PolyLine > # end of PolyLine > # end of Frame > # end of DashedPattern > # end of PolyLine > # end of PolyLine > # end of Frame > # end of DashedPattern > # end of PolyLine > # end of PolyLine > # end of Frame > # end of DashedPattern > # end of PolyLine > # end of PolyLine > # end of Frame > # end of DashedPattern > # end of PolyLine > # end of PolyLine > # end of Frame > # end of DashedPattern > # end of PolyLine > # end of PolyLine > # end of Frame > # end of DashedPattern > # end of PolyLine > # end of PolyLine > # end of Frame > # end of DashedPattern > # end of PolyLine > # end of PolyLine > # end of Frame > # end of DashedPattern > # end of PolyLine > # end of PolyLine > # end of Frame > # end of DashedPattern > # end of PolyLine > # end of PolyLine > # end of Frame > # end of DashedPattern > # end of PolyLine > # end of PolyLine > # end of Frame > # end of DashedPattern > # end of PolyLine > # end of PolyLine > # end of Frame > # end of DashedPattern > # end of PolyLine > # end of PolyLine > # end of Frame > # end of DashedPattern > # end of PolyLine > # end of PolyLine > # end of Frame > # end of DashedPattern > # end of PolyLine > # end of PolyLine > # end of Frame > # end of DashedPattern > # end of PolyLine > # end of PolyLine > # end of PolyLine > # end of PolyLine > # end of Frame > # end of DashedPattern > # end of PolyLine > # end of PolyLine > # end of PolyLine > # end of PolyLine > # end of Frame > # end of DashedPattern > # end of PolyLine > # end of PolyLine > # end of Frame > # end of DashedPattern > # end of PolyLine > # end of PolyLine > # end of PolyLine > # end of PolyLine > # end of Frame > # end of DashedPattern > # end of PolyLine > # end of PolyLine > # end of Frame > # end of DashedPattern > # end of PolyLine > # end of PolyLine > # end of Frame > # end of DashedPattern > # end of PolyLine > # end of PolyLine > # end of PolyLine > # end of PolyLine > # end of Frame > # end of DashedPattern > # end of PolyLine > # end of PolyLine > # end of Frame > # end of AFrames > # end of TblColumnH > # end of Pgf > # end of TblColumnBody > # end of TblColumnF > # end of TblColumn > # end of TblColumnH > # end of Pgf > # end of TblColumnBody > # end of TblColumnF > # end of TblColumn > # end of TblFormat # end of Notes > # end of Font > > # end of Para > # end of CellContent > # end of Cell # end of Notes > > # end of Para > # end of CellContent > # end of Cell > # end of Row # end of Notes > > # end of Para > # end of CellContent > # end of Cell # end of Notes > > # end of Para > # end of CellContent > # end of Cell > # end of Row > # end of TblBody > # end of Tbl > # end of TblColumnH > # end of Pgf > # end of TblColumnBody > # end of TblColumnF > # end of TblColumn > # end of TblColumnH > # end of Pgf > # end of TblColumnBody > # end of TblColumnF > # end of TblColumn > # end of TblFormat # end of Notes > > # end of Para > # end of CellContent > # end of Cell # end of Notes > > # end of Para > # end of CellContent > # end of Cell # end of Notes > > # end of Para > # end of CellContent > # end of Cell > # end of Row # end of Notes > > # end of Para > # end of CellContent > # end of Cell # end of Notes > > # end of Para > # end of CellContent > # end of Cell # end of Notes > > # end of Para > # end of CellContent > # end of Cell > # end of Row # end of Notes > > # end of Para > # end of CellContent > # end of Cell # end of Notes > > # end of Para > # end of CellContent > # end of Cell # end of Notes > > # end of Para > # end of CellContent > # end of Cell > # end of Row # end of Notes > > # end of Para > # end of CellContent > # end of Cell # end of Notes > > # end of Para > # end of CellContent > # end of Cell # end of Notes > > # end of Para > # end of CellContent > # end of Cell > # end of Row # end of Notes > > # end of Para > # end of CellContent > # end of Cell # end of Notes > > # end of Para > # end of CellContent > # end of Cell # end of Notes > > > # end of Para > # end of CellContent > # end of Cell > # end of Row # end of Notes > > # end of Para > # end of CellContent > # end of Cell # end of Notes > > # end of Para > # end of CellContent > # end of Cell # end of Notes > > # end of Para > # end of CellContent > # end of Cell > # end of Row # end of Notes > > # end of Para > # end of CellContent > # end of Cell # end of Notes > > # end of Para > # end of CellContent > # end of Cell # end of Notes > > # end of Para > # end of CellContent > # end of Cell > # end of Row > # end of TblBody > # end of Tbl > # end of TblColumnH > # end of Pgf > # end of TblColumnBody > # end of TblColumnF > # end of TblColumn > # end of TblColumnH > # end of Pgf > # end of TblColumnBody > # end of TblColumnF > # end of TblColumn > # end of TblFormat # end of Notes > > # end of Para > # end of CellContent > # end of Cell # end of Notes > > # end of Para > # end of CellContent > # end of Cell > # end of Row # end of Notes > > # end of Para > # end of CellContent > # end of Cell # end of Notes > > # end of Para > # end of CellContent > # end of Cell > # end of Row # end of Notes > > # end of Para > # end of CellContent > # end of Cell # end of Notes > > # end of Para > # end of CellContent > # end of Cell > # end of Row # end of Notes > > # end of Para > # end of CellContent > # end of Cell # end of Notes > > # end of Para > # end of CellContent > # end of Cell > # end of Row # end of Notes > > # end of Para > # end of CellContent > # end of Cell # end of Notes > > # end of Para > # end of CellContent > # end of Cell > # end of Row > # end of TblBody > # end of Tbl > # end of TblColumnH > # end of Pgf > # end of TblColumnBody > # end of TblColumnF > # end of TblColumn > # end of TblColumnH > # end of Pgf > # end of TblColumnBody > # end of TblColumnF > # end of TblColumn > # end of TblFormat # end of Notes > > # end of Para > # end of CellContent > # end of Cell # end of Notes > > # end of Para > # end of CellContent > # end of Cell > # end of Row # end of Notes > > # end of Para > # end of CellContent > # end of Cell # end of Notes > > > # end of Para > # end of CellContent > # end of Cell > # end of Row # end of Notes > > # end of Para > # end of CellContent > # end of Cell # end of Notes > > > # end of Para > # end of CellContent > # end of Cell > # end of Row # end of Notes > > # end of Para > # end of CellContent > # end of Cell # end of Notes > > # end of Para > # end of CellContent > # end of Cell > # end of Row # end of Notes > > # end of Para > # end of CellContent > # end of Cell # end of Notes > > # end of Para > # end of CellContent > # end of Cell > # end of Row # end of Notes > > # end of Para > # end of CellContent > # end of Cell # end of Notes > > # end of Para > # end of CellContent > # end of Cell > # end of Row > # end of TblBody > # end of Tbl > # end of PgfFont > # end of Pgf > # end of TblColumnH > # end of PgfFont > # end of Pgf > # end of TblColumnBody > # end of PgfFont > # end of Pgf > # end of TblColumnF > # end of TblColumn > # end of PgfFont > # end of Pgf > # end of TblColumnH > # end of PgfFont > # end of Pgf > # end of TblColumnBody > # end of PgfFont > # end of Pgf > # end of TblColumnF > # end of TblColumn > # end of PgfFont > # end of Pgf > # end of TblColumnH > # end of PgfFont > # end of Pgf > # end of TblColumnBody > # end of PgfFont > # end of Pgf > # end of TblColumnF > # end of TblColumn > # end of PgfFont > # end of Pgf > # end of TblColumnH > # end of PgfFont > # end of Pgf > # end of TblColumnBody > # end of PgfFont > # end of Pgf > # end of TblColumnF > # end of TblColumn > # end of TblFormat # end of Notes > # end of PgfFont > # end of Pgf > > # end of Para > # end of CellContent > # end of Cell # end of Notes > # end of PgfFont > # end of Pgf > > # end of Para > # end of CellContent > # end of Cell # end of Notes > # end of PgfFont > # end of Pgf > > # end of Para > # end of CellContent > # end of Cell > # end of Row # end of Notes > # end of PgfFont > # end of Pgf > > # end of Para > # end of CellContent > # end of Cell # end of Notes > # end of PgfFont > # end of Pgf > > # end of Para > # end of CellContent > # end of Cell # end of Notes > # end of PgfFont > # end of Pgf > > # end of Para > # end of CellContent > # end of Cell > # end of Row # end of Notes > # end of PgfFont > # end of Pgf > > # end of Para > # end of CellContent > # end of Cell # end of Notes > # end of PgfFont > # end of Pgf > > # end of Para > # end of CellContent > # end of Cell # end of Notes > # end of PgfFont > # end of Pgf > > # end of Para > # end of CellContent > # end of Cell > # end of Row > # end of TblBody > # end of Tbl > # end of PgfFont > # end of Pgf > # end of TblColumnH > # end of PgfFont > # end of Pgf > # end of TblColumnBody > # end of PgfFont > # end of Pgf > # end of TblColumnF > # end of TblColumn > # end of PgfFont > # end of Pgf > # end of TblColumnH > # end of PgfFont > # end of Pgf > # end of TblColumnBody > # end of PgfFont > # end of Pgf > # end of TblColumnF > # end of TblColumn > # end of PgfFont > # end of Pgf > # end of TblColumnH > # end of PgfFont > # end of Pgf > # end of TblColumnBody > # end of PgfFont > # end of Pgf > # end of TblColumnF > # end of TblColumn > # end of PgfFont > # end of Pgf > # end of TblColumnH > # end of PgfFont > # end of Pgf > # end of TblColumnBody > # end of PgfFont > # end of Pgf > # end of TblColumnF > # end of TblColumn > # end of TblFormat # end of Notes > # end of PgfFont > # end of Pgf > > # end of Para > # end of CellContent > # end of Cell # end of Notes > # end of PgfFont > # end of Pgf > > # end of Para > # end of CellContent > # end of Cell # end of Notes > # end of PgfFont > # end of Pgf > > # end of Para > # end of CellContent > # end of Cell > # end of Row # end of Notes > # end of PgfFont > # end of Pgf > > # end of Para > # end of CellContent > # end of Cell # end of Notes > # end of PgfFont > # end of Pgf > > # end of Para > # end of CellContent > # end of Cell # end of Notes > # end of PgfFont > # end of Pgf > # end of Para > # end of CellContent > # end of Cell > # end of Row # end of Notes > # end of PgfFont > # end of Pgf > > # end of Para > # end of CellContent > # end of Cell # end of Notes > # end of PgfFont > # end of Pgf > > # end of Para > # end of CellContent > # end of Cell # end of Notes > # end of PgfFont > # end of Pgf > > # end of Para > # end of CellContent > # end of Cell > # end of Row # end of Notes > # end of PgfFont > # end of Pgf > > # end of Para > # end of CellContent > # end of Cell # end of Notes > # end of PgfFont > # end of Pgf > > # end of Para > # end of CellContent > # end of Cell # end of Notes > # end of PgfFont > # end of Pgf > > # end of Para > # end of CellContent > # end of Cell > # end of Row # end of Notes > # end of PgfFont > # end of Pgf > > # end of Para > # end of CellContent > # end of Cell # end of Notes > # end of PgfFont > # end of Pgf > > # end of Para > # end of CellContent > # end of Cell # end of Notes > # end of PgfFont > # end of Pgf > > # end of Para > # end of CellContent > # end of Cell > # end of Row # end of Notes > # end of PgfFont > # end of Pgf > > # end of Para > # end of CellContent > # end of Cell # end of Notes > # end of PgfFont > # end of Pgf > > # end of Para > # end of CellContent > # end of Cell # end of Notes > # end of PgfFont > # end of Pgf > > # end of Para > # end of CellContent > # end of Cell > # end of Row # end of Notes > # end of PgfFont > # end of Pgf > > # end of Para > # end of CellContent > # end of Cell # end of Notes > # end of PgfFont > # end of Pgf > > # end of Para > # end of CellContent > # end of Cell # end of Notes > # end of PgfFont > # end of Pgf > # end of Para > # end of CellContent > # end of Cell > # end of Row > # end of TblBody > # end of Tbl > # end of PgfFont > # end of Pgf > # end of TblColumnH > # end of PgfFont > # end of Pgf > # end of TblColumnBody > # end of PgfFont > # end of Pgf > # end of TblColumnF > # end of TblColumn > # end of PgfFont > # end of Pgf > # end of TblColumnH > # end of PgfFont > # end of Pgf > # end of TblColumnBody > # end of PgfFont > # end of Pgf > # end of TblColumnF > # end of TblColumn > # end of PgfFont > # end of Pgf > # end of TblColumnH > # end of PgfFont > # end of Pgf > # end of TblColumnBody > # end of PgfFont > # end of Pgf > # end of TblColumnF > # end of TblColumn > # end of PgfFont > # end of Pgf > # end of TblColumnH > # end of PgfFont > # end of Pgf > # end of TblColumnBody > # end of PgfFont > # end of Pgf > # end of TblColumnF > # end of TblColumn > # end of TblFormat # end of Notes > # end of PgfFont > # end of Pgf > > # end of Para > # end of CellContent > # end of Cell # end of Notes > # end of PgfFont > # end of Pgf > > # end of Para > # end of CellContent > # end of Cell # end of Notes > # end of PgfFont > # end of Pgf > > # end of Para > # end of CellContent > # end of Cell > # end of Row # end of Notes > # end of PgfFont > # end of Pgf > > # end of Para > # end of CellContent > # end of Cell # end of Notes > # end of PgfFont > # end of Pgf > > # end of Para > # end of CellContent > # end of Cell # end of Notes > # end of PgfFont > # end of Pgf > > # end of Para > # end of CellContent > # end of Cell > # end of Row # end of Notes > # end of PgfFont > # end of Pgf > > # end of Para > # end of CellContent > # end of Cell # end of Notes > # end of PgfFont > # end of Pgf > > # end of Para > # end of CellContent > # end of Cell # end of Notes > # end of PgfFont > # end of Pgf > > # end of Para > # end of CellContent > # end of Cell > # end of Row # end of Notes > # end of PgfFont > # end of Pgf > > # end of Para > # end of CellContent > # end of Cell # end of Notes > # end of PgfFont > # end of Pgf > > # end of Para > # end of CellContent > # end of Cell # end of Notes > # end of PgfFont > # end of Pgf > > # end of Para > # end of CellContent > # end of Cell > # end of Row # end of Notes > # end of PgfFont > # end of Pgf > > # end of Para > # end of CellContent > # end of Cell # end of Notes > # end of PgfFont > # end of Pgf > > # end of Para > # end of CellContent > # end of Cell # end of Notes > # end of PgfFont > # end of Pgf > > # end of Para > # end of CellContent > # end of Cell > # end of Row # end of Notes > # end of PgfFont > # end of Pgf > > # end of Para > # end of CellContent > # end of Cell # end of Notes > # end of PgfFont > # end of Pgf > > # end of Para > # end of CellContent > # end of Cell # end of Notes > # end of PgfFont > # end of Pgf > > # end of Para > # end of CellContent > # end of Cell > # end of Row # end of Notes > # end of PgfFont > # end of Pgf > > # end of Para > # end of CellContent > # end of Cell # end of Notes > # end of PgfFont > # end of Pgf > > # end of Para > # end of CellContent > # end of Cell # end of Notes > # end of PgfFont > # end of Pgf > > # end of Para > # end of CellContent > # end of Cell > # end of Row # end of Notes > # end of PgfFont > # end of Pgf > > # end of Para > # end of CellContent > # end of Cell # end of Notes > # end of PgfFont > # end of Pgf > > # end of Para > # end of CellContent > # end of Cell # end of Notes > # end of PgfFont > # end of Pgf > > # end of Para > # end of CellContent > # end of Cell > # end of Row # end of Notes > # end of PgfFont > # end of Pgf > > # end of Para > # end of CellContent > # end of Cell # end of Notes > # end of PgfFont > # end of Pgf > > # end of Para > # end of CellContent > # end of Cell # end of Notes > # end of PgfFont > # end of Pgf > > # end of Para > # end of CellContent > # end of Cell > # end of Row > # end of TblBody > # end of Tbl > # end of PgfFont > # end of Pgf > # end of TblColumnH > # end of PgfFont > # end of Pgf > # end of TblColumnBody > # end of PgfFont > # end of Pgf > # end of TblColumnF > # end of TblColumn > # end of PgfFont > # end of Pgf > # end of TblColumnH > # end of PgfFont > # end of Pgf > # end of TblColumnBody > # end of PgfFont > # end of Pgf > # end of TblColumnF > # end of TblColumn > # end of PgfFont > # end of Pgf > # end of TblColumnH > # end of PgfFont > # end of Pgf > # end of TblColumnBody > # end of PgfFont > # end of Pgf > # end of TblColumnF > # end of TblColumn > # end of PgfFont > # end of Pgf > # end of TblColumnH > # end of PgfFont > # end of Pgf > # end of TblColumnBody > # end of PgfFont > # end of Pgf > # end of TblColumnF > # end of TblColumn > # end of TblFormat # end of Notes > # end of PgfFont > # end of Pgf > > # end of Para > # end of CellContent > # end of Cell # end of Notes > # end of PgfFont > # end of Pgf > > # end of Para > # end of CellContent > # end of Cell # end of Notes > # end of PgfFont > # end of Pgf > > # end of Para > # end of CellContent > # end of Cell > # end of Row # end of Notes > # end of PgfFont > # end of Pgf > > # end of Para > # end of CellContent > # end of Cell # end of Notes > # end of PgfFont > # end of Pgf > # end of Para > # end of CellContent > # end of Cell # end of Notes > # end of PgfFont > # end of Pgf > > # end of Para > # end of CellContent > # end of Cell > # end of Row # end of Notes > # end of PgfFont > # end of Pgf > > # end of Para > # end of CellContent > # end of Cell # end of Notes > # end of PgfFont > # end of Pgf > > # end of Para > # end of CellContent > # end of Cell # end of Notes > # end of PgfFont > # end of Pgf > > # end of Para > # end of CellContent > # end of Cell > # end of Row # end of Notes > # end of PgfFont > # end of Pgf > > # end of Para > # end of CellContent > # end of Cell # end of Notes > # end of PgfFont > # end of Pgf > > > # end of Para > # end of CellContent > # end of Cell # end of Notes > # end of PgfFont > # end of Pgf > > # end of Para > # end of CellContent > # end of Cell > # end of Row # end of Notes > # end of PgfFont > # end of Pgf > > # end of Para > # end of CellContent > # end of Cell # end of Notes > # end of PgfFont > # end of Pgf > > # end of Para > # end of CellContent > # end of Cell # end of Notes > # end of PgfFont > # end of Pgf > > # end of Para > # end of CellContent > # end of Cell > # end of Row # end of Notes > # end of PgfFont > # end of Pgf > > # end of Para > # end of CellContent > # end of Cell # end of Notes > # end of PgfFont > # end of Pgf > # end of Para > # end of CellContent > # end of Cell # end of Notes > # end of PgfFont > # end of Pgf > > # end of Para > # end of CellContent > # end of Cell > # end of Row # end of Notes > # end of PgfFont > # end of Pgf > > > > > > > # end of Para > # end of CellContent > # end of Cell # end of Notes > # end of PgfFont > # end of Pgf > > # end of Para > # end of CellContent > # end of Cell # end of Notes > # end of PgfFont > # end of Pgf > > # end of Para > # end of CellContent > # end of Cell > # end of Row # end of Notes > # end of PgfFont > # end of Pgf > # end of Para > # end of CellContent > # end of Cell # end of Notes > # end of PgfFont > # end of Pgf > # end of Para > # end of CellContent > # end of Cell # end of Notes > # end of PgfFont > # end of Pgf > # end of Para > # end of CellContent > # end of Cell > # end of Row # end of Notes > # end of PgfFont > # end of Pgf > > # end of Para > # end of CellContent > # end of Cell # end of Notes > # end of PgfFont > # end of Pgf > # end of Para > # end of CellContent > # end of Cell # end of Notes > # end of PgfFont > # end of Pgf > # end of Para > # end of CellContent > # end of Cell > # end of Row # end of Notes > # end of PgfFont > # end of Pgf > > # end of Para > # end of CellContent > # end of Cell # end of Notes > # end of PgfFont > # end of Pgf > > # end of Para > # end of CellContent > # end of Cell # end of Notes > # end of PgfFont > # end of Pgf > > # end of Para > # end of CellContent > # end of Cell > # end of Row # end of Notes > # end of PgfFont > # end of Pgf > > # end of Para > # end of CellContent > # end of Cell # end of Notes > # end of PgfFont > # end of Pgf > > # end of Para > # end of CellContent > # end of Cell # end of Notes > # end of PgfFont > # end of Pgf > > # end of Para > # end of CellContent > # end of Cell > # end of Row # end of Notes > # end of PgfFont > # end of Pgf > > # end of Para > # end of CellContent > # end of Cell # end of Notes > # end of PgfFont > # end of Pgf > > # end of Para > # end of CellContent > # end of Cell # end of Notes > # end of PgfFont > # end of Pgf > > # end of Para > # end of CellContent > # end of Cell > # end of Row # end of Notes > # end of PgfFont > # end of Pgf > > # end of Para > # end of CellContent > # end of Cell # end of Notes > # end of PgfFont > # end of Pgf > > # end of Para > # end of CellContent > # end of Cell # end of Notes > # end of PgfFont > # end of Pgf > > # end of Para > # end of CellContent > # end of Cell > # end of Row # end of Notes > # end of PgfFont > # end of Pgf > > # end of Para > # end of CellContent > # end of Cell # end of Notes > # end of PgfFont > # end of Pgf > > # end of Para > # end of CellContent > # end of Cell # end of Notes > # end of PgfFont > # end of Pgf > > # end of Para > # end of CellContent > # end of Cell > # end of Row # end of Notes > # end of PgfFont > # end of Pgf > > # end of Para > # end of CellContent > # end of Cell # end of Notes > # end of PgfFont > # end of Pgf > > # end of Para > # end of CellContent > # end of Cell # end of Notes > # end of PgfFont > # end of Pgf > > # end of Para > # end of CellContent > # end of Cell > # end of Row > # end of TblBody > # end of Tbl > # end of PgfFont > # end of Pgf > # end of TblColumnH > # end of PgfFont > # end of Pgf > # end of TblColumnBody > # end of PgfFont > # end of Pgf > # end of TblColumnF > # end of TblColumn > # end of PgfFont > # end of Pgf > # end of TblColumnH > # end of PgfFont > # end of Pgf > # end of TblColumnBody > # end of PgfFont > # end of Pgf > # end of TblColumnF > # end of TblColumn > # end of PgfFont > # end of Pgf > # end of TblColumnH > # end of PgfFont > # end of Pgf > # end of TblColumnBody > # end of PgfFont > # end of Pgf > # end of TblColumnF > # end of TblColumn > # end of PgfFont > # end of Pgf > # end of TblColumnH > # end of PgfFont > # end of Pgf > # end of TblColumnBody > # end of PgfFont > # end of Pgf > # end of TblColumnF > # end of TblColumn > # end of TblFormat # end of Notes > # end of PgfFont > # end of Pgf > > # end of Para > # end of CellContent > # end of Cell # end of Notes > # end of PgfFont > # end of Pgf > > # end of Para > # end of CellContent > # end of Cell # end of Notes > # end of PgfFont > # end of Pgf > > # end of Para > # end of CellContent > # end of Cell > # end of Row # end of Notes > # end of PgfFont > # end of Pgf > > # end of Para > # end of CellContent > # end of Cell # end of Notes > # end of PgfFont > # end of Pgf > > # end of Para > # end of CellContent > # end of Cell # end of Notes > # end of PgfFont > # end of Pgf > > # end of Para > # end of CellContent > # end of Cell > # end of Row # end of Notes > # end of PgfFont > # end of Pgf > > # end of Para > # end of CellContent > # end of Cell # end of Notes > # end of PgfFont > # end of Pgf > > # end of Para > # end of CellContent > # end of Cell # end of Notes > # end of PgfFont > # end of Pgf > > # end of Para > # end of CellContent > # end of Cell > # end of Row > # end of TblBody > # end of Tbl > # end of PgfFont > # end of Pgf > # end of TblColumnH > # end of PgfFont > # end of Pgf > # end of TblColumnBody > # end of PgfFont > # end of Pgf > # end of TblColumnF > # end of TblColumn > # end of PgfFont > # end of Pgf > # end of TblColumnH > # end of PgfFont > # end of Pgf > # end of TblColumnBody > # end of PgfFont > # end of Pgf > # end of TblColumnF > # end of TblColumn > # end of PgfFont > # end of Pgf > # end of TblColumnH > # end of PgfFont > # end of Pgf > # end of TblColumnBody > # end of PgfFont > # end of Pgf > # end of TblColumnF > # end of TblColumn > # end of PgfFont > # end of Pgf > # end of TblColumnH > # end of PgfFont > # end of Pgf > # end of TblColumnBody > # end of PgfFont > # end of Pgf > # end of TblColumnF > # end of TblColumn > # end of TblFormat # end of Notes > # end of PgfFont > # end of Pgf > > # end of Para > # end of CellContent > # end of Cell # end of Notes > # end of PgfFont > # end of Pgf > > # end of Para > # end of CellContent > # end of Cell # end of Notes > # end of PgfFont > # end of Pgf > > # end of Para > # end of CellContent > # end of Cell > # end of Row # end of Notes > # end of PgfFont > # end of Pgf > > # end of Para > # end of CellContent > # end of Cell # end of Notes > # end of PgfFont > # end of Pgf > > # end of Para > # end of CellContent > # end of Cell # end of Notes > # end of PgfFont > # end of Pgf > > # end of Para > # end of CellContent > # end of Cell > # end of Row # end of Notes > # end of PgfFont > # end of Pgf > > # end of Para > # end of CellContent > # end of Cell # end of Notes > # end of PgfFont > # end of Pgf > > # end of Para > # end of CellContent > # end of Cell # end of Notes > # end of PgfFont > # end of Pgf > > # end of Para > # end of CellContent > # end of Cell > # end of Row # end of Notes > # end of PgfFont > # end of Pgf > > # end of Para > # end of CellContent > # end of Cell # end of Notes > # end of PgfFont > # end of Pgf > > # end of Para > # end of CellContent > # end of Cell # end of Notes > # end of PgfFont > # end of Pgf > > # end of Para > # end of CellContent > # end of Cell > # end of Row # end of Notes > # end of PgfFont > # end of Pgf > > # end of Para > # end of CellContent > # end of Cell # end of Notes > # end of PgfFont > # end of Pgf > > # end of Para > # end of CellContent > # end of Cell # end of Notes > # end of PgfFont > # end of Pgf > > # end of Para > # end of CellContent > # end of Cell > # end of Row # end of Notes > # end of PgfFont > # end of Pgf > > # end of Para > # end of CellContent > # end of Cell # end of Notes > # end of PgfFont > # end of Pgf > > # end of Para > # end of CellContent > # end of Cell # end of Notes > # end of PgfFont > # end of Pgf > > # end of Para > # end of CellContent > # end of Cell > # end of Row # end of Notes > # end of PgfFont > # end of Pgf > > # end of Para > # end of CellContent > # end of Cell # end of Notes > # end of PgfFont > # end of Pgf > > # end of Para > # end of CellContent > # end of Cell # end of Notes > # end of PgfFont > # end of Pgf > > # end of Para > # end of CellContent > # end of Cell > # end of Row # end of Notes > # end of PgfFont > # end of Pgf > > # end of Para > # end of CellContent > # end of Cell # end of Notes > # end of PgfFont > # end of Pgf > > # end of Para > # end of CellContent > # end of Cell # end of Notes > # end of PgfFont > # end of Pgf > > # end of Para > # end of CellContent > # end of Cell > # end of Row # end of Notes > # end of PgfFont > # end of Pgf > > # end of Para > # end of CellContent > # end of Cell # end of Notes > # end of PgfFont > # end of Pgf > > # end of Para > # end of CellContent > # end of Cell # end of Notes > # end of PgfFont > # end of Pgf > > # end of Para > # end of CellContent > # end of Cell > # end of Row # end of Notes > # end of PgfFont > # end of Pgf > > # end of Para > # end of CellContent > # end of Cell # end of Notes > # end of PgfFont > # end of Pgf > > # end of Para > # end of CellContent > # end of Cell # end of Notes > # end of PgfFont > # end of Pgf > > # end of Para > # end of CellContent > # end of Cell > # end of Row > # end of TblBody > # end of Tbl > # end of PgfFont > # end of Pgf > # end of TblColumnH > # end of PgfFont > # end of Pgf > # end of TblColumnBody > # end of PgfFont > # end of Pgf > # end of TblColumnF > # end of TblColumn > # end of PgfFont > # end of Pgf > # end of TblColumnH > # end of PgfFont > # end of Pgf > # end of TblColumnBody > # end of PgfFont > # end of Pgf > # end of TblColumnF > # end of TblColumn > # end of PgfFont > # end of Pgf > # end of TblColumnH > # end of PgfFont > # end of Pgf > # end of TblColumnBody > # end of PgfFont > # end of Pgf > # end of TblColumnF > # end of TblColumn > # end of PgfFont > # end of Pgf > # end of TblColumnH > # end of PgfFont > # end of Pgf > # end of TblColumnBody > # end of PgfFont > # end of Pgf > # end of TblColumnF > # end of TblColumn > # end of TblFormat # end of Notes > # end of PgfFont > # end of Pgf > > # end of Para > # end of CellContent > # end of Cell # end of Notes > # end of PgfFont > # end of Pgf > > # end of Para > # end of CellContent > # end of Cell # end of Notes > # end of PgfFont > # end of Pgf > > # end of Para > # end of CellContent > # end of Cell > # end of Row # end of Notes > # end of PgfFont > # end of Pgf > > # end of Para > # end of CellContent > # end of Cell # end of Notes > # end of PgfFont > # end of Pgf > > # end of Para > # end of CellContent > # end of Cell # end of Notes > # end of PgfFont > # end of Pgf > > # end of Para > # end of CellContent > # end of Cell > # end of Row # end of Notes > # end of PgfFont > # end of Pgf > > # end of Para > # end of CellContent > # end of Cell # end of Notes > # end of PgfFont > # end of Pgf > > # end of Para > # end of CellContent > # end of Cell # end of Notes > # end of PgfFont > # end of Pgf > > # end of Para > # end of CellContent > # end of Cell > # end of Row # end of Notes > # end of PgfFont > # end of Pgf > > # end of Para > # end of CellContent > # end of Cell # end of Notes > # end of PgfFont > # end of Pgf > > # end of Para > # end of CellContent > # end of Cell # end of Notes > # end of PgfFont > # end of Pgf > > # end of Para > # end of CellContent > # end of Cell > # end of Row > # end of TblBody > # end of Tbl > # end of PgfFont > # end of Pgf > # end of TblColumnH > # end of PgfFont > # end of Pgf > # end of TblColumnBody > # end of PgfFont > # end of Pgf > # end of TblColumnF > # end of TblColumn > # end of PgfFont > # end of Pgf > # end of TblColumnH > # end of PgfFont > # end of Pgf > # end of TblColumnBody > # end of PgfFont > # end of Pgf > # end of TblColumnF > # end of TblColumn > # end of PgfFont > # end of Pgf > # end of TblColumnH > # end of PgfFont > # end of Pgf > # end of TblColumnBody > # end of PgfFont > # end of Pgf > # end of TblColumnF > # end of TblColumn > # end of PgfFont > # end of Pgf > # end of TblColumnH > # end of PgfFont > # end of Pgf > # end of TblColumnBody > # end of PgfFont > # end of Pgf > # end of TblColumnF > # end of TblColumn > # end of TblFormat # end of Notes > # end of PgfFont > # end of Pgf > > # end of Para > # end of CellContent > # end of Cell # end of Notes > # end of PgfFont > # end of Pgf > > # end of Para > # end of CellContent > # end of Cell # end of Notes > # end of PgfFont > # end of Pgf > > # end of Para > # end of CellContent > # end of Cell > # end of Row # end of Notes > # end of PgfFont > # end of Pgf > > # end of Para > # end of CellContent > # end of Cell # end of Notes > # end of PgfFont > # end of Pgf > > # end of Para > # end of CellContent > # end of Cell # end of Notes > # end of PgfFont > # end of Pgf > > # end of Para > # end of CellContent > # end of Cell > # end of Row # end of Notes > # end of PgfFont > # end of Pgf > > # end of Para > # end of CellContent > # end of Cell # end of Notes > # end of PgfFont > # end of Pgf > > # end of Para > # end of CellContent > # end of Cell # end of Notes > # end of PgfFont > # end of Pgf > > # end of Para > # end of CellContent > # end of Cell > # end of Row > # end of TblBody > # end of Tbl > # end of PgfFont > # end of Pgf > # end of TblColumnH > # end of PgfFont > # end of Pgf > # end of TblColumnBody > # end of PgfFont > # end of Pgf > # end of TblColumnF > # end of TblColumn > # end of PgfFont > # end of Pgf > # end of TblColumnH > # end of PgfFont > # end of Pgf > # end of TblColumnBody > # end of PgfFont > # end of Pgf > # end of TblColumnF > # end of TblColumn > # end of PgfFont > # end of Pgf > # end of TblColumnH > # end of PgfFont > # end of Pgf > # end of TblColumnBody > # end of PgfFont > # end of Pgf > # end of TblColumnF > # end of TblColumn > # end of PgfFont > # end of Pgf > # end of TblColumnH > # end of PgfFont > # end of Pgf > # end of TblColumnBody > # end of PgfFont > # end of Pgf > # end of TblColumnF > # end of TblColumn > # end of TblFormat # end of Notes > # end of PgfFont > # end of Pgf > > # end of Para > # end of CellContent > # end of Cell # end of Notes > # end of PgfFont > # end of Pgf > > # end of Para > # end of CellContent > # end of Cell # end of Notes > # end of PgfFont > # end of Pgf > > # end of Para > # end of CellContent > # end of Cell > # end of Row # end of Notes > # end of PgfFont > # end of Pgf > > # end of Para > # end of CellContent > # end of Cell # end of Notes > # end of PgfFont > # end of Pgf > # end of Para > # end of CellContent > # end of Cell # end of Notes > # end of PgfFont > # end of Pgf > > # end of Para > # end of CellContent > # end of Cell > # end of Row # end of Notes > # end of PgfFont > # end of Pgf > > # end of Para > # end of CellContent > # end of Cell # end of Notes > # end of PgfFont > # end of Pgf > > # end of Para > # end of CellContent > # end of Cell # end of Notes > # end of PgfFont > # end of Pgf > > # end of Para > # end of CellContent > # end of Cell > # end of Row # end of Notes > # end of PgfFont > # end of Pgf > > # end of Para > # end of CellContent > # end of Cell # end of Notes > # end of PgfFont > # end of Pgf > > # end of Para > # end of CellContent > # end of Cell # end of Notes > # end of PgfFont > # end of Pgf > > # end of Para > # end of CellContent > # end of Cell > # end of Row # end of Notes > # end of PgfFont > # end of Pgf > > # end of Para > # end of CellContent > # end of Cell # end of Notes > # end of PgfFont > # end of Pgf > > # end of Para > # end of CellContent > # end of Cell # end of Notes > # end of PgfFont > # end of Pgf > > # end of Para > # end of CellContent > # end of Cell > # end of Row # end of Notes > # end of PgfFont > # end of Pgf > > # end of Para > # end of CellContent > # end of Cell # end of Notes > # end of PgfFont > # end of Pgf > # end of Para > # end of CellContent > # end of Cell # end of Notes > # end of PgfFont > # end of Pgf > > # end of Para > # end of CellContent > # end of Cell > # end of Row > # end of TblBody > # end of Tbl > # end of PgfFont > # end of Pgf > # end of TblColumnH > # end of PgfFont > # end of Pgf > # end of TblColumnBody > # end of PgfFont > # end of Pgf > # end of TblColumnF > # end of TblColumn > # end of PgfFont > # end of Pgf > # end of TblColumnH > # end of PgfFont > # end of Pgf > # end of TblColumnBody > # end of PgfFont > # end of Pgf > # end of TblColumnF > # end of TblColumn > # end of PgfFont > # end of Pgf > # end of TblColumnH > # end of PgfFont > # end of Pgf > # end of TblColumnBody > # end of PgfFont > # end of Pgf > # end of TblColumnF > # end of TblColumn > # end of PgfFont > # end of Pgf > # end of TblColumnH > # end of PgfFont > # end of Pgf > # end of TblColumnBody > # end of PgfFont > # end of Pgf > # end of TblColumnF > # end of TblColumn > # end of TblFormat # end of Notes > # end of PgfFont > # end of Pgf > > # end of Para > # end of CellContent > # end of Cell # end of Notes > # end of PgfFont > # end of Pgf > > # end of Para > # end of CellContent > # end of Cell # end of Notes > # end of PgfFont > # end of Pgf > > # end of Para > # end of CellContent > # end of Cell > # end of Row # end of Notes > # end of PgfFont > # end of Pgf > > # end of Para > # end of CellContent > # end of Cell # end of Notes > # end of PgfFont > # end of Pgf > > # end of Para > # end of CellContent > # end of Cell # end of Notes > # end of PgfFont > # end of Pgf > > # end of Para > # end of CellContent > # end of Cell > # end of Row # end of Notes > # end of PgfFont > # end of Pgf > > # end of Para > # end of CellContent > # end of Cell # end of Notes > # end of PgfFont > # end of Pgf > > # end of Para > # end of CellContent > # end of Cell # end of Notes > # end of PgfFont > # end of Pgf > > # end of Para > # end of CellContent > # end of Cell > # end of Row # end of Notes > # end of PgfFont > # end of Pgf > > # end of Para > # end of CellContent > # end of Cell # end of Notes > # end of PgfFont > # end of Pgf > > # end of Para > # end of CellContent > # end of Cell # end of Notes > # end of PgfFont > # end of Pgf > > # end of Para > # end of CellContent > # end of Cell > # end of Row > # end of TblBody > # end of Tbl > # end of PgfFont > # end of Pgf > # end of TblColumnH > # end of PgfFont > # end of Pgf > # end of TblColumnBody > # end of PgfFont > # end of Pgf > # end of TblColumnF > # end of TblColumn > # end of PgfFont > # end of Pgf > # end of TblColumnH > # end of PgfFont > # end of Pgf > # end of TblColumnBody > # end of PgfFont > # end of Pgf > # end of TblColumnF > # end of TblColumn > # end of PgfFont > # end of Pgf > # end of TblColumnH > # end of PgfFont > # end of Pgf > # end of TblColumnBody > # end of PgfFont > # end of Pgf > # end of TblColumnF > # end of TblColumn > # end of PgfFont > # end of Pgf > # end of TblColumnH > # end of PgfFont > # end of Pgf > # end of TblColumnBody > # end of PgfFont > # end of Pgf > # end of TblColumnF > # end of TblColumn > # end of TblFormat # end of Notes > # end of PgfFont > # end of Pgf > > # end of Para > # end of CellContent > # end of Cell # end of Notes > # end of PgfFont > # end of Pgf > > # end of Para > # end of CellContent > # end of Cell # end of Notes > # end of PgfFont > # end of Pgf > > # end of Para > # end of CellContent > # end of Cell > # end of Row # end of Notes > # end of PgfFont > # end of Pgf > > # end of Para > # end of CellContent > # end of Cell # end of Notes > # end of PgfFont > # end of Pgf > > # end of Para > # end of CellContent > # end of Cell # end of Notes > # end of PgfFont > # end of Pgf > > # end of Para > # end of CellContent > # end of Cell > # end of Row # end of Notes > # end of PgfFont > # end of Pgf > > # end of Para > # end of CellContent > # end of Cell # end of Notes > # end of PgfFont > # end of Pgf > > # end of Para > # end of CellContent > # end of Cell # end of Notes > # end of PgfFont > # end of Pgf > > # end of Para > # end of CellContent > # end of Cell > # end of Row > # end of TblBody > # end of Tbl > # end of PgfFont > # end of Pgf > # end of TblColumnH > # end of PgfFont > # end of Pgf > # end of TblColumnBody > # end of PgfFont > # end of Pgf > # end of TblColumnF > # end of TblColumn > # end of PgfFont > # end of Pgf > # end of TblColumnH > # end of PgfFont > # end of Pgf > # end of TblColumnBody > # end of PgfFont > # end of Pgf > # end of TblColumnF > # end of TblColumn > # end of PgfFont > # end of Pgf > # end of TblColumnH > # end of PgfFont > # end of Pgf > # end of TblColumnBody > # end of PgfFont > # end of Pgf > # end of TblColumnF > # end of TblColumn > # end of PgfFont > # end of Pgf > # end of TblColumnH > # end of PgfFont > # end of Pgf > # end of TblColumnBody > # end of PgfFont > # end of Pgf > # end of TblColumnF > # end of TblColumn > # end of TblFormat # end of Notes > # end of PgfFont > # end of Pgf > > # end of Para > # end of CellContent > # end of Cell # end of Notes > # end of PgfFont > # end of Pgf > > # end of Para > # end of CellContent > # end of Cell # end of Notes > # end of PgfFont > # end of Pgf > > # end of Para > # end of CellContent > # end of Cell > # end of Row # end of Notes > # end of PgfFont > # end of Pgf > > # end of Para > # end of CellContent > # end of Cell # end of Notes > # end of PgfFont > # end of Pgf > # end of Para > # end of CellContent > # end of Cell # end of Notes > # end of PgfFont > # end of Pgf > > # end of Para > # end of CellContent > # end of Cell > # end of Row # end of Notes > # end of PgfFont > # end of Pgf > > # end of Para > # end of CellContent > # end of Cell # end of Notes > # end of PgfFont > # end of Pgf > > # end of Para > # end of CellContent > # end of Cell # end of Notes > # end of PgfFont > # end of Pgf > > # end of Para > # end of CellContent > # end of Cell > # end of Row # end of Notes > # end of PgfFont > # end of Pgf > > # end of Para > # end of CellContent > # end of Cell # end of Notes > # end of PgfFont > # end of Pgf > > # end of Para > # end of CellContent > # end of Cell # end of Notes > # end of PgfFont > # end of Pgf > > # end of Para > # end of CellContent > # end of Cell > # end of Row # end of Notes > # end of PgfFont > # end of Pgf > > # end of Para > # end of CellContent > # end of Cell # end of Notes > # end of PgfFont > # end of Pgf > > # end of Para > # end of CellContent > # end of Cell # end of Notes > # end of PgfFont > # end of Pgf > > # end of Para > # end of CellContent > # end of Cell > # end of Row # end of Notes > # end of PgfFont > # end of Pgf > > # end of Para > # end of CellContent > # end of Cell # end of Notes > # end of PgfFont > # end of Pgf > # end of Para > # end of CellContent > # end of Cell # end of Notes > # end of PgfFont > # end of Pgf > > # end of Para > # end of CellContent > # end of Cell > # end of Row > # end of TblBody > # end of Tbl > # end of PgfFont > # end of Pgf > # end of TblColumnH > # end of PgfFont > # end of Pgf > # end of TblColumnBody > # end of PgfFont > # end of Pgf > # end of TblColumnF > # end of TblColumn > # end of PgfFont > # end of Pgf > # end of TblColumnH > # end of PgfFont > # end of Pgf > # end of TblColumnBody > # end of PgfFont > # end of Pgf > # end of TblColumnF > # end of TblColumn > # end of PgfFont > # end of Pgf > # end of TblColumnH > # end of PgfFont > # end of Pgf > # end of TblColumnBody > # end of PgfFont > # end of Pgf > # end of TblColumnF > # end of TblColumn > # end of PgfFont > # end of Pgf > # end of TblColumnH > # end of PgfFont > # end of Pgf > # end of TblColumnBody > # end of PgfFont > # end of Pgf > # end of TblColumnF > # end of TblColumn > # end of TblFormat # end of Notes > # end of PgfFont > # end of Pgf > > # end of Para > # end of CellContent > # end of Cell # end of Notes > # end of PgfFont > # end of Pgf > > # end of Para > # end of CellContent > # end of Cell # end of Notes > # end of PgfFont > # end of Pgf > > # end of Para > # end of CellContent > # end of Cell > # end of Row # end of Notes > # end of PgfFont > # end of Pgf > > # end of Para > # end of CellContent > # end of Cell # end of Notes > # end of PgfFont > # end of Pgf > > # end of Para > # end of CellContent > # end of Cell # end of Notes > # end of PgfFont > # end of Pgf > > # end of Para > # end of CellContent > # end of Cell > # end of Row # end of Notes > # end of PgfFont > # end of Pgf > > # end of Para > # end of CellContent > # end of Cell # end of Notes > # end of PgfFont > # end of Pgf > > # end of Para > # end of CellContent > # end of Cell # end of Notes > # end of PgfFont > # end of Pgf > > # end of Para > # end of CellContent > # end of Cell > # end of Row # end of Notes > # end of PgfFont > # end of Pgf > > # end of Para > # end of CellContent > # end of Cell # end of Notes > # end of PgfFont > # end of Pgf > > # end of Para > # end of CellContent > # end of Cell # end of Notes > # end of PgfFont > # end of Pgf > > # end of Para > # end of CellContent > # end of Cell > # end of Row # end of Notes > # end of PgfFont > # end of Pgf > > # end of Para > # end of CellContent > # end of Cell # end of Notes > # end of PgfFont > # end of Pgf > # end of Para > # end of CellContent > # end of Cell # end of Notes > # end of PgfFont > # end of Pgf > > # end of Para > # end of CellContent > # end of Cell > # end of Row > # end of TblBody > # end of Tbl > # end of PgfFont > # end of Pgf > # end of TblColumnH > # end of PgfFont > # end of Pgf > # end of TblColumnBody > # end of PgfFont > # end of Pgf > # end of TblColumnF > # end of TblColumn > # end of PgfFont > # end of Pgf > # end of TblColumnH > # end of PgfFont > # end of Pgf > # end of TblColumnBody > # end of PgfFont > # end of Pgf > # end of TblColumnF > # end of TblColumn > # end of PgfFont > # end of Pgf > # end of TblColumnH > # end of PgfFont > # end of Pgf > # end of TblColumnBody > # end of PgfFont > # end of Pgf > # end of TblColumnF > # end of TblColumn > # end of PgfFont > # end of Pgf > # end of TblColumnH > # end of PgfFont > # end of Pgf > # end of TblColumnBody > # end of PgfFont > # end of Pgf > # end of TblColumnF > # end of TblColumn > # end of TblFormat # end of Notes > # end of PgfFont > # end of Pgf > > # end of Para > # end of CellContent > # end of Cell # end of Notes > # end of PgfFont > # end of Pgf > > # end of Para > # end of CellContent > # end of Cell # end of Notes > # end of PgfFont > # end of Pgf > > # end of Para > # end of CellContent > # end of Cell > # end of Row # end of Notes > # end of PgfFont > # end of Pgf > > # end of Para > # end of CellContent > # end of Cell # end of Notes > # end of PgfFont > # end of Pgf > > # end of Para > # end of CellContent > # end of Cell # end of Notes > # end of PgfFont > # end of Pgf > > # end of Para > # end of CellContent > # end of Cell > # end of Row # end of Notes > # end of PgfFont > # end of Pgf > > # end of Para > # end of CellContent > # end of Cell # end of Notes > # end of PgfFont > # end of Pgf > > # end of Para > # end of CellContent > # end of Cell # end of Notes > # end of PgfFont > # end of Pgf > > # end of Para > # end of CellContent > # end of Cell > # end of Row # end of Notes > # end of PgfFont > # end of Pgf > > # end of Para > # end of CellContent > # end of Cell # end of Notes > # end of PgfFont > # end of Pgf > > # end of Para > # end of CellContent > # end of Cell # end of Notes > # end of PgfFont > # end of Pgf > > # end of Para > # end of CellContent > # end of Cell > # end of Row # end of Notes > # end of PgfFont > # end of Pgf > > # end of Para > # end of CellContent > # end of Cell # end of Notes > # end of PgfFont > # end of Pgf > # end of Para > # end of CellContent > # end of Cell # end of Notes > # end of PgfFont > # end of Pgf > > # end of Para > # end of CellContent > # end of Cell > # end of Row > # end of TblBody > # end of Tbl > # end of PgfFont > # end of Pgf > # end of TblColumnH > # end of PgfFont > # end of Pgf > # end of TblColumnBody > # end of PgfFont > # end of Pgf > # end of TblColumnF > # end of TblColumn > # end of PgfFont > # end of Pgf > # end of TblColumnH > # end of PgfFont > # end of Pgf > # end of TblColumnBody > # end of PgfFont > # end of Pgf > # end of TblColumnF > # end of TblColumn > # end of PgfFont > # end of Pgf > # end of TblColumnH > # end of PgfFont > # end of Pgf > # end of TblColumnBody > # end of PgfFont > # end of Pgf > # end of TblColumnF > # end of TblColumn > # end of PgfFont > # end of Pgf > # end of TblColumnH > # end of PgfFont > # end of Pgf > # end of TblColumnBody > # end of PgfFont > # end of Pgf > # end of TblColumnF > # end of TblColumn > # end of TblFormat # end of Notes > # end of PgfFont > # end of Pgf > > # end of Para > # end of CellContent > # end of Cell # end of Notes > # end of PgfFont > # end of Pgf > > # end of Para > # end of CellContent > # end of Cell # end of Notes > # end of PgfFont > # end of Pgf > > # end of Para > # end of CellContent > # end of Cell > # end of Row # end of Notes > # end of PgfFont > # end of Pgf > > # end of Para > # end of CellContent > # end of Cell # end of Notes > # end of PgfFont > # end of Pgf > > # end of Para > # end of CellContent > # end of Cell # end of Notes > # end of PgfFont > # end of Pgf > > # end of Para > # end of CellContent > # end of Cell > # end of Row # end of Notes > # end of PgfFont > # end of Pgf > > # end of Para > # end of CellContent > # end of Cell # end of Notes > # end of PgfFont > # end of Pgf > > # end of Para > # end of CellContent > # end of Cell # end of Notes > # end of PgfFont > # end of Pgf > > # end of Para > # end of CellContent > # end of Cell > # end of Row # end of Notes > # end of PgfFont > # end of Pgf > > # end of Para > # end of CellContent > # end of Cell # end of Notes > # end of PgfFont > # end of Pgf > > # end of Para > # end of CellContent > # end of Cell # end of Notes > # end of PgfFont > # end of Pgf > > # end of Para > # end of CellContent > # end of Cell > # end of Row # end of Notes > # end of PgfFont > # end of Pgf > > # end of Para > # end of CellContent > # end of Cell # end of Notes > # end of PgfFont > # end of Pgf > # end of Para > # end of CellContent > # end of Cell # end of Notes > # end of PgfFont > # end of Pgf > > # end of Para > # end of CellContent > # end of Cell > # end of Row > # end of TblBody > # end of Tbl > # end of PgfFont > # end of Pgf > # end of TblColumnH > # end of PgfFont > # end of Pgf > # end of TblColumnBody > # end of PgfFont > # end of Pgf > # end of TblColumnF > # end of TblColumn > # end of PgfFont > # end of Pgf > # end of TblColumnH > # end of PgfFont > # end of Pgf > # end of TblColumnBody > # end of PgfFont > # end of Pgf > # end of TblColumnF > # end of TblColumn > # end of PgfFont > # end of Pgf > # end of TblColumnH > # end of PgfFont > # end of Pgf > # end of TblColumnBody > # end of PgfFont > # end of Pgf > # end of TblColumnF > # end of TblColumn > # end of PgfFont > # end of Pgf > # end of TblColumnH > # end of PgfFont > # end of Pgf > # end of TblColumnBody > # end of PgfFont > # end of Pgf > # end of TblColumnF > # end of TblColumn > # end of TblFormat # end of Notes > # end of PgfFont > # end of Pgf > > # end of Para > # end of CellContent > # end of Cell # end of Notes > # end of PgfFont > # end of Pgf > > # end of Para > # end of CellContent > # end of Cell # end of Notes > # end of PgfFont > # end of Pgf > > # end of Para > # end of CellContent > # end of Cell > # end of Row # end of Notes > # end of PgfFont > # end of Pgf > > # end of Para > # end of CellContent > # end of Cell # end of Notes > # end of PgfFont > # end of Pgf > > # end of Para > # end of CellContent > # end of Cell # end of Notes > # end of PgfFont > # end of Pgf > > # end of Para > # end of CellContent > # end of Cell > # end of Row # end of Notes > # end of PgfFont > # end of Pgf > > # end of Para > # end of CellContent > # end of Cell # end of Notes > # end of PgfFont > # end of Pgf > > # end of Para > # end of CellContent > # end of Cell # end of Notes > # end of PgfFont > # end of Pgf > > # end of Para > # end of CellContent > # end of Cell > # end of Row # end of Notes > # end of PgfFont > # end of Pgf > > # end of Para > # end of CellContent > # end of Cell # end of Notes > # end of PgfFont > # end of Pgf > > # end of Para > # end of CellContent > # end of Cell # end of Notes > # end of PgfFont > # end of Pgf > > # end of Para > # end of CellContent > # end of Cell > # end of Row # end of Notes > # end of PgfFont > # end of Pgf > > # end of Para > # end of CellContent > # end of Cell # end of Notes > # end of PgfFont > # end of Pgf > # end of Para > # end of CellContent > # end of Cell # end of Notes > # end of PgfFont > # end of Pgf > > # end of Para > # end of CellContent > # end of Cell > # end of Row > # end of TblBody > # end of Tbl > # end of PgfFont > # end of Pgf > # end of TblColumnH > # end of PgfFont > # end of Pgf > # end of TblColumnBody > # end of PgfFont > # end of Pgf > # end of TblColumnF > # end of TblColumn > # end of PgfFont > # end of Pgf > # end of TblColumnH > # end of PgfFont > # end of Pgf > # end of TblColumnBody > # end of PgfFont > # end of Pgf > # end of TblColumnF > # end of TblColumn > # end of PgfFont > # end of Pgf > # end of TblColumnH > # end of PgfFont > # end of Pgf > # end of TblColumnBody > # end of PgfFont > # end of Pgf > # end of TblColumnF > # end of TblColumn > # end of PgfFont > # end of Pgf > # end of TblColumnH > # end of PgfFont > # end of Pgf > # end of TblColumnBody > # end of PgfFont > # end of Pgf > # end of TblColumnF > # end of TblColumn > # end of TblFormat # end of Notes > # end of PgfFont > # end of Pgf > > # end of Para > # end of CellContent > # end of Cell # end of Notes > # end of PgfFont > # end of Pgf > > # end of Para > # end of CellContent > # end of Cell # end of Notes > # end of PgfFont > # end of Pgf > > # end of Para > # end of CellContent > # end of Cell > # end of Row # end of Notes > # end of PgfFont > # end of Pgf > > # end of Para > # end of CellContent > # end of Cell # end of Notes > # end of PgfFont > # end of Pgf > > # end of Para > # end of CellContent > # end of Cell # end of Notes > # end of PgfFont > # end of Pgf > > # end of Para > # end of CellContent > # end of Cell > # end of Row # end of Notes > # end of PgfFont > # end of Pgf > > # end of Para > # end of CellContent > # end of Cell # end of Notes > # end of PgfFont > # end of Pgf > > # end of Para > # end of CellContent > # end of Cell # end of Notes > # end of PgfFont > # end of Pgf > > # end of Para > # end of CellContent > # end of Cell > # end of Row # end of Notes > # end of PgfFont > # end of Pgf > > # end of Para > # end of CellContent > # end of Cell # end of Notes > # end of PgfFont > # end of Pgf > > # end of Para > # end of CellContent > # end of Cell # end of Notes > # end of PgfFont > # end of Pgf > > # end of Para > # end of CellContent > # end of Cell > # end of Row # end of Notes > # end of PgfFont > # end of Pgf > > # end of Para > # end of CellContent > # end of Cell # end of Notes > # end of PgfFont > # end of Pgf > > # end of Para > # end of CellContent > # end of Cell # end of Notes > # end of PgfFont > # end of Pgf > > # end of Para > # end of CellContent > # end of Cell > # end of Row # end of Notes > # end of PgfFont > # end of Pgf > > # end of Para > # end of CellContent > # end of Cell # end of Notes > # end of PgfFont > # end of Pgf > > # end of Para > # end of CellContent > # end of Cell # end of Notes > # end of PgfFont > # end of Pgf > > # end of Para > # end of CellContent > # end of Cell > # end of Row # end of Notes > # end of PgfFont > # end of Pgf > > # end of Para > # end of CellContent > # end of Cell # end of Notes > # end of PgfFont > # end of Pgf > > # end of Para > # end of CellContent > # end of Cell # end of Notes > # end of PgfFont > # end of Pgf > > # end of Para > # end of CellContent > # end of Cell > # end of Row # end of Notes > # end of PgfFont > # end of Pgf > > # end of Para > # end of CellContent > # end of Cell # end of Notes > # end of PgfFont > # end of Pgf > > # end of Para > # end of CellContent > # end of Cell # end of Notes > # end of PgfFont > # end of Pgf > > # end of Para > # end of CellContent > # end of Cell > # end of Row # end of Notes > # end of PgfFont > # end of Pgf > > # end of Para > # end of CellContent > # end of Cell # end of Notes > # end of PgfFont > # end of Pgf > > # end of Para > # end of CellContent > # end of Cell # end of Notes > # end of PgfFont > # end of Pgf > > # end of Para > # end of CellContent > # end of Cell > # end of Row # end of Notes > # end of PgfFont > # end of Pgf > > # end of Para > # end of CellContent > # end of Cell # end of Notes > # end of PgfFont > # end of Pgf > > # end of Para > # end of CellContent > # end of Cell # end of Notes > # end of PgfFont > # end of Pgf > > # end of Para > # end of CellContent > # end of Cell > # end of Row # end of Notes > # end of PgfFont > # end of Pgf > > # end of Para > # end of CellContent > # end of Cell # end of Notes > # end of PgfFont > # end of Pgf > > # end of Para > # end of CellContent > # end of Cell # end of Notes > # end of PgfFont > # end of Pgf > > # end of Para > # end of CellContent > # end of Cell > # end of Row # end of Notes > # end of PgfFont > # end of Pgf > > # end of Para > # end of CellContent > # end of Cell # end of Notes > # end of PgfFont > # end of Pgf > > # end of Para > # end of CellContent > # end of Cell # end of Notes > # end of PgfFont > # end of Pgf > > # end of Para > # end of CellContent > # end of Cell > # end of Row # end of Notes > # end of PgfFont > # end of Pgf > > # end of Para > # end of CellContent > # end of Cell # end of Notes > # end of PgfFont > # end of Pgf > > # end of Para > # end of CellContent > # end of Cell # end of Notes > # end of PgfFont > # end of Pgf > > # end of Para > # end of CellContent > # end of Cell > # end of Row > # end of TblBody > # end of Tbl > # end of PgfFont > # end of Pgf > # end of TblColumnH > # end of PgfFont > # end of Pgf > # end of TblColumnBody > # end of PgfFont > # end of Pgf > # end of TblColumnF > # end of TblColumn > # end of PgfFont > # end of Pgf > # end of TblColumnH > # end of PgfFont > # end of Pgf > # end of TblColumnBody > # end of PgfFont > # end of Pgf > # end of TblColumnF > # end of TblColumn > # end of PgfFont > # end of Pgf > # end of TblColumnH > # end of PgfFont > # end of Pgf > # end of TblColumnBody > # end of PgfFont > # end of Pgf > # end of TblColumnF > # end of TblColumn > # end of PgfFont > # end of Pgf > # end of TblColumnH > # end of PgfFont > # end of Pgf > # end of TblColumnBody > # end of PgfFont > # end of Pgf > # end of TblColumnF > # end of TblColumn > # end of TblFormat # end of Notes > # end of PgfFont > # end of Pgf > > # end of Para > # end of CellContent > # end of Cell # end of Notes > # end of PgfFont > # end of Pgf > > # end of Para > # end of CellContent > # end of Cell # end of Notes > # end of PgfFont > # end of Pgf > > # end of Para > # end of CellContent > # end of Cell > # end of Row # end of Notes > # end of PgfFont > # end of Pgf > > # end of Para > # end of CellContent > # end of Cell # end of Notes > # end of PgfFont > # end of Pgf > > # end of Para > # end of CellContent > # end of Cell # end of Notes > # end of PgfFont > # end of Pgf > > # end of Para > # end of CellContent > # end of Cell > # end of Row # end of Notes > # end of PgfFont > # end of Pgf > > # end of Para > # end of CellContent > # end of Cell # end of Notes > # end of PgfFont > # end of Pgf > > # end of Para > # end of CellContent > # end of Cell # end of Notes > # end of PgfFont > # end of Pgf > > # end of Para > # end of CellContent > # end of Cell > # end of Row # end of Notes > # end of PgfFont > # end of Pgf > > # end of Para > # end of CellContent > # end of Cell # end of Notes > # end of PgfFont > # end of Pgf > > # end of Para > # end of CellContent > # end of Cell # end of Notes > # end of PgfFont > # end of Pgf > > # end of Para > # end of CellContent > # end of Cell > # end of Row # end of Notes > # end of PgfFont > # end of Pgf > > # end of Para > # end of CellContent > # end of Cell # end of Notes > # end of PgfFont > # end of Pgf > > # end of Para > # end of CellContent > # end of Cell # end of Notes > # end of PgfFont > # end of Pgf > > # end of Para > # end of CellContent > # end of Cell > # end of Row > # end of TblBody > # end of Tbl # end of Notes > # end of PgfFont > # end of Pgf > > # end of Para > # end of CellContent > # end of Cell # end of Notes > # end of PgfFont > # end of Pgf > > # end of Para > # end of CellContent > # end of Cell # end of Notes > # end of PgfFont > # end of Pgf > > # end of Para > # end of CellContent > # end of Cell > # end of Row # end of Notes > # end of PgfFont > # end of Pgf > > # end of Para > # end of CellContent > # end of Cell # end of Notes > # end of PgfFont > # end of Pgf > # end of Para > # end of CellContent > # end of Cell # end of Notes > # end of PgfFont > # end of Pgf > > # end of Para > # end of CellContent > # end of Cell > # end of Row # end of Notes > # end of PgfFont > # end of Pgf > > # end of Para > # end of CellContent > # end of Cell # end of Notes > # end of PgfFont > # end of Pgf > > # end of Para > # end of CellContent > # end of Cell # end of Notes > # end of PgfFont > # end of Pgf > > # end of Para > # end of CellContent > # end of Cell > # end of Row # end of Notes > # end of PgfFont > # end of Pgf > > # end of Para > # end of CellContent > # end of Cell # end of Notes > # end of PgfFont > # end of Pgf > > # end of Para > # end of CellContent > # end of Cell # end of Notes > # end of PgfFont > # end of Pgf > > # end of Para > # end of CellContent > # end of Cell > # end of Row # end of Notes > # end of PgfFont > # end of Pgf > > # end of Para > # end of CellContent > # end of Cell # end of Notes > # end of PgfFont > # end of Pgf > > > # end of Para > # end of CellContent > # end of Cell # end of Notes > # end of PgfFont > # end of Pgf > > # end of Para > # end of CellContent > # end of Cell > # end of Row # end of Notes > # end of PgfFont > # end of Pgf > > # end of Para > # end of CellContent > # end of Cell # end of Notes > # end of PgfFont > # end of Pgf > > # end of Para > # end of CellContent > # end of Cell # end of Notes > # end of PgfFont > # end of Pgf > > # end of Para > # end of CellContent > # end of Cell > # end of Row # end of Notes > # end of PgfFont > # end of Pgf > > # end of Para > # end of CellContent > # end of Cell # end of Notes > # end of PgfFont > # end of Pgf > > # end of Para > # end of CellContent > # end of Cell # end of Notes > # end of PgfFont > # end of Pgf > > # end of Para > # end of CellContent > # end of Cell > # end of Row # end of Notes > # end of PgfFont > # end of Pgf > > # end of Para > # end of CellContent > # end of Cell # end of Notes > # end of PgfFont > # end of Pgf > # end of Para > # end of CellContent > # end of Cell # end of Notes > # end of PgfFont > # end of Pgf > > # end of Para > # end of CellContent > # end of Cell > # end of Row # end of Notes > # end of PgfFont > # end of Pgf > > # end of Para > # end of CellContent > # end of Cell # end of Notes > # end of PgfFont > # end of Pgf > > # end of Para > # end of CellContent > # end of Cell # end of Notes > # end of PgfFont > # end of Pgf > > # end of Para > # end of CellContent > # end of Cell > # end of Row # end of Notes > # end of PgfFont > # end of Pgf > > # end of Para > # end of CellContent > # end of Cell # end of Notes > # end of PgfFont > # end of Pgf > > # end of Para > # end of CellContent > # end of Cell # end of Notes > # end of PgfFont > # end of Pgf > > # end of Para > # end of CellContent > # end of Cell > # end of Row > # end of TblBody > # end of Tbl > # end of PgfFont > # end of Pgf > # end of TblColumnH > # end of PgfFont > # end of Pgf > # end of TblColumnBody > # end of PgfFont > # end of Pgf > # end of TblColumnF > # end of TblColumn > # end of PgfFont > # end of Pgf > # end of TblColumnH > # end of PgfFont > # end of Pgf > # end of TblColumnBody > # end of PgfFont > # end of Pgf > # end of TblColumnF > # end of TblColumn > # end of PgfFont > # end of Pgf > # end of TblColumnH > # end of PgfFont > # end of Pgf > # end of TblColumnBody > # end of PgfFont > # end of Pgf > # end of TblColumnF > # end of TblColumn > # end of PgfFont > # end of Pgf > # end of TblColumnH > # end of PgfFont > # end of Pgf > # end of TblColumnBody > # end of PgfFont > # end of Pgf > # end of TblColumnF > # end of TblColumn > # end of TblFormat # end of Notes > # end of PgfFont > # end of Pgf > > # end of Para > # end of CellContent > # end of Cell # end of Notes > # end of PgfFont > # end of Pgf > > # end of Para > # end of CellContent > # end of Cell # end of Notes > # end of PgfFont > # end of Pgf > > # end of Para > # end of CellContent > # end of Cell > # end of Row # end of Notes > # end of PgfFont > # end of Pgf > > # end of Para > # end of CellContent > # end of Cell # end of Notes > # end of PgfFont > # end of Pgf > > # end of Para > # end of CellContent > # end of Cell # end of Notes > # end of PgfFont > # end of Pgf > > # end of Para > # end of CellContent > # end of Cell > # end of Row # end of Notes > # end of PgfFont > # end of Pgf > > # end of Para > # end of CellContent > # end of Cell # end of Notes > # end of PgfFont > # end of Pgf > > # end of Para > # end of CellContent > # end of Cell # end of Notes > # end of PgfFont > # end of Pgf > > # end of Para > # end of CellContent > # end of Cell > # end of Row # end of Notes > # end of PgfFont > # end of Pgf > > # end of Para > # end of CellContent > # end of Cell # end of Notes > # end of PgfFont > # end of Pgf > > # end of Para > # end of CellContent > # end of Cell # end of Notes > # end of PgfFont > # end of Pgf > > # end of Para > # end of CellContent > # end of Cell > # end of Row > # end of TblBody > # end of Tbl > # end of PgfFont > # end of Pgf > # end of TblColumnH > # end of PgfFont > # end of Pgf > # end of TblColumnBody > # end of PgfFont > # end of Pgf > # end of TblColumnF > # end of TblColumn > # end of PgfFont > # end of Pgf > # end of TblColumnH > # end of PgfFont > # end of Pgf > # end of TblColumnBody > # end of PgfFont > # end of Pgf > # end of TblColumnF > # end of TblColumn > # end of PgfFont > # end of Pgf > # end of TblColumnH > # end of PgfFont > # end of Pgf > # end of TblColumnBody > # end of PgfFont > # end of Pgf > # end of TblColumnF > # end of TblColumn > # end of PgfFont > # end of Pgf > # end of TblColumnH > # end of PgfFont > # end of Pgf > # end of TblColumnBody > # end of PgfFont > # end of Pgf > # end of TblColumnF > # end of TblColumn > # end of TblFormat # end of Notes > # end of PgfFont > # end of Pgf > > # end of Para > # end of CellContent > # end of Cell # end of Notes > # end of PgfFont > # end of Pgf > > # end of Para > # end of CellContent > # end of Cell # end of Notes > # end of PgfFont > # end of Pgf > > # end of Para > # end of CellContent > # end of Cell > # end of Row # end of Notes > # end of PgfFont > # end of Pgf > > # end of Para > # end of CellContent > # end of Cell # end of Notes > # end of PgfFont > # end of Pgf > > # end of Para > # end of CellContent > # end of Cell # end of Notes > # end of PgfFont > # end of Pgf > > # end of Para > # end of CellContent > # end of Cell > # end of Row # end of Notes > # end of PgfFont > # end of Pgf > > # end of Para > # end of CellContent > # end of Cell # end of Notes > # end of PgfFont > # end of Pgf > > # end of Para > # end of CellContent > # end of Cell # end of Notes > # end of PgfFont > # end of Pgf > > # end of Para > # end of CellContent > # end of Cell > # end of Row # end of Notes > # end of PgfFont > # end of Pgf > > # end of Para > # end of CellContent > # end of Cell # end of Notes > # end of PgfFont > # end of Pgf > > # end of Para > # end of CellContent > # end of Cell # end of Notes > # end of PgfFont > # end of Pgf > > # end of Para > # end of CellContent > # end of Cell > # end of Row # end of Notes > # end of PgfFont > # end of Pgf > > # end of Para > # end of CellContent > # end of Cell # end of Notes > # end of PgfFont > # end of Pgf > # end of Para > # end of CellContent > # end of Cell # end of Notes > # end of PgfFont > # end of Pgf > > # end of Para > # end of CellContent > # end of Cell > # end of Row > # end of TblBody > # end of Tbl > # end of PgfFont > # end of Pgf > # end of TblColumnH > # end of PgfFont > # end of Pgf > # end of TblColumnBody > # end of PgfFont > # end of Pgf > # end of TblColumnF > # end of TblColumn > # end of PgfFont > # end of Pgf > # end of TblColumnH > # end of PgfFont > # end of Pgf > # end of TblColumnBody > # end of PgfFont > # end of Pgf > # end of TblColumnF > # end of TblColumn > # end of PgfFont > # end of Pgf > # end of TblColumnH > # end of PgfFont > # end of Pgf > # end of TblColumnBody > # end of PgfFont > # end of Pgf > # end of TblColumnF > # end of TblColumn > # end of PgfFont > # end of Pgf > # end of TblColumnH > # end of PgfFont > # end of Pgf > # end of TblColumnBody > # end of PgfFont > # end of Pgf > # end of TblColumnF > # end of TblColumn > # end of TblFormat # end of Notes > # end of PgfFont > # end of Pgf > > # end of Para > # end of CellContent > # end of Cell # end of Notes > # end of PgfFont > # end of Pgf > > # end of Para > # end of CellContent > # end of Cell # end of Notes > # end of PgfFont > # end of Pgf > > # end of Para > # end of CellContent > # end of Cell > # end of Row # end of Notes > # end of PgfFont > # end of Pgf > > # end of Para > # end of CellContent > # end of Cell # end of Notes > # end of PgfFont > # end of Pgf > > # end of Para > # end of CellContent > # end of Cell # end of Notes > # end of PgfFont > # end of Pgf > > # end of Para > # end of CellContent > # end of Cell > # end of Row # end of Notes > # end of PgfFont > # end of Pgf > > # end of Para > # end of CellContent > # end of Cell # end of Notes > # end of PgfFont > # end of Pgf > > # end of Para > # end of CellContent > # end of Cell # end of Notes > # end of PgfFont > # end of Pgf > > # end of Para > # end of CellContent > # end of Cell > # end of Row # end of Notes > # end of PgfFont > # end of Pgf > > # end of Para > # end of CellContent > # end of Cell # end of Notes > # end of PgfFont > # end of Pgf > > # end of Para > # end of CellContent > # end of Cell # end of Notes > # end of PgfFont > # end of Pgf > > # end of Para > # end of CellContent > # end of Cell > # end of Row # end of Notes > # end of PgfFont > # end of Pgf > > # end of Para > # end of CellContent > # end of Cell # end of Notes > # end of PgfFont > # end of Pgf > > # end of Para > # end of CellContent > # end of Cell # end of Notes > # end of PgfFont > # end of Pgf > > # end of Para > # end of CellContent > # end of Cell > # end of Row # end of Notes > # end of PgfFont > # end of Pgf > # end of Para > # end of CellContent > # end of Cell # end of Notes > # end of PgfFont > # end of Pgf > > # end of Para > # end of CellContent > # end of Cell # end of Notes > # end of PgfFont > # end of Pgf > > # end of Para > # end of CellContent > # end of Cell > # end of Row # end of Notes > # end of PgfFont > # end of Pgf > # end of Para > # end of CellContent > # end of Cell # end of Notes > # end of PgfFont > # end of Pgf > > # end of Para > # end of CellContent > # end of Cell # end of Notes > # end of PgfFont > # end of Pgf > > # end of Para > # end of CellContent > # end of Cell > # end of Row # end of Notes > # end of PgfFont > # end of Pgf > # end of Para > # end of CellContent > # end of Cell # end of Notes > # end of PgfFont > # end of Pgf > > # end of Para > # end of CellContent > # end of Cell # end of Notes > # end of PgfFont > # end of Pgf > > # end of Para > # end of CellContent > # end of Cell > # end of Row > # end of TblBody > # end of Tbl > # end of PgfFont > # end of Pgf > # end of TblColumnH > # end of PgfFont > # end of Pgf > # end of TblColumnBody > # end of PgfFont > # end of Pgf > # end of TblColumnF > # end of TblColumn > # end of PgfFont > # end of Pgf > # end of TblColumnH > # end of PgfFont > # end of Pgf > # end of TblColumnBody > # end of PgfFont > # end of Pgf > # end of TblColumnF > # end of TblColumn > # end of PgfFont > # end of Pgf > # end of TblColumnH > # end of PgfFont > # end of Pgf > # end of TblColumnBody > # end of PgfFont > # end of Pgf > # end of TblColumnF > # end of TblColumn > # end of PgfFont > # end of Pgf > # end of TblColumnH > # end of PgfFont > # end of Pgf > # end of TblColumnBody > # end of PgfFont > # end of Pgf > # end of TblColumnF > # end of TblColumn > # end of TblFormat # end of Notes > # end of PgfFont > # end of Pgf > > # end of Para > # end of CellContent > # end of Cell # end of Notes > # end of PgfFont > # end of Pgf > > # end of Para > # end of CellContent > # end of Cell # end of Notes > # end of PgfFont > # end of Pgf > > # end of Para > # end of CellContent > # end of Cell > # end of Row # end of Notes > # end of PgfFont > # end of Pgf > > # end of Para > # end of CellContent > # end of Cell # end of Notes > # end of PgfFont > # end of Pgf > > # end of Para > # end of CellContent > # end of Cell # end of Notes > # end of PgfFont > # end of Pgf > > # end of Para > # end of CellContent > # end of Cell > # end of Row # end of Notes > # end of PgfFont > # end of Pgf > > # end of Para > # end of CellContent > # end of Cell # end of Notes > # end of PgfFont > # end of Pgf > > # end of Para > # end of CellContent > # end of Cell # end of Notes > # end of PgfFont > # end of Pgf > > # end of Para > # end of CellContent > # end of Cell > # end of Row # end of Notes > # end of PgfFont > # end of Pgf > > # end of Para > # end of CellContent > # end of Cell # end of Notes > # end of PgfFont > # end of Pgf > > # end of Para > # end of CellContent > # end of Cell # end of Notes > # end of PgfFont > # end of Pgf > > # end of Para > # end of CellContent > # end of Cell > # end of Row > # end of TblBody > # end of Tbl # end of Notes > # end of PgfFont > # end of Pgf > > # end of Para > # end of CellContent > # end of Cell # end of Notes > # end of PgfFont > # end of Pgf > > # end of Para > # end of CellContent > # end of Cell # end of Notes > # end of PgfFont > # end of Pgf > > # end of Para > # end of CellContent > # end of Cell > # end of Row # end of Notes > # end of PgfFont > # end of Pgf > > # end of Para > # end of CellContent > # end of Cell # end of Notes > # end of PgfFont > # end of Pgf > # end of Para > # end of CellContent > # end of Cell # end of Notes > # end of PgfFont > # end of Pgf > > # end of Para > # end of CellContent > # end of Cell > # end of Row # end of Notes > # end of PgfFont > # end of Pgf > > # end of Para > # end of CellContent > # end of Cell # end of Notes > # end of PgfFont > # end of Pgf > > # end of Para > # end of CellContent > # end of Cell # end of Notes > # end of PgfFont > # end of Pgf > > # end of Para > # end of CellContent > # end of Cell > # end of Row # end of Notes > # end of PgfFont > # end of Pgf > > # end of Para > # end of CellContent > # end of Cell # end of Notes > # end of PgfFont > # end of Pgf > > # end of Para > # end of CellContent > # end of Cell # end of Notes > # end of PgfFont > # end of Pgf > > # end of Para > # end of CellContent > # end of Cell > # end of Row # end of Notes > # end of PgfFont > # end of Pgf > > # end of Para > # end of CellContent > # end of Cell # end of Notes > # end of PgfFont > # end of Pgf > > # end of Para > # end of CellContent > # end of Cell # end of Notes > # end of PgfFont > # end of Pgf > > # end of Para > # end of CellContent > # end of Cell > # end of Row # end of Notes > # end of PgfFont > # end of Pgf > > # end of Para > # end of CellContent > # end of Cell # end of Notes > # end of PgfFont > # end of Pgf > > # end of Para > # end of CellContent > # end of Cell # end of Notes > # end of PgfFont > # end of Pgf > > # end of Para > # end of CellContent > # end of Cell > # end of Row # end of Notes > # end of PgfFont > # end of Pgf > > # end of Para > # end of CellContent > # end of Cell # end of Notes > # end of PgfFont > # end of Pgf > # end of Para > # end of CellContent > # end of Cell # end of Notes > # end of PgfFont > # end of Pgf > > # end of Para > # end of CellContent > # end of Cell > # end of Row > # end of TblBody > # end of Tbl > # end of PgfFont > # end of Pgf > # end of TblColumnH > # end of PgfFont > # end of Pgf > # end of TblColumnBody > # end of PgfFont > # end of Pgf > # end of TblColumnF > # end of TblColumn > # end of PgfFont > # end of Pgf > # end of TblColumnH > # end of PgfFont > # end of Pgf > # end of TblColumnBody > # end of PgfFont > # end of Pgf > # end of TblColumnF > # end of TblColumn > # end of PgfFont > # end of Pgf > # end of TblColumnH > # end of PgfFont > # end of Pgf > # end of TblColumnBody > # end of PgfFont > # end of Pgf > # end of TblColumnF > # end of TblColumn > # end of PgfFont > # end of Pgf > # end of TblColumnH > # end of PgfFont > # end of Pgf > # end of TblColumnBody > # end of PgfFont > # end of Pgf > # end of TblColumnF > # end of TblColumn > # end of TblFormat # end of Notes > # end of PgfFont > # end of Pgf > > # end of Para > # end of CellContent > # end of Cell # end of Notes > # end of PgfFont > # end of Pgf > > # end of Para > # end of CellContent > # end of Cell # end of Notes > # end of PgfFont > # end of Pgf > > # end of Para > # end of CellContent > # end of Cell > # end of Row # end of Notes > # end of PgfFont > # end of Pgf > > # end of Para > # end of CellContent > # end of Cell # end of Notes > # end of PgfFont > # end of Pgf > > # end of Para > # end of CellContent > # end of Cell # end of Notes > # end of PgfFont > # end of Pgf > > # end of Para > # end of CellContent > # end of Cell > # end of Row # end of Notes > # end of PgfFont > # end of Pgf > > # end of Para > # end of CellContent > # end of Cell # end of Notes > # end of PgfFont > # end of Pgf > > # end of Para > # end of CellContent > # end of Cell # end of Notes > # end of PgfFont > # end of Pgf > > # end of Para > # end of CellContent > # end of Cell > # end of Row # end of Notes > # end of PgfFont > # end of Pgf > > # end of Para > # end of CellContent > # end of Cell # end of Notes > # end of PgfFont > # end of Pgf > > # end of Para > # end of CellContent > # end of Cell # end of Notes > # end of PgfFont > # end of Pgf > > # end of Para > # end of CellContent > # end of Cell > # end of Row # end of Notes > # end of PgfFont > # end of Pgf > > # end of Para > # end of CellContent > # end of Cell # end of Notes > # end of PgfFont > # end of Pgf > > # end of Para > # end of CellContent > # end of Cell # end of Notes > # end of PgfFont > # end of Pgf > > # end of Para > # end of CellContent > # end of Cell > # end of Row # end of Notes > # end of PgfFont > # end of Pgf > > # end of Para > # end of CellContent > # end of Cell # end of Notes > # end of PgfFont > # end of Pgf > # end of Para > # end of CellContent > # end of Cell # end of Notes > # end of PgfFont > # end of Pgf > > # end of Para > # end of CellContent > # end of Cell > # end of Row > # end of TblBody > # end of Tbl # end of Notes > # end of PgfFont > # end of Pgf > > # end of Para > # end of CellContent > # end of Cell # end of Notes > # end of PgfFont > # end of Pgf > > # end of Para > # end of CellContent > # end of Cell # end of Notes > # end of PgfFont > # end of Pgf > > # end of Para > # end of CellContent > # end of Cell > # end of Row # end of Notes > # end of PgfFont > # end of Pgf > > # end of Para > # end of CellContent > # end of Cell # end of Notes > # end of PgfFont > # end of Pgf > # end of Para > # end of CellContent > # end of Cell # end of Notes > # end of PgfFont > # end of Pgf > > # end of Para > # end of CellContent > # end of Cell > # end of Row # end of Notes > # end of PgfFont > # end of Pgf > > # end of Para > # end of CellContent > # end of Cell # end of Notes > # end of PgfFont > # end of Pgf > > # end of Para > # end of CellContent > # end of Cell # end of Notes > # end of PgfFont > # end of Pgf > > # end of Para > # end of CellContent > # end of Cell > # end of Row # end of Notes > # end of PgfFont > # end of Pgf > > # end of Para > # end of CellContent > # end of Cell # end of Notes > # end of PgfFont > # end of Pgf > > # end of Para > # end of CellContent > # end of Cell # end of Notes > # end of PgfFont > # end of Pgf > > # end of Para > # end of CellContent > # end of Cell > # end of Row # end of Notes > # end of PgfFont > # end of Pgf > > # end of Para > # end of CellContent > # end of Cell # end of Notes > # end of PgfFont > # end of Pgf > > # end of Para > # end of CellContent > # end of Cell # end of Notes > # end of PgfFont > # end of Pgf > > # end of Para > # end of CellContent > # end of Cell > # end of Row # end of Notes > # end of PgfFont > # end of Pgf > > # end of Para > # end of CellContent > # end of Cell # end of Notes > # end of PgfFont > # end of Pgf > # end of Para > # end of CellContent > # end of Cell # end of Notes > # end of PgfFont > # end of Pgf > > # end of Para > # end of CellContent > # end of Cell > # end of Row # end of Notes > # end of PgfFont > # end of Pgf > > # end of Para > # end of CellContent > # end of Cell # end of Notes > # end of PgfFont > # end of Pgf > > # end of Para > # end of CellContent > # end of Cell # end of Notes > # end of PgfFont > # end of Pgf > > # end of Para > # end of CellContent > # end of Cell > # end of Row # end of Notes > # end of PgfFont > # end of Pgf > > # end of Para > # end of CellContent > # end of Cell # end of Notes > # end of PgfFont > # end of Pgf > # end of Para > # end of CellContent > # end of Cell # end of Notes > # end of PgfFont > # end of Pgf > > # end of Para > # end of CellContent > # end of Cell > # end of Row > # end of TblBody > # end of Tbl > # end of PgfFont > # end of Pgf > # end of TblColumnH > # end of PgfFont > # end of Pgf > # end of TblColumnBody > # end of PgfFont > # end of Pgf > # end of TblColumnF > # end of TblColumn > # end of PgfFont > # end of Pgf > # end of TblColumnH > # end of PgfFont > # end of Pgf > # end of TblColumnBody > # end of PgfFont > # end of Pgf > # end of TblColumnF > # end of TblColumn > # end of PgfFont > # end of Pgf > # end of TblColumnH > # end of PgfFont > # end of Pgf > # end of TblColumnBody > # end of PgfFont > # end of Pgf > # end of TblColumnF > # end of TblColumn > # end of PgfFont > # end of Pgf > # end of TblColumnH > # end of PgfFont > # end of Pgf > # end of TblColumnBody > # end of PgfFont > # end of Pgf > # end of TblColumnF > # end of TblColumn > # end of TblFormat # end of Notes > # end of PgfFont > # end of Pgf > > # end of Para > # end of CellContent > # end of Cell # end of Notes > # end of PgfFont > # end of Pgf > > # end of Para > # end of CellContent > # end of Cell # end of Notes > # end of PgfFont > # end of Pgf > > # end of Para > # end of CellContent > # end of Cell > # end of Row # end of Notes > # end of PgfFont > # end of Pgf > > # end of Para > # end of CellContent > # end of Cell # end of Notes > # end of PgfFont > # end of Pgf > > # end of Para > # end of CellContent > # end of Cell # end of Notes > # end of PgfFont > # end of Pgf > > # end of Para > # end of CellContent > # end of Cell > # end of Row # end of Notes > # end of PgfFont > # end of Pgf > > # end of Para > # end of CellContent > # end of Cell # end of Notes > # end of PgfFont > # end of Pgf > > # end of Para > # end of CellContent > # end of Cell # end of Notes > # end of PgfFont > # end of Pgf > > # end of Para > # end of CellContent > # end of Cell > # end of Row # end of Notes > # end of PgfFont > # end of Pgf > > # end of Para > # end of CellContent > # end of Cell # end of Notes > # end of PgfFont > # end of Pgf > > # end of Para > # end of CellContent > # end of Cell # end of Notes > # end of PgfFont > # end of Pgf > > # end of Para > # end of CellContent > # end of Cell > # end of Row # end of Notes > # end of PgfFont > # end of Pgf > > # end of Para > # end of CellContent > # end of Cell # end of Notes > # end of PgfFont > # end of Pgf > > # end of Para > # end of CellContent > # end of Cell # end of Notes > # end of PgfFont > # end of Pgf > > # end of Para > # end of CellContent > # end of Cell > # end of Row # end of Notes > # end of PgfFont > # end of Pgf > > # end of Para > # end of CellContent > # end of Cell # end of Notes > # end of PgfFont > # end of Pgf > > # end of Para > # end of CellContent > # end of Cell # end of Notes > # end of PgfFont > # end of Pgf > > # end of Para > # end of CellContent > # end of Cell > # end of Row # end of Notes > # end of PgfFont > # end of Pgf > > # end of Para > # end of CellContent > # end of Cell # end of Notes > # end of PgfFont > # end of Pgf > # end of Para > # end of CellContent > # end of Cell # end of Notes > # end of PgfFont > # end of Pgf > > # end of Para > # end of CellContent > # end of Cell > # end of Row # end of Notes > # end of PgfFont > # end of Pgf > > # end of Para > # end of CellContent > # end of Cell # end of Notes > # end of PgfFont > # end of Pgf > > # end of Para > # end of CellContent > # end of Cell # end of Notes > # end of PgfFont > # end of Pgf > > # end of Para > # end of CellContent > # end of Cell > # end of Row # end of Notes > # end of PgfFont > # end of Pgf > > # end of Para > # end of CellContent > # end of Cell # end of Notes > # end of PgfFont > # end of Pgf > # end of Para > # end of CellContent > # end of Cell # end of Notes > # end of PgfFont > # end of Pgf > > # end of Para > # end of CellContent > # end of Cell > # end of Row > # end of TblBody > # end of Tbl # end of Notes > # end of PgfFont > # end of Pgf > > # end of Para > # end of CellContent > # end of Cell # end of Notes > # end of PgfFont > # end of Pgf > > # end of Para > # end of CellContent > # end of Cell # end of Notes > # end of PgfFont > # end of Pgf > > # end of Para > # end of CellContent > # end of Cell > # end of Row # end of Notes > # end of PgfFont > # end of Pgf > > # end of Para > # end of CellContent > # end of Cell # end of Notes > # end of PgfFont > # end of Pgf > # end of Para > # end of CellContent > # end of Cell # end of Notes > # end of PgfFont > # end of Pgf > > # end of Para > # end of CellContent > # end of Cell > # end of Row # end of Notes > # end of PgfFont > # end of Pgf > > # end of Para > # end of CellContent > # end of Cell # end of Notes > # end of PgfFont > # end of Pgf > > # end of Para > # end of CellContent > # end of Cell # end of Notes > # end of PgfFont > # end of Pgf > > # end of Para > # end of CellContent > # end of Cell > # end of Row # end of Notes > # end of PgfFont > # end of Pgf > > # end of Para > # end of CellContent > # end of Cell # end of Notes > # end of PgfFont > # end of Pgf > > # end of Para > # end of CellContent > # end of Cell # end of Notes > # end of PgfFont > # end of Pgf > > # end of Para > # end of CellContent > # end of Cell > # end of Row # end of Notes > # end of PgfFont > # end of Pgf > > # end of Para > # end of CellContent > # end of Cell # end of Notes > # end of PgfFont > # end of Pgf > > # end of Para > # end of CellContent > # end of Cell # end of Notes > # end of PgfFont > # end of Pgf > > # end of Para > # end of CellContent > # end of Cell > # end of Row # end of Notes > # end of PgfFont > # end of Pgf > > # end of Para > # end of CellContent > # end of Cell # end of Notes > # end of PgfFont > # end of Pgf > # end of Para > # end of CellContent > # end of Cell # end of Notes > # end of PgfFont > # end of Pgf > > # end of Para > # end of CellContent > # end of Cell > # end of Row # end of Notes > # end of PgfFont > # end of Pgf > > # end of Para > # end of CellContent > # end of Cell # end of Notes > # end of PgfFont > # end of Pgf > > # end of Para > # end of CellContent > # end of Cell # end of Notes > # end of PgfFont > # end of Pgf > > # end of Para > # end of CellContent > # end of Cell > # end of Row # end of Notes > # end of PgfFont > # end of Pgf > > # end of Para > # end of CellContent > # end of Cell # end of Notes > # end of PgfFont > # end of Pgf > # end of Para > # end of CellContent > # end of Cell # end of Notes > # end of PgfFont > # end of Pgf > > # end of Para > # end of CellContent > # end of Cell > # end of Row > # end of TblBody > # end of Tbl > # end of PgfFont > # end of Pgf > # end of TblColumnH > # end of PgfFont > # end of Pgf > # end of TblColumnBody > # end of PgfFont > # end of Pgf > # end of TblColumnF > # end of TblColumn > # end of PgfFont > # end of Pgf > # end of TblColumnH > # end of PgfFont > # end of Pgf > # end of TblColumnBody > # end of PgfFont > # end of Pgf > # end of TblColumnF > # end of TblColumn > # end of PgfFont > # end of Pgf > # end of TblColumnH > # end of PgfFont > # end of Pgf > # end of TblColumnBody > # end of PgfFont > # end of Pgf > # end of TblColumnF > # end of TblColumn > # end of PgfFont > # end of Pgf > # end of TblColumnH > # end of PgfFont > # end of Pgf > # end of TblColumnBody > # end of PgfFont > # end of Pgf > # end of TblColumnF > # end of TblColumn > # end of TblFormat # end of Notes > # end of PgfFont > # end of Pgf > > # end of Para > # end of CellContent > # end of Cell # end of Notes > # end of PgfFont > # end of Pgf > > # end of Para > # end of CellContent > # end of Cell # end of Notes > # end of PgfFont > # end of Pgf > > # end of Para > # end of CellContent > # end of Cell > # end of Row # end of Notes > # end of PgfFont > # end of Pgf > > # end of Para > # end of CellContent > # end of Cell # end of Notes > # end of PgfFont > # end of Pgf > > # end of Para > # end of CellContent > # end of Cell # end of Notes > # end of PgfFont > # end of Pgf > > # end of Para > # end of CellContent > # end of Cell > # end of Row # end of Notes > # end of PgfFont > # end of Pgf > > # end of Para > # end of CellContent > # end of Cell # end of Notes > # end of PgfFont > # end of Pgf > > # end of Para > # end of CellContent > # end of Cell # end of Notes > # end of PgfFont > # end of Pgf > > # end of Para > # end of CellContent > # end of Cell > # end of Row # end of Notes > # end of PgfFont > # end of Pgf > > # end of Para > # end of CellContent > # end of Cell # end of Notes > # end of PgfFont > # end of Pgf > > # end of Para > # end of CellContent > # end of Cell # end of Notes > # end of PgfFont > # end of Pgf > > # end of Para > # end of CellContent > # end of Cell > # end of Row # end of Notes > # end of PgfFont > # end of Pgf > > # end of Para > # end of CellContent > # end of Cell # end of Notes > # end of PgfFont > # end of Pgf > > # end of Para > # end of CellContent > # end of Cell # end of Notes > # end of PgfFont > # end of Pgf > > # end of Para > # end of CellContent > # end of Cell > # end of Row # end of Notes > # end of PgfFont > # end of Pgf > > # end of Para > # end of CellContent > # end of Cell # end of Notes > # end of PgfFont > # end of Pgf > > # end of Para > # end of CellContent > # end of Cell # end of Notes > # end of PgfFont > # end of Pgf > > # end of Para > # end of CellContent > # end of Cell > # end of Row # end of Notes > # end of PgfFont > # end of Pgf > > # end of Para > # end of CellContent > # end of Cell # end of Notes > # end of PgfFont > # end of Pgf > > # end of Para > # end of CellContent > # end of Cell # end of Notes > # end of PgfFont > # end of Pgf > > # end of Para > # end of CellContent > # end of Cell > # end of Row # end of Notes > # end of PgfFont > # end of Pgf > > # end of Para > # end of CellContent > # end of Cell # end of Notes > # end of PgfFont > # end of Pgf > # end of Para > # end of CellContent > # end of Cell # end of Notes > # end of PgfFont > # end of Pgf > > # end of Para > # end of CellContent > # end of Cell > # end of Row # end of Notes > # end of PgfFont > # end of Pgf > > # end of Para > # end of CellContent > # end of Cell # end of Notes > # end of PgfFont > # end of Pgf > > # end of Para > # end of CellContent > # end of Cell # end of Notes > # end of PgfFont > # end of Pgf > > # end of Para > # end of CellContent > # end of Cell > # end of Row # end of Notes > # end of PgfFont > # end of Pgf > > # end of Para > # end of CellContent > # end of Cell # end of Notes > # end of PgfFont > # end of Pgf > > # end of Para > # end of CellContent > # end of Cell # end of Notes > # end of PgfFont > # end of Pgf > > # end of Para > # end of CellContent > # end of Cell > # end of Row > # end of TblBody > # end of Tbl > # end of PgfFont > # end of Pgf > # end of TblColumnH > # end of PgfFont > # end of Pgf > # end of TblColumnBody > # end of PgfFont > # end of Pgf > # end of TblColumnF > # end of TblColumn > # end of PgfFont > # end of Pgf > # end of TblColumnH > # end of PgfFont > # end of Pgf > # end of TblColumnBody > # end of PgfFont > # end of Pgf > # end of TblColumnF > # end of TblColumn > # end of PgfFont > # end of Pgf > # end of TblColumnH > # end of PgfFont > # end of Pgf > # end of TblColumnBody > # end of PgfFont > # end of Pgf > # end of TblColumnF > # end of TblColumn > # end of PgfFont > # end of Pgf > # end of TblColumnH > # end of PgfFont > # end of Pgf > # end of TblColumnBody > # end of PgfFont > # end of Pgf > # end of TblColumnF > # end of TblColumn > # end of TblFormat # end of Notes > # end of PgfFont > # end of Pgf > > # end of Para > # end of CellContent > # end of Cell # end of Notes > # end of PgfFont > # end of Pgf > > # end of Para > # end of CellContent > # end of Cell # end of Notes > # end of PgfFont > # end of Pgf > > # end of Para > # end of CellContent > # end of Cell > # end of Row # end of Notes > # end of PgfFont > # end of Pgf > > # end of Para > # end of CellContent > # end of Cell # end of Notes > # end of PgfFont > # end of Pgf > # end of Font > # end of Font > > # end of Para > # end of CellContent > # end of Cell # end of Notes > # end of PgfFont > # end of Pgf > > # end of Para > # end of CellContent > # end of Cell > # end of Row # end of Notes > # end of PgfFont > # end of Pgf > > # end of Para > # end of CellContent > # end of Cell # end of Notes > # end of PgfFont > # end of Pgf > # end of Font > # end of Font > > # end of Para > # end of CellContent > # end of Cell # end of Notes > # end of PgfFont > # end of Pgf > > # end of Para > # end of CellContent > # end of Cell > # end of Row # end of Notes > # end of PgfFont > # end of Pgf > > # end of Para > # end of CellContent > # end of Cell # end of Notes > # end of PgfFont > # end of Pgf > > # end of Para > # end of CellContent > # end of Cell # end of Notes > # end of PgfFont > # end of Pgf > > # end of Para > # end of CellContent > # end of Cell > # end of Row > # end of TblBody > # end of Tbl > # end of PgfFont > # end of Pgf > # end of TblColumnH > # end of PgfFont > # end of Pgf > # end of TblColumnBody > # end of PgfFont > # end of Pgf > # end of TblColumnF > # end of TblColumn > # end of PgfFont > # end of Pgf > # end of TblColumnH > # end of PgfFont > # end of Pgf > # end of TblColumnBody > # end of PgfFont > # end of Pgf > # end of TblColumnF > # end of TblColumn > # end of PgfFont > # end of Pgf > # end of TblColumnH > # end of PgfFont > # end of Pgf > # end of TblColumnBody > # end of PgfFont > # end of Pgf > # end of TblColumnF > # end of TblColumn > # end of PgfFont > # end of Pgf > # end of TblColumnH > # end of PgfFont > # end of Pgf > # end of TblColumnBody > # end of PgfFont > # end of Pgf > # end of TblColumnF > # end of TblColumn > # end of TblFormat # end of Notes > # end of PgfFont > # end of Pgf > > # end of Para > # end of CellContent > # end of Cell # end of Notes > # end of PgfFont > # end of Pgf > > # end of Para > # end of CellContent > # end of Cell # end of Notes > # end of PgfFont > # end of Pgf > > # end of Para > # end of CellContent > # end of Cell > # end of Row # end of Notes > # end of PgfFont > # end of Pgf > > # end of Para > # end of CellContent > # end of Cell # end of Notes > # end of PgfFont > # end of Pgf > # end of Para > # end of CellContent > # end of Cell # end of Notes > # end of PgfFont > # end of Pgf > > # end of Para > # end of CellContent > # end of Cell > # end of Row # end of Notes > # end of PgfFont > # end of Pgf > > # end of Para > # end of CellContent > # end of Cell # end of Notes > # end of PgfFont > # end of Pgf > > # end of Para > # end of CellContent > # end of Cell # end of Notes > # end of PgfFont > # end of Pgf > > # end of Para > # end of CellContent > # end of Cell > # end of Row # end of Notes > # end of PgfFont > # end of Pgf > > # end of Para > # end of CellContent > # end of Cell # end of Notes > # end of PgfFont > # end of Pgf > > # end of Para > # end of CellContent > # end of Cell # end of Notes > # end of PgfFont > # end of Pgf > > # end of Para > # end of CellContent > # end of Cell > # end of Row # end of Notes > # end of PgfFont > # end of Pgf > # end of Font > # end of Font > > # end of Para > # end of CellContent > # end of Cell # end of Notes > # end of PgfFont > # end of Pgf > # end of Font > # end of Font > > # end of Para > # end of CellContent > # end of Cell # end of Notes > # end of PgfFont > # end of Pgf > # end of Font > # end of Font > > # end of Para > # end of CellContent > # end of Cell > # end of Row # end of Notes > # end of PgfFont > # end of Pgf > # end of Font > # end of Font > > # end of Para > # end of CellContent > # end of Cell # end of Notes > # end of PgfFont > # end of Pgf > # end of Font > # end of Font > > # end of Para > # end of CellContent > # end of Cell # end of Notes > # end of PgfFont > # end of Pgf > # end of Font > # end of Font > > # end of Para > # end of CellContent > # end of Cell > # end of Row # end of Notes > # end of PgfFont > # end of Pgf > # end of Font > # end of Font > > # end of Para > # end of CellContent > # end of Cell # end of Notes > # end of PgfFont > # end of Pgf > # end of Font > # end of Font > > # end of Para > # end of CellContent > # end of Cell # end of Notes > # end of PgfFont > # end of Pgf > # end of Font > # end of Font > > # end of Para > # end of CellContent > # end of Cell > # end of Row # end of Notes > # end of PgfFont > # end of Pgf > # end of Font > # end of Font > > # end of Para > # end of CellContent > # end of Cell # end of Notes > # end of PgfFont > # end of Pgf > # end of Font > # end of Font > > # end of Para > # end of CellContent > # end of Cell # end of Notes > # end of PgfFont > # end of Pgf > # end of Font > # end of Font > > # end of Para > # end of CellContent > # end of Cell > # end of Row # end of Notes > # end of PgfFont > # end of Pgf > # end of Font > # end of Font > > # end of Para > # end of CellContent > # end of Cell # end of Notes > # end of PgfFont > # end of Pgf > # end of Font > # end of Font > > # end of Para > # end of CellContent > # end of Cell # end of Notes > # end of PgfFont > # end of Pgf > # end of Font > # end of Font > > # end of Para > # end of CellContent > # end of Cell > # end of Row # end of Notes > # end of PgfFont > # end of Pgf > # end of Font > # end of Font > > # end of Para > # end of CellContent > # end of Cell # end of Notes > # end of PgfFont > # end of Pgf > # end of Font > # end of Font > > # end of Para > # end of CellContent > # end of Cell # end of Notes > # end of PgfFont > # end of Pgf > # end of Font > # end of Font > > # end of Para > # end of CellContent > # end of Cell > # end of Row # end of Notes > # end of PgfFont > # end of Pgf > # end of Font > # end of Font > > # end of Para > # end of CellContent > # end of Cell # end of Notes > # end of PgfFont > # end of Pgf > # end of Para > # end of CellContent > # end of Cell # end of Notes > # end of PgfFont > # end of Pgf > > # end of Para > # end of CellContent > # end of Cell > # end of Row > # end of TblBody > # end of Tbl > # end of PgfFont > # end of Pgf > # end of TblColumnH > # end of PgfFont > # end of Pgf > # end of TblColumnBody > # end of PgfFont > # end of Pgf > # end of TblColumnF > # end of TblColumn > # end of PgfFont > # end of Pgf > # end of TblColumnH > # end of PgfFont > # end of Pgf > # end of TblColumnBody > # end of PgfFont > # end of Pgf > # end of TblColumnF > # end of TblColumn > # end of PgfFont > # end of Pgf > # end of TblColumnH > # end of PgfFont > # end of Pgf > # end of TblColumnBody > # end of PgfFont > # end of Pgf > # end of TblColumnF > # end of TblColumn > # end of PgfFont > # end of Pgf > # end of TblColumnH > # end of PgfFont > # end of Pgf > # end of TblColumnBody > # end of PgfFont > # end of Pgf > # end of TblColumnF > # end of TblColumn > # end of TblFormat # end of Notes > # end of PgfFont > # end of Pgf > > # end of Para > # end of CellContent > # end of Cell # end of Notes > # end of PgfFont > # end of Pgf > > # end of Para > # end of CellContent > # end of Cell # end of Notes > # end of PgfFont > # end of Pgf > > # end of Para > # end of CellContent > # end of Cell > # end of Row # end of Notes > # end of PgfFont > # end of Pgf > > # end of Para > # end of CellContent > # end of Cell # end of Notes > # end of PgfFont > # end of Pgf > # end of Font > # end of Font > > # end of Para > # end of CellContent > # end of Cell # end of Notes > # end of PgfFont > # end of Pgf > > # end of Para > # end of CellContent > # end of Cell > # end of Row # end of Notes > # end of PgfFont > # end of Pgf > > # end of Para > # end of CellContent > # end of Cell # end of Notes > # end of PgfFont > # end of Pgf > # end of Font > # end of Font > > # end of Para > # end of CellContent > # end of Cell # end of Notes > # end of PgfFont > # end of Pgf > > # end of Para > # end of CellContent > # end of Cell > # end of Row > # end of TblBody > # end of Tbl > # end of PgfFont > # end of Pgf > # end of TblColumnH > # end of PgfFont > # end of Pgf > # end of TblColumnBody > # end of PgfFont > # end of Pgf > # end of TblColumnF > # end of TblColumn > # end of PgfFont > # end of Pgf > # end of TblColumnH > # end of PgfFont > # end of Pgf > # end of TblColumnBody > # end of PgfFont > # end of Pgf > # end of TblColumnF > # end of TblColumn > # end of PgfFont > # end of Pgf > # end of TblColumnH > # end of PgfFont > # end of Pgf > # end of TblColumnBody > # end of PgfFont > # end of Pgf > # end of TblColumnF > # end of TblColumn > # end of PgfFont > # end of Pgf > # end of TblColumnH > # end of PgfFont > # end of Pgf > # end of TblColumnBody > # end of PgfFont > # end of Pgf > # end of TblColumnF > # end of TblColumn > # end of TblFormat # end of Notes > # end of PgfFont > # end of Pgf > > # end of Para > # end of CellContent > # end of Cell # end of Notes > # end of PgfFont > # end of Pgf > > # end of Para > # end of CellContent > # end of Cell # end of Notes > # end of PgfFont > # end of Pgf > > # end of Para > # end of CellContent > # end of Cell > # end of Row # end of Notes > # end of PgfFont > # end of Pgf > > # end of Para > # end of CellContent > # end of Cell # end of Notes > # end of PgfFont > # end of Pgf > # end of Para > # end of CellContent > # end of Cell # end of Notes > # end of PgfFont > # end of Pgf > > # end of Para > # end of CellContent > # end of Cell > # end of Row # end of Notes > # end of PgfFont > # end of Pgf > > # end of Para > # end of CellContent > # end of Cell # end of Notes > # end of PgfFont > # end of Pgf > > # end of Para > # end of CellContent > # end of Cell # end of Notes > # end of PgfFont > # end of Pgf > > # end of Para > # end of CellContent > # end of Cell > # end of Row # end of Notes > # end of PgfFont > # end of Pgf > > # end of Para > # end of CellContent > # end of Cell # end of Notes > # end of PgfFont > # end of Pgf > # end of Font > # end of Font > > # end of Para > # end of CellContent > # end of Cell # end of Notes > # end of PgfFont > # end of Pgf > > # end of Para > # end of CellContent > # end of Cell > # end of Row # end of Notes > # end of PgfFont > # end of Pgf > # end of Font > # end of Font > > # end of Para > # end of CellContent > # end of Cell # end of Notes > # end of PgfFont > # end of Pgf > # end of Font > # end of Font > > # end of Para > # end of CellContent > # end of Cell # end of Notes > # end of PgfFont > # end of Pgf > # end of Font > # end of Font > > # end of Para > # end of CellContent > # end of Cell > # end of Row # end of Notes > # end of PgfFont > # end of Pgf > # end of Font > # end of Font > > # end of Para > # end of CellContent > # end of Cell # end of Notes > # end of PgfFont > # end of Pgf > # end of Para > # end of CellContent > # end of Cell # end of Notes > # end of PgfFont > # end of Pgf > > # end of Para > # end of CellContent > # end of Cell > # end of Row # end of Notes > # end of PgfFont > # end of Pgf > # end of Font > > # end of Font > > # end of Para > # end of CellContent > # end of Cell # end of Notes > # end of PgfFont > # end of Pgf > # end of Font > # end of Font > > # end of Para > # end of CellContent > # end of Cell # end of Notes > # end of PgfFont > # end of Pgf > # end of Font > # end of Font > > # end of Para > # end of CellContent > # end of Cell > # end of Row # end of Notes > # end of PgfFont > # end of Pgf > # end of Para > # end of CellContent > # end of Cell # end of Notes > # end of PgfFont > # end of Pgf > # end of Para > # end of CellContent > # end of Cell # end of Notes > # end of PgfFont > # end of Pgf > # end of Para > # end of CellContent > # end of Cell > # end of Row # end of Notes > # end of PgfFont > # end of Pgf > # end of Font > > # end of Font > > # end of Para > # end of CellContent > # end of Cell # end of Notes > # end of PgfFont > # end of Pgf > # end of Para > # end of CellContent > # end of Cell # end of Notes > # end of PgfFont > # end of Pgf > # end of Para > # end of CellContent > # end of Cell > # end of Row # end of Notes > # end of PgfFont > # end of Pgf > # end of Font > # end of Font > > # end of Para > # end of CellContent > # end of Cell # end of Notes > # end of PgfFont > # end of Pgf > # end of Font > # end of Font > > # end of Para > # end of CellContent > # end of Cell # end of Notes > # end of PgfFont > # end of Pgf > # end of Font > # end of Font > > # end of Para > # end of CellContent > # end of Cell > # end of Row > # end of TblBody > # end of Tbl > # end of PgfFont > # end of Pgf > # end of TblColumnH > # end of PgfFont > # end of Pgf > # end of TblColumnBody > # end of PgfFont > # end of Pgf > # end of TblColumnF > # end of TblColumn > # end of PgfFont > # end of Pgf > # end of TblColumnH > # end of PgfFont > # end of Pgf > # end of TblColumnBody > # end of PgfFont > # end of Pgf > # end of TblColumnF > # end of TblColumn > # end of PgfFont > # end of Pgf > # end of TblColumnH > # end of PgfFont > # end of Pgf > # end of TblColumnBody > # end of PgfFont > # end of Pgf > # end of TblColumnF > # end of TblColumn > # end of PgfFont > # end of Pgf > # end of TblColumnH > # end of PgfFont > # end of Pgf > # end of TblColumnBody > # end of PgfFont > # end of Pgf > # end of TblColumnF > # end of TblColumn > # end of PgfFont > # end of Pgf > # end of TblTitlePgf1 > # end of TblFormat # end of Notes > # end of PgfFont > # end of Pgf > > # end of Para > # end of CellContent > # end of Cell # end of Notes > # end of PgfFont > # end of Pgf > > # end of Para > # end of CellContent > # end of Cell # end of Notes > # end of PgfFont > # end of Pgf > > # end of Para > # end of CellContent > # end of Cell > # end of Row # end of Notes > # end of PgfFont > # end of Pgf > > # end of Para > # end of CellContent > # end of Cell # end of Notes > # end of PgfFont > # end of Pgf > > # end of Para > # end of PgfFont > # end of Pgf > > # end of Para > # end of PgfFont > # end of Pgf > > # end of Para > # end of PgfFont > # end of Pgf > > # end of Para > # end of PgfFont > # end of Pgf > > # end of Para > # end of PgfFont > # end of Pgf > > # end of Para > # end of CellContent > # end of Cell # end of Notes > # end of PgfFont > # end of Pgf > > # end of Para > # end of CellContent > # end of Cell > # end of Row # end of Notes > # end of PgfFont > # end of Pgf > > # end of Para > # end of CellContent > # end of Cell # end of Notes > # end of PgfFont > # end of Pgf > > # end of Para > # end of CellContent > # end of Cell # end of Notes > # end of PgfFont > # end of Pgf > > # end of Para > # end of CellContent > # end of Cell > # end of Row # end of Notes > # end of PgfFont > # end of Pgf > > # end of Para > # end of CellContent > # end of Cell # end of Notes > # end of PgfFont > # end of Pgf > > # end of Para > # end of CellContent > # end of Cell # end of Notes > # end of PgfFont > # end of Pgf > > # end of Para > # end of CellContent > # end of Cell > # end of Row # end of Notes > # end of PgfFont > # end of Pgf > > # end of Para > # end of CellContent > # end of Cell # end of Notes > # end of PgfFont > # end of Pgf > > # end of Para > # end of CellContent > # end of Cell # end of Notes > # end of PgfFont > # end of Pgf > > # end of Para > # end of CellContent > # end of Cell > # end of Row # end of Notes > # end of PgfFont > # end of Pgf > > # end of Para > # end of CellContent > # end of Cell # end of Notes > # end of PgfFont > # end of Pgf > # end of Para > # end of CellContent > # end of Cell # end of Notes > # end of PgfFont > # end of Pgf > > # end of Para > # end of CellContent > # end of Cell > # end of Row > # end of TblBody > # end of Tbl > # end of PgfFont > # end of Pgf > # end of TblColumnH > # end of PgfFont > # end of Pgf > # end of TblColumnBody > # end of PgfFont > # end of Pgf > # end of TblColumnF > # end of TblColumn > # end of PgfFont > # end of Pgf > # end of TblColumnH > # end of PgfFont > # end of Pgf > # end of TblColumnBody > # end of PgfFont > # end of Pgf > # end of TblColumnF > # end of TblColumn > # end of PgfFont > # end of Pgf > # end of TblColumnH > # end of PgfFont > # end of Pgf > # end of TblColumnBody > # end of PgfFont > # end of Pgf > # end of TblColumnF > # end of TblColumn > # end of PgfFont > # end of Pgf > # end of TblColumnH > # end of PgfFont > # end of Pgf > # end of TblColumnBody > # end of PgfFont > # end of Pgf > # end of TblColumnF > # end of TblColumn > # end of PgfFont > # end of Pgf > # end of TblTitlePgf1 > # end of TblFormat # end of Notes > # end of PgfFont > # end of Pgf > > # end of Para > # end of CellContent > # end of Cell # end of Notes > # end of PgfFont > # end of Pgf > > # end of Para > # end of CellContent > # end of Cell # end of Notes > # end of PgfFont > # end of Pgf > > # end of Para > # end of CellContent > # end of Cell > # end of Row # end of Notes > # end of PgfFont > # end of Pgf > > # end of Para > # end of CellContent > # end of Cell # end of Notes > # end of PgfFont > # end of Pgf > > # end of Para > # end of PgfFont > # end of Pgf > > # end of Para > # end of PgfFont > # end of Pgf > > # end of Para > # end of PgfFont > # end of Pgf > > # end of Para > # end of PgfFont > # end of Pgf > > # end of Para > # end of PgfFont > # end of Pgf > > # end of Para > # end of PgfFont > # end of Pgf > > # end of Para > # end of CellContent > # end of Cell # end of Notes > # end of PgfFont > # end of Pgf > > # end of Para > # end of CellContent > # end of Cell > # end of Row # end of Notes > # end of PgfFont > # end of Pgf > > # end of Para > # end of CellContent > # end of Cell # end of Notes > # end of PgfFont > # end of Pgf > > # end of Para > # end of CellContent > # end of Cell # end of Notes > # end of PgfFont > # end of Pgf > > # end of Para > # end of CellContent > # end of Cell > # end of Row # end of Notes > # end of PgfFont > # end of Pgf > > # end of Para > # end of CellContent > # end of Cell # end of Notes > # end of PgfFont > # end of Pgf > > # end of Para > # end of CellContent > # end of Cell # end of Notes > # end of PgfFont > # end of Pgf > > # end of Para > # end of CellContent > # end of Cell > # end of Row # end of Notes > # end of PgfFont > # end of Pgf > > # end of Para > # end of CellContent > # end of Cell # end of Notes > # end of PgfFont > # end of Pgf > # end of Para > # end of CellContent > # end of Cell # end of Notes > # end of PgfFont > # end of Pgf > > # end of Para > # end of CellContent > # end of Cell > # end of Row > # end of TblBody > # end of Tbl > # end of PgfFont > # end of Pgf > # end of TblColumnH > # end of PgfFont > # end of Pgf > # end of TblColumnBody > # end of PgfFont > # end of Pgf > # end of TblColumnF > # end of TblColumn > # end of PgfFont > # end of Pgf > # end of TblColumnH > # end of PgfFont > # end of Pgf > # end of TblColumnBody > # end of PgfFont > # end of Pgf > # end of TblColumnF > # end of TblColumn > # end of PgfFont > # end of Pgf > # end of TblColumnH > # end of PgfFont > # end of Pgf > # end of TblColumnBody > # end of PgfFont > # end of Pgf > # end of TblColumnF > # end of TblColumn > # end of PgfFont > # end of Pgf > # end of TblColumnH > # end of PgfFont > # end of Pgf > # end of TblColumnBody > # end of PgfFont > # end of Pgf > # end of TblColumnF > # end of TblColumn > # end of TblFormat # end of Notes > # end of PgfFont > # end of Pgf > > # end of Para > # end of CellContent > # end of Cell # end of Notes > # end of PgfFont > # end of Pgf > > # end of Para > # end of CellContent > # end of Cell # end of Notes > # end of PgfFont > # end of Pgf > > # end of Para > # end of CellContent > # end of Cell > # end of Row # end of Notes > # end of PgfFont > # end of Pgf > > # end of Para > # end of CellContent > # end of Cell # end of Notes > # end of PgfFont > # end of Pgf > # end of Font > # end of Font > > # end of Para > # end of CellContent > # end of Cell # end of Notes > # end of PgfFont > # end of Pgf > > # end of Para > # end of CellContent > # end of Cell > # end of Row # end of Notes > # end of PgfFont > # end of Pgf > > # end of Para > # end of CellContent > # end of Cell # end of Notes > # end of PgfFont > # end of Pgf > > # end of Para > # end of CellContent > # end of Cell # end of Notes > # end of PgfFont > # end of Pgf > > # end of Para > # end of CellContent > # end of Cell > # end of Row > # end of TblBody > # end of Tbl > # end of PgfFont > # end of Pgf > # end of TblColumnH > # end of PgfFont > # end of Pgf > # end of TblColumnBody > # end of PgfFont > # end of Pgf > # end of TblColumnF > # end of TblColumn > # end of PgfFont > # end of Pgf > # end of TblColumnH > # end of PgfFont > # end of Pgf > # end of TblColumnBody > # end of PgfFont > # end of Pgf > # end of TblColumnF > # end of TblColumn > # end of PgfFont > # end of Pgf > # end of TblColumnH > # end of PgfFont > # end of Pgf > # end of TblColumnBody > # end of PgfFont > # end of Pgf > # end of TblColumnF > # end of TblColumn > # end of PgfFont > # end of Pgf > # end of TblColumnH > # end of PgfFont > # end of Pgf > # end of TblColumnBody > # end of PgfFont > # end of Pgf > # end of TblColumnF > # end of TblColumn > # end of TblFormat # end of Notes > # end of PgfFont > # end of Pgf > > # end of Para > # end of CellContent > # end of Cell # end of Notes > # end of PgfFont > # end of Pgf > > # end of Para > # end of CellContent > # end of Cell # end of Notes > # end of PgfFont > # end of Pgf > > # end of Para > # end of CellContent > # end of Cell > # end of Row # end of Notes > # end of PgfFont > # end of Pgf > > # end of Para > # end of CellContent > # end of Cell # end of Notes > # end of PgfFont > # end of Pgf > # end of Font > # end of Font > > # end of Para > # end of CellContent > # end of Cell # end of Notes > # end of PgfFont > # end of Pgf > > # end of Para > # end of CellContent > # end of Cell > # end of Row # end of Notes > # end of PgfFont > # end of Pgf > > # end of Para > # end of CellContent > # end of Cell # end of Notes > # end of PgfFont > # end of Pgf > > # end of Para > # end of CellContent > # end of Cell # end of Notes > # end of PgfFont > # end of Pgf > > # end of Para > # end of CellContent > # end of Cell > # end of Row > # end of TblBody > # end of Tbl > # end of PgfFont > # end of Pgf > # end of TblColumnH > # end of PgfFont > # end of Pgf > # end of TblColumnBody > # end of PgfFont > # end of Pgf > # end of TblColumnF > # end of TblColumn > # end of PgfFont > # end of Pgf > # end of TblColumnH > # end of PgfFont > # end of Pgf > # end of TblColumnBody > # end of PgfFont > # end of Pgf > # end of TblColumnF > # end of TblColumn > # end of PgfFont > # end of Pgf > # end of TblColumnH > # end of PgfFont > # end of Pgf > # end of TblColumnBody > # end of PgfFont > # end of Pgf > # end of TblColumnF > # end of TblColumn > # end of PgfFont > # end of Pgf > # end of TblColumnH > # end of PgfFont > # end of Pgf > # end of TblColumnBody > # end of PgfFont > # end of Pgf > # end of TblColumnF > # end of TblColumn > # end of TblFormat # end of Notes > # end of PgfFont > # end of Pgf > > # end of Para > # end of CellContent > # end of Cell # end of Notes > # end of PgfFont > # end of Pgf > > # end of Para > # end of CellContent > # end of Cell # end of Notes > # end of PgfFont > # end of Pgf > > # end of Para > # end of CellContent > # end of Cell > # end of Row # end of Notes > # end of PgfFont > # end of Pgf > > # end of Para > # end of CellContent > # end of Cell # end of Notes > # end of PgfFont > # end of Pgf > > # end of Para > # end of CellContent > # end of Cell # end of Notes > # end of PgfFont > # end of Pgf > > # end of Para > # end of CellContent > # end of Cell > # end of Row # end of Notes > # end of PgfFont > # end of Pgf > > # end of Para > # end of CellContent > # end of Cell # end of Notes > # end of PgfFont > # end of Pgf > > # end of Para > # end of CellContent > # end of Cell # end of Notes > # end of PgfFont > # end of Pgf > > # end of Para > # end of CellContent > # end of Cell > # end of Row # end of Notes > # end of PgfFont > # end of Pgf > > # end of Para > # end of CellContent > # end of Cell # end of Notes > # end of PgfFont > # end of Pgf > > # end of Para > # end of CellContent > # end of Cell # end of Notes > # end of PgfFont > # end of Pgf > > # end of Para > # end of CellContent > # end of Cell > # end of Row # end of Notes > # end of PgfFont > # end of Pgf > > # end of Para > # end of CellContent > # end of Cell # end of Notes > # end of PgfFont > # end of Pgf > > # end of Para > # end of CellContent > # end of Cell # end of Notes > # end of PgfFont > # end of Pgf > > # end of Para > # end of CellContent > # end of Cell > # end of Row # end of Notes > # end of PgfFont > # end of Pgf > > # end of Para > # end of CellContent > # end of Cell # end of Notes > # end of PgfFont > # end of Pgf > # end of Para > # end of CellContent > # end of Cell # end of Notes > # end of PgfFont > # end of Pgf > > # end of Para > # end of CellContent > # end of Cell > # end of Row > # end of TblBody > # end of Tbl # end of Notes > # end of PgfFont > # end of Pgf > > # end of Para > # end of CellContent > # end of Cell # end of Notes > # end of PgfFont > # end of Pgf > > # end of Para > # end of CellContent > # end of Cell # end of Notes > # end of PgfFont > # end of Pgf > > # end of Para > # end of CellContent > # end of Cell > # end of Row # end of Notes > # end of PgfFont > # end of Pgf > > # end of Para > # end of CellContent > # end of Cell # end of Notes > # end of PgfFont > # end of Pgf > > # end of Para > # end of CellContent > # end of Cell # end of Notes > # end of PgfFont > # end of Pgf > > # end of Para > # end of CellContent > # end of Cell > # end of Row # end of Notes > # end of PgfFont > # end of Pgf > > # end of Para > # end of CellContent > # end of Cell # end of Notes > # end of PgfFont > # end of Pgf > > # end of Para > # end of CellContent > # end of Cell # end of Notes > # end of PgfFont > # end of Pgf > > # end of Para > # end of CellContent > # end of Cell > # end of Row # end of Notes > # end of PgfFont > # end of Pgf > > # end of Para > # end of CellContent > # end of Cell # end of Notes > # end of PgfFont > # end of Pgf > > # end of Para > # end of CellContent > # end of Cell # end of Notes > # end of PgfFont > # end of Pgf > > # end of Para > # end of CellContent > # end of Cell > # end of Row # end of Notes > # end of PgfFont > # end of Pgf > > # end of Para > # end of CellContent > # end of Cell # end of Notes > # end of PgfFont > # end of Pgf > > # end of Para > # end of CellContent > # end of Cell # end of Notes > # end of PgfFont > # end of Pgf > > # end of Para > # end of CellContent > # end of Cell > # end of Row # end of Notes > # end of PgfFont > # end of Pgf > > # end of Para > # end of CellContent > # end of Cell # end of Notes > # end of PgfFont > # end of Pgf > # end of Para > # end of CellContent > # end of Cell # end of Notes > # end of PgfFont > # end of Pgf > > # end of Para > # end of CellContent > # end of Cell > # end of Row > # end of TblBody > # end of Tbl > # end of PgfFont > # end of Pgf > # end of TblColumnH > # end of PgfFont > # end of Pgf > # end of TblColumnBody > # end of PgfFont > # end of Pgf > # end of TblColumnF > # end of TblColumn > # end of PgfFont > # end of Pgf > # end of TblColumnH > # end of PgfFont > # end of Pgf > # end of TblColumnBody > # end of PgfFont > # end of Pgf > # end of TblColumnF > # end of TblColumn > # end of PgfFont > # end of Pgf > # end of TblColumnH > # end of PgfFont > # end of Pgf > # end of TblColumnBody > # end of PgfFont > # end of Pgf > # end of TblColumnF > # end of TblColumn > # end of PgfFont > # end of Pgf > # end of TblColumnH > # end of PgfFont > # end of Pgf > # end of TblColumnBody > # end of PgfFont > # end of Pgf > # end of TblColumnF > # end of TblColumn > # end of TblFormat # end of Notes > # end of PgfFont > # end of Pgf > > # end of Para > # end of CellContent > # end of Cell # end of Notes > # end of PgfFont > # end of Pgf > > # end of Para > # end of CellContent > # end of Cell # end of Notes > # end of PgfFont > # end of Pgf > > # end of Para > # end of CellContent > # end of Cell > # end of Row # end of Notes > # end of PgfFont > # end of Pgf > > # end of Para > # end of CellContent > # end of Cell # end of Notes > # end of PgfFont > # end of Pgf > > # end of Para > # end of CellContent > # end of Cell # end of Notes > # end of PgfFont > # end of Pgf > > # end of Para > # end of CellContent > # end of Cell > # end of Row # end of Notes > # end of PgfFont > # end of Pgf > > # end of Para > # end of CellContent > # end of Cell # end of Notes > # end of PgfFont > # end of Pgf > > # end of Para > # end of CellContent > # end of Cell # end of Notes > # end of PgfFont > # end of Pgf > > # end of Para > # end of CellContent > # end of Cell > # end of Row # end of Notes > # end of PgfFont > # end of Pgf > > # end of Para > # end of CellContent > # end of Cell # end of Notes > # end of PgfFont > # end of Pgf > > # end of Para > # end of CellContent > # end of Cell # end of Notes > # end of PgfFont > # end of Pgf > > # end of Para > # end of CellContent > # end of Cell > # end of Row > # end of TblBody > # end of Tbl # end of Notes > # end of PgfFont > # end of Pgf > > # end of Para > # end of CellContent > # end of Cell # end of Notes > # end of PgfFont > # end of Pgf > > # end of Para > # end of CellContent > # end of Cell # end of Notes > # end of PgfFont > # end of Pgf > > # end of Para > # end of CellContent > # end of Cell > # end of Row # end of Notes > # end of PgfFont > # end of Pgf > > # end of Para > # end of CellContent > # end of Cell # end of Notes > # end of PgfFont > # end of Pgf > # end of Para > # end of CellContent > # end of Cell # end of Notes > # end of PgfFont > # end of Pgf > > # end of Para > # end of CellContent > # end of Cell > # end of Row # end of Notes > # end of PgfFont > # end of Pgf > > # end of Para > # end of CellContent > # end of Cell # end of Notes > # end of PgfFont > # end of Pgf > > # end of Para > # end of CellContent > # end of Cell # end of Notes > # end of PgfFont > # end of Pgf > > # end of Para > # end of CellContent > # end of Cell > # end of Row # end of Notes > # end of PgfFont > # end of Pgf > > # end of Para > # end of CellContent > # end of Cell # end of Notes > # end of PgfFont > # end of Pgf > > # end of Para > # end of CellContent > # end of Cell # end of Notes > # end of PgfFont > # end of Pgf > > # end of Para > # end of CellContent > # end of Cell > # end of Row # end of Notes > # end of PgfFont > # end of Pgf > > # end of Para > # end of CellContent > # end of Cell # end of Notes > # end of PgfFont > # end of Pgf > > # end of Para > # end of CellContent > # end of Cell # end of Notes > # end of PgfFont > # end of Pgf > > # end of Para > # end of CellContent > # end of Cell > # end of Row # end of Notes > # end of PgfFont > # end of Pgf > > # end of Para > # end of CellContent > # end of Cell # end of Notes > # end of PgfFont > # end of Pgf > # end of Para > # end of CellContent > # end of Cell # end of Notes > # end of PgfFont > # end of Pgf > > # end of Para > # end of CellContent > # end of Cell > # end of Row > # end of TblBody > # end of Tbl > # end of Tbls > # end of DashedPattern > # end of TextRect > # end of TextRect > # end of PolyLine > # end of TextRect > # end of TextRect > # end of TextRect > # end of PolyLine > # end of Page > # end of DashedPattern > # end of TextRect > # end of PolyLine > # end of TextRect > # end of PolyLine > # end of TextRect > # end of Page > # end of DashedPattern > # end of TextRect > # end of PolyLine > # end of TextRect > # end of PolyLine > # end of TextRect > # end of Page > # end of DashedPattern > # end of TextRect > # end of PolyLine > # end of TextRect > # end of PolyLine > # end of TextRect > # end of Page > # end of DashedPattern > # end of Font > # end of TextLine > # end of PolyLine > # end of Frame > # end of TextLine > # end of PolyLine > # end of Frame > # end of Page > # end of DashedPattern > # end of TextRect > # end of TextLine > # end of Page > # end of DashedPattern > # end of TextRect > # end of TextLine > # end of Page > # end of DashedPattern > # end of TextRect > # end of TextLine > # end of Page > # end of DashedPattern > # end of TextRect > # end of TextLine > # end of Page > # end of DashedPattern > # end of TextRect > # end of Page > # end of DashedPattern > # end of TextRect > # end of Page > # end of DashedPattern > # end of TextRect > # end of Page > # end of DashedPattern > # end of TextRect > # end of Page > # end of DashedPattern > # end of TextRect > # end of Page > # end of DashedPattern > # end of TextRect > # end of Page > # end of DashedPattern > # end of TextRect > # end of Page > # end of DashedPattern > # end of TextRect > # end of Page > # end of DashedPattern > # end of TextRect > # end of Page > # end of DashedPattern > # end of TextRect > # end of Page > # end of DashedPattern > # end of TextRect > # end of Page > # end of DashedPattern > # end of TextRect > # end of Page > # end of DashedPattern > # end of TextRect > # end of Page > # end of DashedPattern > # end of TextRect > # end of Page > # end of DashedPattern > # end of TextRect > # end of Page > # end of DashedPattern > # end of TextRect > # end of Page > # end of DashedPattern > # end of TextRect > # end of Page > # end of DashedPattern > # end of TextRect > # end of Page > # end of DashedPattern > # end of TextRect > # end of Page > # end of DashedPattern > # end of TextRect > # end of Page > # end of DashedPattern > # end of TextRect > # end of Page > # end of DashedPattern > # end of TextRect > # end of Page > # end of DashedPattern > # end of TextRect > # end of Page > # end of DashedPattern > # end of TextRect > # end of Page > # end of DashedPattern > # end of TextRect > # end of Page > # end of DashedPattern > # end of TextRect > # end of Page > # end of DashedPattern > # end of TextRect > # end of Page > # end of DashedPattern > # end of TextRect > # end of Page > # end of DashedPattern > # end of TextRect > # end of Page > # end of DashedPattern > # end of TextRect > # end of Page > # end of DashedPattern > # end of TextRect > # end of Page > # end of DashedPattern > # end of TextRect > # end of Page # end of Notes > # end of PgfFont > # end of TabStop > # end of TabStop > # end of Pgf > # end of Variable > # end of Variable > # end of Variable > > # end of Para > # end of TextFlow # end of Notes > > # end of Para > # end of TextFlow # end of Notes > # end of TabStop > # end of Pgf > # end of Font > # end of Variable > # end of Font > # end of Font > # end of Variable > # end of Variable > > # end of Para > # end of TextFlow # end of Notes > # end of TabStop > # end of Pgf > > # end of Para > # end of TextFlow # end of Notes > > # end of Para > # end of TextFlow # end of Notes > > # end of Para > # end of TextFlow # end of Notes > > # end of Para > # end of TextFlow # end of Notes > # end of TabStop > # end of Pgf > # end of Variable > # end of Variable > # end of Variable > > # end of Para > # end of TextFlow # end of Notes > > # end of Para > # end of TextFlow # end of Notes > > # end of Para > # end of TextFlow # end of Notes > # end of TabStop > # end of Pgf > # end of Variable > > # end of Para > # end of TextFlow # end of Notes > > # end of Para > # end of TextFlow # end of Notes > > # end of Para > # end of TextFlow # end of Notes > # end of TabStop > # end of Pgf > # end of Variable > > # end of Para > # end of TextFlow # end of Notes > # end of PgfFont > # end of TabStop > # end of TabStop > # end of Pgf '> '> '> > > # end of Para > # end of TabStop > # end of TabStop > # end of Pgf '> '> '> > > # end of Para > # end of TabStop > # end of TabStop > # end of Pgf '> '> '> > > # end of Para > # end of TextFlow # end of Notes > # end of Pgf > > # end of Para > # end of Pgf > > # end of Para > # end of Pgf > > # end of Para > # end of Pgf <$numerics\><$alphabetics\>'> > > # end of Para > # end of Pgf > > # end of Para > # end of Pgf '> > > # end of Para > # end of Pgf > # end of Para > # end of TextFlow # end of Notes > # end of TabStop > # end of TabStop > # end of Pgf '> '> '> > > # end of Para > # end of TextFlow # end of Notes > # end of Pgf '> '> '> > > # end of Para > # end of TextFlow # end of Notes > > # end of Para > > > # end of Para > > # end of Font > # end of Font > > # end of Font > # end of Font > # end of Font > # end of Font > > # end of Para > > # end of Para > # end of PgfFont > # end of Pgf > # end of Font > # end of Font > > # end of Para > # end of PgfFont > # end of Pgf > # end of Font > # end of Font > > # end of Para > # end of PgfFont > # end of Pgf > # end of Font > # end of Font > > # end of Para > # end of PgfFont > # end of Pgf > # end of Font > # end of Font > > # end of Para > # end of PgfFont > # end of Pgf > # end of Font > # end of Font > > # end of Para > > > # end of Para > > # end of Font > # end of Font > # end of Font > # end of Font > > > # end of Para > # end of Font > # end of Font > # end of Font > # end of Font > > # end of Font > # end of Font > # end of Font > # end of Font > > > > # end of Para > > # end of Para > > # end of Para > # end of Marker > > # end of Para > # end of Font > # end of Font > > > # end of Para > # end of Marker > > # end of Para > > # end of Para > # end of Font > # end of Marker > # end of Font > > # end of Para > # end of Font > # end of Marker > # end of Font > > # end of Font > # end of Font > > > # end of Para > > > > # end of Para > > # end of Para > # end of Marker > > # end of Para > # end of Font > # end of Font > # end of Font > > # end of Para > # end of Font > # end of Font > # end of Font > > # end of Para > # end of Font > # end of Font > # end of Font > > # end of Para > # end of Font > > # end of Para > > > # end of Para > > > # end of Para > > > # end of Para > # end of Font > # end of Font > > # end of Para > # end of Para > # end of Marker > > # end of Para > # end of Font > # end of Font > # end of Font > # end of Font > > # end of Para > # end of PgfFont > # end of Pgf > # end of Font > # end of Font > # end of Font > > # end of Para > > # end of Font > # end of Font > > # end of Font > # end of Font > # end of Font > > # end of Para > # end of Font > # end of Font > > > > # end of Para > # end of Marker > > # end of Para > > # end of Para > # end of Font > # end of Font > # end of Font > > # end of Para > > # end of Para > # end of Marker > > # end of Para > # end of Font > # end of Font > # end of Font > > # end of Para > # end of Font > > # end of Para > > # end of Font > # end of Font > > > # end of Para > # end of Marker > > # end of Para > # end of Font > > # end of Para > # end of Font > # end of Font > # end of Font > > # end of Para > > # end of Para > # end of Font > # end of Font > > # end of Para > # end of Pgf > > # end of Para > # end of Pgf > > # end of Para > # end of Pgf > > # end of Para > > # end of Para > > # end of Para > # end of Font > # end of Font > # end of Font > > > > # end of Para > # end of Font > # end of Font > # end of Font > # end of Font > # end of Font > # end of Font > # end of Font > # end of Font > > # end of Font > # end of Font > # end of Font > # end of Font > > > # end of Para > > > # end of Para > # end of Marker > > # end of Para > > # end of Para > # end of Font > # end of Font > # end of Font > > # end of Para > # end of Font > > # end of Para > > # end of Para > > > # end of Para > # end of Marker > > # end of Para > # end of Font > # end of Font > # end of Font > # end of Font > # end of Font > > # end of Para > # end of Font > > # end of Para > # end of Font > # end of Font > > # end of Font > # end of Font > > # end of Para > # end of Font > # end of Font > > # end of Para > # end of Font > # end of Font > # end of Font > # end of Font > > > # end of Font > # end of Font > > # end of Font > # end of Font > > > # end of Para > # end of Font > # end of Font > # end of Font > # end of Font > > # end of Font > # end of Font > > # end of Para > # end of Marker > > # end of Para > # end of Font > # end of Font > # end of Font > > # end of Para > # end of Font > > # end of Para > # end of Font > # end of Font > # end of Font > # end of Font > > # end of Font > > # end of Font > > # end of Para > # end of Font > # end of Font > # end of Font > # end of Font > > # end of Para > # end of Font > # end of Font > # end of Font > # end of Font > > # end of Font > # end of Font > > > # end of Para > # end of Font > # end of Font > # end of Font > # end of Font > # end of Font > # end of Font > > # end of Font > # end of Font > # end of Font > # end of Font > # end of Font > > # end of Font > # end of Font > # end of Font > > # end of Para > # end of Marker > > # end of Para > # end of Font > # end of Font > # end of Font > > # end of Para > # end of Font > # end of Font > # end of Font > > # end of Para > # end of Font > > # end of Para > # end of Font > # end of Font > # end of Font > > # end of Para > # end of Font > # end of Font > # end of Font > # end of Font > > # end of Para > # end of Font > # end of Font > # end of Font > > # end of Para > # end of Font > > # end of Para > > # end of Para > # end of Font > # end of Font > # end of Font > # end of Font > # end of Font > > # end of Font > > # end of Para > # end of Font > # end of Font > > # end of Font > # end of Font > # end of Font > # end of Font > > # end of Para > # end of Font > # end of Font > > # end of Para > # end of Font > # end of Font > # end of Font > # end of Font > # end of Font > # end of Font > > # end of Font > # end of Font > # end of Font > # end of Font > # end of Font > # end of Font > > # end of Para > # end of Marker > > # end of Para > # end of Font > # end of Font > # end of Font > > # end of Para > # end of Font > # end of Font > # end of Font > > # end of Para > # end of Font > # end of Font > # end of Font > > # end of Para > # end of Font > > # end of Para > > # end of Font > # end of Font > # end of Font > # end of Font > # end of Font > # end of Font > > # end of Para > # end of Font > # end of Font > # end of Font > # end of Font > > > > # end of Font > > # end of Font > # end of Font > # end of Font > > # end of Font > # end of Font > > # end of Para > # end of Font > # end of Font > # end of Font > # end of Font > > # end of Font > # end of Font > > > # end of Font > # end of Font > # end of Font > # end of Font > > # end of Font > # end of Font > > # end of Font > # end of Font > > # end of Para > # end of Font > # end of Font > # end of Font > # end of Font > # end of Font > # end of Font > > > # end of Font > # end of Font > > # end of Font > # end of Font > > # end of Para > # end of Marker > > # end of Para > # end of Font > # end of Font > # end of Font > # end of Font > > # end of Para > # end of Font > > # end of Para > > # end of Font > # end of Font > > # end of Font > # end of Font > > # end of Para > # end of Font > # end of Font > > # end of Para > # end of Font > # end of Font > > # end of Font > # end of Font > > # end of Para > # end of Font > # end of Font > # end of Font > > # end of Font > > > # end of Para > # end of Font > # end of Font > # end of Font > # end of Font > # end of Font > # end of Font > > # end of Font > # end of Font > # end of Font > # end of Font > > # end of Para > # end of Font > # end of Font > # end of Font > # end of Font > > # end of Font > # end of Font > > # end of Para > # end of Marker > > # end of Para > # end of Font > # end of Font > # end of Font > > # end of Para > # end of Font > > # end of Para > > # end of Font > # end of Font > > # end of Para > # end of Font > # end of Font > > # end of Font > # end of Font > > > # end of Para > # end of Font > # end of Font > # end of Font > # end of Font > # end of Font > > # end of Font > > # end of Para > # end of Marker > > # end of Para > # end of Font > # end of Font > # end of Font > > # end of Para > # end of Font > > # end of Para > # end of Font > # end of Font > > > # end of Para > # end of Font > # end of Font > # end of Font > # end of Font > # end of Font > # end of Font > # end of Font > # end of Font > > # end of Font > # end of Font > # end of Font > # end of Font > > # end of Font > # end of Font > > # end of Font > # end of Font > > # end of Para > # end of Font > # end of Font > # end of Font > # end of Font > # end of Font > > # end of Font > # end of Font > # end of Font > # end of Font > # end of Font > # end of Font > > # end of Para > # end of Font > # end of Font > # end of Font > # end of Font > > # end of Font > # end of Font > > # end of Para > # end of Marker > > # end of Para > # end of Font > # end of Font > # end of Font > > # end of Para > # end of Font > > # end of Para > # end of Font > # end of Font > # end of Font > # end of Font > # end of Font > # end of Font > > > # end of Para > # end of Font > # end of Font > # end of Font > # end of Font > > # end of Font > # end of Font > > > # end of Para > # end of Font > # end of Font > > # end of Font > # end of Font > > # end of Para > > # end of Para > # end of Para > # end of Para > # end of Para > # end of Marker > > # end of Para > # end of Font > # end of Font > # end of Font > > # end of Para > > # end of Para > # end of Font > > # end of Para > # end of Font > > # end of Para > # end of Font > > # end of Para > # end of Font > > # end of Para > # end of Font > > # end of Para > # end of Font > # end of Font > # end of Font > > # end of Para > # end of Font > > # end of Para > > > > # end of Para > # end of Marker > > # end of Para > # end of Font > # end of Font > # end of Font > > # end of Para > # end of Font > # end of Font > # end of Font > > # end of Para > # end of Font > > # end of Para > # end of Pgf > > > # end of Para > > # end of Para > > # end of Para > > # end of Para > # end of Marker > > # end of Para > # end of Font > # end of Font > # end of Font > > # end of Para > > # end of Para > # end of Font > # end of Font > # end of Font > > # end of Para > # end of Font > > # end of Para > > > # end of Para > # end of Para > # end of Para > # end of Marker > > # end of Para > # end of Font > # end of Font > # end of Font > > # end of Para > # end of Font > # end of Font > # end of Font > # end of Font > > # end of Para > > # end of Para > # end of Font > # end of Font > # end of Font > > # end of Para > # end of Font > > # end of Para > # end of Font > # end of Font > > # end of Font > # end of Font > > # end of Para > > > # end of Para > # end of XRef > > # end of Para > # end of Marker > > # end of Para > # end of Font > # end of Font > # end of Font > > # end of Para > # end of Font > # end of Font > # end of Font > # end of Font > > # end of Para > # end of Font > # end of Font > > # end of Para > > # end of Para > # end of Font > # end of Font > # end of Font > > # end of Para > # end of Font > > # end of Para > # end of Font > > # end of Font > # end of Font > # end of Font > > > # end of Para > # end of Marker > > # end of Para > # end of Font > # end of Font > # end of Font > > # end of Para > # end of Font > # end of Font > # end of Font > > # end of Para > # end of Font > # end of Font > # end of Font > # end of Font > # end of Font > > # end of Para > # end of Font > # end of Font > # end of Font > > # end of Para > # end of Font > > # end of Para > > # end of Font > # end of Font > > # end of Font > # end of Font > # end of Font > # end of Font > # end of Font > # end of Font > > # end of Font > # end of Font > > > # end of Para > > > # end of Para > # end of XRef > > # end of Para > # end of Font > # end of Font > # end of Font > # end of Font > # end of Font > > # end of Font > > > # end of Para > # end of Pgf > # end of Marker > > # end of Para > # end of Pgf > > # end of Para > > > # end of Font > > # end of Font > > # end of Para > # end of Marker > > # end of Para > > # end of Para > # end of Font > # end of Font > # end of Font > > # end of Para > > # end of Para > # end of Marker > > # end of Para > > # end of Para > # end of Font > # end of Font > > # end of Para > > # end of Para > # end of Marker > # end of Marker > > # end of Para > # end of Font > # end of Font > # end of Font > > # end of Para > # end of Font > # end of Font > # end of Font > > # end of Para > > # end of Para > > # end of Para > > # end of Para > # end of Font > > # end of Para > # end of Font > # end of Font > > > # end of Para > # end of Font > # end of Font > # end of Font > # end of Font > > # end of Font > # end of Font > > > # end of Para > > # end of Para > > # end of Font > # end of Font > > > # end of Para > > > > # end of Para > > # end of Para > # end of Font > # end of Font > > > # end of Para > # end of Marker > > # end of Para > # end of Font > # end of Font > # end of Font > > # end of Para > > # end of Para > > # end of Para > # end of Font > > # end of Para > > > > # end of Para > > # end of Para > # end of Marker > > # end of Para > # end of Font > # end of Font > # end of Font > > # end of Font > > # end of Para > # end of Font > # end of Font > > # end of Para > # end of Font > # end of Font > > # end of Para > # end of Font > # end of Font > # end of Font > # end of Font > # end of Font > # end of Font > # end of Font > # end of Font > > # end of Font > # end of Font > # end of Font > # end of Font > > # end of Font > # end of Font > > # end of Para > # end of Marker > > # end of Para > # end of Font > # end of Font > # end of Font > > # end of Font > > # end of Para > # end of Font > # end of Font > > # end of Para > > # end of Font > # end of Font > > # end of Font > # end of Font > > # end of Para > # end of Marker attributes'> > # end of Marker > > # end of Para > > > > # end of Para > > > > > > # end of Para > # end of Pgf > > > # end of Para > > # end of Para > > # end of Para > > # end of Para > > # end of Para > > # end of Para > > > # end of Para > > # end of Para > > # end of Para > # end of Pgf > > > > # end of Para > > # end of Font > # end of Font > > # end of Para > > # end of Para > > # end of Para > > # end of Para > > # end of Para > > # end of Para > > # end of Para > > # end of Para > > # end of Para > > > > # end of Para > # end of Marker > > # end of Para > > > > > > > > > # end of Para > # end of Marker > # end of Marker > > # end of Para > > > > # end of Para > > > # end of Para > > # end of Para > > > > > > # end of Para > # end of Font > # end of Font > > > > # end of Font > > # end of Font > > # end of Para > > # end of Font > # end of Font > # end of Font > > # end of Font > > # end of Para > > # end of Para > # end of Para > # end of Marker > > # end of Para > > # end of Para > # end of Font > # end of Marker > > # end of Para > > # end of Para > # end of Font > > # end of Para > # end of Marker > > > > # end of Para > # end of Marker > # end of Marker > > # end of Para > > # end of Para > # end of Font > > # end of Para > # end of Marker > > > # end of Font > # end of Font > # end of Font > # end of Font > # end of Font > # end of Font > > # end of Font > # end of Font > > # end of Para > > # end of Font > # end of XRef > > # end of Font > > # end of Para > # end of Font > # end of Font > > # end of Font > # end of Font > > # end of Para > # end of Font > # end of Marker > > # end of Para > # end of Font > # end of Font > > > # end of Para > # end of Font > # end of Marker > > # end of Para > > > > # end of Para > # end of Font > # end of Marker > > # end of Para > > > > > > > # end of Para > # end of Font > # end of Marker > # end of Marker > > # end of Para > > > # end of Font > # end of Font > # end of Font > # end of Font > # end of Font > # end of Font > # end of Font > # end of Font > > # end of Font > # end of Font > # end of Font > # end of Font > # end of Font > # end of Font > # end of Font > # end of Font > > # end of Font > # end of Font > > > # end of Para > > # end of Font > # end of Font > > > # end of Para > # end of Font > # end of Marker > > # end of Para > > > > # end of Para > # end of Font > # end of Marker > > # end of Para > > > > > > # end of Para > # end of Font > # end of Font > # end of Font > # end of Font > # end of Font > # end of Font > # end of Font > # end of Font > # end of Font > # end of Font > > # end of Font > # end of Font > # end of Font > # end of Font > # end of Font > # end of Font > > > # end of Para > > # end of Font > # end of Font > # end of Font > # end of Font > # end of Font > # end of Font > > # end of Font > # end of Font > > > # end of Para > > # end of Font > # end of Font > # end of Font > # end of Font > > > # end of Para > > > > > # end of Para > > > # end of Para > # end of Font > # end of Font > > > # end of Para > # end of Font > # end of Marker > > # end of Para > > # end of Font > # end of Font > # end of Font > # end of Font > # end of Font > # end of Font > > # end of Para > # end of Font > # end of Marker > > # end of Para > > > # end of Para > # end of Font > # end of Marker > > # end of Para > > # end of Para > # end of Font > # end of Marker > > # end of Para > > > # end of Para > # end of Font > # end of Marker > > # end of Para > > > # end of Font > # end of Font > # end of Font > # end of Font > > # end of Font > # end of Font > # end of Font > # end of Font > > # end of Para > > > > > # end of Para > # end of Font > # end of Marker > > # end of Para > > # end of Font > > # end of Font > > > # end of Para > # end of Font > # end of Marker > > # end of Para > > > > # end of Para > # end of Font > # end of Marker > > # end of Para > > > # end of Font > # end of Font > # end of Font > # end of Font > > # end of Font > # end of Font > # end of Font > # end of Font > > # end of Para > > > > > # end of Para > # end of Font > # end of Marker > > # end of Para > > > # end of Para > # end of Font > # end of Font > # end of Font > # end of Font > > # end of Font > # end of Font > > # end of Para > # end of Font > # end of Font > > # end of Font > # end of Font > > # end of Para > # end of Marker > # end of Marker > > # end of Para > > > # end of Para > # end of Font > # end of Marker > > # end of Para > > > # end of Para > # end of Font > # end of Marker > > # end of Para > > # end of Para > # end of Font > # end of Marker > > # end of Para > > > > # end of Font > # end of Font > # end of Font > # end of Font > > # end of Font > # end of Font > > # end of Para > # end of Font > # end of Font > > # end of Font > # end of Font > > > # end of Para > # end of Font > # end of Marker > > # end of Para > # end of Font > # end of Font > # end of Font > # end of Font > > # end of Font > # end of Font > > # end of Font > # end of Font > # end of Font > # end of Font > # end of Font > > # end of Font > > # end of Para > # end of Font > # end of Font > # end of Font > # end of Font > # end of Font > # end of Font > # end of Font > > # end of Font > > # end of Font > # end of Font > > > > # end of Para > # end of Font > # end of Marker > > # end of Para > > > > # end of Para > # end of Font > # end of Marker > > # end of Para > > > > > # end of Font > # end of Font > > # end of Para > # end of Marker > # end of Marker > > # end of Para > > # end of Para > # end of Font > # end of Marker > > # end of Para > > # end of Font > # end of Font > # end of Font > # end of Font > # end of Font > # end of Font > # end of Font > # end of Font > > # end of Para > # end of Font > # end of Marker > > # end of Para > > # end of Para > # end of Font > # end of Font > > # end of Para > # end of Font > # end of Marker > > # end of Para > > > # end of Para > # end of Font > # end of Marker > > # end of Para > > # end of Font > # end of Font > # end of Font > # end of Font > # end of Font > # end of Font > # end of Font > # end of Font > # end of Font > # end of Font > # end of Font > > # end of Font > # end of Font > # end of Font > # end of Font > # end of Font > # end of Font > # end of Font > > # end of Font > # end of Font > > # end of Para > # end of Font > # end of Marker > > # end of Para > > # end of Font > # end of Font > # end of Font > # end of Font > > > # end of Para > # end of Font > # end of Marker > > # end of Para > > > > > > # end of Para > # end of Font > # end of Marker > > # end of Para > # end of Font > # end of Font > # end of Font > # end of Font > # end of Font > # end of Font > > # end of Font > # end of Font > > # end of Para > # end of Font > # end of Marker > > # end of Para > # end of Font > # end of Font > > # end of Font > # end of Font > > > # end of Font > # end of Font > # end of Font > # end of Font > > # end of Para > > # end of Font > # end of Font > # end of Font > # end of Font > > > # end of Font > # end of Font > > # end of Font > # end of Font > # end of Font > # end of Font > # end of Font > > # end of Font > > > > # end of Para > # end of Font > # end of Font > # end of Font > # end of Font > # end of Font > # end of Font > > # end of Font > # end of Font > > # end of Font > # end of Font > # end of Font > > # end of Font > # end of Font > # end of Font > # end of Font > # end of Font > > > # end of Para > # end of Marker > > # end of Para > > > # end of Para > > # end of Para > # end of Font > # end of Marker > > # end of Para > > # end of Font > # end of Font > # end of Font > # end of Font > # end of Font > # end of Font > # end of Font > # end of Font > > # end of Para > # end of Font > # end of Marker > > # end of Para > > > # end of Para > # end of Font > # end of Marker > > # end of Para > > # end of Font > # end of Font > # end of Font > # end of Font > # end of Font > # end of Font > # end of Font > # end of Font > # end of Font > # end of Font > # end of Font > > # end of Font > # end of Font > # end of Font > # end of Font > # end of Font > # end of Font > # end of Font > > # end of Font > # end of Font > > # end of Para > # end of Font > # end of Marker > > # end of Para > > # end of Font > # end of Font > # end of Font > # end of Font > > > # end of Para > # end of Font > # end of Marker > > # end of Para > # end of Font > # end of Font > # end of Font > # end of Font > # end of Font > # end of Font > > # end of Font > # end of Font > > # end of Para > # end of Font > # end of Marker > > # end of Para > # end of Font > # end of Font > > # end of Font > # end of Font > > > # end of Font > # end of Font > # end of Font > # end of Font > > # end of Para > > # end of Font > # end of Font > # end of Font > # end of Font > > > # end of Font > # end of Font > > # end of Font > # end of Font > # end of Font > # end of Font > # end of Font > > # end of Font > > > > # end of Para > # end of Font > # end of Font > # end of Font > # end of Font > # end of Font > # end of Font > > # end of Font > # end of Font > > # end of Font > # end of Font > # end of Font > > # end of Font > # end of Font > # end of Font > # end of Font > # end of Font > attributes'> > # end of Marker > > # end of Para > # end of Marker > > # end of Para > > > # end of Para > > > > # end of Font > # end of Font > > > > # end of Para > > # end of Para > # end of Pgf > > # end of Para > # end of PgfFont > # end of TabStop > # end of Pgf > > # end of Para > # end of Font > > # end of Font > > # end of Para > # end of Pgf > > # end of Para > > > > # end of Para > > > # end of Para > > > # end of Para > # end of Pgf > > # end of Para > > > # end of Para > > > # end of Para > # end of Pgf > > # end of Para > # end of Para > # end of Para > > # end of Para > > > # end of Para > > # end of Para > # end of Marker > > # end of Para > # end of PgfFont > # end of Pgf > > # end of Para > # end of Font > # end of Font > > # end of Para > # end of Marker > > # end of Para > # end of PgfFont > # end of Pgf > > # end of Para > > # end of Para > # end of PgfFont > # end of Pgf > > # end of Para > # end of Marker > > # end of Para > # end of PgfFont > # end of Pgf > > # end of Para > # end of Marker > > # end of Para > # end of PgfFont > # end of Pgf > > # end of Para > # end of Para > # end of Para > # end of Marker > > # end of Para > # end of PgfFont > # end of Pgf > > # end of Para > # end of Marker > > # end of Para > # end of PgfFont > # end of Pgf > > # end of Para > > # end of Para > # end of PgfFont > # end of Pgf > > # end of Para > # end of Marker > > # end of Para > # end of PgfFont > # end of Pgf > > # end of Para > # end of Marker > > # end of Para > # end of PgfFont > # end of Pgf > > # end of Para > > # end of Para > # end of PgfFont > # end of Pgf > > # end of Para > # end of Marker > > # end of Para > # end of PgfFont > # end of Pgf > > # end of Para > # end of Marker > > # end of Para > # end of PgfFont > # end of Pgf > > # end of Para > # end of Marker > > # end of Para > # end of PgfFont > # end of Pgf > > # end of Para > # end of Para > # end of Marker > > # end of Para > # end of PgfFont > # end of Pgf > > # end of Para > # end of Marker > > # end of Para > # end of PgfFont > # end of Pgf > > # end of Para > # end of Marker > # end of Font > > # end of Para > # end of PgfFont > # end of Pgf > > # end of Para > > # end of Para > # end of PgfFont > # end of Pgf > > # end of Para > # end of Marker > > # end of Para > # end of PgfFont > # end of Pgf > > # end of Para > # end of Marker > > # end of Para > # end of PgfFont > # end of Pgf > > # end of Para > # end of Marker > > # end of Para > # end of PgfFont > # end of Pgf > > # end of Para > # end of Marker > # end of Font > > # end of Para > # end of PgfFont > # end of Pgf > > # end of Para > > # end of Para > # end of PgfFont > # end of Pgf > > # end of Para > # end of PgfFont > # end of Pgf > # end of Para > # end of Marker > # end of Font > > # end of Para > # end of PgfFont > # end of Pgf > > # end of Para > > # end of Para > # end of PgfFont > # end of Pgf > > # end of Para > # end of PgfFont > # end of Pgf > # end of Para > # end of Marker > # end of Font > > # end of Para > # end of PgfFont > # end of Pgf > > # end of Para > # end of PgfFont > # end of Pgf > > # end of Para > > # end of Para > # end of PgfFont > # end of Pgf > > # end of Para > # end of PgfFont > # end of Pgf > # end of Para > # end of Marker > # end of Font > > # end of Para > # end of PgfFont > # end of Pgf > > # end of Para > # end of Font > # end of Marker > # end of Font > > # end of Para > # end of PgfFont > # end of Pgf > # end of Font > # end of Font > > # end of Para > > # end of Para > # end of PgfFont > # end of Pgf > # end of Font > # end of Font > > # end of Para > # end of Font > # end of Marker > # end of Font > > # end of Para > # end of PgfFont > # end of Pgf > # end of Font > # end of Font > > # end of Para > > # end of Para > # end of PgfFont > # end of Pgf > # end of Font > # end of Font > > # end of Para > # end of Marker > # end of Font > > # end of Para > # end of PgfFont > # end of Pgf > > # end of Para > > # end of Para > # end of PgfFont > # end of Pgf > > # end of Para > # end of PgfFont > # end of Pgf > > # end of Para > # end of Marker > # end of Font > > # end of Para > # end of PgfFont > # end of Pgf > > # end of Para > > # end of Para > # end of PgfFont > # end of Pgf > > # end of Para > > # end of Para > # end of Marker > > # end of Para > # end of PgfFont > # end of Pgf > > # end of Para > # end of Para > # end of Marker > > # end of Para > # end of PgfFont > # end of Pgf > > # end of Para > # end of Pgf > # end of Para > # end of Para > # end of Font > # end of Font > > # end of Para > # end of Font > # end of Marker > # end of Font > > # end of Para > # end of PgfFont > # end of Pgf > # end of Font > > # end of Para > # end of Marker > > # end of Para > # end of PgfFont > # end of Pgf > # end of Font > > # end of Para > # end of Para > # end of TextFlow # End of MIFFile er'> > # end of Font > > # end of Para # Generated by FrameMaker xm5.0P3f # Options: # Paragraph Text # Paragraph Tags # Paragraph Formats # Font Information # Markers # Anchored Frames # Tables # Graphics and TextRect Layout # Master Page Items # Condition Catalog # Table Catalogs # Font Catalog # Paragraph Catalog # Document Template # Document Dictionary # Variables # > # end of Color > # end of Color > # end of Color > # end of Color > # end of Color > # end of Color > # end of Color > # end of Color > # end of ColorCatalog > # end of Condition > # end of ConditionCatalog > # end of PgfFont > # end of TabStop > # end of TabStop > # end of TabStop > # end of TabStop > # end of TabStop > # end of TabStop > # end of Pgf > # end of PgfFont > # end of TabStop > # end of TabStop > # end of TabStop > # end of TabStop > # end of TabStop > # end of TabStop > # end of TabStop > # end of Pgf > # end of PgfFont > # end of Pgf > # end of PgfFont > # end of Pgf > # end of PgfFont > # end of TabStop > # end of Pgf > # end of PgfFont > # end of Pgf > # end of PgfFont > # end of Pgf > # end of PgfFont > # end of TabStop > # end of TabStop > # end of TabStop > # end of TabStop > # end of TabStop > # end of TabStop > # end of Pgf > # end of PgfFont > # end of TabStop > # end of TabStop > # end of TabStop > # end of TabStop > # end of TabStop > # end of TabStop > # end of Pgf > # end of PgfFont .\\t'> > # end of TabStop > # end of TabStop > # end of TabStop > # end of TabStop > # end of TabStop > # end of TabStop > # end of TabStop > # end of Pgf > # end of PgfFont .\\t'> > # end of TabStop > # end of TabStop > # end of TabStop > # end of TabStop > # end of TabStop > # end of TabStop > # end of TabStop > # end of Pgf > # end of PgfFont > # end of TabStop > # end of Pgf > # end of PgfFont : '> > # end of Pgf > # end of PgfFont > # end of Pgf > # end of PgfFont > # end of Pgf > # end of PgfFont > # end of Pgf > # end of PgfCatalog > # end of Font > # end of Font > # end of FontCatalog > # end of Ruling > # end of Ruling > # end of Ruling > # end of Ruling > # end of Ruling > # end of RulingCatalog > # end of TblColumnH > # end of TblColumnBody > # end of Pgf > # end of TblColumnF > # end of TblColumn > # end of TblColumnH > # end of TblColumnBody > # end of Pgf > # end of TblColumnF > # end of TblColumn > # end of TblColumnH > # end of TblColumnBody > # end of Pgf > # end of TblColumnF > # end of TblColumn > # end of TblColumnH > # end of TblColumnBody > # end of Pgf > # end of TblColumnF > # end of TblColumn > # end of TblColumnH > # end of TblColumnBody > # end of Pgf > # end of TblColumnF > # end of TblColumn > # end of TblTitlePgf1 > # end of TblFormat > # end of TblColumnH > # end of TblColumnBody > # end of Pgf > # end of TblColumnF > # end of TblColumn > # end of TblColumnH > # end of TblColumnBody > # end of Pgf > # end of TblColumnF > # end of TblColumn > # end of TblColumnH > # end of TblColumnBody > # end of Pgf > # end of TblColumnF > # end of TblColumn > # end of TblColumnH > # end of TblColumnBody > # end of Pgf > # end of TblColumnF > # end of TblColumn > # end of TblColumnH > # end of TblColumnBody > # end of Pgf > # end of TblColumnF > # end of TblColumn > # end of TblTitlePgf1 > # end of TblFormat > # end of TblCatalog > # end of View > # end of View > # end of View > # end of View > # end of View > # end of View > # end of Views '> > # end of VariableFormat <$daynum\>, <$year\>'> > # end of VariableFormat /<$daynum\>/<$shortyear\>'> > # end of VariableFormat <$daynum\>, <$year\> <$hour\>:<$minute00\> <$ampm\>'> > # end of VariableFormat /<$daynum\>/<$shortyear\>'> > # end of VariableFormat <$daynum\>, <$year\>'> > # end of VariableFormat /<$daynum\>/<$shortyear\>'> > # end of VariableFormat '> > # end of VariableFormat '> > # end of VariableFormat '> > # end of VariableFormat '> > # end of VariableFormat '> > # end of VariableFormat '> > # end of VariableFormat '> > # end of VariableFormat > # end of VariableFormat of <$tblsheetcount\>)'> > # end of VariableFormat > # end of VariableFormats \xd3 on page\x11 <$pagenum\>'> > # end of XRefFormat '> > # end of XRefFormat \xd3 on page\x11 <$pagenum\>.'> > # end of XRefFormat , \xd2 <$paratext\>,\xd3 on page\x11 <$pagenum\>'> > # end of XRefFormat , \xd2 <$paratext\>,\xd3 on page\x11 <$pagenum\>'> > # end of XRefFormat on page\x11 <$pagenum\>'> > # end of XRefFormat > # end of XRefFormats > # end of Document anncovTOC.doc'> > # end of BookComponent # end of InitialAutoNums # end of Dictionary # end of AFrames > # end of DashedPattern > # end of TextRect > # end of TextRect > # end of TextRect > # end of TextRect > # end of TextRect > # end of TextRect > # end of Page > # end of DashedPattern > # end of TextRect > # end of TextRect > # end of TextRect > # end of TextRect > # end of TextRect > # end of TextRect > # end of Page > # end of DashedPattern > # end of Font > # end of TextLine > # end of TextLine > # end of PolyLine > # end of Frame > # end of TextLine > # end of PolyLine > # end of PolyLine > # end of Frame > # end of PolyLine > # end of Frame > # end of Frame > # end of TextLine > # end of TextLine > # end of TextLine > # end of PolyLine > # end of Frame > # end of TextLine > # end of PolyLine > # end of PolyLine > # end of Frame > # end of PolyLine > # end of Frame > # end of Frame > # end of TextLine > # end of Page > # end of DashedPattern > # end of TextRect > # end of Page > # end of DashedPattern > # end of TextRect > # end of Page # end of Notes > # end of PgfFont > # end of TabStop > # end of TabStop > # end of Pgf > > # end of Para > # end of TextFlow # end of Notes > # end of Pgf > > # end of Para > # end of TextFlow # end of Notes > > # end of Para > # end of TextFlow # end of Notes > # end of PgfFont > # end of TabStop > # end of TabStop > # end of Pgf > > # end of Para > # end of TextFlow # end of Notes > # end of Pgf > > # end of Para > # end of TextFlow # end of Notes > > # end of Para > # end of TextFlow # end of Notes > # end of PgfFont > # end of TabStop > # end of TabStop > # end of Pgf > > # end of Para > # end of TextFlow # end of Notes > # end of Pgf > > # end of Para > # end of TextFlow # end of Notes > > # end of Para > # end of TextFlow # end of Notes > # end of PgfFont > # end of TabStop > # end of TabStop > # end of Pgf > > # end of Para > # end of TextFlow # end of Notes > # end of Pgf > > # end of Para > # end of TextFlow # end of Notes > > # end of Para > # end of TextFlow # end of Notes > > # end of Para > > # end of Para > # end of PgfFont > # end of Pgf > > # end of Para > # end of PgfFont > # end of Pgf > > > # end of Para > # end of Para > # end of Para > # end of Para > # end of PgfFont > # end of Pgf > > > > > > > > > > > > > > > > # end of Para > # end of Para > # end of Para > # end of TextFlow # end of Notes > # end of Pgf > > # end of Para > # end of Pgf > # end of Para > # end of Pgf > # end of Para > # end of Pgf > # end of Para > # end of PgfFont > # end of Pgf > > > > > > > > > # end of Para > # end of PgfFont > # end of Pgf > > > > > # end of Para > # end of PgfFont > # end of Pgf > > > # end of Para > # end of PgfFont > # end of Pgf > > > > > > > # end of Para > # end of PgfFont > # end of Pgf > > > # end of Para > # end of PgfFont > # end of Pgf > # end of Font > # end of Font > > # end of Para > # end of TextFlow # End of MIFFile g `Title'> > > # end of Para  AadmnmnoqprHH $ @dHHHHff@!  d Footnote TableFootnote**.\t.\t/ - :;,.!?  `E'  a5AHAAB   EquationVariables I x I  J  K  L  M  N  O  P  Q  R  S  T  U  V  W  X  Y  Z  [  \  ]  ^  _  `  a  b  c  d  e   f 0Y> g Aa h  i  j mn k  l H m $ n d o  p  q  r H s  t  u  v  w  x  y  z  {  |  }  ~      Fo abl  ! " # $:; % &E" ' $ (' )H) *, +. ,1 -3 .6 / 8 0: 1= 2? 3B 4D 5ionG 6I 7L 8N 9I Q :I S ;J V <K X =L Y >M \ ?N ^ @O a AP c BQ f CR h DS k ET m FU p GV r HW u IX x JY | KZ ~ L[  M\  N]  O^  P_  Q`  Ra  Sb  Tc  Ud  Ve  Wf  Xg  h  i  j  k  e Yt I openObjectId xp_proto.mif:1 3871 J openObjectId xp_proto.mif:1 3798 K openObjectId xp_proto.mif:1 3875 L openObjectId xp_proto.mif:1 3799 M openObjectId xp_proto.mif:1 3828 N openObjectId xp_proto.mif:1 3821 Oo openObjectId xp_proto.mif:1 3837 P" openObjectId xp_proto.mif:1 3804 Q openObjectId xp_proto.mif:1 3801 RH openObjectId xp_proto.mif:1 3800 S- openObjectId xp_proto.mif:1 3872 T: openObjectId xp_proto.mif:1 3873 U openObjectId xp_proto.mif:1 3829 V8 openObjectId xp_proto.mif:1 3838 WV openObjectId xp_proto.mif:1 3805 X openObjectId xp_proto.mif:1 3830 YC openObjectId xp_proto.mif:1 3832 Zp openObjectId xp_proto.mif:1 3840 [ openObjectId xp_proto.mif:1 3833 \N openObjectId xp_proto.mif:1 3841 ] openObjectId xp_proto.mif:1 3831 ^ openObjectId xp_proto.mif:1 3839 _ openObjectId xp_proto.mif:1 3799 `e openObjectId xp_proto.mif:1 3806 a8 openObjectId xp_proto.mif:1 3828 b7 openObjectId xp_proto.mif:1 3807 c8 openObjectId xp_proto.mif:1 3834 d7 openObjectId xp_proto.mif:1 3808  e8 openObjectId xp_proto.mif:1 3876  f8 openObjectId xp_proto.mif:1 2017  g8 openObjectId xp_proto.mif:1 3821  h8 openObjectId xp_proto.mif:1 3810  i8 openObjectId xp_proto.mif:1 3822  j8 openObjectId xp_proto.mif:1 3823  k8 openObjectId xp_proto.mif:1 3803  l8 openObjectId xp_proto.mif:1 3811 m8 openObjectId xp_proto.mif:1 3802 n8 openObjectId xp_proto.mif:1 3824 o8 openObjectId xp_proto.mif:1 3837 p8 openObjectId xp_proto.mif:1 3879 q8 openObjectId xp_proto.mif:1 3835  r8 openObjectId xp_proto.mif:1 3842  s8 openObjectId xp_proto.mif:1 3812  t8 openObjectId xp_proto.mif:1 3844  u8 openObjectId xp_proto.mif:1 3848  v8openObjectId xp_proto.mif:1 438t  w7 openObjectId xp_proto.mif:1 3851  x8openObjectId xp_proto.mif:1 949t  y8 openObjectId xp_proto.mif:1 3856  z8openObjectId xp_proto.mif:1 447t  {8 openObjectId xp_proto.mif:1 3854  |8openObjectId xp_proto.mif:1 445t  }8 openObjectId xp_proto.mif:1 3860  ~0openObjectId xp_proto.mif:1 451t  8 openObjectId xp_proto.mif:1 3804  8 openObjectId xp_proto.mif:1 3813  8 openObjectId xp_proto.mif:1 3814  8 openObjectId xp_proto.mif:1 3815  8 openObjectId xp_proto.mif:1 3863 8openObjectId xp_proto.mif:1 454t ! 8 openObjectId xp_proto.mif:1 3850 " 8openObjectId xp_proto.mif:1 440t # 8 openObjectId xp_proto.mif:1 3858 $ 8 openObjectId xp_proto.mif:1 1115 % 8 openObjectId xp_proto.mif:1 3869 & 8 openObjectId xp_proto.mif:1 3579 ' 8 openObjectId xp_proto.mif:1 3864 ( 8openObjectId xp_proto.mif:1 455t )  openObjectId xp_proto.mif:1 3866 * 3 openObjectId xp_proto.mif:1 1027 + 8 openObjectId xp_proto.mif:1 3846 , 4 openObjectId xp_proto.mif:1 1145 - 8 openObjectId xp_proto.mif:1 3852 . 4openObjectId xp_proto.mif:1 442t / 8 openObjectId xp_proto.mif:1 3862 0 4openObjectId xp_proto.mif:1 453t 1 8 openObjectId xp_proto.mif:1 3870 2 5 openObjectId xp_proto.mif:1 3857 3 8 openObjectId xp_proto.mif:1 1049 4 8 openObjectId xp_proto.mif:1 3867 5 8openObjectId xp_proto.mif:1 462t 6 8 openObjectId xp_proto.mif:1 3845 7 8openObjectId xp_proto.mif:1 460t 8 5 openObjectId xp_proto.mif:1 3847 9 8openObjectId xp_proto.mif:1 459t : 4 openObjectId xp_proto.mif:1 3861 ; 8openObjectId xp_proto.mif:1 452t < 1 openObjectId xp_proto.mif:1 3865 = 8openObjectId xp_proto.mif:1 456t > 5 openObjectId xp_proto.mif:1 3511 ? 8 openObjectId xp_proto.mif:1 3849 @ 5openObjectId xp_proto.mif:1 439t A 8 openObjectId xp_proto.mif:1 3868 B 0 openObjectId xp_proto.mif:1 3922 C 8 openObjectId xp_proto.mif:1 3855 D 1 openObjectId xp_proto.mif:1 3898 E 8 openObjectId xp_proto.mif:1 3853 F 4openObjectId xp_proto.mif:1 444t G 8 openObjectId xp_proto.mif:1 3859 H 5openObjectId xp_proto.mif:1 450t I 8 openObjectId xp_proto.mif:1 3801 J 8 openObjectId xp_proto.mif:1 3800 K 0 openObjectId xp_proto.mif:1 1195 L 8 openObjectId xp_proto.mif:1 3877 M 6 openObjectId xp_proto.mif:1 3878 N 8 openObjectId xp_proto.mif:1 3816 O 6 openObjectId xp_proto.mif:1 3836 P 8 openObjectId xp_proto.mif:1 3843 Q 5 openObjectId xp_proto.mif:1 3817 R 8 openObjectId xp_proto.mif:1 3818 S 5 openObjectId xp_proto.mif:1 1178 T 8 openObjectId xp_proto.mif:1 3819 U 5 openObjectId xp_proto.mif:1 3820 V 5 openObjectId xp_proto.mif:1 3825 W 8 openObjectId xp_proto.mif:1 3826 X 3 openObjectId xp_proto.mif:1 3827uwu 0opv d x  <$lastpagenum> <$monthname> <$daynum>, <$year>t x "<$monthnum>/<$daynum>/<$shortyear> ;<$monthname> <$daynum>, <$year> <$hour>:<$minute00> <$ampm>8 "<$monthnum>/<$daynum>/<$shortyear> <$monthname> <$daynum>, <$year>8 "<$monthnum>/<$daynum>/<$shortyear>  <$fullfilename>.f:  <$filename>pOb  <$paratext[Title]>  <$paratext[Heading1]>t  <$curpagenum>  <$marker1>  <$marker2>  (Continued)o. + (Sheet <$tblsheetnum> of <$tblsheetcount>)8 Heading & Page <$paratext> on page<$pagenum> Pagepage<$pagenum>8 See Heading & Page%See <$paratext> on page<$pagenum>.t x  Table & Page7Table<$paranumonly>, <$paratext>, on page<$pagenum>pOb  Table All.7Table<$paranumonly>, <$paratext>, on page<$pagenum>W Table Number & Paget'Table<$paranumonly> on page<$pagenum>r IXpa  Aohn A;   A$ ) /7 ) oe>I * z >J + {"hnK , }mor8 - y fu9 . z. 0 0 aOb1 1 ya[T2 2 z paL 3 ~iM 4 uumN 5  erO 6 a erP 7 c inR 9 Sh : e o ; at)8 < ae&  = cr  > ca ? c$p @ cSe A c Se B cx p C cu x D  7 E aay> F axn  G nOb H a Ta I au,  J a>pa K m L abag M a$mo N aeen O a P a Q a R a S aa T a U  V ahn W  X a Y  Z a [ a \ a ] a$ / ^  _ az ` { a a} b ay c z d a e y f az g a~ h a i a j aa k ac l c m c n aa o ca p cc q ac r cc s cc t ac u cc v cc w a x ca y ca z a { aa | aa } aa ~ a  ca c aa ca ca aa ca ca aa c ca a! ca# c% aa& ca( ca* aa+ c- ca/ a0 ca2 ca4 a5 ca7 c9 aa; aa< ca> ca@ aaA caC ccE acF caH ccJ acK caM ccO acP caR ccT acU caW ccZ ac[ ca] ca_ aa` cab cad ace ccg cai acj ccl can aco ccq cas ct acv aw acy cz aa{ cc} ac aa ac ac aa ac ac ca ac ac aa aa ac(>d35canEd:5ccoKH$ 48 acH$  T aU UT UTh ) c 33 Index H3R `@;8 H3R `@H RH R Footnote cHq3@ `@<8 cHq3@ `@HzHz  Single Line cH'=6cqFootnoteHw 58 vHw  aUU` - } aHH68 cHH  ac aUUd .  dG5 aqd(5paHH)8 HHoc&&&` : A UUh ; )AttributeNotify, encoding    I32 'UUh < %attributes    J13  K19 3UUh = defaults    L13 ?UUh > document    M17 cKUUh ? job    N17 cWUUh @ `@page    O18 SicUUh A printer    P14 oUUh B server    Q14 {UUh C validating    R14 ` D B UUh E $BadContext, encoding    S32 UUh F -%BadSequence, encoding    T32 ` G C 媟UUh H /content-orientation    U18,   V19 UUh I .content-orientations-supported    W15 UUh J copy-count    X18 ` K D ,UUh L .default-input-tray    Y18,   Z19 8UUh M *default-medium    [18,   \19 DUUh N 6default-printer-resolution    ]18,   ^19 PUUh O eN$defaults, attributes    _13 \UUh P ibdescriptor    `15 hUUh Q =#document attributes    a17 tUUh R me-document-attributes-supported    b15 UUh S document-format    c18 O1UUh T A*document-formats-supported    d15 ` U E UUh V UUerrors    e2 ` W I ꪒUUh X ƪ"input-trays-medium    f15 ` Y ʪJ UUh Z eqjob attributes    g17 %UUh [ (job-attributes-supported    h15 io1UUh \  job-name    i17 I=UUh ] ntjob-owner    j17 WX` ^ JL lUUh _ !locale, attribute    k14 HHH6 YHH  dium  d 9  1, 23 prUUd 7  Level2IX , UUd 6 ƪ Level1IX N;d 5 utLSymbols[\ ];Numerics[0];A;B;C;D;E;F;G;H;I;J;K;L;M;N;O;P;Q;R;S;T;U;V;W;X;Y;Z UUPd 4 a$<$symbols><$numerics><$alphabetics> UU^d 3 -a- eld , 6openObjectId <$relfilename>:<$ObjectType> <$ObjectId> zd + UU <$pagenum> umeUUd * ed d,5UUm e H$ -8 inH$   ʪJ  Z aG UTl 0 Index #  UHw .8 1Hw   7 I=ntUUd 1 W HH/8 oleHH kH6 UUd 2 Ǫ  >@  d 9   H3D `@?B 6H3D `@HH  Double LineeriH @6;U; 4 Double Linels>AC3-a ,BC <$geH C65 Single Line eDC  HZE6aG TableFootnotewEGVR `@F6 wEGVR `@EPwEPw  TableFootnoted5rHH8 HH00UU0UUl encoding    22 UUl request    3 UUd PrintGetScreenOfContext `@*UUl encoding    24 6UUl request    4 BUUd 4PrintInputSelected NUUl Cencoding    27 ZUUl request    8 fUUl %PrintNotify, encoding    31 erUUd PrintPutDocumentData 6~UUl encoding    26 UUl request    5 UUd PrintQueryScreens UUl encoding    30 6UUl aGrequest    10 UUd ƸPrintQueryVersion ƪUUl encoding    22 wҪUUl eFrequest    10 ުUUd PrintRehashPrinterList ꪗUUl encoding    23 UUl request    10 UUd UUPrintSelectInput UUl encoding    27 2UUl request    8 &UUd PrintSetAttributes fCo2UUl UUencoding    29 >UUl UU"request    9,   10 JUUd PrPrintSetContext VUUl Cencoding    24 bUUl request    3 nUUd PrintSetImageResolution  zUUl ƪencoding    30 meUUl UUrequest    10 UUd UUPrintStartDoc UUl ƪencoding    25 ryUUl UUrequest    6 UUd ƪPrintStartJob ªUUl 10encoding    25 PrΪUUl ƪrequest    4 ڪUUd wPrintStartPage eF檂UUl  encoding    27 UUl errequest    7  d S !UUl UU!server attributes    14 <d UUV PUUl ƪ%validating attributes    14 2kd X ~UUd  XPAttributeNotify H$ 8UUH$ l  Hw 8rtSHw l bHH8HHl enHH8UreHHl ;H8 y;HesUUd rt;H8 r;HesUUd rt;H8 2;Hre111` ` ttM UUh a -medium-source-sizes-supported    l15 a'UUh b s,multiple-documents-supported    m14 B` c trN VUUh d $notification-profile    n17 q` e P UUh f page attributes    o18 UUh g PCONTEXT, type    p2 UUh h plex    q18,   r19 UUh i plexes-supported    s16 UUh j 8Print Dialog Manager, communicating with    t20 UU` k PrintCreateContext ͪUUh l encoding    u23 ٪UUh m request    v2 媟UU` n PrintDestroyContext UUh o encoding    w24 8UUh p ƪrequest    x3  UU` q PrintEndDoc UUh r encoding    y26 8!UUh s request    z6 -UU` t  PrintEndJob 9UUh u 1encoding    {25 EUUh v merequest    |4 QUU` w a PrintEndPage b]UUh x umencoding    }27 1iUUh y crequest    ~7 uUUh z -p"printer attributes    14 UUh { ƪprinter-model    16 UUh | ƪprinter-name    16 peUUh } ƪ-printer-resolutions-supported    16 1UU` ~ iPrintGetAttributes d UUh  ƪencoding    28 alUUh icrequest    9 ɪUU` kPrintGetContext onժUUh UUencoding    24 ᪊UUh UUrequest    3 UU` UUPrintGetDocumentData oUUh UUencoding    26 UUh UUrequest    5 UU` UUPrintGetImageResolution UUh enencoding    31 )UUh rerequest    11 5UU` tEPrintGetOneAttribute uAUUh encoding    28 vMUUh  request    9 YUU` bPrintGetPageDimensions odieUUh 1encoding    29 esq~UUh ƪrequest    8 }}UU` PrintGetPrinterList {;H8 UU;H UUh }reUUl event    12 ~UUl .XPBadContext, error description    2 UUl UU/XPBadSequence, error description    2 k*UUl on-xp-embedded-formats-supported    16 6UUl UU.xp-listfonts-modes    18,   19 BUUl o,xp-listfonts-modes-supported    16 NUUl UU,xp-page-attributes-supported    16 PrZUUd ioXPPrintNotify fUUl  event    11 rUUl es(xp-raw-formats-supported    16 Pr~UUl u xp-setup-proviso    17 UUl ƪxp-setup-state    17 UUl *xp-spooler-command-options    17 UUl  *xp-spooler-command-results    17 HH6GPrHHl;H$ 8UUH$ l  Hw 8roHw l ce,HH8UUHHl HH88,HHl d m}sdmnUULeftatdnmRightZdoqot ReferencedprdqoorIXdrp a x& u$@ a  Level1IX. $@ b Level1IX. 6@ c  Level2IX.  d H     h 8 Body.  e  H te c   h  Bulleted\t. f f CellBody. f g  CellHeading. f h  Footnote. vef iT Heading1Body. f jT  Heading2Body.  kP  Hu t    h  HeadingRunInBody.  l H     h  Indented. ad m  H  o   eh  Numbered.\t.  nA  H     h  Numbered1.\tNumbered. f o  TableFootnote. f pT   TableTitleT:Table : . p @ qP TitleBody. @ rP  Title2Body. @ sP Title3Body. f t T   TableTitleT:Table : . f u   CellHeading. f v  CellBody. f w   CellFootingl. @ y   l Footer.  z  Ho    f h  Body. @ {  IndexIX. @ | IndexIX. @ }  ActiveIX. @ ~   IgnoreCharsIX. @    SortOrderIX. 6@  Level2IX. @    GroupTitlesIX. de@    eHeader. @  ti   Header. @   SeparatorsIX. @    GroupTitlesIX. @    number. @    number. ڝ  ڝ  i_mF  ڝ  )   )  )    Emphasis  EquationVariables [  5U7568u@BC   Thin Medium Doublenu . Thick@  Very Thin U e W  U tH u v wH u v wH u v wH u v wH u v wFormat B  V tH u v wH u v wH u v wH u v wH u v wFormat A  Commentu v d BlackT!WhitenddARedddUGreendd BluedCyandMagentad Yellow Times-RomanCouriere Times-Bold Courier-BoldHelvetica-BoldCourierTimes Helvetica RegularWRegular BoldRegularObliqueItalicof0 y35<͡_D L{<9, _%]+c|+7(?0m%K6-HRüԱ+PSMprintproto-1.0.5/specs/xp_proto.book000064401431060000012000000540001126616702300200650ustar00alancstaff00002660200007  Aan,d  dfederal-=.- h225826: 2Sect: 7.2.2 Validation of Attribute Values.Validating Attribute Values/ h%15258: 1Heading: 3 X Print Attributes .section3 <$paratext> on page<$pagenum> <$paratext> on page<$pagenum>section<$paranum>section<$paranum> <$paratext> <$paratext> a q m a annTOC.doc b ann.mif c annIOM.doc d annapp.mif e anncov.mif fcoverPage.doc gxp_protoTOC.doc hxp_proto.mif ixp_protoTC.doc jxp_proto_app.mif kxp_proto_cov.mif lxp_protoIX.docd E A_d +SBAQCdALeftdBRight5J$$f5D m  2H. i ob #define.#definet. luf6HQm t>$g $1HeadingH:\tBody. seC6f7SE mp.C c1Step. S:.\tStep. f8HQm ot$ 2Heading H:.\tBody. f9HQm C6 3HeadingH:.. \tBody. f:HQ m6 4HeadingH:... \tBody. f;P mAuthor1Heading. $$ f< m H Body. $$f=B m 6 Bullet Bullet SymbolB:\t. CCf> mC U BulletCont Bullet Symbol. ? m H     h  HBulleted\tn. )w. ZZ6fQ mExtract. fRF mFigure Table RuleF:FIGURE . . fS mFootnote. $$fT@ m6  f  Function DeclBody. $.fUD m H Function Intro Function Decl. @V m$   header right. fWTm Heading1Body. fXT mHeading2Body. YP mH     h  HeadingRunInBody. FuZ mH     uhI o Indented. f[ mNote. $$\A mH    d 1h   Numbered.\tNumbered. $$]A mH     h  Numbered-decrement.\tNumbered. $$^A mH     h  Numbered0.\tNumbered. $$_A mH     h   Numbered1.\tNumbered. $$*f`D m H Protocol Protocol-item. $$faD m Protocol-arrow Protocol-item. H$ fbD mH  Protocol-errorsBody. @$HfcD mu r D.  Protocol-item Protocol-item. @d m  right footer. erC6feS mC Step S:.\tH. $$ff@ m6 ~   tr  r2i V z f     . Structure DeclBody. fgP mSubTitleAuthor.   fh m TableFootnote. fiT m TableTitleT:TABLE . . fjPm Title>Author. k m TitleBanner. l m TitleBanner1. m m TitleBanner2. $$ fn m Ho t WritersNote. $$ fo m H A>   XPTabLine3. $$fp m H    XPTabLine3NoSpace. HHHfqD ml.  D Protocol-item-indent Protocol-item. @rP m Title2Body. @sP mTitle3Body. otft m centeredcell. u@ m Varlistentry_i_Term_i\t v@ m Varlistentry_iTerm_i\t $$ wP m l Term Varlistentry\t~~ x@ ml VarlistentryTerm\t ~~ yP m  Term_iVarlistentry_i\t$$ zP m H RefSect1Title RefSect1Para\t$${ mProgramlisting. HHHf|D m.  D Protocol-item-indent-2 Protocol-item. $$f} mH BodyClose. HH~ mProgramExample. 1; 3tu m ArgInListi 3i_mFm Argument 3ڝmBitLabel ڝm Bullet Symbol 3ڝmCallout 3)m Definition term 3ڝm Emphasis 3ڝm EquationVariables 3ڝmField Reference 3ڝm Figure Label 3i_mFmFunction 3ڝmKeycap 3ڝm Keycap Table 3ڝm Keycap Text 3)m Literal 3)m Message 3ڝmNew Term 3ڝm Node Label 3ڝmPath 3ڝmProgram 3i_mFmProtocol 3ڝmRun-In Heading 3ڝm  Subscript 3ڝm  Superscript 3ڝmTree Cap 3ڝm Type Nameڝ 3ڝmVariable Reference 3uo&m  WritersNote 3tu m XPArgument 3)m XPEvent 3ڝm XPFunction 3)m  XPMessagem 3)m  XPRequest 3ڝmXPValue 3)m  XPValueInText ڝm )m  ڝm ڝm Bullet Symbol wm )m  wm )m  ڝm )m  )m )!u  )"v  [#w ڝ$m0[%v ChapNum uo&&w  Just Blue ['m  Figure Number `f(m   ))u  [*u Numbers i_mF+m ڝ- ڝ.Prevailing Fonto   mw d@mBlackAT!nWhitedd@AoReddd@pGreendd@ qBlued@rCyand@sMagentad@ tYellowZc@uPANTONE 485 CV485 d@vDark Blue Shading%xp_proto_cov.mifxp_protoTOC.docTOC1Heading2Heading)xp_proto.mifxp_protoIX.docIXIndex_ Times-Roman Times-BoldSymbolSymbolCourier Times-ItalicCourier-ObliquevTimes-BoldItalicHelvetica-Bold Courier-BoldCourierTimes HelveticaSymbol RegularRegular BoldRegularlObliqueItalicao3m]9 O. =`y-dAzJV->^e3*=9fߜ%'{5,^gT<sZ printproto-1.0.5/specs/xp_proto.ps000064401431060000012000007156651126616702300176020ustar00alancstaff00002660200007%!PS-Adobe-3.0 %%BoundingBox: (atend) %%Pages: (atend) %%PageOrder: (atend) %%DocumentFonts: (atend) %%Creator: Frame 5.1 %%DocumentData: Clean7Bit %%EndComments %%BeginProlog %- %- Frame ps_prolog 5.0, for use with Frame 5.0 products %- This ps_prolog file is Copyright (c) 1986-1996 Adobe Systems, Incoporated. %- All rights reserved. This ps_prolog file may be freely copied and %- distributed in conjunction with documents created using FrameMaker, %- FrameMaker/SGML FrameReader and FrameViewer as long as this %- copyright notice is preserved. %- %- FrameMaker users specify the proper paper size for each print job in the %- "Print" dialog's "Printer Paper Size" "Width" and "Height~ fields. If the %- printer that the PS file is sent to does not support the requested paper %- size, or if there is no paper tray of the proper size currently installed, %- then the job will not be printed. The following flag, if set to true, will %- cause the job to print on the default paper in such cases. /FMAllowPaperSizeMismatch false def %- %- Frame products normally print colors as their true color on a color printer %- or as shades of gray, based on luminance, on a black-and white printer. The %- following flag, if set to true, forces all non-white colors to print as pure %- black. This has no effect on bitmap images. /FMPrintAllColorsAsBlack false def %- %- Frame products can either set their own line screens or use a printer's %- default settings. Three flags below control this separately for no %- separations, spot separations and process separations. If a flag %- is true, then the default printer settings will not be changed. If it is %- false, Frame products will use their own settings from a table based on %- the printer's resolution. /FMUseDefaultNoSeparationScreen true def /FMUseDefaultSpotSeparationScreen true def /FMUseDefaultProcessSeparationScreen false def %- %- For any given PostScript printer resolution, Frame products have two sets of %- screen angles and frequencies for printing process separations, which are %- recomended by Adobe. The following variable chooses the higher frequencies %- when set to true or the lower frequencies when set to false. This is only %- effective if the appropriate FMUseDefault...SeparationScreen flag is false. /FMUseHighFrequencyScreens true def %- %- The following is a set of predefined optimal frequencies and angles for various %- common dpi settings. This is taken from "Advances in Color Separation Using %- PostScript Software Technology," from Adobe Systems (3/13/89 P.N. LPS 0043) %- and corrolated with information which is in various PPD (4.0) files. %- %- The "dpiranges" figure is the minimum dots per inch device resolution which %- can support this setting. The "low" and "high" values are controlled by the %- setting of the FMUseHighFrequencyScreens flag above. The "TDot" flags control %- the use of the "Yellow Triple Dot" feature whereby the frequency id divided by %- three, but the dot function is "trippled" giving a block of 3x3 dots per cell. %- %- PatFreq is a compromise pattern frequency for ps Level 2 printers which is close %- to the ideal WYSIWYG pattern frequency of 9 repetitions/inch but does not beat %- (too badly) against the screen frequencies of any separations for that DPI. % This is computed by taking dpi/9 as the ideal pixels per repetition, and then % computing a tiling size in printer pixels for each of the four separations as % (dpi/screenFreq)*(cos(screenAngle)+sin(screenAngle)) Actually, this is the same % for Cyan and Magenta). Then, we take a "nice" LCM of the tile sizes close to % the desired pattern tile where the beat factor is not more than 2 or 3. % /dpiranges [ 2540 2400 1693 1270 1200 635 600 0 ] def /CMLowFreqs [ 100.402 94.8683 89.2289 100.402 94.8683 66.9349 63.2456 47.4342 ] def /YLowFreqs [ 95.25 90.0 84.65 95.25 90.0 70.5556 66.6667 50.0 ] def /KLowFreqs [ 89.8026 84.8528 79.8088 89.8026 84.8528 74.8355 70.7107 53.033 ] def /CLowAngles [ 71.5651 71.5651 71.5651 71.5651 71.5651 71.5651 71.5651 71.5651 ] def /MLowAngles [ 18.4349 18.4349 18.4349 18.4349 18.4349 18.4349 18.4349 18.4349 ] def /YLowTDot [ true true false true true false false false ] def /CMHighFreqs [ 133.87 126.491 133.843 108.503 102.523 100.402 94.8683 63.2456 ] def /YHighFreqs [ 127.0 120.0 126.975 115.455 109.091 95.25 90.0 60.0 ] def /KHighFreqs [ 119.737 113.137 119.713 128.289 121.218 89.8026 84.8528 63.6395 ] def /CHighAngles [ 71.5651 71.5651 71.5651 70.0169 70.0169 71.5651 71.5651 71.5651 ] def /MHighAngles [ 18.4349 18.4349 18.4349 19.9831 19.9831 18.4349 18.4349 18.4349 ] def /YHighTDot [ false false true false false true true false ] def /PatFreq [ 10.5833 10.0 9.4055 10.5833 10.0 10.5833 10.0 9.375 ] def %- %- PostScript Level 2 printers contain an "Accurate Screens" feature which can %- improve process separation rendering at the expense of compute time. This %- flag is ignored by PostScript Level 1 printers. /FMUseAcccurateScreens true def %- %- The following PostScript procedure defines the spot function that Frame %- products will use for process separations. You may un-comment-out one of %- the alternative functions below, or use your own. %- %- Dot function /FMSpotFunction {abs exch abs 2 copy add 1 gt {1 sub dup mul exch 1 sub dup mul add 1 sub } {dup mul exch dup mul add 1 exch sub }ifelse } def %- %- Line function %- /FMSpotFunction { pop } def %- %- Elipse function %- /FMSpotFunction { dup 5 mul 8 div mul exch dup mul exch add %- sqrt 1 exch sub } def %- %- /FMversion (5.0) def % matches PS_VERSION in fmprintdriver % PostScript Level 1 = true, 2 = false /fMLevel1 /languagelevel where {pop languagelevel} {1} ifelse 2 lt def % Set up Color vs. Black-and-White /FMPColor fMLevel1 { false /colorimage where {pop pop true} if } { % statusdict /processcolors known { % statusdict /processcolors get exec % } {1} ifelse % 1 gt true } ifelse def /FrameDict 400 dict def % should check this value each time changes made % % For NeWS we add a fake errordict, so we can psh files % systemdict /errordict known not {/errordict 10 dict def errordict /rangecheck {stop} put} if %- The readline in PS 23.0 doesn't recognize cr's as nl's on AppleTalk FrameDict /tmprangecheck errordict /rangecheck get put % save old rangecheck errordict /rangecheck {FrameDict /bug true put} put % will flag bug found FrameDict /bug false put % flag bug not found mark % since we're not sure what will happen next %- Some PS machines read past the CR, so keep the following 3 lines together! currentfile 5 string readline 00 0000000000 cleartomark % junk from readline and rangecheck errordict /rangecheck FrameDict /tmprangecheck get put % restore rangecheck FrameDict /bug get { % redefine readline if last one got a rangecheck /readline { /gstring exch def /gfile exch def /gindex 0 def { gfile read pop % get a char dup 10 eq {exit} if % exit if LF dup 13 eq {exit} if % exit if CR gstring exch gindex exch put % store it away /gindex gindex 1 add def % bump index } loop pop % eol character gstring 0 gindex getinterval true % simulate real readline } bind def } if % outer-world defs /FMshowpage /showpage load def /FMquit /quit load def /FMFAILURE { % enter with two error strings on the stack dup = flush % send a copy of the message to the console FMshowpage % msg on a page by itself, so it can't be, say, black on black /Helvetica findfont 12 scalefont setfont 72 200 moveto show 72 220 moveto show FMshowpage % we might be in the middle of some EPS, where "showpage" FMquit % and "quit" are redefined } def % only used once at most, so no bind /FMVERSION { FMversion ne { (Adobe Frame product version does not match ps_prolog! Check installation;) (also check ~/fminit and ./fminit for old versions) FMFAILURE } if } def % only used at startup, so no bind /FMBADEPSF { % Call with bad operator name on stack (as a string) (Adobe's PostScript Language Reference Manual, 2nd Edition, section H.2.4) (says your EPS file is not valid, as it calls X ) dup dup (X) search pop exch pop exch pop length % parmstr errstr errstr indx 5 -1 roll % errstr errstr index parmstr putinterval % errstr FMFAILURE } def % standard concatprocs routine /fmConcatProcs { /proc2 exch cvlit def/proc1 exch cvlit def/newproc proc1 length proc2 length add array def newproc 0 proc1 putinterval newproc proc1 length proc2 putinterval newproc cvx }def % Put all local variables here in alphabetical order. FrameDict begin [ /ALDsave /FMdicttop /FMoptop /FMpointsize /FMsaveobject /b /bitmapsave /blut /bpside /bs /bstring /bwidth /c /cf /cs /cynu /depth /edown /fh /fillvals /fw /fx /fy /g /gfile /gindex /grnt /gryt /gstring /height /hh /i /im /indx /is /k /kk /landscape /lb /len /llx /lly /m /magu /manualfeed /n /offbits /onbits /organgle /orgbangle /orgbfreq /orgbproc /orgbxfer /orgfreq /orggangle /orggfreq /orggproc /orggxfer /orgmatrix /orgproc /orgrangle /orgrfreq /orgrproc /orgrxfer /orgxfer /pagesave /paperheight /papersizedict /paperwidth /pos /pwid /r /rad /redt /sl /str /tran /u /urx /ury /val /width /width /ws /ww /x /x1 /x2 /xindex /xpoint /xscale /xx /y /y1 /y2 /yelu /yindex /ypoint /yscale /yy ] { 0 def } forall % Start of PDF/Acrobat support % Bind def /FmBD {bind def} bind def systemdict /pdfmark known { /fMAcrobat true def % FmPD is a conditional PDFMark /FmPD /pdfmark load def % FmPT is a show text operator which only show up when distiller is active /FmPT /show load def % FmPD2 and FmPA are Acrobat 2.0-specific currentdistillerparams /CoreDistVersion get 2000 ge { % FmPD2 is like FmPD but for Acrobat 2.0-specific PDF /FmPD2 /pdfmark load def % x y/name FmPA % is equivalent to % [/Dest/name/View[/FitH x y FmDC exch pop]/DEST FmPD % It is a shortcut for pagragraph Uinique ID designators whic occurr commonly. /FmPA { mark exch /Dest exch 5 3 roll /View [ /XYZ null 6 -2 roll FmDC exch pop null] /DEST FmPD }FmBD } { % These are No-Ops for Distiller 1.0 /FmPD2 /cleartomark load def /FmPA {pop pop pop}FmBD } ifelse } { % these are the No-Ops for regular PostScript /fMAcrobat false def /FmPD /cleartomark load def /FmPD2 /cleartomark load def /FmPT /pop load def /FmPA {pop pop pop}FmBD } ifelse % This convert a set of X Y coordinates from the current user space to the default % PostScript coordinates needed by some pdfmark variants. We also convert to % integer because the distiller doesn't always like floats! /FmDC { transform fMDefaultMatrix itransform cvi exch cvi exch }FmBD % This converts four numbers into a bounding box making sure the first two are maller than the last two /FmBx { dup 3 index lt {3 1 roll exch} if 1 index 4 index lt {4 -1 roll 3 1 roll exch 4 1 roll} if }FmBD % End of PDF/Acrobat support % % Color separation code % % Constants. /FMnone 0 def /FMcyan 1 def /FMmagenta 2 def /FMyellow 3 def /FMblack 4 def /FMcustom 5 def /fMNegative false def % we are inverting the page % Variables. /FrameSepIs FMnone def % separation we are printing % If FrameSepIs is FMcustom, this is the custom color /FrameSepBlack 0 def /FrameSepYellow 0 def /FrameSepMagenta 0 def /FrameSepCyan 0 def /FrameSepRed 1 def /FrameSepGreen 1 def /FrameSepBlue 1 def /FrameCurGray 1 def /FrameCurPat null def /FrameCurColors [ 0 0 0 1 0 0 0 ] def % c m y k r g b % Utility routines /FrameColorEpsilon .001 def % epsilon by which values can differ and sill be equal /eqepsilon { % v1 v2 eqeps bool sub dup 0 lt {neg} if FrameColorEpsilon le } bind def % are the cmyk and cmykrgb arrays on the stack the same color? /FrameCmpColorsCMYK { % [ c1 m1 y1 k1 ] [ c2 m2 y2 k2 r2 g2 b2] -> bool 2 copy 0 get exch 0 get eqepsilon { 2 copy 1 get exch 1 get eqepsilon { 2 copy 2 get exch 2 get eqepsilon { 3 get exch 3 get eqepsilon } {pop pop false} ifelse }{pop pop false} ifelse } {pop pop false} ifelse } bind def % are the rgb and cmykrgb arrays on the stack the same color? /FrameCmpColorsRGB { % [ r1 g1 b1 ] [ c2 m2 y2 k2 r2 g2 b2] -> bool 2 copy 4 get exch 0 get eqepsilon { 2 copy 5 get exch 1 get eqepsilon { 6 get exch 2 get eqepsilon }{pop pop false} ifelse } {pop pop false} ifelse } bind def % convert r g b to c m y k /RGBtoCMYK { % r g b 1 exch sub % r g y 3 1 roll % y r g 1 exch sub % y r m 3 1 roll % m y r 1 exch sub % m y c 3 1 roll % c m y 3 copy % c m y c m y 2 copy % c m y c m y m y le { pop } { exch pop } ifelse % c m y c min(m,y) 2 copy % c m y c min(m,y) c min(m,y) le { pop } { exch pop } ifelse % c m y min(c, min(m,y)) dup dup dup % c m y k k k k 6 1 roll % c k m y k k k 4 1 roll % c k m k y k k 7 1 roll % k c k m k y k sub % k c k m k y 6 1 roll % y k c k m k sub % y k c k m 5 1 roll % m y k c k sub % m y k c 4 1 roll % c m y k } bind def /CMYKtoRGB { % c m y k CMYKtoRGB r g b dup dup 4 -1 roll add % c m k k y+k 5 1 roll 3 -1 roll add % y+k c k m+k 4 1 roll add % m+k y+k c+k 1 exch sub dup 0 lt {pop 0} if 3 1 roll % r m+k y+k 1 exch sub dup 0 lt {pop 0} if exch % r b m+k 1 exch sub dup 0 lt {pop 0} if exch % r g b } bind def % Public routines % Happens at the top of each page that is a separation /FrameSepInit { 1.0 RealSetgray } bind def % Tell the separation code that this separation is for a custom color /FrameSetSepColor { % c m y k r g b /FrameSepBlue exch def /FrameSepGreen exch def /FrameSepRed exch def /FrameSepBlack exch def /FrameSepYellow exch def /FrameSepMagenta exch def /FrameSepCyan exch def /FrameSepIs FMcustom def setCurrentScreen } bind def % Tell the separation code that this separation is Cyan /FrameSetCyan { /FrameSepBlue 1.0 def /FrameSepGreen 1.0 def /FrameSepRed 0.0 def /FrameSepBlack 0.0 def /FrameSepYellow 0.0 def /FrameSepMagenta 0.0 def /FrameSepCyan 1.0 def /FrameSepIs FMcyan def setCurrentScreen } bind def % Tell the separation code that this separation is Magenta /FrameSetMagenta { /FrameSepBlue 1.0 def /FrameSepGreen 0.0 def /FrameSepRed 1.0 def /FrameSepBlack 0.0 def /FrameSepYellow 0.0 def /FrameSepMagenta 1.0 def /FrameSepCyan 0.0 def /FrameSepIs FMmagenta def setCurrentScreen } bind def % Tell the separation code that this separation is Yellow /FrameSetYellow { /FrameSepBlue 0.0 def /FrameSepGreen 1.0 def /FrameSepRed 1.0 def /FrameSepBlack 0.0 def /FrameSepYellow 1.0 def /FrameSepMagenta 0.0 def /FrameSepCyan 0.0 def /FrameSepIs FMyellow def setCurrentScreen } bind def % Tell the separation code that this separation is Black /FrameSetBlack { /FrameSepBlue 0.0 def /FrameSepGreen 0.0 def /FrameSepRed 0.0 def /FrameSepBlack 1.0 def /FrameSepYellow 0.0 def /FrameSepMagenta 0.0 def /FrameSepCyan 0.0 def /FrameSepIs FMblack def setCurrentScreen } bind def % Tell the separation code we are not doing a separation /FrameNoSep { % /FrameSepIs FMnone def setCurrentScreen } bind def % Initialize the separation code with all the custom colors we are % separating (not process colors) /FrameSetSepColors { % list of arrays of [c m y k r g b] count FrameDict begin [ exch 1 add 1 roll ] /FrameSepColors % array of arrays of colors we are separating exch def end } bind def % is this color array in the array of custom color separations? /FrameColorInSepListCMYK { % [ c m y k ] -> bool FrameSepColors { % color elem-of-array exch dup 3 -1 roll % color color elem FrameCmpColorsCMYK % color bool { pop true exit } if } forall % exits with either [color] or true dup true ne {pop false} if } bind def /FrameColorInSepListRGB { % [ r g b ] -> bool FrameSepColors { % color elem-of-array exch dup 3 -1 roll % color color elem FrameCmpColorsRGB % color bool { pop true exit } if } forall % exits with either [color] or true dup true ne {pop false} if } bind def % Level 1 color operators saved and redefined /RealSetgray /setgray load def /RealSetrgbcolor /setrgbcolor load def /RealSethsbcolor /sethsbcolor load def end % Setgray patch /setgray { % num FrameDict begin FrameSepIs FMnone eq { RealSetgray } { % go to white unless the current sep color is black FrameSepIs FMblack eq { RealSetgray } { FrameSepIs FMcustom eq FrameSepRed 0 eq and FrameSepGreen 0 eq and FrameSepBlue 0 eq and { RealSetgray } { 1 RealSetgray pop } ifelse } ifelse } ifelse end } bind def /setrgbcolor { % r g b FrameDict begin FrameSepIs FMnone eq { RealSetrgbcolor } { 3 copy [ 4 1 roll ] % r g b [ r g b ] FrameColorInSepListRGB { FrameSepBlue eq exch FrameSepGreen eq and exch FrameSepRed eq and { 0 } { 1 } ifelse } { FMPColor { RealSetrgbcolor currentcmykcolor } { RGBtoCMYK } ifelse FrameSepIs FMblack eq {1.0 exch sub 4 1 roll pop pop pop} { FrameSepIs FMyellow eq {pop 1.0 exch sub 3 1 roll pop pop} { FrameSepIs FMmagenta eq {pop pop 1.0 exch sub exch pop } { FrameSepIs FMcyan eq {pop pop pop 1.0 exch sub } {pop pop pop pop 1} ifelse } ifelse } ifelse } ifelse } ifelse RealSetgray } ifelse end } bind def /sethsbcolor { FrameDict begin FrameSepIs FMnone eq { RealSethsbcolor } { RealSethsbcolor % safe since we will overwrite the color state currentrgbcolor % r g b - Let PostsCript to the conversion. setrgbcolor % call our version } ifelse end } bind def FrameDict begin /setcmykcolor where { pop /RealSetcmykcolor /setcmykcolor load def } { /RealSetcmykcolor { 4 1 roll 3 { 3 index add 0 max 1 min 1 exch sub 3 1 roll} repeat RealSetrgbcolor pop } bind def } ifelse userdict /setcmykcolor { % c m y k FrameDict begin FrameSepIs FMnone eq { RealSetcmykcolor } { 4 copy [ 5 1 roll ] FrameColorInSepListCMYK { FrameSepBlack eq exch FrameSepYellow eq and exch FrameSepMagenta eq and exch FrameSepCyan eq and { 0 } { 1 } ifelse } { FrameSepIs FMblack eq {1.0 exch sub 4 1 roll pop pop pop} { FrameSepIs FMyellow eq {pop 1.0 exch sub 3 1 roll pop pop} { FrameSepIs FMmagenta eq {pop pop 1.0 exch sub exch pop } { FrameSepIs FMcyan eq {pop pop pop 1.0 exch sub } {pop pop pop pop 1} ifelse } ifelse } ifelse } ifelse } ifelse RealSetgray } ifelse end } bind put % Set up a prototype pattern for PostScript Level 2 fMLevel1 { % set up screen functions for the patterns in PS level 1 % each entry contains an angle, spot function, flipped spot function, % gray level and frequency multiplier. /patScreenDict 7 dict dup begin <0f1e3c78f0e1c387> [ 45 { pop } {exch pop} .5 2 sqrt] FmBD <0f87c3e1f0783c1e> [ 135 { pop } {exch pop} .5 2 sqrt] FmBD [ 0 { pop } dup .5 2 ] FmBD [ 90 { pop } dup .5 2 ] FmBD <8142241818244281> [ 45 { 2 copy lt {exch} if pop} dup .75 2 sqrt] FmBD <03060c183060c081> [ 45 { pop } {exch pop} .875 2 sqrt] FmBD <8040201008040201> [ 135 { pop } {exch pop} .875 2 sqrt] FmBD end def } { % prototype level 2 pattern dictionary % define some PostScript procedures for known jaggy patterns. /patProcDict 5 dict dup begin <0f1e3c78f0e1c387> { 3 setlinewidth -1 -1 moveto 9 9 lineto stroke 4 -4 moveto 12 4 lineto stroke -4 4 moveto 4 12 lineto stroke} bind def <0f87c3e1f0783c1e> { 3 setlinewidth -1 9 moveto 9 -1 lineto stroke -4 4 moveto 4 -4 lineto stroke 4 12 moveto 12 4 lineto stroke} bind def <8142241818244281> { 1 setlinewidth -1 9 moveto 9 -1 lineto stroke -1 -1 moveto 9 9 lineto stroke } bind def <03060c183060c081> { 1 setlinewidth -1 -1 moveto 9 9 lineto stroke 4 -4 moveto 12 4 lineto stroke -4 4 moveto 4 12 lineto stroke} bind def <8040201008040201> { 1 setlinewidth -1 9 moveto 9 -1 lineto stroke -4 4 moveto 4 -4 lineto stroke 4 12 moveto 12 4 lineto stroke} bind def end def /patDict 15 dict dup begin /PatternType 1 def % Always 1 for PS Level 2 /PaintType 2 def % Uncolored pattern /TilingType 3 def % constant spacing and faster tiling /BBox [ 0 0 8 8 ] def % bounding box /XStep 8 def % X offset /YStep 8 def % Y offset /PaintProc { begin patProcDict bstring known { patProcDict bstring get exec } { 8 8 true [1 0 0 -1 0 8] bstring imagemask } ifelse end } bind def end def } ifelse %combineColor puts together the current gray value (which could also be %a fraction of on bits for a fill pattern and the current color and calls %the appropriate function % /combineColor { FrameSepIs FMnone eq { graymode fMLevel1 or not { % Level 2 pattern [/Pattern [/DeviceCMYK]] setcolorspace FrameCurColors 0 4 getinterval aload pop FrameCurPat setcolor } { FrameCurColors 3 get 1.0 ge { FrameCurGray RealSetgray } { fMAcrobat not FMPColor graymode and and { 0 1 3 { FrameCurColors exch get 1 FrameCurGray sub mul } for RealSetcmykcolor } { 4 1 6 { FrameCurColors exch get graymode { 1 exch sub 1 FrameCurGray sub mul 1 exch sub } { 1.0 lt {FrameCurGray} {1} ifelse } ifelse } for RealSetrgbcolor } ifelse } ifelse } ifelse } { % separation case FrameCurColors 0 4 getinterval aload FrameColorInSepListCMYK { FrameSepBlack eq exch FrameSepYellow eq and exch FrameSepMagenta eq and exch FrameSepCyan eq and FrameSepIs FMcustom eq and { FrameCurGray } { 1 } ifelse } { FrameSepIs FMblack eq {FrameCurGray 1.0 exch sub mul 1.0 exch sub 4 1 roll pop pop pop} { FrameSepIs FMyellow eq {pop FrameCurGray 1.0 exch sub mul 1.0 exch sub 3 1 roll pop pop} { FrameSepIs FMmagenta eq {pop pop FrameCurGray 1.0 exch sub mul 1.0 exch sub exch pop } { FrameSepIs FMcyan eq {pop pop pop FrameCurGray 1.0 exch sub mul 1.0 exch sub } {pop pop pop pop 1} ifelse } ifelse } ifelse } ifelse } ifelse graymode fMLevel1 or not { % Level 2 pattern [/Pattern [/DeviceGray]] setcolorspace FrameCurPat setcolor } { graymode not fMLevel1 and { % Level 1 patterns are either all there or not there at all dup 1 lt {pop FrameCurGray} if } if RealSetgray } ifelse } ifelse } bind def /savematrix { orgmatrix currentmatrix pop } bind def /restorematrix { orgmatrix setmatrix } bind def /fMDefaultMatrix matrix defaultmatrix def /fMatrix2 matrix def /dpi 72 0 fMDefaultMatrix dtransform dup mul exch dup mul add sqrt def % freq and sangle are used for ps Level 1 pattern building. /freq dpi dup 72 div round dup 0 eq {pop 1} if 8 mul div def /sangle 1 0 fMDefaultMatrix dtransform exch atan def sangle fMatrix2 rotate fMDefaultMatrix fMatrix2 concatmatrix dup 0 get /sflipx exch def 3 get /sflipy exch def % % screen index depending on dpi % - screenIndex smallint /screenIndex { 0 1 dpiranges length 1 sub { dup dpiranges exch get 1 sub dpi le {exit} {pop} ifelse } for } bind def % % These routines get the standard Adobe frequencies, angles, and spot functions % depending on the DPI % % - getCyanScreen freq angle spotfunction /getCyanScreen { FMUseHighFrequencyScreens { CHighAngles CMHighFreqs} {CLowAngles CMLowFreqs} ifelse screenIndex dup 3 1 roll get 3 1 roll get /FMSpotFunction load } bind def % % - getMagentaScreen freq angle spotFunction /getMagentaScreen { FMUseHighFrequencyScreens { MHighAngles CMHighFreqs } {MLowAngles CMLowFreqs} ifelse screenIndex dup 3 1 roll get 3 1 roll get /FMSpotFunction load } bind def % % - getYellowScreen freq angle spotFunction % note that some of these use a "tripple dot" function at 1/3 the frequency /getYellowScreen { FMUseHighFrequencyScreens { YHighTDot YHighFreqs} { YLowTDot YLowFreqs } ifelse screenIndex dup 3 1 roll get 3 1 roll get { 3 div {2 { 1 add 2 div 3 mul dup floor sub 2 mul 1 sub exch} repeat FMSpotFunction } } {/FMSpotFunction load } ifelse 0.0 exch } bind def % % - getBlackScreen freq angle spotFunction /getBlackScreen { FMUseHighFrequencyScreens { KHighFreqs } { KLowFreqs } ifelse screenIndex get 45.0 /FMSpotFunction load } bind def % % - getSpotScreen freq angle spotFunction /getSpotScreen { getBlackScreen } bind def % % - getCompositeScreen freq angle spotFunction /getCompositeScreen { getBlackScreen } bind def % FmSetScreen sets the screen for either PostScript Level 1 or Level 2 and optionally % sets the accuratescreens flag in the latter case % freq angle spotfunction FMSetScreen - /FMSetScreen fMLevel1 { /setscreen load }{ { 8 dict begin /HalftoneType 1 def /SpotFunction exch def /Angle exch def /Frequency exch def /AccurateScreens FMUseAcccurateScreens def currentdict end sethalftone } bind } ifelse def % This sets the default screen as was set at the beginning of the job % - setDefaultScreen - /setDefaultScreen { FMPColor { orgrxfer cvx orggxfer cvx orgbxfer cvx orgxfer cvx setcolortransfer } { orgxfer cvx settransfer } ifelse orgfreq organgle orgproc cvx setscreen } bind def % This sets the current screen depending on FrameSepIs % - setCurrentScreen - /setCurrentScreen { FrameSepIs FMnone eq { FMUseDefaultNoSeparationScreen { setDefaultScreen } { getCompositeScreen FMSetScreen } ifelse } { FrameSepIs FMcustom eq { FMUseDefaultSpotSeparationScreen { setDefaultScreen } { getSpotScreen FMSetScreen } ifelse } { FMUseDefaultProcessSeparationScreen { setDefaultScreen } { FrameSepIs FMcyan eq { getCyanScreen FMSetScreen } { FrameSepIs FMmagenta eq { getMagentaScreen FMSetScreen } { FrameSepIs FMyellow eq { getYellowScreen FMSetScreen } { getBlackScreen FMSetScreen } ifelse } ifelse } ifelse } ifelse } ifelse } ifelse } bind def end % End of Color separation code % /FMDOCUMENT { % xscale yscale edown negative paperwidth paperheight manfeed numcopies numfonts array /FMfonts exch def % Why isn't this in FrameDict??? /#copies exch def FrameDict begin 0 ne /manualfeed exch def /paperheight exch def /paperwidth exch def 0 ne /fMNegative exch def % invert page 0 ne /edown exch def % flip page along y axis /yscale exch def /xscale exch def fMLevel1 { manualfeed {setmanualfeed} if /FMdicttop countdictstack 1 add def % some PS's leave junk on dict ... /FMoptop count def % ...or on operand stack... setpapername % This stuff may alter the transfer/screen/angle manualfeed {true} {papersize} ifelse % true->more work to do {manualpapersize} {false} ifelse % true->more work to do {desperatepapersize} {false} ifelse % true->failed completely {papersizefailure} if count -1 FMoptop {pop pop} for countdictstack -1 FMdicttop {pop end} for %...if tray not installed } {2 dict dup /PageSize [paperwidth paperheight] put manualfeed {dup /ManualFeed manualfeed put} if {setpagedevice} stopped {papersizefailure} if } ifelse % fMLevel1 FMPColor { currentcolorscreen cvlit /orgproc exch def /organgle exch def /orgfreq exch def cvlit /orgbproc exch def /orgbangle exch def /orgbfreq exch def cvlit /orggproc exch def /orggangle exch def /orggfreq exch def cvlit /orgrproc exch def /orgrangle exch def /orgrfreq exch def currentcolortransfer fMNegative { 1 1 4 { pop { 1 exch sub } fmConcatProcs 4 1 roll } for 4 copy setcolortransfer } if cvlit /orgxfer exch def cvlit /orgbxfer exch def cvlit /orggxfer exch def cvlit /orgrxfer exch def } { currentscreen cvlit /orgproc exch def /organgle exch def /orgfreq exch def currenttransfer fMNegative { { 1 exch sub } fmConcatProcs dup settransfer } if cvlit /orgxfer exch def } ifelse end % FrameDict } def % only used at startup, so no bind /FMBEGINPAGE { % pagewidth pageheight landscape color-arrays count FrameDict begin % for the whole page... /pagesave save def 3.86 setmiterlimit /landscape exch 0 ne def landscape { % check for landscape 90 rotate 0 exch dup /pwid exch def neg translate pop }{ pop /pwid exch def } ifelse edown { [-1 0 0 1 pwid 0] concat } if % paint the whole page in "white". If the page is inverted, then % this will actually paint our black background 0 0 moveto paperwidth 0 lineto paperwidth paperheight lineto 0 paperheight lineto 0 0 lineto 1 setgray fill xscale yscale scale /orgmatrix matrix def gsave % for CLIP } def % only used infrequently, so no bind /FMENDPAGE { grestore % for CLIP pagesave restore end % FrameDict showpage } def % only used infrequently, so no bind /FMFONTDEFINE { % fontindex nonstd_encoding fontname -- FrameDict begin findfont % fontindex nonstd_encoding font ReEncode % fontindex font' 1 index exch % fontindex fontindex font' definefont % fontindex font" FMfonts 3 1 roll % FMfonts fontindex font" put end % FrameDict } def % only used infrequently, so no bind /FMFILLS { FrameDict begin dup array /fillvals exch def dict /patCache exch def end % framedict } def % Only called once, so no bind /FMFILL { FrameDict begin fillvals 3 1 roll put end % FrameDict } def % only used infrequently, so no bind % Set things to a known, quiescent state, for when we switch to another writer /FMNORMALIZEGRAPHICS { newpath 1 setlinewidth 0 setlinecap 0 0 0 sethsbcolor 0 setgray % Not FMsetgray; only called outside of our environment! } bind def /FMBEGINEPSF { % llx lly urx ury fw fh fx fy end % FrameDict /FMEPSF save def % in userdict /showpage {} def % this def is in userdict %- See Adobe's "PostScript Language Reference Manual, 2nd Edition", page 714. %- "...the following operators MUST NOT be used in an EPS file:" (emphasis ours) /banddevice {(banddevice) FMBADEPSF} def /clear {(clear) FMBADEPSF} def /cleardictstack {(cleardictstack) FMBADEPSF} def % FMBADEPSF knows this is the longest! /copypage {(copypage) FMBADEPSF} def /erasepage {(erasepage) FMBADEPSF} def /exitserver {(exitserver) FMBADEPSF} def /framedevice {(framedevice) FMBADEPSF} def /grestoreall {(grestoreall) FMBADEPSF} def /initclip {(initclip) FMBADEPSF} def /initgraphics {(initgraphics) FMBADEPSF} def % /initmatrix {(initmatrix) FMBADEPSF} def % Aldus Freehand 4.0 epsf uses this harmlessly /quit {(quit) FMBADEPSF} def /renderbands {(renderbands) FMBADEPSF} def /setglobal {(setglobal) FMBADEPSF} def /setpagedevice {(setpagedevice) FMBADEPSF} def /setshared {(setshared) FMBADEPSF} def /startjob {(startjob) FMBADEPSF} def /lettertray {(lettertray) FMBADEPSF} def /letter {(letter) FMBADEPSF} def /lettersmall {(lettersmall) FMBADEPSF} def /11x17tray {(11x17tray) FMBADEPSF} def /11x17 {(11x17) FMBADEPSF} def /ledgertray {(ledgertray) FMBADEPSF} def /ledger {(ledger) FMBADEPSF} def /legaltray {(legaltray) FMBADEPSF} def /legal {(legal) FMBADEPSF} def /statementtray {(statementtray) FMBADEPSF} def /statement {(statement) FMBADEPSF} def /executivetray {(executivetray) FMBADEPSF} def /executive {(executive) FMBADEPSF} def /a3tray {(a3tray) FMBADEPSF} def /a3 {(a3) FMBADEPSF} def /a4tray {(a4tray) FMBADEPSF} def /a4 {(a4) FMBADEPSF} def /a4small {(a4small) FMBADEPSF} def /b4tray {(b4tray) FMBADEPSF} def /b4 {(b4) FMBADEPSF} def /b5tray {(b5tray) FMBADEPSF} def /b5 {(b5) FMBADEPSF} def FMNORMALIZEGRAPHICS % in case we're in a strange state [/fy /fx /fh /fw /ury /urx /lly /llx] {exch def} forall % neat trick fx fw 2 div add fy fh 2 div add translate rotate fw 2 div neg fh 2 div neg translate fw urx llx sub div fh ury lly sub div scale % then scale llx neg lly neg translate % then compensate for LL offset /FMdicttop countdictstack 1 add def % high-water mark of dict stack /FMoptop count def % tricky! "/FMoptop" on stack } bind def /FMENDEPSF { count -1 FMoptop {pop pop} for % clear EPS junk from operand stack countdictstack -1 FMdicttop {pop end} for % ditto for dict stack FMEPSF restore FrameDict begin % for the whole page... } bind def FrameDict begin % put most defs here /setmanualfeed { %%BeginFeature *ManualFeed True statusdict /manualfeed true put %%EndFeature } bind def /max {2 copy lt {exch} if pop} bind def /min {2 copy gt {exch} if pop} bind def /inch {72 mul} def /pagedimen { % name width height paperheight sub abs 16 lt exch % 16pt is an arbitrary slop amount paperwidth sub abs 16 lt and {/papername exch def} {pop} ifelse } bind def /setpapername { % Already set up: paperwidth paperheight and manualfeed /papersizedict 14 dict def % one for /papername, one for /unknown papersizedict begin /papername /unknown def % in case no match /Letter 8.5 inch 11.0 inch pagedimen /LetterSmall 7.68 inch 10.16 inch pagedimen /Tabloid 11.0 inch 17.0 inch pagedimen /Ledger 17.0 inch 11.0 inch pagedimen /Legal 8.5 inch 14.0 inch pagedimen /Statement 5.5 inch 8.5 inch pagedimen /Executive 7.5 inch 10.0 inch pagedimen /A3 11.69 inch 16.5 inch pagedimen /A4 8.26 inch 11.69 inch pagedimen /A4Small 7.47 inch 10.85 inch pagedimen /B4 10.125 inch 14.33 inch pagedimen /B5 7.16 inch 10.125 inch pagedimen end } bind def /papersize { papersizedict begin /Letter {lettertray letter} def /LetterSmall {lettertray lettersmall} def /Tabloid {11x17tray 11x17} def /Ledger {ledgertray ledger} def /Legal {legaltray legal} def /Statement {statementtray statement} def /Executive {executivetray executive} def /A3 {a3tray a3} def /A4 {a4tray a4} def /A4Small {a4tray a4small} def /B4 {b4tray b4} def /B5 {b5tray b5} def /unknown {unknown} def papersizedict dup papername known {papername} {/unknown} ifelse get end statusdict begin stopped end % return true if more work to do } bind def /manualpapersize { papersizedict begin /Letter {letter} def /LetterSmall {lettersmall} def /Tabloid {11x17} def /Ledger {ledger} def /Legal {legal} def /Statement {statement} def /Executive {executive} def /A3 {a3} def /A4 {a4} def /A4Small {a4small} def /B4 {b4} def /B5 {b5} def /unknown {unknown} def papersizedict dup papername known {papername} {/unknown} ifelse get end stopped % return true if more work to do } bind def /desperatepapersize { statusdict /setpageparams known { paperwidth paperheight 0 1 statusdict begin {setpageparams} stopped % return true iff failed end } {true} ifelse % return true iff failed } bind def /papersizefailure { FMAllowPaperSizeMismatch not { (The requested paper size is not available in any currently-installed tray) (Edit the PS file to "FMAllowPaperSizeMismatch true" to use default tray) FMFAILURE } if } def % % Font re-encoding to include diacritics % /DiacriticEncoding [ /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /space /exclam /quotedbl /numbersign /dollar /percent /ampersand /quotesingle /parenleft /parenright /asterisk /plus /comma /hyphen /period /slash /zero /one /two /three /four /five /six /seven /eight /nine /colon /semicolon /less /equal /greater /question /at /A /B /C /D /E /F /G /H /I /J /K /L /M /N /O /P /Q /R /S /T /U /V /W /X /Y /Z /bracketleft /backslash /bracketright /asciicircum /underscore /grave /a /b /c /d /e /f /g /h /i /j /k /l /m /n /o /p /q /r /s /t /u /v /w /x /y /z /braceleft /bar /braceright /asciitilde /.notdef /Adieresis /Aring /Ccedilla /Eacute /Ntilde /Odieresis /Udieresis /aacute /agrave /acircumflex /adieresis /atilde /aring /ccedilla /eacute /egrave /ecircumflex /edieresis /iacute /igrave /icircumflex /idieresis /ntilde /oacute /ograve /ocircumflex /odieresis /otilde /uacute /ugrave /ucircumflex /udieresis /dagger /.notdef /cent /sterling /section /bullet /paragraph /germandbls /registered /copyright /trademark /acute /dieresis /.notdef /AE /Oslash /.notdef /.notdef /.notdef /.notdef /yen /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /ordfeminine /ordmasculine /.notdef /ae /oslash /questiondown /exclamdown /logicalnot /.notdef /florin /.notdef /.notdef /guillemotleft /guillemotright /ellipsis /.notdef /Agrave /Atilde /Otilde /OE /oe /endash /emdash /quotedblleft /quotedblright /quoteleft /quoteright /.notdef /.notdef /ydieresis /Ydieresis /fraction /currency /guilsinglleft /guilsinglright /fi /fl /daggerdbl /periodcentered /quotesinglbase /quotedblbase /perthousand /Acircumflex /Ecircumflex /Aacute /Edieresis /Egrave /Iacute /Icircumflex /Idieresis /Igrave /Oacute /Ocircumflex /.notdef /Ograve /Uacute /Ucircumflex /Ugrave /dotlessi /circumflex /tilde /macron /breve /dotaccent /ring /cedilla /hungarumlaut /ogonek /caron ] def /ReEncode { % nonstd_encoding font -- reencodedfont dup % nonstd_encoding font font length % nonstd_encoding font dictlength dict begin % nonstd_encoding font % currentdict = newdict {% forall % forall is over font to be copied 1 index /FID ne % skip FID {def} % defs go into newfontdict which is currentdict {pop pop} ifelse % copy all keys including /Encoding } forall % nonstd_encoding 0 eq {/Encoding DiacriticEncoding def} if % -- currentdict % push a copy of the copied font dict onto operand stack end % font' % before popping it off dictionary stack } bind def FMPColor % setup procs for color printing { /BEGINBITMAPCOLOR { % iw, ih, width, height, theta, x y BITMAPCOLOR} def /BEGINBITMAPCOLORc { % iw, ih, width, height, theta, x y BITMAPCOLORc} def /BEGINBITMAPTRUECOLOR { BITMAPTRUECOLOR } def /BEGINBITMAPTRUECOLORc { BITMAPTRUECOLORc } def /BEGINBITMAPCMYK { BITMAPCMYK } def /BEGINBITMAPCMYKc { BITMAPCMYKc } def } % setup procs for B&W printing { /BEGINBITMAPCOLOR { % iw, ih, width, height, theta, x y BITMAPGRAY} def /BEGINBITMAPCOLORc { % iw, ih, width, height, theta, x y BITMAPGRAYc} def /BEGINBITMAPTRUECOLOR { BITMAPTRUEGRAY } def /BEGINBITMAPTRUECOLORc { BITMAPTRUEGRAYc } def /BEGINBITMAPCMYK { BITMAPCMYKGRAY } def /BEGINBITMAPCMYKc { BITMAPCMYKGRAYc } def } ifelse /K { % c m y k r g b SEPARATION FMPrintAllColorsAsBlack { dup 1 eq 2 index 1 eq and 3 index 1 eq and not {7 {pop} repeat 0 0 0 1 0 0 0} if } if FrameCurColors astore pop combineColor } bind def % % graymode is true if we are just doing gray fills, this way do not keep calling % setscreen. I don't know what the cost is on calling setscreen with defaults, but % this is easy to keep track of, and we know for sure we aren't wasting cycles. % if graymode is false and fMLevel1 is false, then we are using Level 2 patterns. % /graymode true def % used by level 1 patterns % defaultflip matrixentry fmGetFlit -> eith -1 or 1 fMLevel1 { /fmGetFlip { fMatrix2 exch get mul 0 lt { -1 } { 1 } ifelse } FmBD } if /setPatternMode { fMLevel1 { 2 index patScreenDict exch known { pop pop patScreenDict exch get aload pop % angle spot fspot gray mult freq % freq mul % times multiplier 5 2 roll % angle spot fspot gray mult freq -> gray freq angle spot fspot fMatrix2 currentmatrix 1 get 0 ne { 3 -1 roll 90 add 3 1 roll % landscape sflipx 1 fmGetFlip sflipy 2 fmGetFlip neg mul } { % portrait sflipx 0 fmGetFlip sflipy 3 fmGetFlip mul } ifelse 0 lt {exch pop} {pop} ifelse % take regular or flipped spot function fMNegative { {neg} fmConcatProcs % invert spot function } if bind % we need to bypass any screen filter and go directly to systemdict % to avoid problems with Kodak Precision calibration software % systemdict /setscreen get exec % leave graylevel on stack /FrameCurGray exch def } { /bwidth exch def /bpside exch def /bstring exch def /onbits 0 def /offbits 0 def freq sangle landscape {90 add} if {/ypoint exch def /xpoint exch def /xindex xpoint 1 add 2 div bpside mul cvi def /yindex ypoint 1 add 2 div bpside mul cvi def bstring yindex bwidth mul xindex 8 idiv add get 1 7 xindex 8 mod sub bitshift and 0 ne fMNegative {not} if {/onbits onbits 1 add def 1} {/offbits offbits 1 add def 0} ifelse } setscreen offbits offbits onbits add div fMNegative {1.0 exch sub} if /FrameCurGray exch def } ifelse } { % Level 2 version pop pop dup patCache exch known { patCache exch get } { % not in cache dup patDict /bstring 3 -1 roll put patDict 9 PatFreq screenIndex get div dup matrix scale % 9 orgfreq % organgle sin abs organgle cos abs add div % dup 16 div round dup 0 le {pop 1} if % Unix pattern size % dup 9 div round dup 0 le {pop 1} if % Mac larger (WYSIWYG) size % div div dup matrix scale % This gives Unix pattern size. makepattern dup patCache 4 -1 roll 3 -1 roll put } ifelse /FrameCurGray 0 def /FrameCurPat exch def } ifelse /graymode false def combineColor } bind def /setGrayScaleMode { graymode not { /graymode true def fMLevel1 { setCurrentScreen } if } if /FrameCurGray exch def combineColor } bind def /normalize { transform round exch round exch itransform } bind def /dnormalize { dtransform round exch round exch idtransform } bind def /lnormalize { % line widths are always odd so that arrow heads work 0 dtransform exch cvi 2 idiv 2 mul 1 add exch idtransform pop } bind def /H { % THICK lnormalize setlinewidth } bind def /Z { setlinecap } bind def % This is used to fill or stroke white behind a Level 2 pattern /PFill { graymode fMLevel1 or not { gsave 1 setgray eofill grestore } if } bind def /PStroke { graymode fMLevel1 or not { gsave 1 setgray stroke grestore } if stroke } bind def /X { % TEXTURE fillvals exch get dup type /stringtype eq {8 1 setPatternMode} % Silly to pass parameters here {setGrayScaleMode} ifelse } bind def /V { % FILL PFill gsave eofill grestore } bind def /Vclip { clip } bind def /Vstrk { currentlinewidth exch setlinewidth PStroke setlinewidth } bind def /N { % PEN PStroke } bind def /Nclip { strokepath clip newpath } bind def /Nstrk { currentlinewidth exch setlinewidth PStroke setlinewidth } bind def /M {newpath moveto} bind def /E {lineto} bind def /D {curveto} bind def /O {closepath} bind def /L { % POLYLINE /n exch def newpath normalize moveto 2 1 n {pop normalize lineto} for } bind def /Y { % POLYGON !!! L % POLYLINE closepath } bind def /R { % RECT x1 y1 x2 y2 /y2 exch def /x2 exch def /y1 exch def /x1 exch def x1 y1 x2 y1 x2 y2 x1 y2 4 Y % POLYGON } bind def /rarc % Leaves all sorts of junk on the operand stack for caller to clear off {rad % arcto might fail if we're scaled way down arcto } bind def /RR { % ROUNDRECT x1 y1 x2 y2 r /rad exch def normalize /y2 exch def /x2 exch def normalize /y1 exch def /x1 exch def mark newpath { x1 y1 rad add moveto x1 y2 x2 y2 rarc x2 y2 x2 y1 rarc x2 y1 x1 y1 rarc x1 y1 x1 y2 rarc closepath } stopped {x1 y1 x2 y2 R} if % in case rarc failed for degenerate arcs cleartomark } bind def /RRR { % ROUNDRECT ROTATED xs ys x1 y1 x2 y2 x3 y3 x4 y4 r /rad exch def normalize /y4 exch def /x4 exch def normalize /y3 exch def /x3 exch def normalize /y2 exch def /x2 exch def normalize /y1 exch def /x1 exch def newpath normalize moveto % eats xs ys mark { x2 y2 x3 y3 rarc x3 y3 x4 y4 rarc x4 y4 x1 y1 rarc x1 y1 x2 y2 rarc closepath } stopped {x1 y1 x2 y2 x3 y3 x4 y4 newpath moveto lineto lineto lineto closepath} if cleartomark } bind def /C { % CLIP grestore gsave R % RECT clip setCurrentScreen } bind def /CP { % CLIPPOLY p1x p1y p2x p2y ... n grestore gsave Y % POLYGON clip setCurrentScreen } bind def /F { % FONT FMfonts exch get FMpointsize scalefont setfont } bind def /Q { % POINTSIZE (& font) /FMpointsize exch def F % could be slightly optimized here } bind def /T { % TEXT moveto show } bind def % Callers of RF (rotate/flip) must gsave (or save) first; (g)restore when done /RF { % rotate 0 ne {-1 1 scale} if } bind def /TF { % TEXTFLIPROTATE gsave moveto RF show grestore } bind def /P { % PADTEXT moveto 0 32 3 2 roll widthshow } bind def /PF { % PADTEXTFLIPROTATE gsave moveto RF 0 32 3 2 roll widthshow grestore } bind def /S { % SPREADTEXT moveto 0 exch ashow } bind def /SF { % SPREADTEXTFLIPROTATE gsave moveto RF 0 exch ashow grestore } bind def /B { % PADSPREADTEXT moveto 0 32 4 2 roll 0 exch awidthshow } bind def /BF { % PADSPREADTEXTFLIPROTATE gsave moveto RF 0 32 4 2 roll 0 exch awidthshow grestore } bind def /G { % ARCFILL theta1 theta2 width height x y gsave newpath normalize translate 0.0 0.0 moveto % eats x y dnormalize scale % eats width height 0.0 0.0 1.0 5 3 roll arc % eats theta1 theta2 closepath PFill fill grestore } bind def /Gstrk { savematrix newpath 2 index 2 div add exch 3 index 2 div sub exch % theta1 theta2 width height x y normalize 2 index 2 div sub exch 3 index 2 div add exch % theta1 theta2 width height x y translate scale % eats width height 0.0 0.0 1.0 5 3 roll arc % eats theta1 theta2 restorematrix currentlinewidth exch setlinewidth PStroke setlinewidth } bind def /Gclip { % ARCFILL theta1 theta2 width height x y swid newpath savematrix normalize translate 0.0 0.0 moveto % eats x y dnormalize scale % eats width height 0.0 0.0 1.0 5 3 roll arc % eats theta1 theta2 closepath clip newpath restorematrix } bind def /GG { % ARCFILL ROTATED theta1 theta2 width height angle x y gsave newpath normalize translate 0.0 0.0 moveto % eats x y rotate % eats angle dnormalize scale % eats width height 0.0 0.0 1.0 5 3 roll arc % eats theta1 theta2 closepath PFill fill grestore } bind def /GGclip { % ARCFILL ROTATED theta1 theta2 width height angle x y savematrix newpath normalize translate 0.0 0.0 moveto % eats x y rotate % eats angle dnormalize scale % eats width height 0.0 0.0 1.0 5 3 roll arc % eats theta1 theta2 closepath clip newpath restorematrix } bind def /GGstrk { % ARCFILL ROTATED swid theta1 theta2 width height angle x y savematrix newpath normalize translate 0.0 0.0 moveto % eats x y rotate % eats angle dnormalize scale % eats width height 0.0 0.0 1.0 5 3 roll arc % eats theta1 theta2 closepath restorematrix currentlinewidth exch setlinewidth PStroke setlinewidth } bind def /A { % ARCPEN theta1 theta2 width height x y gsave savematrix newpath 2 index 2 div add exch 3 index 2 div sub exch % theta1 theta2 width height x y normalize 2 index 2 div sub exch 3 index 2 div add exch % theta1 theta2 width height x y translate scale % eats width height 0.0 0.0 1.0 5 3 roll arc % eats theta1 theta2 restorematrix PStroke grestore } bind def /Aclip { newpath savematrix normalize translate 0.0 0.0 moveto % eats x y dnormalize scale % eats width height 0.0 0.0 1.0 5 3 roll arc % eats theta1 theta2 closepath strokepath clip newpath restorematrix } bind def /Astrk { Gstrk } bind def /AA { % ARCPEN ROTATED theta1 theta2 width height angle x y gsave savematrix newpath % theta1 theta2 width height angle x y 3 index 2 div add exch 4 index 2 div sub exch % theta1 theta2 width height angle x y normalize 3 index 2 div sub exch 4 index 2 div add exch translate % eats x y rotate % eats angle scale % eats width height 0.0 0.0 1.0 5 3 roll arc % eats theta1 theta2 restorematrix PStroke grestore } bind def /AAclip { savematrix newpath normalize translate 0.0 0.0 moveto % eats x y rotate % eats angle dnormalize scale % eats width height 0.0 0.0 1.0 5 3 roll arc % eats theta1 theta2 closepath strokepath clip newpath restorematrix } bind def /AAstrk { GGstrk } bind def /BEGINPRINTCODE { % -x -y width height /FMdicttop countdictstack 1 add def % high-water mark of dict stack /FMoptop count 7 sub def % tricky! 7 params on stack, plus "/FMoptop" /FMsaveobject save def userdict begin % insulate user from FrameDict; not in /FMdicttop count /showpage {} def % this def is in userdict FMNORMALIZEGRAPHICS % in case we're in a strange state 3 index neg 3 index neg translate } bind def /ENDPRINTCODE { count -1 FMoptop {pop pop} for % clear user junk from operand stack countdictstack -1 FMdicttop {pop end} for % ditto for dict stack FMsaveobject restore % this is now safe, unless user very malicious } bind def /gn { % get a number in a funny encoding scheme 0 % result on stack { 46 mul % shift old digits cf read pop % get next character 32 sub % zero is the space character dup 46 lt {exit} if % quit if we're the last digit 46 sub add % add in this digit and loop around for next } loop add % result on stack } bind def /cfs { % create a string of length "sl" filled with "val"s /str sl string def % create string as "str" 0 1 sl 1 sub {str exch val put} for % fill array str def % define real array name, too; name is on stack from caller } bind def /ic [ % "case" stmt list of procedures that the image commands should call 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0223 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0223 0 {0 hx} {1 hx} {2 hx} {3 hx} {4 hx} {5 hx} {6 hx} {7 hx} {8 hx} {9 hx} {10 hx} {11 hx} {12 hx} {13 hx} {14 hx} {15 hx} {16 hx} {17 hx} {18 hx} {19 hx} {gn hx} {0} {1} {2} {3} {4} {5} {6} {7} {8} {9} {10} {11} {12} {13} {14} {15} {16} {17} {18} {19} {gn} {0 wh} {1 wh} {2 wh} {3 wh} {4 wh} {5 wh} {6 wh} {7 wh} {8 wh} {9 wh} {10 wh} {11 wh} {12 wh} {13 wh} {14 wh} {gn wh} {0 bl} {1 bl} {2 bl} {3 bl} {4 bl} {5 bl} {6 bl} {7 bl} {8 bl} {9 bl} {10 bl} {11 bl} {12 bl} {13 bl} {14 bl} {gn bl} {0 fl} {1 fl} {2 fl} {3 fl} {4 fl} {5 fl} {6 fl} {7 fl} {8 fl} {9 fl} {10 fl} {11 fl} {12 fl} {13 fl} {14 fl} {gn fl} ] def /ms { % make all the strings /sl exch def % remember length of currently existing strings /val 255 def % that's white /ws cfs % make "ws" a string filled with white /im cfs % and "im" is a complete image scanline /val 0 def % that's black /bs cfs % make "bs" a string filled with black /cs cfs % here's where we'll put complete command lines } bind def 400 ms % make strings that will be plenty long for most applications /ip { % image procedure; reads and executes commands to make scanlines is % leave image string and... 0 % ...image position on stack all through this procedure cf cs readline pop % get a string of commands { ic exch get exec % execute next command add % all commands leave a length on the stack; update pos } forall % step through all commands pop % get rid of image position pointer % image string left on stack, so it's returned to image primitive } bind def /rip { % this is similar to ip above, except for 24 bit images % this takes an extra argument, the width of the image % do red bis ris copy pop % copy blue to red is 0 cf cs readline pop { ic exch get exec add } forall pop pop % remove is and position from stack ris gis copy pop % copy red to green dup is exch % position of green is width bytes into is % do green cf cs readline pop { ic exch get exec add } forall pop pop gis bis copy pop % copy green to blue dup add is exch % position of blue is 2*width bytes into is % do blue cf cs readline pop { ic exch get exec add } forall pop } bind def /rip4 { % this is similar to ip above, except for 32 bit images % this takes an extra argument, the width of the image % do cyan kis cis copy pop % copy black to cyan is 0 cf cs readline pop { ic exch get exec add } forall pop pop % remove is and position from stack cis mis copy pop % copy cyan to magenta dup is exch % position of magenta is width bytes into is % do magenta cf cs readline pop { ic exch get exec add } forall pop pop mis yis copy pop % copy magenta to yellow dup dup add is exch % position of yellow is 2*width bytes into is % do yellow cf cs readline pop { ic exch get exec add } forall pop pop yis kis copy pop % copy yellow to black 3 mul is exch % position of black is 3*width bytes into is % do black cf cs readline pop { ic exch get exec add } forall pop } bind def /wh { % fill a number of bytes with "white" /len exch def % number of bytes to fill /pos exch def % position to put them at ws 0 len getinterval im pos len getinterval copy pop pos len % remember where we got to } bind def /bl { % fill a number of bytes with "black" /len exch def % number of bytes to fill /pos exch def % position to put them at bs 0 len getinterval im pos len getinterval copy pop pos len % remember where we got to } bind def /s1 1 string def /fl { % fill a number of bytes with a specific hex value /len exch def % number of bytes to fill /pos exch def % position to put them at /val cf s1 readhexstring pop 0 get def pos 1 pos len add 1 sub {im exch val put} for pos len % remember where we got to } bind def /hx { % read hex bytes directly; on entry, stack has 3 copy getinterval % stack has cf exch readhexstring pop pop % stack back to } bind def /wbytes { % width depth -> wb find width in bytes given 1, 2, 8 or 24 or 32 dup dup 8 gt { pop 8 idiv mul } { 8 eq {pop} {1 eq {7 add 8 idiv} {3 add 4 idiv} ifelse} ifelse } ifelse } bind def /BEGINBITMAPBWc { % iw, ih, width, height, theta, x y 1 {} COMMONBITMAPc } bind def /BEGINBITMAPGRAYc { % iw, ih, width, height, theta, x y 8 {} COMMONBITMAPc } bind def /BEGINBITMAP2BITc { % iw, ih, width, height, theta, x y 2 {} COMMONBITMAPc } bind def % % Common routine for imaging compressed images % /COMMONBITMAPc { % iw, ih, width, height, theta, x y depth proc % (x,y) is the lower left corner of the image /cvtProc exch def /depth exch def gsave % rotate about center of image 3 index 2 div add exch % iw ih width height theta y+(height/2) x 4 index 2 div add exch % iw ih width height theta x+(width/2) y+(height/2) translate % iw ih width height theta rotate % iw ih width height 1 index 2 div neg % iw ih width height -(width/2) 1 index 2 div neg % iw ih width height -(width/2) -(height/2) translate % iw ih width height scale % iw ih /height exch def /width exch def /lb width depth wbytes def % so "lb" has width in bytes sl lb lt {lb ms} if % maybe make bigger strings /bitmapsave save def % LW+ has a buggy memory leak! cvtProc % run the desired proc after save has occurred /is im 0 lb getinterval def % image substring ws 0 lb getinterval is copy pop % whiten it /cf currentfile def % evaluate "currentfile" only once width height depth [width 0 0 height neg 0 height] % top to bottom {ip} image % zap! bitmapsave restore % avoid occasional disaster on the LW+ grestore } bind def /BEGINBITMAPBW { % iw, ih, width, height, theta, x y 1 {} COMMONBITMAP } bind def /BEGINBITMAPGRAY { % iw, ih, width, height, theta, x y 8 {} COMMONBITMAP } bind def /BEGINBITMAP2BIT { % iw, ih, width, height, theta, x y 2 {} COMMONBITMAP } bind def % % Common routine for uncompressed images % /COMMONBITMAP { % iw, ih, width, height, theta, x y depth proc /cvtProc exch def /depth exch def gsave % rotate about center of image 3 index 2 div add exch % iw ih width height theta y+(height/2) x 4 index 2 div add exch % iw ih width height theta x+(width/2) y+(height/2) translate % iw ih width height theta rotate % iw ih width height 1 index 2 div neg % iw ih width height -(width/2) 1 index 2 div neg % iw ih width height -(width/2) -(height/2) translate % iw ih width height scale % iw ih /height exch def /width exch def /bitmapsave save def % LW+ has a buggy memory leak! cvtProc % run the desired proc after save has occurred /is width depth wbytes string def /cf currentfile def % evaluate "currentfile" only once width height depth [width 0 0 height neg 0 height] % top to bottom {cf is readhexstring pop} image bitmapsave restore % avoid occasional disaster on the LW+ grestore } bind def % % All this hairy color setup stuff gus wrote on the mac, I just copied and % changed the variable names to be humanly readable. /ngrayt 256 array def /nredt 256 array def /nbluet 256 array def /ngreent 256 array def fMLevel1 { /colorsetup { currentcolortransfer /gryt exch def /blut exch def /grnt exch def /redt exch def 0 1 255 { /indx exch def /cynu 1 red indx get 255 div sub def /magu 1 green indx get 255 div sub def /yelu 1 blue indx get 255 div sub def /kk cynu magu min yelu min def % The HP PaintJet XL300 ignores the gray transfer curve but still sets its % default black generation and undercolor removal functions as if it is % used. This causes black colors not to work. Bug#56844 % - We go back to the old (correct?) way of doing this since this code % is now bypassed for PS Level 2 printers in favor of colorSetup2 which % uses PS Level 2 indexed color, which is much cleaner. /u kk currentundercolorremoval exec def %- /u 0 def nredt indx 1 0 cynu u sub max sub redt exec put ngreent indx 1 0 magu u sub max sub grnt exec put nbluet indx 1 0 yelu u sub max sub blut exec put ngrayt indx 1 kk currentblackgeneration exec sub gryt exec put } for {255 mul cvi nredt exch get} {255 mul cvi ngreent exch get} {255 mul cvi nbluet exch get} {255 mul cvi ngrayt exch get} setcolortransfer {pop 0} setundercolorremoval {} setblackgeneration } bind def } { % Here, we set up indexed color for imaging on PS Level 2 without mucking around % with the transfer functions. /colorSetup2 { [ /Indexed /DeviceRGB 255 {dup red exch get 255 div exch dup green exch get 255 div exch blue exch get 255 div} ] setcolorspace } bind def } ifelse % % Setup a transfer function to convert psuedo color values into grayscale % values based on the color lookup tables. % /fakecolorsetup { /tran 256 string def 0 1 255 {/indx exch def tran indx red indx get 77 mul green indx get 151 mul blue indx get 28 mul add add 256 idiv put} for currenttransfer {255 mul cvi tran exch get 255.0 div} exch fmConcatProcs settransfer } bind def % % image a color image % /BITMAPCOLOR { % iw, ih, width, height, theta, x y /depth 8 def gsave % rotate about center of image 3 index 2 div add exch % iw ih width height theta y+(height/2) x 4 index 2 div add exch % iw ih width height theta x+(width/2) y+(height/2) translate % iw ih width height theta rotate % iw ih width height 1 index 2 div neg % iw ih width height -(width/2) 1 index 2 div neg % iw ih width height -(width/2) -(height/2) translate % iw ih width height scale % iw ih /height exch def /width exch def /bitmapsave save def fMLevel1 { colorsetup /is width depth wbytes string def /cf currentfile def % evaluate "currentfile" only once width height depth [width 0 0 height neg 0 height] % top to bottom {cf is readhexstring pop} {is} {is} true 3 colorimage } { colorSetup2 /is width depth wbytes string def /cf currentfile def % evaluate "currentfile" only once 7 dict dup begin /ImageType 1 def /Width width def /Height height def /ImageMatrix [width 0 0 height neg 0 height] def /DataSource {cf is readhexstring pop} bind def /BitsPerComponent depth def /Decode [0 255] def end image } ifelse bitmapsave restore grestore } bind def % % Compressed color image rendering % /BITMAPCOLORc { % iw, ih, width, height, theta, x y /depth 8 def gsave % rotate about center of image 3 index 2 div add exch % iw ih width height theta y+(height/2) x 4 index 2 div add exch % iw ih width height theta x+(width/2) y+(height/2) translate % iw ih width height theta rotate % iw ih width height 1 index 2 div neg % iw ih width height -(width/2) 1 index 2 div neg % iw ih width height -(width/2) -(height/2) translate % iw ih width height scale % iw ih /height exch def /width exch def /lb width depth wbytes def % so "lb" has width in bytes sl lb lt {lb ms} if % maybe make bigger strings /bitmapsave save def fMLevel1 { colorsetup /is im 0 lb getinterval def % image substring ws 0 lb getinterval is copy pop % whiten it /cf currentfile def % evaluate "currentfile" only once width height depth [width 0 0 height neg 0 height] % top to bottom {ip} {is} {is} true 3 colorimage } { colorSetup2 /is im 0 lb getinterval def % image substring ws 0 lb getinterval is copy pop % whiten it /cf currentfile def % evaluate "currentfile" only once 7 dict dup begin /ImageType 1 def /Width width def /Height height def /ImageMatrix [width 0 0 height neg 0 height] def /DataSource {ip} bind def /BitsPerComponent depth def /Decode [0 255] def end image } ifelse bitmapsave restore grestore } bind def /BITMAPTRUECOLORc { /depth 24 def gsave % rotate about center of image 3 index 2 div add exch % iw ih width height theta y+(height/2) x 4 index 2 div add exch % iw ih width height theta x+(width/2) y+(height/2) translate % iw ih width height theta rotate % iw ih width height 1 index 2 div neg % iw ih width height -(width/2) 1 index 2 div neg % iw ih width height -(width/2) -(height/2) translate % iw ih width height scale % iw ih /height exch def /width exch def /lb width depth wbytes def % so "lb" has width in bytes sl lb lt {lb ms} if % maybe make bigger strings /bitmapsave save def /is im 0 lb getinterval def % Whole scanline /ris im 0 width getinterval def % red part of im /gis im width width getinterval def % green part of im /bis im width 2 mul width getinterval def % blue part of im ws 0 lb getinterval is copy pop /cf currentfile def width height 8 [width 0 0 height neg 0 height] {width rip pop ris} {gis} {bis} true 3 colorimage bitmapsave restore grestore } bind def /BITMAPCMYKc { /depth 32 def gsave % rotate about center of image 3 index 2 div add exch % iw ih width height theta y+(height/2) x 4 index 2 div add exch % iw ih width height theta x+(width/2) y+(height/2) translate % iw ih width height theta rotate % iw ih width height 1 index 2 div neg % iw ih width height -(width/2) 1 index 2 div neg % iw ih width height -(width/2) -(height/2) translate % iw ih width height scale % iw ih /height exch def /width exch def /lb width depth wbytes def % so "lb" has width in bytes sl lb lt {lb ms} if % maybe make bigger strings /bitmapsave save def /is im 0 lb getinterval def % Whole scanline /cis im 0 width getinterval def % cyan part of im /mis im width width getinterval def % magenta part of im /yis im width 2 mul width getinterval def % yellow part of im /kis im width 3 mul width getinterval def % black part of im ws 0 lb getinterval is copy pop /cf currentfile def width height 8 [width 0 0 height neg 0 height] {width rip4 pop cis} {mis} {yis} {kis} true 4 colorimage bitmapsave restore grestore } bind def /BITMAPTRUECOLOR { gsave % rotate about center of image 3 index 2 div add exch % iw ih width height theta y+(height/2) x 4 index 2 div add exch % iw ih width height theta x+(width/2) y+(height/2) translate % iw ih width height theta rotate % iw ih width height 1 index 2 div neg % iw ih width height -(width/2) 1 index 2 div neg % iw ih width height -(width/2) -(height/2) translate % iw ih width height scale % iw ih /height exch def /width exch def /bitmapsave save def /is width string def /gis width string def /bis width string def /cf currentfile def width height 8 [width 0 0 height neg 0 height] { cf is readhexstring pop } { cf gis readhexstring pop } { cf bis readhexstring pop } true 3 colorimage bitmapsave restore grestore } bind def /BITMAPCMYK { gsave % rotate about center of image 3 index 2 div add exch % iw ih width height theta y+(height/2) x 4 index 2 div add exch % iw ih width height theta x+(width/2) y+(height/2) translate % iw ih width height theta rotate % iw ih width height 1 index 2 div neg % iw ih width height -(width/2) 1 index 2 div neg % iw ih width height -(width/2) -(height/2) translate % iw ih width height scale % iw ih /height exch def /width exch def /bitmapsave save def /is width string def /mis width string def /yis width string def /kis width string def /cf currentfile def width height 8 [width 0 0 height neg 0 height] { cf is readhexstring pop } { cf mis readhexstring pop } { cf yis readhexstring pop } { cf kis readhexstring pop } true 4 colorimage bitmapsave restore grestore } bind def % % image a color image to a b&width device % /BITMAPTRUEGRAYc { /depth 24 def gsave % rotate about center of image 3 index 2 div add exch % iw ih width height theta y+(height/2) x 4 index 2 div add exch % iw ih width height theta x+(width/2) y+(height/2) translate % iw ih width height theta rotate % iw ih width height 1 index 2 div neg % iw ih width height -(width/2) 1 index 2 div neg % iw ih width height -(width/2) -(height/2) translate % iw ih width height scale % iw ih /height exch def /width exch def /lb width depth wbytes def % so "lb" has width in bytes sl lb lt {lb ms} if % maybe make bigger strings /bitmapsave save def /is im 0 lb getinterval def % Whole scanline /ris im 0 width getinterval def % red part of im /gis im width width getinterval def % green part of im /bis im width 2 mul width getinterval def % blue part of im ws 0 lb getinterval is copy pop /cf currentfile def width height 8 [width 0 0 height neg 0 height] {width rip pop ris gis bis width gray} image bitmapsave restore grestore } bind def /BITMAPCMYKGRAYc { /depth 32 def gsave % rotate about center of image 3 index 2 div add exch % iw ih width height theta y+(height/2) x 4 index 2 div add exch % iw ih width height theta x+(width/2) y+(height/2) translate % iw ih width height theta rotate % iw ih width height 1 index 2 div neg % iw ih width height -(width/2) 1 index 2 div neg % iw ih width height -(width/2) -(height/2) translate % iw ih width height scale % iw ih /height exch def /width exch def /lb width depth wbytes def % so "lb" has width in bytes sl lb lt {lb ms} if % maybe make bigger strings /bitmapsave save def /is im 0 lb getinterval def % Whole scanline /cis im 0 width getinterval def % cyan part of im /mis im width width getinterval def % magenta part of im /yis im width 2 mul width getinterval def % yellow part of im /kis im width 3 mul width getinterval def % black part of im ws 0 lb getinterval is copy pop /cf currentfile def width height 8 [width 0 0 height neg 0 height] {width rip pop cis mis yis kis width cgray} image bitmapsave restore grestore } bind def /cgray { % c m y k width /ww exch def /k exch def /y exch def /m exch def /c exch def 0 1 ww 1 sub { /i exch def c i get m i get y i get k i get CMYKtoRGB .144 mul 3 1 roll .587 mul 3 1 roll .299 mul add add c i 3 -1 roll floor cvi put } for c } bind def /gray { % r g b width /ww exch def /b exch def /g exch def /r exch def 0 1 ww 1 sub { /i exch def r i get .299 mul g i get .587 mul b i get .114 mul add add r i 3 -1 roll floor cvi put } for r } bind def /BITMAPTRUEGRAY { gsave % rotate about center of image 3 index 2 div add exch % iw ih width height theta y+(height/2) x 4 index 2 div add exch % iw ih width height theta x+(width/2) y+(height/2) translate % iw ih width height theta rotate % iw ih width height 1 index 2 div neg % iw ih width height -(width/2) 1 index 2 div neg % iw ih width height -(width/2) -(height/2) translate % iw ih width height scale % iw ih /height exch def /width exch def /bitmapsave save def /is width string def /gis width string def /bis width string def /cf currentfile def width height 8 [width 0 0 height neg 0 height] { cf is readhexstring pop cf gis readhexstring pop cf bis readhexstring pop width gray} image bitmapsave restore grestore } bind def /BITMAPCMYKGRAY { gsave % rotate about center of image 3 index 2 div add exch % iw ih width height theta y+(height/2) x 4 index 2 div add exch % iw ih width height theta x+(width/2) y+(height/2) translate % iw ih width height theta rotate % iw ih width height 1 index 2 div neg % iw ih width height -(width/2) 1 index 2 div neg % iw ih width height -(width/2) -(height/2) translate % iw ih width height scale % iw ih /height exch def /width exch def /bitmapsave save def /is width string def /yis width string def /mis width string def /kis width string def /cf currentfile def width height 8 [width 0 0 height neg 0 height] { cf is readhexstring pop cf mis readhexstring pop cf yis readhexstring pop cf kis readhexstring pop width cgray} image bitmapsave restore grestore } bind def /BITMAPGRAY { % iw, ih, width, height, theta, x y 8 {fakecolorsetup} COMMONBITMAP } bind def /BITMAPGRAYc { % iw, ih, width, height, theta, x y 8 {fakecolorsetup} COMMONBITMAPc } bind def /ENDBITMAP { } bind def end % of FrameDict definitions % OPI stuff /ALDmatrix matrix def ALDmatrix currentmatrix pop /StartALD { /ALDsave save def savematrix ALDmatrix setmatrix } bind def /InALD { restorematrix } bind def /DoneALD { ALDsave restore } bind def % Dashed lines stuff /I { setdash } bind def /J { [] 0 setdash } bind def %%EndProlog %%BeginSetup (5.0) FMVERSION 1 1 0 0 612 792 0 1 11 FMDOCUMENT 0 0 /Times-Bold FMFONTDEFINE 1 0 /Times-Roman FMFONTDEFINE 2 0 /Times-Italic FMFONTDEFINE 3 1 /Symbol FMFONTDEFINE 4 0 /Courier FMFONTDEFINE 32 FMFILLS 0 0 FMFILL 1 0.1 FMFILL 2 0.3 FMFILL 3 0.5 FMFILL 4 0.7 FMFILL 5 0.9 FMFILL 6 0.97 FMFILL 7 1 FMFILL 8 <0f1e3c78f0e1c387> FMFILL 9 <0f87c3e1f0783c1e> FMFILL 10 FMFILL 11 FMFILL 12 <8142241818244281> FMFILL 13 <03060c183060c081> FMFILL 14 <8040201008040201> FMFILL 16 1 FMFILL 17 0.9 FMFILL 18 0.7 FMFILL 19 0.5 FMFILL 20 0.3 FMFILL 21 0.1 FMFILL 22 0.03 FMFILL 23 0 FMFILL 24 FMFILL 25 FMFILL 26 <3333333333333333> FMFILL 27 <0000ffff0000ffff> FMFILL 28 <7ebddbe7e7dbbd7e> FMFILL 29 FMFILL 30 <7fbfdfeff7fbfdfe> FMFILL %%EndSetup %%Page: "i" 1 %%BeginPaperSize: Letter %%EndPaperSize 612 792 0 FMBEGINPAGE [0 0 0 1 0 0 0] [ 0 1 1 0 1 0 0] [ 1 0 1 0 0 1 0] [ 1 1 0 0 0 0 1] [ 1 0 0 0 0 1 1] [ 0 1 0 0 1 0 1] [ 0 0 1 0 1 1 0] 7 FrameSetSepColors FrameNoSep 0 0 0 1 0 0 0 K J 0 0 0 1 0 0 0 K 72 746 540 756 R 7 X 0 0 0 1 0 0 0 K V 72 33.32 540 43.32 R V 72 746 540 756 R V 72 33.32 540 43.32 R V 0 0 0 1 0 0 0 K 0 0 0 1 0 0 0 K 72 72 540 720 R V 0 18 Q 0 X (X Print Ser) 247.1 572 T (vice) 334.91 572 T 0 10 Q (Pr) 263.12 540.33 T (otocol V) 273.49 540.33 T (ersion 1.0) 307.77 540.33 T (X Consortium Standard) 254.33 514.33 T (X V) 252.62 501.33 T (ersion 11, Release 6.4) 268.56 501.33 T 1 F (A. Deininger) 279.89 440.33 T (T) 291.92 427.33 T (. Gilg) 297.3 427.33 T ( J. Miller) 287.8 414.33 T (H. Phinne) 283.58 401.33 T (y) 323.42 401.33 T (C. Prince) 287.39 388.33 T (He) 264.27 362.33 T (wlett-P) 275.67 362.33 T (ackard Co.) 304.42 362.33 T (K. Samborn) 281.83 297.33 T (R. Swick) 287.67 284.33 T (X Consortium, Inc.) 267.39 258.33 T 0 0 0 1 0 0 0 K FMENDPAGE %%EndPage: "i" 1 %%Page: "ii" 2 612 792 0 FMBEGINPAGE [0 0 0 1 0 0 0] [ 0 1 1 0 1 0 0] [ 1 0 1 0 0 1 0] [ 1 1 0 0 0 0 1] [ 1 0 0 0 0 1 1] [ 0 1 0 0 1 0 1] [ 0 0 1 0 1 1 0] 7 FrameSetSepColors FrameNoSep 0 0 0 1 0 0 0 K 72 746 540 756 R 7 X 0 0 0 1 0 0 0 K V 72 33.32 540 43.32 R V 72 746 540 756 R V 72 33.32 540 43.32 R V 0 0 0 1 0 0 0 K 0 0 0 1 0 0 0 K 72 72 540 720 R V 1 10 Q 0 X (Copyright \050c\051 1996 Hewlett-Packard Company) 72 569.33 T (Copyright \050c\051 1996 International Business Machines, Inc.) 72 557.33 T (Copyright \050c\051 1996 Sun Microsystems, Inc.) 72 545.33 T (Copyright \050c\051 1996 Novell, Inc.) 72 533.33 T (Copyright \050c\051 1996 Digital Equipment Corp.) 72 521.33 T (Copyright \050c\051 1996 Fujitsu Limited) 72 509.33 T (Copyright \050c\051 1996 Hitachi, Ltd.) 72 497.33 T (Copyright \050c\051 1996 X Consortium, Inc.) 72 485.33 T (Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated) 72 461.33 T (documentation files \050the "Software"\051, to deal in the Software without restriction, including without limitation the) 72 449.33 T (rights to use, copy, modify, merge, publish, distribute, sublicense, and sell copies of the Software, and to permit) 72 437.33 T (persons to whom the Software is furnished to do so, subject to the following conditions:) 72 425.33 T (The above copyright notice and this permission notice shall be included in all copies or substantial portions of the) 72 401.33 T (Software.) 72 389.33 T (THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED,) 72 365.33 T (INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A) 72 353.33 T (PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE X CONSORTIUM BE) 72 341.33 T (LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF) 72 329.33 T (CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE) 72 317.33 T (SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.) 72 305.33 T (Except as contained in this notice, the name of the X Consortium shall not be used in advertising or otherwise to) 72 281.33 T (promote the sale, use or other dealings in this Software without prior written authorization from the X Consortium.) 72 269.33 T 2 F (X Window System) 72 245.33 T 1 F ( is a trademark of X Consortium, Inc.) 143.66 245.33 T 0 0 0 1 0 0 0 K FMENDPAGE %%EndPage: "ii" 2 %%Page: "1" 3 612 792 0 FMBEGINPAGE [0 0 0 1 0 0 0] [ 0 1 1 0 1 0 0] [ 1 0 1 0 0 1 0] [ 1 1 0 0 0 0 1] [ 1 0 0 0 0 1 1] [ 0 1 0 0 1 0 1] [ 0 0 1 0 1 1 0] 7 FrameSetSepColors FrameNoSep 0 0 0 1 0 0 0 K 72 746 540 756 R 7 X 0 0 0 1 0 0 0 K V 0 0 0 1 0 0 0 K 0 0 0 1 0 0 0 K 72 33.32 540 43.32 R V 0 0 0 1 0 0 0 K 0 0 0 1 0 0 0 K 72 72 540 720 R V 0 0 0 1 0 0 0 K 0 0 0 1 0 0 0 K 0 18 Q 0 X (T) 238.33 708 T (able of Contents) 248.68 708 T 1 10 Q (1) 72 598.33 T (Ov) 90 598.33 T (ervie) 102.07 598.33 T (w) 121.81 598.33 T (...................................................................................................................................................) 130 598.33 T (1) 499 598.33 T (2) 72 581.33 T (Protocols) 90 581.33 T (...................................................................................................................................................) 130 581.33 T (2) 499 581.33 T 0 0 0 1 0 0 0 K (2.1) 108 569.33 T 0 0 0 1 0 0 0 K 0 0 0 1 0 0 0 K ( Formats, Syntactic Conventions, and Common Types) 126 569.33 T 0 0 0 1 0 0 0 K 0 0 0 1 0 0 0 K (.............................................................) 345 569.33 T 0 0 0 1 0 0 0 K 0 0 0 1 0 0 0 K (2) 499 569.33 T 0 0 0 1 0 0 0 K 0 0 0 1 0 0 0 K (2.2) 108 557.33 T 0 0 0 1 0 0 0 K 0 0 0 1 0 0 0 K ( Errors) 126 557.33 T 0 0 0 1 0 0 0 K 0 0 0 1 0 0 0 K (.........................................................................................................................................) 155 557.33 T 0 0 0 1 0 0 0 K 0 0 0 1 0 0 0 K (2) 499 557.33 T 0 0 0 1 0 0 0 K 0 0 0 1 0 0 0 K (2.3) 108 545.33 T 0 0 0 1 0 0 0 K 0 0 0 1 0 0 0 K ( X Print Service Requests) 126 545.33 T 0 0 0 1 0 0 0 K 0 0 0 1 0 0 0 K (...........................................................................................................) 230 545.33 T 0 0 0 1 0 0 0 K 0 0 0 1 0 0 0 K (2) 499 545.33 T 0 0 0 1 0 0 0 K 0 0 0 1 0 0 0 K (2.4) 108 533.33 T 0 0 0 1 0 0 0 K 0 0 0 1 0 0 0 K ( Events) 126 533.33 T 0 0 0 1 0 0 0 K 0 0 0 1 0 0 0 K (......................................................................................................................................) 157.5 533.33 T 0 0 0 1 0 0 0 K 0 0 0 1 0 0 0 K (11) 494 533.33 T 0 0 0 1 0 0 0 K (3) 72 516.33 T (X Print Attrib) 90 516.33 T (utes) 145.36 516.33 T (....................................................................................................................................) 162.5 516.33 T (13) 494 516.33 T 0 0 0 1 0 0 0 K (3.1) 108 504.33 T 0 0 0 1 0 0 0 K 0 0 0 1 0 0 0 K ( Attribute Value Defaults And Validation) 126 504.33 T 0 0 0 1 0 0 0 K 0 0 0 1 0 0 0 K (................................................................................) 292.5 504.33 T 0 0 0 1 0 0 0 K 0 0 0 1 0 0 0 K (13) 494 504.33 T 0 0 0 1 0 0 0 K 0 0 0 1 0 0 0 K (3.2) 108 492.33 T 0 0 0 1 0 0 0 K 0 0 0 1 0 0 0 K ( Server Attributes) 126 492.33 T 0 0 0 1 0 0 0 K 0 0 0 1 0 0 0 K (......................................................................................................................) 197.5 492.33 T 0 0 0 1 0 0 0 K 0 0 0 1 0 0 0 K (14) 494 492.33 T 0 0 0 1 0 0 0 K 0 0 0 1 0 0 0 K (3.3) 108 480.33 T 0 0 0 1 0 0 0 K 0 0 0 1 0 0 0 K ( Printer Attributes) 126 480.33 T 0 0 0 1 0 0 0 K 0 0 0 1 0 0 0 K (.....................................................................................................................) 200 480.33 T 0 0 0 1 0 0 0 K 0 0 0 1 0 0 0 K (14) 494 480.33 T 0 0 0 1 0 0 0 K 0 0 0 1 0 0 0 K (3.4) 108 468.33 T 0 0 0 1 0 0 0 K 0 0 0 1 0 0 0 K ( Job Attributes) 126 468.33 T 0 0 0 1 0 0 0 K 0 0 0 1 0 0 0 K (...........................................................................................................................) 185 468.33 T 0 0 0 1 0 0 0 K 0 0 0 1 0 0 0 K (17) 494 468.33 T 0 0 0 1 0 0 0 K 0 0 0 1 0 0 0 K (3.5) 108 456.33 T 0 0 0 1 0 0 0 K 0 0 0 1 0 0 0 K ( Document Attributes) 126 456.33 T 0 0 0 1 0 0 0 K 0 0 0 1 0 0 0 K (...............................................................................................................) 215 456.33 T 0 0 0 1 0 0 0 K 0 0 0 1 0 0 0 K (17) 494 456.33 T 0 0 0 1 0 0 0 K 0 0 0 1 0 0 0 K (3.6) 108 444.33 T 0 0 0 1 0 0 0 K 0 0 0 1 0 0 0 K ( Page Attributes) 126 444.33 T 0 0 0 1 0 0 0 K 0 0 0 1 0 0 0 K (........................................................................................................................) 192.5 444.33 T 0 0 0 1 0 0 0 K 0 0 0 1 0 0 0 K (18) 494 444.33 T 0 0 0 1 0 0 0 K (4) 72 427.33 T (Communication with the Print Dialog Manager) 90 427.33 T (.....................................................................................) 280 427.33 T (20) 494 427.33 T (5) 72 410.33 T (Protocol Encoding) 90 410.33 T (...................................................................................................................................) 165 410.33 T (22) 494 410.33 T 0 0 0 1 0 0 0 K (5.1) 108 398.33 T 0 0 0 1 0 0 0 K 0 0 0 1 0 0 0 K ( Request Protocol Encoding) 126 398.33 T 0 0 0 1 0 0 0 K 0 0 0 1 0 0 0 K (.....................................................................................................) 240 398.33 T 0 0 0 1 0 0 0 K 0 0 0 1 0 0 0 K (22) 494 398.33 T 0 0 0 1 0 0 0 K 0 0 0 1 0 0 0 K (5.2) 108 386.33 T 0 0 0 1 0 0 0 K 0 0 0 1 0 0 0 K ( Event Protocol Encoding) 126 386.33 T 0 0 0 1 0 0 0 K 0 0 0 1 0 0 0 K (.........................................................................................................) 230 386.33 T 0 0 0 1 0 0 0 K 0 0 0 1 0 0 0 K (31) 494 386.33 T 0 0 0 1 0 0 0 K 0 0 0 1 0 0 0 K (5.3) 108 374.33 T 0 0 0 1 0 0 0 K 0 0 0 1 0 0 0 K ( Error Protocol Encoding) 126 374.33 T 0 0 0 1 0 0 0 K 0 0 0 1 0 0 0 K (..........................................................................................................) 227.5 374.33 T 0 0 0 1 0 0 0 K 0 0 0 1 0 0 0 K (32) 494 374.33 T 0 0 0 1 0 0 0 K 0 0 0 1 0 0 0 K FMENDPAGE %%EndPage: "1" 3 %%Page: "2" 4 612 792 0 FMBEGINPAGE [0 0 0 1 0 0 0] [ 0 1 1 0 1 0 0] [ 1 0 1 0 0 1 0] [ 1 1 0 0 0 0 1] [ 1 0 0 0 0 1 1] [ 0 1 0 0 1 0 1] [ 0 0 1 0 1 1 0] 7 FrameSetSepColors FrameNoSep 0 0 0 1 0 0 0 K 72 746 540 756 R 7 X 0 0 0 1 0 0 0 K V 0 0 0 1 0 0 0 K 0 0 0 1 0 0 0 K 72 33.32 540 43.32 R V 0 0 0 1 0 0 0 K 0 0 0 1 0 0 0 K 72 72 540 720 R V 0 0 0 1 0 0 0 K FMENDPAGE %%EndPage: "2" 4 %%Page: "1" 5 612 792 0 FMBEGINPAGE [0 0 0 1 0 0 0] [ 0 1 1 0 1 0 0] [ 1 0 1 0 0 1 0] [ 1 1 0 0 0 0 1] [ 1 0 0 0 0 1 1] [ 0 1 0 0 1 0 1] [ 0 0 1 0 1 1 0] 7 FrameSetSepColors FrameNoSep 0 0 0 1 0 0 0 K 72 54 540 54 2 L 0.25 H 2 Z 0 X 0 0 0 1 0 0 0 K N 1 10 Q (X V) 72 41.28 T (ersion 11) 87.83 41.28 T (Release 6.4) 493.9 41.28 T 108 54 540 54 2 L N 72 740.81 540 756 R 7 X V 0 14 Q 0 X (Ov) 72 746.67 T (er) 89.75 746.67 T (view) 102.04 746.67 T (1) 533 746.67 T 0 0 0 1 0 0 0 K 0 0 0 1 0 0 0 K 0 18 Q (1) 72 699 T (Ov) 108 699 T (er) 130.82 699 T (view) 146.63 699 T 1 10 Q (X Print Service is an X e) 108 666.33 T (xtension that allo) 207.28 666.33 T (ws X imaging to non-display de) 275.92 666.33 T (vices such as printers and f) 403.72 666.33 T (ax) 511.65 666.33 T (machines. The core of the X Print Service is the X Print Serv) 108 654.33 T (er) 351.98 654.33 T (.) 359.2 654.33 T (Applications that require printing operations can mak) 108 630.33 T (e a connection to X Print Serv) 321.76 630.33 T (er and list the a) 442.15 630.33 T (v) 503.05 630.33 T (ailable) 507.8 630.33 T (printers using the) 108 618.33 T 0 F (PrintGetPrinterList) 179.94 618.33 T 1 F ( request. After selecting a printer) 265.48 618.33 T (, an application must create and set) 396.71 618.33 T (a print conte) 108 606.33 T (xt using the) 157.84 606.33 T 0 F (PrintCr) 207.01 606.33 T (eateContext) 240.71 606.33 T 1 F ( and) 291.8 606.33 T 0 F (PrintSetContext) 311.24 606.33 T 1 F ( requests.) 380.67 606.33 T (The \322print conte) 108 582.33 T (xt\323 is a fundamental X Print Service concept. A print conte) 173.39 582.33 T (xt:) 409.59 582.33 T (\245) 108 564.33 T (Contains a printer\325) 126 564.33 T (s def) 200.44 564.33 T (ault capabilities) 219.5 564.33 T (\245) 108 552.33 T (Contains a printer\325) 126 552.33 T (s range of capabilities) 200.44 552.33 T (\245) 108 540.33 T (Maintains the state of the settings on a printer) 126 540.33 T (\245) 108 528.33 T (Maintains the state of rendering ag) 126 528.33 T (ainst a printer) 265.09 528.33 T (\245) 108 516.33 T (Maintains rendered output) 126 516.33 T -0.2 (A print conte) 108 492.33 P -0.2 (xt also af) 160.23 492.33 P -0.2 (fects ho) 196.24 492.33 P -0.2 (w the DDX dri) 227.17 492.33 P -0.2 (v) 286.04 492.33 P -0.2 (er generates its page description language \050PDL\051, and ho) 290.89 492.33 P -0.2 (w the) 515.95 492.33 P -0.22 (PDL is submitted to a spooler) 108 480.33 P -0.22 (. It may af) 225.54 480.33 P -0.22 (fect fonts and other elements in the DDX layer of the X Print Serv) 265.73 480.33 P -0.22 (er) 528 480.33 P -0.22 (.) 535.22 480.33 P (Printer capabilities are de\336ned by attrib) 108 456.33 T (ute pools within the print conte) 265.83 456.33 T (xt. The) 390.4 456.33 T (y contain information related) 418.58 456.33 T -0.11 (to a conte) 108 444.33 P -0.11 (xt\325) 146.51 444.33 P -0.11 (s serv) 157.07 444.33 P -0.11 (er) 179.86 444.33 P -0.11 (, printer) 187.23 444.33 P -0.11 (, job, document, and page options.) 218.38 444.33 P 0 F -0.11 (PrintGetAttrib) 357.71 444.33 P -0.11 (utes) 421.94 444.33 P 1 F -0.11 ( and) 439.16 444.33 P 0 F -0.11 (PrintSetAttrib) 458.38 444.33 P -0.11 (utes) 520.39 444.33 P 1 F (are used to access and modify attrib) 108 432.33 T (ute pools.) 251.1 432.33 T 0 F (PrintStartJ) 108 408.33 T (ob) 156.73 408.33 T 1 F ( and) 167.29 408.33 T 0 F (PrintEndJ) 186.73 408.33 T (ob) 231.59 408.33 T 1 F ( are used to delineate print jobs. A \322job\323 is a collection of documents) 242.15 408.33 T (delineated by) 108 396.33 T 0 F (PrintStartDoc) 164.1 396.33 T 1 F ( and) 224.64 396.33 T 0 F (PrintEndDoc) 244.08 396.33 T 1 F (. Each document is, in turn, a collection of \322pages\323. Upon) 300.75 396.33 T (completion the serv) 108 384.33 T (er sends an) 186.73 384.33 T (y resulting PDL to a print spooler) 231.01 384.33 T (, or mak) 365.05 384.33 T (es it a) 398 384.33 T (v) 421.13 384.33 T (ailable for retrie) 425.88 384.33 T (v) 490.05 384.33 T (al by an) 494.8 384.33 T (application.) 108 372.33 T 0 0 0 1 0 0 0 K FMENDPAGE %%EndPage: "1" 5 %%Page: "2" 6 612 792 0 FMBEGINPAGE [0 0 0 1 0 0 0] [ 0 1 1 0 1 0 0] [ 1 0 1 0 0 1 0] [ 1 1 0 0 0 0 1] [ 1 0 0 0 0 1 1] [ 0 1 0 0 1 0 1] [ 0 0 1 0 1 1 0] 7 FrameSetSepColors FrameNoSep 0 0 0 1 0 0 0 K 72 36.66 504 47.95 R 7 X 0 0 0 1 0 0 0 K V 1 10 Q 0 X (2) 72 41.28 T (December 15, 1997) 248.71 41.28 T (Protocols) 466.22 41.28 T 72 54 504 54 2 L 7 X V 0.25 H 2 Z 0 X N 72 740.81 504 756 R 7 X V 0 14 Q 0 X (2) 72 749.33 T (Pr) 448.27 749.33 T (otocols) 462.78 749.33 T 72 36.66 540 47.95 R 7 X V 1 10 Q 0 X (Release 6.4) 72 41.28 T (X V) 487.23 41.28 T (ersion 11) 503.06 41.28 T 72 54 540 54 2 L 7 X V 0 X N 0 0 0 1 0 0 0 K 0 0 0 1 0 0 0 K 72 63 540 711 R 7 X V 0 18 Q 0 X (2) 72 699 T (Pr) 108 699 T (otocols) 126.67 699 T 0 14 Q (2.1) 72 661.67 T (F) 108 661.67 T (ormats, Syntactic Con) 116.2 661.67 T (v) 248.24 661.67 T (entions, and Common T) 255.1 661.67 T (ypes) 397.97 661.67 T 1 10 Q (The type PCONTEXT is a 32-bit v) 108 637.33 T (alue. Its top three bits are guaranteed to be zero.) 247.74 637.33 T (Refer to the) 108 613.33 T 2 F (X W) 157.71 613.33 T (indow System) 174.1 613.33 T 1 F ( Protocol speci\336cation for a description of other formats, syntactic con) 228.82 613.33 T (v) 510.32 613.33 T (en-) 515.17 613.33 T (tions and common types established in that publication and used in the current document as well.) 108 601.33 T 0 14 Q (2.2) 72 565.67 T (Err) 108 565.67 T (ors) 129.52 565.67 T 1 10 Q (X Print Service can return the follo) 108 541.33 T (wing messages, in addition to X core request errors.) 248.28 541.33 T 0 F (XPBadContext) 108 517.33 T 1 F (An incorrect print conte) 198 517.33 T (xt ID w) 293.66 517.33 T (as speci\336ed.) 324.11 517.33 T 0 F (XPBadSequence) 108 493.33 T 1 F (Requests were not speci\336ed in the proper order with respect to other) 198 493.33 T (requests. F) 198 481.33 T (or e) 241.18 481.33 T (xample, a request w) 256.3 481.33 T (as speci\336ed before a) 336.18 481.33 T 0 F (PrintSetContext) 420.04 481.33 T 1 F (request.) 198 469.33 T -0.24 (Other errors that are conte) 108 445.33 P -0.24 (xt speci\336c for a particular request are documented in the description of the request) 211.83 445.33 P -0.24 (itself. If the abo) 108 433.33 P -0.24 (v) 170.45 433.33 P -0.24 (e errors ha) 175.3 433.33 P -0.24 (v) 216.82 433.33 P -0.24 (e a speci\336c meaning for a particular request, the) 221.66 433.33 P -0.24 (y are documented in the request) 411.48 433.33 P (itself as well.) 108 421.33 T 0 14 Q (2.3) 72 385.67 T (X Print Ser) 108 385.67 T (vice Requests) 176.29 385.67 T 0 12 Q (PrintCr) 108 330 T (eateContext) 148.44 330 T 1 10 Q (conte) 108 310.33 T (xt-id: PCONTEXT) 129.51 310.33 T (printer) 108 298.33 T (-name: STRING8) 134.46 298.33 T (locale: STRING8) 108 286.33 T (Errors:) 108 262.33 T 0 F (Match, IDChoice) 138.27 262.33 T 1 F (This request creates a ne) 108 238.33 T (w print conte) 206.05 238.33 T (xt and assigns conte) 258.67 238.33 T (xt-id to it. The attrib) 338.79 238.33 T (utes associated with the ne) 419.98 238.33 T (w) 526.38 238.33 T (conte) 108 226.33 T (xt are those determined by the printer) 129.51 226.33 T (-name. Printer) 279.28 226.33 T (-name is encoded in COMPOUND_TEXT) 336.29 226.33 T (.) 506.08 226.33 T -0.28 (The client must select the conte) 108 202.33 P -0.28 (xt-id by ORing some combination of bits in the connection resource-id-mask) 232.82 202.33 P (with the resource-id-base.) 108 190.33 T (The locale ar) 108 166.33 T (gument is used as a \322hint\323 to the print serv) 160.02 166.33 T (er) 330.13 166.33 T (, and is used to initialize attrib) 337.5 166.33 T (ute pools with an) 458.13 166.33 T (y) 526.59 166.33 T (localized attrib) 108 154.33 T (ute v) 167.51 154.33 T (alues.) 186.98 154.33 T (A) 108 130.33 T 0 F (Match) 117.72 130.33 T 1 F ( error is generated when the printer) 145.49 130.33 T (-name does not e) 285.8 130.33 T (xist.) 353.69 130.33 T 72 322 90 340.8 C 0 0 0 1 0 0 0 K 0 0 0 1 0 0 0 K 72 340.8 72 322.8 2 L 1 H 2 Z 0 X 0 0 0 1 0 0 0 K N 72 340.8 90 340.8 2 L 0.5 H N 72 340.8 72 322.8 2 L N 72 340.8 90 340.8 2 L N 0 0 612 792 C 72 260 90 278 C 0 0 0 1 0 0 0 K 0 0 0 1 0 0 0 K 72 278 72 260 2 L 1 H 2 Z 0 X 0 0 0 1 0 0 0 K N 72 260 90 260 2 L N 0 0 612 792 C 0 0 0 1 0 0 0 K FMENDPAGE %%EndPage: "2" 6 %%Page: "3" 7 612 792 0 FMBEGINPAGE [0 0 0 1 0 0 0] [ 0 1 1 0 1 0 0] [ 1 0 1 0 0 1 0] [ 1 1 0 0 0 0 1] [ 1 0 0 0 0 1 1] [ 0 1 0 0 1 0 1] [ 0 0 1 0 1 1 0] 7 FrameSetSepColors FrameNoSep 0 0 0 1 0 0 0 K 72 54 540 54 2 L 0.25 H 2 Z 0 X 0 0 0 1 0 0 0 K N 1 10 Q (X V) 72 41.28 T (ersion 11) 87.83 41.28 T (Release 6.4) 493.9 41.28 T 108 54 540 54 2 L N 72 740.81 540 756 R 7 X V 0 14 Q 0 X (Pr) 72 746.67 T (otocols) 86.52 746.67 T (3) 533 746.67 T 0 0 0 1 0 0 0 K 0 0 0 1 0 0 0 K 0 12 Q (PrintSetContext) 108 703 T 1 10 Q (conte) 108 683.33 T (xt: PCONTEXT or) 129.51 683.33 T 0 F (None) 208.12 683.33 T 1 F (Errors:) 108 659.33 T 0 F ( XPBadContext) 135.77 659.33 T 1 F -0.03 (This request associates the conte) 108 635.33 P -0.03 (xt speci\336ed with all subsequent print operations for this client. If conte) 238.28 635.33 P -0.03 (xt is) 520.6 635.33 P 0 F -0.1 (None) 108 623.33 P 1 F -0.1 (, the print conte) 130.22 623.33 P -0.1 (xt pre) 192.54 623.33 P -0.1 (viously associated with this client is unset. If no print conte) 215.24 623.33 P -0.1 (xt w) 451.59 623.33 P -0.1 (as pre) 468.89 623.33 P -0.1 (viously set,) 492.14 623.33 P (then no action is tak) 108 611.33 T (en when) 188.45 611.33 T 0 F (None) 224.55 611.33 T 1 F (is speci\336ed.) 249.27 611.33 T (The e) 108 587.33 T (x) 130.34 587.33 T (ecution of the) 135.19 587.33 T 0 F (PrintSetContext) 192.68 587.33 T 1 F ( request may af) 262.11 587.33 T (fect the interpretation of the font path. The font path) 323.23 587.33 T -0.1 (contains font path elements for all printers associated with a print serv) 108 575.33 P -0.1 (er) 387.56 575.33 P -0.1 (. Only those associated with the cur-) 394.78 575.33 P (rent print conte) 108 563.33 T (xt are returned and used for print rendering.) 168.95 563.33 T 0 12 Q (PrintGetContext) 108 508 T 3 10 Q (\256) 100.8 488.33 T 1 F (conte) 108 472.33 T (xt: PCONTEXT or None) 129.51 472.33 T (This request returns the current print conte) 108 448.33 T (xt for the connection.) 278.37 448.33 T 0 12 Q (PrintDestr) 108 393 T (oyContext) 162.43 393 T 1 10 Q (conte) 108 373.33 T (xt: PCONTEXT) 129.51 373.33 T (Errors:) 108 349.33 T 0 F (XPBadContext) 138.27 349.33 T 1 F -0.21 (This request unsets and destro) 108 325.33 P -0.21 (ys a print conte) 227.61 325.33 P -0.21 (xt. If a print conte) 288.21 325.33 P -0.21 (xt is destro) 359.16 325.33 P -0.21 (yed before print operations associ-) 402.53 325.33 P -0.09 (ated with it ha) 108 313.33 P -0.09 (v) 164.47 313.33 P -0.09 (e been completed, the print serv) 169.32 313.33 P -0.09 (er cancels all those operations as if a) 296.47 313.33 P 0 F -0.09 (CancelJ) 444.6 313.33 P -0.09 (ob) 478.89 313.33 P 1 F -0.09 ( request had) 489.45 313.33 P (been issued.) 108 301.33 T 0 12 Q (PrintGetPrinterList) 108 246 T 1 10 Q (printer) 108 226.33 T (-name: STRING8) 134.46 226.33 T (locale: STRING8) 108 214.33 T 3 F (\256) 100.8 198.33 T 1 F (printers: LIST) 108 182.33 T (ofPRINTER) 164.14 182.33 T (where:) 108 168.33 T (PRINTER:) 126 156.33 T (name: STRING8) 180 156.33 T (description: STRING8) 180 144.33 T (This request retrie) 108 108.33 T (v) 180.51 108.33 T (es a list of all printers supported on a print serv) 185.36 108.33 T (er) 373.52 108.33 T (.) 380.74 108.33 T 72 692.2 90 711 C 0 0 0 1 0 0 0 K 0 0 0 1 0 0 0 K 72 711 72 693 2 L 1 H 2 Z 0 X 0 0 0 1 0 0 0 K N 72 711 90 711 2 L 0.5 H N 72 711 72 693 2 L N 72 711 90 711 2 L N 0 0 612 792 C 72 657 90 675 C 0 0 0 1 0 0 0 K 0 0 0 1 0 0 0 K 72 675 72 657 2 L 1 H 2 Z 0 X 0 0 0 1 0 0 0 K N 72 657 90 657 2 L N 0 0 612 792 C 72 500 90 518.8 C 0 0 0 1 0 0 0 K 0 0 0 1 0 0 0 K 72 518.8 72 500.8 2 L 1 H 2 Z 0 X 0 0 0 1 0 0 0 K N 72 518.8 90 518.8 2 L 0.5 H N 72 518.8 72 500.8 2 L N 72 518.8 90 518.8 2 L N 0 0 612 792 C 72 470 90 488 C 0 0 0 1 0 0 0 K 0 0 0 1 0 0 0 K 72 488 72 470 2 L 1 H 2 Z 0 X 0 0 0 1 0 0 0 K N 72 470 90 470 2 L N 0 0 612 792 C 72 385 90 403.8 C 0 0 0 1 0 0 0 K 0 0 0 1 0 0 0 K 72 403.8 72 385.8 2 L 1 H 2 Z 0 X 0 0 0 1 0 0 0 K N 72 403.8 90 403.8 2 L 0.5 H N 72 403.8 72 385.8 2 L N 72 403.8 90 403.8 2 L N 0 0 612 792 C 72 347 90 365 C 0 0 0 1 0 0 0 K 0 0 0 1 0 0 0 K 72 365 72 347 2 L 1 H 2 Z 0 X 0 0 0 1 0 0 0 K N 72 347 90 347 2 L N 0 0 612 792 C 72 238 90 256.8 C 0 0 0 1 0 0 0 K 0 0 0 1 0 0 0 K 72 256.8 72 238.8 2 L 1 H 2 Z 0 X 0 0 0 1 0 0 0 K N 72 256.8 90 256.8 2 L 0.5 H N 72 256.8 72 238.8 2 L N 72 256.8 90 256.8 2 L N 0 0 612 792 C 72 130 90 148 C 0 0 0 1 0 0 0 K 0 0 0 1 0 0 0 K 72 148 72 130 2 L 1 H 2 Z 0 X 0 0 0 1 0 0 0 K N 72 130 90 130 2 L N 0 0 612 792 C 0 0 0 1 0 0 0 K FMENDPAGE %%EndPage: "3" 7 %%Page: "4" 8 612 792 0 FMBEGINPAGE [0 0 0 1 0 0 0] [ 0 1 1 0 1 0 0] [ 1 0 1 0 0 1 0] [ 1 1 0 0 0 0 1] [ 1 0 0 0 0 1 1] [ 0 1 0 0 1 0 1] [ 0 0 1 0 1 1 0] 7 FrameSetSepColors FrameNoSep 0 0 0 1 0 0 0 K 72 36.66 504 47.95 R 7 X 0 0 0 1 0 0 0 K V 1 10 Q 0 X (4) 72 41.28 T (December 15, 1997) 248.71 41.28 T (Protocols) 466.22 41.28 T 72 54 504 54 2 L 7 X V 0.25 H 2 Z 0 X N 72 740.81 504 756 R 7 X V 0 14 Q 0 X (4) 72 749.33 T (Pr) 448.27 749.33 T (otocols) 462.78 749.33 T 72 36.66 540 47.95 R 7 X V 1 10 Q 0 X (Release 6.4) 72 41.28 T (X V) 487.23 41.28 T (ersion 11) 503.06 41.28 T 72 54 540 54 2 L 7 X V 0 X N 0 0 0 1 0 0 0 K 0 0 0 1 0 0 0 K 72 63 540 711 R 7 X V 0 X (If printer) 108 704.33 T (-name is an empty string, then a list of all printers is returned. Otherwise the print record that) 143.62 704.33 T (matches the printer) 108 692.33 T (-name speci\336ed is returned. If no records match printer) 184.45 692.33 T (-name, then an empty list is) 404.47 692.33 T (returned.) 108 680.33 T (printer) 108 656.33 T (-name is a COMPOUND_TEXT string. The name and description \336elds returned are) 134.46 656.33 T (COMPOUND_TEXT) 108 644.33 T (. If printer) 195.03 644.33 T (-name is pro) 235.65 644.33 T (vided in a code-set that the print serv) 285.49 644.33 T (er cannot con) 433.37 644.33 T (v) 486.84 644.33 T (ert, then it) 491.69 644.33 T (may not be possible to locate the requested printer) 108 632.33 T (.) 308.53 632.33 T (The locale ar) 108 608.33 T (gument is used as a \322hint\323 to locate a localized description for each printer in the list. If the) 160.02 608.33 T (print serv) 108 596.33 T (er cannot interpret the hint, then it describes the printers in the serv) 145.9 596.33 T (er\325) 413.76 596.33 T (s current locale.) 424.31 596.33 T 0 12 Q (PrintGetScr) 108 541 T (eenOfContext) 170.44 541 T 3 10 Q (\256) 100.8 521.33 T 1 F (root: WINDO) 108 505.33 T (W) 163.47 505.33 T (Errors:) 108 481.33 T 0 F (XPBadContext) 138.27 481.33 T 1 F (This request returns the root windo) 108 457.33 T (w associated with the current print conte) 248.01 457.33 T (xt.) 410.05 457.33 T -0.02 (Each printer supported by a print serv) 108 433.33 P -0.02 (er is associated with e) 258.81 433.33 P -0.02 (xactly one of the screens returned in the connec-) 346.33 433.33 P (tion setup reply) 108 421.33 T (.) 169.57 421.33 T 0 12 Q (PrintStartJ) 108 366 T (ob) 166.48 366 T 1 10 Q (output-mode: {) 108 346.33 T 0 F (XPSpool, XPGetData) 169.19 346.33 T 1 F (}) 260.85 346.33 T (Errors:) 108 322.33 T 0 F (XPBadSequence, V) 138.27 322.33 T (alue) 220.13 322.33 T 1 F -0.17 (This request signals the be) 108 298.33 P -0.17 (ginning of a ne) 213.29 298.33 P -0.17 (w print job) 272.82 298.33 P -0.17 (. It results in the generation of an) 315.98 298.33 P 0 F -0.17 (XPPrintNotify) 449.36 298.33 P 1 F -0.17 ( e) 511.57 298.33 P -0.17 (v) 518.09 298.33 P -0.17 (ent,) 522.95 298.33 P (with the detail \336eld set to) 108 286.33 T 0 F (XPStartJ) 211.89 286.33 T (obNotify) 251.73 286.33 T 1 F (.) 288.3 286.33 T (If output-mode is set to) 108 262.33 T 0 F (XPSpool) 203.83 262.33 T 1 F (, then the document data is typically sent to a spooler) 241.06 262.33 T (.) 452.99 262.33 T -0.02 (If output-mode is set to) 108 238.33 P 0 F -0.02 (XPGetData) 203.74 238.33 P 1 F -0.02 (, then the document data is made a) 253.17 238.33 P -0.02 (v) 391.16 238.33 P -0.02 (ailable to) 395.91 238.33 P 0 F -0.02 (PrintGetDocumentData) 435.32 238.33 P 1 F -0.22 (and the resulting job is not spooled. In this case, the print serv) 108 226.33 P -0.22 (er suspends processing further requests on this) 352.96 226.33 P (print conte) 108 214.33 T (xt until some other client sends) 150.9 214.33 T 0 F (PrintGetDocumentData.) 278.12 214.33 T 1 F (Subsequent operations that use the) 385.32 214.33 T (print conte) 108 202.33 T (xt may be suspended at an) 150.9 202.33 T (y time pending the processing of) 256.01 202.33 T 0 F (PrintGetDocumentData) 389.33 202.33 T 1 F ( replies to) 491.53 202.33 T (read an) 108 190.33 T (y b) 137 190.33 T (uf) 149.3 190.33 T (fered output.) 157.38 190.33 T -0.29 (An) 108 166.33 P -0.29 (y changes to the) 120.07 166.33 P 0 F -0.29 (XPJ) 186.13 166.33 P -0.29 (obAttr) 204.31 166.33 P 1 F -0.29 ( pool must be made before) 233.19 166.33 P 0 F -0.29 (PrintStartJ) 340.34 166.33 P -0.29 (ob) 389.07 166.33 P -0.29 (.) 399.23 166.33 P 1 F -0.29 (Further modi\336cations can only be) 403.94 166.33 P (made to the attrib) 108 154.33 T (ute pool after a) 178.07 154.33 T 0 F (PrintEndJ) 240.83 154.33 T (ob) 285.69 154.33 T 1 F ( request is e) 296.25 154.33 T (x) 343.59 154.33 T (ecuted.) 348.44 154.33 T 0 12 Q (PrintEndJ) 108 99 T (ob) 161.83 99 T 1 10 Q (cancel: BOOL) 108 79.33 T 72 533 90 551.8 C 0 0 0 1 0 0 0 K 0 0 0 1 0 0 0 K 72 551.8 72 533.8 2 L 1 H 2 Z 0 X 0 0 0 1 0 0 0 K N 72 551.8 90 551.8 2 L 0.5 H N 72 551.8 72 533.8 2 L N 72 551.8 90 551.8 2 L N 0 0 612 792 C 72 479 90 497 C 0 0 0 1 0 0 0 K 0 0 0 1 0 0 0 K 72 497 72 479 2 L 1 H 2 Z 0 X 0 0 0 1 0 0 0 K N 72 479 90 479 2 L N 0 0 612 792 C 72 358 90 376.8 C 0 0 0 1 0 0 0 K 0 0 0 1 0 0 0 K 72 376.8 72 358.8 2 L 1 H 2 Z 0 X 0 0 0 1 0 0 0 K N 72 376.8 90 376.8 2 L 0.5 H N 72 376.8 72 358.8 2 L N 72 376.8 90 376.8 2 L N 0 0 612 792 C 72 320 90 338 C 0 0 0 1 0 0 0 K 0 0 0 1 0 0 0 K 72 338 72 320 2 L 1 H 2 Z 0 X 0 0 0 1 0 0 0 K N 72 320 90 320 2 L N 0 0 612 792 C 72 91 90 109.8 C 0 0 0 1 0 0 0 K 0 0 0 1 0 0 0 K 72 109.8 72 91.8 2 L 1 H 2 Z 0 X 0 0 0 1 0 0 0 K N 72 109.8 90 109.8 2 L 0.5 H N 72 109.8 72 91.8 2 L N 72 109.8 90 109.8 2 L N 0 0 612 792 C 0 0 0 1 0 0 0 K FMENDPAGE %%EndPage: "4" 8 %%Page: "5" 9 612 792 0 FMBEGINPAGE [0 0 0 1 0 0 0] [ 0 1 1 0 1 0 0] [ 1 0 1 0 0 1 0] [ 1 1 0 0 0 0 1] [ 1 0 0 0 0 1 1] [ 0 1 0 0 1 0 1] [ 0 0 1 0 1 1 0] 7 FrameSetSepColors FrameNoSep 0 0 0 1 0 0 0 K 72 54 540 54 2 L 0.25 H 2 Z 0 X 0 0 0 1 0 0 0 K N 1 10 Q (X V) 72 41.28 T (ersion 11) 87.83 41.28 T (Release 6.4) 493.9 41.28 T 108 54 540 54 2 L N 72 740.81 540 756 R 7 X V 0 14 Q 0 X (Pr) 72 746.67 T (otocols) 86.52 746.67 T (5) 533 746.67 T 0 0 0 1 0 0 0 K 0 0 0 1 0 0 0 K 1 10 Q (Errors:) 108 704.33 T 0 F (XPBadContext, XPBadSequence) 138.27 704.33 T 1 F (This request causes the print job associated with the current print conte) 108 680.33 T (xt to end. If cancel is) 391.97 680.33 T 0 F (F) 478.34 680.33 T (ALSE) 483.55 680.33 T 1 F (, an) 509.67 680.33 T (y) 523.96 680.33 T (accumulated print data that remains is either sent to the printer or made a) 108 668.33 T (v) 399.69 668.33 T (ailable to) 404.44 668.33 T 0 F (PrintGetDocument-) 443.88 668.33 T (Data) 108 656.33 T 1 F (.) 128.55 656.33 T (The request generates an) 108 632.33 T 0 F (XPPrintNotify) 209.63 632.33 T 1 F ( e) 271.84 632.33 T (v) 278.53 632.33 T (ent with its detail \336eld set to) 283.38 632.33 T 0 F (XPEndJ) 399.22 632.33 T (obNotify) 435.19 632.33 T 1 F (.) 471.76 632.33 T (When cancel is) 108 608.33 T 0 F (TR) 171.59 608.33 T (UE) 185.18 608.33 T 1 F (, the job currently being processed is canceled. The serv) 199.07 608.33 T (er may discard an) 423.03 608.33 T (y pending) 493.69 608.33 T -0.14 (output or may produce partial output. If the job w) 108 596.33 P -0.14 (as started in) 305 596.33 P 0 F -0.14 (XPGetData) 354.86 596.33 P 1 F -0.14 ( mode, then the entire data output) 404.29 596.33 P (stream is implementation-de\336ned.) 108 584.33 T (If) 108 560.33 T 0 F (PrintEndJ) 117.16 560.33 T (ob) 162.02 560.33 T 1 F ( is called immediately after) 172.58 560.33 T 0 F (PrintEndP) 283.95 560.33 T (age) 329.97 560.33 T 1 F (, then a synthetic) 344.41 560.33 T 0 F (PrintEndDoc) 414.68 560.33 T 1 F ( is generated by) 471.35 560.33 T (print serv) 108 548.33 T (er before) 145.9 548.33 T 0 F (PrintEndJ) 184.21 548.33 T (ob) 229.07 548.33 T 1 F (. The pool of) 239.23 548.33 T 0 F (XPJ) 293.39 548.33 T (obAttr) 311.57 548.33 T 1 F ( attrib) 340.45 548.33 T (utes that w) 363.86 548.33 T (as frozen when the) 407.09 548.33 T 0 F (PrintStart-) 484.84 548.33 T (J) 108 536.33 T (ob) 112.85 536.33 T 1 F ( request w) 123.41 536.33 T (as e) 164.41 536.33 T (x) 179.53 536.33 T (ecuted is released when) 184.38 536.33 T 0 F (PrintEndJ) 281.57 536.33 T (ob) 326.43 536.33 T 1 F ( is called.) 336.99 536.33 T 0 12 Q (PrintGetDocumentData) 108 481 T 1 10 Q (conte) 108 461.33 T (xt: PCONTEXT) 129.51 461.33 T (max-bytes: CARD32) 108 449.33 T 3 F (\256) 100.8 433.33 T 3 9 Q (+) 110.67 433.33 T 1 10 Q (status-code: {) 108 417.33 T 0 F (XPGetDocFinished, XPGetDocSecondConsumer) 163.07 417.33 T (, XPGetDocErr) 369.91 417.33 T (or) 435.82 417.33 T 1 F (}) 445.26 417.33 T (\336nished-\337ag: CARD32) 108 405.33 T (data: LIST) 108 393.33 T (ofBYTE) 150.25 393.33 T (Errors:) 108 369.33 T 0 F (XPBadContext, XPBadSequence, V) 138.27 369.33 T (alue) 289.57 369.33 T 1 F (This request returns data generated on a conte) 108 345.33 T (xt by other clients.) 291.41 345.33 T 0 F (PrintGetDocumentData) 108 321.33 T 1 F ( should be sent only after a) 210.2 321.33 T 0 F (PrintStartJ) 320.46 321.33 T (ob) 369.19 321.33 T 1 F ( request with sa) 379.75 321.33 T (v) 442.04 321.33 T (e_data set to) 446.89 321.33 T 0 F (XPGet-) 499.38 321.33 T (Data) 108 309.33 T 1 F ( has been e) 128.55 309.33 T (x) 172.55 309.33 T (ecuted.) 177.4 309.33 T 0 F -0.04 (PrintGetDocumentData) 108 285.33 P 1 F -0.04 ( generates multiple replies. Each reply is no lar) 210.2 285.33 P -0.04 (ger than the v) 397.73 285.33 P -0.04 (alue speci\336ed in max-) 452.08 285.33 P (bytes. The \336nal reply is generated by) 108 273.33 T 0 F (PrintEndJ) 258.53 273.33 T (ob) 303.39 273.33 T 1 F ( and has \336nished-\337ag set to) 313.95 273.33 T 0 F (TR) 425.61 273.33 T (UE) 439.2 273.33 T 1 F (.) 453.09 273.33 T (If the v) 108 249.33 T (alue for max-bytes is zero, a) 136.63 249.33 T 0 F (V) 252.43 249.33 T (alue) 258.73 249.33 T 1 F ( error is generated.) 276.51 249.33 T (An) 108 225.33 T 0 F (XPBadSequence) 122.72 225.33 T 1 F ( error is generated if) 193.28 225.33 T 0 F (PrintGetDocumentData) 276.86 225.33 T 1 F ( is e) 379.06 225.33 T (x) 395.02 225.33 T (ecuted before) 399.87 225.33 T 0 F (PrintStartJ) 456.51 225.33 T (ob) 505.24 225.33 T 1 F ( or if) 515.8 225.33 T 0 F (PrintGetDocumentData) 108 213.33 T 1 F ( is e) 210.2 213.33 T (x) 226.16 213.33 T (ecuted after) 231.01 213.33 T 0 F (PrintStartJ) 280.43 213.33 T (ob) 329.16 213.33 T 1 F ( with sa) 339.72 213.33 T (v) 370.63 213.33 T (e_data set to) 375.48 213.33 T 0 F (XPSpool) 427.97 213.33 T 1 F (.) 465.2 213.33 T 0 12 Q (PrintPutDocumentData) 108 158 T 1 10 Q (dra) 108 138.33 T (w) 120.62 138.33 T (able: DRA) 127.74 138.33 T (W) 169.89 138.33 T (ABLE) 178.13 138.33 T (data: LIST) 108 126.33 T (ofBYTE) 150.25 126.33 T (doc-format, options: STRING8) 108 114.33 T (Errors:) 108 90.33 T 0 F (XPBadContext, XPBadSequence, Match, V) 138.27 90.33 T (alue, Drawable) 322.34 90.33 T 72 693 90 711 C 0 0 0 1 0 0 0 K 0 0 0 1 0 0 0 K 72 711 72 693 2 L 1 H 2 Z 0 X 0 0 0 1 0 0 0 K N 72 693 90 693 2 L N 0 0 612 792 C 72 473 90 491.8 C 0 0 0 1 0 0 0 K 0 0 0 1 0 0 0 K 72 491.8 72 473.8 2 L 1 H 2 Z 0 X 0 0 0 1 0 0 0 K N 72 491.8 90 491.8 2 L 0.5 H N 72 491.8 72 473.8 2 L N 72 491.8 90 491.8 2 L N 0 0 612 792 C 72 367 90 385 C 0 0 0 1 0 0 0 K 0 0 0 1 0 0 0 K 72 385 72 367 2 L 1 H 2 Z 0 X 0 0 0 1 0 0 0 K N 72 367 90 367 2 L N 0 0 612 792 C 72 150 90 168.8 C 0 0 0 1 0 0 0 K 0 0 0 1 0 0 0 K 72 168.8 72 150.8 2 L 1 H 2 Z 0 X 0 0 0 1 0 0 0 K N 72 168.8 90 168.8 2 L 0.5 H N 72 168.8 72 150.8 2 L N 72 168.8 90 168.8 2 L N 0 0 612 792 C 72 150 90 168.8 C 0 0 0 1 0 0 0 K 0 0 0 1 0 0 0 K 72 168.8 72 150.8 2 L 1 H 2 Z 0 X 0 0 0 1 0 0 0 K N 72 168.8 90 168.8 2 L 0.5 H N 72 168.8 72 150.8 2 L N 72 168.8 90 168.8 2 L N 0 0 612 792 C 72 88 90 106 C 0 0 0 1 0 0 0 K 0 0 0 1 0 0 0 K 72 106 72 88 2 L 1 H 2 Z 0 X 0 0 0 1 0 0 0 K N 72 88 90 88 2 L N 0 0 612 792 C 0 0 0 1 0 0 0 K FMENDPAGE %%EndPage: "5" 9 %%Page: "6" 10 612 792 0 FMBEGINPAGE [0 0 0 1 0 0 0] [ 0 1 1 0 1 0 0] [ 1 0 1 0 0 1 0] [ 1 1 0 0 0 0 1] [ 1 0 0 0 0 1 1] [ 0 1 0 0 1 0 1] [ 0 0 1 0 1 1 0] 7 FrameSetSepColors FrameNoSep 0 0 0 1 0 0 0 K 72 36.66 504 47.95 R 7 X 0 0 0 1 0 0 0 K V 1 10 Q 0 X (6) 72 41.28 T (December 15, 1997) 248.71 41.28 T (Protocols) 466.22 41.28 T 72 54 504 54 2 L 7 X V 0.25 H 2 Z 0 X N 72 740.81 504 756 R 7 X V 0 14 Q 0 X (6) 72 749.33 T (Pr) 448.27 749.33 T (otocols) 462.78 749.33 T 72 36.66 540 47.95 R 7 X V 1 10 Q 0 X (Release 6.4) 72 41.28 T (X V) 487.23 41.28 T (ersion 11) 503.06 41.28 T 72 54 540 54 2 L 7 X V 0 X N 0 0 0 1 0 0 0 K 0 0 0 1 0 0 0 K 72 63 540 711 R 7 X V 0 X (This request allo) 108 704.33 T (ws an application to send and incorporate data into the print output. It functions in tw) 174.41 704.33 T (o) 515.39 704.33 T (modes, depending on whether the) 108 692.33 T 0 F (PrintStartDoc) 245.2 692.33 T 1 F ( dri) 305.74 692.33 T (v) 319.1 692.33 T (er) 323.95 692.33 T (-mode is set to) 331.52 692.33 T 0 F (XPDocNormal) 392.63 692.33 T 1 F ( or) 455.39 692.33 T 0 F (XPDocRaw) 468.72 692.33 T 1 F (:) 518.15 692.33 T 0 F (XPDocNormal) 108 668.33 T (PrintPutDocumentData) 198 668.33 T 1 F ( sends data to the print serv) 299.65 668.33 T (er and inte) 408.93 668.33 T (grates data) 450.99 668.33 T -0.21 (into the output. The root of the dra) 198 656.33 P -0.21 (w) 334.67 656.33 P -0.21 (able must be the root of the current print) 341.79 656.33 P -0.06 (conte) 198 644.33 P -0.06 (xt. The doc-format and options parameters describe the format of data,) 219.51 644.33 P (which in turn guides the w) 198 632.33 T (ay the serv) 304.28 632.33 T (er interprets it. The) 347.45 632.33 T 0 F (xp-embedded-f) 426.6 632.33 T (or-) 490.79 632.33 T (mats-supported) 198 620.33 T 1 F ( attrib) 265.22 620.33 T (ute in the) 288.63 620.33 T 0 F (XPPrinterAttr) 328.35 620.33 T 1 F ( pool de\336nes v) 391.1 620.33 T (alid v) 449.46 620.33 T (alues) 471.71 620.33 T (for doc-format in this mode, else a) 198 608.33 T 0 F (Match) 338.53 608.33 T 1 F ( error is issued.) 366.3 608.33 T 0 F (XPDocRaw) 108 584.33 T (PrintPutDocumentData) 198 584.33 T 1 F ( sends data directly to the print serv) 299.65 584.33 T (er output. The) 441.98 584.33 T (print serv) 198 572.33 T (er does not emit document or page control codes into the output,) 235.9 572.33 T (and data is passed through unmodi\336ed. Dra) 198 560.33 T (w) 371.44 560.33 T (able must be None, else a) 378.56 560.33 T 0 F (Drawable) 198 548.33 T 1 F ( error is issued. The) 239.66 548.33 T 0 F (xp-raw-f) 321.31 548.33 T (ormats-supported) 358.27 548.33 T 1 F ( attrib) 434.93 548.33 T (ute in the) 458.34 548.33 T 0 F -0.08 (XPPrinterAttr) 198 536.33 P 1 F -0.08 ( pool de\336nes v) 260.75 536.33 P -0.08 (alid v) 318.88 536.33 P -0.08 (alues for doc-format in this mode, else a) 341.05 536.33 P 0 F (Match) 198 524.33 T 1 F ( error is issued.) 225.77 524.33 T (If doc-format is not in) 108 500.33 T 0 F (xp-embedded-f) 198.82 500.33 T (ormats-supported) 263.01 500.33 T 1 F ( or) 339.67 500.33 T 0 F (xp-raw-f) 353 500.33 T (ormats-supported) 389.96 500.33 T 1 F ( a) 466.62 500.33 T 0 F (V) 476.06 500.33 T (alue) 482.36 500.33 T 1 F ( error is) 500.14 500.33 T (issued. The options \336eld is implementation-dependent and the permitted v) 108 488.33 T (alues may depend on the current) 404.4 488.33 T (settings of other attrib) 108 476.33 T (utes and the v) 195.85 476.33 T (alue of doc-format. If an unkno) 250.87 476.33 T (wn options v) 376.14 476.33 T (alue is speci\336ed a) 427.56 476.33 T 0 F (V) 500.88 476.33 T (alue) 507.18 476.33 T 1 F (error is issued, else if options is not v) 108 464.33 T (alid in the current state a) 256.91 464.33 T 0 F (Match) 358 464.33 T 1 F ( error is issued.) 385.77 464.33 T 0 12 Q (PrintStartDoc) 108 409 T 1 10 Q (dri) 108 389.33 T (v) 118.86 389.33 T (er) 123.71 389.33 T (-mode: {) 131.28 389.33 T 0 F (XPDocNormal, XPDocRaw) 166.91 389.33 T 1 F (}) 284.1 389.33 T (Errors:) 108 365.33 T 0 F (V) 138.27 365.33 T (alue, XPBadSequence) 144.57 365.33 T 1 F (This request indicates the be) 108 341.33 T (ginning of an indi) 221.72 341.33 T (vidual document within a print job) 292.86 341.33 T (. The serv) 431.07 341.33 T (er performs the) 470.63 341.33 T -0.36 (actions necessary to de\336ne a ne) 108 329.33 P -0.36 (w document, and generates an) 231.76 329.33 P 0 F -0.36 (XPPrintNotify) 353.27 329.33 P 1 F -0.36 ( e) 415.48 329.33 P -0.36 (v) 421.81 329.33 P -0.36 (ent with its detail \336eld set to) 426.66 329.33 P 0 F (XPStartDocNotify) 108 317.33 T 1 F (.) 185.66 317.33 T (The v) 108 293.33 T (alue of dri) 130.8 293.33 T (v) 171.65 293.33 T (er) 176.5 293.33 T (-mode) 184.07 293.33 T (can be:) 212.12 293.33 T 0 F (XPDocNormal) 108 269.33 T 1 F (Print serv) 198 269.33 T (er generates document data. Depending on the DDX dri) 236.46 269.33 T (v) 459.21 269.33 T (er) 464.06 269.33 T (, it can) 471.43 269.33 T (incorporate data from) 198 257.33 T 0 F (PrintPutDocumentData) 287.14 257.33 T 1 F ( into the document.) 388.79 257.33 T 0 F (XPDocRaw) 108 233.33 T 1 F (The client pro) 198 233.33 T (vides all data for the document using) 253.95 233.33 T 0 F (PrintPutDocument-) 404.21 233.33 T (Data) 198 221.33 T 1 F (. The print serv) 218.55 221.33 T (er does not generate an) 279.5 221.33 T (y data of its o) 371.54 221.33 T (wn into the docu-) 425.73 221.33 T (ment.) 198 209.33 T (If) 108 185.33 T 0 F (PrintStartP) 117.16 185.33 T (age) 167.05 185.33 T 1 F ( is sent immediately after) 181.49 185.33 T 0 F (PrintStartJ) 285.09 185.33 T (ob) 333.82 185.33 T 1 F (, then a synthetic) 344.38 185.33 T 0 F (PrintStartDoc) 414.65 185.33 T 1 F ( with dri) 475.19 185.33 T (v) 508.83 185.33 T (er) 513.68 185.33 T (-) 521.25 185.33 T (mode) 108 173.33 T 0 F (XPDocNormal) 132.72 173.33 T 1 F ( will be generated internally by print serv) 195.48 173.33 T (er before) 360.58 173.33 T 0 F (PrintStartP) 398.89 173.33 T (age) 448.78 173.33 T 1 F (.) 463.22 173.33 T (An) 108 149.33 T (y changes to the) 120.07 149.33 T 0 F (XPDocAttr) 187.28 149.33 T 1 F ( attrib) 235.59 149.33 T (ute pool must be made before) 259 149.33 T 0 F (PrintStartDoc) 380.09 149.33 T 1 F (is e) 443.13 149.33 T (x) 456.59 149.33 T (ecuted. Further) 461.44 149.33 T (modi\336cations can only be made to the attrib) 108 137.33 T (ute pool after a) 283.62 137.33 T 0 F (PrintEndDoc) 346.38 137.33 T 1 F ( request is e) 403.05 137.33 T (x) 450.39 137.33 T (ecuted.) 455.24 137.33 T 0 12 Q (PrintEndDoc) 108 82 T 72 401 90 419.8 C 0 0 0 1 0 0 0 K 0 0 0 1 0 0 0 K 72 419.8 72 401.8 2 L 1 H 2 Z 0 X 0 0 0 1 0 0 0 K N 72 419.8 90 419.8 2 L 0.5 H N 72 419.8 72 401.8 2 L N 72 419.8 90 419.8 2 L N 0 0 612 792 C 72 363 90 381 C 0 0 0 1 0 0 0 K 0 0 0 1 0 0 0 K 72 381 72 363 2 L 1 H 2 Z 0 X 0 0 0 1 0 0 0 K N 72 363 90 363 2 L N 0 0 612 792 C 72 74 90 92.8 C 0 0 0 1 0 0 0 K 0 0 0 1 0 0 0 K 72 92.8 72 74.8 2 L 1 H 2 Z 0 X 0 0 0 1 0 0 0 K N 72 92.8 90 92.8 2 L 0.5 H N 72 92.8 72 74.8 2 L N 72 92.8 90 92.8 2 L N 0 0 612 792 C 0 0 0 1 0 0 0 K FMENDPAGE %%EndPage: "6" 10 %%Page: "7" 11 612 792 0 FMBEGINPAGE [0 0 0 1 0 0 0] [ 0 1 1 0 1 0 0] [ 1 0 1 0 0 1 0] [ 1 1 0 0 0 0 1] [ 1 0 0 0 0 1 1] [ 0 1 0 0 1 0 1] [ 0 0 1 0 1 1 0] 7 FrameSetSepColors FrameNoSep 0 0 0 1 0 0 0 K 72 54 540 54 2 L 0.25 H 2 Z 0 X 0 0 0 1 0 0 0 K N 1 10 Q (X V) 72 41.28 T (ersion 11) 87.83 41.28 T (Release 6.4) 493.9 41.28 T 108 54 540 54 2 L N 72 740.81 540 756 R 7 X V 0 14 Q 0 X (Pr) 72 746.67 T (otocols) 86.52 746.67 T (7) 533 746.67 T 0 0 0 1 0 0 0 K 0 0 0 1 0 0 0 K 1 10 Q (cancel: BOOL) 108 704.33 T (Errors:) 108 680.33 T 0 F (XPBadSequence) 138.27 680.33 T 1 F (This request signals the end of a print document. The resulting document data is assembled and combined) 108 656.33 T (with data that w) 108 644.33 T (as sent by) 172.06 644.33 T 0 F (PrintPutDocumentData) 214 644.33 T 1 F (.) 315.65 644.33 T (When cancel is) 108 620.33 T 0 F (TR) 171.59 620.33 T (UE) 185.18 620.33 T 1 F (, the document currently being processed is canceled. The serv) 199.07 620.33 T (er may discard an) 449.69 620.33 T (y) 520.35 620.33 T 0 (pending output or may produce partial output. If the job w) 108 608.33 P 0 (as started with) 340.9 608.33 P 0 F 0 (XPGetData) 401.16 608.33 P 1 F 0 ( mode, then the entire) 450.59 608.33 P (data output stream is implementation-de\336ned for this document.) 108 596.33 T -0.21 (The) 108 572.33 P 0 F -0.21 (XpDocAttr) 125.84 572.33 P 1 F -0.21 ( pool that w) 173.6 572.33 P -0.21 (as frozen when the) 220.35 572.33 P 0 F -0.21 (PrintStartDoc) 297.25 572.33 P 1 F -0.21 ( request w) 357.79 572.33 P -0.21 (as e) 398.36 572.33 P -0.21 (x) 413.27 572.33 P -0.21 (ecuted is released when) 418.12 572.33 P 0 F -0.21 (Print-) 514.45 572.33 P (EndDoc) 108 560.33 T 1 F ( is called.) 142.45 560.33 T 0 12 Q (PrintStartP) 108 505 T (age) 167.87 505 T 1 10 Q (windo) 108 485.33 T (w: WINDO) 132.75 485.33 T (W) 179.33 485.33 T (Errors:) 108 461.33 T 0 F (XPBadSequence, W) 138.27 461.33 T (indo) 223.65 461.33 T (w) 242.45 461.33 T 1 F (This request indicates the be) 108 437.33 T (ginning of a single print page within a document. W) 221.72 437.33 T (indo) 430.19 437.33 T (w is the dra) 447.72 437.33 T (w) 493.95 437.33 T (able that) 501.07 437.33 T (represents the page.) 108 425.33 T 0 F (PrintStartP) 108 401.33 T (age) 157.89 401.33 T 1 F ( causes windo) 172.33 401.33 T (w to be mapped. W) 228.18 401.33 T (ithin a) 305.82 401.33 T 0 F (PrintStartP) 333.6 401.33 T (age) 383.49 401.33 T 1 F (/) 397.93 401.33 T 0 F (PrintEndP) 400.71 401.33 T (age) 446.73 401.33 T 1 F ( sequence, an) 461.17 401.33 T (y) 514.61 401.33 T -0.11 (attempts to resize, mo) 108 389.33 P -0.11 (v) 195.28 389.33 P -0.11 (e, or unmap windo) 200.13 389.33 P -0.11 (w will be ignored. T) 274.53 389.33 P -0.11 (o resize or mo) 354.65 389.33 P -0.11 (v) 411.09 389.33 P -0.11 (e inferiors of windo) 415.94 389.33 P -0.11 (w) 494.5 389.33 P -0.11 (, the stan-) 501.07 389.33 P -0.38 (dard semantics used for) 108 377.33 P 0 F -0.38 (Con\336gur) 203.66 377.33 P -0.38 (eW) 241.82 377.33 P -0.38 (indo) 256.08 377.33 P -0.38 (w) 274.88 377.33 P 1 F -0.38 ( apply) 282.1 377.33 P -0.38 (, e) 305.79 377.33 P -0.38 (xcept that the contents of the con\336gured windo) 314.69 377.33 P -0.38 (w may be) 499.77 377.33 P (lost. If the contents of a windo) 108 365.33 T (w are lost, an) 229.68 365.33 T 0 F (Expose) 285.5 365.33 T 1 F ( e) 316.06 365.33 T (v) 322.75 365.33 T (ent is generated.) 327.6 365.33 T -0.07 (A) 108 341.33 P 0 F -0.07 (W) 117.65 341.33 P -0.07 (indo) 127.47 341.33 P -0.07 (w) 146.27 341.33 P 1 F -0.07 ( error is issued if windo) 153.49 341.33 P -0.07 (w is not a descendent of the root windo) 247.6 341.33 P -0.07 (w of the current print conte) 404 341.33 P -0.07 (xt. An) 512.64 341.33 P 0 F (XPBadSequence) 108 329.33 T 1 F ( error is issued if) 178.56 329.33 T 0 F (PrintStartP) 248.27 329.33 T (age) 298.16 329.33 T 1 F ( is called in an) 312.6 329.33 T 0 F (XPDocRaw) 372.87 329.33 T 1 F ( document.) 422.3 329.33 T (An) 108 305.33 T (y changes to the) 120.07 305.33 T 0 F (XPP) 187.28 305.33 T (ageAttr) 206.62 305.33 T 1 F ( attrib) 239.38 305.33 T (ute pool must be made before) 262.79 305.33 T 0 F (PrintStartP) 383.88 305.33 T (age) 433.77 305.33 T 1 F (is e) 450.71 305.33 T (x) 464.17 305.33 T (ecuted. Further) 469.02 305.33 T (modi\336cations can only be made to the attrib) 108 293.33 T (ute pool after a) 283.62 293.33 T 0 F (PrintEndP) 346.38 293.33 T (age) 392.4 293.33 T 1 F ( request is e) 406.84 293.33 T (x) 454.18 293.33 T (ecuted.) 459.03 293.33 T 0 12 Q (PrintEndP) 108 238 T (age) 163.22 238 T 1 10 Q (cancel: BOOL) 108 218.33 T (Errors:) 108 194.33 T 0 F (XPBadContext, XPBadSequence) 138.27 194.33 T 1 F (This request indicates the end of a print page, and causes windo) 108 170.33 T (w to be unmapped. If cancel is) 362.7 170.33 T 0 F (TR) 487.67 170.33 T (UE) 501.26 170.33 T 1 F (, the) 515.15 170.33 T (current print page is canceled.) 108 158.33 T (When cancel is) 108 134.33 T 0 F (TR) 171.59 134.33 T (UE) 185.18 134.33 T 1 F (, the job currently being processed is canceled. The serv) 199.07 134.33 T (er may discard an) 423.03 134.33 T (y pending) 493.69 134.33 T -0.03 (output or may produce partial output. If the job w) 108 122.33 P -0.03 (as started with) 305.9 122.33 P 0 F -0.03 (XPGetData) 366.07 122.33 P 1 F -0.03 ( mode, then the entire data out-) 415.5 122.33 P (put stream is implementation-de\336ned for this page.) 108 110.33 T (The pool of job attrib) 108 86.33 T (utes that w) 193.35 86.33 T (as frozen when the) 236.58 86.33 T 0 F (PrintStartP) 314.33 86.33 T (age) 364.22 86.33 T 1 F ( request w) 378.66 86.33 T (as e) 419.66 86.33 T (x) 434.78 86.33 T (ecuted is freed when) 439.63 86.33 T 0 F (PrintEndP) 108 74.33 T (age) 154.02 74.33 T 1 F ( is called.) 168.46 74.33 T 72 678 90 696 C 0 0 0 1 0 0 0 K 0 0 0 1 0 0 0 K 72 696 72 678 2 L 1 H 2 Z 0 X 0 0 0 1 0 0 0 K N 72 678 90 678 2 L N 0 0 612 792 C 72 497 90 515.8 C 0 0 0 1 0 0 0 K 0 0 0 1 0 0 0 K 72 515.8 72 497.8 2 L 1 H 2 Z 0 X 0 0 0 1 0 0 0 K N 72 515.8 90 515.8 2 L 0.5 H N 72 515.8 72 497.8 2 L N 72 515.8 90 515.8 2 L N 0 0 612 792 C 72 459 90 477 C 0 0 0 1 0 0 0 K 0 0 0 1 0 0 0 K 72 477 72 459 2 L 1 H 2 Z 0 X 0 0 0 1 0 0 0 K N 72 459 90 459 2 L N 0 0 612 792 C 72 230 90 248.8 C 0 0 0 1 0 0 0 K 0 0 0 1 0 0 0 K 72 248.8 72 230.8 2 L 1 H 2 Z 0 X 0 0 0 1 0 0 0 K N 72 248.8 90 248.8 2 L 0.5 H N 72 248.8 72 230.8 2 L N 72 248.8 90 248.8 2 L N 0 0 612 792 C 72 192 90 210 C 0 0 0 1 0 0 0 K 0 0 0 1 0 0 0 K 72 210 72 192 2 L 1 H 2 Z 0 X 0 0 0 1 0 0 0 K N 72 192 90 192 2 L N 0 0 612 792 C 0 0 0 1 0 0 0 K FMENDPAGE %%EndPage: "7" 11 %%Page: "8" 12 612 792 0 FMBEGINPAGE [0 0 0 1 0 0 0] [ 0 1 1 0 1 0 0] [ 1 0 1 0 0 1 0] [ 1 1 0 0 0 0 1] [ 1 0 0 0 0 1 1] [ 0 1 0 0 1 0 1] [ 0 0 1 0 1 1 0] 7 FrameSetSepColors FrameNoSep 0 0 0 1 0 0 0 K 72 36.66 504 47.95 R 7 X 0 0 0 1 0 0 0 K V 1 10 Q 0 X (8) 72 41.28 T (December 15, 1997) 248.71 41.28 T (Protocols) 466.22 41.28 T 72 54 504 54 2 L 7 X V 0.25 H 2 Z 0 X N 72 740.81 504 756 R 7 X V 0 14 Q 0 X (8) 72 749.33 T (Pr) 448.27 749.33 T (otocols) 462.78 749.33 T 72 36.66 540 47.95 R 7 X V 1 10 Q 0 X (Release 6.4) 72 41.28 T (X V) 487.23 41.28 T (ersion 11) 503.06 41.28 T 72 54 540 54 2 L 7 X V 0 X N 0 0 0 1 0 0 0 K 0 0 0 1 0 0 0 K 72 63 540 711 R 7 X V 0 12 Q 0 X (PrintGetP) 108 577 T (ageDimensions) 160.54 577 T 1 10 Q (conte) 108 557.33 T (xt: PCONTEXT) 129.51 557.33 T 3 F (\256) 100.8 541.33 T 1 F (width: CARD16) 108 525.33 T (height: CARD16) 108 513.33 T (of) 108 501.33 T (fset-x: CARD16) 116.08 501.33 T (of) 108 489.33 T (fset-y: CARD16) 116.08 489.33 T (reproducible-width: CARD16) 108 477.33 T (reproducible-height: CARD16) 108 465.33 T (Errors:) 108 441.33 T 0 F (XPBadContext) 138.27 441.33 T 1 F (This request returns the total width and height of a page in pix) 108 417.33 T (els, together with the net reproducible area) 356.71 417.33 T (within the page. The net reproducible area is the portion of the page on which the printer is ph) 108 405.33 T (ysically capa-) 484.27 405.33 T (ble of placing ink.) 108 393.33 T 0 12 Q (PrintSelectInput) 108 338 T 1 10 Q (conte) 108 318.33 T (xt: PCONTEXT) 129.51 318.33 T (e) 108 306.33 T (v) 112.19 306.33 T (ent-mask: BITMASK) 117.04 306.33 T (Errors:) 108 282.33 T 0 F (XPBadContext, V) 138.27 282.33 T (alue) 214.01 282.33 T 1 F (This request speci\336es the print e) 108 258.33 T (v) 236.9 258.33 T (ents, from those in the speci\336ed print conte) 241.75 258.33 T (xt, the client is interested in.) 414.36 258.33 T (Possible v) 108 246.33 T (alues for the e) 148.59 246.33 T (v) 204.71 246.33 T (ent-mask BITMASK are:) 209.56 246.33 T (\245) 108 228.33 T (XPNoEv) 126 228.33 T (entMask) 161.96 228.33 T (\245) 108 216.33 T (XPPrintMask) 126 216.33 T (\245) 108 204.33 T (XP) 126 204.33 T (Attrib) 137.86 204.33 T (uteMask) 161.55 204.33 T 0 12 Q (PrintInputSelected) 108 149 T 1 10 Q (conte) 108 129.33 T (xt: PCONTEXT) 129.51 129.33 T 3 F (\256) 100.8 113.33 T 1 F (e) 108 97.33 T (v) 112.19 97.33 T (ent-mask, all-e) 117.04 97.33 T (v) 176.22 97.33 T (ents-mask: BITMASK) 181.07 97.33 T (Errors:) 108 73.33 T 0 F (XPBadContext) 138.27 73.33 T 72 569 90 587.8 C 0 0 0 1 0 0 0 K 0 0 0 1 0 0 0 K 72 587.8 72 569.8 2 L 1 H 2 Z 0 X 0 0 0 1 0 0 0 K N 72 587.8 90 587.8 2 L 0.5 H N 72 587.8 72 569.8 2 L N 72 587.8 90 587.8 2 L N 0 0 612 792 C 72 439 90 457 C 0 0 0 1 0 0 0 K 0 0 0 1 0 0 0 K 72 457 72 439 2 L 1 H 2 Z 0 X 0 0 0 1 0 0 0 K N 72 439 90 439 2 L N 0 0 612 792 C 72 330 90 348.8 C 0 0 0 1 0 0 0 K 0 0 0 1 0 0 0 K 72 348.8 72 330.8 2 L 1 H 2 Z 0 X 0 0 0 1 0 0 0 K N 72 348.8 90 348.8 2 L 0.5 H N 72 348.8 72 330.8 2 L N 72 348.8 90 348.8 2 L N 0 0 612 792 C 72 280 90 298 C 0 0 0 1 0 0 0 K 0 0 0 1 0 0 0 K 72 298 72 280 2 L 1 H 2 Z 0 X 0 0 0 1 0 0 0 K N 72 280 90 280 2 L N 0 0 612 792 C 72 141 90 159.8 C 0 0 0 1 0 0 0 K 0 0 0 1 0 0 0 K 72 159.8 72 141.8 2 L 1 H 2 Z 0 X 0 0 0 1 0 0 0 K N 72 159.8 90 159.8 2 L 0.5 H N 72 159.8 72 141.8 2 L N 72 159.8 90 159.8 2 L N 0 0 612 792 C 72 71 90 89 C 0 0 0 1 0 0 0 K 0 0 0 1 0 0 0 K 72 89 72 71 2 L 1 H 2 Z 0 X 0 0 0 1 0 0 0 K N 72 71 90 71 2 L N 0 0 612 792 C 0 0 0 1 0 0 0 K FMENDPAGE %%EndPage: "8" 12 %%Page: "9" 13 612 792 0 FMBEGINPAGE [0 0 0 1 0 0 0] [ 0 1 1 0 1 0 0] [ 1 0 1 0 0 1 0] [ 1 1 0 0 0 0 1] [ 1 0 0 0 0 1 1] [ 0 1 0 0 1 0 1] [ 0 0 1 0 1 1 0] 7 FrameSetSepColors FrameNoSep 0 0 0 1 0 0 0 K 72 54 540 54 2 L 0.25 H 2 Z 0 X 0 0 0 1 0 0 0 K N 1 10 Q (X V) 72 41.28 T (ersion 11) 87.83 41.28 T (Release 6.4) 493.9 41.28 T 108 54 540 54 2 L N 72 740.81 540 756 R 7 X V 0 14 Q 0 X (Pr) 72 746.67 T (otocols) 86.52 746.67 T (9) 533 746.67 T 0 0 0 1 0 0 0 K 0 0 0 1 0 0 0 K 1 10 Q (This request queries which X Print Serv) 108 704.33 T (er e) 267.83 704.33 T (v) 282.29 704.33 T (ents the client has selected to recei) 287.14 704.33 T (v) 425.19 704.33 T (e from the speci\336ed print) 430.04 704.33 T (conte) 108 692.33 T (xt. all-e) 129.51 692.33 T (v) 159.81 692.33 T (ents-mask returns the set of all e) 164.66 692.33 T (v) 293.83 692.33 T (ents selected by all clients.) 298.68 692.33 T 0 12 Q (PrintGetAttrib) 108 589 T (utes) 185.08 589 T 1 10 Q (conte) 108 569.33 T (xt: PCONTEXT) 129.51 569.33 T (pool: {) 108 557.33 T 0 F (XPJ) 135.86 557.33 T (obAttr) 154.04 557.33 T (, XPDocAttr) 182 557.33 T (, XPP) 234.39 557.33 T (ageAttr) 258.73 557.33 T (, XPPrinterAttr) 290.57 557.33 T (, XPSer) 357.4 557.33 T (v) 390.07 557.33 T (erAttr) 394.97 557.33 T 1 F (}) 422.17 557.33 T 3 F (\256) 100.8 541.33 T 1 F (attrib) 108 525.33 T (utes: STRING8) 128.91 525.33 T (Errors:) 108 501.33 T 0 F (XPBadContext, V) 138.27 501.33 T (alue) 214.01 501.33 T 1 F -0.33 (This request returns an attrib) 108 477.33 P -0.33 (ute pool from the speci\336ed print conte) 221.48 477.33 P -0.33 (xt. attrib) 372.13 477.33 P -0.33 (utes is the attrib) 405.49 477.33 P -0.33 (ute pool speci\336ed) 467.93 477.33 P (by pool, and is encoded in COMPOUND_TEXT) 108 465.33 T (.) 302.52 465.33 T (The format used for attrib) 108 441.33 T (utes is the same as the format used for an X resource \336le. F) 211.11 441.33 T (or a description see) 447.58 441.33 T (Section 15.1, \322Resource File Syntax\323, in the Xlib speci\336cation.) 108 429.33 T (See section) 108 405.33 T (3 for a detailed description of attrib) 155.77 405.33 T (utes.) 297.21 405.33 T 0 12 Q (PrintGetOneAttrib) 108 350 T (ute) 206.41 350 T 1 10 Q (conte) 108 330.33 T (xt: PCONTEXT) 129.51 330.33 T (pool: {) 108 318.33 T 0 F (XPJ) 135.86 318.33 T (obAttr) 154.04 318.33 T (, XPDocAttr) 182 318.33 T (, XPP) 234.39 318.33 T (ageAttr) 258.73 318.33 T (, XPPrinterAttr) 290.57 318.33 T (, XPSer) 357.4 318.33 T (v) 390.07 318.33 T (erAttr) 394.97 318.33 T 1 F (}) 422.17 318.33 T (name: STRING8) 108 306.33 T 3 F (\256) 100.8 290.33 T 1 F (v) 108 274.33 T (alue: STRING8) 112.75 274.33 T (Errors:) 108 250.33 T 0 F (XPBadContext, V) 138.27 250.33 T (alue) 214.01 250.33 T 1 F -0.02 (This request retrie) 108 226.33 P -0.02 (v) 180.47 226.33 P -0.02 (es a single attrib) 185.32 226.33 P -0.02 (ute from the speci\336ed print conte) 250.33 226.33 P -0.02 (xt. It is similar to) 382.55 226.33 P 0 F -0.02 (PrintGetAttrib) 453.57 226.33 P -0.02 (utes,) 517.8 226.33 P 1 F (b) 108 214.33 T (ut returns only one attrib) 112.8 214.33 T (ute v) 211.48 214.33 T (alue instead of an entire pool of attrib) 230.95 214.33 T (utes. The speci\336c attrib) 381 214.33 T (ute is speci\336ed) 474.12 214.33 T (by name. v) 108 202.33 T (alue is encoded in COMPOUND_TEXT) 151.91 202.33 T (.) 313.37 202.33 T 0 12 Q (PrintSetAttrib) 108 147 T (utes) 182.41 147 T 1 10 Q (conte) 108 127.33 T (xt: PCONTEXT) 129.51 127.33 T (pool: {) 108 115.33 T 0 F (XPJ) 135.86 115.33 T (obAttr) 154.04 115.33 T (, XPDocAttr) 182 115.33 T (, XPP) 234.39 115.33 T (ageAttr) 258.73 115.33 T (, XPPrinterAttr) 290.57 115.33 T (, XPSer) 357.4 115.33 T (v) 390.07 115.33 T (erAttr) 394.97 115.33 T 1 F (}) 422.17 115.33 T (rule: {) 108 103.33 T 0 F (XP) 133.63 103.33 T (AttrMer) 146.22 103.33 T (ge, XP) 182.76 103.33 T (AttrReplace) 209.79 103.33 T 1 F (}) 261.99 103.33 T (attrib) 108 91.33 T (utes: STRING8) 128.91 91.33 T (Errors:) 108 67.33 T 0 F (XPBadContext, XPBadSequence, V) 138.27 67.33 T (alue, Match) 289.57 67.33 T 72 581 90 599.8 C 0 0 0 1 0 0 0 K 0 0 0 1 0 0 0 K 72 599.8 72 581.8 2 L 1 H 2 Z 0 X 0 0 0 1 0 0 0 K N 72 599.8 90 599.8 2 L 0.5 H N 72 599.8 72 581.8 2 L N 72 599.8 90 599.8 2 L N 0 0 612 792 C 72 499 90 517 C 0 0 0 1 0 0 0 K 0 0 0 1 0 0 0 K 72 517 72 499 2 L 1 H 2 Z 0 X 0 0 0 1 0 0 0 K N 72 499 90 499 2 L N 0 0 612 792 C 72 342 90 360.8 C 0 0 0 1 0 0 0 K 0 0 0 1 0 0 0 K 72 360.8 72 342.8 2 L 1 H 2 Z 0 X 0 0 0 1 0 0 0 K N 72 360.8 90 360.8 2 L 0.5 H N 72 360.8 72 342.8 2 L N 72 360.8 90 360.8 2 L N 0 0 612 792 C 72 248 90 266 C 0 0 0 1 0 0 0 K 0 0 0 1 0 0 0 K 72 266 72 248 2 L 1 H 2 Z 0 X 0 0 0 1 0 0 0 K N 72 248 90 248 2 L N 0 0 612 792 C 72 139 90 157.8 C 0 0 0 1 0 0 0 K 0 0 0 1 0 0 0 K 72 157.8 72 139.8 2 L 1 H 2 Z 0 X 0 0 0 1 0 0 0 K N 72 157.8 90 157.8 2 L 0.5 H N 72 157.8 72 139.8 2 L N 72 157.8 90 157.8 2 L N 0 0 612 792 C 72 65 90 83 C 0 0 0 1 0 0 0 K 0 0 0 1 0 0 0 K 72 83 72 65 2 L 1 H 2 Z 0 X 0 0 0 1 0 0 0 K N 72 65 90 65 2 L N 0 0 612 792 C 0 0 0 1 0 0 0 K FMENDPAGE %%EndPage: "9" 13 %%Page: "10" 14 612 792 0 FMBEGINPAGE [0 0 0 1 0 0 0] [ 0 1 1 0 1 0 0] [ 1 0 1 0 0 1 0] [ 1 1 0 0 0 0 1] [ 1 0 0 0 0 1 1] [ 0 1 0 0 1 0 1] [ 0 0 1 0 1 1 0] 7 FrameSetSepColors FrameNoSep 0 0 0 1 0 0 0 K 72 36.66 504 47.95 R 7 X 0 0 0 1 0 0 0 K V 1 10 Q 0 X (10) 72 41.28 T (December 15, 1997) 248.71 41.28 T (Protocols) 466.22 41.28 T 72 54 504 54 2 L 7 X V 0.25 H 2 Z 0 X N 72 740.81 504 756 R 7 X V 0 14 Q 0 X (10) 72 749.33 T (Pr) 448.27 749.33 T (otocols) 462.78 749.33 T 72 36.66 540 47.95 R 7 X V 1 10 Q 0 X (Release 6.4) 72 41.28 T (X V) 487.23 41.28 T (ersion 11) 503.06 41.28 T 72 54 540 54 2 L 7 X V 0 X N 0 0 0 1 0 0 0 K 0 0 0 1 0 0 0 K 72 63 540 711 R 7 X V 0 X (This request sets the names and v) 108 704.33 T (alues for one or more attrib) 241.62 704.33 T (utes within the speci\336ed attrib) 350.56 704.33 T (ute pool.) 470.91 704.33 T (attrib) 108 692.33 T (utes is encoded in COMPOUND_TEXT that represents ne) 128.91 692.33 T (w name/v) 362.79 692.33 T (alue pairs according to the v) 401.7 692.33 T (alue) 514.48 692.33 T (speci\336ed in rule. F) 108 680.33 T (or) 182.29 680.33 T 0 F (XP) 193.12 680.33 T (AttrReplace) 205.71 680.33 T 1 F (, the e) 257.91 680.33 T (xisting attrib) 281.92 680.33 T (ute pool is discarded and replaced with attrib) 332.56 680.33 T (utes.) 512.05 680.33 T (F) 108 668.33 T (or) 113.41 668.33 T 0 F (XP) 124.24 668.33 T (AttrMer) 136.83 668.33 T (ge) 173.37 668.33 T 1 F (, attrib) 182.81 668.33 T (utes is mer) 208.72 668.33 T (ged into the e) 251.87 668.33 T (xisting attrib) 305.88 668.33 T (ute pool; e) 356.52 668.33 T (xisting name/v) 398.59 668.33 T (alue pairs are) 457.51 668.33 T (replaced and ne) 108 656.33 T (w ones are added.) 170.5 656.33 T (The format used for attrib) 108 632.33 T (utes is the same as the format used for an X resource \336le. F) 211.11 632.33 T (or a description see) 447.58 632.33 T (Section 15.1, \322Resource File Syntax\323, in the Xlib speci\336cation.) 108 620.33 T (See section) 108 596.33 T (3 for a detailed description of attrib) 155.77 596.33 T (utes.) 297.21 596.33 T 0 (A) 108 572.33 P 0 F 0 (Match) 117.72 572.33 P 1 F 0 ( message is returned if read-only attrib) 145.49 572.33 P 0 (ute pools attempt to use) 299.68 572.33 P 0 F 0 (PrintSetAttrib) 397.17 572.33 P 0 (utes) 459.18 572.33 P 1 F 0 (. An) 476.4 572.33 P 0 F 0 (XPBadSe-) 496.11 572.33 P -0.14 (quence) 108 560.33 P 1 F -0.14 ( message is issued when a request is sent to an attrib) 138 560.33 P -0.14 (ute pool at a time when the attrib) 345.46 560.33 P -0.14 (ute pool cannot) 476.24 560.33 P (be modi\336ed.) 108 548.33 T 0 12 Q (PrintRehashPrinterList) 108 493 T 1 10 Q (This request causes the print serv) 108 450.33 T (er to update its list of a) 240.88 450.33 T (v) 332.34 450.33 T (ailable printers together with their attrib) 337.09 450.33 T (utes. The) 496.59 450.33 T (print f) 108 438.33 T (acilities underlying X Serv) 132.62 438.33 T (er may pro) 239.96 438.33 T (vide it with the ability to detect changes in printer topology and) 283.13 438.33 T (dynamically update the list to re\337ect the changes. If X Serv) 108 426.33 T (er does not ha) 345.31 426.33 T (v) 400.93 426.33 T (e this capability) 405.78 426.33 T (, the) 468.46 426.33 T 0 F (PrintRe-) 488.18 426.33 T (hashPrinterList) 108 414.33 T 1 F ( must be used to notify it of changes.) 175.78 414.33 T 0 12 Q (PrintQueryV) 108 359 T (ersion) 174.79 359 T 3 10 Q (\256) 100.8 339.33 T 1 F (major) 108 323.33 T (-v) 131.13 323.33 T (ersion, minor) 139.31 323.33 T (-v) 192.44 323.33 T (ersion: CARD16) 200.62 323.33 T (This request returns the major and minor v) 108 299.33 T (ersion numbers of the X Print Service.) 278.66 299.33 T 0 12 Q (PrintQueryScr) 108 244 T (eens) 184.44 244 T 3 10 Q (\256) 100.8 224.33 T 1 F (roots: LIST) 108 208.33 T (ofWINDO) 153.59 208.33 T (W) 196 208.33 T (This request returns a list of the X Serv) 108 184.33 T (er screens that support the X Print Service Extension.) 265.05 184.33 T 0 12 Q (PrintSetImageResolution) 108 129 T 1 10 Q (conte) 108 109.33 T (xt: PCONTEXT) 129.51 109.33 T (image-resolution: CARD16) 108 97.33 T 3 F (\256) 100.8 81.33 T 72 485 90 503.8 C 0 0 0 1 0 0 0 K 0 0 0 1 0 0 0 K 72 503.8 72 485.8 2 L 1 H 2 Z 0 X 0 0 0 1 0 0 0 K N 72 503.8 90 503.8 2 L 0.5 H N 72 503.8 72 485.8 2 L N 72 503.8 90 503.8 2 L N 0 0 612 792 C 72 472 90 490 C 0 0 0 1 0 0 0 K 0 0 0 1 0 0 0 K 72 490 72 472 2 L 1 H 2 Z 0 X 0 0 0 1 0 0 0 K N 72 472 90 472 2 L N 0 0 612 792 C 72 351 90 369.8 C 0 0 0 1 0 0 0 K 0 0 0 1 0 0 0 K 72 369.8 72 351.8 2 L 1 H 2 Z 0 X 0 0 0 1 0 0 0 K N 72 369.8 90 369.8 2 L 0.5 H N 72 369.8 72 351.8 2 L N 72 369.8 90 369.8 2 L N 0 0 612 792 C 72 321 90 339 C 0 0 0 1 0 0 0 K 0 0 0 1 0 0 0 K 72 339 72 321 2 L 1 H 2 Z 0 X 0 0 0 1 0 0 0 K N 72 321 90 321 2 L N 0 0 612 792 C 72 236 90 254.8 C 0 0 0 1 0 0 0 K 0 0 0 1 0 0 0 K 72 254.8 72 236.8 2 L 1 H 2 Z 0 X 0 0 0 1 0 0 0 K N 72 254.8 90 254.8 2 L 0.5 H N 72 254.8 72 236.8 2 L N 72 254.8 90 254.8 2 L N 0 0 612 792 C 72 206 90 224 C 0 0 0 1 0 0 0 K 0 0 0 1 0 0 0 K 72 224 72 206 2 L 1 H 2 Z 0 X 0 0 0 1 0 0 0 K N 72 206 90 206 2 L N 0 0 612 792 C 72 121 90 139.8 C 0 0 0 1 0 0 0 K 0 0 0 1 0 0 0 K 72 139.8 72 121.8 2 L 1 H 2 Z 0 X 0 0 0 1 0 0 0 K N 72 139.8 90 139.8 2 L 0.5 H N 72 139.8 72 121.8 2 L N 72 139.8 90 139.8 2 L N 0 0 612 792 C 0 0 0 1 0 0 0 K FMENDPAGE %%EndPage: "10" 14 %%Page: "11" 15 612 792 0 FMBEGINPAGE [0 0 0 1 0 0 0] [ 0 1 1 0 1 0 0] [ 1 0 1 0 0 1 0] [ 1 1 0 0 0 0 1] [ 1 0 0 0 0 1 1] [ 0 1 0 0 1 0 1] [ 0 0 1 0 1 1 0] 7 FrameSetSepColors FrameNoSep 0 0 0 1 0 0 0 K 72 54 540 54 2 L 0.25 H 2 Z 0 X 0 0 0 1 0 0 0 K N 1 10 Q (X V) 72 41.28 T (ersion 11) 87.83 41.28 T (Release 6.4) 493.9 41.28 T 108 54 540 54 2 L N 72 740.81 540 756 R 7 X V 0 14 Q 0 X (Pr) 72 746.67 T (otocols) 86.52 746.67 T (11) 526 746.67 T 0 0 0 1 0 0 0 K 0 0 0 1 0 0 0 K 1 10 Q (status: BOOL) 108 704.33 T (pre) 108 692.33 T (vious-resolution: CARD16) 120.52 692.33 T (Errors:) 108 668.33 T 0 F (XPBadContext) 138.27 668.33 T 1 F (This request sets the resolution for subsequent) 108 644.33 T 0 F (PutImage) 295.48 644.33 T 1 F ( requests on the screen of conte) 337.14 644.33 T (xt, in pix) 462.51 644.33 T (els per) 498.2 644.33 T (inch.) 108 632.33 T (When status is) 108 608.33 T 0 F (TR) 168.83 608.33 T (UE) 182.42 608.33 T 1 F (, then the contents of an) 196.31 608.33 T (y subsequent) 291.7 608.33 T 0 F (PutImage) 346.14 608.33 T 1 F ( request to a Pixmap or to a W) 387.8 608.33 T (indo) 509.05 608.33 T (w) 526.58 608.33 T -0.26 (on the screen of the speci\336ed print conte) 108 596.33 P -0.26 (xt will automatically be scaled as part of the) 267.92 596.33 P 0 F -0.26 (PutImage) 444.7 596.33 P 1 F -0.26 ( request. The) 486.36 596.33 P (scale f) 108 584.33 T (actor is:) 133.72 584.33 T 4 F (default-printer-resolution / image-resolution) 144 566.33 T 1 F (where def) 108 542.33 T (ault-printer) 147.6 542.33 T (-resolution is the current v) 192.39 542.33 T (alue of that page attrib) 297.68 542.33 T (ute. Only the image itself is scaled) 387.46 542.33 T (\050meaning the ef) 108 530.33 T (fecti) 170.51 530.33 T (v) 188.03 530.33 T (e width and height of the image change\051, the dst-x and dst-y parameters to) 192.88 530.33 T 0 F (PutImage) 491.99 530.33 T 1 F (are not altered.) 108 518.33 T (As a special case, a v) 108 494.33 T (alue of zero for image_res resets the resolution to automatically track the printer reso-) 192.72 494.33 T (lution. In this case \050which is also the def) 108 482.33 T (ault setting for a ne) 269.27 482.33 T (wly created print conte) 346.23 482.33 T (xt\051, subsequent images) 438 482.33 T (will not be scaled.) 108 470.33 T (pre) 108 446.33 T (vious-resolution is the pre) 120.52 446.33 T (vious image resolution that w) 224.43 446.33 T (as set for conte) 342.66 446.33 T (xt in pix) 402.77 446.33 T (els per inch.) 435.96 446.33 T (If status is) 108 422.33 T 0 F (F) 151.61 422.33 T (ALSE) 156.82 422.33 T 1 F (, then the print serv) 182.94 422.33 T (er does not support image scaling foor the particular resolution gi) 260.28 422.33 T (v) 521.66 422.33 T (en) 526.51 422.33 T (the current con\336guration of the printer) 108 410.33 T (, and the application is responsible for an) 261.18 410.33 T (y desired scaling.) 425.45 410.33 T 0 12 Q (PrintGetImageResolution) 108 355 T 1 10 Q (conte) 108 335.33 T (xt: PCONTEXT) 129.51 335.33 T 3 F (\256) 100.8 319.33 T 1 F (image-resolution: CARD16) 108 303.33 T (Errors:) 108 279.33 T 0 F (XPBadContext) 138.27 279.33 T 1 F (This request returns the current image-resolution for conte) 108 255.33 T (xt in pix) 341.41 255.33 T (els per inch. A v) 374.6 255.33 T (alue of zero means the) 440.17 255.33 T (resolution automatically tracks the printer resolution. If the request f) 108 243.33 T (ails in some w) 381.19 243.33 T (ay) 438.59 243.33 T (, a ne) 447.38 243.33 T (g) 468.61 243.33 T (ati) 473.56 243.33 T (v) 483.31 243.33 T (e v) 488.16 243.33 T (alue is) 499.85 243.33 T (returned.) 108 231.33 T 0 14 Q (2.4) 72 195.67 T (Ev) 108 195.67 T (ents) 124.2 195.67 T 0 12 Q (XPPrintNotify) 108 140 T 1 10 Q (detail: {) 108 120.33 T 0 F (XPStartJ) 140.3 120.33 T (obNotify) 180.14 120.33 T (, XPEndJ) 216.81 120.33 T (obNotify) 257.78 120.33 T (, XPStartDocNotify) 294.45 120.33 T (, XPEndDocNotify) 377.21 120.33 T (,) 456.1 120.33 T (XPStartP) 136.8 108.33 T (ageNotify) 177.8 108.33 T (, XPEndP) 218.35 108.33 T (ageNotify) 260.48 108.33 T 1 F (}) 301.58 108.33 T (conte) 108 96.33 T (xt: PCONTEXT) 129.51 96.33 T (cancel: BOOL) 108 84.33 T 72 666 90 684 C 0 0 0 1 0 0 0 K 0 0 0 1 0 0 0 K 72 684 72 666 2 L 1 H 2 Z 0 X 0 0 0 1 0 0 0 K N 72 666 90 666 2 L N 0 0 612 792 C 72 347 90 365.8 C 0 0 0 1 0 0 0 K 0 0 0 1 0 0 0 K 72 365.8 72 347.8 2 L 1 H 2 Z 0 X 0 0 0 1 0 0 0 K N 72 365.8 90 365.8 2 L 0.5 H N 72 365.8 72 347.8 2 L N 72 365.8 90 365.8 2 L N 0 0 612 792 C 72 277 90 295 C 0 0 0 1 0 0 0 K 0 0 0 1 0 0 0 K 72 295 72 277 2 L 1 H 2 Z 0 X 0 0 0 1 0 0 0 K N 72 277 90 277 2 L N 0 0 612 792 C 72 132 90 150.8 C 0 0 0 1 0 0 0 K 0 0 0 1 0 0 0 K 72 150.8 72 132.8 2 L 1 H 2 Z 0 X 0 0 0 1 0 0 0 K N 72 150.8 90 150.8 2 L 0.5 H N 72 150.8 72 132.8 2 L N 72 150.8 90 150.8 2 L N 0 0 612 792 C 72 82 90 100 C 0 0 0 1 0 0 0 K 0 0 0 1 0 0 0 K 72 100 72 82 2 L 1 H 2 Z 0 X 0 0 0 1 0 0 0 K N 72 82 90 82 2 L N 0 0 612 792 C 0 0 0 1 0 0 0 K FMENDPAGE %%EndPage: "11" 15 %%Page: "12" 16 612 792 0 FMBEGINPAGE [0 0 0 1 0 0 0] [ 0 1 1 0 1 0 0] [ 1 0 1 0 0 1 0] [ 1 1 0 0 0 0 1] [ 1 0 0 0 0 1 1] [ 0 1 0 0 1 0 1] [ 0 0 1 0 1 1 0] 7 FrameSetSepColors FrameNoSep 0 0 0 1 0 0 0 K 72 36.66 504 47.95 R 7 X 0 0 0 1 0 0 0 K V 1 10 Q 0 X (12) 72 41.28 T (December 15, 1997) 248.71 41.28 T (Protocols) 466.22 41.28 T 72 54 504 54 2 L 7 X V 0.25 H 2 Z 0 X N 72 740.81 504 756 R 7 X V 0 14 Q 0 X (12) 72 749.33 T (Pr) 448.27 749.33 T (otocols) 462.78 749.33 T 72 36.66 540 47.95 R 7 X V 1 10 Q 0 X (Release 6.4) 72 41.28 T (X V) 487.23 41.28 T (ersion 11) 503.06 41.28 T 72 54 540 54 2 L 7 X V 0 X N 0 0 0 1 0 0 0 K 0 0 0 1 0 0 0 K 72 63 540 711 R 7 X V 0 X (This e) 108 704.33 T (v) 132.47 704.33 T (ent is generated when requests to) 137.32 704.33 T 0 F (PrintStartDoc) 272.29 704.33 T 1 F (,) 332.83 704.33 T 0 F (PrintStartJ) 337.83 704.33 T (ob) 386.56 704.33 T 1 F (,) 397.12 704.33 T 0 F (PrintStartP) 402.12 704.33 T (age) 452.01 704.33 T 1 F (,) 466.45 704.33 T 0 F (PrintEndDoc) 471.45 704.33 T 1 F (,) 528.12 704.33 T 0 F (PrintEndJ) 108 692.33 T (ob) 152.86 692.33 T 1 F (, and) 163.42 692.33 T 0 F (PrintEndP) 185.36 692.33 T (age) 231.38 692.33 T 1 F ( ha) 245.82 692.33 T (v) 257.56 692.33 T (e been processed and completed. It is reported to clients selecting) 262.41 692.33 T 0 F (XPPrintMask) 108 680.33 T 1 F (.) 167.44 680.33 T 0 12 Q (XP) 108 625 T (Attrib) 123.11 625 T (uteNotify) 154.86 625 T 1 10 Q (detail: {) 108 605.33 T 0 F (XPJ) 140.3 605.33 T (obAttr) 158.48 605.33 T (, XPDocAttr) 186.44 605.33 T (, XPP) 238.83 605.33 T (ageAttr) 263.17 605.33 T (, XPPrinterAttr) 295.01 605.33 T (, XPSer) 361.84 605.33 T (v) 394.51 605.33 T (erAttr) 399.41 605.33 T (, XPMe-) 425.69 605.33 T (diumAttr) 136.8 593.33 T (, XPSpoolerAttr) 176.43 593.33 T 1 F (}) 245.86 593.33 T (conte) 108 581.33 T (xt: PCONTEXT) 129.51 581.33 T (This e) 108 557.33 T (v) 132.47 557.33 T (ent is generated when an) 137.32 557.33 T (y of the print attrib) 236.03 557.33 T (ute pools maintained by the print serv) 311.38 557.33 T (er ha) 462.33 557.33 T (v) 481.84 557.33 T (e been modi-) 486.69 557.33 T -0.25 (\336ed. The modi\336cations may ha) 108 545.33 P -0.25 (v) 230.98 545.33 P -0.25 (e been initiated by the print serv) 235.83 545.33 P -0.25 (er itself or by a) 363.07 545.33 P 0 F -0.25 (PrintSetAttrib) 424.88 545.33 P -0.25 (utes) 486.89 545.33 P 1 F -0.25 ( request.) 504.11 545.33 P (It is reported to clients selecting) 108 533.33 T 0 F (XP) 238.54 533.33 T (Attrib) 251.13 533.33 T (uteMask) 277.59 533.33 T 1 F (.) 314.81 533.33 T 72 617 90 635.8 C 0 0 0 1 0 0 0 K 0 0 0 1 0 0 0 K 72 635.8 72 617.8 2 L 1 H 2 Z 0 X 0 0 0 1 0 0 0 K N 72 635.8 90 635.8 2 L 0.5 H N 72 635.8 72 617.8 2 L N 72 635.8 90 635.8 2 L N 0 0 612 792 C 72 579 90 597 C 0 0 0 1 0 0 0 K 0 0 0 1 0 0 0 K 72 597 72 579 2 L 1 H 2 Z 0 X 0 0 0 1 0 0 0 K N 72 579 90 579 2 L N 0 0 612 792 C 0 0 0 1 0 0 0 K FMENDPAGE %%EndPage: "12" 16 %%Page: "13" 17 612 792 0 FMBEGINPAGE [0 0 0 1 0 0 0] [ 0 1 1 0 1 0 0] [ 1 0 1 0 0 1 0] [ 1 1 0 0 0 0 1] [ 1 0 0 0 0 1 1] [ 0 1 0 0 1 0 1] [ 0 0 1 0 1 1 0] 7 FrameSetSepColors FrameNoSep 0 0 0 1 0 0 0 K 72 54 540 54 2 L 0.25 H 2 Z 0 X 0 0 0 1 0 0 0 K N 1 10 Q (X V) 72 41.28 T (ersion 11) 87.83 41.28 T (Release 6.4) 493.9 41.28 T 108 54 540 54 2 L N 72 740.81 540 756 R 7 X V 0 14 Q 0 X (X Print Attrib) 72 746.67 T (utes) 157.26 746.67 T (13) 526 746.67 T 0 0 0 1 0 0 0 K 0 0 0 1 0 0 0 K 0 18 Q (3) 72 699 T (X Print Attrib) 108 699 T (utes) 217.62 699 T 1 10 Q (Printing-speci\336c attrib) 108 666.33 T (utes play a k) 197.52 666.33 T (e) 247.69 666.33 T (y role in the X Print Service. The) 251.98 666.33 T (y pro) 384.59 666.33 T (vide a general-purpose mecha-) 405.27 666.33 T (nism for storing information associated with printing. This information includes user print setup options,) 108 654.33 T (printer capabilities, and spooler subsystem options.) 108 642.33 T (The X Print Service selects attrib) 108 618.33 T (utes in a w) 240.28 618.33 T (ay that is consistent with the X W) 283.23 618.33 T (indo) 418.1 618.33 T (ws System, ISO/IEC) 435.63 618.33 T (10175 \050ISO DP) 108 606.33 T (A\051, and POSIX 1387.4 print standards. The ISO DP) 169.3 606.33 T (A de\336nes a number of abstract objects) 375.86 606.33 T (that are managed and manipulated during the printing process. These are kno) 108 594.33 T (wn as DP) 416.02 594.33 T (A-Objects. Each) 453.43 594.33 T -0.13 (DP) 108 582.33 P -0.13 (A-Object is represented by a set of attrib) 119.86 582.33 P -0.13 (utes which characterize that object. Each attrib) 281.24 582.33 P -0.13 (ute in turn is com-) 467.17 582.33 P (posed of an attrib) 108 570.33 T (ute-type \050attrib) 177.51 570.33 T (ute name\051 and zero or more attrib) 237.02 570.33 T (ute-v) 370.67 570.33 T (alues.) 390.97 570.33 T (The X Print Service utilizes selected DP) 108 552.33 T (A-Objects, and for each of these, a subset of the associated) 268.17 552.33 T (attrib) 108 540.33 T (utes. The DP) 128.91 540.33 T (A-Objects used are:) 179.93 540.33 T 0 F (Ser) 108 518.33 T (v) 122.34 518.33 T (er Object) 127.24 518.33 T 1 F (Speci\336es attrib) 198 518.33 T (utes de\336ned for the X print serv) 257.52 518.33 T (er) 384.57 518.33 T (.) 391.79 518.33 T 0 F (J) 108 496.33 T (ob Object) 112.85 496.33 T 1 F (Speci\336es attrib) 198 496.33 T (utes for a single print request as sent to the spooler) 257.52 496.33 T (.) 459.72 496.33 T 0 F (Document Object) 108 474.33 T 1 F (Speci\336es attrib) 198 474.33 T (utes used to de\336ne a single document within a job) 257.52 474.33 T (. If supported by) 456.83 474.33 T (the implementation, multiple documents may be submitted within a gi) 198 462.33 T (v) 478.31 462.33 T (en job) 483.16 462.33 T (.) 507.48 462.33 T 0 F (Printer Object) 108 440.33 T 1 F (Speci\336es attrib) 198 440.33 T (utes that identify printer capabilities.) 257.52 440.33 T (The X Print Service also pro) 108 418.33 T (vides for changing certain attrib) 222 418.33 T (utes on a page-by-page basis. This is a) 349.55 418.33 T (capability for which the ISO DP) 108 406.33 T (A does not de\336ne a separate DP) 236.23 406.33 T (A-Object. This set of attrib) 363.06 406.33 T (utes is kno) 470.9 406.33 T (wn) 513.43 406.33 T (within the X Print Service as P) 108 394.33 T (age Attrib) 231.18 394.33 T (utes.) 271.25 394.33 T (The X Print Service requires some additional attrib) 108 372.33 T (utes that are not de\336ned by the ISO DP) 311.94 372.33 T (A. The attrib) 467.67 372.33 T (ute) 518.85 372.33 T (names for these attrib) 108 360.33 T (utes are pre\336x) 194.17 360.33 T (ed with \322) 250.67 360.33 T 0 F (xp-) 287.33 360.33 T 1 F (\323.) 301.22 360.33 T (A serv) 108 338.33 T (er implementation can de\336ne additional attrib) 134.23 338.33 T (utes.) 316.51 338.33 T (This section de\336nes the follo) 108 316.33 T (wing sets of attrib) 223.3 316.33 T (utes for the X Print Service:) 295.04 316.33 T (\245) 108 294.33 T (Serv) 126 294.33 T (er Attrib) 144.18 294.33 T (utes) 178.14 294.33 T (\245) 108 282.33 T (Printer Attrib) 126 282.33 T (utes) 179.41 282.33 T (\245) 108 270.33 T (Job Attrib) 126 270.33 T (utes) 166.08 270.33 T (\245) 108 258.33 T (Document Attrib) 126 258.33 T (utes) 193.85 258.33 T (\245) 108 246.33 T (P) 126 246.33 T (age Attrib) 131.41 246.33 T (utes) 171.48 246.33 T 0 14 Q (3.1) 72 210.67 T (Attrib) 108 210.67 T (ute V) 145.04 210.67 T (alue Defaults And V) 176.03 210.67 T (alidation) 295.68 210.67 T 1 10 Q (This section pro) 108 186.33 T (vides an o) 172.29 186.33 T (v) 212.69 186.33 T (ervie) 217.54 186.33 T (w of the handling of def) 237.28 186.33 T (ault attrib) 333.55 186.33 T (ute v) 371.96 186.33 T (alues and the procedure for the v) 391.43 186.33 T (ali-) 522.25 186.33 T -0.14 (dation of attrib) 108 174.33 P -0.14 (ute v) 166.96 174.33 P -0.14 (alues within the X Print Service. Details for indi) 186.3 174.33 P -0.14 (vidual attrib) 377.99 174.33 P -0.14 (utes can be found in the rest) 426.26 174.33 P (of this chapter) 108 162.33 T (.) 164.66 162.33 T 0 14 Q (3.1.1) 72 129.67 T (Assigning Attrib) 126 129.67 T (ute V) 224.9 129.67 T (alue Defaults) 255.88 129.67 T 1 10 Q (An attrib) 108 105.33 T (ute speci\336cation with an empty v) 143.63 105.33 T (alue indicates that the attrib) 275.87 105.33 T (ute has no v) 386.21 105.33 T (alue. W) 434.01 105.33 T (ithin X Print Ser-) 464.71 105.33 T (vice con\336guration \336les and attrib) 108 93.33 T (ute pools, an attrib) 240.01 93.33 T (ute speci\336cation that omits the v) 314.25 93.33 T (alue is ef) 443.72 93.33 T (fecti) 479.57 93.33 T (v) 497.09 93.33 T (ely) 501.94 93.33 T -0.37 (treated as if there were no attrib) 108 81.33 P -0.37 (ute speci\336cation. An empty v) 232.78 81.33 P -0.37 (alued attrib) 348.56 81.33 P -0.37 (ute speci\336cation that has precedence) 393.26 81.33 P (o) 108 69.33 T (v) 112.85 69.33 T (er a non-empty attrib) 117.7 69.33 T (ute speci\336cation \050for instance, an empty printer quali\336ed attrib) 201.65 69.33 T (ute o) 451.69 69.33 T (v) 471.26 69.33 T (er a non-empty) 476.11 69.33 T 0 0 0 1 0 0 0 K FMENDPAGE %%EndPage: "13" 17 %%Page: "14" 18 612 792 0 FMBEGINPAGE [0 0 0 1 0 0 0] [ 0 1 1 0 1 0 0] [ 1 0 1 0 0 1 0] [ 1 1 0 0 0 0 1] [ 1 0 0 0 0 1 1] [ 0 1 0 0 1 0 1] [ 0 0 1 0 1 1 0] 7 FrameSetSepColors FrameNoSep 0 0 0 1 0 0 0 K 72 36.66 504 47.95 R 7 X 0 0 0 1 0 0 0 K V 1 10 Q 0 X (14) 72 41.28 T (December 15, 1997) 248.71 41.28 T (X Print Attrib) 432.53 41.28 T (utes) 487.89 41.28 T 72 54 504 54 2 L 7 X V 0.25 H 2 Z 0 X N 72 740.81 504 756 R 7 X V 0 14 Q 0 X (14) 72 749.33 T (X Print Attrib) 394.63 749.33 T (utes) 479.89 749.33 T 72 36.66 540 47.95 R 7 X V 1 10 Q 0 X (Release 6.4) 72 41.28 T (X V) 487.23 41.28 T (ersion 11) 503.06 41.28 T 72 54 540 54 2 L 7 X V 0 X N 0 0 0 1 0 0 0 K 0 0 0 1 0 0 0 K 72 63 540 711 R 7 X V 0 X -0.02 (model quali\336ed attrib) 108 704.33 P -0.02 (ute\051 will ef) 193.88 704.33 P -0.02 (fecti) 237.48 704.33 P -0.02 (v) 255 704.33 P -0.02 (ely \322unset\323 the lo) 259.85 704.33 P -0.02 (wer precedence attrib) 329.26 704.33 P -0.02 (ute speci\336cation. When a print) 415.1 704.33 P (job commences, the X Print Service may infer a def) 108 692.33 T (ault v) 315.08 692.33 T (alue for an attrib) 337.33 692.33 T (ute that has no v) 403.5 692.33 T (alue. In some) 468.8 692.33 T (cases the X Print Service may e) 108 680.33 T (xplicitly assign a def) 234.49 680.33 T (ault v) 317.44 680.33 T (alue to an attrib) 339.69 680.33 T (ute before presenting it in an) 401.98 680.33 T (attrib) 108 668.33 T (ute pool.) 128.91 668.33 T 0 14 Q (3.1.2) 72 635.67 T (V) 126 635.67 T (alidating Attrib) 134.82 635.67 T (ute V) 228.27 635.67 T (alues) 259.25 635.67 T 1 10 Q -0.23 (The X Print Serv) 108 611.33 P -0.23 (er ensures that attrib) 175.21 611.33 P -0.23 (ute pools presented to the client are al) 255.69 611.33 P -0.23 (w) 405.33 611.33 P -0.23 (ays comprised of v) 412.45 611.33 P -0.23 (alid attrib) 487.33 611.33 P -0.23 (ute) 525.51 611.33 P -0.22 (speci\336cations for attrib) 108 599.33 P -0.22 (utes de\336ned by the X Print Service. V) 199.57 599.33 P -0.22 (alidation is \336rst performed when a print conte) 348.59 599.33 P -0.22 (xt) 529.94 599.33 P (is created. V) 108 587.33 T (alidation is also performed whene) 157.15 587.33 T (v) 292.43 587.33 T (er a client requests an update to an attrib) 297.28 587.33 T (ute pool.) 458.71 587.33 T -0.32 (V) 108 563.33 P -0.32 (alidation in) 114.11 563.33 P -0.32 (v) 158.67 563.33 P -0.32 (olv) 163.47 563.33 P -0.32 (es checking the attrib) 176.1 563.33 P -0.32 (ute v) 260.19 563.33 P -0.32 (alue ag) 279.33 563.33 P -0.32 (ainst its set of v) 307.56 563.33 P -0.32 (alid v) 368.8 563.33 P -0.32 (alues. The process may also tak) 390.72 563.33 P -0.32 (e into) 515.65 563.33 P (account the current v) 108 551.33 T (alues of other attrib) 191.89 551.33 T (utes and the capabilities of the DDX dri) 269.73 551.33 T (v) 428.62 551.33 T (er) 433.47 551.33 T (.) 440.69 551.33 T (Attrib) 108 527.33 T (utes may be single-v) 131.69 527.33 T (alued or multi-v) 213.93 527.33 T (alued.) 278.12 527.33 T (When a print conte) 108 503.33 T (xt is created, if the serv) 184.22 503.33 T (er determines that an attrib) 277.38 503.33 T (ute v) 384.38 503.33 T (alue is in) 403.85 503.33 T (v) 439.56 503.33 T (alid, the serv) 444.31 503.33 T (er will) 495.54 503.33 T (ignore the in) 108 491.33 T (v) 158.15 491.33 T (alid attrib) 162.9 491.33 T (ute speci\336cation and may set an e) 201.31 491.33 T (xplicit def) 335.58 491.33 T (ault for the attrib) 376.31 491.33 T (ute in the pool. F) 443.6 491.33 T (or) 511.51 491.33 T (multi-v) 108 479.33 T (alued attrib) 137.2 479.33 T (utes, the serv) 182.27 479.33 T (er will ignore each v) 234.61 479.33 T (alue component that is in) 316.56 479.33 T (v) 416.71 479.33 T (alid. If all of the speci\336ed) 421.46 479.33 T (components are in) 108 467.33 T (v) 180.92 467.33 T (alid the serv) 185.67 467.33 T (er will reject the attrib) 234.4 467.33 T (ute speci\336cation, and for certain attrib) 323.07 467.33 T (utes will set an) 475.06 467.33 T (e) 108 455.33 T (xplicit def) 112.29 455.33 T (ault for the attrib) 153.02 455.33 T (ute in the pool.) 220.31 455.33 T -0.07 (When the client requests an update to an attrib) 108 431.33 P -0.07 (ute pool \050e.g. when issuing) 292.73 431.33 P 0 F -0.07 (PrintSetAttrib) 402.63 431.33 P -0.07 (utes) 464.64 431.33 P 1 F -0.07 (\051, if the serv) 481.86 431.33 P -0.07 (er) 529.8 431.33 P (determines that a single-v) 108 419.33 T (alued attrib) 210.79 419.33 T (ute is in) 255.86 419.33 T (v) 287.13 419.33 T (alid, that attrib) 291.88 419.33 T (ute will not be updated. If all components of a) 350.29 419.33 T (multi-v) 108 407.33 T (alued attrib) 137.2 407.33 T (ute are in) 182.27 407.33 T (v) 219.08 407.33 T (alid the attrib) 223.83 407.33 T (ute will not be updated, otherwise an) 276.96 407.33 T (y in) 424.29 407.33 T (v) 439.17 407.33 T (alid components are) 443.92 407.33 T (ignored. Unrecognized attrib) 108 395.33 T (utes will be stored in the corresponding attrib) 223.05 395.33 T (ute pool and returned in) 404.22 395.33 T 0 F (Print-) 502.26 395.33 T (GetAttrib) 108 383.33 T (ute) 150.01 383.33 T 1 F (, b) 163.34 383.33 T (ut are otherwise ignored.) 173.14 383.33 T (As part of the v) 108 359.33 T (alidation for a gi) 169.96 359.33 T (v) 236.09 359.33 T (en attrib) 240.94 359.33 T (ute, the print serv) 273.79 359.33 T (er may alter other attrib) 343.63 359.33 T (utes in response to the) 437.85 359.33 T -0.07 (change. F) 108 347.33 P -0.07 (or e) 146.66 347.33 P -0.07 (xample, changing the v) 161.71 347.33 P -0.07 (alue of the) 254.57 347.33 P 0 F -0.07 (document-f) 299.08 347.33 P -0.07 (ormat) 347.7 347.33 P 1 F -0.07 ( attrib) 373.8 347.33 P -0.07 (ute might cause the v) 397.15 347.33 P -0.07 (alue of the) 481.61 347.33 P 0 F -0.07 (xp-) 526.11 347.33 P (embedded-f) 108 335.33 T (ormats-supported) 158.3 335.33 T 1 F ( attrib) 234.96 335.33 T (ute to change as.) 258.37 335.33 T 0 14 Q (3.1.3) 72 302.67 T (Structur) 126 302.67 T (ed V) 177.07 302.67 T (alues) 203.39 302.67 T (3.2) 72 242.67 T (Ser) 108 242.67 T (v) 128.08 242.67 T (er Attrib) 134.94 242.67 T (utes) 187.91 242.67 T 1 10 Q (The serv) 108 218.33 T (er attrib) 142.56 218.33 T (ute pool is identi\336ed by XPServ) 173.74 218.33 T (erAttr and describes the capabilities of the X Print Serv) 301.65 218.33 T (er) 522.85 218.33 T (.) 530.07 218.33 T 0 F (locale) 108 200.33 T 1 F (The v) 198 200.33 T (alue of this attrib) 220.8 200.33 T (ute is the locale in which the X Print Serv) 288.65 200.33 T (er is running.) 455.43 200.33 T 0 F (multiple-documents-supported) 108 178.33 T 1 F (This attrib) 198 166.33 T (ute indicates whether the serv) 239.19 166.33 T (er supports jobs containing multiple) 357.9 166.33 T (documents.) 198 154.33 T 0 14 Q (3.3) 72 118.67 T (Printer Attrib) 108 118.67 T (utes) 192.08 118.67 T 1 10 Q (The printer attrib) 108 94.33 T (ute pool is identi\336ed by XPPrinterAttr and describes printer capabilities.) 176.12 94.33 T 0 0 0 1 0 0 0 K FMENDPAGE %%EndPage: "14" 18 %%Page: "15" 19 612 792 0 FMBEGINPAGE [0 0 0 1 0 0 0] [ 0 1 1 0 1 0 0] [ 1 0 1 0 0 1 0] [ 1 1 0 0 0 0 1] [ 1 0 0 0 0 1 1] [ 0 1 0 0 1 0 1] [ 0 0 1 0 1 1 0] 7 FrameSetSepColors FrameNoSep 0 0 0 1 0 0 0 K 72 54 540 54 2 L 0.25 H 2 Z 0 X 0 0 0 1 0 0 0 K N 1 10 Q (X V) 72 41.28 T (ersion 11) 87.83 41.28 T (Release 6.4) 493.9 41.28 T 108 54 540 54 2 L N 72 740.81 540 756 R 7 X V 0 14 Q 0 X (X Print Attrib) 72 746.67 T (utes) 157.26 746.67 T (15) 526 746.67 T 0 0 0 1 0 0 0 K 0 0 0 1 0 0 0 K 0 10 Q (content-orientations-supported) 108 704.33 T 1 F (A list of orientations supported in the print conte) 198 692.33 T (xt. The list is a group of strings) 392.84 692.33 T (separated by white space. V) 198 680.33 T (alid v) 308.8 680.33 T (alues are) 331.05 680.33 T 0 F (portrait) 368.81 680.33 T 1 F (,) 402.69 680.33 T 0 F (landscape) 407.69 680.33 T 1 F (,) 449.92 680.33 T 0 F (r) 454.92 680.33 T (e) 459.18 680.33 T (v) 463.47 680.33 T (erse-portrait) 468.37 680.33 T 1 F (,) 522.79 680.33 T (and) 198 668.33 T 0 F (r) 214.94 668.33 T (e) 219.2 668.33 T (v) 223.49 668.33 T (erse-landscape) 228.39 668.33 T 1 F (.) 291.16 668.33 T (The def) 198 644.33 T (ault v) 228.72 644.33 T (alue is determined by the DDX, and is e) 250.97 644.33 T (xplicitly set in the printer pool.) 411.07 644.33 T (V) 198 632.33 T (alidation for this attrib) 204.11 632.33 T (ute is as described for multi-v) 293.63 632.33 T (alued attrib) 412.53 632.33 T (utes in \322V) 457.6 632.33 T (alidating) 497.04 632.33 T (Attrib) 198 620.33 T (ute V) 221.69 620.33 T (alues\323.) 242.52 620.33 T (The initial v) 198 596.33 T (alue of the) 246.64 596.33 T 0 F (content-orientations-supported) 291.35 596.33 T 1 F ( attrib) 424.12 596.33 T (ute is typically set by) 447.53 596.33 T (the printer v) 198 584.33 T (endor in the model-con\336g \336le.) 246.73 584.33 T 0 F (descriptor) 108 562.33 T 1 F (The) 198 562.33 T 0 F (descriptor) 216.05 562.33 T 1 F ( is a human readable description of the printer encoded as) 259.93 562.33 T (COMPOUND_TEXT) 198 550.33 T (. This description may contain more than one line.) 285.03 550.33 T 0 F (document-attrib) 108 528.33 T (utes-supported) 177.79 528.33 T 1 F (A list of document attrib) 198 516.33 T (utes supported in the print conte) 296.13 516.33 T (xt. This list is returned as a) 424.58 516.33 T (set of whitespace-delimited attrib) 198 504.33 T (ute names.) 331.39 504.33 T 0 F (document-f) 108 482.33 T (ormats-supported) 156.63 482.33 T 1 F (A list of document formats, including format v) 198 470.33 T (ariants and format v) 384.96 470.33 T (ersions that are) 465.07 470.33 T (supported in the print conte) 198 458.33 T (xt. Each entry in the list is a structure comprised of the) 307.84 458.33 T (document-format, document-format-v) 198 446.33 T (ariant, and a document-format-v) 349.94 446.33 T (ersion.) 479.2 446.33 T (V) 198 434.33 T (ariant and v) 204.11 434.33 T (ersion may be omitted in some cases. The triple v) 251.17 434.33 T (alue is enclosed by) 449.23 434.33 T (curly braces \322{}\323 and delimited by whitespace.) 198 422.33 T 0 F (input-trays-medium) 108 400.33 T 1 F (This attrib) 198 400.33 T (ute identi\336es what medium is loaded in each printer tray) 239.19 400.33 T (. The v) 463.79 400.33 T (alue is) 491.59 400.33 T (speci\336ed as a list of structures, each of which contains a tray identi\336er and a) 198 388.33 T (medium identi\336er) 198 376.33 T (. V) 268.84 376.33 T (alid tray identi\336ers are) 279.95 376.33 T 0 F (top) 372.71 376.33 T 1 F (,) 386.6 376.33 T 0 F (middle) 391.6 376.33 T 1 F (,) 421.05 376.33 T 0 F (bottom) 426.05 376.33 T 1 F (,) 456.6 376.33 T 0 F (en) 461.6 376.33 T (v) 471.2 376.33 T (elope) 476.1 376.33 T 1 F (,) 498.32 376.33 T 0 F (manual) 198 364.33 T 1 F (,) 230.23 364.33 T 0 F (lar) 235.23 364.33 T (ge-capacity) 247.35 364.33 T 1 F (,) 295.02 364.33 T 0 F (main) 300.02 364.33 T 1 F (, and) 321.69 364.33 T 0 F (side) 343.63 364.33 T 1 F (. The X Print Service de\336nes v) 360.3 364.33 T (alid medium) 483.09 364.33 T (identi\336ers to be the standard v) 198 352.33 T (alues of the) 318.57 352.33 T 0 F (medium-size) 367.17 352.33 T 1 F ( attrib) 421.05 352.33 T (ute as speci\336ed in) 444.46 352.33 T (ISO/IEC 10175-1.) 198 340.33 T (F) 198 316.33 T (or each tray / medium \050size\051 combination, the tray must be present in the v) 203.41 316.33 T (alue of) 501.17 316.33 T (the) 198 304.33 T 0 F (medium-sour) 212.72 304.33 T (ce-sizes-supported) 269.76 304.33 T 1 F ( attrib) 348.08 304.33 T (ute, and the medium size must be listed) 371.49 304.33 T (for that tray) 198 292.33 T (.) 244.56 292.33 T 0 F (job-attrib) 108 270.33 T (utes-supported) 149.46 270.33 T 1 F (A list of the job attrib) 198 258.33 T (utes supported for the printer) 284.19 258.33 T (. This list is returned as a set of) 399.73 258.33 T (whitespace-delimited attrib) 198 246.33 T (ute names.) 306.95 246.33 T 0 F (medium-sour) 108 224.33 T (ce-sizes-supported) 165.04 224.33 T 1 F (This attrib) 198 212.33 T (ute identi\336es or speci\336es the sizes of media that are supported by the) 239.19 212.33 T (printer) 198 200.33 T (. F) 224.11 200.33 T (or each input tray a set of supported media sizes is indicated. F) 234.52 200.33 T (or each) 485.72 200.33 T (medium, the page size, an indicator as to the medium feed direction, and the assured) 198 188.33 T (reproduction area the printer supports are speci\336ed.) 198 176.33 T (V) 198 152.33 T (alid input tray v) 204.11 152.33 T (alues are) 267.47 152.33 T 0 F (top) 305.23 152.33 T 1 F (,) 319.12 152.33 T 0 F (middle) 324.12 152.33 T 1 F (,) 353.57 152.33 T 0 F (bottom) 358.57 152.33 T 1 F (,) 389.12 152.33 T 0 F (en) 394.12 152.33 T (v) 403.72 152.33 T (elope) 408.62 152.33 T 1 F (,) 430.84 152.33 T 0 F (manual) 435.84 152.33 T 1 F (,) 468.07 152.33 T 0 F (lar) 198 140.33 T (ge-capacity) 210.12 140.33 T 1 F (,) 257.79 140.33 T 0 F (main) 262.79 140.33 T 1 F (, and) 284.46 140.33 T 0 F (side) 306.4 140.33 T 1 F (. If the printer has only one input tray) 323.07 140.33 T (, speci\336cation) 472.12 140.33 T (of this v) 198 128.33 T (alue is optional.) 230.53 128.33 T (The page size is a descripti) 198 104.33 T (v) 305.78 104.33 T (e-name indicating the size of the page. Examples are) 310.63 104.33 T 0 F (iso-a4) 198 92.33 T 1 F (,) 223 92.33 T 0 F (na-letter) 228 92.33 T 1 F (, and) 264.25 92.33 T 0 F (na-legal) 286.19 92.33 T 1 F (. The complete list of v) 320.08 92.33 T (alid v) 412.6 92.33 T (alues is the set of) 434.85 92.33 T (descripti) 198 80.33 T (v) 232.19 80.33 T (e-names de\336ned for the standard v) 237.04 80.33 T (alues of the) 374.81 80.33 T 0 F (medium-size) 423.41 80.33 T 1 F ( attrib) 477.29 80.33 T (ute as) 500.7 80.33 T (speci\336ed in ISO/IEC 10175-1.) 198 68.33 T 0 0 0 1 0 0 0 K FMENDPAGE %%EndPage: "15" 19 %%Page: "16" 20 612 792 0 FMBEGINPAGE [0 0 0 1 0 0 0] [ 0 1 1 0 1 0 0] [ 1 0 1 0 0 1 0] [ 1 1 0 0 0 0 1] [ 1 0 0 0 0 1 1] [ 0 1 0 0 1 0 1] [ 0 0 1 0 1 1 0] 7 FrameSetSepColors FrameNoSep 0 0 0 1 0 0 0 K 72 36.66 504 47.95 R 7 X 0 0 0 1 0 0 0 K V 1 10 Q 0 X (16) 72 41.28 T (December 15, 1997) 248.71 41.28 T (X Print Attrib) 432.53 41.28 T (utes) 487.89 41.28 T 72 54 504 54 2 L 7 X V 0.25 H 2 Z 0 X N 72 740.81 504 756 R 7 X V 0 14 Q 0 X (16) 72 749.33 T (X Print Attrib) 394.63 749.33 T (utes) 479.89 749.33 T 72 36.66 540 47.95 R 7 X V 1 10 Q 0 X (Release 6.4) 72 41.28 T (X V) 487.23 41.28 T (ersion 11) 503.06 41.28 T 72 54 540 54 2 L 7 X V 0 X N 0 0 0 1 0 0 0 K 0 0 0 1 0 0 0 K 72 63 540 711 R 7 X V 0 X (The medium feed direction is represented as a boolean v) 198 704.33 T (alue indicating whether the) 423.53 704.33 T (long edge \050) 198 692.33 T 0 F (TR) 242.99 692.33 T (UE) 256.58 692.33 T 1 F (\051 or the short edge \050) 270.47 692.33 T 0 F (F) 349.06 692.33 T (ALSE) 354.27 692.33 T 1 F (\051 feeds into the printer so that) 380.39 692.33 T (orientation is speci\336ed.) 198 680.33 T (The assured reproduction area is the area within the current medium tp which the) 198 656.33 T (printer can render) 198 644.33 T (. This area is speci\336ed in millimeters according to the RCS) 268.53 644.33 T (coordinate system de\336ned by the ISO DP) 198 632.33 T (A. The area v) 362.62 632.33 T (alue is de\336ned by a structure) 416.79 632.33 T (containing the minimum-x, maximum-x, minimum-y) 198 620.33 T (, and maximum-y) 410.14 620.33 T (.) 480.32 620.33 T (The v) 198 596.33 T (alue for a medium size is speci\336ed in a structure comprised of the page size,) 220.8 596.33 T (the feed direction indicator) 198 584.33 T (, and the assured reproduction area.) 305.63 584.33 T (The v) 198 560.33 T (alue of the) 220.8 560.33 T 0 F (medium-sour) 265.51 560.33 T (ce-sizes-supported) 322.55 560.33 T 1 F ( attrib) 400.87 560.33 T (ute is a list of structures,) 424.28 560.33 T (each comprised of the input tray v) 198 548.33 T (alue and a set of medium size v) 334.39 548.33 T (alues.) 459.95 548.33 T 0 F (plexes-supported) 108 526.33 T 1 F (A list of ple) 198 526.33 T (x options that the printer supports. The list is a group of strings) 245.35 526.33 T (separated by white space. V) 198 514.33 T (alid v) 308.8 514.33 T (alues are) 331.05 514.33 T 0 F (simplex) 368.81 514.33 T 1 F (,) 401.59 514.33 T 0 F (duplex) 406.59 514.33 T 1 F (, and) 435.49 514.33 T 0 F (tumble) 457.43 514.33 T 1 F (.) 487.43 514.33 T 0 F (printer) 108 492.33 T (-model) 138.18 492.33 T 1 F (Human-readable te) 198 492.33 T (xt that identi\336es the mak) 274.21 492.33 T (e and model of the printer) 373 492.33 T (. This v) 476.04 492.33 T (alue is) 506.07 492.33 T (encoded as COMPOUND_TEXT) 198 480.33 T (.) 331.68 480.33 T 0 F (printer) 108 458.33 T (-name) 138.18 458.33 T 1 F (This attrib) 198 458.33 T (ute uniquely identi\336es a printer on a gi) 239.19 458.33 T (v) 393.65 458.33 T (en X Print Serv) 398.5 458.33 T (er) 460.29 458.33 T (.) 467.51 458.33 T 0 F (printer) 108 436.33 T (-r) 138.18 436.33 T (esolutions-supported) 145.77 436.33 T 1 F (A list of the resolutions in dots per inch that the printer supports.) 198 424.33 T 0 F (xp-embedded-f) 108 402.33 T (ormats-supported) 172.19 402.33 T 1 F (This attrib) 198 390.33 T (ute identi\336es the set of data formats recognized as v) 239.19 390.33 T (alid v) 446.4 390.33 T (alues for the) 468.65 390.33 T (doc_fmt parameter of) 198 378.33 T 0 F (PrintPutDocumentData) 287.14 378.33 T 1 F (, when this request is issued within a) 388.79 378.33 T (print document of type) 198 366.33 T 0 F (XPDocNormal) 291.88 366.33 T 1 F (.) 354.64 366.33 T (The v) 198 342.33 T (alue is a list of data formats. Each entry in the list is a structure comprised of) 220.8 342.33 T (the data format, a format v) 198 330.33 T (ariant, and a format v) 304.39 330.33 T (ersion. The v) 390.05 330.33 T (ariant and the v) 442.29 330.33 T (ersion) 504.07 330.33 T (may be omitted in some cases. Structure v) 198 318.33 T (alues are enclosed by curly braces \322{}\323) 366.62 318.33 T (and delimited by whitespace. V) 198 306.33 T (alid v) 323.26 306.33 T (alues are de\336ned by the printer DDX dri) 345.51 306.33 T (v) 506.61 306.33 T (er) 511.46 306.33 T (.) 518.68 306.33 T 0 F (xp-listf) 108 284.33 T (onts-modes-supported) 137.75 284.33 T 1 F (De\336nes the set of v) 198 272.33 T (alues that may be used to comprise the v) 274.96 272.33 T (alue of the) 436.91 272.33 T 0 F (xp-listf) 481.62 272.33 T (onts-) 511.37 272.33 T (modes) 198 260.33 T 1 F ( document / page attrib) 225.22 260.33 T (ute. The v) 317.23 260.33 T (alue is a whitespace delimited list of) 357.25 260.33 T (listfonts mode v) 198 248.33 T (alues, which are de\336ned belo) 262.2 248.33 T (w) 378.31 248.33 T (.) 384.88 248.33 T 0 F (xp-page-attrib) 108 226.33 T (utes-supported) 169.46 226.33 T 1 F (A list of page attrib) 198 214.33 T (utes supported for the printer) 275.57 214.33 T (. This list is comprised of a set of) 391.11 214.33 T (whitespace-delimited attrib) 198 202.33 T (ute names.) 306.95 202.33 T 0 F (xp-raw-f) 108 180.33 T (ormats-supported) 144.96 180.33 T 1 F (This attrib) 198 168.33 T (ute identi\336es the set of data formats recognized as v) 239.19 168.33 T (alid v) 446.4 168.33 T (alues for the) 468.65 168.33 T (doc_fmt parameter of) 198 156.33 T 0 F (PrintPutDocumentData) 287.14 156.33 T 1 F (, when this function is called within) 388.79 156.33 T (a print document of type) 198 144.33 T 0 F (XPDocRaw) 298.82 144.33 T 1 F (.) 347.6 144.33 T (The v) 198 120.33 T (alue is a list of data formats. Each entry in the list is a structure comprised of) 220.8 120.33 T (the data format, an optional format v) 198 108.33 T (ariant, and an optional format v) 344.67 108.33 T (ersion. Structure) 470.61 108.33 T (v) 198 96.33 T (alues are enclosed by curly braces \322{}\323 and delimited by whitespace. V) 202.75 96.33 T (alid v) 487.83 96.33 T (alues) 510.08 96.33 T (are de\336ned based on the ph) 198 84.33 T (ysical printer\325) 307.09 84.33 T (s capabilities.) 362.36 84.33 T 0 0 0 1 0 0 0 K FMENDPAGE %%EndPage: "16" 20 %%Page: "17" 21 612 792 0 FMBEGINPAGE [0 0 0 1 0 0 0] [ 0 1 1 0 1 0 0] [ 1 0 1 0 0 1 0] [ 1 1 0 0 0 0 1] [ 1 0 0 0 0 1 1] [ 0 1 0 0 1 0 1] [ 0 0 1 0 1 1 0] 7 FrameSetSepColors FrameNoSep 0 0 0 1 0 0 0 K 72 54 540 54 2 L 0.25 H 2 Z 0 X 0 0 0 1 0 0 0 K N 1 10 Q (X V) 72 41.28 T (ersion 11) 87.83 41.28 T (Release 6.4) 493.9 41.28 T 108 54 540 54 2 L N 72 740.81 540 756 R 7 X V 0 14 Q 0 X (X Print Attrib) 72 746.67 T (utes) 157.26 746.67 T (17) 526 746.67 T 0 0 0 1 0 0 0 K 0 0 0 1 0 0 0 K 0 10 Q (xp-setup-pr) 108 704.33 T (o) 157.82 704.33 T (viso) 162.72 704.33 T 1 F (This attrib) 198 704.33 T (ute indicates whether or not a required attrib) 239.19 704.33 T (ute or set of attrib) 416.45 704.33 T (utes must be) 487.35 704.33 T (set prior to commencing the print job) 198 692.33 T (.) 346.48 692.33 T (V) 198 668.33 T (alid v) 204.11 668.33 T (alues for this attrib) 226.36 668.33 T (ute are) 301.43 668.33 T 0 F (xp-setup-mandatory) 330.86 668.33 T 1 F ( and) 418.08 668.33 T 0 F (xp-setup-optional) 437.52 668.33 T 1 F (. If) 512.53 668.33 T (this attrib) 198 656.33 T (ute is not speci\336ed,) 235.86 656.33 T 0 F (xp-setup-optional) 315.58 656.33 T 1 F ( is assumed.) 390.59 656.33 T (The initial v) 198 632.33 T (alue of the) 246.64 632.33 T 0 F (xp-setup-pr) 291.35 632.33 T (o) 341.17 632.33 T (viso) 346.07 632.33 T 1 F ( attrib) 362.74 632.33 T (ute is typically set by the printer) 386.15 632.33 T (v) 198 620.33 T (endor in the model-con\336g \336le.) 202.85 620.33 T 0 14 Q (3.4) 72 584.67 T (J) 108 584.67 T (ob Attrib) 114.79 584.67 T (utes) 170.12 584.67 T 1 10 Q (The job attrib) 108 560.33 T (ute pool is identi\336ed by XPJobAttr and pro) 162.24 560.33 T (vides information on ho) 334.59 560.33 T (w to process a print job) 430.17 560.33 T (.) 523.37 560.33 T (T) 108 548.33 T (ypically) 113.31 548.33 T (, job attrib) 144.88 548.33 T (utes are set by the Print Dialog Manager based on user input from the setup dialog.) 186.07 548.33 T 0 F (job-name) 108 530.33 T 1 F (This is the name of the job to be used in subsequent processing and in printing) 198 530.33 T (banner pages. The v) 198 518.33 T (alue is free form te) 278.28 518.33 T (xt.) 353.66 518.33 T 0 F (job-o) 108 496.33 T (wner) 130.12 496.33 T 1 F (This attrib) 198 496.33 T (ute identi\336es the human o) 239.19 496.33 T (wner of the print job) 342.27 496.33 T (.) 424.08 496.33 T 0 F (noti\336cation-pr) 108 474.33 T (o\336le) 169.49 474.33 T 1 F (This attrib) 198 474.33 T (ute is a speci\336cation of e) 239.19 474.33 T (v) 338.09 474.33 T (ents about which the user is to be noti\336ed. The) 342.94 474.33 T (X Print service uses this attrib) 198 462.33 T (ute to determine whether or not to notify the user of) 318.07 462.33 T (print job completion via electronic mail, or in ISO DP) 198 450.33 T (A parlance, the X Print) 413.18 450.33 T (Service recognizes the) 198 438.33 T 0 F (e) 290.47 438.33 T (v) 294.76 438.33 T (ent-r) 299.66 438.33 T (eport-job-completed) 320.58 438.33 T 1 F ( e) 407.78 438.33 T (v) 414.47 438.33 T (ent with a) 419.32 438.33 T 0 F (deli) 461.26 438.33 T (v) 476.72 438.33 T (ery-method) 481.62 438.33 T 1 F (of) 198 426.33 T 0 F (electr) 208.83 426.33 T (onic-mail) 232.52 426.33 T 1 F (.) 272.52 426.33 T (The v) 198 402.33 T (alues may be) 220.8 402.33 T 0 F ({{e) 275.51 402.33 T (v) 287.68 402.33 T (ent-r) 292.58 402.33 T (eport-job-completed} electr) 313.5 402.33 T (onic-mail}) 430.83 402.33 T 1 F ( to send an) 474.77 402.33 T (email message, and) 198 390.33 T 0 F ({}) 278.54 390.33 T 1 F ( if no message is to be sent. Serv) 286.42 390.33 T (ers may implement additional) 417.09 390.33 T (v) 198 378.33 T (alues.) 202.75 378.33 T 0 F (xp-setup-state) 108 356.33 T 1 F (If the v) 198 356.33 T (alue of the) 226.63 356.33 T 0 F (xp-setup-pr) 271.34 356.33 T (o) 321.16 356.33 T (viso) 326.06 356.33 T 1 F ( printer attrib) 342.73 356.33 T (ute is) 395.3 356.33 T 0 F (xp-setup-mandatory) 419.19 356.33 T 1 F (, then) 505.76 356.33 T 0 F (xp-setup-state) 198 344.33 T 1 F ( is used to indicate the current setup state as determined byX Print) 257.99 344.33 T (Serv) 198 332.33 T (er) 216.18 332.33 T (. If the v) 223.4 332.33 T (alue of) 257.03 332.33 T 0 F (xp-setup-pr) 287.02 332.33 T (o) 336.84 332.33 T (viso) 341.74 332.33 T 1 F ( is) 358.41 332.33 T 0 F (xp-setup-optional) 370.08 332.33 T 1 F (, the v) 445.09 332.33 T (alue of) 469.56 332.33 T 0 F (xp-setup-) 499.55 332.33 T (state) 198 320.33 T 1 F ( is ignored.) 217.99 320.33 T (V) 198 296.33 T (alid v) 204.11 296.33 T (alues for) 226.36 296.33 T 0 F (xp-setup-state) 263.57 296.33 T 1 F ( are) 323.56 296.33 T 0 F (xp-setup-ok) 340.77 296.33 T 1 F ( and) 391.33 296.33 T 0 F (xp-setup-incomplete) 410.77 296.33 T 1 F (.) 497.43 296.33 T 0 F (xp-) 502.43 296.33 T (setup-ok) 198 284.33 T 1 F ( indicates that all attrib) 234.67 284.33 T (utes the print serv) 326.13 284.33 T (er requires the user to set are v) 397.36 284.33 T (alid,) 519.57 284.33 T (indicating a client may commence printing if desired.) 198 272.33 T 0 F (xp-setup-incomplete) 414.36 272.33 T 1 F (indicates that one or more attrib) 198 260.33 T (utes the dri) 325.28 260.33 T (v) 369.47 260.33 T (er requires are unspeci\336ed or in) 374.32 260.33 T (v) 500.27 260.33 T (alid;) 505.02 260.33 T (printing should not be attempted.) 198 248.33 T 0 F (xp-spooler) 108 226.33 T (-command-options) 152.63 226.33 T 1 F (A free form te) 198 214.33 T (xt string that will be included v) 254.77 214.33 T (erbatim on the command line used to) 379.62 214.33 T (in) 198 202.33 T (v) 205.38 202.33 T (ok) 210.18 202.33 T (e the spooler) 220.08 202.33 T (. V) 270.63 202.33 T (alid v) 281.74 202.33 T (alues are spooler) 303.99 202.33 T (-dependent.) 370.99 202.33 T 0 F (xp-spooler) 108 180.33 T (-command-r) 152.63 180.33 T (esults) 205.77 180.33 T 1 F (A free form te) 198 168.33 T (xt string that will contain the spooler command output that w) 254.77 168.33 T (ould) 499.11 168.33 T (otherwise appear on a terminal \050e.g. stderr and stdout\051. This te) 198 156.33 T (xt may be useful to) 446.41 156.33 T (present to the user to allo) 198 144.33 T (w tracking of the resulting spooler job) 298.57 144.33 T (. Applications should) 450.93 144.33 T (retrie) 198 132.33 T (v) 218.85 132.33 T (e this v) 223.7 132.33 T (alue follo) 252.34 132.33 T (wing receipt of the) 290.14 132.33 T 0 F (XPEndJ) 367.9 132.33 T (obNotify) 403.87 132.33 T 1 F ( e) 441.09 132.33 T (v) 447.78 132.33 T (ent.) 452.63 132.33 T 0 14 Q (3.5) 72 96.67 T (Document Attrib) 108 96.67 T (utes) 209.98 96.67 T 1 10 Q -0.07 (The document attrib) 108 72.33 P -0.07 (ute pool is identi\336ed by XPDocAttr and indicates ho) 188.76 72.33 P -0.07 (w to process the current document.) 397.95 72.33 P 0 0 0 1 0 0 0 K FMENDPAGE %%EndPage: "17" 21 %%Page: "18" 22 612 792 0 FMBEGINPAGE [0 0 0 1 0 0 0] [ 0 1 1 0 1 0 0] [ 1 0 1 0 0 1 0] [ 1 1 0 0 0 0 1] [ 1 0 0 0 0 1 1] [ 0 1 0 0 1 0 1] [ 0 0 1 0 1 1 0] 7 FrameSetSepColors FrameNoSep 0 0 0 1 0 0 0 K 72 36.66 504 47.95 R 7 X 0 0 0 1 0 0 0 K V 1 10 Q 0 X (18) 72 41.28 T (December 15, 1997) 248.71 41.28 T (X Print Attrib) 432.53 41.28 T (utes) 487.89 41.28 T 72 54 504 54 2 L 7 X V 0.25 H 2 Z 0 X N 72 740.81 504 756 R 7 X V 0 14 Q 0 X (18) 72 749.33 T (X Print Attrib) 394.63 749.33 T (utes) 479.89 749.33 T 72 36.66 540 47.95 R 7 X V 1 10 Q 0 X (Release 6.4) 72 41.28 T (X V) 487.23 41.28 T (ersion 11) 503.06 41.28 T 72 54 540 54 2 L 7 X V 0 X N 0 0 0 1 0 0 0 K 0 0 0 1 0 0 0 K 72 63 540 711 R 7 X V 0 F 0 X (content-orientation) 108 704.33 T 1 F (Speci\336es the orientation to be used for this document. V) 198 704.33 T (alid v) 421.87 704.33 T (alues are:) 444.12 704.33 T 0 F (portrait) 198 692.33 T 1 F (,) 231.88 692.33 T 0 F (landscape) 236.88 692.33 T 1 F (,) 279.11 692.33 T 0 F (r) 284.11 692.33 T (e) 288.37 692.33 T (v) 292.66 692.33 T (erse-portrait) 297.56 692.33 T 1 F (, and) 351.98 692.33 T 0 F (r) 373.92 692.33 T (e) 378.18 692.33 T (v) 382.47 692.33 T (erse-landscape) 387.37 692.33 T 1 F (.) 450.14 692.33 T 0 F (copy-count) 108 670.33 T 1 F (Speci\336es the number of copies of this document to print.) 198 670.33 T (The def) 198 646.33 T (ault v) 228.72 646.33 T (alue is implicitly tak) 250.97 646.33 T (en to be) 332.82 646.33 T 0 F (1) 366.98 646.33 T 1 F ( by the X Print Serv) 371.98 646.33 T (er) 451.55 646.33 T (.) 458.77 646.33 T 0 F (default-printer) 108 624.33 T (-r) 171.51 624.33 T (esolution) 179.1 624.33 T 1 F (Speci\336es the resolution in dots per inch to be used for this document.) 198 612.33 T 0 F (default-input-tray) 108 590.33 T 1 F (The name of the input tray from which media will be dra) 198 590.33 T (wn for printing the) 425.31 590.33 T (document. V) 198 578.33 T (alid v) 248.55 578.33 T (alues are:) 270.8 578.33 T 0 F (top) 311.34 578.33 T 1 F (,) 325.23 578.33 T 0 F (middle) 330.23 578.33 T 1 F (,) 359.68 578.33 T 0 F (bottom) 364.68 578.33 T 1 F (,) 395.23 578.33 T 0 F (en) 400.23 578.33 T (v) 409.83 578.33 T (elope) 414.73 578.33 T 1 F (,) 436.95 578.33 T 0 F (manual) 441.95 578.33 T 1 F (,) 474.18 578.33 T 0 F (lar) 479.18 578.33 T (ge-) 491.3 578.33 T (capacity) 198 566.33 T 1 F (,) 232.9 566.33 T 0 F (main) 237.9 566.33 T 1 F (, and) 259.57 566.33 T 0 F (side) 281.51 566.33 T 1 F (. If the) 298.18 566.33 T 0 F (default-medium) 327.06 566.33 T 1 F ( attrib) 395.39 566.33 T (ute is speci\336ed, it will tak) 418.8 566.33 T (e) 521.48 566.33 T (precedence o) 198 554.33 T (v) 250.32 554.33 T (er) 255.17 554.33 T 0 F (default-input-tray) 265.44 554.33 T 1 F (.) 342.01 554.33 T 0 F (default-medium) 108 532.33 T 1 F (Speci\336es the medium on which the document is to be printed. The X Print Service) 198 532.33 T (de\336nes v) 198 520.33 T (alid) 233.58 520.33 T 0 F (default-medium) 251.08 520.33 T 1 F ( v) 319.41 520.33 T (alues to be the standard v) 326.66 520.33 T (alues of the) 427.78 520.33 T 0 F (medium-size) 476.38 520.33 T 1 F (attrib) 198 508.33 T (ute as speci\336ed in ISO/IEC 10175-1.) 218.91 508.33 T 0 F (document-f) 108 486.33 T (ormat) 156.63 486.33 T 1 F (Speci\336es the format of the document. The v) 198 486.33 T (alue is a structure comprised of the) 373.28 486.33 T (document-format, an optional document-format-v) 198 474.33 T (ariant, and an optional document-) 397.16 474.33 T (format-v) 198 462.33 T (ersion. Speci\336c printer DDX dri) 232.84 462.33 T (v) 361.18 462.33 T (ers may require speci\336cation of the) 366.03 462.33 T (optional v) 198 450.33 T (alues. The structure v) 238.03 450.33 T (alues are enclosed by curly braces \322{}\323 and) 323.87 450.33 T (delimited by whitespace.) 198 438.33 T 0 F (plex) 108 416.33 T 1 F (Speci\336es the) 198 416.33 T 0 F (plex) 251.33 416.33 T 1 F ( to be used for this document. V) 269.11 416.33 T (alid v) 396.32 416.33 T (alues are) 418.57 416.33 T 0 F (simplex) 456.33 416.33 T 1 F (,) 489.11 416.33 T 0 F (duplex) 494.11 416.33 T 1 F (,) 523.01 416.33 T (and) 198 404.33 T 0 F (tumble) 214.94 404.33 T 1 F (.) 244.94 404.33 T 0 F (xp-listf) 108 382.33 T (onts-modes) 137.75 382.33 T 1 F (The v) 198 382.33 T (alue of this attrib) 220.8 382.33 T (ute controls the beha) 288.65 382.33 T (vior of) 371.49 382.33 T 0 F (ListF) 400.93 382.33 T (onts) 423.46 382.33 T 1 F ( and) 441.24 382.33 T 0 F (ListF) 198 370.33 T (ontsW) 220.53 370.33 T (ithInf) 248.13 370.33 T (o) 272.33 370.33 T 1 F ( when a print conte) 277.33 370.33 T (xt has been set. The v) 353.83 370.33 T (alue is a whitespace) 440.23 370.33 T (delimited list of one or more listfonts mode v) 198 358.33 T (alues. V) 378.86 358.33 T (alid listfonts mode v) 410.52 358.33 T (alues) 492.22 358.33 T (include) 198 346.33 T 0 F (xp-list-inter) 229.94 346.33 T (nal-printer) 280.34 346.33 T (-f) 327.19 346.33 T (onts) 333.6 346.33 T 1 F ( and) 351.38 346.33 T 0 F (xp-list-glyph-f) 370.82 346.33 T (onts) 431.13 346.33 T 1 F (.) 448.91 346.33 T (When a print conte) 198 322.33 T (xt is set on a display connection, the def) 274.22 322.33 T (ault beha) 434.38 322.33 T (vior of) 470.56 322.33 T 0 F (ListF) 198 310.33 T (onts) 220.53 310.33 T 1 F ( and) 238.31 310.33 T 0 F (ListF) 257.75 310.33 T (ontsW) 280.28 310.33 T (ithInf) 307.88 310.33 T (o) 332.08 310.33 T 1 F ( is to list all of the fonts normally associated with) 337.08 310.33 T (the X print serv) 198 298.33 T (er \050i.e. fonts containing glyphs\051 as well as an) 260.34 298.33 T (y internal printer fonts) 439.05 298.33 T (de\336ned for the printer) 198 286.33 T (. The) 284.93 286.33 T 0 F (xp-listf) 307.98 286.33 T (onts-modes) 337.73 286.33 T 1 F ( attrib) 386.06 286.33 T (ute is pro) 409.47 286.33 T (vided so that) 446.54 286.33 T (applications can control the beha) 198 274.33 T (vior of) 329.44 274.33 T 0 F (ListF) 358.88 274.33 T (onts) 381.41 274.33 T 1 F ( and) 399.19 274.33 T 0 F (ListF) 418.63 274.33 T (ontsW) 441.16 274.33 T (ithInf) 468.76 274.33 T (o) 492.96 274.33 T 1 F (and is) 500.46 274.33 T (typically to sho) 198 262.33 T (w just internal printer fonts. Using only internal printer fonts is) 259.42 262.33 T (useful for performance reasons; the glyphs associated with the font are contained) 198 250.33 T (within the printer and do not ha) 198 238.33 T (v) 323.9 238.33 T (e to be do) 328.75 238.33 T (wnloaded to it.) 367.66 238.33 T (If the v) 198 214.33 T (alue of) 226.63 214.33 T 0 F (xp-listf) 256.62 214.33 T (onts-modes) 286.37 214.33 T 1 F ( includes) 334.7 214.33 T 0 F (xp-list-glyph-f) 373.03 214.33 T (onts,) 433.34 214.33 T (ListF) 456.12 214.33 T (onts) 478.65 214.33 T 1 F ( and) 496.43 214.33 T 0 F (ListF) 198 202.33 T (ontsW) 220.53 202.33 T (ithInf) 248.13 202.33 T (o) 272.33 202.33 T 1 F ( will include all of the fonts a) 277.33 202.33 T (v) 394.62 202.33 T (ailable to the serv) 399.37 202.33 T (er which ha) 470.04 202.33 T (v) 516.49 202.33 T (e) 521.34 202.33 T (glyphs associated with them. If the v) 198 190.33 T (alue of) 344.68 190.33 T 0 F (xp-listf) 374.67 190.33 T (onts-modes) 404.42 190.33 T 1 F ( includes) 452.75 190.33 T 0 F (xp-list-) 491.08 190.33 T (inter) 198 178.33 T (nal-printer) 218.4 178.33 T (-f) 265.25 178.33 T (onts,) 271.66 178.33 T 1 F ( then) 291.94 178.33 T 0 F (ListF) 314.16 178.33 T (onts) 336.69 178.33 T 1 F ( and) 354.47 178.33 T 0 F (ListF) 373.91 178.33 T (ontsW) 396.44 178.33 T (ithInf) 424.04 178.33 T (o) 448.24 178.33 T 1 F ( will include all of) 453.24 178.33 T (the fonts de\336ned as internal printer fonts.) 198 166.33 T 0 14 Q (3.6) 72 130.67 T (P) 108 130.67 T (age Attrib) 116.41 130.67 T (utes) 177.17 130.67 T 1 10 Q -0.25 (The page attrib) 108 106.33 P -0.25 (ute pool is identi\336ed by XPP) 167.83 106.33 P -0.25 (ageAttr) 281.7 106.33 P -0.25 (. These are document attrib) 311.14 106.33 P -0.25 (utes that can be o) 419.07 106.33 P -0.25 (v) 487.34 106.33 P -0.25 (erridden on) 492.19 106.33 P (a page by page basis within the X Print Service.) 108 94.33 T (The def) 108 70.33 T (ault for each page attrib) 138.72 70.33 T (ute is the current v) 233.49 70.33 T (alue of the corresponding document attrib) 307.67 70.33 T (ute.) 474.94 70.33 T 0 0 0 1 0 0 0 K FMENDPAGE %%EndPage: "18" 22 %%Page: "19" 23 612 792 0 FMBEGINPAGE [0 0 0 1 0 0 0] [ 0 1 1 0 1 0 0] [ 1 0 1 0 0 1 0] [ 1 1 0 0 0 0 1] [ 1 0 0 0 0 1 1] [ 0 1 0 0 1 0 1] [ 0 0 1 0 1 1 0] 7 FrameSetSepColors FrameNoSep 0 0 0 1 0 0 0 K 72 54 540 54 2 L 0.25 H 2 Z 0 X 0 0 0 1 0 0 0 K N 1 10 Q (X V) 72 41.28 T (ersion 11) 87.83 41.28 T (Release 6.4) 493.9 41.28 T 108 54 540 54 2 L N 72 740.81 540 756 R 7 X V 0 14 Q 0 X (X Print Attrib) 72 746.67 T (utes) 157.26 746.67 T (19) 526 746.67 T 0 0 0 1 0 0 0 K 0 0 0 1 0 0 0 K 0 10 Q (content-orientation) 108 704.33 T 1 F (Speci\336es the orientation to be used for this page. V) 198 704.33 T (alid v) 401.31 704.33 T (alues are:) 423.56 704.33 T 0 F (portrait) 198 692.33 T 1 F (,) 231.88 692.33 T 0 F (landscape) 236.88 692.33 T 1 F (,) 279.11 692.33 T 0 F (r) 284.11 692.33 T (e) 288.37 692.33 T (v) 292.66 692.33 T (erse-portrait) 297.56 692.33 T 1 F (, and) 351.98 692.33 T 0 F (r) 373.92 692.33 T (e) 378.18 692.33 T (v) 382.47 692.33 T (erse-landscape) 387.37 692.33 T 1 F (.) 450.14 692.33 T 0 F (default-printer) 108 670.33 T (-r) 171.51 670.33 T (esolution) 179.1 670.33 T 1 F (Speci\336es the resolution in dots per inch to be used for this page.) 198 658.33 T 0 F (default-input-tray) 108 636.33 T 1 F (The name of the input tray from which media will be dra) 198 636.33 T (wn for printing the) 425.31 636.33 T (document. V) 198 624.33 T (alid v) 248.55 624.33 T (alues are:) 270.8 624.33 T 0 F (top) 311.34 624.33 T 1 F (,) 325.23 624.33 T 0 F (middle) 330.23 624.33 T 1 F (,) 359.68 624.33 T 0 F (bottom) 364.68 624.33 T 1 F (,) 395.23 624.33 T 0 F (en) 400.23 624.33 T (v) 409.83 624.33 T (elope) 414.73 624.33 T 1 F (,) 436.95 624.33 T 0 F (manual) 441.95 624.33 T 1 F (,) 474.18 624.33 T 0 F (lar) 479.18 624.33 T (ge-) 491.3 624.33 T (capacity) 198 612.33 T 1 F (,) 232.9 612.33 T 0 F (main) 237.9 612.33 T 1 F (, and) 259.57 612.33 T 0 F (side) 281.51 612.33 T 1 F (. If the) 298.18 612.33 T 0 F (default-medium) 327.06 612.33 T 1 F ( attrib) 395.39 612.33 T (ute is speci\336ed, it will tak) 418.8 612.33 T (e) 521.48 612.33 T (precedence o) 198 600.33 T (v) 250.32 600.33 T (er) 255.17 600.33 T 0 F (default-input-tray) 265.44 600.33 T 1 F (.) 342.01 600.33 T 0 F (default-medium) 108 578.33 T 1 F (Speci\336es the medium on which the document is to be printed. The X Print Service) 198 578.33 T (de\336nes v) 198 566.33 T (alid) 233.58 566.33 T 0 F (default-medium) 251.08 566.33 T 1 F ( v) 319.41 566.33 T (alues to be the standard v) 326.66 566.33 T (alues of the) 427.78 566.33 T 0 F (medium-size) 476.38 566.33 T 1 F (attrib) 198 554.33 T (ute as speci\336ed in ISO/IEC 10175-1.) 218.91 554.33 T 0 F (plex) 108 532.33 T 1 F (Speci\336es the) 198 532.33 T 0 F (plex) 251.33 532.33 T 1 F ( to be used for this document. V) 269.11 532.33 T (alid v) 396.32 532.33 T (alues are) 418.57 532.33 T 0 F (simplex) 456.33 532.33 T 1 F (,) 489.11 532.33 T 0 F (duplex) 494.11 532.33 T 1 F (,) 523.01 532.33 T (and) 198 520.33 T 0 F (tumble) 214.94 520.33 T 1 F (.) 244.94 520.33 T 0 F (xp-listf) 108 498.33 T (onts-modes) 137.75 498.33 T 1 F (The v) 198 498.33 T (alue of this attrib) 220.8 498.33 T (ute controls the beha) 288.65 498.33 T (vior of) 371.49 498.33 T 0 F (ListF) 400.93 498.33 T (onts) 423.46 498.33 T 1 F ( and) 441.24 498.33 T 0 F (ListF) 198 486.33 T (ontsW) 220.53 486.33 T (ithInf) 248.13 486.33 T (o) 272.33 486.33 T 1 F ( when a print conte) 277.33 486.33 T (xt has been set. The v) 353.83 486.33 T (alue is a whitespace) 440.23 486.33 T (delimited list of one or more listfonts mode v) 198 474.33 T (alues. V) 378.86 474.33 T (alid listfonts mode v) 410.52 474.33 T (alues) 492.22 474.33 T (include) 198 462.33 T 0 F (xp-list-inter) 229.94 462.33 T (nal-printer) 280.34 462.33 T (-f) 327.19 462.33 T (onts) 333.6 462.33 T 1 F ( and) 351.38 462.33 T 0 F (xp-list-glyph-f) 370.82 462.33 T (onts) 431.13 462.33 T 1 F (.) 448.91 462.33 T (When a print conte) 198 438.33 T (xt is set on a display connection, the def) 274.22 438.33 T (ault beha) 434.38 438.33 T (vior of) 470.56 438.33 T 0 F (ListF) 198 426.33 T (onts) 220.53 426.33 T 1 F ( and) 238.31 426.33 T 0 F (ListF) 257.75 426.33 T (ontsW) 280.28 426.33 T (ithInf) 307.88 426.33 T (o) 332.08 426.33 T 1 F ( is to list all of the fonts normally associated with) 337.08 426.33 T (the X print serv) 198 414.33 T (er \050i.e. fonts containing glyphs\051 as well as an) 260.34 414.33 T (y internal printer fonts) 439.05 414.33 T (de\336ned for the printer) 198 402.33 T (. The) 284.93 402.33 T 0 F (xp-listf) 307.98 402.33 T (onts-modes) 337.73 402.33 T 1 F ( attrib) 386.06 402.33 T (ute is pro) 409.47 402.33 T (vided so that) 446.54 402.33 T (applications can control the beha) 198 390.33 T (vior of) 329.44 390.33 T 0 F (ListF) 358.88 390.33 T (onts) 381.41 390.33 T 1 F ( and) 399.19 390.33 T 0 F (ListF) 418.63 390.33 T (ontsW) 441.16 390.33 T (ithInf) 468.76 390.33 T (o) 492.96 390.33 T 1 F (and is) 500.46 390.33 T (typically to sho) 198 378.33 T (w just internal printer fonts. Using only internal printer fonts is) 259.42 378.33 T (useful for performance reasons; the glyphs associated with the font are contained) 198 366.33 T (within the printer and do not ha) 198 354.33 T (v) 323.9 354.33 T (e to be do) 328.75 354.33 T (wnloaded to it.) 367.66 354.33 T (If the v) 198 330.33 T (alue of) 226.63 330.33 T 0 F (xp-listf) 256.62 330.33 T (onts-modes) 286.37 330.33 T 1 F ( includes) 334.7 330.33 T 0 F (xp-list-glyph-f) 373.03 330.33 T (onts,) 433.34 330.33 T (ListF) 456.12 330.33 T (onts) 478.65 330.33 T 1 F ( and) 496.43 330.33 T 0 F (ListF) 198 318.33 T (ontsW) 220.53 318.33 T (ithInf) 248.13 318.33 T (o) 272.33 318.33 T 1 F ( will include all of the fonts a) 277.33 318.33 T (v) 394.62 318.33 T (ailable to the serv) 399.37 318.33 T (er which ha) 470.04 318.33 T (v) 516.49 318.33 T (e) 521.34 318.33 T (glyphs associated with them. If the v) 198 306.33 T (alue of) 344.68 306.33 T 0 F (xp-listf) 374.67 306.33 T (onts-modes) 404.42 306.33 T 1 F ( includes) 452.75 306.33 T 0 F (xp-list-) 491.08 306.33 T (inter) 198 294.33 T (nal-printer) 218.4 294.33 T (-f) 265.25 294.33 T (onts,) 271.66 294.33 T 1 F ( then) 291.94 294.33 T 0 F (ListF) 314.16 294.33 T (onts) 336.69 294.33 T 1 F ( and) 354.47 294.33 T 0 F (ListF) 373.91 294.33 T (ontsW) 396.44 294.33 T (ithInf) 424.04 294.33 T (o) 448.24 294.33 T 1 F ( will include all of) 453.24 294.33 T (the fonts de\336ned as internal printer fonts.) 198 282.33 T 0 0 0 1 0 0 0 K FMENDPAGE %%EndPage: "19" 23 %%Page: "20" 24 612 792 0 FMBEGINPAGE [0 0 0 1 0 0 0] [ 0 1 1 0 1 0 0] [ 1 0 1 0 0 1 0] [ 1 1 0 0 0 0 1] [ 1 0 0 0 0 1 1] [ 0 1 0 0 1 0 1] [ 0 0 1 0 1 1 0] 7 FrameSetSepColors FrameNoSep 0 0 0 1 0 0 0 K 72 36.66 504 47.95 R 7 X 0 0 0 1 0 0 0 K V 1 10 Q 0 X (20) 72 41.28 T (December 15, 1997) 248.71 41.28 T -0.5 (Communication with the Print Dialog) 352.88 41.28 P 72 54 504 54 2 L 7 X V 0.25 H 2 Z 0 X N 72 740.81 504 756 R 7 X V 0 14 Q 0 X (20) 72 749.33 T (Communication with the Print Dialog Manager) 220.51 749.33 T 72 36.66 540 47.95 R 7 X V 1 10 Q 0 X (Release 6.4) 72 41.28 T (X V) 487.23 41.28 T (ersion 11) 503.06 41.28 T 72 54 540 54 2 L 7 X V 0 X N 0 0 0 1 0 0 0 K 0 0 0 1 0 0 0 K 72 63 540 711 R 7 X V 0 18 Q 0 X (4) 72 699 T (Communication with the Print Dialog Manager) 108 699 T 1 10 Q (Print Dialog Managers \050PDMs\051 pro) 108 666.33 T (vide users with a graphical interf) 249.5 666.33 T (ace to specify printer) 380.76 666.33 T (-speci\336c and) 464.7 666.33 T (spooler) 108 654.33 T (-speci\336c information. This section describes the interaction between X Print Service and PDMs.) 137.24 654.33 T (F) 108 630.33 T (or each serv) 113.41 630.33 T (er w) 161.57 630.33 T (anting to use print dialog services, a Print Dialog Manager acquires o) 178.96 630.33 T (wnership of a selec-) 455.89 630.33 T (tion named PDM_MAN) 108 618.33 T (A) 204.87 618.33 T (GER on the def) 211.69 618.33 T (ault root windo) 274.08 618.33 T (w \050a dif) 334.94 618.33 T (ferent name can be used, as long as it is) 365.79 618.33 T (kno) 108 606.33 T (wn to both the client and the PDM\051. Print Dialog Managers should comply with the con) 122.75 606.33 T (v) 473.44 606.33 T (entions for) 478.29 606.33 T (\322Manager Selections\323 described in section 2.8 of the) 108 594.33 T 2 F ( Inter) 318.51 594.33 T (-Client Communication Con) 340.25 594.33 T (ventions Manual) 453.19 594.33 T 1 F (\050ICCCM\051. A printing client establishes a print conte) 108 582.33 T (xt, and then requests services of the Print Dialog Man-) 316.17 582.33 T (ager by issuing con) 108 570.33 T (v) 185.09 570.33 T (ersion requests on this selection.) 189.94 570.33 T (Print Dialog Managers should support con) 108 546.33 T (v) 277.31 546.33 T (ersion of the follo) 282.16 546.33 T (wing tar) 353.29 546.33 T (gets on their manager selection:) 386.16 546.33 T 0 14 Q ( The PDM_ST) 72 454.67 T (AR) 157.08 454.67 T (T Selection T) 176.73 454.67 T (ar) 254.78 454.67 T (get) 267.86 454.67 T 1 10 Q -0.17 (The PDM_ST) 108 430.33 P -0.17 (AR) 163.29 430.33 P -0.17 (T tar) 176.58 430.33 P -0.17 (get is parametized \050ICCCM section 2.2\051, and the property named in the) 195.39 430.33 P 0 F -0.17 (Con) 480.52 430.33 P -0.17 (v) 497.9 430.33 P -0.17 (ertSelec-) 502.8 430.33 P (tion) 108 418.33 T 1 F ( request contains the follo) 124.67 418.33 T (wing list of information:) 227.74 418.33 T -0.27 (The PDM_ST) 108 246.33 P -0.27 (AR) 163.19 246.33 P -0.27 (T tar) 176.48 246.33 P -0.27 (get has a side ef) 195.19 246.33 P -0.27 (fect \050ICCCM, section 2.6.3\051. The PDM interprets the parameters listed) 257.73 246.33 P (abo) 108 234.33 T (v) 122.29 234.33 T (e and pro) 127.14 234.33 T (vides a user interf) 164.2 234.33 T (ace dialog on behalf of the client in which the user can modify attrib) 235.47 234.33 T (utes on) 508.83 234.33 T (the print-conte) 108 222.33 T (xt on the print-display pro) 166.45 222.33 T (vided.) 270.74 222.33 T -0.09 (The PDM will use the video-display) 108 198.33 P -0.09 (, video-windo) 252.19 198.33 P -0.09 (w) 307.4 198.33 P -0.09 (, and locale parameters to con\336gure and manage its user) 313.97 198.33 P (interf) 108 186.33 T (ace.) 129.56 186.33 T (The selection reply is placed in the property pro) 108 162.33 T (vided, where type is A) 299.48 162.33 T (T) 388.63 162.33 T (OM, format is 32, and the data con-) 394.56 162.33 T (sists of a single A) 108 150.33 T (T) 178 150.33 T (OM element:) 183.93 150.33 T (A) 114 508.33 T (T) 120.11 508.33 T (OM) 126.04 508.33 T (D) 186 508.33 T (A) 192.82 508.33 T (T) 198.93 508.33 T (A RECEIVED) 204.11 508.33 T (PDM_ST) 114 492.33 T (AR) 151.41 492.33 T (T) 164.7 492.33 T (Request that a dialog be managed for a particular print conte) 186 492.33 T (xt) 428.02 492.33 T (P) 114 380.33 T (ARAMETER) 118.64 380.33 T (FORMA) 186 380.33 T (T) 220.45 380.33 T (DESCRIPTION) 294 380.33 T (video-display) 114 364.33 T (\322host:port[.screen]\323) 186 364.33 T (X display of video serv) 294 364.33 T (er) 387.17 364.33 T (video-windo) 114 348.33 T (w) 164.3 348.33 T (\3220x12345678\323) 186 348.33 T (W) 294 348.33 T (indo) 303.04 348.33 T (w to act as parent of PDM dialog) 320.57 348.33 T (print-display) 114 332.33 T (\322host:port[.screen]\323) 186 332.33 T (X display of print serv) 294 332.33 T (er) 383.84 332.33 T (print-windo) 114 316.33 T (w) 160.97 316.33 T (\3220x12345678\323) 186 316.33 T (W) 294 316.33 T (indo) 303.04 316.33 T (w on print serv) 320.57 316.33 T (er for subsequent) 380.69 316.33 T (communication) 294 304.33 T (print-conte) 114 288.33 T (xt) 157.73 288.33 T (\3220x12345678\323) 186 288.33 T (Conte) 294 288.33 T (xt of print job) 317.74 288.33 T (locale) 114 272.33 T (\322C\323) 186 272.33 T (Hint to PDM re) 294 272.33 T (g) 356.35 272.33 T (arding the locale) 361.3 272.33 T (A) 114 112.33 T (T) 120.11 112.33 T (OM) 126.04 112.33 T (DESCRIPTION) 258 112.33 T (PDM_ST) 114 96.33 T (AR) 151.41 96.33 T (T_OK) 164.7 96.33 T (The PDM w) 258 96.33 T (as started successfully) 307.34 96.33 T (PDM_ST) 114 80.33 T (AR) 151.41 80.33 T (T_VXA) 164.7 80.33 T (UTH) 196.92 80.33 T (The PDM w) 258 80.33 T (as not authorized to connect to video-display) 307.34 80.33 T 108 503 468 503 2 L V 0.5 H 0 Z N 108 375 468 375 2 L V N 108 107 540 107 2 L V N 0 0 0 1 0 0 0 K FMENDPAGE %%EndPage: "20" 24 %%Page: "21" 25 612 792 0 FMBEGINPAGE [0 0 0 1 0 0 0] [ 0 1 1 0 1 0 0] [ 1 0 1 0 0 1 0] [ 1 1 0 0 0 0 1] [ 1 0 0 0 0 1 1] [ 0 1 0 0 1 0 1] [ 0 0 1 0 1 1 0] 7 FrameSetSepColors FrameNoSep 0 0 0 1 0 0 0 K 72 54 540 54 2 L 0.25 H 2 Z 0 X 0 0 0 1 0 0 0 K N 1 10 Q (X V) 72 41.28 T (ersion 11) 87.83 41.28 T (Release 6.4) 493.9 41.28 T 108 54 540 54 2 L N 72 740.81 540 756 R 7 X V 0 14 Q 0 X (Communication with the Print Dialog Manager) 72 746.67 T (21) 526 746.67 T 0 0 0 1 0 0 0 K 0 0 0 1 0 0 0 K 1 10 Q (If the PDM starts successfully) 108 660.33 T (, once the user completes the PDM dialog, the PDM \336nishes communication) 227.89 660.33 T (with the client by sending a ClientMessage to print-windo) 108 648.33 T (w on the print-display) 339.96 648.33 T (.) 427.36 648.33 T -0.05 (The type of this ClientMessage is \322PDM_REPL) 108 624.33 P -0.05 (Y\323, its format is 32, and the data consists of a single A) 298.92 624.33 P -0.05 (T) 515.51 624.33 P -0.05 (OM) 521.44 624.33 P (element:) 108 612.33 T (PDM_ST) 114 700.33 T (AR) 151.41 700.33 T (T_PXA) 164.7 700.33 T (UTH) 195.26 700.33 T (The PDM w) 258 700.33 T (as not authorized to connect to print-display) 307.34 700.33 T (PDM_ST) 114 684.33 T (AR) 151.41 684.33 T (T_ERR) 164.7 684.33 T (OR) 194.86 684.33 T (The PDM encountered an error) 258 684.33 T (A) 114 574.33 T (T) 120.11 574.33 T (OM) 126.04 574.33 T (DESCRIPTION) 258 574.33 T (PDM_EXIT_OK) 114 558.33 T (The user selected \322OK\323. The PDM may or may not ha) 258 558.33 T (v) 475.25 558.33 T (e changed) 480.1 558.33 T (an) 258 546.33 T (y attrib) 267.29 546.33 T (utes.) 295.7 546.33 T (PDM_EXIT_CANCEL) 114 530.33 T -0.29 (The user selected \322Cancel\323. Attrib) 258 530.33 P -0.29 (utes ha) 394.09 530.33 P -0.29 (v) 421.65 530.33 P -0.29 (e been left in the state the) 426.5 530.33 P -0.29 (y) 526.79 530.33 P (were in before communication be) 258 518.33 T (g) 392.26 518.33 T (an.) 397.21 518.33 T (PDM_EXIT_VXA) 114 502.33 T (UTH) 189.55 502.33 T (The PDM w) 258 502.33 T (as not authorized to connect to video-display) 307.34 502.33 T (PDM_EXIT_PXA) 114 486.33 T (UTH) 187.89 486.33 T (The PDM w) 258 486.33 T (as not authorized to connect to print-display) 307.34 486.33 T (PDM_EXIT_ERR) 114 470.33 T (OR) 187.49 470.33 T (The PDM encountered an error) 258 470.33 T 108 569 540 569 2 L V 0.5 H 0 Z N 0 0 0 1 0 0 0 K FMENDPAGE %%EndPage: "21" 25 %%Page: "22" 26 612 792 0 FMBEGINPAGE [0 0 0 1 0 0 0] [ 0 1 1 0 1 0 0] [ 1 0 1 0 0 1 0] [ 1 1 0 0 0 0 1] [ 1 0 0 0 0 1 1] [ 0 1 0 0 1 0 1] [ 0 0 1 0 1 1 0] 7 FrameSetSepColors FrameNoSep 0 0 0 1 0 0 0 K 72 36.66 504 47.95 R 7 X 0 0 0 1 0 0 0 K V 1 10 Q 0 X (22) 72 41.28 T (December 15, 1997) 248.71 41.28 T (Protocol Encoding) 429.28 41.28 T 72 54 504 54 2 L 7 X V 0.25 H 2 Z 0 X N 72 740.81 504 756 R 7 X V 0 14 Q 0 X (22) 72 749.33 T (Pr) 393.41 749.33 T (otocol Encoding) 407.93 749.33 T 72 36.66 540 47.95 R 7 X V 1 10 Q 0 X (Release 6.4) 72 41.28 T (X V) 487.23 41.28 T (ersion 11) 503.06 41.28 T 72 54 540 54 2 L 7 X V 0 X N 0 0 0 1 0 0 0 K 0 0 0 1 0 0 0 K 72 63 540 711 R 7 X V 0 18 Q 0 X (5) 72 699 T (Pr) 108 699 T (otocol Encoding) 126.67 699 T 1 10 Q (The follo) 108 666.33 T (wing sections describe protocol encoding for X Print Extension Protocol requests, e) 144.69 666.33 T (v) 479.4 666.33 T (ents, and) 484.25 666.33 T (errors.) 108 654.33 T 0 14 Q (5.1) 72 618.67 T (Request Pr) 108 618.67 T (otocol Encoding) 174.23 618.67 T 0 12 Q (PrintQueryV) 108 563 T (ersion) 174.79 563 T 3 10 Q (\256) 100.8 472.33 T 0 12 Q (PrintGetPrinterList) 108 322 T 3 10 Q (\256) 100.8 153.33 T 1 9 Q (1) 114 522 T (base) 168 522 T (major im) 306.56 522 T (1) 114 509 T (0) 168 509 T (minor opcode) 306.56 509 T (2) 114 496 T (1) 168 496 T (request length) 306.56 496 T (1) 114 457 T (1) 168 457 T (Reply) 306.56 457 T (1) 114 444 T (unused) 168 444 T (2) 114 431 T (CARD16) 168 431 T (sequence number) 306.56 431 T (4) 114 418 T (0) 168 418 T (reply length) 306.56 418 T (2) 114 405 T (CARD16) 168 405 T (major) 306.56 405 T (-v) 327.38 405 T (ersion) 334.74 405 T (2) 114 392 T (CARD16) 168 392 T (minor) 306.56 392 T (-v) 327.88 392 T (ersion) 335.24 392 T (20) 114 379 T (unused) 168 379 T (1) 114 281 T (base) 168 281 T (major opcode) 306.56 281 T (1) 114 268 T (1) 168 268 T (minor opcode) 306.56 268 T (2) 114 255 T (3+\050nl+np + ll+lp\051/4) 168 255 T (request length) 306.56 255 T (4) 114 242 T (CARD32) 168 242 T (printerNameLen) 306.56 242 T (4) 114 229 T (CARD32) 168 229 T (localeLen) 306.56 229 T (nl) 114 216 T (STRING8) 168 216 T (printer) 306.56 216 T (-name) 330.38 216 T (np) 114 203 T (BYTE) 168 203 T (p=pad\050nl\051) 306.56 203 T (ll) 114 190 T (STRING8) 168 190 T (locale) 306.56 190 T (lp) 114 177 T (BYTE) 168 177 T (lp=pad\050ll\051) 306.56 177 T (1) 114 116 T (1) 168 116 T (Reply) 306.56 116 T (1) 114 103 T (unused) 306.56 103 T (2) 114 90 T (CARD16) 168 90 T (sequenceNumber) 306.56 90 T 0 0 0 1 0 0 0 K FMENDPAGE %%EndPage: "22" 26 %%Page: "23" 27 612 792 0 FMBEGINPAGE [0 0 0 1 0 0 0] [ 0 1 1 0 1 0 0] [ 1 0 1 0 0 1 0] [ 1 1 0 0 0 0 1] [ 1 0 0 0 0 1 1] [ 0 1 0 0 1 0 1] [ 0 0 1 0 1 1 0] 7 FrameSetSepColors FrameNoSep 0 0 0 1 0 0 0 K 72 54 540 54 2 L 0.25 H 2 Z 0 X 0 0 0 1 0 0 0 K N 1 10 Q (X V) 72 41.28 T (ersion 11) 87.83 41.28 T (Release 6.4) 493.9 41.28 T 108 54 540 54 2 L N 72 740.81 540 756 R 7 X V 0 14 Q 0 X (Pr) 72 746.67 T (otocol Encoding) 86.52 746.67 T (23) 526 746.67 T 0 0 0 1 0 0 0 K 0 0 0 1 0 0 0 K 0 12 Q (PrintRehashPrinterList) 108 439 T (PrintCr) 108 315 T (eateContext) 148.44 315 T 1 9 Q (4) 114 703 T ( \0508 + nl+nlp + dl+dlp\051/4 computed) 168 703 T (listCount times) 168 692 T (length) 306.56 703 T (4) 114 679 T (CARD32) 168 679 T (listCount) 306.56 679 T (20) 114 666 T (unused) 306.56 666 T ( \0508 +) 114 653 T (nl+nlp +) 114 642 T (dl+dlp\051) 114 631 T (computed) 114 620 T (listCount) 114 609 T (times) 114 598 T (LIST) 168 653 T (ofPRINTER) 186.28 653 T (printers) 306.56 653 T (PRINTER) 114 572 T (4) 114 559 T (CARD32) 168 559 T (nameLen) 306.56 559 T (nl) 114 546 T (STRING8) 168 546 T (name) 306.56 546 T (nlp) 114 533 T (BYTE) 168 533 T (nlp=pad\050nl\051) 306.56 533 T (4) 114 520 T (CARD32) 168 520 T (descLen) 306.56 520 T (dl) 114 507 T (STRING8) 168 507 T (description) 306.56 507 T (dlp) 114 494 T (BYTE) 168 494 T (dlp=pad\050dl\051) 306.56 494 T (1) 114 398 T (base) 168 398 T (major opcode) 306.56 398 T (1) 114 385 T (20) 168 385 T (minor opcode) 306.56 385 T (2) 114 372 T (1) 168 372 T (request length) 306.56 372 T (1) 114 274 T (base) 168 274 T (major opcode) 306.56 274 T (1) 114 261 T (2) 168 261 T (minor opcode) 306.56 261 T (2) 114 248 T (4 + \050nl+np + ll+lp\051/4) 168 248 T (request length) 306.56 248 T (4) 114 235 T (CARD32) 168 235 T (conte) 306.56 235 T (xt-id) 325.92 235 T (4) 114 222 T (CARD32) 168 222 T (printerNameLen) 306.56 222 T (4) 114 209 T (CARD32) 168 209 T (localeLen) 306.56 209 T (nl) 114 196 T (STRING8) 168 196 T (printer) 306.56 196 T (-name) 330.38 196 T (np) 114 183 T (BYTE\051) 168 183 T (np=pad\050nl\051) 306.56 183 T (ll) 114 170 T (STRING8) 168 170 T (locale) 306.56 170 T (lp) 114 157 T (BYTE) 168 157 T (lp=pad\050ll\051) 306.56 157 T 0 0 0 1 0 0 0 K FMENDPAGE %%EndPage: "23" 27 %%Page: "24" 28 612 792 0 FMBEGINPAGE [0 0 0 1 0 0 0] [ 0 1 1 0 1 0 0] [ 1 0 1 0 0 1 0] [ 1 1 0 0 0 0 1] [ 1 0 0 0 0 1 1] [ 0 1 0 0 1 0 1] [ 0 0 1 0 1 1 0] 7 FrameSetSepColors FrameNoSep 0 0 0 1 0 0 0 K 72 36.66 504 47.95 R 7 X 0 0 0 1 0 0 0 K V 1 10 Q 0 X (24) 72 41.28 T (December 15, 1997) 248.71 41.28 T (Protocol Encoding) 429.28 41.28 T 72 54 504 54 2 L 7 X V 0.25 H 2 Z 0 X N 72 740.81 504 756 R 7 X V 0 14 Q 0 X (24) 72 749.33 T (Pr) 393.41 749.33 T (otocol Encoding) 407.93 749.33 T 72 36.66 540 47.95 R 7 X V 1 10 Q 0 X (Release 6.4) 72 41.28 T (X V) 487.23 41.28 T (ersion 11) 503.06 41.28 T 72 54 540 54 2 L 7 X V 0 X N 0 0 0 1 0 0 0 K 0 0 0 1 0 0 0 K 72 63 540 711 R 7 X V 0 12 Q 0 X (PrintSetContext) 108 703 T (PrintGetContext) 108 566 T 3 10 Q (\256) 100.8 475.33 T 0 12 Q (PrintDestr) 108 316 T (oyContext) 162.43 316 T (PrintGetScr) 108 179 T (eenofContext) 170.44 179 T 3 10 Q (\256) 100.8 88.33 T 1 9 Q (1) 114 662 T (base) 168 662 T (major opcode) 306.56 662 T (1) 114 649 T (3) 168 649 T (minor opcode) 306.56 649 T (2) 114 636 T (2) 168 636 T (request length) 306.56 636 T (4) 114 623 T (CARD32) 168 623 T (conte) 306.56 623 T (xt) 325.92 623 T (1) 114 525 T (base) 168 525 T (major opcode) 306.56 525 T (1) 114 512 T (4) 168 512 T (minor opcode) 306.56 512 T (2) 114 499 T (1) 168 499 T (request length) 306.56 499 T (1) 114 438 T (1) 168 438 T (Reply) 306.56 438 T (1) 114 425 T (unused) 306.56 425 T (2) 114 412 T (CARD16) 168 412 T (sequence number) 306.56 412 T (4) 114 399 T (0) 168 399 T (reply length) 306.56 399 T (4) 114 386 T (CARD32) 168 386 T (conte) 306.56 386 T (xt) 325.92 386 T (16) 114 373 T (unused) 306.56 373 T (1) 114 275 T (base) 168 275 T (major opcode) 306.56 275 T (1) 114 262 T (5) 168 262 T (minor opcode) 306.56 262 T (2) 114 249 T (2) 168 249 T (request length) 306.56 249 T (4) 114 236 T (CARD32) 168 236 T (conte) 306.56 236 T (xt) 325.92 236 T (1) 114 138 T (base) 168 138 T (major opcode) 306.56 138 T (1) 114 125 T (6) 168 125 T (minor opcode) 306.56 125 T (2) 114 112 T (1) 168 112 T (request length) 306.56 112 T 0 0 0 1 0 0 0 K FMENDPAGE %%EndPage: "24" 28 %%Page: "25" 29 612 792 0 FMBEGINPAGE [0 0 0 1 0 0 0] [ 0 1 1 0 1 0 0] [ 1 0 1 0 0 1 0] [ 1 1 0 0 0 0 1] [ 1 0 0 0 0 1 1] [ 0 1 0 0 1 0 1] [ 0 0 1 0 1 1 0] 7 FrameSetSepColors FrameNoSep 0 0 0 1 0 0 0 K 72 54 540 54 2 L 0.25 H 2 Z 0 X 0 0 0 1 0 0 0 K N 1 10 Q (X V) 72 41.28 T (ersion 11) 87.83 41.28 T (Release 6.4) 493.9 41.28 T 108 54 540 54 2 L N 72 740.81 540 756 R 7 X V 0 14 Q 0 X (Pr) 72 746.67 T (otocol Encoding) 86.52 746.67 T (25) 526 746.67 T 0 0 0 1 0 0 0 K 0 0 0 1 0 0 0 K 0 12 Q (PrintStartJ) 108 561 T (ob) 166.48 561 T (PrintEndJ) 108 411 T (ob) 161.83 411 T (PrintStartDoc) 108 261 T 1 9 Q (1) 114 683 T (1) 203.26 683 T (Reply) 341.82 683 T (1) 114 670 T (unused) 341.82 670 T (2) 114 657 T (CARD16) 203.26 657 T (sequence number) 341.82 657 T (4) 114 644 T (0) 203.26 644 T (reply length) 341.82 644 T (4) 114 631 T (WINDO) 203.26 631 T (W) 233.93 631 T (root) 341.82 631 T (16) 114 618 T (unused) 341.82 618 T (1) 114 520 T (base) 168 520 T (major opcode) 306.56 520 T (1) 114 507 T (7) 168 507 T (minor opcode) 306.56 507 T (2) 114 494 T (2) 168 494 T (request length) 306.56 494 T (1) 114 481 T (CARD8) 168 481 T (output-mode) 306.56 481 T (3) 114 468 T (unused) 306.56 468 T (1) 114 370 T (base) 168 370 T (major opcode) 306.56 370 T (1) 114 357 T (8) 168 357 T (minor opcode) 306.56 357 T (2) 114 344 T (2) 168 344 T (request length) 306.56 344 T (1) 114 331 T (BOOL) 168 331 T (cancel) 306.56 331 T (3) 114 318 T (unused) 306.56 318 T (1) 114 220 T (base) 168 220 T (major opcode) 306.56 220 T (1) 114 207 T (9) 168 207 T (minor opcode) 306.56 207 T (2) 114 194 T (2) 168 194 T (request length) 306.56 194 T (1) 114 181 T (CARD8) 168 181 T (dri) 306.56 181 T (v) 316.33 181 T (er) 320.7 181 T (-mode) 327.51 181 T (3) 114 168 T (unused) 306.56 168 T 0 0 0 1 0 0 0 K FMENDPAGE %%EndPage: "25" 29 %%Page: "26" 30 612 792 0 FMBEGINPAGE [0 0 0 1 0 0 0] [ 0 1 1 0 1 0 0] [ 1 0 1 0 0 1 0] [ 1 1 0 0 0 0 1] [ 1 0 0 0 0 1 1] [ 0 1 0 0 1 0 1] [ 0 0 1 0 1 1 0] 7 FrameSetSepColors FrameNoSep 0 0 0 1 0 0 0 K 72 36.66 504 47.95 R 7 X 0 0 0 1 0 0 0 K V 1 10 Q 0 X (26) 72 41.28 T (December 15, 1997) 248.71 41.28 T (Protocol Encoding) 429.28 41.28 T 72 54 504 54 2 L 7 X V 0.25 H 2 Z 0 X N 72 740.81 504 756 R 7 X V 0 14 Q 0 X (26) 72 749.33 T (Pr) 393.41 749.33 T (otocol Encoding) 407.93 749.33 T 72 36.66 540 47.95 R 7 X V 1 10 Q 0 X (Release 6.4) 72 41.28 T (X V) 487.23 41.28 T (ersion 11) 503.06 41.28 T 72 54 540 54 2 L 7 X V 0 X N 0 0 0 1 0 0 0 K 0 0 0 1 0 0 0 K 72 63 540 711 R 7 X V 0 12 Q 0 X (PrintEndDoc) 108 703 T (PrintPutDocumentData) 108 553 T (PrintGetDocumentData) 108 299 T 3 10 Q (\256+) 100.8 182.33 T 1 9 Q (1) 114 662 T (base) 168 662 T (major opcode) 306.56 662 T (1) 114 649 T (10) 168 649 T (minor opcode) 306.56 649 T (2) 114 636 T (2) 168 636 T (request length) 306.56 636 T (1) 114 623 T (BOOL) 168 623 T (cancel) 306.56 623 T (3) 114 610 T (unused) 306.56 610 T (1) 114 512 T (base) 168 512 T (major opcode) 306.56 512 T (1) 114 499 T (11) 168 499 T (minor opcode) 306.56 499 T (2) 114 486 T (4 + \050d+dp + f+fp + o+op\051/4) 168 486 T (request length) 306.56 486 T (4) 114 473 T (DRA) 168 473 T (W) 186.19 473 T (ABLE) 193.6 473 T (dra) 306.56 473 T (w) 317.92 473 T (able) 324.33 473 T (4) 114 460 T (CARD32) 168 460 T (len_data) 306.56 460 T (2) 114 447 T (CARD16) 168 447 T (len_fmt) 306.56 447 T (2) 114 434 T (CARD16) 168 434 T (len_options) 306.56 434 T (d) 114 421 T (LIST) 168 421 T (ofBYTE) 186.28 421 T (data) 306.56 421 T (dp) 114 408 T (BYTE) 168 408 T (dp=pad\050d\051) 306.56 408 T (f) 114 395 T (STRING8) 168 395 T (doc-format) 306.56 395 T (fp) 114 382 T (BYTE) 168 382 T (fp=pad\050f\051) 306.56 382 T (o) 114 369 T (STRING8) 168 369 T (options) 306.56 369 T (op) 114 356 T (BYTE) 168 356 T (op=pad\050o\051) 306.56 356 T (1) 114 258 T (base) 168 258 T (major opcode) 306.56 258 T (1) 114 245 T (12) 168 245 T (minor opcode) 306.56 245 T (2) 114 232 T (3) 168 232 T (request length) 306.56 232 T (4) 114 219 T (PCONTEXT) 168 219 T (conte) 306.56 219 T (xt) 325.92 219 T (4) 114 206 T (CARD32) 168 206 T (max-bytes) 306.56 206 T (1) 114 167 T (1) 168 167 T (Reply) 306.56 167 T (1) 114 154 T (unused) 306.56 154 T (2) 114 141 T (CARD16) 168 141 T (sequence number) 306.56 141 T (4) 114 128 T (\050n + p\051/4) 168 128 T (reply length) 306.56 128 T (4) 114 115 T (0 XPGetDocFinished) 168 115 T (1 XPGetDocSecondConsumer) 168 104 T (status-code) 306.56 115 T (4) 114 91 T (CARD32) 168 91 T (\336nished-\337ag) 306.56 91 T (4) 114 78 T (CARD32) 168 78 T (dataLen) 306.56 78 T 0 0 0 1 0 0 0 K FMENDPAGE %%EndPage: "26" 30 %%Page: "27" 31 612 792 0 FMBEGINPAGE [0 0 0 1 0 0 0] [ 0 1 1 0 1 0 0] [ 1 0 1 0 0 1 0] [ 1 1 0 0 0 0 1] [ 1 0 0 0 0 1 1] [ 0 1 0 0 1 0 1] [ 0 0 1 0 1 1 0] 7 FrameSetSepColors FrameNoSep 0 0 0 1 0 0 0 K 72 54 540 54 2 L 0.25 H 2 Z 0 X 0 0 0 1 0 0 0 K N 1 10 Q (X V) 72 41.28 T (ersion 11) 87.83 41.28 T (Release 6.4) 493.9 41.28 T 108 54 540 54 2 L N 72 740.81 540 756 R 7 X V 0 14 Q 0 X (Pr) 72 746.67 T (otocol Encoding) 86.52 746.67 T (27) 526 746.67 T 0 0 0 1 0 0 0 K 0 0 0 1 0 0 0 K 0 12 Q (PrintStartP) 108 610 T (age) 167.87 610 T (PrintEndP) 108 473 T (age) 163.22 473 T (PrintSelectInput) 108 323 T (PrintInputSelected) 108 134 T 1 9 Q (12) 114 703 T (unused) 306.56 703 T (n) 114 690 T (LIST) 168 690 T (ofBYTE) 186.28 690 T (data) 306.56 690 T (p) 114 677 T (BYTE) 168 677 T (p=pad\050n\051) 306.56 677 T (1) 114 569 T (base) 168 569 T (major opcode) 306.56 569 T (1) 114 556 T (13) 168 556 T (minor opcode) 306.56 556 T (2) 114 543 T (2) 168 543 T (request length) 306.56 543 T (4) 114 530 T (WINDO) 168 530 T (W) 198.67 530 T (windo) 306.56 530 T (w) 328.84 530 T (1) 114 432 T (base) 168 432 T (major opcode) 306.56 432 T (1) 114 419 T (14) 168 419 T (minor opcode) 306.56 419 T (2) 114 406 T (2) 168 406 T (request length) 306.56 406 T (1) 114 393 T (BOOL) 168 393 T (cancel) 306.56 393 T (3) 114 380 T (unused) 306.56 380 T (1) 114 282 T (base) 168 282 T (major opcode) 306.56 282 T (1) 114 269 T (15) 168 269 T (minor opcode) 306.56 269 T (2) 114 256 T (3) 168 256 T (request length) 306.56 256 T (4) 114 243 T (PCONTEXT) 168 243 T (conte) 306.56 243 T (xt) 325.92 243 T (4) 114 230 T (BITMASK) 168 230 T (e) 306.56 230 T (v) 310.33 230 T (ent-mask) 314.7 230 T (#x00000000) 168 217 T (XPNoEv) 306.56 217 T (entMask) 338.92 217 T (#x00000001) 168 204 T (XPPrintMask) 306.56 204 T (#x00000002) 168 191 T (XP) 306.56 191 T (Attrib) 317.23 191 T (uteMask) 338.56 191 T (1) 114 93 T (base) 168 93 T (major opcode) 306.56 93 T (1) 114 80 T (16) 168 80 T (minor opcode) 306.56 80 T 0 0 0 1 0 0 0 K FMENDPAGE %%EndPage: "27" 31 %%Page: "28" 32 612 792 0 FMBEGINPAGE [0 0 0 1 0 0 0] [ 0 1 1 0 1 0 0] [ 1 0 1 0 0 1 0] [ 1 1 0 0 0 0 1] [ 1 0 0 0 0 1 1] [ 0 1 0 0 1 0 1] [ 0 0 1 0 1 1 0] 7 FrameSetSepColors FrameNoSep 0 0 0 1 0 0 0 K 72 36.66 504 47.95 R 7 X 0 0 0 1 0 0 0 K V 1 10 Q 0 X (28) 72 41.28 T (December 15, 1997) 248.71 41.28 T (Protocol Encoding) 429.28 41.28 T 72 54 504 54 2 L 7 X V 0.25 H 2 Z 0 X N 72 740.81 504 756 R 7 X V 0 14 Q 0 X (28) 72 749.33 T (Pr) 393.41 749.33 T (otocol Encoding) 407.93 749.33 T 72 36.66 540 47.95 R 7 X V 1 10 Q 0 X (Release 6.4) 72 41.28 T (X V) 487.23 41.28 T (ersion 11) 503.06 41.28 T 72 54 540 54 2 L 7 X V 0 X N 0 0 0 1 0 0 0 K 0 0 0 1 0 0 0 K 72 63 540 711 R 7 X V 3 F 0 X (\256) 100.8 674.33 T 0 12 Q (PrintGetAttrib) 108 502 T (utes) 185.08 502 T 3 10 Q (\256) 100.8 372.33 T 0 12 Q (PrintGetOneAttrib) 108 178 T (ute) 206.41 178 T 1 9 Q (2) 114 703 T (2) 168 703 T (request length) 306.56 703 T (4) 114 690 T (PCONTEXT) 168 690 T (conte) 306.56 690 T (xt) 325.92 690 T (1) 114 649 T (1) 168 649 T (Reply) 306.56 649 T (1) 114 636 T (unused) 306.56 636 T (2) 114 623 T (CARD16) 168 623 T (sequence number) 306.56 623 T (4) 114 610 T (0) 168 610 T (reply length) 306.56 610 T (4) 114 597 T (BITMASK) 168 597 T (e) 306.56 597 T (v) 310.33 597 T (ent-mask) 314.7 597 T (4) 114 584 T (BITMASK) 168 584 T (all-e) 306.56 584 T (v) 322.33 584 T (ents-mask) 326.69 584 T (16) 114 571 T (unused) 306.56 571 T (1) 114 461 T (base) 168 461 T (major opcode) 306.56 461 T (1) 114 448 T (17) 168 448 T (minor opcode) 306.56 448 T (2) 114 435 T (3) 168 435 T (request length) 306.56 435 T (4) 114 422 T (PCONTEXT) 168 422 T (conte) 306.56 422 T (xt) 325.92 422 T (1) 114 409 T (CARD8) 168 409 T (pool) 306.56 409 T (3) 114 396 T (unused) 306.56 396 T (1) 114 342 T (1) 168 342 T (Reply) 306.56 342 T (1) 114 329 T (unused) 306.56 329 T (2) 114 316 T (CARD16) 168 316 T (sequence number) 306.56 316 T (4) 114 303 T (\050n+p\051/4) 168 303 T (reply length) 306.56 303 T (4) 114 290 T (CARD32) 168 290 T (stringLen) 306.56 290 T (20) 114 277 T (unused) 306.56 277 T (n) 114 264 T (STRING8) 168 264 T (attrib) 306.56 264 T (utes) 325.38 264 T (p) 114 251 T (p=pad\050n\051) 306.56 251 T (1) 114 137 T (base) 168 137 T (major opcode) 306.56 137 T (1) 114 124 T (19) 168 124 T (minor opcode) 306.56 124 T (2) 114 111 T (4 + \050n+p\051/4) 168 111 T (request length) 306.56 111 T (4) 114 98 T (PCONTEXT) 168 98 T (conte) 306.56 98 T (xt) 325.92 98 T (4) 114 85 T (CARD32) 168 85 T (nameLen) 306.56 85 T (1) 114 72 T (CARD8) 168 72 T (pool) 306.56 72 T 0 0 0 1 0 0 0 K FMENDPAGE %%EndPage: "28" 32 %%Page: "29" 33 612 792 0 FMBEGINPAGE [0 0 0 1 0 0 0] [ 0 1 1 0 1 0 0] [ 1 0 1 0 0 1 0] [ 1 1 0 0 0 0 1] [ 1 0 0 0 0 1 1] [ 0 1 0 0 1 0 1] [ 0 0 1 0 1 1 0] 7 FrameSetSepColors FrameNoSep 0 0 0 1 0 0 0 K 72 54 540 54 2 L 0.25 H 2 Z 0 X 0 0 0 1 0 0 0 K N 1 10 Q (X V) 72 41.28 T (ersion 11) 87.83 41.28 T (Release 6.4) 493.9 41.28 T 108 54 540 54 2 L N 72 740.81 540 756 R 7 X V 0 14 Q 0 X (Pr) 72 746.67 T (otocol Encoding) 86.52 746.67 T (29) 526 746.67 T 0 0 0 1 0 0 0 K 0 0 0 1 0 0 0 K 3 10 Q (\256) 100.8 651.33 T 0 12 Q (PrintSetAttrib) 108 466 T (utes) 182.41 466 T (PrintGetP) 108 251 T (ageDimensions) 160.54 251 T 3 10 Q (\256) 100.8 147.33 T 1 9 Q (3) 114 703 T (unused) 306.56 703 T (n) 114 690 T (STRING8) 168 690 T (name) 306.56 690 T (p) 114 677 T (p=pad\050n\051) 306.56 677 T (1) 114 626 T (1) 168 626 T (Reply) 306.56 626 T (1) 114 613 T (unused) 306.56 613 T (2) 114 600 T (CARD16) 168 600 T (sequence number) 306.56 600 T (4) 114 587 T (\050n+p\051/4) 168 587 T (reply length) 306.56 587 T (4) 114 574 T (CARD32) 168 574 T (v) 306.56 574 T (alueLen) 310.84 574 T (20) 114 561 T (unused) 306.56 561 T (n) 114 548 T (STRING8) 168 548 T (v) 306.56 548 T (alue) 310.84 548 T (p) 114 535 T (p=pad\050n\051) 306.56 535 T (1) 114 425 T (base) 168 425 T (major opcode) 306.56 425 T (1) 114 412 T (18) 168 412 T (minor opcode) 306.56 412 T (2) 114 399 T (4 + \050n+p\051/4) 168 399 T (request length) 306.56 399 T (4) 114 386 T (PCONTEXT) 168 386 T (conte) 306.56 386 T (xt) 325.92 386 T (4) 114 373 T (CARD32) 168 373 T (stringLen) 306.56 373 T (1) 114 360 T (CARD8) 168 360 T (pool) 306.56 360 T (1) 114 347 T (CARD8) 168 347 T (rule) 306.56 347 T (2) 114 334 T (unused) 306.56 334 T (n) 114 321 T (STRING8) 168 321 T (attrib) 306.56 321 T (utes) 325.38 321 T (p) 114 308 T (BYTE) 168 308 T (p=pad\050n\051) 306.56 308 T (1) 114 210 T (base) 168 210 T (major opcode) 306.56 210 T (1) 114 197 T (21) 168 197 T (minor opcode) 306.56 197 T (2) 114 184 T (2) 168 184 T (request length) 306.56 184 T (4) 114 171 T (PCONTEXT) 168 171 T (conte) 306.56 171 T (xt) 325.92 171 T (1) 114 110 T (1) 168 110 T (Reply) 306.56 110 T (1) 114 97 T (unused) 306.56 97 T (2) 114 84 T (CARD16) 168 84 T (sequence number) 306.56 84 T (4) 114 71 T (0) 168 71 T (reply length) 306.56 71 T 0 0 0 1 0 0 0 K FMENDPAGE %%EndPage: "29" 33 %%Page: "30" 34 612 792 0 FMBEGINPAGE [0 0 0 1 0 0 0] [ 0 1 1 0 1 0 0] [ 1 0 1 0 0 1 0] [ 1 1 0 0 0 0 1] [ 1 0 0 0 0 1 1] [ 0 1 0 0 1 0 1] [ 0 0 1 0 1 1 0] 7 FrameSetSepColors FrameNoSep 0 0 0 1 0 0 0 K 72 36.66 504 47.95 R 7 X 0 0 0 1 0 0 0 K V 1 10 Q 0 X (30) 72 41.28 T (December 15, 1997) 248.71 41.28 T (Protocol Encoding) 429.28 41.28 T 72 54 504 54 2 L 7 X V 0.25 H 2 Z 0 X N 72 740.81 504 756 R 7 X V 0 14 Q 0 X (30) 72 749.33 T (Pr) 393.41 749.33 T (otocol Encoding) 407.93 749.33 T 72 36.66 540 47.95 R 7 X V 1 10 Q 0 X (Release 6.4) 72 41.28 T (X V) 487.23 41.28 T (ersion 11) 503.06 41.28 T 72 54 540 54 2 L 7 X V 0 X N 0 0 0 1 0 0 0 K 0 0 0 1 0 0 0 K 72 63 540 711 R 7 X V 0 12 Q 0 X (PrintQueryScr) 108 570 T (eens) 184.44 570 T 3 10 Q (\256) 100.8 479.33 T 0 12 Q (PrintSetImageResolution) 108 246 T 3 10 Q (\256) 100.8 116.33 T 1 9 Q (2) 114 703 T (CARD) 168 703 T (16) 193 703 T (width) 306.56 703 T (2) 114 690 T (CARD) 168 690 T (16) 193 690 T (height) 306.56 690 T (2) 114 677 T (CARD) 168 677 T (16) 193 677 T (of) 306.56 677 T (fset-x) 313.83 677 T (2) 114 664 T (CARD) 168 664 T (16) 193 664 T (of) 306.56 664 T (fset-y) 313.83 664 T (2) 114 651 T (CARD) 168 651 T (16) 193 651 T (reproducible-width) 306.56 651 T (2) 114 638 T (CARD) 168 638 T (16) 193 638 T (reproducible-height) 306.56 638 T (12) 114 625 T (unused) 306.56 625 T (1) 114 529 T (base) 168 529 T (major opcode) 306.56 529 T (1) 114 516 T (22) 168 516 T (minor opcode) 306.56 516 T (2) 114 503 T (2) 168 503 T (request length) 306.56 503 T (1) 114 442 T (1) 168 442 T (Reply) 306.56 442 T (1) 114 429 T (unused) 306.56 429 T (2) 114 416 T (CARD16) 168 416 T (sequence number) 306.56 416 T (4) 114 403 T (listCount) 168 403 T (reply length) 306.56 403 T (4) 114 390 T (CAR) 168 390 T (D32) 186.5 390 T (listCount) 306.56 390 T (20) 114 377 T (unused) 306.56 377 T (4 * list-) 114 364 T (Count) 114 353 T (LIST) 168 364 T (ofWINDO) 186.28 364 T (W) 224.45 364 T (roots) 306.56 364 T (R) 114 327 T (OO) 119.64 327 T (T-) 132.28 327 T (WINDO) 114 316 T (W) 144.67 316 T (4) 114 303 T (WINDO) 168 303 T (W) 198.67 303 T (rootW) 306.56 303 T (indo) 329.2 303 T (w) 344.97 303 T (1) 114 205 T (base) 168 205 T (major opcode) 306.56 205 T (1) 114 192 T (23) 168 192 T (minor opcode) 306.56 192 T (2) 114 179 T (3) 168 179 T (request length) 306.56 179 T (4) 114 166 T (PCONTEXT) 168 166 T (conte) 306.56 166 T (xt) 325.92 166 T (2) 114 153 T (CARD16) 168 153 T (image-resolution) 306.56 153 T (2) 114 140 T (unused) 306.56 140 T (1) 114 86 T (1) 168 86 T (Reply) 306.56 86 T (1) 114 73 T (BOOL) 168 73 T (status) 306.56 73 T 0 0 0 1 0 0 0 K FMENDPAGE %%EndPage: "30" 34 %%Page: "31" 35 612 792 0 FMBEGINPAGE [0 0 0 1 0 0 0] [ 0 1 1 0 1 0 0] [ 1 0 1 0 0 1 0] [ 1 1 0 0 0 0 1] [ 1 0 0 0 0 1 1] [ 0 1 0 0 1 0 1] [ 0 0 1 0 1 1 0] 7 FrameSetSepColors FrameNoSep 0 0 0 1 0 0 0 K 72 54 540 54 2 L 0.25 H 2 Z 0 X 0 0 0 1 0 0 0 K N 1 10 Q (X V) 72 41.28 T (ersion 11) 87.83 41.28 T (Release 6.4) 493.9 41.28 T 108 54 540 54 2 L N 72 740.81 540 756 R 7 X V 0 14 Q 0 X (Pr) 72 746.67 T (otocol Encoding) 86.52 746.67 T (31) 526 746.67 T 0 0 0 1 0 0 0 K 0 0 0 1 0 0 0 K 0 12 Q (PrintGetImageResolution) 108 597 T 3 10 Q (\256) 100.8 493.33 T 0 14 Q (5.2) 72 360.67 T (Ev) 108 360.67 T (ent Pr) 124.2 360.67 T (otocol Encoding) 160.88 360.67 T 0 12 Q (PrintNotify) 108 305 T 1 9 Q (2) 114 703 T (CARD16) 168 703 T (sequence number) 306.56 703 T (4) 114 690 T (0) 168 690 T (reply length) 306.56 690 T (2) 114 677 T (CARD16) 168 677 T (pre) 306.56 677 T (vious-resolution) 317.83 677 T (22) 114 664 T (unused) 306.56 664 T (1) 114 556 T (base) 168 556 T (major opcode) 306.56 556 T (1) 114 543 T (24) 168 543 T (minor opcode) 306.56 543 T (2) 114 530 T (2) 168 530 T (request length) 306.56 530 T (4) 114 517 T (PCONTEXT) 168 517 T (conte) 306.56 517 T (xt) 325.92 517 T (1) 114 463 T (1) 168 463 T (Reply) 306.56 463 T (1) 114 450 T (unused) 306.56 450 T (2) 114 437 T (CARD16) 168 437 T (sequence number) 306.56 437 T (4) 114 424 T (0) 168 424 T (reply length) 306.56 424 T (2) 114 411 T (CARD16) 168 411 T (image-resolution) 306.56 411 T (22) 114 398 T (unused) 306.56 398 T (1) 114 264 T (0 + base) 168 264 T (code) 306.56 264 T (1) 114 251 T (0 XPStartJobNotify) 168 251 T (1 XPEndJobNotify) 168 236 T (2 XPStartDocNotify) 168 221 T (3 XPEndDocNotify) 168 206 T (4 XPStartP) 168 191 T (ageNotify) 208.12 191 T (5 XPEndP) 168 176 T (ageNotify) 205.62 176 T (detail) 306.56 251 T (2) 114 163 T (CARD16) 168 163 T (sequence number) 306.56 163 T (4) 114 150 T (PCONTEXT) 168 150 T (conte) 306.56 150 T (xt) 325.92 150 T (1) 114 137 T (BOOL) 168 137 T (cancel) 306.56 137 T (23) 114 124 T (unused) 306.56 124 T 0 0 0 1 0 0 0 K FMENDPAGE %%EndPage: "31" 35 %%Page: "32" 36 612 792 0 FMBEGINPAGE [0 0 0 1 0 0 0] [ 0 1 1 0 1 0 0] [ 1 0 1 0 0 1 0] [ 1 1 0 0 0 0 1] [ 1 0 0 0 0 1 1] [ 0 1 0 0 1 0 1] [ 0 0 1 0 1 1 0] 7 FrameSetSepColors FrameNoSep 0 0 0 1 0 0 0 K 72 36.66 504 47.95 R 7 X 0 0 0 1 0 0 0 K V 1 10 Q 0 X (32) 72 41.28 T (December 15, 1997) 248.71 41.28 T (Protocol Encoding) 429.28 41.28 T 72 54 504 54 2 L 7 X V 0.25 H 2 Z 0 X N 72 740.81 504 756 R 7 X V 0 14 Q 0 X (32) 72 749.33 T (Pr) 393.41 749.33 T (otocol Encoding) 407.93 749.33 T 72 36.66 540 47.95 R 7 X V 1 10 Q 0 X (Release 6.4) 72 41.28 T (X V) 487.23 41.28 T (ersion 11) 503.06 41.28 T 72 54 540 54 2 L 7 X V 0 X N 0 0 0 1 0 0 0 K 0 0 0 1 0 0 0 K 72 63 540 711 R 7 X V 0 12 Q 0 X (Attrib) 108 703 T (uteNotify) 139.75 703 T 0 14 Q (5.3) 72 438.67 T (E) 108 438.67 T (rr) 117.34 438.67 T (or Pr) 129.52 438.67 T (otocol Encoding) 160.75 438.67 T 0 12 Q (B) 108 383 T (adContext) 116 383 T (BadSequence) 108 259 T 1 9 Q (1) 114 662 T (1 + base) 168 662 T (code) 327.62 662 T (1) 114 649 T (1 XPJobAttr) 168 649 T (2 XPDocAttr) 168 634 T (3 XPP) 168 619 T (ageAttr) 191.12 619 T (4 XPPrinterAttr) 168 604 T (5 XPServ) 168 589 T (erAttr) 202.61 589 T (6 XPMediumAttr \050future use\051) 168 574 T (7 XPSpoolerAttr \050future use\051) 168 559 T (detail) 327.62 649 T (2) 114 546 T (CARD16) 168 546 T (sequence number) 327.62 546 T (4) 114 533 T (PCONTEXT) 168 533 T (conte) 327.62 533 T (xt) 346.98 533 T (24) 114 520 T (unused) 327.62 520 T (1) 114 342 T (0) 168 342 T (Error) 306.56 342 T (1) 114 329 T (0 +) 168 329 T ( base) 179.83 329 T (code) 306.56 329 T (2) 114 316 T (CARD16) 168 316 T (sequence number) 306.56 316 T (1) 114 218 T (0) 168 218 T (Error) 306.56 218 T (1) 114 205 T (1 +) 168 205 T ( base) 179.83 205 T (code) 306.56 205 T (2) 114 192 T (CARD16) 168 192 T (sequence number) 306.56 192 T 0 0 0 1 0 0 0 K FMENDPAGE %%EndPage: "32" 36 %%Page: "33" 37 612 792 0 FMBEGINPAGE [0 0 0 1 0 0 0] [ 0 1 1 0 1 0 0] [ 1 0 1 0 0 1 0] [ 1 1 0 0 0 0 1] [ 1 0 0 0 0 1 1] [ 0 1 0 0 1 0 1] [ 0 0 1 0 1 1 0] 7 FrameSetSepColors FrameNoSep 0 0 0 1 0 0 0 K 72 746 540 756 R 7 X 0 0 0 1 0 0 0 K V 0 0 0 1 0 0 0 K 0 14 Q 0 X (33) 72 746.67 T 0 0 0 1 0 0 0 K 0 0 0 1 0 0 0 K 0 0 0 1 0 0 0 K 0 0 0 1 0 0 0 K (Index) 505.77 746.67 T 0 0 0 1 0 0 0 K 72 33.32 540 43.32 R 7 X V 0 0 0 1 0 0 0 K 0 0 0 1 0 0 0 K 72 72 540 720 R V 0 12 Q 0 X (A) 72 712 T 0 0 0 1 0 0 0 K 1 10 Q (AttributeNotify, encoding) 72 692.33 T 1 12 Q ( 32) 175.88 692.33 T 0 0 0 1 0 0 0 K 0 0 0 1 0 0 0 K 1 10 Q (attributes) 72 680.33 T 1 12 Q ( 13\32019) 109.22 680.33 T 0 0 0 1 0 0 0 K 0 0 0 1 0 0 0 K 1 10 Q (defaults) 90 668.33 T 1 12 Q ( 13) 121.66 668.33 T 0 0 0 1 0 0 0 K 0 0 0 1 0 0 0 K 1 10 Q (document) 90 656.33 T 1 12 Q ( 17) 129.44 656.33 T 0 0 0 1 0 0 0 K 0 0 0 1 0 0 0 K 1 10 Q (job) 90 644.33 T 1 12 Q ( 17) 102.78 644.33 T 0 0 0 1 0 0 0 K 0 0 0 1 0 0 0 K 1 10 Q (page) 90 632.33 T 1 12 Q ( 18) 108.88 632.33 T 0 0 0 1 0 0 0 K 0 0 0 1 0 0 0 K 1 10 Q (printer) 90 620.33 T 1 12 Q ( 14) 116.66 620.33 T 0 0 0 1 0 0 0 K 0 0 0 1 0 0 0 K 1 10 Q (server) 90 608.33 T 1 12 Q ( 14) 114.43 608.33 T 0 0 0 1 0 0 0 K 0 0 0 1 0 0 0 K 1 10 Q (validating) 90 596.33 T 1 12 Q ( 14) 130 596.33 T 0 0 0 1 0 0 0 K 0 F (B) 72 569 T 0 0 0 1 0 0 0 K 1 10 Q (BadContext, encoding) 72 549.33 T 1 12 Q ( 32) 161.44 549.33 T 0 0 0 1 0 0 0 K 0 0 0 1 0 0 0 K 1 10 Q (BadSequence, encoding) 72 537.33 T 1 12 Q ( 32) 168.09 537.33 T 0 0 0 1 0 0 0 K 0 F (C) 72 510 T 0 0 0 1 0 0 0 K 1 10 Q (content-orientation) 72 490.33 T 1 12 Q ( 18, 19) 148.1 490.33 T 0 0 0 1 0 0 0 K 0 0 0 1 0 0 0 K 1 10 Q (content-orientations-supported) 72 478.33 T 1 12 Q ( 15) 194.76 478.33 T 0 0 0 1 0 0 0 K 0 0 0 1 0 0 0 K 1 10 Q (copy-count) 72 466.33 T 1 12 Q ( 18) 116.99 466.33 T 0 0 0 1 0 0 0 K 0 F (D) 72 439 T 0 0 0 1 0 0 0 K 1 10 Q (default-input-tray) 72 419.33 T 1 12 Q ( 18, 19) 142.54 419.33 T 0 0 0 1 0 0 0 K 0 0 0 1 0 0 0 K 1 10 Q (default-medium) 72 407.33 T 1 12 Q ( 18, 19) 135.88 407.33 T 0 0 0 1 0 0 0 K 0 0 0 1 0 0 0 K 1 10 Q (default-printer-resolution) 72 395.33 T 1 12 Q ( 18, 19) 173.09 395.33 T 0 0 0 1 0 0 0 K 0 0 0 1 0 0 0 K 1 10 Q (defaults, attributes) 72 383.33 T 1 12 Q ( 13) 145.88 383.33 T 0 0 0 1 0 0 0 K 0 0 0 1 0 0 0 K 1 10 Q (descriptor) 72 371.33 T 1 12 Q ( 15) 111.99 371.33 T 0 0 0 1 0 0 0 K 0 0 0 1 0 0 0 K 1 10 Q (document attributes) 72 359.33 T 1 12 Q ( 17) 151.16 359.33 T 0 0 0 1 0 0 0 K 0 0 0 1 0 0 0 K 1 10 Q (document-attributes-supported) 72 347.33 T 1 12 Q ( 15) 194.76 347.33 T 0 0 0 1 0 0 0 K 0 0 0 1 0 0 0 K 1 10 Q (document-format) 72 335.33 T 1 12 Q ( 18) 141.43 335.33 T 0 0 0 1 0 0 0 K 0 0 0 1 0 0 0 K 1 10 Q (document-formats-supported) 72 323.33 T 1 12 Q ( 15) 188.09 323.33 T 0 0 0 1 0 0 0 K 0 F (E) 72 296 T 0 0 0 1 0 0 0 K 1 10 Q (errors) 72 276.33 T 1 12 Q ( 2) 95.32 276.33 T 0 0 0 1 0 0 0 K 0 F (I) 72 249 T 0 0 0 1 0 0 0 K 1 10 Q (input-trays-medium) 72 229.33 T 1 12 Q ( 15) 151.44 229.33 T 0 0 0 1 0 0 0 K 0 F (J) 72 202 T 0 0 0 1 0 0 0 K 1 10 Q (job attributes) 72 182.33 T 1 12 Q ( 17) 124.5 182.33 T 0 0 0 1 0 0 0 K 0 0 0 1 0 0 0 K 1 10 Q (job-attributes-supported) 72 170.33 T 1 12 Q ( 15) 168.1 170.33 T 0 0 0 1 0 0 0 K 0 0 0 1 0 0 0 K 1 10 Q (job-name) 72 158.33 T 1 12 Q ( 17) 109.77 158.33 T 0 0 0 1 0 0 0 K 0 0 0 1 0 0 0 K 1 10 Q (job-owner) 72 146.33 T 1 12 Q ( 17) 113.1 146.33 T 0 0 0 1 0 0 0 K 0 F (L) 72 119 T 0 0 0 1 0 0 0 K 1 10 Q (locale, attribute) 72 99.33 T 1 12 Q ( 14) 134.21 99.33 T 0 0 0 1 0 0 0 K 0 F (M) 315 712 T 0 0 0 1 0 0 0 K 1 10 Q (medium-source-sizes-supported) 315 692.33 T 1 12 Q ( 15) 442.75 692.33 T 0 0 0 1 0 0 0 K 0 0 0 1 0 0 0 K 1 10 Q (multiple-documents-supported) 315 680.33 T 1 12 Q ( 14) 437.77 680.33 T 0 0 0 1 0 0 0 K 0 F (N) 315 653 T 0 0 0 1 0 0 0 K 1 10 Q (notification-profile) 315 633.33 T 1 12 Q ( 17) 391.1 633.33 T 0 0 0 1 0 0 0 K 0 F (P) 315 606 T 0 0 0 1 0 0 0 K 1 10 Q (page attributes) 315 586.33 T 1 12 Q ( 18) 373.6 586.33 T 0 0 0 1 0 0 0 K 0 0 0 1 0 0 0 K 1 10 Q (PCONTEXT, type) 315 574.33 T 1 12 Q ( 2) 389.44 574.33 T 0 0 0 1 0 0 0 K 0 0 0 1 0 0 0 K 1 10 Q (plex) 315 562.33 T 1 12 Q ( 18, 19) 332.22 562.33 T 0 0 0 1 0 0 0 K 0 0 0 1 0 0 0 K 1 10 Q (plexes-supported) 315 550.33 T 1 12 Q ( 16) 383.32 550.33 T 0 0 0 1 0 0 0 K 0 0 0 1 0 0 0 K 1 10 Q (Print Dialog Manager, communicating with) 315 538.33 T 1 12 Q ( 20) 489.71 538.33 T 0 0 0 1 0 0 0 K 0 0 0 1 0 0 0 K 1 10 Q (PrintCreateContext) 315 526.33 T 0 0 0 1 0 0 0 K 0 0 0 1 0 0 0 K (encoding) 333 514.33 T 1 12 Q ( 23) 369.66 514.33 T 0 0 0 1 0 0 0 K 0 0 0 1 0 0 0 K 1 10 Q (request) 333 502.33 T 1 12 Q ( 2) 361.88 502.33 T 0 0 0 1 0 0 0 K 0 0 0 1 0 0 0 K 1 10 Q (PrintDestroyContext) 315 490.33 T 0 0 0 1 0 0 0 K 0 0 0 1 0 0 0 K (encoding) 333 478.33 T 1 12 Q ( 24) 369.66 478.33 T 0 0 0 1 0 0 0 K 0 0 0 1 0 0 0 K 1 10 Q (request) 333 466.33 T 1 12 Q ( 3) 361.88 466.33 T 0 0 0 1 0 0 0 K 0 0 0 1 0 0 0 K 1 10 Q (PrintEndDoc) 315 454.33 T 0 0 0 1 0 0 0 K 0 0 0 1 0 0 0 K (encoding) 333 442.33 T 1 12 Q ( 26) 369.66 442.33 T 0 0 0 1 0 0 0 K 0 0 0 1 0 0 0 K 1 10 Q (request) 333 430.33 T 1 12 Q ( 6) 361.88 430.33 T 0 0 0 1 0 0 0 K 0 0 0 1 0 0 0 K 1 10 Q (PrintEndJob) 315 418.33 T 0 0 0 1 0 0 0 K 0 0 0 1 0 0 0 K (encoding) 333 406.33 T 1 12 Q ( 25) 369.66 406.33 T 0 0 0 1 0 0 0 K 0 0 0 1 0 0 0 K 1 10 Q (request) 333 394.33 T 1 12 Q ( 4) 361.88 394.33 T 0 0 0 1 0 0 0 K 0 0 0 1 0 0 0 K 1 10 Q (PrintEndPage) 315 382.33 T 0 0 0 1 0 0 0 K 0 0 0 1 0 0 0 K (encoding) 333 370.33 T 1 12 Q ( 27) 369.66 370.33 T 0 0 0 1 0 0 0 K 0 0 0 1 0 0 0 K 1 10 Q (request) 333 358.33 T 1 12 Q ( 7) 361.88 358.33 T 0 0 0 1 0 0 0 K 0 0 0 1 0 0 0 K 1 10 Q (printer attributes) 315 346.33 T 1 12 Q ( 14) 381.38 346.33 T 0 0 0 1 0 0 0 K 0 0 0 1 0 0 0 K 1 10 Q (printer-model) 315 334.33 T 1 12 Q ( 16) 369.99 334.33 T 0 0 0 1 0 0 0 K 0 0 0 1 0 0 0 K 1 10 Q (printer-name) 315 322.33 T 1 12 Q ( 16) 366.65 322.33 T 0 0 0 1 0 0 0 K 0 0 0 1 0 0 0 K 1 10 Q (printer-resolutions-supported) 315 310.33 T 1 12 Q ( 16) 431.65 310.33 T 0 0 0 1 0 0 0 K 0 0 0 1 0 0 0 K 1 10 Q (PrintGetAttributes) 315 298.33 T 0 0 0 1 0 0 0 K 0 0 0 1 0 0 0 K (encoding) 333 286.33 T 1 12 Q ( 28) 369.66 286.33 T 0 0 0 1 0 0 0 K 0 0 0 1 0 0 0 K 1 10 Q (request) 333 274.33 T 1 12 Q ( 9) 361.88 274.33 T 0 0 0 1 0 0 0 K 0 0 0 1 0 0 0 K 1 10 Q (PrintGetContext) 315 262.33 T 0 0 0 1 0 0 0 K 0 0 0 1 0 0 0 K (encoding) 333 250.33 T 1 12 Q ( 24) 369.66 250.33 T 0 0 0 1 0 0 0 K 0 0 0 1 0 0 0 K 1 10 Q (request) 333 238.33 T 1 12 Q ( 3) 361.88 238.33 T 0 0 0 1 0 0 0 K 0 0 0 1 0 0 0 K 1 10 Q (PrintGetDocumentData) 315 226.33 T 0 0 0 1 0 0 0 K 0 0 0 1 0 0 0 K (encoding) 333 214.33 T 1 12 Q ( 26) 369.66 214.33 T 0 0 0 1 0 0 0 K 0 0 0 1 0 0 0 K 1 10 Q (request) 333 202.33 T 1 12 Q ( 5) 361.88 202.33 T 0 0 0 1 0 0 0 K 0 0 0 1 0 0 0 K 1 10 Q (PrintGetImageResolution) 315 190.33 T 0 0 0 1 0 0 0 K 0 0 0 1 0 0 0 K (encoding) 333 178.33 T 1 12 Q ( 31) 369.66 178.33 T 0 0 0 1 0 0 0 K 0 0 0 1 0 0 0 K 1 10 Q (request) 333 166.33 T 1 12 Q ( 11) 361.88 166.33 T 0 0 0 1 0 0 0 K 0 0 0 1 0 0 0 K 1 10 Q (PrintGetOneAttribute) 315 154.33 T 0 0 0 1 0 0 0 K 0 0 0 1 0 0 0 K (encoding) 333 142.33 T 1 12 Q ( 28) 369.66 142.33 T 0 0 0 1 0 0 0 K 0 0 0 1 0 0 0 K 1 10 Q (request) 333 130.33 T 1 12 Q ( 9) 361.88 130.33 T 0 0 0 1 0 0 0 K 0 0 0 1 0 0 0 K 1 10 Q (PrintGetPageDimensions) 315 118.33 T 0 0 0 1 0 0 0 K 0 0 0 1 0 0 0 K (encoding) 333 106.33 T 1 12 Q ( 29) 369.66 106.33 T 0 0 0 1 0 0 0 K 0 0 0 1 0 0 0 K 1 10 Q (request) 333 94.33 T 1 12 Q ( 8) 361.88 94.33 T 0 0 0 1 0 0 0 K 0 0 0 1 0 0 0 K 1 10 Q (PrintGetPrinterList) 315 82.33 T 0 0 0 1 0 0 0 K 0 0 0 1 0 0 0 K FMENDPAGE %%EndPage: "33" 37 %%Page: "34" 38 612 792 0 FMBEGINPAGE [0 0 0 1 0 0 0] [ 0 1 1 0 1 0 0] [ 1 0 1 0 0 1 0] [ 1 1 0 0 0 0 1] [ 1 0 0 0 0 1 1] [ 0 1 0 0 1 0 1] [ 0 0 1 0 1 1 0] 7 FrameSetSepColors FrameNoSep 0 0 0 1 0 0 0 K 72 746 540 756 R 7 X 0 0 0 1 0 0 0 K V 0 0 0 1 0 0 0 K 0 14 Q 0 X (Index) 72 746.67 T 0 0 0 1 0 0 0 K 0 0 0 1 0 0 0 K 0 0 0 1 0 0 0 K 0 0 0 1 0 0 0 K (34) 526 746.67 T 0 0 0 1 0 0 0 K 72 33.32 540 43.32 R 7 X V 0 0 0 1 0 0 0 K 0 0 0 1 0 0 0 K 72 72 540 720 R V 0 0 0 1 0 0 0 K 1 10 Q 0 X (encoding) 90 713.33 T 1 12 Q ( 22) 126.66 713.33 T 0 0 0 1 0 0 0 K 0 0 0 1 0 0 0 K 1 10 Q (request) 90 701.33 T 1 12 Q ( 3) 118.88 701.33 T 0 0 0 1 0 0 0 K 0 0 0 1 0 0 0 K 1 10 Q (PrintGetScreenOfContext) 72 689.33 T 0 0 0 1 0 0 0 K 0 0 0 1 0 0 0 K (encoding) 90 677.33 T 1 12 Q ( 24) 126.66 677.33 T 0 0 0 1 0 0 0 K 0 0 0 1 0 0 0 K 1 10 Q (request) 90 665.33 T 1 12 Q ( 4) 118.88 665.33 T 0 0 0 1 0 0 0 K 0 0 0 1 0 0 0 K 1 10 Q (PrintInputSelected) 72 653.33 T 0 0 0 1 0 0 0 K 0 0 0 1 0 0 0 K (encoding) 90 641.33 T 1 12 Q ( 27) 126.66 641.33 T 0 0 0 1 0 0 0 K 0 0 0 1 0 0 0 K 1 10 Q (request) 90 629.33 T 1 12 Q ( 8) 118.88 629.33 T 0 0 0 1 0 0 0 K 0 0 0 1 0 0 0 K 1 10 Q (PrintNotify, encoding) 72 617.33 T 1 12 Q ( 31) 159.22 617.33 T 0 0 0 1 0 0 0 K 0 0 0 1 0 0 0 K 1 10 Q (PrintPutDocumentData) 72 605.33 T 0 0 0 1 0 0 0 K 0 0 0 1 0 0 0 K (encoding) 90 593.33 T 1 12 Q ( 26) 126.66 593.33 T 0 0 0 1 0 0 0 K 0 0 0 1 0 0 0 K 1 10 Q (request) 90 581.33 T 1 12 Q ( 5) 118.88 581.33 T 0 0 0 1 0 0 0 K 0 0 0 1 0 0 0 K 1 10 Q (PrintQueryScreens) 72 569.33 T 0 0 0 1 0 0 0 K 0 0 0 1 0 0 0 K (encoding) 90 557.33 T 1 12 Q ( 30) 126.66 557.33 T 0 0 0 1 0 0 0 K 0 0 0 1 0 0 0 K 1 10 Q (request) 90 545.33 T 1 12 Q ( 10) 118.88 545.33 T 0 0 0 1 0 0 0 K 0 0 0 1 0 0 0 K 1 10 Q (PrintQueryVersion) 72 533.33 T 0 0 0 1 0 0 0 K 0 0 0 1 0 0 0 K (encoding) 90 521.33 T 1 12 Q ( 22) 126.66 521.33 T 0 0 0 1 0 0 0 K 0 0 0 1 0 0 0 K 1 10 Q (request) 90 509.33 T 1 12 Q ( 10) 118.88 509.33 T 0 0 0 1 0 0 0 K 0 0 0 1 0 0 0 K 1 10 Q (PrintRehashPrinterList) 72 497.33 T 0 0 0 1 0 0 0 K 0 0 0 1 0 0 0 K (encoding) 90 485.33 T 1 12 Q ( 23) 126.66 485.33 T 0 0 0 1 0 0 0 K 0 0 0 1 0 0 0 K 1 10 Q (request) 90 473.33 T 1 12 Q ( 10) 118.88 473.33 T 0 0 0 1 0 0 0 K 0 0 0 1 0 0 0 K 1 10 Q (PrintSelectInput) 72 461.33 T 0 0 0 1 0 0 0 K 0 0 0 1 0 0 0 K (encoding) 90 449.33 T 1 12 Q ( 27) 126.66 449.33 T 0 0 0 1 0 0 0 K 0 0 0 1 0 0 0 K 1 10 Q (request) 90 437.33 T 1 12 Q ( 8) 118.88 437.33 T 0 0 0 1 0 0 0 K 0 0 0 1 0 0 0 K 1 10 Q (PrintSetAttributes) 72 425.33 T 0 0 0 1 0 0 0 K 0 0 0 1 0 0 0 K (encoding) 90 413.33 T 1 12 Q ( 29) 126.66 413.33 T 0 0 0 1 0 0 0 K 0 0 0 1 0 0 0 K 1 10 Q (request) 90 401.33 T 1 12 Q ( 9, 10) 118.88 401.33 T 0 0 0 1 0 0 0 K 0 0 0 1 0 0 0 K 1 10 Q (PrintSetContext) 72 389.33 T 0 0 0 1 0 0 0 K 0 0 0 1 0 0 0 K (encoding) 90 377.33 T 1 12 Q ( 24) 126.66 377.33 T 0 0 0 1 0 0 0 K 0 0 0 1 0 0 0 K 1 10 Q (request) 90 365.33 T 1 12 Q ( 3) 118.88 365.33 T 0 0 0 1 0 0 0 K 0 0 0 1 0 0 0 K 1 10 Q (PrintSetImageResolution) 72 353.33 T 0 0 0 1 0 0 0 K 0 0 0 1 0 0 0 K (encoding) 90 341.33 T 1 12 Q ( 30) 126.66 341.33 T 0 0 0 1 0 0 0 K 0 0 0 1 0 0 0 K 1 10 Q (request) 90 329.33 T 1 12 Q ( 10) 118.88 329.33 T 0 0 0 1 0 0 0 K 0 0 0 1 0 0 0 K 1 10 Q (PrintStartDoc) 72 317.33 T 0 0 0 1 0 0 0 K 0 0 0 1 0 0 0 K (encoding) 90 305.33 T 1 12 Q ( 25) 126.66 305.33 T 0 0 0 1 0 0 0 K 0 0 0 1 0 0 0 K 1 10 Q (request) 90 293.33 T 1 12 Q ( 6) 118.88 293.33 T 0 0 0 1 0 0 0 K 0 0 0 1 0 0 0 K 1 10 Q (PrintStartJob) 72 281.33 T 0 0 0 1 0 0 0 K 0 0 0 1 0 0 0 K (encoding) 90 269.33 T 1 12 Q ( 25) 126.66 269.33 T 0 0 0 1 0 0 0 K 0 0 0 1 0 0 0 K 1 10 Q (request) 90 257.33 T 1 12 Q ( 4) 118.88 257.33 T 0 0 0 1 0 0 0 K 0 0 0 1 0 0 0 K 1 10 Q (PrintStartPage) 72 245.33 T 0 0 0 1 0 0 0 K 0 0 0 1 0 0 0 K (encoding) 90 233.33 T 1 12 Q ( 27) 126.66 233.33 T 0 0 0 1 0 0 0 K 0 0 0 1 0 0 0 K 1 10 Q (request) 90 221.33 T 1 12 Q ( 7) 118.88 221.33 T 0 0 0 1 0 0 0 K 0 F (S) 72 194 T 0 0 0 1 0 0 0 K 1 10 Q (server attributes) 72 174.33 T 1 12 Q ( 14) 136.15 174.33 T 0 0 0 1 0 0 0 K 0 F (V) 72 147 T 0 0 0 1 0 0 0 K 1 10 Q (validating attributes) 72 127.33 T 1 12 Q ( 14) 151.72 127.33 T 0 0 0 1 0 0 0 K 0 F (X) 72 100 T 0 0 0 1 0 0 0 K 1 10 Q (XPAttributeNotify) 72 80.33 T 0 0 0 1 0 0 0 K 0 0 0 1 0 0 0 K (event) 333 713.33 T 1 12 Q ( 12) 354.66 713.33 T 0 0 0 1 0 0 0 K 0 0 0 1 0 0 0 K 1 10 Q (XPBadContext, error description) 315 701.33 T 1 12 Q ( 2) 446.93 701.33 T 0 0 0 1 0 0 0 K 0 0 0 1 0 0 0 K 1 10 Q (XPBadSequence, error description) 315 689.33 T 1 12 Q ( 2) 453.58 689.33 T 0 0 0 1 0 0 0 K 0 0 0 1 0 0 0 K 1 10 Q (xp-embedded-formats-supported) 315 677.33 T 1 12 Q ( 16) 446.08 677.33 T 0 0 0 1 0 0 0 K 0 0 0 1 0 0 0 K 1 10 Q (xp-listfonts-modes) 315 665.33 T 1 12 Q ( 18, 19) 390 665.33 T 0 0 0 1 0 0 0 K 0 0 0 1 0 0 0 K 1 10 Q (xp-listfonts-modes-supported) 315 653.33 T 1 12 Q ( 16) 432.77 653.33 T 0 0 0 1 0 0 0 K 0 0 0 1 0 0 0 K 1 10 Q (xp-page-attributes-supported) 315 641.33 T 1 12 Q ( 16) 430.53 641.33 T 0 0 0 1 0 0 0 K 0 0 0 1 0 0 0 K 1 10 Q (XPPrintNotify) 315 629.33 T 0 0 0 1 0 0 0 K 0 0 0 1 0 0 0 K (event) 333 617.33 T 1 12 Q ( 11) 354.66 617.33 T 0 0 0 1 0 0 0 K 0 0 0 1 0 0 0 K 1 10 Q (xp-raw-formats-supported) 315 605.33 T 1 12 Q ( 16) 419.97 605.33 T 0 0 0 1 0 0 0 K 0 0 0 1 0 0 0 K 1 10 Q (xp-setup-proviso) 315 593.33 T 1 12 Q ( 17) 382.77 593.33 T 0 0 0 1 0 0 0 K 0 0 0 1 0 0 0 K 1 10 Q (xp-setup-state) 315 581.33 T 1 12 Q ( 17) 371.1 581.33 T 0 0 0 1 0 0 0 K 0 0 0 1 0 0 0 K 1 10 Q (xp-spooler-command-options) 315 569.33 T 1 12 Q ( 17) 433.32 569.33 T 0 0 0 1 0 0 0 K 0 0 0 1 0 0 0 K 1 10 Q (xp-spooler-command-results) 315 557.33 T 1 12 Q ( 17) 429.98 557.33 T 0 0 0 1 0 0 0 K 0 0 0 1 0 0 0 K FMENDPAGE %%EndPage: "34" 38 %%Trailer %%BoundingBox: 0 0 612 792 %%PageOrder: Ascend %%Pages: 38 %%DocumentFonts: Times-Bold %%+ Times-Roman %%+ Times-Italic %%+ Symbol %%+ Courier %%EOF 0 0 0 1 0 0 0 K 1 10 Q (job-owner) 72 146.33 T 1 12 Q ( 17) 113.1 146.33 Tprintproto-1.0.5/specs/xp_protoTOC.doc000064401431060000012000000460001126616702300202470ustar00alancstaff00002660200007  Aad HH $ @dHHHHff@  d  Footnote TableFootnote**.\t.\t/ - :;,.!? `*Bl&&  a5   EquationVariablesBoldG-.rie/es0tic1Re23 45b6@789:;<=>?-M@-openObjectId xp_proto.mif:2 675.openObjectId xp_proto.mif:2 675/"openObjectId xp_proto.mif:2 7152910"openObjectId xp_proto.mif:2 7152921"openObjectId xp_proto.mif:2 7177052openObjectId xp_proto.mif:2 5253 openObjectId xp_proto.mif:2 11714openObjectId xp_proto.mif:2 4645openObjectId xp_proto.mif:2 9676openObjectId xp_proto.mif:2 9807 openObjectId xp_proto.mif:2 10388o openObjectId xp_proto.mif:2 14009 openObjectId xp_proto.mif:2 1894:& openObjectId xp_proto.mif:2 1612; openObjectId xp_proto.mif:2 1899< openObjectId xp_proto.mif:2 2001= openObjectId xp_proto.mif:2 4445> openObjectId xp_proto.mif:2 3879?e openObjectId xp_proto.mif:2 3990<$lastpagenum><$monthname> <$daynum>, <$year>9"<$monthnum>/<$daynum>/<$shortyear>;<$monthname> <$daynum>, <$year> <$hour>:<$minute00> <$ampm>ro."<$monthnum>/<$daynum>/<$shortyear><$monthname> <$daynum>, <$year>ro."<$monthnum>/<$daynum>/<$shortyear> <$fullfilename> <$filename>ro. <$paratext[Title]> <$paratext[Heading1]> <$curpagenum>d <$marker1> <$marker2> (Continued)+ (Sheet <$tblsheetnum> of <$tblsheetcount>)opHeading & Page <$paratext> on page<$pagenum>Pagepage<$pagenum>oopSee Heading & Page%See <$paratext> on page<$pagenum>..f: Table & Page7Table<$paranumonly>, <$paratext>, on page<$pagenum>xpr Table All7Table<$paranumonly>, <$paratext>, on page<$pagenum>nTable Number & Page5'Table<$paranumonly> on page<$pagenum>8 I Y KOb I 8 8A J < <TOCe M 9 9 N : : O ; @A; P = = Q > > R ? ?A$uu oe>Av  >rBw "hnCx or#y  fu%z  j{ ao./| a[T0}  pa1~ iD uumE  er  er  in Sh e o t) e&  r  a $p pSe  Se x p uf:  7 ay> xn  npr   M A$pad  m : 8 'bld2   I 5 8HH   OHH  N : : 8du; H3R `@3 !  >H3R `@H RH RFootnoteuHq3@ `@4 ! "  >rHq3@ `@HzHz Single Line H'5 " ! . o. - - FootnotepaHUV " #  E HUV  in 9ShUUdy  tH$ $ $  H$ p : UUdz p d? % a < < n d' & a ; ; HH( ' & lHH\  5 ; 8 h{Table of Contents yUUh1Overview1 UUh2Protocols2 duUUhR@2.1 Formats, Syntactic Conventions, and Common Types2 RUUh2.2 Errors2 UUh>r(2.3 X Print Service Requests2 leUUh2.4 Events11 ˪UUh -!3X Print Attributes13 VתUUh 83.1 Attribute Value Defaults And Validation13 㪢UUh"3.2 Server Attributes14 瑱UUh#3.3 Printer Attributes14 HUUh3.4 Job Attributes17 UUh$3.5 Document Attributes17 UUh 3.6 Page Attributes18 $UUh:4Communication with the Print Dialog Manager20 5UUh 5Protocol Encoding22 AUUh*5.1 Request Protocol Encoding22 MUUh(5.2 Event Protocol Encoding31 s YUUh,5.3 Error Protocol Encoding32 HH@ ( % HHBntommon Ty <dE6openObjectId <$relfilename>:<$ObjectType> <$ObjectId> UUd#<$paranum><$paratext><$pagenum> 11%UUdx#<$paranum> <$paratext><$pagenum> 3 V2dw "<$paranum><$paratext><$pagenum> ?UUdv1 d+ ) tib = ? H$ , * ) UUH$  JUU =3.UU`|1 Hw - + ) rutHw  ation wi >iaUU`}UU HH. , ) HH  ding22 ?UUd~ro o  6 - ".   ocoEn   H3D `@7 . " /  H3D `@HH Double Line TyH 8 / . 2 Eop 0 1<$ Double Line$Ob9 0 1 /at11: 1 0 /aram>H ; 2 / 4  3 3t Single Line= ?< 3 2, UUHZ= 4 2 5 | TableFootnotewEGVR `@> 5 4  wEGVR `@EPwEPw TableFootnoted 6  @ @ HH 7 6 HHUU @HH 8 9  HHl   IHUV  9 : 8 HUV l # # MopH$  : 9 bH$ l $ $ N11HH ; &: HHl @ ' ' OHHH < %HHl ( ( J<H$  = > )UH$ l * * PHw  > = ? )wHw l + + QEHH ? > )HHl , , RHH @ 6HHl ; 7 7 O d Leftd )Rightd  ReferenceHd & 8d %TOCd 6 "@  Body. @  Header. @  Footer.   H     h  Body.    H8     h  Bulleted\t. f  CellBody. f   CellHeading. f   Footnote. otf T  Heading1Body. f T  Heading2Body.  P  Hu t    h  HeadingRunInBody.   H     h  Indented. ad   H  o   th  Numbered.\t.  A  H     h  Numbered1.\tNumbered. f   TableFootnote. f T   TableTitleT:Table : . p @ P  TitleBody. @ P  Title2Body. @ P Title3Body. f T   TableTitleT:Table : . f   CellHeading. f  CellBody. f   CellFootingl. @   l Header. @  o  Footer.   +>H    f  h  Body. @   3HeadingTOC. @   3HeadingTOC. @   ActiveTOC. \f P  TitleAuthor.   . .. 1HeadingTOC. H$@  6... 2HeadingTOC.   . .. 1HeadingTOC. H$@  6... 2HeadingTOC. ! ڝ ڝ i_mF  ڝ  ڝ  )  )   Emphasis EquationVariables [            =MB= Thin> Medium ? adiDouble@ $Thick@A  Very Thin =>=====> HH H H H H Format B =========? H H H H H Format A Comment d  BlackT! WhiteddA Redqondd Greendd  Blued Cyand Magentad Yellow Times-RomanMCourier Times-Bold Courier-BoldHelvetica-BoldCourierTimes@ Helveticah RegularRegulare BoldRegularObliqueItalict)j!#ƴN?O$G\+6iv 5U[ߏ;=cA6Dprintproto-1.0.5/README000064401431060000012000000016141150652305700151050ustar00alancstaff00002660200007Xprint extension to the X11 protocol - a portable, network-transparent printing system WARNING: Xprint is no longer actively maintained. This package is mainly provided to allow continued binary compatibility of libraries and applications that link against libXp. All questions regarding this software should be directed at the Xorg mailing list: http://lists.freedesktop.org/mailman/listinfo/xorg Please submit bug reports to the Xorg bugzilla: https://bugs.freedesktop.org/enter_bug.cgi?product=xorg The master development code repository can be found at: git://anongit.freedesktop.org/git/xorg/proto/printproto http://cgit.freedesktop.org/xorg/proto/printproto For patch submission instructions, see: http://www.x.org/wiki/Development/Documentation/SubmittingPatches For more information on the git code manager, see: http://wiki.x.org/wiki/GitPage printproto-1.0.5/Printstr.h000064401431060000012000000571471147227314100162350ustar00alancstaff00002660200007/* $Xorg: Printstr.h,v 1.3 2000/08/18 04:05:44 coskrey Exp $ */ /****************************************************************************** ****************************************************************************** ** ** File: Printstr.h ** ** Description: Definitions needed by the server and library, but ** not clients. ** ** Print.h for server, library and clients. ** ****************************************************************************** ** ** (c) Copyright 1996 Hewlett-Packard Company ** (c) Copyright 1996 International Business Machines Corp. ** (c) Copyright 1996, Oracle and/or its affiliates. All rights reserved. ** (c) Copyright 1996 Novell, Inc. ** (c) Copyright 1996 Digital Equipment Corp. ** (c) Copyright 1996 Fujitsu Limited ** (c) Copyright 1996 Hitachi, Ltd. ** ** Permission is hereby granted, free of charge, to any person obtaining a copy ** of this software and associated documentation files (the "Software"), to deal ** in the Software without restriction, including without limitation the rights ** to use, copy, modify, merge, publish, distribute, sublicense, and/or sell ** copies of the Software, and to permit persons to whom the Software is ** furnished to do so, subject to the following conditions: ** ** The above copyright notice and this permission notice shall be included in ** all copies or substantial portions of the Software. ** ** THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR ** IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, ** FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE ** COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER ** IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN ** CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. ** ** Except as contained in this notice, the names of the copyright holders shall ** not be used in advertising or otherwise to promote the sale, use or other ** dealings in this Software without prior written authorization from said ** copyright holders. ** ****************************************************************************** *****************************************************************************/ /* $XFree86: xc/include/extensions/Printstr.h,v 1.5 2001/08/01 00:44:35 tsi Exp $ */ #ifndef _XpPrintstr_H_ #define _XpPrintstr_H_ /* * NEED_EVENTS and NEED_REPLIES are hacks to limit the linker symbol-table * size. When function prototypes are needed from Print.h, this sets up * a cascading dependency on Printstr.h and eventually Xproto.h to provide * the event and reply struct definitions. */ #ifndef NEED_EVENTS #define NEED_EVENTS #endif /* NEED_EVENTS */ #define NEED_REPLIES #include #ifndef _XP_PRINT_SERVER_ #include #endif /* _XP_PRINT_SERVER_ */ /* * Pull in other definitions. Print.h will hide some things if we're * doing server side work. */ #include #include _XFUNCPROTOBEGIN /****************************************************************************** * * Protocol requests constants and alignment values * * Note: Xlib macro's expect X_ABC where ABC is the name of the * protocol request. */ #define X_PrintQueryVersion 0 #define X_PrintGetPrinterList 1 #define X_PrintCreateContext 2 #define X_PrintSetContext 3 #define X_PrintGetContext 4 #define X_PrintDestroyContext 5 #define X_PrintGetContextScreen 6 #define X_PrintStartJob 7 #define X_PrintEndJob 8 #define X_PrintStartDoc 9 #define X_PrintEndDoc 10 #define X_PrintPutDocumentData 11 #define X_PrintGetDocumentData 12 #define X_PrintStartPage 13 #define X_PrintEndPage 14 #define X_PrintSelectInput 15 #define X_PrintInputSelected 16 #define X_PrintGetAttributes 17 #define X_PrintSetAttributes 18 #define X_PrintGetOneAttribute 19 #define X_PrintRehashPrinterList 20 #define X_PrintGetPageDimensions 21 #define X_PrintQueryScreens 22 #define X_PrintSetImageResolution 23 #define X_PrintGetImageResolution 24 /******************************************************************** * * Protocol data types */ #define PCONTEXT CARD32 #define WINDOW CARD32 #define DRAWABLE CARD32 #define BITMASK CARD32 /****************************************************************************** * * Event wire struct definitions * * Note: Xlib macro's expect xABC struct names and sz_xABC size * constants where ABC is the name of the protocol request. */ /********************************************************************* * * Events. * * See Print.h for the protocol "type" values. */ typedef struct _xPrintPrintEvent { BYTE type; /* XPPrintNotify + extEntry->eventBase */ BYTE detail; /* XPStartJobNotify, XPEndJobNotify, XPStartDocNotify, XPEndDocNotify, XPStartPageNotify, XPEndPageNotify */ CARD16 sequenceNumber B16; PCONTEXT printContext B32; /* print context */ BOOL cancel; /* canceled flag */ CARD8 pad1; /* rest is unused */ CARD16 pad2 B16; CARD32 pad3 B32; CARD32 pad4 B32; CARD32 pad5 B32; CARD32 pad6 B32; CARD32 pad7 B32; } xPrintPrintEvent; #define sz_xPrintPrintEvent 32; typedef struct _xPrintAttributeEvent { BYTE type; /* XPAttributeNotify + extEntry->eventBase */ BYTE detail; /* XPJobAttr, XPDocAttr, XPPageAttr, XPPrinterAttr, XPSpoolerAttr, XPMediumAttr, XPServerAttr */ CARD16 sequenceNumber B16; PCONTEXT printContext B32; /* print context */ CARD32 pad1 B32; CARD32 pad2 B32; CARD32 pad3 B32; CARD32 pad4 B32; CARD32 pad5 B32; CARD32 pad6 B32; } xPrintAttributeEvent; #define sz_xPrintAttributeEvent 32; /********************************************************************* * * Requests */ typedef struct _PrintQueryVersion { CARD8 reqType; /* always PrintReqCode */ CARD8 printReqType; /* always X_PrintQueryVersion */ CARD16 length B16; } xPrintQueryVersionReq; #define sz_xPrintQueryVersionReq 4 typedef struct { BYTE type; /* X_Reply */ CARD8 unused; /* not used */ CARD16 sequenceNumber B16; CARD32 length B32; CARD16 majorVersion B16; /* major version of Xp protocol */ CARD16 minorVersion B16; /* minor version of Xp protocol */ CARD32 pad1 B32; CARD32 pad2 B32; CARD32 pad3 B32; CARD32 pad4 B32; CARD32 pad5 B32; } xPrintQueryVersionReply; #define sz_xPrintQueryVersionReply 32 typedef struct _PrintGetPrinterList { CARD8 reqType; /* always PrintReqCode */ CARD8 printReqType; /* always X_PrintGetPrinterList */ CARD16 length B16; CARD32 printerNameLen B32; /* length of printer name */ CARD32 localeLen B32; /* length of locale string */ /* variable portion ***************************************** STRING8 printerName; * printer name * BYTE pad(printerNameLen) * unused * STRING8 locale; * locale * BYTE pad(localeLen) * unused * ************************************************************/ } xPrintGetPrinterListReq; #define sz_xPrintGetPrinterListReq 12 typedef struct { BYTE type; /* X_Reply */ CARD8 unused; /* not used */ CARD16 sequenceNumber B16; CARD32 length B32; CARD32 listCount B32; /* of PRINTER recs below */ CARD32 pad1 B32; CARD32 pad2 B32; CARD32 pad3 B32; CARD32 pad4 B32; CARD32 pad5 B32; /* variable portion ***************************************** CARD32 nameLen B32; * length of name in bytes * STRING8 name; * name * BYTE pad(nameLen) * unused * CARD32 descLen B32; * length of desc in bytes * STRING8 desc; * localized description * BYTE pad(descLen) * unused * ************************************************************/ } xPrintGetPrinterListReply; #define sz_xPrintGetPrinterListReply 32 typedef struct _PrintRehashPrinterList { CARD8 reqType; /* always PrintReqCode */ CARD8 printReqType; /* always X_PrintRehashPrinterList */ CARD16 length B16; } xPrintRehashPrinterListReq; #define sz_xPrintRehashPrinterListReq 4 typedef struct _PrintCreateContext { CARD8 reqType; /* always PrintReqCode */ CARD8 printReqType; /* always X_PrintInitSetContext */ CARD16 length B16; CARD32 contextID B32; /* ID for context */ CARD32 printerNameLen B32; /* length of printerName in bytes */ CARD32 localeLen B32; /* length of locale in bytes */ /* variable portion ***************************************** STRING8 printerName * printer name * BYTE pad(printerNameLen) * unused * STRING8 locale * locale * BYTE pad(locale) * unused * ************************************************************/ } xPrintCreateContextReq; #define sz_xPrintCreateContextReq 16 typedef struct _PrintSetContext { CARD8 reqType; /* always PrintReqCode */ CARD8 printReqType; /* always X_PrintSetContext */ CARD16 length B16; PCONTEXT printContext B32; /* print context */ } xPrintSetContextReq; #define sz_xPrintSetContextReq 8 typedef struct _PrintGetContext { CARD8 reqType; /* always PrintReqCode */ CARD8 printReqType; /* always X_PrintGetContext */ CARD16 length B16; } xPrintGetContextReq; #define sz_xPrintGetContextReq 4 typedef struct { BYTE type; /* X_Reply */ CARD8 unused; /* not used */ CARD16 sequenceNumber B16; CARD32 length B32; PCONTEXT printContext B32; /* print context */ CARD32 pad1 B32; CARD32 pad2 B32; CARD32 pad3 B32; CARD32 pad4 B32; CARD32 pad5 B32; } xPrintGetContextReply; #define sz_xPrintGetContextReply 32 typedef struct _PrintDestroyContext { CARD8 reqType; /* always PrintReqCode */ CARD8 printReqType; /* always X_PrintDestroyContext */ CARD16 length B16; PCONTEXT printContext B32; /* print context */ } xPrintDestroyContextReq; #define sz_xPrintDestroyContextReq 8 typedef struct _PrintGetContextScreen { CARD8 reqType; /* always PrintReqCode */ CARD8 printReqType; /* always X_PrintGetContextScreen */ CARD16 length B16; PCONTEXT printContext B32; /* print context */ } xPrintGetContextScreenReq; #define sz_xPrintGetContextScreenReq 8 typedef struct { BYTE type; /* X_Reply */ CARD8 unused; /* not used */ CARD16 sequenceNumber B16; CARD32 length B32; WINDOW rootWindow; /* screenPtr represented as rootWin */ CARD32 pad1 B32; CARD32 pad2 B32; CARD32 pad3 B32; CARD32 pad4 B32; CARD32 pad5 B32; } xPrintGetContextScreenReply; #define sz_xPrintGetContextScreenReply 32 typedef struct _PrintStartJob { CARD8 reqType; /* always PrintReqCode */ CARD8 printReqType; /* always X_PrintStartJob */ CARD16 length B16; CARD8 saveData; /* save data boolean */ CARD8 pad1; CARD16 pad2 B16; } xPrintStartJobReq; #define sz_xPrintStartJobReq 8 typedef struct _PrintEndJob { CARD8 reqType; /* always PrintReqCode */ CARD8 printReqType; /* always X_PrintEndJob */ CARD16 length B16; BOOL cancel; /* cancel boolean */ CARD8 pad1; CARD16 pad2 B16; } xPrintEndJobReq; #define sz_xPrintEndJobReq 8 typedef struct _PrintStartDoc { CARD8 reqType; /* always PrintReqCode */ CARD8 printReqType; /* always X_PrintStartDoc */ CARD16 length B16; CARD8 type; /* type for document */ CARD8 pad1; CARD16 pad2 B16; } xPrintStartDocReq; #define sz_xPrintStartDocReq 8 typedef struct _PrintEndDoc { CARD8 reqType; /* always PrintReqCode */ CARD8 printReqType; /* always X_PrintEndDoc */ CARD16 length B16; BOOL cancel; /* cancel boolean */ CARD8 pad1; CARD16 pad2 B16; } xPrintEndDocReq; #define sz_xPrintEndDocReq 8 typedef struct _PrintPutDocumentData { CARD8 reqType; /* always PrintReqCode */ CARD8 printReqType; /* always X_PrintPutDocumentData */ CARD16 length B16; DRAWABLE drawable B32; /* target drawable */ CARD32 len_data B32; /* big len in bytes */ CARD16 len_fmt; /* len in bytes */ CARD16 len_options; /* len in bytes */ /* variable portion ***************************************** LISTofBYTE data; * data * BYTE pad(len_data) * unused * STRING8 doc_fmt; * ISO compliant desc of data type * BYTE pad(len_fmt) * unused * STRING8 options; * additional device-dependent desc * BYTE pad(len_options) * unused * ************************************************************/ } xPrintPutDocumentDataReq; #define sz_xPrintPutDocumentDataReq 16 typedef struct _PrintGetDocumentData { CARD8 reqType; /* always PrintReqCode */ CARD8 printReqType; /* always X_PrintGetDocumentData */ CARD16 length B16; PCONTEXT printContext B32; /* print context */ CARD32 maxBufferSize B32; /* maximum buffer size requested */ } xPrintGetDocumentDataReq; #define sz_xPrintGetDocumentDataReq 12 typedef struct { BYTE type; /* X_Reply */ CARD8 unused; /* not used */ CARD16 sequenceNumber B16; CARD32 length B32; CARD32 statusCode B32; /* status code for reply */ CARD32 finishedFlag B32; /* is this the last reply */ CARD32 dataLen B32; /* data length */ CARD32 pad1 B32; CARD32 pad2 B32; CARD32 pad3 B32; /* variable portion ***************************************** LISTofBYTE data; * data * BYTE pad(count) * unused * ************************************************************/ } xPrintGetDocumentDataReply; #define sz_xPrintGetDocumentDataReply 32 typedef struct _PrintStartPage { CARD8 reqType; /* always PrintReqCode */ CARD8 printReqType; /* always X_PrintStartPage */ CARD16 length B16; WINDOW window B32; /* window */ } xPrintStartPageReq; #define sz_xPrintStartPageReq 8 typedef struct _PrintEndPage { CARD8 reqType; /* always PrintReqCode */ CARD8 printReqType; /* always X_PrintEndPage */ CARD16 length B16; BOOL cancel; /* cancel boolean */ CARD8 pad1; CARD16 pad2 B16; } xPrintEndPageReq; #define sz_xPrintEndPageReq 8 typedef struct _PrintSelectInput { CARD8 reqType; /* always PrintReqCode */ CARD8 printReqType; /* always X_PrintSelectInput */ CARD16 length B16; PCONTEXT printContext B32; /* print context */ BITMASK eventMask B32; } xPrintSelectInputReq; #define sz_xPrintSelectInputReq 12 typedef struct _PrintInputSelected { CARD8 reqType; /* always PrintReqCode */ CARD8 printReqType; /* always X_PrintInputSelected */ CARD16 length B16; PCONTEXT printContext B32; /* print context */ } xPrintInputSelectedReq; #define sz_xPrintInputSelectedReq 8 typedef struct { BYTE type; /* X_Reply */ CARD8 unused; /* not used */ CARD16 sequenceNumber B16; CARD32 length B32; BITMASK eventMask B32; /* your event mask */ BITMASK allEventsMask B32; /* all event mask */ CARD32 pad1 B32; CARD32 pad2 B32; CARD32 pad3 B32; CARD32 pad4 B32; } xPrintInputSelectedReply; #define sz_xPrintInputSelectedReply 32 typedef struct _PrintGetAttributes { CARD8 reqType; /* always PrintReqCode */ CARD8 printReqType; /* always X_PrintGetAttributes */ CARD16 length B16; PCONTEXT printContext B32; /* print context */ CARD8 type; /* type */ CARD8 pad1; /* unused */ CARD16 pad2 B16; /* unused */ } xPrintGetAttributesReq; #define sz_xPrintGetAttributesReq 12 typedef struct { BYTE type; /* X_Reply */ CARD8 unused; /* not used */ CARD16 sequenceNumber B16; CARD32 length B32; CARD32 stringLen B32; /* length of xrm db string */ CARD32 pad1 B32; CARD32 pad2 B32; CARD32 pad3 B32; CARD32 pad4 B32; CARD32 pad5 B32; /* variable portion ***************************************** STRING8 string; * xrm db as a string * BYTE pad(stringLen) * unused * ************************************************************/ } xPrintGetAttributesReply; #define sz_xPrintGetAttributesReply 32 typedef struct _PrintSetAttributes { CARD8 reqType; /* always PrintReqCode */ CARD8 printReqType; /* always X_PrintSetAttributes */ CARD16 length B16; PCONTEXT printContext B32; /* print context */ CARD32 stringLen B32; /* length of xrm db string */ CARD8 type; /* type */ CARD8 rule; /* replacement rule */ CARD16 pad1 B16; /* unused */ /* variable portion ***************************************** STRING8 string; * xrm db as a string * BYTE pad(stringLen) * unused * ************************************************************/ } xPrintSetAttributesReq; #define sz_xPrintSetAttributesReq 16 typedef struct _PrintGetOneAttribute { CARD8 reqType; /* always PrintReqCode */ CARD8 printReqType; /* always X_PrintGetOneAttribute */ CARD16 length B16; PCONTEXT printContext B32; /* print context */ CARD32 nameLen; /* length of name string */ CARD8 type; /* type */ CARD8 pad1; /* unused */ CARD16 pad2 B16; /* unused */ /* variable portion ***************************************** STRING8 name; * name as a string * BYTE pad(name) * unused * ************************************************************/ } xPrintGetOneAttributeReq; #define sz_xPrintGetOneAttributeReq 16 typedef struct { BYTE type; /* X_Reply */ CARD8 unused; /* not used */ CARD16 sequenceNumber B16; CARD32 length B32; CARD32 valueLen B32; /* length of value string */ CARD32 pad1 B32; CARD32 pad2 B32; CARD32 pad3 B32; CARD32 pad4 B32; CARD32 pad5 B32; /* variable portion ***************************************** STRING8 value; * value as a string * BYTE pad(value) * unused * ************************************************************/ } xPrintGetOneAttributeReply; #define sz_xPrintGetOneAttributeReply 32 typedef struct _PrintGetPageDimensions { CARD8 reqType; /* always PrintReqCode */ CARD8 printReqType; /* always X_PrintGetPageDimensions */ CARD16 length B16; PCONTEXT printContext B32; /* print context */ } xPrintGetPageDimensionsReq; #define sz_xPrintGetPageDimensionsReq 8 typedef struct { BYTE type; /* X_Reply */ CARD8 unused; /* not used */ CARD16 sequenceNumber B16; CARD32 length B32; CARD16 width; /* total pixel width */ CARD16 height; /* total pixel height */ CARD16 rx; /* reproducable x pixel offset */ CARD16 ry; /* reproducable y pixel offset */ CARD16 rwidth; /* reproducable x pixel width */ CARD16 rheight; /* reproducable y pixel width */ CARD32 pad1 B32; CARD32 pad2 B32; CARD32 pad3 B32; } xPrintGetPageDimensionsReply; #define sz_xPrintGetPageDimensionsReply 32 typedef struct _PrintQueryScreens { CARD8 reqType; /* always PrintReqCode */ CARD8 printReqType; /* always X_PrintQueryScreens */ CARD16 length B16; } xPrintQueryScreensReq; #define sz_xPrintQueryScreensReq 4 typedef struct { BYTE type; /* X_Reply */ CARD8 unused; /* not used */ CARD16 sequenceNumber B16; CARD32 length B32; CARD32 listCount; /* number of screens following */ CARD32 pad1 B32; CARD32 pad2 B32; CARD32 pad3 B32; CARD32 pad4 B32; CARD32 pad5 B32; /* variable portion ***************************************** WINDOW rootWindow; * root window of screen * ************************************************************/ } xPrintQueryScreensReply; #define sz_xPrintQueryScreensReply 32 typedef struct _PrintSetImageResolution { CARD8 reqType; /* always PrintReqCode */ CARD8 printReqType; /* always X_PrintSetImageResolution */ CARD16 length B16; PCONTEXT printContext B32; /* print context */ CARD16 imageRes B16; /* image resolution */ CARD16 pad1 B16; } xPrintSetImageResolutionReq; #define sz_xPrintSetImageResolutionReq 12 typedef struct { BYTE type; /* X_Reply */ BOOL status; /* accepted or not */ CARD16 sequenceNumber B16; CARD32 length B32; CARD16 prevRes B16; /* previous resolution */ CARD16 pad1 B32; CARD32 pad2 B32; CARD32 pad3 B32; CARD32 pad4 B32; CARD32 pad5 B32; CARD32 pad6 B32; } xPrintSetImageResolutionReply; #define sz_xPrintSetImageResolutionReply 32 typedef struct _PrintGetImageResolution { CARD8 reqType; /* always PrintReqCode */ CARD8 printReqType; /* always X_PrintGetImageResolution */ CARD16 length B16; PCONTEXT printContext B32; /* print context */ } xPrintGetImageResolutionReq; #define sz_xPrintGetImageResolutionReq 8 typedef struct { BYTE type; /* X_Reply */ CARD8 unused; CARD16 sequenceNumber B16; CARD32 length B32; CARD16 imageRes B16; /* image resolution */ CARD16 pad1 B32; CARD32 pad2 B32; CARD32 pad3 B32; CARD32 pad4 B32; CARD32 pad5 B32; CARD32 pad6 B32; } xPrintGetImageResolutionReply; #define sz_xPrintGetImageResolutionReply 32 #ifndef _XP_PRINT_SERVER_ /*********************************************************************** * * Library-only definitions. */ extern XPHinterProc _xp_hinter_proc; extern char *_xp_hinter_desc; extern int _xp_hinter_init; #else /* _XP_PRINT_SERVER_ */ /*********************************************************************** * * Server-only definitions shared between the extension and DDX layers. * */ /* * Internal return code used to indicate that the requesting * client has been suspended. */ #define Suspended 84 struct _XpContext; extern void XpRegisterPrinterScreen( ScreenPtr pScreen, int (*CreateContext)(struct _XpContext *)); typedef struct _xpprintFuncs { int (*StartJob)( struct _XpContext * /* pContext */, Bool /* sendClientData */, ClientPtr /* client */); int (*EndJob)(struct _XpContext *, int); int (*StartDoc)( struct _XpContext * /* pContext */, XPDocumentType /* type */); int (*EndDoc)(struct _XpContext *, int); int (*StartPage)( struct _XpContext * /* pContext */, WindowPtr /* pWin */); int (*EndPage)( struct _XpContext * /* pContext */, WindowPtr /* pWin */); int (*PutDocumentData)( struct _XpContext * /* pContext */, DrawablePtr /* pDraw */, char * /* pData */, int /* len_data */, char * /* pDoc_fmt */, int /* len_fmt */, char * /* pOptions */, int /* len_options */, ClientPtr /* client */); int (*GetDocumentData)( struct _XpContext * /* pContext */, ClientPtr /* client */, int /* maxBufferSize */); int (*DestroyContext)( struct _XpContext *); /* pContext */ char *(*GetAttributes)( struct _XpContext *, XPAttributes /* pool */); char *(*GetOneAttribute)( struct _XpContext * /* pContext */, XPAttributes /* pool */, char * /* attrs */); int (*SetAttributes)( struct _XpContext * /* pContext */, XPAttributes /* pool */, char * /* attrs */); int (*AugmentAttributes)( struct _XpContext * /* pContext */, XPAttributes /* pool */, char * /* attrs */); int (*GetMediumDimensions)( struct _XpContext * /* pPrintContext */, CARD16 * /* pWidth */, CARD16 * /* pHeight */); int (*GetReproducibleArea)( struct _XpContext * /* pPrintContext */, xRectangle * /* pRect */); int (*SetImageResolution)( struct _XpContext * /* pPrintContext */, int /* imageRes */, Bool * /* pStatus */); } XpDriverFuncs, *XpDriverFuncsPtr; /* * Each print context is represented by one of the following structs * associated with a resource ID of type RTcontext . A pointer to * the context is placed in the Xp extension's devPrivates * element in each client * which establishes a context via * either initContext or setContext. * The context pointer is also placed in the struct indicated by the * RTpage resource associated with each StartPage'd window. */ typedef struct _XpContext { XID contextID; char *printerName; int screenNum; /* screen containing the printer */ struct _XpClient *clientHead; /* list of clients */ CARD32 state; VisualID pageWin; PrivateRec *devPrivates; XpDriverFuncs funcs; ClientPtr clientSlept; int imageRes; } XpContextRec, *XpContextPtr; #include /* FontResolutionPtr */ extern FontResolutionPtr XpGetClientResolutions(ClientPtr, int *); extern XpContextPtr XpContextOfClient(ClientPtr); extern XpContextPtr XpGetPrintContext(ClientPtr); extern int XpRehashPrinterList(void); extern void XpSetFontResFunc(ClientPtr); extern void XpUnsetFontResFunc(ClientPtr); extern void XpRegisterInitFunc(ScreenPtr, char *, int (*)(struct _XpContext *)); #endif /* _XP_PRINT_SERVER_ */ _XFUNCPROTOEND #endif /* _XpPrintstr_H_ */ electInputReq 12 typedef struct _PrintInputSelected { CARD8 reqType; /* always PrintReqCode */ CARD8 printReqType; /* always X_PrintInputSelected */ CARD16 length B16; PCONTEXT printContext B32; /* print context */ } xPrintInputSelectedReq; #define sz_xPrintInputSelectedReq 8 typedef struct { BYTE type; /* X_Reply */ CARD8 unused; /* not used */ CARD16 sequenceNumber B16;printproto-1.0.5/missing000075501431060000012000000262331151122464400156240ustar00alancstaff00002660200007#! /bin/sh # Common stub for a few missing GNU programs while installing. scriptversion=2009-04-28.21; # UTC # Copyright (C) 1996, 1997, 1999, 2000, 2002, 2003, 2004, 2005, 2006, # 2008, 2009 Free Software Foundation, Inc. # Originally by Fran,cois Pinard , 1996. # This program is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation; either version 2, or (at your option) # any later version. # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. # You should have received a copy of the GNU General Public License # along with this program. If not, see . # As a special exception to the GNU General Public License, if you # distribute this file as part of a program that contains a # configuration script generated by Autoconf, you may include it under # the same distribution terms that you use for the rest of that program. if test $# -eq 0; then echo 1>&2 "Try \`$0 --help' for more information" exit 1 fi run=: sed_output='s/.* --output[ =]\([^ ]*\).*/\1/p' sed_minuso='s/.* -o \([^ ]*\).*/\1/p' # In the cases where this matters, `missing' is being run in the # srcdir already. if test -f configure.ac; then configure_ac=configure.ac else configure_ac=configure.in fi msg="missing on your system" case $1 in --run) # Try to run requested program, and just exit if it succeeds. run= shift "$@" && exit 0 # Exit code 63 means version mismatch. This often happens # when the user try to use an ancient version of a tool on # a file that requires a minimum version. In this case we # we should proceed has if the program had been absent, or # if --run hadn't been passed. if test $? = 63; then run=: msg="probably too old" fi ;; -h|--h|--he|--hel|--help) echo "\ $0 [OPTION]... PROGRAM [ARGUMENT]... Handle \`PROGRAM [ARGUMENT]...' for when PROGRAM is missing, or return an error status if there is no known handling for PROGRAM. Options: -h, --help display this help and exit -v, --version output version information and exit --run try to run the given command, and emulate it if it fails Supported PROGRAM values: aclocal touch file \`aclocal.m4' autoconf touch file \`configure' autoheader touch file \`config.h.in' autom4te touch the output file, or create a stub one automake touch all \`Makefile.in' files bison create \`y.tab.[ch]', if possible, from existing .[ch] flex create \`lex.yy.c', if possible, from existing .c help2man touch the output file lex create \`lex.yy.c', if possible, from existing .c makeinfo touch the output file tar try tar, gnutar, gtar, then tar without non-portable flags yacc create \`y.tab.[ch]', if possible, from existing .[ch] Version suffixes to PROGRAM as well as the prefixes \`gnu-', \`gnu', and \`g' are ignored when checking the name. Send bug reports to ." exit $? ;; -v|--v|--ve|--ver|--vers|--versi|--versio|--version) echo "missing $scriptversion (GNU Automake)" exit $? ;; -*) echo 1>&2 "$0: Unknown \`$1' option" echo 1>&2 "Try \`$0 --help' for more information" exit 1 ;; esac # normalize program name to check for. program=`echo "$1" | sed ' s/^gnu-//; t s/^gnu//; t s/^g//; t'` # Now exit if we have it, but it failed. Also exit now if we # don't have it and --version was passed (most likely to detect # the program). This is about non-GNU programs, so use $1 not # $program. case $1 in lex*|yacc*) # Not GNU programs, they don't have --version. ;; tar*) if test -n "$run"; then echo 1>&2 "ERROR: \`tar' requires --run" exit 1 elif test "x$2" = "x--version" || test "x$2" = "x--help"; then exit 1 fi ;; *) if test -z "$run" && ($1 --version) > /dev/null 2>&1; then # We have it, but it failed. exit 1 elif test "x$2" = "x--version" || test "x$2" = "x--help"; then # Could not run --version or --help. This is probably someone # running `$TOOL --version' or `$TOOL --help' to check whether # $TOOL exists and not knowing $TOOL uses missing. exit 1 fi ;; esac # If it does not exist, or fails to run (possibly an outdated version), # try to emulate it. case $program in aclocal*) echo 1>&2 "\ WARNING: \`$1' is $msg. You should only need it if you modified \`acinclude.m4' or \`${configure_ac}'. You might want to install the \`Automake' and \`Perl' packages. Grab them from any GNU archive site." touch aclocal.m4 ;; autoconf*) echo 1>&2 "\ WARNING: \`$1' is $msg. You should only need it if you modified \`${configure_ac}'. You might want to install the \`Autoconf' and \`GNU m4' packages. Grab them from any GNU archive site." touch configure ;; autoheader*) echo 1>&2 "\ WARNING: \`$1' is $msg. You should only need it if you modified \`acconfig.h' or \`${configure_ac}'. You might want to install the \`Autoconf' and \`GNU m4' packages. Grab them from any GNU archive site." files=`sed -n 's/^[ ]*A[CM]_CONFIG_HEADER(\([^)]*\)).*/\1/p' ${configure_ac}` test -z "$files" && files="config.h" touch_files= for f in $files; do case $f in *:*) touch_files="$touch_files "`echo "$f" | sed -e 's/^[^:]*://' -e 's/:.*//'`;; *) touch_files="$touch_files $f.in";; esac done touch $touch_files ;; automake*) echo 1>&2 "\ WARNING: \`$1' is $msg. You should only need it if you modified \`Makefile.am', \`acinclude.m4' or \`${configure_ac}'. You might want to install the \`Automake' and \`Perl' packages. Grab them from any GNU archive site." find . -type f -name Makefile.am -print | sed 's/\.am$/.in/' | while read f; do touch "$f"; done ;; autom4te*) echo 1>&2 "\ WARNING: \`$1' is needed, but is $msg. You might have modified some files without having the proper tools for further handling them. You can get \`$1' as part of \`Autoconf' from any GNU archive site." file=`echo "$*" | sed -n "$sed_output"` test -z "$file" && file=`echo "$*" | sed -n "$sed_minuso"` if test -f "$file"; then touch $file else test -z "$file" || exec >$file echo "#! /bin/sh" echo "# Created by GNU Automake missing as a replacement of" echo "# $ $@" echo "exit 0" chmod +x $file exit 1 fi ;; bison*|yacc*) echo 1>&2 "\ WARNING: \`$1' $msg. You should only need it if you modified a \`.y' file. You may need the \`Bison' package in order for those modifications to take effect. You can get \`Bison' from any GNU archive site." rm -f y.tab.c y.tab.h if test $# -ne 1; then eval LASTARG="\${$#}" case $LASTARG in *.y) SRCFILE=`echo "$LASTARG" | sed 's/y$/c/'` if test -f "$SRCFILE"; then cp "$SRCFILE" y.tab.c fi SRCFILE=`echo "$LASTARG" | sed 's/y$/h/'` if test -f "$SRCFILE"; then cp "$SRCFILE" y.tab.h fi ;; esac fi if test ! -f y.tab.h; then echo >y.tab.h fi if test ! -f y.tab.c; then echo 'main() { return 0; }' >y.tab.c fi ;; lex*|flex*) echo 1>&2 "\ WARNING: \`$1' is $msg. You should only need it if you modified a \`.l' file. You may need the \`Flex' package in order for those modifications to take effect. You can get \`Flex' from any GNU archive site." rm -f lex.yy.c if test $# -ne 1; then eval LASTARG="\${$#}" case $LASTARG in *.l) SRCFILE=`echo "$LASTARG" | sed 's/l$/c/'` if test -f "$SRCFILE"; then cp "$SRCFILE" lex.yy.c fi ;; esac fi if test ! -f lex.yy.c; then echo 'main() { return 0; }' >lex.yy.c fi ;; help2man*) echo 1>&2 "\ WARNING: \`$1' is $msg. You should only need it if you modified a dependency of a manual page. You may need the \`Help2man' package in order for those modifications to take effect. You can get \`Help2man' from any GNU archive site." file=`echo "$*" | sed -n "$sed_output"` test -z "$file" && file=`echo "$*" | sed -n "$sed_minuso"` if test -f "$file"; then touch $file else test -z "$file" || exec >$file echo ".ab help2man is required to generate this page" exit $? fi ;; makeinfo*) echo 1>&2 "\ WARNING: \`$1' is $msg. You should only need it if you modified a \`.texi' or \`.texinfo' file, or any other file indirectly affecting the aspect of the manual. The spurious call might also be the consequence of using a buggy \`make' (AIX, DU, IRIX). You might want to install the \`Texinfo' package or the \`GNU make' package. Grab either from any GNU archive site." # The file to touch is that specified with -o ... file=`echo "$*" | sed -n "$sed_output"` test -z "$file" && file=`echo "$*" | sed -n "$sed_minuso"` if test -z "$file"; then # ... or it is the one specified with @setfilename ... infile=`echo "$*" | sed 's/.* \([^ ]*\) *$/\1/'` file=`sed -n ' /^@setfilename/{ s/.* \([^ ]*\) *$/\1/ p q }' $infile` # ... or it is derived from the source name (dir/f.texi becomes f.info) test -z "$file" && file=`echo "$infile" | sed 's,.*/,,;s,.[^.]*$,,'`.info fi # If the file does not exist, the user really needs makeinfo; # let's fail without touching anything. test -f $file || exit 1 touch $file ;; tar*) shift # We have already tried tar in the generic part. # Look for gnutar/gtar before invocation to avoid ugly error # messages. if (gnutar --version > /dev/null 2>&1); then gnutar "$@" && exit 0 fi if (gtar --version > /dev/null 2>&1); then gtar "$@" && exit 0 fi firstarg="$1" if shift; then case $firstarg in *o*) firstarg=`echo "$firstarg" | sed s/o//` tar "$firstarg" "$@" && exit 0 ;; esac case $firstarg in *h*) firstarg=`echo "$firstarg" | sed s/h//` tar "$firstarg" "$@" && exit 0 ;; esac fi echo 1>&2 "\ WARNING: I can't seem to be able to run \`tar' with the given arguments. You may want to install GNU tar or Free paxutils, or check the command line arguments." exit 1 ;; *) echo 1>&2 "\ WARNING: \`$1' is needed, and is $msg. You might have modified some files without having the proper tools for further handling them. Check the \`README' file, it often tells you about the needed prerequisites for installing this package. You may also peek at any GNU archive site, in case some other package would contain this missing \`$1' program." exit 1 ;; esac exit 0 # Local variables: # eval: (add-hook 'write-file-hooks 'time-stamp) # time-stamp-start: "scriptversion=" # time-stamp-format: "%:y-%02m-%02d.%02H" # time-stamp-time-zone: "UTC" # time-stamp-end: "; # UTC" # End: . if test $# -eq 0; then echo 1>&2 "Try \`$0 --help' for more information" exit 1 fi run=: sed_output='s/.* --output[ =]\([^ ]*\).*/\1/p' sed_minuso='s/.* -o \([^ ]*\).*/\1/p' # In the cases where this matters, `missing' is being run in the # srcdir already. if test -f configure.ac; then configure_ac=configure.ac else configure_ac=configure.in printproto-1.0.5/Makefile.am000064401431060000012000000024051126616702300162600ustar00alancstaff00002660200007printdir = $(includedir)/X11/extensions print_HEADERS = \ Print.h \ Printstr.h pkgconfigdir = $(libdir)/pkgconfig pkgconfig_DATA = printproto.pc miscmandir = $(MISC_MAN_DIR) miscman_DATA = man/Xprint.$(MISC_MAN_SUFFIX) CLEANFILES = $(miscman_DATA) EXTRA_DIST = printproto.pc.in \ man/Xprint.man \ man/Xprint.sgml \ specs/xp_proto.book \ specs/xp_proto.mif \ specs/xp_proto.ps \ specs/xp_protoIX.doc \ specs/xp_protoTOC.doc \ specs/xp_proto_cov.mif EXTRA_DIST += ChangeLog MAINTAINERCLEANFILES = ChangeLog .PHONY: ChangeLog ChangeLog: $(CHANGELOG_CMD) dist-hook: ChangeLog SED = sed # Strings to replace in man pages XORGRELSTRING = @PACKAGE_STRING@ XORGMANNAME = X Version 11 MAN_SUBSTS = \ -e 's|__vendorversion__|"$(XORGRELSTRING)" "$(XORGMANNAME)"|' \ -e 's|__xorgversion__|"$(XORGRELSTRING)" "$(XORGMANNAME)"|' \ -e 's|__datadir__|$(datadir)|g' \ -e 's|__libdir__|$(libdir)|g' \ -e 's|__sysconfdir__|$(sysconfdir)|g' \ -e 's|__appmansuffix__|$(APP_MAN_SUFFIX)|g' \ -e 's|__libmansuffix__|$(LIB_MAN_SUFFIX)|g' \ -e 's|__miscmansuffix__|$(MISC_MAN_SUFFIX)|g' SUFFIXES = .$(MISC_MAN_SUFFIX) .man .man.$(MISC_MAN_SUFFIX): man $(MKDIR_P) man $(AM_V_GEN)$(SED) $(MAN_SUBSTS) < $< > $@